Version Description
Fixed function where it wouldn't create the _signups table in the free version.
Download this release
Release Info
Developer | barinagabriel |
Plugin | User registration & user profile – Profile Builder |
Version | 1.1.33 |
Comparing to | |
See all releases |
Code changes from version 1.1.32 to 1.1.33
- assets/css/front.end.css +4 -3
- assets/css/premium.style.css +5 -0
- assets/css/style.css +5 -1
- assets/images/ad_image.png +0 -0
- assets/images/buy_now_button.png +0 -0
- front-end/options.php +9 -1
- front-end/wppb.edit.profile.php +2 -2
- front-end/wppb.login.php +79 -44
- front-end/wppb.recover.password.php +5 -5
- front-end/wppb.register.php +7 -6
- functions/functions.load.php +57 -17
- index.php +2 -2
- readme.txt +14 -7
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
- screenshot-5.png +0 -0
- screenshots/screenshot-1.jpg +0 -0
- screenshots/screenshot-2.jpg +0 -0
- screenshots/screenshot-3.jpg +0 -0
- screenshots/screenshot1.jpg +0 -0
- screenshots/screenshot2.jpg +0 -0
- screenshots/screenshot3.jpg +0 -0
- screenshots/screenshot6.jpg +0 -0
- screenshots/screenshot7.jpg +0 -0
- screenshots/screenshot8.jpg +0 -0
- translation/profilebuilder-cs_CZ.mo +0 -0
- translation/profilebuilder-cs_CZ.po +711 -645
- translation/profilebuilder-de_DE.mo +0 -0
- translation/profilebuilder-de_DE.po +1801 -1735
- translation/profilebuilder-en_US.mo +0 -0
- translation/profilebuilder-en_US.po +446 -384
- translation/profilebuilder-es_ES.mo +0 -0
- translation/profilebuilder-es_ES.po +454 -390
- translation/profilebuilder-fr_FR.mo +0 -0
- translation/profilebuilder-fr_FR.po +454 -389
- translation/profilebuilder-hu_HU.mo +0 -0
- translation/profilebuilder-hu_HU.po +454 -389
- translation/profilebuilder-it_IT.mo +0 -0
- translation/profilebuilder-it_IT.po +454 -389
- translation/profilebuilder-nb_NO.mo +0 -0
- translation/profilebuilder-nb_NO.po +454 -389
- translation/profilebuilder-nl_NL.mo +0 -0
- translation/profilebuilder-nl_NL.po +461 -394
- translation/profilebuilder-pl_PL.mo +0 -0
- translation/profilebuilder-pl_PL.po +454 -390
- translation/profilebuilder-pt_BR.mo +0 -0
- translation/profilebuilder-pt_BR.po +84 -96
assets/css/front.end.css
CHANGED
@@ -355,10 +355,11 @@ text-decoration:none;
|
|
355 |
#wppb-more-span a:hover{
|
356 |
text-decoration:underline;
|
357 |
}
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
}
|
|
|
362 |
#adduser .form-reCAPTCHA label.form-reCAPTCHA-label{
|
363 |
clear: left;
|
364 |
float: left;
|
355 |
#wppb-more-span a:hover{
|
356 |
text-decoration:underline;
|
357 |
}
|
358 |
+
|
359 |
+
#recaptcha_widget_div{
|
360 |
+
display: inline-block;
|
361 |
}
|
362 |
+
|
363 |
#adduser .form-reCAPTCHA label.form-reCAPTCHA-label{
|
364 |
clear: left;
|
365 |
float: left;
|
assets/css/premium.style.css
CHANGED
@@ -256,6 +256,11 @@ a:hover strong {
|
|
256 |
|
257 |
}
|
258 |
|
|
|
|
|
|
|
|
|
|
|
259 |
/* Content Inner */
|
260 |
#framework_wrap #content {
|
261 |
padding: 0;
|
256 |
|
257 |
}
|
258 |
|
259 |
+
#framework_wrap #content_wrap .pro-noserial-info {
|
260 |
+
padding: 20px;
|
261 |
+
background:#fffbcc;
|
262 |
+
}
|
263 |
+
|
264 |
/* Content Inner */
|
265 |
#framework_wrap #content {
|
266 |
padding: 0;
|
assets/css/style.css
CHANGED
@@ -255,7 +255,11 @@ a:hover strong {
|
|
255 |
margin-left:60px;
|
256 |
|
257 |
}
|
258 |
-
|
|
|
|
|
|
|
|
|
259 |
/* Content Inner */
|
260 |
#framework_wrap #content {
|
261 |
padding: 0;
|
255 |
margin-left:60px;
|
256 |
|
257 |
}
|
258 |
+
|
259 |
+
#framework_wrap #content_wrap .pro-noserial-info {
|
260 |
+
padding: 20px;
|
261 |
+
background:#fffbcc;
|
262 |
+
}
|
263 |
/* Content Inner */
|
264 |
#framework_wrap #content {
|
265 |
padding: 0;
|
assets/images/ad_image.png
CHANGED
Binary file
|
assets/images/buy_now_button.png
CHANGED
Binary file
|
front-end/options.php
CHANGED
@@ -20,14 +20,22 @@ Original Author URI: http://valendesigns.com
|
|
20 |
<div id="content_wrap">
|
21 |
|
22 |
<?php
|
|
|
|
|
23 |
$wppb_premium = WPPB_PLUGIN_DIR . '/premium/';
|
24 |
if (!file_exists ( $wppb_premium.'premium.php' )){
|
25 |
?>
|
26 |
<div class="info basic-version-info">
|
27 |
<img src="<?php echo WPPB_PLUGIN_URL ?>/assets/images/ad_image.png" alt="Profile Builder Pro" />
|
28 |
-
<a href="http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=link&utm_campaign=ProfileBuilderFree" alt="Profile Builder Pro" title="
|
29 |
</div>
|
30 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
}
|
32 |
?>
|
33 |
<div class="info top-info"></div>
|
20 |
<div id="content_wrap">
|
21 |
|
22 |
<?php
|
23 |
+
global $current_user ;
|
24 |
+
|
25 |
$wppb_premium = WPPB_PLUGIN_DIR . '/premium/';
|
26 |
if (!file_exists ( $wppb_premium.'premium.php' )){
|
27 |
?>
|
28 |
<div class="info basic-version-info">
|
29 |
<img src="<?php echo WPPB_PLUGIN_URL ?>/assets/images/ad_image.png" alt="Profile Builder Pro" />
|
30 |
+
<a href="http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=link&utm_campaign=ProfileBuilderFree" alt="Profile Builder Pro" title="Find Out More"><img id="wppb_buyNowButton" src="<?php echo WPPB_PLUGIN_URL ?>/assets/images/buy_now_button.png"/></a>
|
31 |
</div>
|
32 |
<?php
|
33 |
+
} elseif ( ! get_user_meta($current_user->ID, 'wppb_dismiss_notification') ) {
|
34 |
+
$wppb_profile_builder_pro_serial_status = get_option('wppb_profile_builder_pro_serial_status');
|
35 |
+
if ($wppb_profile_builder_pro_serial_status == 'notFound')
|
36 |
+
echo '<div class="info pro-noserial-info" style="line-height:22px;">'.__("Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive access to automatic updates and support. Need a license key? <a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>Purchase one now</a>", "profilebuilder") .'</div>';
|
37 |
+
elseif ($wppb_profile_builder_pro_serial_status == 'expired')
|
38 |
+
echo '<div class="info pro-noserial-info" style="line-height:22px;">'.__("Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</a> to receive access to automatic updates and priority support. <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>Purchase one now</a>", "profilebuilder") .'</div>';
|
39 |
}
|
40 |
?>
|
41 |
<div class="info top-info"></div>
|
front-end/wppb.edit.profile.php
CHANGED
@@ -193,7 +193,7 @@ function wppb_front_end_profile_info() {
|
|
193 |
$_POST['website'] = apply_filters('wppb_edit_profile_posted_website', $_POST['website']);
|
194 |
if ($wppb_defaultOptions['websiteRequired'] == 'yes'){
|
195 |
if ((trim($_POST['website']) != '') && isset($_POST['website'])){
|
196 |
-
$wppbPos = strpos($_POST['website'], 'http://');
|
197 |
if($wppbPos !== FALSE){
|
198 |
wp_update_user( array( 'ID' => $current_user->id, 'user_url' => esc_attr( $_POST['website'] )));
|
199 |
$changesSaved = 'yes';
|
@@ -203,7 +203,7 @@ function wppb_front_end_profile_info() {
|
|
203 |
}
|
204 |
}
|
205 |
}else{
|
206 |
-
$wppbPos = strpos($_POST['website'], 'http://');
|
207 |
$website = esc_attr( $_POST['website'] );
|
208 |
if($wppbPos !== FALSE){
|
209 |
if ($website == 'http://')
|
193 |
$_POST['website'] = apply_filters('wppb_edit_profile_posted_website', $_POST['website']);
|
194 |
if ($wppb_defaultOptions['websiteRequired'] == 'yes'){
|
195 |
if ((trim($_POST['website']) != '') && isset($_POST['website'])){
|
196 |
+
$wppbPos = strpos( (string)$_POST['website'], 'http://' );
|
197 |
if($wppbPos !== FALSE){
|
198 |
wp_update_user( array( 'ID' => $current_user->id, 'user_url' => esc_attr( $_POST['website'] )));
|
199 |
$changesSaved = 'yes';
|
203 |
}
|
204 |
}
|
205 |
}else{
|
206 |
+
$wppbPos = strpos( (string)$_POST['website'], 'http://' );
|
207 |
$website = esc_attr( $_POST['website'] );
|
208 |
if($wppbPos !== FALSE){
|
209 |
if ($website == 'http://')
|
front-end/wppb.login.php
CHANGED
@@ -23,7 +23,7 @@ function wppb_signon(){
|
|
23 |
global $error;
|
24 |
global $wppb_login;
|
25 |
|
26 |
-
if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == 'log-in' && wp_verify_nonce($_POST['login_nonce_field'],'verify_true_login')){
|
27 |
if (isset($_POST['remember-me']))
|
28 |
$remember = $_POST['remember-me'];
|
29 |
else $remember = false;
|
@@ -38,10 +38,12 @@ function wppb_signon(){
|
|
38 |
}
|
39 |
add_action('init', 'wppb_signon');
|
40 |
|
41 |
-
function wppb_front_end_login(){
|
42 |
$loginFilterArray = array();
|
43 |
ob_start();
|
44 |
global $wppb_login;
|
|
|
|
|
45 |
|
46 |
echo '<div class="wppb_holder" id="wppb_login">';
|
47 |
|
@@ -83,51 +85,80 @@ function wppb_front_end_login(){
|
|
83 |
?>
|
84 |
|
85 |
|
86 |
-
<?php
|
87 |
-
$
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
}
|
101 |
}
|
102 |
}
|
103 |
-
|
104 |
-
<font id="messageTextColor">'. __('You will soon be redirected automatically. If you see this page for more than 1 second, please click', 'profilebuilder').' <a href="'.$permaLnk2.'">'. __('here', 'profilebuilder').'</a>.<meta http-equiv="Refresh" content="1;url='.$permaLnk2.'" /></font><br/><br/>';
|
105 |
-
$loginFilterArray['redirectMessage'] = apply_filters('wppb_login_redirect_message', $loginFilterArray['redirectMessage'], $permaLnk2);
|
106 |
-
echo $loginFilterArray['redirectMessage'];
|
107 |
?>
|
108 |
<?php else : // Not logged in ?>
|
109 |
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
}
|
123 |
-
|
124 |
-
|
125 |
-
<?php endif; ?>
|
126 |
|
127 |
<?php /* use this action hook to add extra content before the login form. */ ?>
|
128 |
<?php do_action( 'wppb_before_login' ); ?>
|
129 |
|
130 |
-
<form action="<?php wppb_curpageurl(); ?>" method="post" class="sign-in">
|
131 |
<?php
|
132 |
if (isset($_POST['user-name']))
|
133 |
$userName = esc_html( $_POST['user-name'] );
|
@@ -161,16 +192,20 @@ function wppb_front_end_login(){
|
|
161 |
?>
|
162 |
|
163 |
<input type="hidden" name="action" value="log-in" />
|
|
|
|
|
164 |
</p><!-- .form-submit -->
|
165 |
<?php
|
166 |
-
$
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
<
|
171 |
-
|
172 |
-
|
173 |
-
|
|
|
|
|
174 |
?>
|
175 |
<?php wp_nonce_field('verify_true_login','login_nonce_field'); ?>
|
176 |
</form><!-- .sign-in -->
|
23 |
global $error;
|
24 |
global $wppb_login;
|
25 |
|
26 |
+
if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == 'log-in' && wp_verify_nonce($_POST['login_nonce_field'],'verify_true_login') && ($_POST['formName'] == 'login') ){
|
27 |
if (isset($_POST['remember-me']))
|
28 |
$remember = $_POST['remember-me'];
|
29 |
else $remember = false;
|
38 |
}
|
39 |
add_action('init', 'wppb_signon');
|
40 |
|
41 |
+
function wppb_front_end_login( $atts ){
|
42 |
$loginFilterArray = array();
|
43 |
ob_start();
|
44 |
global $wppb_login;
|
45 |
+
|
46 |
+
extract(shortcode_atts(array('display' => true, 'redirect' => '', 'submit' => 'page'), $atts));
|
47 |
|
48 |
echo '<div class="wppb_holder" id="wppb_login">';
|
49 |
|
85 |
?>
|
86 |
|
87 |
|
88 |
+
<?php
|
89 |
+
if (isset($_POST['button']) && isset($_POST['formName']) ){
|
90 |
+
if ($_POST['formName'] == 'login'){
|
91 |
+
if ($_POST['button'] == 'page'){
|
92 |
+
$permaLnk2 = get_permalink();
|
93 |
+
$wppb_addons = WPPB_PLUGIN_DIR . '/premium/addon/';
|
94 |
+
if (file_exists ( $wppb_addons.'addon.php' )){
|
95 |
+
//check to see if the redirecting addon is present and activated
|
96 |
+
$wppb_addon_settings = get_option('wppb_addon_settings'); //fetch the descriptions array
|
97 |
+
if ($wppb_addon_settings['wppb_customRedirect'] == 'show'){
|
98 |
+
//check to see if the redirect location is not an empty string and is activated
|
99 |
+
$customRedirectSettings = get_option('customRedirectSettings');
|
100 |
+
if ((trim($customRedirectSettings['afterLoginTarget']) != '') && ($customRedirectSettings['afterLogin'] == 'yes')){
|
101 |
+
$permaLnk2 = trim($customRedirectSettings['afterLoginTarget']);
|
102 |
+
$findHttp = strpos( (string)$permaLnk2, 'http' );
|
103 |
+
if ($findHttp === false)
|
104 |
+
$permaLnk2 = 'http://'. $permaLnk2;
|
105 |
+
}
|
106 |
+
}
|
107 |
+
}
|
108 |
+
|
109 |
+
$loginFilterArray['redirectMessage'] = '
|
110 |
+
<font id="messageTextColor">'. __('You will soon be redirected automatically. If you see this page for more than 1 second, please click', 'profilebuilder').' <a href="'.$permaLnk2.'">'. __('here', 'profilebuilder').'</a>.<meta http-equiv="Refresh" content="1;url='.$permaLnk2.'" /></font><br/><br/>';
|
111 |
+
$loginFilterArray['redirectMessage'] = apply_filters('wppb_login_redirect_message', $loginFilterArray['redirectMessage'], $permaLnk2);
|
112 |
+
echo $loginFilterArray['redirectMessage'];
|
113 |
+
|
114 |
+
}elseif($_POST['button'] == 'widget'){
|
115 |
+
$permaLnk2 = get_permalink();
|
116 |
+
if ($redirect != ''){
|
117 |
+
$permaLnk2 = trim($redirect);
|
118 |
+
$findHttp = strpos( (string)$permaLnk2, 'http' );
|
119 |
+
if ($findHttp === false)
|
120 |
+
$permaLnk2 = 'http://'. $permaLnk2;
|
121 |
+
}
|
122 |
+
|
123 |
+
$loginFilterArray['widgetRedirectMessage'] = '
|
124 |
+
<font id="messageTextColor">'. __('You will soon be redirected automatically. If you see this page for more than 1 second, please click', 'profilebuilder').' <a href="'.$permaLnk2.'">'. __('here', 'profilebuilder').'</a>.<meta http-equiv="Refresh" content="1;url='.$permaLnk2.'" /></font><br/><br/>';
|
125 |
+
$loginFilterArray['redirectMessage'] = apply_filters('wppb_login_widget_redirect_message', $loginFilterArray['widgetRedirectMessage'], $permaLnk2);
|
126 |
+
echo $loginFilterArray['widgetRedirectMessage'];
|
127 |
+
|
128 |
}
|
129 |
}
|
130 |
}
|
131 |
+
|
|
|
|
|
|
|
132 |
?>
|
133 |
<?php else : // Not logged in ?>
|
134 |
|
135 |
+
<?php
|
136 |
+
if (!empty( $_POST['action'] ) && isset($_POST['formName']) ){
|
137 |
+
if ($_POST['formName'] == 'login'){
|
138 |
+
?>
|
139 |
+
<p class="error">
|
140 |
+
<?php
|
141 |
+
if ( trim($_POST['user-name']) == ''){
|
142 |
+
$loginFilterArray['emptyUsernameError'] = '<strong>'. __('ERROR:','profilebuilder').'</strong> '. __('The username field is empty', 'profilebuilder').'.';
|
143 |
+
$loginFilterArray['emptyUsernameError'] = apply_filters('wppb_login_empty_username_error_message', $loginFilterArray['emptyUsernameError']);
|
144 |
+
echo $loginFilterArray['emptyUsernameError'];
|
145 |
+
}
|
146 |
+
if ( is_wp_error($wppb_login) ){
|
147 |
+
$loginFilterArray['wpError'] = $wppb_login->get_error_message();
|
148 |
+
$loginFilterArray['wpError'] = apply_filters('wppb_login_wp_error_message', $loginFilterArray['wpError'],$wppb_login);
|
149 |
+
echo $loginFilterArray['wpError'];
|
150 |
+
}
|
151 |
+
?>
|
152 |
+
</p><!-- .error -->
|
153 |
+
<?php
|
154 |
}
|
155 |
+
}
|
156 |
+
?>
|
|
|
157 |
|
158 |
<?php /* use this action hook to add extra content before the login form. */ ?>
|
159 |
<?php do_action( 'wppb_before_login' ); ?>
|
160 |
|
161 |
+
<form action="<?php wppb_curpageurl(); ?>" method="post" class="sign-in" name="loginForm">
|
162 |
<?php
|
163 |
if (isset($_POST['user-name']))
|
164 |
$userName = esc_html( $_POST['user-name'] );
|
192 |
?>
|
193 |
|
194 |
<input type="hidden" name="action" value="log-in" />
|
195 |
+
<input type="hidden" name="button" value="<?php echo $submit;?>" />
|
196 |
+
<input type="hidden" name="formName" value="login" />
|
197 |
</p><!-- .form-submit -->
|
198 |
<?php
|
199 |
+
if ($display === true){
|
200 |
+
$siteURL=get_option('siteurl').'/wp-login.php?action=lostpassword';
|
201 |
+
$siteURL = apply_filters('wppb_pre_login_url_filter', $siteURL);
|
202 |
+
$loginFilterArray['loginURL'] = '
|
203 |
+
<p>
|
204 |
+
<a href="'.$siteURL.'">'. __('Lost password?', 'profilebuilder').'</a>
|
205 |
+
</p>';
|
206 |
+
$loginFilterArray['loginURL'] = apply_filters('wppb_login_url', $loginFilterArray['loginURL'], $siteURL);
|
207 |
+
echo $loginFilterArray['loginURL'];
|
208 |
+
}
|
209 |
?>
|
210 |
<?php wp_nonce_field('verify_true_login','login_nonce_field'); ?>
|
211 |
</form><!-- .sign-in -->
|
front-end/wppb.recover.password.php
CHANGED
@@ -13,8 +13,8 @@ if(!function_exists('wppb_curpageurl_password_recovery')){
|
|
13 |
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
|
14 |
}
|
15 |
|
16 |
-
$questionPos = strpos($pageURL, '?');
|
17 |
-
$submitedPos = strpos($pageURL, 'submited=yes');
|
18 |
|
19 |
if ($submitedPos !== false)
|
20 |
return $pageURL;
|
@@ -41,7 +41,7 @@ if(!function_exists('wppb_curpageurl_password_recovery2')){
|
|
41 |
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
|
42 |
}
|
43 |
|
44 |
-
$questionPos = strpos($pageURL, '?');
|
45 |
|
46 |
|
47 |
$key = $wpdb->get_var($wpdb->prepare("SELECT user_activation_key FROM $wpdb->users WHERE user_login = %s", $user_login));
|
@@ -78,8 +78,8 @@ if(!function_exists('wppb_curpageurl_password_recovery3')){
|
|
78 |
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
|
79 |
}
|
80 |
|
81 |
-
$questionPos = strpos($pageURL, '?');
|
82 |
-
$finalActionPos = strpos($pageURL, 'finalAction=yes');
|
83 |
|
84 |
if ($finalActionPos !== false)
|
85 |
return $pageURL;
|
13 |
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
|
14 |
}
|
15 |
|
16 |
+
$questionPos = strpos( (string)$pageURL, '?' );
|
17 |
+
$submitedPos = strpos( (string)$pageURL, 'submited=yes' );
|
18 |
|
19 |
if ($submitedPos !== false)
|
20 |
return $pageURL;
|
41 |
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
|
42 |
}
|
43 |
|
44 |
+
$questionPos = strpos( (string)$pageURL, '?' );
|
45 |
|
46 |
|
47 |
$key = $wpdb->get_var($wpdb->prepare("SELECT user_activation_key FROM $wpdb->users WHERE user_login = %s", $user_login));
|
78 |
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
|
79 |
}
|
80 |
|
81 |
+
$questionPos = strpos( (string)$pageURL, '?' );
|
82 |
+
$finalActionPos = strpos( (string)$pageURL, 'finalAction=yes' );
|
83 |
|
84 |
if ($finalActionPos !== false)
|
85 |
return $pageURL;
|
front-end/wppb.register.php
CHANGED
@@ -120,7 +120,7 @@ function wppb_add_meta_to_user_on_activation($user_id, $password, $meta){
|
|
120 |
if( !empty($meta[$value['item_type'].$value['id']] ) ){
|
121 |
$filename = $meta[$value['item_type'].$value['id']];
|
122 |
|
123 |
-
$fileNameStartUpload = strpos ( $filename , '_attachment_' );
|
124 |
$originalUploadFilename = substr($filename, $fileNameStartUpload+12);
|
125 |
$newFileName = 'userID_'.$user_id.'_attachment_'.$originalUploadFilename;
|
126 |
|
@@ -140,7 +140,7 @@ function wppb_add_meta_to_user_on_activation($user_id, $password, $meta){
|
|
140 |
if( !empty($meta[$value['item_type'].$value['id']] ) ){
|
141 |
$filename = $meta[$value['item_type'].$value['id']];
|
142 |
|
143 |
-
$fileNameStartAvatar = strpos ( $filename , 'originalAvatar_' );
|
144 |
$originalAvatarFilename = substr($filename, $fileNameStartAvatar+15);
|
145 |
$newFileName = 'userID_'.$user_id.'_originalAvatar_'.$originalAvatarFilename;
|
146 |
|
@@ -597,7 +597,7 @@ function wppb_front_end_register($atts){
|
|
597 |
}
|
598 |
|
599 |
/* If user registered, input info. */
|
600 |
-
if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == 'adduser' && wp_verify_nonce($_POST['register_nonce_field'],'verify_true_registration') ) {
|
601 |
//global $wp_roles;
|
602 |
|
603 |
//get value sent in the shortcode as parameter, default to "subscriber" if not set
|
@@ -1184,7 +1184,7 @@ function wppb_front_end_register($atts){
|
|
1184 |
$customRedirectSettings = get_option('customRedirectSettings');
|
1185 |
if ((trim($customRedirectSettings['afterRegisterTarget']) != '') && ($customRedirectSettings['afterRegister'] == 'yes')){
|
1186 |
$redirectLink = trim($customRedirectSettings['afterRegisterTarget']);
|
1187 |
-
$findHttp = strpos($redirectLink, 'http');
|
1188 |
if ($findHttp === false)
|
1189 |
$redirectLink = 'http://'. $redirectLink;
|
1190 |
}
|
@@ -1216,13 +1216,13 @@ function wppb_front_end_register($atts){
|
|
1216 |
$customRedirectSettings = get_option('customRedirectSettings');
|
1217 |
if ((trim($customRedirectSettings['afterRegisterTarget']) != '') && ($customRedirectSettings['afterRegister'] == 'yes')){
|
1218 |
$redirectLink = trim($customRedirectSettings['afterRegisterTarget']);
|
1219 |
-
$findHttp = strpos($redirectLink, 'http');
|
1220 |
if ($findHttp === false)
|
1221 |
$redirectLink = 'http://'. $redirectLink;
|
1222 |
}
|
1223 |
}
|
1224 |
}
|
1225 |
-
$registerFilterArray['redirectMessage2'] = '<font id="messageTextColor">You will soon be redirected automatically. If you see this page for more than 3
|
1226 |
$registerFilterArray['redirectMessage2'] = apply_filters('wppb_register_redirect_after_creation2', $registerFilterArray['redirectMessage2'], $redirectLink);
|
1227 |
echo $registerFilterArray['redirectMessage2'];
|
1228 |
}
|
@@ -1620,6 +1620,7 @@ function wppb_front_end_register($atts){
|
|
1620 |
<p class="form-submit">
|
1621 |
<input name="adduser" type="submit" id="addusersub" class="submit button" value="<?php if ( current_user_can( 'create_users' ) ) _e('Add User', 'profilebuilder'); else _e('Register', 'profilebuilder'); ?>" />
|
1622 |
<input name="action" type="hidden" id="action" value="adduser" />
|
|
|
1623 |
</p><!-- .form-submit -->
|
1624 |
<?php
|
1625 |
wp_nonce_field('verify_true_registration','register_nonce_field');
|
120 |
if( !empty($meta[$value['item_type'].$value['id']] ) ){
|
121 |
$filename = $meta[$value['item_type'].$value['id']];
|
122 |
|
123 |
+
$fileNameStartUpload = strpos ( (string)$filename , '_attachment_' );
|
124 |
$originalUploadFilename = substr($filename, $fileNameStartUpload+12);
|
125 |
$newFileName = 'userID_'.$user_id.'_attachment_'.$originalUploadFilename;
|
126 |
|
140 |
if( !empty($meta[$value['item_type'].$value['id']] ) ){
|
141 |
$filename = $meta[$value['item_type'].$value['id']];
|
142 |
|
143 |
+
$fileNameStartAvatar = strpos ( (string)$filename , 'originalAvatar_' );
|
144 |
$originalAvatarFilename = substr($filename, $fileNameStartAvatar+15);
|
145 |
$newFileName = 'userID_'.$user_id.'_originalAvatar_'.$originalAvatarFilename;
|
146 |
|
597 |
}
|
598 |
|
599 |
/* If user registered, input info. */
|
600 |
+
if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == 'adduser' && wp_verify_nonce($_POST['register_nonce_field'],'verify_true_registration') && ($_POST['formName'] == 'register') ) {
|
601 |
//global $wp_roles;
|
602 |
|
603 |
//get value sent in the shortcode as parameter, default to "subscriber" if not set
|
1184 |
$customRedirectSettings = get_option('customRedirectSettings');
|
1185 |
if ((trim($customRedirectSettings['afterRegisterTarget']) != '') && ($customRedirectSettings['afterRegister'] == 'yes')){
|
1186 |
$redirectLink = trim($customRedirectSettings['afterRegisterTarget']);
|
1187 |
+
$findHttp = strpos( (string)$redirectLink, 'http' );
|
1188 |
if ($findHttp === false)
|
1189 |
$redirectLink = 'http://'. $redirectLink;
|
1190 |
}
|
1216 |
$customRedirectSettings = get_option('customRedirectSettings');
|
1217 |
if ((trim($customRedirectSettings['afterRegisterTarget']) != '') && ($customRedirectSettings['afterRegister'] == 'yes')){
|
1218 |
$redirectLink = trim($customRedirectSettings['afterRegisterTarget']);
|
1219 |
+
$findHttp = strpos( (string)$redirectLink, 'http' );
|
1220 |
if ($findHttp === false)
|
1221 |
$redirectLink = 'http://'. $redirectLink;
|
1222 |
}
|
1223 |
}
|
1224 |
}
|
1225 |
+
$registerFilterArray['redirectMessage2'] = '<font id="messageTextColor">'. __('You will soon be redirected automatically. If you see this page for more than 3 seconds, please click', 'profilebuilder') .' <a href="'.$redirectLink.'">'.__('here', 'profilebuilder') .'</a>.<meta http-equiv="Refresh" content="3;url='.$redirectLink.'" /></font><br/><br/>';
|
1226 |
$registerFilterArray['redirectMessage2'] = apply_filters('wppb_register_redirect_after_creation2', $registerFilterArray['redirectMessage2'], $redirectLink);
|
1227 |
echo $registerFilterArray['redirectMessage2'];
|
1228 |
}
|
1620 |
<p class="form-submit">
|
1621 |
<input name="adduser" type="submit" id="addusersub" class="submit button" value="<?php if ( current_user_can( 'create_users' ) ) _e('Add User', 'profilebuilder'); else _e('Register', 'profilebuilder'); ?>" />
|
1622 |
<input name="action" type="hidden" id="action" value="adduser" />
|
1623 |
+
<input type="hidden" name="formName" value="register" />
|
1624 |
</p><!-- .form-submit -->
|
1625 |
<?php
|
1626 |
wp_nonce_field('verify_true_registration','register_nonce_field');
|
functions/functions.load.php
CHANGED
@@ -61,34 +61,30 @@ function wppb_add_plugin_stylesheet() {
|
|
61 |
function wppb_show_admin_bar($content){
|
62 |
global $current_user;
|
63 |
global $wpdb;
|
|
|
|
|
64 |
$admintSettingsPresent = get_option('wppb_display_admin_settings','not_found');
|
65 |
-
|
66 |
if ($admintSettingsPresent != 'not_found'){
|
67 |
if ($current_user->ID != 0){
|
68 |
-
|
69 |
-
$userRole = apply_filters ( 'wppb_user_role_value', $current_user->
|
|
|
70 |
if ($userRole != NULL){
|
71 |
-
$
|
72 |
-
$getSettings = $admintSettingsPresent[$currentRole];
|
73 |
if ($getSettings == 'show')
|
74 |
return true;
|
|
|
75 |
elseif ($getSettings == 'hide')
|
76 |
return false;
|
77 |
-
|
78 |
-
$userRole = ($current_user->roles[0]);
|
79 |
-
if ($userRole != NULL){
|
80 |
-
$getSettings = $admintSettingsPresent[$userRole];
|
81 |
-
if ($getSettings == 'show')
|
82 |
-
return true;
|
83 |
-
elseif ($getSettings == 'hide')
|
84 |
-
return false;
|
85 |
-
}
|
86 |
}else
|
87 |
return true;
|
88 |
}
|
89 |
-
|
90 |
-
else
|
91 |
return true;
|
|
|
92 |
}
|
93 |
|
94 |
if(!function_exists('wppb_curpageurl')){
|
@@ -185,4 +181,48 @@ if ( is_admin() ){
|
|
185 |
}else
|
186 |
add_shortcode('wppb-list-users', 'wppb_list_all_users_display_error');
|
187 |
}
|
188 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
function wppb_show_admin_bar($content){
|
62 |
global $current_user;
|
63 |
global $wpdb;
|
64 |
+
|
65 |
+
$userRole = '';
|
66 |
$admintSettingsPresent = get_option('wppb_display_admin_settings','not_found');
|
67 |
+
|
68 |
if ($admintSettingsPresent != 'not_found'){
|
69 |
if ($current_user->ID != 0){
|
70 |
+
|
71 |
+
$userRole = apply_filters ( 'wppb_user_role_value', $current_user->roles[0], $current_user->ID);
|
72 |
+
|
73 |
if ($userRole != NULL){
|
74 |
+
$getSettings = $admintSettingsPresent[$userRole];
|
|
|
75 |
if ($getSettings == 'show')
|
76 |
return true;
|
77 |
+
|
78 |
elseif ($getSettings == 'hide')
|
79 |
return false;
|
80 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
}else
|
82 |
return true;
|
83 |
}
|
84 |
+
|
85 |
+
}else
|
86 |
return true;
|
87 |
+
|
88 |
}
|
89 |
|
90 |
if(!function_exists('wppb_curpageurl')){
|
181 |
}else
|
182 |
add_shortcode('wppb-list-users', 'wppb_list_all_users_display_error');
|
183 |
}
|
184 |
+
}
|
185 |
+
|
186 |
+
|
187 |
+
//functions needed to add the wp_signups table for email confirmation
|
188 |
+
function wppb_signup_schema($oldVal, $newVal){
|
189 |
+
|
190 |
+
// Declare these as global in case schema.php is included from a function.
|
191 |
+
global $wpdb, $wp_queries, $charset_collate;
|
192 |
+
|
193 |
+
if ($newVal['emailConfirmation'] == 'yes'){
|
194 |
+
/**
|
195 |
+
* The database character collate.
|
196 |
+
* @var string
|
197 |
+
* @global string
|
198 |
+
* @name $charset_collate
|
199 |
+
*/
|
200 |
+
$charset_collate = '';
|
201 |
+
|
202 |
+
if ( ! empty( $wpdb->charset ) )
|
203 |
+
$charset_collate = "DEFAULT CHARACTER SET ".$wpdb->charset;
|
204 |
+
if ( ! empty( $wpdb->collate ) )
|
205 |
+
$charset_collate .= " COLLATE ".$wpdb->collate;
|
206 |
+
$tableName = $wpdb->prefix.'signups';
|
207 |
+
|
208 |
+
$sql = "
|
209 |
+
CREATE TABLE $tableName (
|
210 |
+
domain varchar(200) NOT NULL default '',
|
211 |
+
path varchar(100) NOT NULL default '',
|
212 |
+
title longtext NOT NULL,
|
213 |
+
user_login varchar(60) NOT NULL default '',
|
214 |
+
user_email varchar(100) NOT NULL default '',
|
215 |
+
registered datetime NOT NULL default '0000-00-00 00:00:00',
|
216 |
+
activated datetime NOT NULL default '0000-00-00 00:00:00',
|
217 |
+
active tinyint(1) NOT NULL default '0',
|
218 |
+
activation_key varchar(50) NOT NULL default '',
|
219 |
+
meta longtext,
|
220 |
+
KEY activation_key (activation_key),
|
221 |
+
KEY domain (domain)
|
222 |
+
) $charset_collate;";
|
223 |
+
|
224 |
+
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
225 |
+
$res = dbDelta($sql);
|
226 |
+
}
|
227 |
+
}
|
228 |
+
add_action( 'update_option_wppb_general_settings', 'wppb_signup_schema', 10, 2 );
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: http://www.cozmoslabs.com/2011/04/12/wordpress-profile-builder-a-front-end-user-registration-login-and-edit-profile-plugin/
|
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: 1.1.
|
7 |
Author: Reflection Media, Barina Gabriel
|
8 |
Author URI: http://www.reflectionmedia.ro
|
9 |
License: GPL2
|
@@ -54,7 +54,7 @@ function return_bytes($val) {
|
|
54 |
}
|
55 |
|
56 |
|
57 |
-
define( 'PROFILE_BUILDER_VERSION', '1.1.
|
58 |
define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
59 |
define( 'WPPB_PLUGIN_URL', WP_PLUGIN_URL . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
60 |
define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', return_bytes( ini_get( 'upload_max_filesize') ) );
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: http://www.cozmoslabs.com/2011/04/12/wordpress-profile-builder-a-front-end-user-registration-login-and-edit-profile-plugin/
|
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: 1.1.33
|
7 |
Author: Reflection Media, Barina Gabriel
|
8 |
Author URI: http://www.reflectionmedia.ro
|
9 |
License: GPL2
|
54 |
}
|
55 |
|
56 |
|
57 |
+
define( 'PROFILE_BUILDER_VERSION', '1.1.33' );
|
58 |
define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
59 |
define( 'WPPB_PLUGIN_URL', WP_PLUGIN_URL . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
60 |
define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', return_bytes( ini_get( 'upload_max_filesize') ) );
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ custom registration, custom registration form, custom registration page, extra u
|
|
7 |
front-end register, front-end registration, frontend edit profile, edit profile
|
8 |
Requires at least: 3.1
|
9 |
Tested up to: 3.4.1
|
10 |
-
Stable tag: 1.1.
|
11 |
|
12 |
Simple to use profile plugin allowing front-end login, registration and edit profile by using shortcodes.
|
13 |
|
@@ -47,6 +47,11 @@ The [Pro version](http://www.cozmoslabs.com/wordpress-profile-builder/) has the
|
|
47 |
* Select one of the 2 additional CSS styles: black or white
|
48 |
* Access to support forums and documentation
|
49 |
* 1 Year of Updates / Priority Support
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
[Click here to find out more](http://www.cozmoslabs.com/wordpress-profile-builder/) or watch the video below:
|
52 |
|
@@ -81,14 +86,16 @@ This plugin only adds/removes fields in the front-end. The default information-f
|
|
81 |
|
82 |
|
83 |
== Screenshots ==
|
84 |
-
1.
|
85 |
-
2.
|
86 |
-
3.
|
87 |
-
4.
|
88 |
-
|
89 |
-
7. Logged in Page: screenshot7.jpg
|
90 |
|
91 |
== Changelog ==
|
|
|
|
|
|
|
92 |
= 1.1.32 =
|
93 |
Error fixed.
|
94 |
|
7 |
front-end register, front-end registration, frontend edit profile, edit profile
|
8 |
Requires at least: 3.1
|
9 |
Tested up to: 3.4.1
|
10 |
+
Stable tag: 1.1.33
|
11 |
|
12 |
Simple to use profile plugin allowing front-end login, registration and edit profile by using shortcodes.
|
13 |
|
47 |
* Select one of the 2 additional CSS styles: black or white
|
48 |
* Access to support forums and documentation
|
49 |
* 1 Year of Updates / Priority Support
|
50 |
+
* Addons (e.g. custom redirects)
|
51 |
+
* Fully Customizable User-Listing
|
52 |
+
* Admin Approval
|
53 |
+
* Email Confirmation
|
54 |
+
* reCAPTCHA on registration form
|
55 |
|
56 |
[Click here to find out more](http://www.cozmoslabs.com/wordpress-profile-builder/) or watch the video below:
|
57 |
|
86 |
|
87 |
|
88 |
== Screenshots ==
|
89 |
+
1. General Settings: screenshot1.jpg
|
90 |
+
2. Show/Hide Admin Bar: screenshot3.jpg
|
91 |
+
3. Select Default User Fields: screenshot4
|
92 |
+
4. Register Page: screenshot6.jpg
|
93 |
+
5. Logged in Page: screenshot7.jpg
|
|
|
94 |
|
95 |
== Changelog ==
|
96 |
+
= 1.1.33 =
|
97 |
+
Fixed function where it wouldn't create the _signups table in the free version.
|
98 |
+
|
99 |
= 1.1.32 =
|
100 |
Error fixed.
|
101 |
|
screenshot-1.png
ADDED
Binary file
|
screenshot-2.png
ADDED
Binary file
|
screenshot-3.png
ADDED
Binary file
|
screenshot-4.png
ADDED
Binary file
|
screenshot-5.png
ADDED
Binary file
|
screenshots/screenshot-1.jpg
DELETED
Binary file
|
screenshots/screenshot-2.jpg
DELETED
Binary file
|
screenshots/screenshot-3.jpg
DELETED
Binary file
|
screenshots/screenshot1.jpg
DELETED
Binary file
|
screenshots/screenshot2.jpg
DELETED
Binary file
|
screenshots/screenshot3.jpg
DELETED
Binary file
|
screenshots/screenshot6.jpg
DELETED
Binary file
|
screenshots/screenshot7.jpg
DELETED
Binary file
|
screenshots/screenshot8.jpg
DELETED
Binary file
|
translation/profilebuilder-cs_CZ.mo
CHANGED
Binary file
|
translation/profilebuilder-cs_CZ.po
CHANGED
@@ -1,897 +1,903 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Poedit-
|
14 |
-
"X-Poedit-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
|
21 |
-
# @ profilebuilder
|
22 |
-
#: front-end/menu.file.php:25
|
23 |
-
#: front-end/menu.file.php:28
|
24 |
msgid "Profile Builder"
|
25 |
msgstr "Profile Builder"
|
26 |
|
27 |
# @ profilebuilder
|
28 |
-
#: front-end/menu.file.php:26
|
29 |
msgid "Welcome to Profile Builder!"
|
30 |
msgstr "Vítá vás Profile Builder!"
|
31 |
|
32 |
# @ profilebuilder
|
33 |
-
#: front-end/menu.file.php:28
|
34 |
msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
|
35 |
msgstr " umožňuje přidat front-end menu pro všechny uživatele vašeho webu. To usnadňuje úpravu profilu a zjednodušuje registraci nových uživatelů."
|
36 |
|
37 |
# @ profilebuilder
|
38 |
-
#: front-end/menu.file.php:29
|
39 |
msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
|
40 |
msgstr "Uživatelé s administrátorskými právy mohou upravovat stávající pole v profilu a vytvářet nová."
|
41 |
|
42 |
# @ profilebuilder
|
43 |
-
#: front-end/menu.file.php:30
|
44 |
msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
|
45 |
msgstr "Pro úpravu profilu přímo na webu (ne v administraci) stačí vytvořit novu Stránku (a pojmenovat ji například Upravit profil)."
|
46 |
|
47 |
# @ profilebuilder
|
48 |
-
#: front-end/menu.file.php:31
|
49 |
msgid "Now all you need to do is add the following shortcode(for the previous example): "
|
50 |
msgstr "Do vytvořené stránky (nebo widgetu) pak stačí umístit následující kód: "
|
51 |
|
52 |
# @ profilebuilder
|
53 |
-
#: front-end/menu.file.php:32
|
54 |
msgid "Publish your page and you are ready to go!"
|
55 |
msgstr "Nyní vytvořenou stránku publikujte a jste hotovi."
|
56 |
|
57 |
# @ profilebuilder
|
58 |
-
#: front-end/menu.file.php:33
|
59 |
msgid "You can use the following shortcodes:"
|
60 |
msgstr "K dispozici jsou následující kódy:"
|
61 |
|
62 |
# @ profilebuilder
|
63 |
-
#: front-end/menu.file.php:34
|
64 |
msgid "for a log-in form."
|
65 |
msgstr " pro přihlašovací formulář."
|
66 |
|
67 |
# @ profilebuilder
|
68 |
-
#: front-end/menu.file.php:35
|
69 |
msgid "to add a registration form."
|
70 |
msgstr " pro registrační formulář."
|
71 |
|
72 |
# @ profilebuilder
|
73 |
-
#: front-end/menu.file.php:36
|
74 |
msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
|
75 |
msgstr "pro poskytnutí přístupu k vlastnímu profilu (pouze pro přihlášené uživatele)."
|
76 |
|
77 |
# @ profilebuilder
|
78 |
-
#: front-end/menu.file.php:37
|
79 |
#, fuzzy
|
80 |
msgid "to add a password recovery form."
|
81 |
msgstr " pro registrační formulář."
|
82 |
|
83 |
# @ profilebuilder
|
84 |
-
#: front-end/menu.file.php:39
|
85 |
msgid "Users with administrator rights have access to the following features:"
|
86 |
msgstr "Uživatelé s administrátorskými právy mohou také:"
|
87 |
|
88 |
# @ profilebuilder
|
89 |
-
#: front-end/menu.file.php:40
|
90 |
msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
|
91 |
msgstr "přidat/zahrnout vlastní CSS styl z aktuální šablony nebo použít některý ze stylů Profile Builder (výchozí, bílý, černý)."
|
92 |
|
93 |
# @ profilebuilder
|
94 |
-
#: front-end/menu.file.php:41
|
95 |
msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
|
96 |
msgstr "zvolit, zda zobrazovat administrační menu ve front-endu - v závislosti na uživatelské skupině."
|
97 |
|
98 |
# @ profilebuilder
|
99 |
-
#: front-end/menu.file.php:42
|
100 |
msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
|
101 |
msgstr "určit, která pole mohou uživatelé vidět/upravovat. Obsah skrytých polí zůstane beze změny."
|
102 |
|
103 |
# @ profilebuilder
|
104 |
-
#: front-end/menu.file.php:43
|
105 |
msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
|
106 |
msgstr "přidat další uživatelská pole k již existujícím polím profilu. K dispozici jsou typy polí: nadpis, text, textarea, select, check-box, radio a upload."
|
107 |
|
108 |
# @ profilebuilder
|
109 |
-
#: front-end/menu.file.php:44
|
110 |
msgid "add an avatar field."
|
111 |
msgstr "přidat pole pro avatar."
|
112 |
|
113 |
-
#: front-end/menu.file.php:45
|
114 |
msgid "create custom redirects."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: front-end/menu.file.php:46
|
118 |
msgid "front-end userlisting using the"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: front-end/menu.file.php:46
|
122 |
msgid "shortcode."
|
123 |
msgstr ""
|
124 |
|
125 |
# @ profilebuilder
|
126 |
-
#: front-end/menu.file.php:49
|
127 |
-
#: front-end/menu.file.php:
|
128 |
-
#: front-end/menu.file.php:
|
129 |
msgid "NOTE:"
|
130 |
msgstr "POZNÁMKA:"
|
131 |
|
132 |
# @ profilebuilder
|
133 |
-
#: front-end/menu.file.php:50
|
134 |
msgid "this plugin only adds/removes fields in the front-end."
|
135 |
msgstr "tento plugin pouze přidává/odstraňuje pole ve front-endu."
|
136 |
|
137 |
# @ profilebuilder
|
138 |
-
#: front-end/menu.file.php:51
|
139 |
msgid "The default information-fields will still be visible(and thus modifiable)"
|
140 |
msgstr "Výchozí pole budou i nadále dostupná (včetně možnosti úprav)"
|
141 |
|
142 |
# @ profilebuilder
|
143 |
-
#: front-end/menu.file.php:52
|
144 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
145 |
msgstr "v administraci. Vlastní pole budou přístupná ve front-endu (na webu)."
|
146 |
|
147 |
-
#: front-end/menu.file.php:
|
148 |
-
#: front-end/menu.file.php:
|
149 |
-
#: front-end/options.php:
|
150 |
-
#: premium/addon/addon.php:89
|
151 |
msgid "General Settings"
|
152 |
msgstr ""
|
153 |
|
154 |
# @ profilebuilder
|
155 |
-
#: front-end/menu.file.php:
|
156 |
#, fuzzy
|
157 |
msgid "Stylesheet Used on the Front-End:"
|
158 |
msgstr "CSS styl:"
|
159 |
|
160 |
# @ profilebuilder
|
161 |
-
#: front-end/menu.file.php:
|
162 |
msgid "Default"
|
163 |
msgstr "Výchozí"
|
164 |
|
165 |
# @ profilebuilder
|
166 |
-
#: front-end/menu.file.php:
|
167 |
msgid "White"
|
168 |
msgstr "Bílý"
|
169 |
|
170 |
# @ profilebuilder
|
171 |
-
#: front-end/menu.file.php:
|
172 |
msgid "Black"
|
173 |
msgstr "Černý"
|
174 |
|
175 |
# @ profilebuilder
|
176 |
-
#: front-end/menu.file.php:
|
177 |
msgid "None"
|
178 |
msgstr "Žádný"
|
179 |
|
180 |
-
#: front-end/menu.file.php:
|
181 |
msgid "\"Email Confirmation\" Feature Activated:"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: front-end/menu.file.php:
|
185 |
-
#: front-end/menu.file.php:
|
186 |
-
#: front-end/menu.file.php:
|
187 |
-
#: front-end/menu.file.php:
|
188 |
-
#: front-end/menu.file.php:
|
189 |
-
#: front-end/menu.file.php:
|
190 |
-
#: front-end/menu.file.php:
|
191 |
-
#: front-end/menu.file.php:
|
192 |
-
#: front-end/menu.file.php:
|
193 |
-
#: front-end/menu.file.php:
|
194 |
-
#: front-end/menu.file.php:
|
195 |
-
#: front-end/menu.file.php:
|
196 |
-
#: front-end/menu.file.php:
|
197 |
-
#: front-end/menu.file.php:
|
198 |
-
#: premium/addon/addon.php:477
|
199 |
-
#: premium/addon/addon.php:485
|
200 |
-
#: premium/addon/addon.php:495
|
201 |
-
#: premium/addon/addon.php:
|
202 |
-
#: premium/addon/addon.php:
|
203 |
-
#: premium/addon/addon.php:
|
204 |
-
#: premium/addon/addon.php:
|
205 |
msgid "Yes"
|
206 |
msgstr ""
|
207 |
|
208 |
# @ profilebuilder
|
209 |
-
#: front-end/menu.file.php:
|
210 |
-
#: front-end/menu.file.php:
|
211 |
-
#: front-end/menu.file.php:
|
212 |
-
#: front-end/menu.file.php:
|
213 |
-
#: front-end/menu.file.php:
|
214 |
-
#: front-end/menu.file.php:
|
215 |
-
#: front-end/menu.file.php:
|
216 |
-
#: front-end/menu.file.php:
|
217 |
-
#: front-end/menu.file.php:
|
218 |
-
#: front-end/menu.file.php:
|
219 |
-
#: front-end/menu.file.php:
|
220 |
-
#: front-end/menu.file.php:
|
221 |
-
#: front-end/menu.file.php:
|
222 |
-
#: front-end/menu.file.php:
|
223 |
-
#: premium/addon/addon.php:478
|
224 |
-
#: premium/addon/addon.php:486
|
225 |
-
#: premium/addon/addon.php:496
|
226 |
-
#: premium/addon/addon.php:
|
227 |
-
#: premium/addon/addon.php:
|
228 |
-
#: premium/addon/addon.php:
|
229 |
-
#: premium/addon/addon.php:
|
230 |
#, fuzzy
|
231 |
msgid "No"
|
232 |
msgstr "Žádný"
|
233 |
|
234 |
-
#: front-end/menu.file.php:
|
235 |
msgid "\"Admin Approval\" Feature Activated:"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: front-end/menu.file.php:
|
239 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: front-end/menu.file.php:
|
243 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: front-end/menu.file.php:
|
247 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
248 |
msgstr ""
|
249 |
|
250 |
# @ default
|
251 |
-
#: front-end/menu.file.php:
|
252 |
-
#: front-end/menu.file.php:
|
253 |
-
#: front-end/menu.file.php:
|
254 |
-
#: premium/premium.php:
|
255 |
-
#: premium/addon/addon.php:45
|
256 |
-
#: premium/addon/addon.php:421
|
257 |
-
#: premium/addon/addon.php:
|
258 |
-
#: premium/addon/addon.php:
|
259 |
msgid "Save Changes"
|
260 |
msgstr "Uložit změny"
|
261 |
|
262 |
# @ profilebuilder
|
263 |
-
#: front-end/menu.file.php:
|
264 |
-
#: front-end/menu.file.php:
|
265 |
msgid "Show/Hide the Admin Bar on Front End"
|
266 |
msgstr "Administrační lišta ve front-endu"
|
267 |
|
268 |
# @ profilebuilder
|
269 |
-
#: front-end/menu.file.php:
|
270 |
msgid "User-group"
|
271 |
msgstr "Skupina"
|
272 |
|
273 |
# @ profilebuilder
|
274 |
-
#: front-end/menu.file.php:
|
275 |
-
#: front-end/menu.file.php:
|
276 |
msgid "Visibility"
|
277 |
msgstr "Viditelnost"
|
278 |
|
279 |
# @ profilebuilder
|
280 |
-
#: front-end/menu.file.php:
|
281 |
-
#: front-end/menu.file.php:
|
282 |
-
#: front-end/menu.file.php:
|
283 |
-
#: front-end/menu.file.php:
|
284 |
-
#: front-end/menu.file.php:
|
285 |
-
#: front-end/menu.file.php:
|
286 |
-
#: front-end/menu.file.php:
|
287 |
-
#: front-end/menu.file.php:
|
288 |
-
#: front-end/menu.file.php:
|
289 |
-
#: front-end/menu.file.php:
|
290 |
-
#: front-end/menu.file.php:
|
291 |
-
#: front-end/menu.file.php:
|
292 |
-
#: front-end/menu.file.php:
|
293 |
msgid "Show"
|
294 |
msgstr "Zobrazit"
|
295 |
|
296 |
# @ profilebuilder
|
297 |
-
#: front-end/menu.file.php:
|
298 |
-
#: front-end/menu.file.php:
|
299 |
-
#: front-end/menu.file.php:
|
300 |
-
#: front-end/menu.file.php:
|
301 |
-
#: front-end/menu.file.php:
|
302 |
-
#: front-end/menu.file.php:
|
303 |
-
#: front-end/menu.file.php:
|
304 |
-
#: front-end/menu.file.php:
|
305 |
-
#: front-end/menu.file.php:
|
306 |
-
#: front-end/menu.file.php:
|
307 |
-
#: front-end/menu.file.php:
|
308 |
-
#: front-end/menu.file.php:
|
309 |
-
#: front-end/menu.file.php:
|
310 |
msgid "Hide"
|
311 |
msgstr "Skrýt"
|
312 |
|
313 |
-
#: front-end/menu.file.php:
|
314 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
315 |
msgstr ""
|
316 |
|
317 |
# @ profilebuilder
|
318 |
-
#: front-end/menu.file.php:
|
319 |
-
#: front-end/menu.file.php:
|
320 |
-
#: front-end/options.php:
|
321 |
msgid "Default Profile Fields"
|
322 |
msgstr "Výchozí pole profilu"
|
323 |
|
324 |
# @ profilebuilder
|
325 |
-
#: front-end/menu.file.php:
|
326 |
msgid "Input Field Name"
|
327 |
msgstr "Název pole"
|
328 |
|
329 |
# @ profilebuilder
|
330 |
-
#: front-end/menu.file.php:
|
331 |
#, fuzzy
|
332 |
msgid "Required"
|
333 |
msgstr "(vyžadováno)"
|
334 |
|
335 |
# @ profilebuilder
|
336 |
-
#: front-end/menu.file.php:
|
337 |
msgid "Name:"
|
338 |
msgstr "Jméno:"
|
339 |
|
340 |
# @ profilebuilder
|
341 |
-
#: front-end/menu.file.php:
|
342 |
-
#: front-end/wppb.edit.profile.php:698
|
343 |
-
#: front-end/wppb.login.php:
|
344 |
-
#: front-end/wppb.register.php:
|
345 |
-
#: front-end/wppb.register.php:
|
346 |
-
#: premium/addon/addon.functions.php:
|
347 |
msgid "Username"
|
348 |
msgstr "Uživatelské jméno"
|
349 |
|
350 |
# @ profilebuilder
|
351 |
-
#: front-end/menu.file.php:
|
352 |
-
#: front-end/wppb.edit.profile.php:718
|
353 |
-
#: front-end/wppb.register.php:
|
354 |
msgid "First Name"
|
355 |
msgstr "Křestní jméno"
|
356 |
|
357 |
# @ profilebuilder
|
358 |
-
#: front-end/menu.file.php:
|
359 |
-
#: front-end/wppb.edit.profile.php:738
|
360 |
-
#: front-end/wppb.register.php:
|
361 |
msgid "Last Name"
|
362 |
msgstr "Příjmení"
|
363 |
|
364 |
# @ profilebuilder
|
365 |
-
#: front-end/menu.file.php:
|
366 |
-
#: front-end/wppb.edit.profile.php:758
|
367 |
-
#: front-end/wppb.register.php:
|
368 |
msgid "Nickname"
|
369 |
msgstr "Přezdívka"
|
370 |
|
371 |
# @ profilebuilder
|
372 |
-
#: front-end/menu.file.php:
|
373 |
msgid "Display name publicly as..."
|
374 |
msgstr "Veřejně zobrazovat jako..."
|
375 |
|
376 |
# @ profilebuilder
|
377 |
-
#: front-end/menu.file.php:
|
378 |
msgid "Contact Info:"
|
379 |
msgstr "Kontaktní informace:"
|
380 |
|
381 |
# @ profilebuilder
|
382 |
-
#: front-end/menu.file.php:
|
383 |
-
#: front-end/wppb.edit.profile.php:828
|
384 |
-
#: front-end/wppb.register.php:
|
385 |
-
#: front-end/wppb.register.php:
|
386 |
msgid "E-mail"
|
387 |
msgstr "E-mail"
|
388 |
|
389 |
# @ profilebuilder
|
390 |
-
#: front-end/menu.file.php:
|
391 |
-
#: front-end/wppb.edit.profile.php:847
|
392 |
-
#: front-end/wppb.register.php:
|
393 |
-
#: premium/addon/addon.functions.php:
|
394 |
msgid "Website"
|
395 |
msgstr "Web"
|
396 |
|
397 |
# @ profilebuilder
|
398 |
-
#: front-end/menu.file.php:
|
399 |
-
#: front-end/wppb.edit.profile.php:865
|
400 |
-
#: front-end/wppb.register.php:
|
401 |
msgid "AIM"
|
402 |
msgstr "AIM (AOL Instant Messenger)"
|
403 |
|
404 |
# @ profilebuilder
|
405 |
-
#: front-end/menu.file.php:
|
406 |
-
#: front-end/wppb.edit.profile.php:883
|
407 |
-
#: front-end/wppb.register.php:
|
408 |
msgid "Yahoo IM"
|
409 |
msgstr "Yahoo IM"
|
410 |
|
411 |
# @ profilebuilder
|
412 |
-
#: front-end/menu.file.php:
|
413 |
-
#: front-end/wppb.edit.profile.php:901
|
414 |
-
#: front-end/wppb.register.php:
|
415 |
msgid "Jabber / Google Talk"
|
416 |
msgstr "Jabber / Google Talk"
|
417 |
|
418 |
# @ profilebuilder
|
419 |
-
#: front-end/menu.file.php:
|
420 |
msgid "About Yourself:"
|
421 |
msgstr "O vás:"
|
422 |
|
423 |
# @ profilebuilder
|
424 |
-
#: front-end/menu.file.php:
|
425 |
-
#: front-end/wppb.edit.profile.php:922
|
426 |
-
#: front-end/wppb.register.php:
|
427 |
-
#: premium/addon/addon.functions.php:
|
428 |
msgid "Biographical Info"
|
429 |
msgstr "Osobní informace"
|
430 |
|
431 |
# @ profilebuilder
|
432 |
-
#: front-end/menu.file.php:
|
433 |
-
#: front-end/wppb.edit.profile.php:932
|
434 |
msgid "New Password"
|
435 |
msgstr "Nové heslo"
|
436 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
437 |
# @ profilebuilder
|
438 |
-
#: front-end/options.php:
|
439 |
msgid "Basic Information"
|
440 |
msgstr "Základní informace"
|
441 |
|
442 |
# @ profilebuilder
|
443 |
-
#: front-end/options.php:
|
444 |
msgid "Show/Hide the Admin Bar on Front-end"
|
445 |
msgstr "Zobrazit/skrýt administrační lištu ve front-endu"
|
446 |
|
447 |
# @ profilebuilder
|
448 |
-
#: front-end/options.php:
|
449 |
-
#: premium/premium.php:6
|
450 |
-
#: premium/premium.php:7
|
451 |
msgid "Extra Profile Fields"
|
452 |
msgstr "Vlastní pole profilu"
|
453 |
|
454 |
# @ profilebuilder
|
455 |
-
#: front-end/options.php:
|
456 |
#, fuzzy
|
457 |
msgid "Addons"
|
458 |
msgstr "Přidat volbu"
|
459 |
|
460 |
# @ profilebuilder
|
461 |
-
#: front-end/options.php:
|
462 |
msgid "Register Your Version"
|
463 |
msgstr "Registrace"
|
464 |
|
465 |
-
#: front-end/wppb.edit.profile.php:85
|
466 |
-
#: front-end/wppb.register.php:
|
467 |
msgid "The information size you were trying to submit was larger than"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: front-end/wppb.edit.profile.php:86
|
471 |
-
#: front-end/wppb.register.php:
|
472 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: front-end/wppb.edit.profile.php:87
|
476 |
-
#: front-end/wppb.register.php:
|
477 |
msgid "Since it was also larger than"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: front-end/wppb.edit.profile.php:87
|
481 |
-
#: front-end/wppb.register.php:
|
482 |
msgid "no additional information is available."
|
483 |
msgstr ""
|
484 |
|
485 |
# @ profilebuilder
|
486 |
-
#: front-end/wppb.edit.profile.php:559
|
487 |
msgid "You must be logged in to edit your profile."
|
488 |
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
489 |
|
490 |
# @ profilebuilder
|
491 |
-
#: front-end/wppb.edit.profile.php:569
|
492 |
msgid "The avatar was successfully deleted."
|
493 |
msgstr "Avatar byl úspěšně odstraněn."
|
494 |
|
495 |
# @ profilebuilder
|
496 |
-
#: front-end/wppb.edit.profile.php:576
|
497 |
#, fuzzy
|
498 |
msgid "The attachment"
|
499 |
msgstr "Příloha \""
|
500 |
|
501 |
# @ profilebuilder
|
502 |
-
#: front-end/wppb.edit.profile.php:576
|
503 |
#, fuzzy
|
504 |
msgid "was successfully deleted."
|
505 |
msgstr "\" byla úspěšně odstraněna."
|
506 |
|
507 |
# @ profilebuilder
|
508 |
-
#: front-end/wppb.edit.profile.php:591
|
509 |
msgid "The changes have been successfully saved."
|
510 |
msgstr "Změny byly úspěšně uloženy."
|
511 |
|
512 |
# @ profilebuilder
|
513 |
-
#: front-end/wppb.edit.profile.php:598
|
514 |
#, fuzzy
|
515 |
msgid "The email address you entered is already registered to a different user."
|
516 |
msgstr "Zadaný e-mail má již zaregistrován jiný uživatel. <br/> E-mailová adresa"
|
517 |
|
518 |
-
#: front-end/wppb.edit.profile.php:598
|
519 |
-
#: front-end/wppb.edit.profile.php:608
|
520 |
msgid "The email address was"
|
521 |
msgstr ""
|
522 |
|
523 |
# @ profilebuilder
|
524 |
-
#: front-end/wppb.edit.profile.php:598
|
525 |
-
#: front-end/wppb.edit.profile.php:608
|
526 |
-
#: front-end/wppb.edit.profile.php:617
|
527 |
-
#: front-end/wppb.edit.profile.php:626
|
528 |
-
#: front-end/wppb.edit.profile.php:652
|
529 |
-
#: front-end/wppb.edit.profile.php:660
|
530 |
-
#: front-end/wppb.edit.profile.php:675
|
531 |
msgid "NOT"
|
532 |
msgstr "NEBYLA"
|
533 |
|
534 |
# @ profilebuilder
|
535 |
-
#: front-end/wppb.edit.profile.php:598
|
536 |
-
#: front-end/wppb.edit.profile.php:608
|
537 |
-
#: front-end/wppb.edit.profile.php:617
|
538 |
-
#: front-end/wppb.edit.profile.php:626
|
539 |
-
#: front-end/wppb.edit.profile.php:652
|
540 |
-
#: front-end/wppb.edit.profile.php:660
|
541 |
-
#: front-end/wppb.edit.profile.php:675
|
542 |
#, fuzzy
|
543 |
msgid "updated along with the rest of the information."
|
544 |
msgstr " aktualizována spolu s ostatními informacemi."
|
545 |
|
546 |
# @ profilebuilder
|
547 |
-
#: front-end/wppb.edit.profile.php:608
|
548 |
#, fuzzy
|
549 |
msgid "The email address you entered is invalid."
|
550 |
msgstr "Zadaný e-mail není platný. <br/> Adresa "
|
551 |
|
552 |
# @ profilebuilder
|
553 |
-
#: front-end/wppb.edit.profile.php:617
|
554 |
#, fuzzy
|
555 |
msgid "The passwords you entered do not match."
|
556 |
msgstr "Zadaná hesla se neshodují. <br/> Zadané heslo "
|
557 |
|
558 |
# @ profilebuilder
|
559 |
-
#: front-end/wppb.edit.profile.php:617
|
560 |
-
#: front-end/wppb.edit.profile.php:626
|
561 |
#, fuzzy
|
562 |
msgid "The password was"
|
563 |
msgstr "Nové heslo"
|
564 |
|
565 |
# @ profilebuilder
|
566 |
-
#: front-end/wppb.edit.profile.php:626
|
567 |
#, fuzzy
|
568 |
msgid "You didn't complete both password fields."
|
569 |
msgstr "Nebyla vyplněna obě pole hesla."
|
570 |
|
571 |
-
#: front-end/wppb.edit.profile.php:633
|
572 |
msgid "Your profile was NOT updated!"
|
573 |
msgstr ""
|
574 |
|
575 |
# @ profilebuilder
|
576 |
-
#: front-end/wppb.edit.profile.php:642
|
577 |
#, fuzzy
|
578 |
msgid "There was an error while trying to upload the following attachments:"
|
579 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
580 |
|
581 |
# @ profilebuilder
|
582 |
-
#: front-end/wppb.edit.profile.php:652
|
583 |
#, fuzzy
|
584 |
msgid "Possible cause: the size was bigger than"
|
585 |
msgstr "<br/> Možná příčina: velikost byla větší než "
|
586 |
|
587 |
# @ profilebuilder
|
588 |
-
#: front-end/wppb.edit.profile.php:652
|
589 |
#, fuzzy
|
590 |
msgid "The listed attachements were"
|
591 |
msgstr "B. <br/> Příloha (přílohy) "
|
592 |
|
593 |
# @ profilebuilder
|
594 |
-
#: front-end/wppb.edit.profile.php:660
|
595 |
#, fuzzy
|
596 |
msgid "There was an error while trying to upload your avatar picture."
|
597 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
598 |
|
599 |
-
#: front-end/wppb.edit.profile.php:660
|
600 |
msgid "Possible cause: size/incorrect file-type."
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: front-end/wppb.edit.profile.php:660
|
604 |
msgid "The avatar was"
|
605 |
msgstr ""
|
606 |
|
607 |
# @ profilebuilder
|
608 |
-
#: front-end/wppb.edit.profile.php:668
|
609 |
-
#: front-end/wppb.register.php:
|
610 |
#, fuzzy
|
611 |
msgid "There was an error while trying to upload the following attachment(s)"
|
612 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
613 |
|
614 |
-
#: front-end/wppb.edit.profile.php:675
|
615 |
-
#: front-end/wppb.register.php:
|
616 |
msgid "Only files with the following extension(s) can be uploaded:"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: front-end/wppb.edit.profile.php:675
|
620 |
msgid "This file was"
|
621 |
msgstr ""
|
622 |
|
623 |
# @ profilebuilder
|
624 |
-
#: front-end/wppb.edit.profile.php:692
|
625 |
-
#: front-end/wppb.register.php:
|
626 |
msgid "Name"
|
627 |
msgstr "Jméno"
|
628 |
|
629 |
# @ default
|
630 |
-
#: front-end/wppb.edit.profile.php:699
|
631 |
#, fuzzy
|
632 |
msgid "Usernames cannot be changed."
|
633 |
msgstr "Uživatelská jména nelze měnit."
|
634 |
|
635 |
-
#: front-end/wppb.edit.profile.php:708
|
636 |
-
#: front-end/wppb.edit.profile.php:728
|
637 |
-
#: front-end/wppb.edit.profile.php:748
|
638 |
-
#: front-end/wppb.edit.profile.php:768
|
639 |
-
#: front-end/wppb.edit.profile.php:818
|
640 |
-
#: front-end/wppb.edit.profile.php:839
|
641 |
-
#: front-end/wppb.edit.profile.php:857
|
642 |
-
#: front-end/wppb.edit.profile.php:875
|
643 |
-
#: front-end/wppb.edit.profile.php:893
|
644 |
-
#: front-end/wppb.edit.profile.php:914
|
645 |
msgid "This field is marked as required by the administrator."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: front-end/wppb.edit.profile.php:711
|
649 |
-
#: front-end/wppb.edit.profile.php:731
|
650 |
-
#: front-end/wppb.edit.profile.php:751
|
651 |
-
#: front-end/wppb.edit.profile.php:771
|
652 |
-
#: front-end/wppb.edit.profile.php:821
|
653 |
-
#: front-end/wppb.edit.profile.php:841
|
654 |
-
#: front-end/wppb.edit.profile.php:859
|
655 |
-
#: front-end/wppb.edit.profile.php:877
|
656 |
-
#: front-end/wppb.edit.profile.php:895
|
657 |
-
#: front-end/wppb.edit.profile.php:916
|
658 |
msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
|
659 |
msgstr ""
|
660 |
|
661 |
# @ profilebuilder
|
662 |
-
#: front-end/wppb.edit.profile.php:779
|
663 |
msgid "Display name publicly as"
|
664 |
msgstr "Veřejně zobrazovat jako"
|
665 |
|
666 |
# @ profilebuilder
|
667 |
-
#: front-end/wppb.edit.profile.php:811
|
668 |
-
#: front-end/wppb.register.php:
|
669 |
msgid "Contact Info"
|
670 |
msgstr "Kontaktní informace"
|
671 |
|
672 |
# @ profilebuilder
|
673 |
-
#: front-end/wppb.edit.profile.php:830
|
674 |
msgid "(required)"
|
675 |
msgstr "(vyžadováno)"
|
676 |
|
677 |
# @ profilebuilder
|
678 |
-
#: front-end/wppb.edit.profile.php:907
|
679 |
-
#: front-end/wppb.register.php:
|
680 |
msgid "About Yourself"
|
681 |
msgstr "O vás"
|
682 |
|
683 |
# @ profilebuilder
|
684 |
-
#: front-end/wppb.edit.profile.php:937
|
685 |
-
#: front-end/wppb.recover.password.php:
|
686 |
-
#: front-end/wppb.recover.password.php:
|
687 |
-
#: front-end/wppb.register.php:
|
688 |
msgid "Repeat Password"
|
689 |
msgstr "Heslo ještě jednou"
|
690 |
|
691 |
# @ profilebuilder
|
692 |
-
#: front-end/wppb.edit.profile.php:968
|
693 |
msgid "Update"
|
694 |
msgstr "Aktualizovat"
|
695 |
|
696 |
# @ profilebuilder
|
697 |
-
#: front-end/wppb.login.php:
|
698 |
#, fuzzy
|
699 |
msgid "You are currently logged in as"
|
700 |
msgstr "Jste přihlášeni jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
701 |
|
702 |
# @ profilebuilder
|
703 |
-
#: front-end/wppb.login.php:
|
704 |
msgid "Log out of this account"
|
705 |
msgstr "Odhlásit se"
|
706 |
|
707 |
# @ profilebuilder
|
708 |
-
#: front-end/wppb.login.php:
|
709 |
#, fuzzy
|
710 |
msgid "Log out"
|
711 |
msgstr "Odhlásit se »"
|
712 |
|
713 |
# @ profilebuilder
|
714 |
-
#: front-end/wppb.login.php:
|
715 |
#, fuzzy
|
716 |
msgid "You have successfully logged in as"
|
717 |
msgstr "Úspěšné přihlášení jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
718 |
|
719 |
-
#: front-end/wppb.login.php:
|
|
|
720 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: front-end/wppb.login.php:
|
724 |
-
#: front-end/wppb.
|
|
|
|
|
725 |
msgid "here"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: front-end/wppb.login.php:
|
729 |
-
#: front-end/wppb.recover.password.php:
|
730 |
msgid "ERROR:"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: front-end/wppb.login.php:
|
734 |
msgid "The username field is empty"
|
735 |
msgstr ""
|
736 |
|
737 |
# @ profilebuilder
|
738 |
-
#: front-end/wppb.login.php:
|
739 |
-
#: front-end/wppb.recover.password.php:
|
740 |
-
#: front-end/wppb.recover.password.php:
|
741 |
-
#: front-end/wppb.register.php:
|
742 |
msgid "Password"
|
743 |
msgstr "Heslo"
|
744 |
|
745 |
# @ profilebuilder
|
746 |
-
#: front-end/wppb.login.php:
|
747 |
msgid "Log in"
|
748 |
msgstr "Přihlásit se"
|
749 |
|
750 |
# @ profilebuilder
|
751 |
-
#: front-end/wppb.login.php:
|
752 |
msgid "Remember me"
|
753 |
msgstr "Pamatovat si mě"
|
754 |
|
755 |
# @ profilebuilder
|
756 |
-
#: front-end/wppb.login.php:
|
757 |
msgid "Lost password?"
|
758 |
msgstr "Zapomněli jste heslo?"
|
759 |
|
760 |
-
#: front-end/wppb.recover.password.php:
|
761 |
-
#: front-end/wppb.recover.password.php:
|
762 |
-
#: front-end/wppb.recover.password.php:
|
763 |
msgid "ERROR"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: front-end/wppb.recover.password.php:
|
767 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: front-end/wppb.recover.password.php:
|
771 |
-
#: front-end/wppb.recover.password.php:
|
772 |
msgid "A password reset email has been sent to "
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: front-end/wppb.recover.password.php:
|
776 |
-
#: front-end/wppb.recover.password.php:
|
777 |
msgid "Following the link sent in the email address will reset the password."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: front-end/wppb.recover.password.php:
|
781 |
-
#: front-end/wppb.recover.password.php:
|
782 |
msgid "Someone requested that the password be reset for the following account: "
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: front-end/wppb.recover.password.php:
|
786 |
-
#: front-end/wppb.recover.password.php:
|
787 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: front-end/wppb.recover.password.php:
|
791 |
-
#: front-end/wppb.recover.password.php:
|
792 |
msgid "To reset your password, visit the following link:"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: front-end/wppb.recover.password.php:
|
796 |
-
#: front-end/wppb.recover.password.php:
|
797 |
msgid "Password Reset Feature from"
|
798 |
msgstr ""
|
799 |
|
800 |
# @ profilebuilder
|
801 |
-
#: front-end/wppb.recover.password.php:
|
802 |
-
#: front-end/wppb.recover.password.php:
|
803 |
#, fuzzy
|
804 |
msgid "There was an error while trying to send the activation link to "
|
805 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
806 |
|
807 |
# @ profilebuilder
|
808 |
-
#: front-end/wppb.recover.password.php:
|
809 |
#, fuzzy
|
810 |
msgid "The email address entered wasn't found in the database!"
|
811 |
msgstr "Zadaný e-mail není platný. <br/> Adresa "
|
812 |
|
813 |
-
#: front-end/wppb.recover.password.php:
|
814 |
msgid "Please check that you entered the correct email address."
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: front-end/wppb.recover.password.php:
|
818 |
msgid "The username entered wasn't found in the database!"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: front-end/wppb.recover.password.php:
|
822 |
msgid "Please check that you entered the correct username."
|
823 |
msgstr ""
|
824 |
|
825 |
# @ profilebuilder
|
826 |
-
#: front-end/wppb.recover.password.php:
|
827 |
#, fuzzy
|
828 |
msgid "Your password has been successfully changed!"
|
829 |
msgstr "Změny byly úspěšně uloženy."
|
830 |
|
831 |
-
#: front-end/wppb.recover.password.php:
|
832 |
msgid "You have successfully reset your password to:"
|
833 |
msgstr ""
|
834 |
|
835 |
# @ profilebuilder
|
836 |
-
#: front-end/wppb.recover.password.php:
|
837 |
-
#: front-end/wppb.recover.password.php:
|
838 |
#, fuzzy
|
839 |
msgid "Password Successfully Reset for"
|
840 |
msgstr "\" byla úspěšně odstraněna."
|
841 |
|
842 |
-
#: front-end/wppb.recover.password.php:
|
843 |
-
#: front-end/wppb.recover.password.php:
|
844 |
msgid "from"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: front-end/wppb.recover.password.php:
|
848 |
msgid "has requested a password change via the password reset feature."
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: front-end/wppb.recover.password.php:
|
852 |
msgid "His/her new password is:"
|
853 |
msgstr ""
|
854 |
|
855 |
# @ profilebuilder
|
856 |
-
#: front-end/wppb.recover.password.php:
|
857 |
-
#: front-end/wppb.register.php:
|
858 |
msgid "The entered passwords don't match!"
|
859 |
msgstr "Zadaná hesla se neshodují."
|
860 |
|
861 |
# @ profilebuilder
|
862 |
-
#: front-end/wppb.recover.password.php:
|
863 |
-
#: front-end/wppb.recover.password.php:
|
864 |
#, fuzzy
|
865 |
msgid "Reset Password"
|
866 |
msgstr "Heslo ještě jednou"
|
867 |
|
868 |
-
#: front-end/wppb.recover.password.php:
|
869 |
msgid "Invalid key!"
|
870 |
msgstr ""
|
871 |
|
872 |
# @ profilebuilder
|
873 |
-
#: front-end/wppb.recover.password.php:
|
874 |
#, fuzzy
|
875 |
msgid "Please enter your username or email address."
|
876 |
msgstr "Musíte zadat platnou e-mailovou adresu."
|
877 |
|
878 |
-
#: front-end/wppb.recover.password.php:
|
879 |
msgid "You will receive a link to create a new password via email."
|
880 |
msgstr ""
|
881 |
|
882 |
# @ profilebuilder
|
883 |
-
#: front-end/wppb.recover.password.php:
|
884 |
#, fuzzy
|
885 |
msgid "Username or E-mail"
|
886 |
msgstr "Uživatelské jméno"
|
887 |
|
888 |
# @ profilebuilder
|
889 |
-
#: front-end/wppb.recover.password.php:
|
890 |
#, fuzzy
|
891 |
msgid "Get New Password"
|
892 |
msgstr "Nové heslo"
|
893 |
|
894 |
-
#: front-end/wppb.register.php:
|
895 |
#, php-format
|
896 |
msgid ""
|
897 |
"To activate your user, please click the following link:\n"
|
@@ -902,1068 +908,1128 @@ msgid ""
|
|
902 |
"\n"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: front-end/wppb.register.php:
|
906 |
#, php-format
|
907 |
msgid "[%1$s] Activate %2$s"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: front-end/wppb.register.php:
|
911 |
msgid "Invalid activation key!"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: front-end/wppb.register.php:
|
915 |
msgid "The user is already active!"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: front-end/wppb.register.php:
|
919 |
msgid "Could not create user!"
|
920 |
msgstr ""
|
921 |
|
922 |
# @ profilebuilder
|
923 |
-
#: front-end/wppb.register.php:
|
924 |
#, fuzzy
|
925 |
msgid "That username is already activated!"
|
926 |
msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
|
927 |
|
928 |
# @ profilebuilder
|
929 |
-
#: front-end/wppb.register.php:
|
930 |
#, fuzzy
|
931 |
msgid "The user was successfully activated."
|
932 |
msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
|
933 |
|
934 |
# @ profilebuilder
|
935 |
-
#: front-end/wppb.register.php:
|
936 |
#, fuzzy
|
937 |
msgid "There was an error while trying to activate the user."
|
938 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
939 |
|
940 |
-
#: front-end/wppb.register.php:
|
941 |
msgid "New subscriber on"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: front-end/wppb.register.php:
|
945 |
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!"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: front-end/wppb.register.php:
|
949 |
msgid "A new subscriber has (been) registered!"
|
950 |
msgstr ""
|
951 |
|
952 |
# @ profilebuilder
|
953 |
-
#: front-end/wppb.register.php:
|
954 |
#, fuzzy
|
955 |
msgid "A new account has been created for you."
|
956 |
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
957 |
|
958 |
-
#: front-end/wppb.register.php:
|
959 |
msgid "Welcome to"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: front-end/wppb.register.php:
|
963 |
msgid "Your username is:"
|
964 |
msgstr ""
|
965 |
|
966 |
# @ profilebuilder
|
967 |
-
#: front-end/wppb.register.php:
|
968 |
#, fuzzy
|
969 |
msgid "and password:"
|
970 |
msgstr "Heslo"
|
971 |
|
972 |
-
#: front-end/wppb.register.php:
|
973 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: front-end/wppb.register.php:
|
977 |
msgid "The user was NOT created!"
|
978 |
msgstr ""
|
979 |
|
980 |
# @ profilebuilder
|
981 |
-
#: front-end/wppb.register.php:
|
982 |
msgid "A username is required for registration."
|
983 |
msgstr "Uživatelské jméno je nutné pro registraci."
|
984 |
|
985 |
# @ profilebuilder
|
986 |
-
#: front-end/wppb.register.php:
|
987 |
msgid "Sorry, that username already exists!"
|
988 |
msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
|
989 |
|
990 |
# @ profilebuilder
|
991 |
-
#: front-end/wppb.register.php:
|
992 |
msgid "You must enter a valid email address."
|
993 |
msgstr "Musíte zadat platnou e-mailovou adresu."
|
994 |
|
995 |
# @ profilebuilder
|
996 |
-
#: front-end/wppb.register.php:
|
997 |
msgid "Sorry, that email address is already used!"
|
998 |
msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
|
999 |
|
1000 |
# @ profilebuilder
|
1001 |
-
#: front-end/wppb.register.php:
|
1002 |
msgid "You didn't complete one of the password-fields!"
|
1003 |
msgstr "Nebyla vyplněna obě pole hesla."
|
1004 |
|
1005 |
# @ profilebuilder
|
1006 |
-
#: front-end/wppb.register.php:
|
1007 |
-
#: front-end/wppb.register.php:
|
1008 |
#, fuzzy
|
1009 |
msgid "The account was NOT created!"
|
1010 |
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
1011 |
|
1012 |
-
#: front-end/wppb.register.php:
|
1013 |
msgid "You must agree to the terms and conditions before registering!"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: front-end/wppb.register.php:
|
1017 |
msgid "(Several required fields were left uncompleted)"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: front-end/wppb.register.php:
|
1021 |
msgid "This username is already reserved to be used soon."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: front-end/wppb.register.php:
|
1025 |
-
#: front-end/wppb.register.php:
|
1026 |
msgid "Please try a different one!"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
# @ profilebuilder
|
1030 |
-
#: front-end/wppb.register.php:
|
1031 |
#, fuzzy
|
1032 |
msgid "This email address is already reserved to be used soon."
|
1033 |
msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
|
1034 |
|
1035 |
-
#: front-end/wppb.register.php:
|
1036 |
msgid "You are logged in as"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: front-end/wppb.register.php:
|
1040 |
msgid "You don't need another account."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
# @ profilebuilder
|
1044 |
-
#: front-end/wppb.register.php:
|
1045 |
#, fuzzy
|
1046 |
msgid "Log out of this account."
|
1047 |
msgstr "Odhlásit se"
|
1048 |
|
1049 |
# @ profilebuilder
|
1050 |
-
#: front-end/wppb.register.php:
|
1051 |
#, fuzzy
|
1052 |
msgid "Logout"
|
1053 |
msgstr "Odhlásit se »"
|
1054 |
|
1055 |
-
#: front-end/wppb.register.php:
|
1056 |
msgid "An email has been sent to "
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: front-end/wppb.register.php:
|
1060 |
msgid "with information on how to activate his/her account"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
# @ profilebuilder
|
1064 |
-
#: front-end/wppb.register.php:
|
1065 |
#, fuzzy
|
1066 |
msgid "A user account has been created for"
|
1067 |
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
1068 |
|
1069 |
-
#: front-end/wppb.register.php:
|
|
|
1070 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: front-end/wppb.register.php:
|
1074 |
msgid "An email has been sent to you with information on how to activate your account"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
# @ profilebuilder
|
1078 |
-
#: front-end/wppb.register.php:
|
1079 |
#, fuzzy
|
1080 |
msgid "Thank you for registering"
|
1081 |
msgstr "Děkujeme za registraci, %1$s."
|
1082 |
|
1083 |
-
#: front-end/wppb.register.php:
|
1084 |
msgid "An error occured while trying to send the notification email."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: front-end/wppb.register.php:
|
1088 |
msgid "An email containing activation instructions was successfully sent."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: front-end/wppb.register.php:
|
1092 |
msgid "An email containing the username and password was successfully sent."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
# @ profilebuilder
|
1096 |
-
#: front-end/wppb.register.php:
|
1097 |
msgid "Users can register themselves or you can manually create users here."
|
1098 |
msgstr "Uživatelé se mohou zaregistrovat sami, případně můžete manuálně vytvářet uživatele zde."
|
1099 |
|
1100 |
# @ profilebuilder
|
1101 |
-
#: front-end/wppb.register.php:
|
1102 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
1103 |
msgstr "Uživatelé se nemohou sami zaregistrovat, ale můžete je ručně vytvářet zde."
|
1104 |
|
1105 |
# @ profilebuilder
|
1106 |
-
#: front-end/wppb.register.php:
|
1107 |
msgid "Only an administrator can add new users."
|
1108 |
msgstr "Pouze administrátor může přidávat nové uživatele."
|
1109 |
|
1110 |
-
#: front-end/wppb.register.php:
|
1111 |
-
#: front-end/wppb.register.php:
|
1112 |
-
#: front-end/wppb.register.php:
|
1113 |
-
#: front-end/wppb.register.php:
|
1114 |
-
#: front-end/wppb.register.php:
|
1115 |
-
#: front-end/wppb.register.php:
|
1116 |
-
#: front-end/wppb.register.php:
|
1117 |
-
#: front-end/wppb.register.php:
|
1118 |
-
#: front-end/wppb.register.php:
|
1119 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: front-end/wppb.register.php:
|
1123 |
-
#: front-end/wppb.register.php:
|
1124 |
-
#: front-end/wppb.register.php:
|
1125 |
-
#: front-end/wppb.register.php:
|
1126 |
-
#: front-end/wppb.register.php:
|
1127 |
-
#: front-end/wppb.register.php:
|
1128 |
-
#: front-end/wppb.register.php:
|
1129 |
-
#: front-end/wppb.register.php:
|
1130 |
-
#: front-end/wppb.register.php:
|
1131 |
msgid "This field is marked as required by the administrator"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: front-end/wppb.register.php:
|
1135 |
msgid "Anti-Spam"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
# @ profilebuilder
|
1139 |
-
#: front-end/wppb.register.php:
|
1140 |
#, fuzzy
|
1141 |
msgid "Send these credentials via email."
|
1142 |
msgstr "Odeslat tyto přihlašovací údaje e-mailem."
|
1143 |
|
1144 |
# @ profilebuilder
|
1145 |
-
#: front-end/wppb.register.php:
|
1146 |
msgid "Add User"
|
1147 |
msgstr "Přidat uživatele"
|
1148 |
|
1149 |
# @ profilebuilder
|
1150 |
-
#: front-end/wppb.register.php:
|
1151 |
msgid "Register"
|
1152 |
msgstr "Registrovat"
|
1153 |
|
1154 |
# @ profilebuilder
|
1155 |
-
#: premium/premium.php:8
|
1156 |
msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
|
1157 |
msgstr "Můžete vytvořit libovolné množství vlastních polí. K jejich rozdělení do tématických celků (ve front-endu) použijte pole \""
|
1158 |
|
1159 |
# @ profilebuilder
|
1160 |
-
#: premium/premium.php:8
|
1161 |
msgid "heading"
|
1162 |
msgstr "záhlaví"
|
1163 |
|
1164 |
# @ profilebuilder
|
1165 |
-
#: premium/premium.php:8
|
1166 |
msgid "\" custom field."
|
1167 |
msgstr "\"."
|
1168 |
|
1169 |
# @ profilebuilder
|
1170 |
-
#: premium/premium.php:9
|
1171 |
#, fuzzy
|
1172 |
msgid "All of the fields can be sorted and rearranged to your liking with"
|
1173 |
msgstr "Všechna pole lze třídit pomocí "
|
1174 |
|
1175 |
# @ profilebuilder
|
1176 |
-
#: premium/premium.php:9
|
1177 |
msgid "Drag"
|
1178 |
msgstr "Drag"
|
1179 |
|
1180 |
# @ profilebuilder
|
1181 |
-
#: premium/premium.php:9
|
1182 |
msgid "Drop"
|
1183 |
msgstr "Drop"
|
1184 |
|
1185 |
# @ profilebuilder
|
1186 |
-
#: premium/premium.php:9
|
1187 |
#, fuzzy
|
1188 |
msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
|
1189 |
msgstr ". Není proto třeba se starat o pořadí, ve kterém vytvoříte vlastní pole, můžete jej kdykoli změnit."
|
1190 |
|
1191 |
# @ profilebuilder
|
1192 |
-
#: premium/premium.php:13
|
1193 |
-
#: premium/premium.php:23
|
1194 |
msgid "Title"
|
1195 |
msgstr "Název"
|
1196 |
|
1197 |
# @ profilebuilder
|
1198 |
-
#: premium/premium.php:14
|
1199 |
-
#: premium/premium.php:24
|
1200 |
msgid "Type"
|
1201 |
msgstr "Typ"
|
1202 |
|
1203 |
-
#: premium/premium.php:15
|
1204 |
-
#: premium/premium.php:25
|
1205 |
msgid "Meta-Key"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: premium/premium.php:16
|
1209 |
-
#: premium/premium.php:26
|
1210 |
msgid "ID"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: premium/premium.php:17
|
1214 |
-
#: premium/premium.php:27
|
1215 |
msgid "Req'd"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
# @ profilebuilder
|
1219 |
-
#: premium/premium.php:18
|
1220 |
-
#: premium/premium.php:28
|
1221 |
msgid "Add Option"
|
1222 |
msgstr "Přidat volbu"
|
1223 |
|
1224 |
# @ profilebuilder
|
1225 |
-
#: premium/premium.php:40
|
1226 |
-
#: premium/premium.php:73
|
1227 |
-
#: premium/premium.php:206
|
1228 |
msgid "Edit"
|
1229 |
msgstr "Upravit"
|
1230 |
|
1231 |
# @ profilebuilder
|
1232 |
-
#: premium/premium.php:41
|
1233 |
-
#: premium/premium.php:74
|
1234 |
-
#: premium/premium.php:207
|
1235 |
msgid "Delete"
|
1236 |
msgstr "Odstranit"
|
1237 |
|
1238 |
# @ profilebuilder
|
1239 |
-
#: premium/premium.php:101
|
1240 |
msgid "Title:"
|
1241 |
msgstr "Název:"
|
1242 |
|
1243 |
# @ profilebuilder
|
1244 |
-
#: premium/premium.php:101
|
1245 |
msgid "The title of the item."
|
1246 |
msgstr "Název vlastního pole."
|
1247 |
|
1248 |
-
#: premium/premium.php:111
|
1249 |
msgid "Meta-Key:"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: premium/premium.php:111
|
1253 |
msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
# @ profilebuilder
|
1257 |
-
#: premium/premium.php:144
|
1258 |
msgid "Option Type:"
|
1259 |
msgstr "Typ vlastního pole:"
|
1260 |
|
1261 |
# @ profilebuilder
|
1262 |
-
#: premium/premium.php:144
|
1263 |
msgid "Choose one of the supported option types."
|
1264 |
msgstr "Vyberte jednu z nabízených možností."
|
1265 |
|
1266 |
# @ profilebuilder
|
1267 |
-
#: premium/premium.php:154
|
1268 |
msgid "Description:"
|
1269 |
msgstr "Popis:"
|
1270 |
|
1271 |
# @ profilebuilder
|
1272 |
-
#: premium/premium.php:154
|
1273 |
msgid "Enter a detailed description of the option for end users to read(optional)."
|
1274 |
msgstr "Zadejte podrobný popis vlastního pole pro uživatele (volitelné)."
|
1275 |
|
1276 |
-
#: premium/premium.php:155
|
1277 |
msgid "You can only insert links using standard HTML syntax:"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: premium/premium.php:155
|
1281 |
msgid "address"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
# @ profilebuilder
|
1285 |
-
#: premium/premium.php:155
|
1286 |
#, fuzzy
|
1287 |
msgid "name"
|
1288 |
msgstr "Jméno"
|
1289 |
|
1290 |
# @ profilebuilder
|
1291 |
-
#: premium/premium.php:165
|
1292 |
msgid "Options:"
|
1293 |
msgstr "Možnosti:"
|
1294 |
|
1295 |
# @ profilebuilder
|
1296 |
-
#: premium/premium.php:165
|
1297 |
msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
|
1298 |
msgstr "Zadejte čárkami oddělený seznam možností. Například \"Jedna, dva, tři\" nebo jen jednu hodnotu (např. \"Ano\" u check-boxu)."
|
1299 |
|
1300 |
-
#: premium/premium.php:176
|
1301 |
msgid "ID:"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: premium/premium.php:176
|
1305 |
msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
# @ profilebuilder
|
1309 |
-
#: premium/premium.php:187
|
1310 |
#, fuzzy
|
1311 |
msgid "Required:"
|
1312 |
msgstr "(vyžadováno)"
|
1313 |
|
1314 |
-
#: premium/premium.php:187
|
1315 |
msgid "Check this box to make this field required."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
# @ profilebuilder
|
1319 |
-
#: premium/premium.php:194
|
1320 |
msgid "Cancel"
|
1321 |
msgstr "Zrušit"
|
1322 |
|
1323 |
# @ profilebuilder
|
1324 |
-
#: premium/premium.php:195
|
1325 |
msgid "Save"
|
1326 |
msgstr "Uložit"
|
1327 |
|
1328 |
# @ profilebuilder
|
1329 |
-
#: premium/premium.php:
|
1330 |
-
#: premium/premium.php:
|
1331 |
msgid "Register your version of Profile Builder Pro"
|
1332 |
msgstr "Zaregistrujte si svou verzi Profile Builder Pro"
|
1333 |
|
1334 |
# @ profilebuilder
|
1335 |
-
#: premium/premium.php:
|
1336 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1337 |
msgstr "Nyní, když jste získali svou kopii Profile Builder Pro, zvažte výhody registrace této kopie zadáním sériového čísla, které jste obdrželi v e-mailu."
|
1338 |
|
1339 |
# @ profilebuilder
|
1340 |
-
#: premium/premium.php:
|
1341 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1342 |
msgstr "Pokud si zaregistrujete tuto verzi Profile Builder, budete dostávat informace o aktualizacích, nových verzích a získáte přístup k technické podpoře."
|
1343 |
|
1344 |
# @ profilebuilder
|
1345 |
-
#: premium/premium.php:
|
1346 |
msgid "Serial Number:"
|
1347 |
msgstr "Sériové číslo:"
|
1348 |
|
1349 |
# @ profilebuilder
|
1350 |
-
#: premium/premium.php:
|
1351 |
msgid "The serial number was successfully validated!"
|
1352 |
msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
|
1353 |
|
1354 |
# @ profilebuilder
|
1355 |
-
#: premium/premium.php:
|
1356 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1357 |
msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
|
1358 |
|
1359 |
-
#: premium/premium.php:
|
1360 |
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!"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
# @ profilebuilder
|
1364 |
-
#: premium/premium.php:
|
1365 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1366 |
msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1367 |
|
1368 |
-
#: premium/addon/addon.functions.php:4
|
1369 |
msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: premium/addon/addon.functions.php:4
|
1373 |
msgid "You can find it in Profile Builder's menu."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
# @ profilebuilder
|
1377 |
-
#: premium/addon/addon.functions.php:29
|
1378 |
#, fuzzy
|
1379 |
msgid "You need to be logged in to view the userlisting!"
|
1380 |
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
1381 |
|
1382 |
-
#: premium/addon/addon.functions.php:
|
1383 |
-
#: premium/addon/addon.functions.php:
|
1384 |
-
#: premium/addon/addon.functions.php:
|
1385 |
-
#: premium/addon/addon.functions.php:
|
1386 |
-
#: premium/addon/addon.functions.php:
|
1387 |
msgid "Search Users by All Fields"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: premium/addon/addon.functions.php:
|
1391 |
msgid "Leave Blank and Press Search to List All Users"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: premium/addon/addon.functions.php:
|
1395 |
msgid "Search"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
# @ profilebuilder
|
1399 |
-
#: premium/addon/addon.functions.php:
|
1400 |
#, fuzzy
|
1401 |
msgid "First/Lastname"
|
1402 |
msgstr "Křestní jméno"
|
1403 |
|
1404 |
# @ profilebuilder
|
1405 |
-
#: premium/addon/addon.functions.php:
|
1406 |
#, fuzzy
|
1407 |
msgid "Email"
|
1408 |
msgstr "E-mail"
|
1409 |
|
1410 |
-
#: premium/addon/addon.functions.php:
|
1411 |
msgid "Sign-up Date"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
# @ profilebuilder
|
1415 |
-
#: premium/addon/addon.functions.php:
|
1416 |
#, fuzzy
|
1417 |
msgid "Firstname"
|
1418 |
msgstr "Křestní jméno"
|
1419 |
|
1420 |
# @ profilebuilder
|
1421 |
-
#: premium/addon/addon.functions.php:
|
1422 |
#, fuzzy
|
1423 |
msgid "Lastname"
|
1424 |
msgstr "Příjmení"
|
1425 |
|
1426 |
# @ profilebuilder
|
1427 |
-
#: premium/addon/addon.functions.php:
|
1428 |
#, fuzzy
|
1429 |
msgid "Display Name"
|
1430 |
msgstr "Křestní jméno"
|
1431 |
|
1432 |
-
#: premium/addon/addon.functions.php:
|
1433 |
msgid "Posts"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: premium/addon/addon.functions.php:
|
1437 |
msgid "Click here to see more information about this user"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: premium/addon/addon.functions.php:
|
1441 |
msgid "More..."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
# @ profilebuilder
|
1445 |
-
#: premium/addon/addon.functions.php:
|
1446 |
-
#: premium/addon/addon.functions.php:
|
1447 |
#, fuzzy
|
1448 |
msgid "No uploaded attachment"
|
1449 |
msgstr "Příloha \""
|
1450 |
|
1451 |
-
#: premium/addon/addon.functions.php:
|
1452 |
-
#: premium/addon/addon.functions.php:
|
1453 |
-
#: premium/addon/addon.functions.php:
|
1454 |
msgid "Click to see the current attachment"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: premium/addon/addon.functions.php:
|
1458 |
msgid "Click here to go back"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
# @ profilebuilder
|
1462 |
-
#: premium/addon/addon.functions.php:
|
1463 |
#, fuzzy
|
1464 |
msgid "Back"
|
1465 |
msgstr "Černý"
|
1466 |
|
1467 |
# @ profilebuilder
|
1468 |
-
#: premium/addon/addon.functions.php:
|
1469 |
-
#: premium/addon/addon.functions.php:
|
1470 |
msgid "Current file"
|
1471 |
msgstr "Aktuální soubor"
|
1472 |
|
1473 |
-
#: premium/addon/addon.functions.php:
|
1474 |
msgid "Avatar"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: premium/addon/addon.functions.php:
|
1478 |
msgid "No results found!"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: premium/addon/addon.functions.php:
|
1482 |
msgid "«« First"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: premium/addon/addon.functions.php:
|
1486 |
msgid "« Prev"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
# @ profilebuilder
|
1490 |
-
#: premium/addon/addon.functions.php:
|
1491 |
#, fuzzy
|
1492 |
msgid "Next » "
|
1493 |
msgstr "Odhlásit se »"
|
1494 |
|
1495 |
# @ profilebuilder
|
1496 |
-
#: premium/addon/addon.functions.php:
|
1497 |
#, fuzzy
|
1498 |
msgid "Last »»"
|
1499 |
msgstr "Odhlásit se »"
|
1500 |
|
1501 |
-
#: premium/addon/addon.functions.php:
|
1502 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: premium/addon/addon.php:9
|
1506 |
-
#: premium/addon/addon.php:10
|
1507 |
msgid "Activate/Deactivate Addons"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
# @ profilebuilder
|
1511 |
-
#: premium/addon/addon.php:14
|
1512 |
#, fuzzy
|
1513 |
msgid "Name/Description"
|
1514 |
msgstr "Popis:"
|
1515 |
|
1516 |
-
#: premium/addon/addon.php:15
|
1517 |
msgid "Status"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: premium/addon/addon.php:20
|
1521 |
-
#: premium/addon/addon.php:82
|
1522 |
-
#: premium/addon/addon.php:83
|
1523 |
msgid "User-Listing"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: premium/addon/addon.php:22
|
1527 |
-
#: premium/addon/addon.php:29
|
1528 |
-
#: premium/addon/addon.php:36
|
1529 |
msgid "Active"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: premium/addon/addon.php:23
|
1533 |
-
#: premium/addon/addon.php:30
|
1534 |
-
#: premium/addon/addon.php:37
|
1535 |
msgid "Inactive"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: premium/addon/addon.php:27
|
1539 |
-
#: premium/addon/addon.php:458
|
1540 |
-
#: premium/addon/addon.php:459
|
1541 |
msgid "Custom Redirects"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: premium/addon/addon.php:34
|
1545 |
-
#: premium/addon/addon.php:
|
1546 |
-
#: premium/addon/addon.php:
|
1547 |
msgid "reCAPTCHA"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: premium/addon/addon.php:85
|
1551 |
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: premium/addon/addon.php:86
|
1555 |
msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: premium/addon/addon.php:91
|
1559 |
msgid "These settings are applied to the front-end userlisting."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: premium/addon/addon.php:97
|
1563 |
msgid "Number of Users/Page: "
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: premium/addon/addon.php:114
|
1567 |
msgid "Default Sorting Order: "
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: premium/addon/addon.php:125
|
1571 |
msgid "\"All-Userlisting\" Template"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: premium/addon/addon.php:127
|
1575 |
-
#: premium/addon/addon.php:269
|
1576 |
msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: premium/addon/addon.php:128
|
1580 |
msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: premium/addon/addon.php:132
|
1584 |
msgid "Avatar size: "
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: premium/addon/addon.php:148
|
1588 |
msgid "Insert \"Sort By\" Field:"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: premium/addon/addon.php:176
|
1592 |
-
#: premium/addon/addon.php:275
|
1593 |
msgid "Insert \"User-Meta\" Field:"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: premium/addon/addon.php:207
|
1597 |
-
#: premium/addon/addon.php:313
|
1598 |
msgid "Insert Extra Functions:"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: premium/addon/addon.php:222
|
1602 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: premium/addon/addon.php:224
|
1606 |
-
#: premium/addon/addon.php:327
|
1607 |
msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: premium/addon/addon.php:267
|
1611 |
msgid "\"Single-Userlisting\" Template"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: premium/addon/addon.php:270
|
1615 |
msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: premium/addon/addon.php:325
|
1619 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: premium/addon/addon.php:463
|
1623 |
msgid "Redirects on custom page requests:"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
# @ profilebuilder
|
1627 |
-
#: premium/addon/addon.php:469
|
1628 |
#, fuzzy
|
1629 |
msgid "Action"
|
1630 |
msgstr "Přidat volbu"
|
1631 |
|
1632 |
-
#: premium/addon/addon.php:470
|
1633 |
-
#: premium/addon/addon.php:
|
1634 |
msgid "Redirect"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: premium/addon/addon.php:471
|
1638 |
-
#: premium/addon/addon.php:
|
1639 |
msgid "URL"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: premium/addon/addon.php:475
|
1643 |
msgid "After Registration:"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: premium/addon/addon.php:483
|
1647 |
-
msgid "After Login:"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
# @ profilebuilder
|
1651 |
-
#: premium/addon/addon.php:492
|
1652 |
#, fuzzy
|
1653 |
-
msgid "Recover Password (
|
1654 |
msgstr "Heslo ještě jednou"
|
1655 |
|
1656 |
-
#: premium/addon/addon.php:503
|
|
|
|
|
|
|
|
|
1657 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: premium/addon/addon.php:
|
1661 |
msgid "Redirects on default WordPress page requests:"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: premium/addon/addon.php:
|
1665 |
msgid "Requested WP Page"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: premium/addon/addon.php:
|
1669 |
msgid "Default WP Login Page(*)"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: premium/addon/addon.php:
|
1673 |
msgid "Default WP Logout Page(**)"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: premium/addon/addon.php:
|
1677 |
msgid "Default WP Register Page"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: premium/addon/addon.php:
|
1681 |
msgid "Default WP Dashboard (***)"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: premium/addon/addon.php:
|
1685 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: premium/addon/addon.php:
|
1689 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: premium/addon/addon.php:
|
1693 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: premium/addon/addon.php:
|
1697 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: premium/addon/addon.php:
|
1701 |
msgid "For this you must get a public and private key from Google:"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
# @ profilebuilder
|
1705 |
-
#: premium/addon/addon.php:
|
1706 |
msgid "Key"
|
1707 |
msgstr "Klíč"
|
1708 |
|
1709 |
-
#: premium/addon/addon.php:
|
1710 |
msgid "Code"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: premium/addon/addon.php:
|
1714 |
msgid "Public Key:"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: premium/addon/addon.php:
|
1718 |
msgid "Private Key:"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: premium/addon/recaptcha.library.php:81
|
1722 |
msgid "Could not open socket!"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: premium/addon/recaptcha.library.php:110
|
1726 |
-
#: premium/addon/recaptcha.library.php:156
|
1727 |
msgid "To use reCAPTCHA you must get an API key from"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: premium/addon/recaptcha.library.php:161
|
1731 |
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: premium/addon/recaptcha.library.php:220
|
1735 |
msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: premium/addon/recaptcha.library.php:237
|
1739 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
# @ profilebuilder
|
1743 |
-
#: premium/classes/premium.class.admin.php:
|
1744 |
-
#: premium/classes/premium.class.admin.php:
|
1745 |
#, fuzzy
|
1746 |
msgid "You must give your option a title."
|
1747 |
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
1748 |
|
1749 |
-
#: premium/classes/premium.class.admin.php:
|
1750 |
-
#: premium/classes/premium.class.admin.php:
|
1751 |
msgid "You have entered an invalid meta-key format!"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
# @ profilebuilder
|
1755 |
-
#: premium/classes/premium.class.admin.php:
|
1756 |
-
#: premium/classes/premium.class.admin.php:
|
1757 |
#, fuzzy
|
1758 |
msgid "You must enter a valid meta-key."
|
1759 |
msgstr "Musíte zadat platnou e-mailovou adresu."
|
1760 |
|
1761 |
-
#: premium/classes/premium.class.admin.php:
|
1762 |
-
#: premium/classes/premium.class.admin.php:
|
1763 |
-
#: premium/classes/premium.class.admin.php:
|
1764 |
-
#: premium/classes/premium.class.admin.php:
|
1765 |
msgid "That meta-key is already in use."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: premium/classes/premium.class.admin.php:
|
1769 |
-
#: premium/classes/premium.class.admin.php:
|
1770 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: premium/classes/premium.class.admin.php:
|
1774 |
-
#: premium/classes/premium.class.admin.php:
|
1775 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: premium/classes/premium.class.admin.php:
|
1779 |
-
#: premium/classes/premium.class.admin.php:
|
1780 |
msgid "The textarea row value must be numeric."
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: premium/classes/premium.class.admin.php:
|
1784 |
-
#: premium/classes/premium.class.admin.php:
|
1785 |
msgid "The maxlength attribute must be numeric."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: premium/classes/premium.class.admin.php:
|
1789 |
-
#: premium/classes/premium.class.admin.php:
|
1790 |
msgid "The value must be between 20 and 200!"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#: premium/classes/premium.class.admin.php:
|
1794 |
-
#: premium/classes/premium.class.admin.php:
|
1795 |
msgid "The width component of the entered value must be numeric!"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: premium/classes/premium.class.admin.php:
|
1799 |
-
#: premium/classes/premium.class.admin.php:
|
1800 |
msgid "The height component of the entered value must be numeric!"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: premium/classes/premium.class.admin.php:
|
1804 |
-
#: premium/classes/premium.class.admin.php:
|
1805 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: premium/classes/premium.class.admin.php:
|
1809 |
-
#: premium/classes/premium.class.admin.php:
|
1810 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: premium/classes/premium.class.admin.php:
|
1814 |
-
#: premium/classes/premium.class.admin.php:
|
1815 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: premium/classes/premium.class.admin.php:
|
1819 |
-
#: premium/classes/premium.class.admin.php:
|
1820 |
msgid "The entered avatar size must be numeric!"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: premium/classes/premium.class.admin.php:
|
1824 |
-
#: premium/classes/premium.class.admin.php:
|
1825 |
msgid "There was an error, please try again."
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: premium/functions/extra.fields.php:67
|
1829 |
-
#: premium/functions/extra.fields.php:169
|
1830 |
-
#: premium/functions/extra.fields.php:235
|
1831 |
-
#: premium/functions/extra.fields.php:300
|
1832 |
-
#: premium/functions/extra.fields.php:365
|
1833 |
-
#: premium/functions/extra.fields.php:431
|
1834 |
-
#: premium/functions/extra.fields.php:485
|
1835 |
-
#: premium/functions/extra.fields.php:533
|
1836 |
-
#: premium/functions/extra.fields.php:596
|
1837 |
-
#: premium/functions/extra.fields.php:705
|
1838 |
msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
-
#: premium/functions/extra.fields.php:574
|
1842 |
-
#: premium/functions/extra.fields.php:606
|
1843 |
-
#: premium/functions/extra.fields.php:680
|
1844 |
-
#: premium/functions/extra.fields.php:711
|
1845 |
msgid "max upload size"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: premium/functions/extra.fields.php:580
|
1849 |
-
#: premium/functions/extra.fields.php:616
|
1850 |
msgid "Are you sure you want to delete this attachment?"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: premium/functions/extra.fields.php:581
|
1854 |
-
#: premium/functions/extra.fields.php:617
|
1855 |
-
#: premium/functions/extra.fields.php:690
|
1856 |
msgid "Click to delete the current attachment"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: premium/functions/extra.fields.php:614
|
1860 |
msgid "The attachment can't be deleted (It was marked as required by the administrator)"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
# @ profilebuilder
|
1864 |
-
#: premium/functions/extra.fields.php:683
|
1865 |
-
#: premium/functions/extra.fields.php:715
|
1866 |
msgid "Current avatar"
|
1867 |
msgstr "Aktuální avatar"
|
1868 |
|
1869 |
-
#: premium/functions/extra.fields.php:683
|
1870 |
-
#: premium/functions/extra.fields.php:715
|
1871 |
msgid "No uploaded avatar"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: premium/functions/extra.fields.php:689
|
1875 |
-
#: premium/functions/extra.fields.php:724
|
1876 |
msgid "Are you sure you want to delete this avatar?"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: premium/functions/extra.fields.php:722
|
1880 |
msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
|
1881 |
msgstr ""
|
1882 |
|
1883 |
# @ profilebuilder
|
1884 |
-
#: premium/functions/extra.fields.php:725
|
1885 |
#, fuzzy
|
1886 |
msgid "Click to see the current avatar"
|
1887 |
msgstr "Aktuální avatar"
|
1888 |
|
1889 |
-
#: premium/functions/extra.fields.php:725
|
1890 |
msgid "Click to delete the avatar"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: premium/functions/premium.functions.load.php:15
|
1894 |
msgid "The user-validation has failed - the avatar was not deleted!"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: premium/functions/premium.functions.load.php:26
|
1898 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: premium/functions/premium.functions.load.php:
|
1902 |
msgid "Do you want to"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: premium/functions/premium.functions.load.php:
|
1906 |
msgid "the current user?"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: premium/functions/premium.functions.load.php:
|
1910 |
-
#: premium/functions/premium.functions.load.php:
|
1911 |
msgid "Your account on"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: premium/functions/premium.functions.load.php:
|
1915 |
msgid "has been approved!"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: premium/functions/premium.functions.load.php:
|
1919 |
msgid "An administrator has just approved your account on"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: premium/functions/premium.functions.load.php:
|
1923 |
msgid "has been unapproved!"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: premium/functions/premium.functions.load.php:
|
1927 |
msgid "An administrator has just unapproved your account on"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: premium/functions/premium.functions.load.php:
|
1931 |
-
#: premium/functions/premium.functions.load.php:
|
1932 |
msgid "Approve"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: premium/functions/premium.functions.load.php:
|
1936 |
-
#: premium/functions/premium.functions.load.php:
|
1937 |
msgid "Unapproved"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: premium/functions/premium.functions.load.php:
|
1941 |
-
#: premium/functions/premium.functions.load.php:
|
1942 |
msgid "Unapprove"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: premium/functions/premium.functions.load.php:
|
1946 |
-
#: premium/functions/premium.functions.load.php:
|
1947 |
msgid "Approved"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: premium/functions/premium.functions.load.php:
|
1951 |
msgid "unapprove"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: premium/functions/premium.functions.load.php:
|
1955 |
msgid "approve"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: premium/functions/premium.functions.load.php:
|
1959 |
msgid "Are you sure you want to"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: premium/functions/premium.functions.load.php:
|
1963 |
msgid "this user?"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: premium/functions/premium.functions.load.php:
|
1967 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1968 |
msgstr ""
|
1969 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-02 16:14+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-10-02 16:14+0200\n"
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
+
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabi\\Desktop\\test\\profile-builder-pro\n"
|
15 |
+
|
16 |
+
# @ profilebuilder
|
17 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
18 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "Profile Builder"
|
20 |
msgstr "Profile Builder"
|
21 |
|
22 |
# @ profilebuilder
|
23 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
|
24 |
msgid "Welcome to Profile Builder!"
|
25 |
msgstr "Vítá vás Profile Builder!"
|
26 |
|
27 |
# @ profilebuilder
|
28 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
29 |
msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
|
30 |
msgstr " umožňuje přidat front-end menu pro všechny uživatele vašeho webu. To usnadňuje úpravu profilu a zjednodušuje registraci nových uživatelů."
|
31 |
|
32 |
# @ profilebuilder
|
33 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
|
34 |
msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
|
35 |
msgstr "Uživatelé s administrátorskými právy mohou upravovat stávající pole v profilu a vytvářet nová."
|
36 |
|
37 |
# @ profilebuilder
|
38 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
|
39 |
msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
|
40 |
msgstr "Pro úpravu profilu přímo na webu (ne v administraci) stačí vytvořit novu Stránku (a pojmenovat ji například Upravit profil)."
|
41 |
|
42 |
# @ profilebuilder
|
43 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
|
44 |
msgid "Now all you need to do is add the following shortcode(for the previous example): "
|
45 |
msgstr "Do vytvořené stránky (nebo widgetu) pak stačí umístit následující kód: "
|
46 |
|
47 |
# @ profilebuilder
|
48 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
|
49 |
msgid "Publish your page and you are ready to go!"
|
50 |
msgstr "Nyní vytvořenou stránku publikujte a jste hotovi."
|
51 |
|
52 |
# @ profilebuilder
|
53 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
|
54 |
msgid "You can use the following shortcodes:"
|
55 |
msgstr "K dispozici jsou následující kódy:"
|
56 |
|
57 |
# @ profilebuilder
|
58 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
|
59 |
msgid "for a log-in form."
|
60 |
msgstr " pro přihlašovací formulář."
|
61 |
|
62 |
# @ profilebuilder
|
63 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
|
64 |
msgid "to add a registration form."
|
65 |
msgstr " pro registrační formulář."
|
66 |
|
67 |
# @ profilebuilder
|
68 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
|
69 |
msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
|
70 |
msgstr "pro poskytnutí přístupu k vlastnímu profilu (pouze pro přihlášené uživatele)."
|
71 |
|
72 |
# @ profilebuilder
|
73 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
|
74 |
#, fuzzy
|
75 |
msgid "to add a password recovery form."
|
76 |
msgstr " pro registrační formulář."
|
77 |
|
78 |
# @ profilebuilder
|
79 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
|
80 |
msgid "Users with administrator rights have access to the following features:"
|
81 |
msgstr "Uživatelé s administrátorskými právy mohou také:"
|
82 |
|
83 |
# @ profilebuilder
|
84 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
|
85 |
msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
|
86 |
msgstr "přidat/zahrnout vlastní CSS styl z aktuální šablony nebo použít některý ze stylů Profile Builder (výchozí, bílý, černý)."
|
87 |
|
88 |
# @ profilebuilder
|
89 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
|
90 |
msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
|
91 |
msgstr "zvolit, zda zobrazovat administrační menu ve front-endu - v závislosti na uživatelské skupině."
|
92 |
|
93 |
# @ profilebuilder
|
94 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
|
95 |
msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
|
96 |
msgstr "určit, která pole mohou uživatelé vidět/upravovat. Obsah skrytých polí zůstane beze změny."
|
97 |
|
98 |
# @ profilebuilder
|
99 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
|
100 |
msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
|
101 |
msgstr "přidat další uživatelská pole k již existujícím polím profilu. K dispozici jsou typy polí: nadpis, text, textarea, select, check-box, radio a upload."
|
102 |
|
103 |
# @ profilebuilder
|
104 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
|
105 |
msgid "add an avatar field."
|
106 |
msgstr "přidat pole pro avatar."
|
107 |
|
108 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
|
109 |
msgid "create custom redirects."
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
|
113 |
msgid "front-end userlisting using the"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
|
117 |
msgid "shortcode."
|
118 |
msgstr ""
|
119 |
|
120 |
# @ profilebuilder
|
121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
|
123 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
124 |
msgid "NOTE:"
|
125 |
msgstr "POZNÁMKA:"
|
126 |
|
127 |
# @ profilebuilder
|
128 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
|
129 |
msgid "this plugin only adds/removes fields in the front-end."
|
130 |
msgstr "tento plugin pouze přidává/odstraňuje pole ve front-endu."
|
131 |
|
132 |
# @ profilebuilder
|
133 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
|
134 |
msgid "The default information-fields will still be visible(and thus modifiable)"
|
135 |
msgstr "Výchozí pole budou i nadále dostupná (včetně možnosti úprav)"
|
136 |
|
137 |
# @ profilebuilder
|
138 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
|
139 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
140 |
msgstr "v administraci. Vlastní pole budou přístupná ve front-endu (na webu)."
|
141 |
|
142 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
|
143 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:69
|
144 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
|
145 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
146 |
msgid "General Settings"
|
147 |
msgstr ""
|
148 |
|
149 |
# @ profilebuilder
|
150 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
|
151 |
#, fuzzy
|
152 |
msgid "Stylesheet Used on the Front-End:"
|
153 |
msgstr "CSS styl:"
|
154 |
|
155 |
# @ profilebuilder
|
156 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:72
|
157 |
msgid "Default"
|
158 |
msgstr "Výchozí"
|
159 |
|
160 |
# @ profilebuilder
|
161 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
|
162 |
msgid "White"
|
163 |
msgstr "Bílý"
|
164 |
|
165 |
# @ profilebuilder
|
166 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:77
|
167 |
msgid "Black"
|
168 |
msgstr "Černý"
|
169 |
|
170 |
# @ profilebuilder
|
171 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:81
|
172 |
msgid "None"
|
173 |
msgstr "Žádný"
|
174 |
|
175 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:87
|
176 |
msgid "\"Email Confirmation\" Feature Activated:"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
|
180 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:99
|
181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
|
182 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
|
183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:238
|
184 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:251
|
185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:264
|
186 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:283
|
187 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:296
|
188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:312
|
189 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:325
|
190 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:338
|
191 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:357
|
192 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:371
|
193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
195 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
196 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
|
197 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
|
198 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
|
199 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
|
200 |
msgid "Yes"
|
201 |
msgstr ""
|
202 |
|
203 |
# @ profilebuilder
|
204 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:90
|
205 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:100
|
206 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:213
|
207 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:226
|
208 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:239
|
209 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:252
|
210 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:265
|
211 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:284
|
212 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:297
|
213 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:313
|
214 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:326
|
215 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:339
|
216 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:358
|
217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:372
|
218 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
219 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
221 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:526
|
222 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:538
|
223 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:550
|
224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:562
|
225 |
#, fuzzy
|
226 |
msgid "No"
|
227 |
msgstr "Žádný"
|
228 |
|
229 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
|
230 |
msgid "\"Admin Approval\" Feature Activated:"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
|
234 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
|
238 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
|
242 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
243 |
msgstr ""
|
244 |
|
245 |
# @ default
|
246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:116
|
247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
|
248 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:380
|
249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:256
|
250 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
252 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:576
|
253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:630
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Uložit změny"
|
256 |
|
257 |
# @ profilebuilder
|
258 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:134
|
259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:135
|
260 |
msgid "Show/Hide the Admin Bar on Front End"
|
261 |
msgstr "Administrační lišta ve front-endu"
|
262 |
|
263 |
# @ profilebuilder
|
264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:139
|
265 |
msgid "User-group"
|
266 |
msgstr "Skupina"
|
267 |
|
268 |
# @ profilebuilder
|
269 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:140
|
270 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:193
|
271 |
msgid "Visibility"
|
272 |
msgstr "Viditelnost"
|
273 |
|
274 |
# @ profilebuilder
|
275 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:149
|
276 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
|
277 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
|
278 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
|
279 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
|
280 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
|
281 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:279
|
282 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:292
|
283 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
|
284 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
|
285 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:334
|
286 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:353
|
287 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:367
|
288 |
msgid "Show"
|
289 |
msgstr "Zobrazit"
|
290 |
|
291 |
# @ profilebuilder
|
292 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:150
|
293 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:209
|
294 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:222
|
295 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:235
|
296 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:248
|
297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:261
|
298 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:280
|
299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:293
|
300 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:309
|
301 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:322
|
302 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:335
|
303 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:354
|
304 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:368
|
305 |
msgid "Hide"
|
306 |
msgstr "Skrýt"
|
307 |
|
308 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:162
|
309 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
310 |
msgstr ""
|
311 |
|
312 |
# @ profilebuilder
|
313 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:187
|
314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:188
|
315 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:61
|
316 |
msgid "Default Profile Fields"
|
317 |
msgstr "Výchozí pole profilu"
|
318 |
|
319 |
# @ profilebuilder
|
320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
|
321 |
msgid "Input Field Name"
|
322 |
msgstr "Název pole"
|
323 |
|
324 |
# @ profilebuilder
|
325 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:194
|
326 |
#, fuzzy
|
327 |
msgid "Required"
|
328 |
msgstr "(vyžadováno)"
|
329 |
|
330 |
# @ profilebuilder
|
331 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:199
|
332 |
msgid "Name:"
|
333 |
msgstr "Jméno:"
|
334 |
|
335 |
# @ profilebuilder
|
336 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:205
|
337 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
338 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:169
|
339 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
340 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
341 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:122
|
342 |
msgid "Username"
|
343 |
msgstr "Uživatelské jméno"
|
344 |
|
345 |
# @ profilebuilder
|
346 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:218
|
347 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
348 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
349 |
msgid "First Name"
|
350 |
msgstr "Křestní jméno"
|
351 |
|
352 |
# @ profilebuilder
|
353 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:231
|
354 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
355 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
356 |
msgid "Last Name"
|
357 |
msgstr "Příjmení"
|
358 |
|
359 |
# @ profilebuilder
|
360 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:244
|
361 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
362 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
363 |
msgid "Nickname"
|
364 |
msgstr "Přezdívka"
|
365 |
|
366 |
# @ profilebuilder
|
367 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:257
|
368 |
msgid "Display name publicly as..."
|
369 |
msgstr "Veřejně zobrazovat jako..."
|
370 |
|
371 |
# @ profilebuilder
|
372 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:270
|
373 |
msgid "Contact Info:"
|
374 |
msgstr "Kontaktní informace:"
|
375 |
|
376 |
# @ profilebuilder
|
377 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:276
|
378 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
379 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
380 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
381 |
msgid "E-mail"
|
382 |
msgstr "E-mail"
|
383 |
|
384 |
# @ profilebuilder
|
385 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:289
|
386 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
387 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
388 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:164
|
389 |
msgid "Website"
|
390 |
msgstr "Web"
|
391 |
|
392 |
# @ profilebuilder
|
393 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:305
|
394 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
395 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
396 |
msgid "AIM"
|
397 |
msgstr "AIM (AOL Instant Messenger)"
|
398 |
|
399 |
# @ profilebuilder
|
400 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:318
|
401 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
402 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
403 |
msgid "Yahoo IM"
|
404 |
msgstr "Yahoo IM"
|
405 |
|
406 |
# @ profilebuilder
|
407 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:331
|
408 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
409 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
410 |
msgid "Jabber / Google Talk"
|
411 |
msgstr "Jabber / Google Talk"
|
412 |
|
413 |
# @ profilebuilder
|
414 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:344
|
415 |
msgid "About Yourself:"
|
416 |
msgstr "O vás:"
|
417 |
|
418 |
# @ profilebuilder
|
419 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:350
|
420 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
421 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
422 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:170
|
423 |
msgid "Biographical Info"
|
424 |
msgstr "Osobní informace"
|
425 |
|
426 |
# @ profilebuilder
|
427 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:364
|
428 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
429 |
msgid "New Password"
|
430 |
msgstr "Nové heslo"
|
431 |
|
432 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:36
|
433 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive access to automatic updates and support. Need a license key? <a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>Purchase one now</a>"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:38
|
437 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</a> to receive access to automatic updates and priority support. <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>Purchase one now</a>"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
# @ profilebuilder
|
441 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
|
442 |
msgid "Basic Information"
|
443 |
msgstr "Základní informace"
|
444 |
|
445 |
# @ profilebuilder
|
446 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
|
447 |
msgid "Show/Hide the Admin Bar on Front-end"
|
448 |
msgstr "Zobrazit/skrýt administrační lištu ve front-endu"
|
449 |
|
450 |
# @ profilebuilder
|
451 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:67
|
452 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
453 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
454 |
msgid "Extra Profile Fields"
|
455 |
msgstr "Vlastní pole profilu"
|
456 |
|
457 |
# @ profilebuilder
|
458 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:70
|
459 |
#, fuzzy
|
460 |
msgid "Addons"
|
461 |
msgstr "Přidat volbu"
|
462 |
|
463 |
# @ profilebuilder
|
464 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:73
|
465 |
msgid "Register Your Version"
|
466 |
msgstr "Registrace"
|
467 |
|
468 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
469 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
470 |
msgid "The information size you were trying to submit was larger than"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
474 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
475 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
479 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
480 |
msgid "Since it was also larger than"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
484 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
485 |
msgid "no additional information is available."
|
486 |
msgstr ""
|
487 |
|
488 |
# @ profilebuilder
|
489 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
|
490 |
msgid "You must be logged in to edit your profile."
|
491 |
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
492 |
|
493 |
# @ profilebuilder
|
494 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
|
495 |
msgid "The avatar was successfully deleted."
|
496 |
msgstr "Avatar byl úspěšně odstraněn."
|
497 |
|
498 |
# @ profilebuilder
|
499 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
500 |
#, fuzzy
|
501 |
msgid "The attachment"
|
502 |
msgstr "Příloha \""
|
503 |
|
504 |
# @ profilebuilder
|
505 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
506 |
#, fuzzy
|
507 |
msgid "was successfully deleted."
|
508 |
msgstr "\" byla úspěšně odstraněna."
|
509 |
|
510 |
# @ profilebuilder
|
511 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
|
512 |
msgid "The changes have been successfully saved."
|
513 |
msgstr "Změny byly úspěšně uloženy."
|
514 |
|
515 |
# @ profilebuilder
|
516 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
517 |
#, fuzzy
|
518 |
msgid "The email address you entered is already registered to a different user."
|
519 |
msgstr "Zadaný e-mail má již zaregistrován jiný uživatel. <br/> E-mailová adresa"
|
520 |
|
521 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
522 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
523 |
msgid "The email address was"
|
524 |
msgstr ""
|
525 |
|
526 |
# @ profilebuilder
|
527 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
528 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
529 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
530 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
531 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
532 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
533 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
534 |
msgid "NOT"
|
535 |
msgstr "NEBYLA"
|
536 |
|
537 |
# @ profilebuilder
|
538 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
539 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
540 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
541 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
542 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
543 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
544 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
545 |
#, fuzzy
|
546 |
msgid "updated along with the rest of the information."
|
547 |
msgstr " aktualizována spolu s ostatními informacemi."
|
548 |
|
549 |
# @ profilebuilder
|
550 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
551 |
#, fuzzy
|
552 |
msgid "The email address you entered is invalid."
|
553 |
msgstr "Zadaný e-mail není platný. <br/> Adresa "
|
554 |
|
555 |
# @ profilebuilder
|
556 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
557 |
#, fuzzy
|
558 |
msgid "The passwords you entered do not match."
|
559 |
msgstr "Zadaná hesla se neshodují. <br/> Zadané heslo "
|
560 |
|
561 |
# @ profilebuilder
|
562 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
563 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
564 |
#, fuzzy
|
565 |
msgid "The password was"
|
566 |
msgstr "Nové heslo"
|
567 |
|
568 |
# @ profilebuilder
|
569 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
570 |
#, fuzzy
|
571 |
msgid "You didn't complete both password fields."
|
572 |
msgstr "Nebyla vyplněna obě pole hesla."
|
573 |
|
574 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
575 |
msgid "Your profile was NOT updated!"
|
576 |
msgstr ""
|
577 |
|
578 |
# @ profilebuilder
|
579 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
|
580 |
#, fuzzy
|
581 |
msgid "There was an error while trying to upload the following attachments:"
|
582 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
583 |
|
584 |
# @ profilebuilder
|
585 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
586 |
#, fuzzy
|
587 |
msgid "Possible cause: the size was bigger than"
|
588 |
msgstr "<br/> Možná příčina: velikost byla větší než "
|
589 |
|
590 |
# @ profilebuilder
|
591 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
592 |
#, fuzzy
|
593 |
msgid "The listed attachements were"
|
594 |
msgstr "B. <br/> Příloha (přílohy) "
|
595 |
|
596 |
# @ profilebuilder
|
597 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
598 |
#, fuzzy
|
599 |
msgid "There was an error while trying to upload your avatar picture."
|
600 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
601 |
|
602 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
603 |
msgid "Possible cause: size/incorrect file-type."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
607 |
msgid "The avatar was"
|
608 |
msgstr ""
|
609 |
|
610 |
# @ profilebuilder
|
611 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
612 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
613 |
#, fuzzy
|
614 |
msgid "There was an error while trying to upload the following attachment(s)"
|
615 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
616 |
|
617 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
618 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
619 |
msgid "Only files with the following extension(s) can be uploaded:"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
623 |
msgid "This file was"
|
624 |
msgstr ""
|
625 |
|
626 |
# @ profilebuilder
|
627 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
628 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
629 |
msgid "Name"
|
630 |
msgstr "Jméno"
|
631 |
|
632 |
# @ default
|
633 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
|
634 |
#, fuzzy
|
635 |
msgid "Usernames cannot be changed."
|
636 |
msgstr "Uživatelská jména nelze měnit."
|
637 |
|
638 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
|
639 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
|
640 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
|
641 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
|
642 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
|
643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
|
644 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
|
645 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
|
646 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
|
647 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
|
648 |
msgid "This field is marked as required by the administrator."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
|
652 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
|
653 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
|
654 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
|
655 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
|
656 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
|
657 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
|
658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
|
659 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
|
660 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
|
661 |
msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
|
662 |
msgstr ""
|
663 |
|
664 |
# @ profilebuilder
|
665 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
|
666 |
msgid "Display name publicly as"
|
667 |
msgstr "Veřejně zobrazovat jako"
|
668 |
|
669 |
# @ profilebuilder
|
670 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
671 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
672 |
msgid "Contact Info"
|
673 |
msgstr "Kontaktní informace"
|
674 |
|
675 |
# @ profilebuilder
|
676 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
|
677 |
msgid "(required)"
|
678 |
msgstr "(vyžadováno)"
|
679 |
|
680 |
# @ profilebuilder
|
681 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
682 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
683 |
msgid "About Yourself"
|
684 |
msgstr "O vás"
|
685 |
|
686 |
# @ profilebuilder
|
687 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
688 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
689 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
690 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
691 |
msgid "Repeat Password"
|
692 |
msgstr "Heslo ještě jednou"
|
693 |
|
694 |
# @ profilebuilder
|
695 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
|
696 |
msgid "Update"
|
697 |
msgstr "Aktualizovat"
|
698 |
|
699 |
# @ profilebuilder
|
700 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:61
|
701 |
#, fuzzy
|
702 |
msgid "You are currently logged in as"
|
703 |
msgstr "Jste přihlášeni jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
704 |
|
705 |
# @ profilebuilder
|
706 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
707 |
msgid "Log out of this account"
|
708 |
msgstr "Odhlásit se"
|
709 |
|
710 |
# @ profilebuilder
|
711 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
712 |
#, fuzzy
|
713 |
msgid "Log out"
|
714 |
msgstr "Odhlásit se »"
|
715 |
|
716 |
# @ profilebuilder
|
717 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:80
|
718 |
#, fuzzy
|
719 |
msgid "You have successfully logged in as"
|
720 |
msgstr "Úspěšné přihlášení jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
721 |
|
722 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
723 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
724 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
728 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
729 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
730 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
731 |
msgid "here"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
735 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
736 |
msgid "ERROR:"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
740 |
msgid "The username field is empty"
|
741 |
msgstr ""
|
742 |
|
743 |
# @ profilebuilder
|
744 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:177
|
745 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
746 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
748 |
msgid "Password"
|
749 |
msgstr "Heslo"
|
750 |
|
751 |
# @ profilebuilder
|
752 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
753 |
msgid "Log in"
|
754 |
msgstr "Přihlásit se"
|
755 |
|
756 |
# @ profilebuilder
|
757 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:189
|
758 |
msgid "Remember me"
|
759 |
msgstr "Pamatovat si mě"
|
760 |
|
761 |
# @ profilebuilder
|
762 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:204
|
763 |
msgid "Lost password?"
|
764 |
msgstr "Zapomněli jste heslo?"
|
765 |
|
766 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
767 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
768 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
769 |
msgid "ERROR"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
773 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
778 |
msgid "A password reset email has been sent to "
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
782 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
783 |
msgid "Following the link sent in the email address will reset the password."
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
787 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
788 |
msgid "Someone requested that the password be reset for the following account: "
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
792 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
793 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
797 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
798 |
msgid "To reset your password, visit the following link:"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
802 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
803 |
msgid "Password Reset Feature from"
|
804 |
msgstr ""
|
805 |
|
806 |
# @ profilebuilder
|
807 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
808 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
809 |
#, fuzzy
|
810 |
msgid "There was an error while trying to send the activation link to "
|
811 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
812 |
|
813 |
# @ profilebuilder
|
814 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
815 |
#, fuzzy
|
816 |
msgid "The email address entered wasn't found in the database!"
|
817 |
msgstr "Zadaný e-mail není platný. <br/> Adresa "
|
818 |
|
819 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
820 |
msgid "Please check that you entered the correct email address."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
824 |
msgid "The username entered wasn't found in the database!"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
828 |
msgid "Please check that you entered the correct username."
|
829 |
msgstr ""
|
830 |
|
831 |
# @ profilebuilder
|
832 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
833 |
#, fuzzy
|
834 |
msgid "Your password has been successfully changed!"
|
835 |
msgstr "Změny byly úspěšně uloženy."
|
836 |
|
837 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
838 |
msgid "You have successfully reset your password to:"
|
839 |
msgstr ""
|
840 |
|
841 |
# @ profilebuilder
|
842 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
844 |
#, fuzzy
|
845 |
msgid "Password Successfully Reset for"
|
846 |
msgstr "\" byla úspěšně odstraněna."
|
847 |
|
848 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
849 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
850 |
msgid "from"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
854 |
msgid "has requested a password change via the password reset feature."
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
858 |
msgid "His/her new password is:"
|
859 |
msgstr ""
|
860 |
|
861 |
# @ profilebuilder
|
862 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
863 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
864 |
msgid "The entered passwords don't match!"
|
865 |
msgstr "Zadaná hesla se neshodují."
|
866 |
|
867 |
# @ profilebuilder
|
868 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
869 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
870 |
#, fuzzy
|
871 |
msgid "Reset Password"
|
872 |
msgstr "Heslo ještě jednou"
|
873 |
|
874 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
875 |
msgid "Invalid key!"
|
876 |
msgstr ""
|
877 |
|
878 |
# @ profilebuilder
|
879 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
880 |
#, fuzzy
|
881 |
msgid "Please enter your username or email address."
|
882 |
msgstr "Musíte zadat platnou e-mailovou adresu."
|
883 |
|
884 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
885 |
msgid "You will receive a link to create a new password via email."
|
886 |
msgstr ""
|
887 |
|
888 |
# @ profilebuilder
|
889 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
890 |
#, fuzzy
|
891 |
msgid "Username or E-mail"
|
892 |
msgstr "Uživatelské jméno"
|
893 |
|
894 |
# @ profilebuilder
|
895 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
896 |
#, fuzzy
|
897 |
msgid "Get New Password"
|
898 |
msgstr "Nové heslo"
|
899 |
|
900 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
901 |
#, php-format
|
902 |
msgid ""
|
903 |
"To activate your user, please click the following link:\n"
|
908 |
"\n"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
912 |
#, php-format
|
913 |
msgid "[%1$s] Activate %2$s"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
917 |
msgid "Invalid activation key!"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
921 |
msgid "The user is already active!"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
925 |
msgid "Could not create user!"
|
926 |
msgstr ""
|
927 |
|
928 |
# @ profilebuilder
|
929 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
930 |
#, fuzzy
|
931 |
msgid "That username is already activated!"
|
932 |
msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
|
933 |
|
934 |
# @ profilebuilder
|
935 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
936 |
#, fuzzy
|
937 |
msgid "The user was successfully activated."
|
938 |
msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
|
939 |
|
940 |
# @ profilebuilder
|
941 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
942 |
#, fuzzy
|
943 |
msgid "There was an error while trying to activate the user."
|
944 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
945 |
|
946 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
947 |
msgid "New subscriber on"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
951 |
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!"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
955 |
msgid "A new subscriber has (been) registered!"
|
956 |
msgstr ""
|
957 |
|
958 |
# @ profilebuilder
|
959 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
960 |
#, fuzzy
|
961 |
msgid "A new account has been created for you."
|
962 |
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
963 |
|
964 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
965 |
msgid "Welcome to"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
969 |
msgid "Your username is:"
|
970 |
msgstr ""
|
971 |
|
972 |
# @ profilebuilder
|
973 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
974 |
#, fuzzy
|
975 |
msgid "and password:"
|
976 |
msgstr "Heslo"
|
977 |
|
978 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
979 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
983 |
msgid "The user was NOT created!"
|
984 |
msgstr ""
|
985 |
|
986 |
# @ profilebuilder
|
987 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
988 |
msgid "A username is required for registration."
|
989 |
msgstr "Uživatelské jméno je nutné pro registraci."
|
990 |
|
991 |
# @ profilebuilder
|
992 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
993 |
msgid "Sorry, that username already exists!"
|
994 |
msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
|
995 |
|
996 |
# @ profilebuilder
|
997 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
998 |
msgid "You must enter a valid email address."
|
999 |
msgstr "Musíte zadat platnou e-mailovou adresu."
|
1000 |
|
1001 |
# @ profilebuilder
|
1002 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
1003 |
msgid "Sorry, that email address is already used!"
|
1004 |
msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
|
1005 |
|
1006 |
# @ profilebuilder
|
1007 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
1008 |
msgid "You didn't complete one of the password-fields!"
|
1009 |
msgstr "Nebyla vyplněna obě pole hesla."
|
1010 |
|
1011 |
# @ profilebuilder
|
1012 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
1013 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
1014 |
#, fuzzy
|
1015 |
msgid "The account was NOT created!"
|
1016 |
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
1017 |
|
1018 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
1019 |
msgid "You must agree to the terms and conditions before registering!"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
1023 |
msgid "(Several required fields were left uncompleted)"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
1027 |
msgid "This username is already reserved to be used soon."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
1031 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
1032 |
msgid "Please try a different one!"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
# @ profilebuilder
|
1036 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
1037 |
#, fuzzy
|
1038 |
msgid "This email address is already reserved to be used soon."
|
1039 |
msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
|
1040 |
|
1041 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
1042 |
msgid "You are logged in as"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
1046 |
msgid "You don't need another account."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
# @ profilebuilder
|
1050 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
1051 |
#, fuzzy
|
1052 |
msgid "Log out of this account."
|
1053 |
msgstr "Odhlásit se"
|
1054 |
|
1055 |
# @ profilebuilder
|
1056 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
1057 |
#, fuzzy
|
1058 |
msgid "Logout"
|
1059 |
msgstr "Odhlásit se »"
|
1060 |
|
1061 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
1062 |
msgid "An email has been sent to "
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
1066 |
msgid "with information on how to activate his/her account"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
# @ profilebuilder
|
1070 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1173
|
1071 |
#, fuzzy
|
1072 |
msgid "A user account has been created for"
|
1073 |
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
1074 |
|
1075 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
1076 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
1077 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
1081 |
msgid "An email has been sent to you with information on how to activate your account"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
# @ profilebuilder
|
1085 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
1086 |
#, fuzzy
|
1087 |
msgid "Thank you for registering"
|
1088 |
msgstr "Děkujeme za registraci, %1$s."
|
1089 |
|
1090 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
1091 |
msgid "An error occured while trying to send the notification email."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
1095 |
msgid "An email containing activation instructions was successfully sent."
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
1099 |
msgid "An email containing the username and password was successfully sent."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
# @ profilebuilder
|
1103 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
1104 |
msgid "Users can register themselves or you can manually create users here."
|
1105 |
msgstr "Uživatelé se mohou zaregistrovat sami, případně můžete manuálně vytvářet uživatele zde."
|
1106 |
|
1107 |
# @ profilebuilder
|
1108 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
1109 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
1110 |
msgstr "Uživatelé se nemohou sami zaregistrovat, ale můžete je ručně vytvářet zde."
|
1111 |
|
1112 |
# @ profilebuilder
|
1113 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
1114 |
msgid "Only an administrator can add new users."
|
1115 |
msgstr "Pouze administrátor může přidávat nové uživatele."
|
1116 |
|
1117 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
1118 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
1119 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
1120 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
1121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
1122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
1123 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
1124 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
1125 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
1126 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
1130 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
1131 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
1132 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
1133 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
1134 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
1135 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
1136 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
1137 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
1138 |
msgid "This field is marked as required by the administrator"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
1142 |
msgid "Anti-Spam"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
# @ profilebuilder
|
1146 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
1147 |
#, fuzzy
|
1148 |
msgid "Send these credentials via email."
|
1149 |
msgstr "Odeslat tyto přihlašovací údaje e-mailem."
|
1150 |
|
1151 |
# @ profilebuilder
|
1152 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1153 |
msgid "Add User"
|
1154 |
msgstr "Přidat uživatele"
|
1155 |
|
1156 |
# @ profilebuilder
|
1157 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1158 |
msgid "Register"
|
1159 |
msgstr "Registrovat"
|
1160 |
|
1161 |
# @ profilebuilder
|
1162 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
|
1163 |
msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
|
1164 |
msgstr "Můžete vytvořit libovolné množství vlastních polí. K jejich rozdělení do tématických celků (ve front-endu) použijte pole \""
|
1165 |
|
1166 |
# @ profilebuilder
|
1167 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
|
1168 |
msgid "heading"
|
1169 |
msgstr "záhlaví"
|
1170 |
|
1171 |
# @ profilebuilder
|
1172 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
|
1173 |
msgid "\" custom field."
|
1174 |
msgstr "\"."
|
1175 |
|
1176 |
# @ profilebuilder
|
1177 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1178 |
#, fuzzy
|
1179 |
msgid "All of the fields can be sorted and rearranged to your liking with"
|
1180 |
msgstr "Všechna pole lze třídit pomocí "
|
1181 |
|
1182 |
# @ profilebuilder
|
1183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1184 |
msgid "Drag"
|
1185 |
msgstr "Drag"
|
1186 |
|
1187 |
# @ profilebuilder
|
1188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1189 |
msgid "Drop"
|
1190 |
msgstr "Drop"
|
1191 |
|
1192 |
# @ profilebuilder
|
1193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1194 |
#, fuzzy
|
1195 |
msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
|
1196 |
msgstr ". Není proto třeba se starat o pořadí, ve kterém vytvoříte vlastní pole, můžete jej kdykoli změnit."
|
1197 |
|
1198 |
# @ profilebuilder
|
1199 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
|
1200 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
|
1201 |
msgid "Title"
|
1202 |
msgstr "Název"
|
1203 |
|
1204 |
# @ profilebuilder
|
1205 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
|
1206 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
|
1207 |
msgid "Type"
|
1208 |
msgstr "Typ"
|
1209 |
|
1210 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
|
1211 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
|
1212 |
msgid "Meta-Key"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
|
1216 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
|
1217 |
msgid "ID"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
|
1221 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
|
1222 |
msgid "Req'd"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
# @ profilebuilder
|
1226 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
|
1227 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
|
1228 |
msgid "Add Option"
|
1229 |
msgstr "Přidat volbu"
|
1230 |
|
1231 |
# @ profilebuilder
|
1232 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
|
1233 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
|
1234 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
|
1235 |
msgid "Edit"
|
1236 |
msgstr "Upravit"
|
1237 |
|
1238 |
# @ profilebuilder
|
1239 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
|
1240 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
|
1241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
|
1242 |
msgid "Delete"
|
1243 |
msgstr "Odstranit"
|
1244 |
|
1245 |
# @ profilebuilder
|
1246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
|
1247 |
msgid "Title:"
|
1248 |
msgstr "Název:"
|
1249 |
|
1250 |
# @ profilebuilder
|
1251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
|
1252 |
msgid "The title of the item."
|
1253 |
msgstr "Název vlastního pole."
|
1254 |
|
1255 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
|
1256 |
msgid "Meta-Key:"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
|
1260 |
msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
# @ profilebuilder
|
1264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
|
1265 |
msgid "Option Type:"
|
1266 |
msgstr "Typ vlastního pole:"
|
1267 |
|
1268 |
# @ profilebuilder
|
1269 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
|
1270 |
msgid "Choose one of the supported option types."
|
1271 |
msgstr "Vyberte jednu z nabízených možností."
|
1272 |
|
1273 |
# @ profilebuilder
|
1274 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
|
1275 |
msgid "Description:"
|
1276 |
msgstr "Popis:"
|
1277 |
|
1278 |
# @ profilebuilder
|
1279 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
|
1280 |
msgid "Enter a detailed description of the option for end users to read(optional)."
|
1281 |
msgstr "Zadejte podrobný popis vlastního pole pro uživatele (volitelné)."
|
1282 |
|
1283 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
|
1284 |
msgid "You can only insert links using standard HTML syntax:"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
|
1288 |
msgid "address"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
# @ profilebuilder
|
1292 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
|
1293 |
#, fuzzy
|
1294 |
msgid "name"
|
1295 |
msgstr "Jméno"
|
1296 |
|
1297 |
# @ profilebuilder
|
1298 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
|
1299 |
msgid "Options:"
|
1300 |
msgstr "Možnosti:"
|
1301 |
|
1302 |
# @ profilebuilder
|
1303 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
|
1304 |
msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
|
1305 |
msgstr "Zadejte čárkami oddělený seznam možností. Například \"Jedna, dva, tři\" nebo jen jednu hodnotu (např. \"Ano\" u check-boxu)."
|
1306 |
|
1307 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
|
1308 |
msgid "ID:"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
|
1312 |
msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
# @ profilebuilder
|
1316 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
|
1317 |
#, fuzzy
|
1318 |
msgid "Required:"
|
1319 |
msgstr "(vyžadováno)"
|
1320 |
|
1321 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
|
1322 |
msgid "Check this box to make this field required."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
# @ profilebuilder
|
1326 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
|
1327 |
msgid "Cancel"
|
1328 |
msgstr "Zrušit"
|
1329 |
|
1330 |
# @ profilebuilder
|
1331 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
|
1332 |
msgid "Save"
|
1333 |
msgstr "Uložit"
|
1334 |
|
1335 |
# @ profilebuilder
|
1336 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
1337 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
|
1338 |
msgid "Register your version of Profile Builder Pro"
|
1339 |
msgstr "Zaregistrujte si svou verzi Profile Builder Pro"
|
1340 |
|
1341 |
# @ profilebuilder
|
1342 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
|
1343 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1344 |
msgstr "Nyní, když jste získali svou kopii Profile Builder Pro, zvažte výhody registrace této kopie zadáním sériového čísla, které jste obdrželi v e-mailu."
|
1345 |
|
1346 |
# @ profilebuilder
|
1347 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
|
1348 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1349 |
msgstr "Pokud si zaregistrujete tuto verzi Profile Builder, budete dostávat informace o aktualizacích, nových verzích a získáte přístup k technické podpoře."
|
1350 |
|
1351 |
# @ profilebuilder
|
1352 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:234
|
1353 |
msgid "Serial Number:"
|
1354 |
msgstr "Sériové číslo:"
|
1355 |
|
1356 |
# @ profilebuilder
|
1357 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:238
|
1358 |
msgid "The serial number was successfully validated!"
|
1359 |
msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
|
1360 |
|
1361 |
# @ profilebuilder
|
1362 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:240
|
1363 |
+
#, fuzzy
|
1364 |
+
msgid "The serial number entered couldn't be validated!"
|
1365 |
+
msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
|
1366 |
+
|
1367 |
+
# @ profilebuilder
|
1368 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:242
|
1369 |
+
#, fuzzy
|
1370 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
1371 |
msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
|
1372 |
|
1373 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:244
|
1374 |
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!"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
# @ profilebuilder
|
1378 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:250
|
1379 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1380 |
msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1381 |
|
1382 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
|
1383 |
msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
|
1387 |
msgid "You can find it in Profile Builder's menu."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
# @ profilebuilder
|
1391 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
|
1392 |
#, fuzzy
|
1393 |
msgid "You need to be logged in to view the userlisting!"
|
1394 |
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
1395 |
|
1396 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:67
|
1397 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:93
|
1398 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1399 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:909
|
1400 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:996
|
1401 |
msgid "Search Users by All Fields"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1405 |
msgid "Leave Blank and Press Search to List All Users"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:115
|
1409 |
msgid "Search"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
# @ profilebuilder
|
1413 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
|
1414 |
#, fuzzy
|
1415 |
msgid "First/Lastname"
|
1416 |
msgstr "Křestní jméno"
|
1417 |
|
1418 |
# @ profilebuilder
|
1419 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:134
|
1420 |
#, fuzzy
|
1421 |
msgid "Email"
|
1422 |
msgstr "E-mail"
|
1423 |
|
1424 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:140
|
1425 |
msgid "Sign-up Date"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
# @ profilebuilder
|
1429 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:146
|
1430 |
#, fuzzy
|
1431 |
msgid "Firstname"
|
1432 |
msgstr "Křestní jméno"
|
1433 |
|
1434 |
# @ profilebuilder
|
1435 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:152
|
1436 |
#, fuzzy
|
1437 |
msgid "Lastname"
|
1438 |
msgstr "Příjmení"
|
1439 |
|
1440 |
# @ profilebuilder
|
1441 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:158
|
1442 |
#, fuzzy
|
1443 |
msgid "Display Name"
|
1444 |
msgstr "Křestní jméno"
|
1445 |
|
1446 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:176
|
1447 |
msgid "Posts"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1451 |
msgid "Click here to see more information about this user"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1455 |
msgid "More..."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
# @ profilebuilder
|
1459 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:401
|
1460 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1461 |
#, fuzzy
|
1462 |
msgid "No uploaded attachment"
|
1463 |
msgstr "Příloha \""
|
1464 |
|
1465 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:403
|
1466 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1467 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:744
|
1468 |
msgid "Click to see the current attachment"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1472 |
msgid "Click here to go back"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
# @ profilebuilder
|
1476 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1477 |
#, fuzzy
|
1478 |
msgid "Back"
|
1479 |
msgstr "Černý"
|
1480 |
|
1481 |
# @ profilebuilder
|
1482 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1483 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1484 |
msgid "Current file"
|
1485 |
msgstr "Aktuální soubor"
|
1486 |
|
1487 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:742
|
1488 |
msgid "Avatar"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:799
|
1492 |
msgid "No results found!"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:892
|
1496 |
msgid "«« First"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:893
|
1500 |
msgid "« Prev"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
# @ profilebuilder
|
1504 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:894
|
1505 |
#, fuzzy
|
1506 |
msgid "Next » "
|
1507 |
msgstr "Odhlásit se »"
|
1508 |
|
1509 |
# @ profilebuilder
|
1510 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
|
1511 |
#, fuzzy
|
1512 |
msgid "Last »»"
|
1513 |
msgstr "Odhlásit se »"
|
1514 |
|
1515 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1247
|
1516 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:9
|
1520 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:10
|
1521 |
msgid "Activate/Deactivate Addons"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
# @ profilebuilder
|
1525 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:14
|
1526 |
#, fuzzy
|
1527 |
msgid "Name/Description"
|
1528 |
msgstr "Popis:"
|
1529 |
|
1530 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:15
|
1531 |
msgid "Status"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:20
|
1535 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:82
|
1536 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:83
|
1537 |
msgid "User-Listing"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:22
|
1541 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:29
|
1542 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:36
|
1543 |
msgid "Active"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:23
|
1547 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:30
|
1548 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:37
|
1549 |
msgid "Inactive"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:27
|
1553 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:458
|
1554 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:459
|
1555 |
msgid "Custom Redirects"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
1559 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
1560 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:602
|
1561 |
msgid "reCAPTCHA"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:85
|
1565 |
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:86
|
1569 |
msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:91
|
1573 |
msgid "These settings are applied to the front-end userlisting."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:97
|
1577 |
msgid "Number of Users/Page: "
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:114
|
1581 |
msgid "Default Sorting Order: "
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:125
|
1585 |
msgid "\"All-Userlisting\" Template"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:127
|
1589 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:269
|
1590 |
msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:128
|
1594 |
msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:132
|
1598 |
msgid "Avatar size: "
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:148
|
1602 |
msgid "Insert \"Sort By\" Field:"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:176
|
1606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:275
|
1607 |
msgid "Insert \"User-Meta\" Field:"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:207
|
1611 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:313
|
1612 |
msgid "Insert Extra Functions:"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:222
|
1616 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:224
|
1620 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:327
|
1621 |
msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:267
|
1625 |
msgid "\"Single-Userlisting\" Template"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:270
|
1629 |
msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:325
|
1633 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:463
|
1637 |
msgid "Redirects on custom page requests:"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
# @ profilebuilder
|
1641 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
|
1642 |
#, fuzzy
|
1643 |
msgid "Action"
|
1644 |
msgstr "Přidat volbu"
|
1645 |
|
1646 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1647 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
|
1648 |
msgid "Redirect"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1652 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:517
|
1653 |
msgid "URL"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:475
|
1657 |
msgid "After Registration:"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1661 |
+
msgid "After Login (*):"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
# @ profilebuilder
|
1665 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1666 |
#, fuzzy
|
1667 |
+
msgid "Recover Password (**)"
|
1668 |
msgstr "Heslo ještě jednou"
|
1669 |
|
1670 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
1671 |
+
msgid "Does not."
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:504
|
1675 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:509
|
1679 |
msgid "Redirects on default WordPress page requests:"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
|
1683 |
msgid "Requested WP Page"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:522
|
1687 |
msgid "Default WP Login Page(*)"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:534
|
1691 |
msgid "Default WP Logout Page(**)"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:546
|
1695 |
msgid "Default WP Register Page"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:558
|
1699 |
msgid "Default WP Dashboard (***)"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
|
1703 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
|
1707 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:571
|
1711 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
|
1715 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:607
|
1719 |
msgid "For this you must get a public and private key from Google:"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
# @ profilebuilder
|
1723 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
|
1724 |
msgid "Key"
|
1725 |
msgstr "Klíč"
|
1726 |
|
1727 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:614
|
1728 |
msgid "Code"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:618
|
1732 |
msgid "Public Key:"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:622
|
1736 |
msgid "Private Key:"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:81
|
1740 |
msgid "Could not open socket!"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:110
|
1744 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:156
|
1745 |
msgid "To use reCAPTCHA you must get an API key from"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:161
|
1749 |
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:220
|
1753 |
msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:237
|
1757 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
# @ profilebuilder
|
1761 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:279
|
1762 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:422
|
1763 |
#, fuzzy
|
1764 |
msgid "You must give your option a title."
|
1765 |
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
1766 |
|
1767 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
|
1768 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
|
1769 |
msgid "You have entered an invalid meta-key format!"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
# @ profilebuilder
|
1773 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
|
1774 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
|
1775 |
#, fuzzy
|
1776 |
msgid "You must enter a valid meta-key."
|
1777 |
msgstr "Musíte zadat platnou e-mailovou adresu."
|
1778 |
|
1779 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:293
|
1780 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
|
1781 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:440
|
1782 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:452
|
1783 |
msgid "That meta-key is already in use."
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1787 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:460
|
1788 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1792 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1793 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1797 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1798 |
msgid "The textarea row value must be numeric."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
|
1802 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
|
1803 |
msgid "The maxlength attribute must be numeric."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1807 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1808 |
msgid "The value must be between 20 and 200!"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1812 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1813 |
msgid "The width component of the entered value must be numeric!"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1817 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1818 |
msgid "The height component of the entered value must be numeric!"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
|
1822 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
|
1823 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
|
1827 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
|
1828 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
|
1832 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
|
1833 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1837 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1838 |
msgid "The entered avatar size must be numeric!"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:383
|
1842 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:559
|
1843 |
msgid "There was an error, please try again."
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
|
1847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
|
1848 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
|
1849 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
|
1850 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
|
1851 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
|
1852 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
|
1853 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
|
1854 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
|
1855 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
|
1856 |
msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
|
1860 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
|
1861 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
|
1862 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
|
1863 |
msgid "max upload size"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
|
1867 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
|
1868 |
msgid "Are you sure you want to delete this attachment?"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1872 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1873 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
1874 |
msgid "Click to delete the current attachment"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1878 |
msgid "The attachment can't be deleted (It was marked as required by the administrator)"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
# @ profilebuilder
|
1882 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1883 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1884 |
msgid "Current avatar"
|
1885 |
msgstr "Aktuální avatar"
|
1886 |
|
1887 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1888 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1889 |
msgid "No uploaded avatar"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
|
1893 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
|
1894 |
msgid "Are you sure you want to delete this avatar?"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
1898 |
msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
# @ profilebuilder
|
1902 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1903 |
#, fuzzy
|
1904 |
msgid "Click to see the current avatar"
|
1905 |
msgstr "Aktuální avatar"
|
1906 |
|
1907 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1908 |
msgid "Click to delete the avatar"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
|
1912 |
msgid "The user-validation has failed - the avatar was not deleted!"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
|
1916 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1920 |
msgid "Do you want to"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1924 |
msgid "the current user?"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1928 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1929 |
msgid "Your account on"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1933 |
msgid "has been approved!"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:546
|
1937 |
msgid "An administrator has just approved your account on"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1941 |
msgid "has been unapproved!"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:550
|
1945 |
msgid "An administrator has just unapproved your account on"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:614
|
1949 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:660
|
1950 |
msgid "Approve"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:615
|
1954 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:705
|
1955 |
msgid "Unapproved"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:626
|
1959 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:656
|
1960 |
msgid "Unapprove"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:627
|
1964 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:702
|
1965 |
msgid "Approved"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:655
|
1969 |
msgid "unapprove"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:659
|
1973 |
msgid "approve"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1977 |
msgid "Are you sure you want to"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1981 |
msgid "this user?"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:724
|
1985 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:819
|
1989 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1990 |
+
msgstr ""
|
1991 |
+
|
1992 |
+
# @ profilebuilder
|
1993 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:824
|
1994 |
+
#, fuzzy
|
1995 |
+
msgid "Profile Builder Login Widget"
|
1996 |
+
msgstr "Profile Builder"
|
1997 |
+
|
1998 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:853
|
1999 |
+
msgid "Don't have an account?"
|
2000 |
+
msgstr ""
|
2001 |
+
|
2002 |
+
# @ profilebuilder
|
2003 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:860
|
2004 |
+
#, fuzzy
|
2005 |
+
msgid "Lost Your Password?"
|
2006 |
+
msgstr "Zapomněli jste heslo?"
|
2007 |
+
|
2008 |
+
# @ profilebuilder
|
2009 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:889
|
2010 |
+
#, fuzzy
|
2011 |
+
msgid "Login"
|
2012 |
+
msgstr "Přihlásit se"
|
2013 |
+
|
2014 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:898
|
2015 |
+
msgid "After login redirect URL:"
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:903
|
2019 |
+
msgid "Register page URL (optional)"
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:908
|
2023 |
+
msgid "Password Recovery page URL (optional)"
|
2024 |
+
msgstr ""
|
2025 |
+
|
2026 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:985
|
2027 |
+
#, php-format
|
2028 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please %sregister your copy%s of Profile Builder to receive access to automatic updates and support. Need a license key? %sPurchase one now%s %sDismiss%s"
|
2029 |
+
msgstr ""
|
2030 |
+
|
2031 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:987
|
2032 |
+
#, php-format
|
2033 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please %sRenew Your Licence%s to receive access to automatic updates and priority support. %sPurchase one now%s %sDismiss%s"
|
2034 |
+
msgstr ""
|
2035 |
+
|
translation/profilebuilder-de_DE.mo
CHANGED
Binary file
|
translation/profilebuilder-de_DE.po
CHANGED
@@ -1,1735 +1,1801 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
-
"Language-Team:
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
-
"X-Poedit-Basepath:
|
14 |
-
"X-
|
15 |
-
"X-Poedit-SearchPath-0: C:\\Users\\
|
16 |
-
|
17 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
18 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
19 |
-
msgid "Profile Builder"
|
20 |
-
msgstr ""
|
21 |
-
|
22 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
|
23 |
-
msgid "Welcome to Profile Builder!"
|
24 |
-
msgstr ""
|
25 |
-
|
26 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
27 |
-
msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
|
31 |
-
msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
|
35 |
-
msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
|
39 |
-
msgid "Now all you need to do is add the following shortcode(for the previous example): "
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
|
43 |
-
msgid "Publish your page and you are ready to go!"
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
|
47 |
-
msgid "You can use the following shortcodes:"
|
48 |
-
msgstr ""
|
49 |
-
|
50 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
|
51 |
-
msgid "for a log-in form."
|
52 |
-
msgstr ""
|
53 |
-
|
54 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
|
55 |
-
msgid "to add a registration form."
|
56 |
-
msgstr ""
|
57 |
-
|
58 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
|
59 |
-
msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
|
63 |
-
msgid "to add a password recovery form."
|
64 |
-
msgstr ""
|
65 |
-
|
66 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
|
67 |
-
msgid "Users with administrator rights have access to the following features:"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
|
71 |
-
msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
|
75 |
-
msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
|
79 |
-
msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
|
83 |
-
msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
|
84 |
-
msgstr ""
|
85 |
-
|
86 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
|
87 |
-
msgid "add an avatar field."
|
88 |
-
msgstr ""
|
89 |
-
|
90 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
|
91 |
-
msgid "create custom redirects."
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
|
95 |
-
msgid "front-end userlisting using the"
|
96 |
-
msgstr ""
|
97 |
-
|
98 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
|
99 |
-
msgid "shortcode."
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
103 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
104 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
105 |
-
msgid "NOTE:"
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
|
109 |
-
msgid "this plugin only adds/removes fields in the front-end."
|
110 |
-
msgstr ""
|
111 |
-
|
112 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
|
113 |
-
msgid "The default information-fields will still be visible(and thus modifiable)"
|
114 |
-
msgstr ""
|
115 |
-
|
116 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
|
117 |
-
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
121 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
122 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
123 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
124 |
-
msgid "General Settings"
|
125 |
-
msgstr ""
|
126 |
-
|
127 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
128 |
-
msgid "Stylesheet Used on the Front-End:"
|
129 |
-
msgstr ""
|
130 |
-
|
131 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
132 |
-
msgid "Default"
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
136 |
-
msgid "White"
|
137 |
-
msgstr ""
|
138 |
-
|
139 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
140 |
-
msgid "Black"
|
141 |
-
msgstr ""
|
142 |
-
|
143 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
144 |
-
msgid "None"
|
145 |
-
msgstr ""
|
146 |
-
|
147 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
148 |
-
msgid "\"Email Confirmation\" Feature Activated:"
|
149 |
-
msgstr ""
|
150 |
-
|
151 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
152 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
153 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
154 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
155 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
156 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
157 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
158 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
159 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
160 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
161 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
162 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
163 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
164 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
165 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
166 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
167 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
168 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
169 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
170 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
171 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
172 |
-
msgid "Yes"
|
173 |
-
msgstr ""
|
174 |
-
|
175 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
176 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
177 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
180 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
182 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
184 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
186 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
188 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
189 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
190 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
191 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
192 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
193 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
194 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
196 |
-
msgid "No"
|
197 |
-
msgstr ""
|
198 |
-
|
199 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
200 |
-
msgid "\"Admin Approval\" Feature Activated:"
|
201 |
-
msgstr ""
|
202 |
-
|
203 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
204 |
-
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
205 |
-
msgstr ""
|
206 |
-
|
207 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
208 |
-
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
212 |
-
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
213 |
-
msgstr ""
|
214 |
-
|
215 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
216 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
217 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
218 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
219 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
220 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
222 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
223 |
-
msgid "Save Changes"
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
227 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
228 |
-
msgid "Show/Hide the Admin Bar on Front End"
|
229 |
-
msgstr ""
|
230 |
-
|
231 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
232 |
-
msgid "User-group"
|
233 |
-
msgstr ""
|
234 |
-
|
235 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
236 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
237 |
-
msgid "Visibility"
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
241 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
242 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
243 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
244 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
245 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
247 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
248 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
249 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
250 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
252 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
253 |
-
msgid "Show"
|
254 |
-
msgstr ""
|
255 |
-
|
256 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
257 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
258 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
259 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
261 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
262 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
263 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
264 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
266 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
267 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
268 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
269 |
-
msgid "Hide"
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
273 |
-
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
277 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
278 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
279 |
-
msgid "Default Profile Fields"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
283 |
-
msgid "Input Field Name"
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
287 |
-
msgid "Required"
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
291 |
-
msgid "Name:"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
295 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
296 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
297 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
298 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
299 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
300 |
-
msgid "Username"
|
301 |
-
msgstr "Benutzername"
|
302 |
-
|
303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
304 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
305 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
306 |
-
msgid "First Name"
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
310 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
311 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
312 |
-
msgid "Last Name"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
316 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
317 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
318 |
-
msgid "Nickname"
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
322 |
-
msgid "Display name publicly as..."
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
326 |
-
msgid "Contact Info:"
|
327 |
-
msgstr "Kontakt
|
328 |
-
|
329 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
330 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
331 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
332 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
333 |
-
msgid "E-mail"
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
337 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
338 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
339 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
340 |
-
msgid "Website"
|
341 |
-
msgstr ""
|
342 |
-
|
343 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
344 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
345 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
346 |
-
msgid "AIM"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
350 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
351 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
352 |
-
msgid "Yahoo IM"
|
353 |
-
msgstr ""
|
354 |
-
|
355 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
356 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
357 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
358 |
-
msgid "Jabber / Google Talk"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
362 |
-
msgid "About Yourself:"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
366 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
367 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
368 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
369 |
-
msgid "Biographical Info"
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
373 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
374 |
-
msgid "New Password"
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
378 |
-
msgid "
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
382 |
-
msgid "
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/
|
396 |
-
msgid "
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
424 |
-
msgid "
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
428 |
-
msgid "
|
429 |
-
msgstr ""
|
430 |
-
|
431 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
432 |
-
msgid "was successfully deleted."
|
433 |
-
msgstr ""
|
434 |
-
|
435 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
436 |
-
msgid "The
|
437 |
-
msgstr ""
|
438 |
-
|
439 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
440 |
-
msgid "
|
441 |
-
msgstr ""
|
442 |
-
|
443 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
452 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
459 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
460 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
461 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
462 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
473 |
-
msgid "
|
474 |
-
msgstr ""
|
475 |
-
|
476 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
486 |
-
msgid "
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
490 |
-
msgid "
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
494 |
-
msgid "
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
498 |
-
msgid "
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
502 |
-
msgid "
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
506 |
-
msgid "
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
510 |
-
msgid "
|
511 |
-
msgstr ""
|
512 |
-
|
513 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
545 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
550 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
551 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
552 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
553 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
558 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
592 |
-
msgid "
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
596 |
-
msgid "
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
600 |
-
msgid "
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
604 |
-
msgid "
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
608 |
-
msgid "
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
628 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
629 |
-
msgid "
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
633 |
-
msgid "
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
"
|
766 |
-
"
|
767 |
-
|
768 |
-
|
769 |
-
"
|
770 |
-
"
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
929 |
-
msgid "
|
930 |
-
msgstr ""
|
931 |
-
|
932 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
933 |
-
msgid "An email
|
934 |
-
msgstr ""
|
935 |
-
|
936 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
937 |
-
msgid "
|
938 |
-
msgstr ""
|
939 |
-
|
940 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
941 |
-
msgid "
|
942 |
-
msgstr ""
|
943 |
-
|
944 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
945 |
-
msgid "
|
946 |
-
msgstr ""
|
947 |
-
|
948 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
957 |
-
msgid "
|
958 |
-
msgstr ""
|
959 |
-
|
960 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
965 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
966 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
967 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
968 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
973 |
-
msgid "
|
974 |
-
msgstr ""
|
975 |
-
|
976 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
985 |
-
msgid "
|
986 |
-
msgstr ""
|
987 |
-
|
988 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/
|
989 |
-
msgid "
|
990 |
-
msgstr ""
|
991 |
-
|
992 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/
|
993 |
-
msgid "
|
994 |
-
msgstr ""
|
995 |
-
|
996 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/
|
997 |
-
msgid "
|
998 |
-
msgstr ""
|
999 |
-
|
1000 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/
|
1001 |
-
msgid "
|
1002 |
-
msgstr ""
|
1003 |
-
|
1004 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1005 |
-
msgid "
|
1006 |
-
msgstr ""
|
1007 |
-
|
1008 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1009 |
-
msgid "
|
1010 |
-
msgstr ""
|
1011 |
-
|
1012 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1013 |
-
msgid "
|
1014 |
-
msgstr ""
|
1015 |
-
|
1016 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1048 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1049 |
-
msgid "
|
1050 |
-
msgstr ""
|
1051 |
-
|
1052 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1053 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1059 |
-
msgid "
|
1060 |
-
msgstr ""
|
1061 |
-
|
1062 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1071 |
-
msgid "
|
1072 |
-
msgstr ""
|
1073 |
-
|
1074 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1075 |
-
msgid "
|
1076 |
-
msgstr ""
|
1077 |
-
|
1078 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1079 |
-
msgid "
|
1080 |
-
msgstr ""
|
1081 |
-
|
1082 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1083 |
-
msgid "
|
1084 |
-
msgstr ""
|
1085 |
-
|
1086 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1087 |
-
msgid "
|
1088 |
-
msgstr ""
|
1089 |
-
|
1090 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1091 |
-
msgid "
|
1092 |
-
msgstr ""
|
1093 |
-
|
1094 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1095 |
-
msgid "
|
1096 |
-
msgstr ""
|
1097 |
-
|
1098 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
msgid "
|
1174 |
-
msgstr ""
|
1175 |
-
|
1176 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
msgid "
|
1215 |
-
msgstr "
|
1216 |
-
|
1217 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1218 |
-
msgid "
|
1219 |
-
msgstr ""
|
1220 |
-
|
1221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1222 |
-
msgid "
|
1223 |
-
msgstr ""
|
1224 |
-
|
1225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1226 |
-
msgid "
|
1227 |
-
msgstr ""
|
1228 |
-
|
1229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1230 |
-
msgid "
|
1231 |
-
msgstr ""
|
1232 |
-
|
1233 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1274 |
-
msgid "
|
1275 |
-
msgstr ""
|
1276 |
-
|
1277 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1278 |
-
msgid "
|
1279 |
-
msgstr ""
|
1280 |
-
|
1281 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1282 |
-
msgid "
|
1283 |
-
msgstr ""
|
1284 |
-
|
1285 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1306 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1307 |
-
msgid "
|
1308 |
-
msgstr ""
|
1309 |
-
|
1310 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1333 |
-
msgid "
|
1334 |
-
msgstr ""
|
1335 |
-
|
1336 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1345 |
-
msgid "
|
1346 |
-
msgstr ""
|
1347 |
-
|
1348 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1349 |
-
msgid "
|
1350 |
-
msgstr ""
|
1351 |
-
|
1352 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1405 |
-
msgid "
|
1406 |
-
msgstr ""
|
1407 |
-
|
1408 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1435 |
-
msgid "
|
1436 |
-
msgstr ""
|
1437 |
-
|
1438 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1439 |
-
msgid "
|
1440 |
-
msgstr ""
|
1441 |
-
|
1442 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1443 |
-
msgid "
|
1444 |
-
msgstr ""
|
1445 |
-
|
1446 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1447 |
-
msgid "
|
1448 |
-
msgstr ""
|
1449 |
-
|
1450 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1451 |
-
msgid "
|
1452 |
-
msgstr ""
|
1453 |
-
|
1454 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1455 |
-
msgid "
|
1456 |
-
msgstr ""
|
1457 |
-
|
1458 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1459 |
-
msgid "
|
1460 |
-
msgstr ""
|
1461 |
-
|
1462 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1463 |
-
msgid "
|
1464 |
-
msgstr ""
|
1465 |
-
|
1466 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1467 |
-
msgid "
|
1468 |
-
msgstr ""
|
1469 |
-
|
1470 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1471 |
-
msgid "
|
1472 |
-
msgstr ""
|
1473 |
-
|
1474 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1475 |
-
msgid "
|
1476 |
-
msgstr ""
|
1477 |
-
|
1478 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1479 |
-
msgid "
|
1480 |
-
msgstr ""
|
1481 |
-
|
1482 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1483 |
-
msgid "
|
1484 |
-
msgstr ""
|
1485 |
-
|
1486 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1487 |
-
msgid "
|
1488 |
-
msgstr ""
|
1489 |
-
|
1490 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1491 |
-
msgid "
|
1492 |
-
msgstr ""
|
1493 |
-
|
1494 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/
|
1495 |
-
msgid "
|
1496 |
-
msgstr ""
|
1497 |
-
|
1498 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/
|
1602 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/
|
1612 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:
|
1623 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:
|
1624 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/
|
1668 |
-
msgid "
|
1669 |
-
msgstr ""
|
1670 |
-
|
1671 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/
|
1672 |
-
msgid "the
|
1673 |
-
msgstr ""
|
1674 |
-
|
1675 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1713 |
-
msgid "
|
1714 |
-
msgstr ""
|
1715 |
-
|
1716 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1717 |
-
msgid "
|
1718 |
-
msgstr ""
|
1719 |
-
|
1720 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-02 16:14+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-10-02 16:14+0200\n"
|
7 |
+
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
+
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Generator: Poedit 1.5.3\n"
|
15 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabi\\Desktop\\test\\profile-builder-pro\n"
|
16 |
+
|
17 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
18 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
19 |
+
msgid "Profile Builder"
|
20 |
+
msgstr "Profile Builder"
|
21 |
+
|
22 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
|
23 |
+
msgid "Welcome to Profile Builder!"
|
24 |
+
msgstr "Willkommen im Profile Builder"
|
25 |
+
|
26 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
27 |
+
msgid " lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user-information or to register new users."
|
28 |
+
msgstr " erlaubt es Ihnen, Ihre Website durch Hinzufügen eines Front-End-Menü für alle Benutzer, um Ihnen eine flexible Möglichkeit zu geben, ihre Benutzer-Informationen zu ändern oder neue Benutzer zu registrieren."
|
29 |
+
|
30 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
|
31 |
+
msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
|
32 |
+
msgstr "Ebenso gewährt es Benutzern mit Administratorrechten grundlegende Bereichen anzupassen oder neue hinzuzufügen."
|
33 |
+
|
34 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
|
35 |
+
msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
|
36 |
+
msgstr "Um dies zu erreichen, erstellen Sie einfach eine neue Seite, und geben Sie dieser einen intuitiven Namen (z.B. Profil bearbeiten)"
|
37 |
+
|
38 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
|
39 |
+
msgid "Now all you need to do is add the following shortcode(for the previous example): "
|
40 |
+
msgstr "Alles was Sie jetzt tun müssen, ist den folgenden Shortcode (für das vorherige Beispiel): "
|
41 |
+
|
42 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
|
43 |
+
msgid "Publish your page and you are ready to go!"
|
44 |
+
msgstr "Veröffentlichen Sie Ihre Seite und los geht´s."
|
45 |
+
|
46 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
|
47 |
+
msgid "You can use the following shortcodes:"
|
48 |
+
msgstr "Sie können die folgenden Shortcodes nutzen:"
|
49 |
+
|
50 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
|
51 |
+
msgid "for a log-in form."
|
52 |
+
msgstr "Log-In-Formular"
|
53 |
+
|
54 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
|
55 |
+
msgid "to add a registration form."
|
56 |
+
msgstr "Registrierungs-Formular"
|
57 |
+
|
58 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
|
59 |
+
msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
|
60 |
+
msgstr "um Benutzern einen Front-End-Zugang zu ihren persönlichen Daten zu gewähren (erfordert dass der Benutzer angemeldet ist)."
|
61 |
+
|
62 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
|
63 |
+
msgid "to add a password recovery form."
|
64 |
+
msgstr "um ein Passwort-vergessen-Formular hinzuzufügen"
|
65 |
+
|
66 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:39
|
67 |
+
msgid "Users with administrator rights have access to the following features:"
|
68 |
+
msgstr "Benutzer mit Administratorrechten haben Zugriff auf die folgenden Funktionen:"
|
69 |
+
|
70 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:40
|
71 |
+
msgid "add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black."
|
72 |
+
msgstr "Hinzufügen eines Standart Stylesheet oder Nutzung des Theme-Stylesheetsder dargestellten. Black/White/default."
|
73 |
+
|
74 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:41
|
75 |
+
msgid "select whether to display or not the admin bar in the front end for a specific user-group registered to the site."
|
76 |
+
msgstr "Anzeigen der WP Admin Bar verhindern/nicht verhindern."
|
77 |
+
|
78 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:42
|
79 |
+
msgid "select which information-field can users see/modify. The hidden fields' values remain unmodified."
|
80 |
+
msgstr "auswählen welche Felder angezeigt werden sollen."
|
81 |
+
|
82 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:43
|
83 |
+
msgid "add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload."
|
84 |
+
msgstr "hinzufügen von benutzerdefinierten Feldern."
|
85 |
+
|
86 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
|
87 |
+
msgid "add an avatar field."
|
88 |
+
msgstr "hinzufügen eines Avartar-Feldes."
|
89 |
+
|
90 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:45
|
91 |
+
msgid "create custom redirects."
|
92 |
+
msgstr "eigene Umleitungen erstellen"
|
93 |
+
|
94 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
|
95 |
+
msgid "front-end userlisting using the"
|
96 |
+
msgstr "ein User-Listing Frontend erstellen -"
|
97 |
+
|
98 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:46
|
99 |
+
msgid "shortcode."
|
100 |
+
msgstr "Shortcode"
|
101 |
+
|
102 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
103 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
|
104 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
105 |
+
msgid "NOTE:"
|
106 |
+
msgstr "Hinweis"
|
107 |
+
|
108 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:50
|
109 |
+
msgid "this plugin only adds/removes fields in the front-end."
|
110 |
+
msgstr "dieses Plugin entfernt oder fügt die Felder nur im Frontend hinzu."
|
111 |
+
|
112 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:51
|
113 |
+
msgid "The default information-fields will still be visible(and thus modifiable)"
|
114 |
+
msgstr "Die Standardinformationsfelder sind weiterhin"
|
115 |
+
|
116 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:52
|
117 |
+
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
118 |
+
msgstr "vom Backende aus sichtbar, während Benutzerdefinierte Felder nur über das Frontend sichtbar sind."
|
119 |
+
|
120 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
|
121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:69
|
122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
|
123 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
124 |
+
msgid "General Settings"
|
125 |
+
msgstr "Allgemeine Einstellungen"
|
126 |
+
|
127 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
|
128 |
+
msgid "Stylesheet Used on the Front-End:"
|
129 |
+
msgstr "Genutztes Stylesheet im Frontend"
|
130 |
+
|
131 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:72
|
132 |
+
msgid "Default"
|
133 |
+
msgstr "Standart"
|
134 |
+
|
135 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
|
136 |
+
msgid "White"
|
137 |
+
msgstr "Weiss"
|
138 |
+
|
139 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:77
|
140 |
+
msgid "Black"
|
141 |
+
msgstr "Schwarz"
|
142 |
+
|
143 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:81
|
144 |
+
msgid "None"
|
145 |
+
msgstr "Keins"
|
146 |
+
|
147 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:87
|
148 |
+
msgid "\"Email Confirmation\" Feature Activated:"
|
149 |
+
msgstr "\"E-Mail Bestätigung\" aktiviert:"
|
150 |
+
|
151 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
|
152 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:99
|
153 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
|
154 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
|
155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:238
|
156 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:251
|
157 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:264
|
158 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:283
|
159 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:296
|
160 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:312
|
161 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:325
|
162 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:338
|
163 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:357
|
164 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:371
|
165 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
166 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
167 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
168 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
|
169 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
|
170 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
|
171 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
|
172 |
+
msgid "Yes"
|
173 |
+
msgstr "Ja"
|
174 |
+
|
175 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:90
|
176 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:100
|
177 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:213
|
178 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:226
|
179 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:239
|
180 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:252
|
181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:265
|
182 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:284
|
183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:297
|
184 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:313
|
185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:326
|
186 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:339
|
187 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:358
|
188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:372
|
189 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
190 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
191 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
192 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:526
|
193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:538
|
194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:550
|
195 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:562
|
196 |
+
msgid "No"
|
197 |
+
msgstr "Nein"
|
198 |
+
|
199 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
|
200 |
+
msgid "\"Admin Approval\" Feature Activated:"
|
201 |
+
msgstr "\"Admin Bestätigung\" aktiviert:"
|
202 |
+
|
203 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
|
204 |
+
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
205 |
+
msgstr "Das schwarze Stylesheet wird bei dunklen Themes empfohlen."
|
206 |
+
|
207 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
|
208 |
+
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
209 |
+
msgstr "Das weisse Stylesheet wird bei hellen Themes empfohlen."
|
210 |
+
|
211 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
|
212 |
+
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
213 |
+
msgstr "Auf Einzelseiteninstallationen funktioniert die E-Mail-Bestätigung nur im Frontend. Stellen Sie also sicher, dass die \"Weiterleitungen\" aktiviert sind. "
|
214 |
+
|
215 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:116
|
216 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
|
217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:380
|
218 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:256
|
219 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
221 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:576
|
222 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:630
|
223 |
+
msgid "Save Changes"
|
224 |
+
msgstr "Einstellungen speichern"
|
225 |
+
|
226 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:134
|
227 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:135
|
228 |
+
msgid "Show/Hide the Admin Bar on Front End"
|
229 |
+
msgstr "Anzeigen/Verbergen der Admin-Leiste im Front-End"
|
230 |
+
|
231 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:139
|
232 |
+
msgid "User-group"
|
233 |
+
msgstr "Benutzergruppe"
|
234 |
+
|
235 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:140
|
236 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:193
|
237 |
+
msgid "Visibility"
|
238 |
+
msgstr "Sichtbarkeit"
|
239 |
+
|
240 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:149
|
241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
|
242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
|
243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
|
244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
|
245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
|
246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:279
|
247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:292
|
248 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
|
249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
|
250 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:334
|
251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:353
|
252 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:367
|
253 |
+
msgid "Show"
|
254 |
+
msgstr "Anzeigen"
|
255 |
+
|
256 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:150
|
257 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:209
|
258 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:222
|
259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:235
|
260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:248
|
261 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:261
|
262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:280
|
263 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:293
|
264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:309
|
265 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:322
|
266 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:335
|
267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:354
|
268 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:368
|
269 |
+
msgid "Hide"
|
270 |
+
msgstr "Verbergen"
|
271 |
+
|
272 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:162
|
273 |
+
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
274 |
+
msgstr "Wenn Sie neue Benutzerollen (ueber ein anderes Plugin) erstellt haben <u>nachdem</u> Profile Builder aktiviert wurde, muessen Sie es reaktivieren. "
|
275 |
+
|
276 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:187
|
277 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:188
|
278 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:61
|
279 |
+
msgid "Default Profile Fields"
|
280 |
+
msgstr "Standart Profil Felder"
|
281 |
+
|
282 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
|
283 |
+
msgid "Input Field Name"
|
284 |
+
msgstr "Eingabe Feld Name"
|
285 |
+
|
286 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:194
|
287 |
+
msgid "Required"
|
288 |
+
msgstr "Benötigt"
|
289 |
+
|
290 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:199
|
291 |
+
msgid "Name:"
|
292 |
+
msgstr "Name"
|
293 |
+
|
294 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:205
|
295 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
296 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:169
|
297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
298 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:122
|
300 |
+
msgid "Username"
|
301 |
+
msgstr "Benutzername"
|
302 |
+
|
303 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:218
|
304 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
305 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
306 |
+
msgid "First Name"
|
307 |
+
msgstr "Vorname"
|
308 |
+
|
309 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:231
|
310 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
311 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
312 |
+
msgid "Last Name"
|
313 |
+
msgstr "Nachname"
|
314 |
+
|
315 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:244
|
316 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
317 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
318 |
+
msgid "Nickname"
|
319 |
+
msgstr "Nickname"
|
320 |
+
|
321 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:257
|
322 |
+
msgid "Display name publicly as..."
|
323 |
+
msgstr "angezeigter Name..."
|
324 |
+
|
325 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:270
|
326 |
+
msgid "Contact Info:"
|
327 |
+
msgstr "Kontakt"
|
328 |
+
|
329 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:276
|
330 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
331 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
333 |
+
msgid "E-mail"
|
334 |
+
msgstr "E-Mail"
|
335 |
+
|
336 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:289
|
337 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
338 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
339 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:164
|
340 |
+
msgid "Website"
|
341 |
+
msgstr "Website"
|
342 |
+
|
343 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:305
|
344 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
345 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
346 |
+
msgid "AIM"
|
347 |
+
msgstr "AIM"
|
348 |
+
|
349 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:318
|
350 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
351 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
352 |
+
msgid "Yahoo IM"
|
353 |
+
msgstr "Yahoo IM"
|
354 |
+
|
355 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:331
|
356 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
357 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
358 |
+
msgid "Jabber / Google Talk"
|
359 |
+
msgstr "Jabber / Google Talk"
|
360 |
+
|
361 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:344
|
362 |
+
msgid "About Yourself:"
|
363 |
+
msgstr "Passwort"
|
364 |
+
|
365 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:350
|
366 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
367 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
368 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:170
|
369 |
+
msgid "Biographical Info"
|
370 |
+
msgstr "Sonstige Angaben"
|
371 |
+
|
372 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:364
|
373 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
374 |
+
msgid "New Password"
|
375 |
+
msgstr "Neues Passwort"
|
376 |
+
|
377 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:36
|
378 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive access to automatic updates and support. Need a license key? <a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>Purchase one now</a>"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:38
|
382 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</a> to receive access to automatic updates and priority support. <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>Purchase one now</a>"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
|
386 |
+
msgid "Basic Information"
|
387 |
+
msgstr "Allgemeine Informationen"
|
388 |
+
|
389 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
|
390 |
+
msgid "Show/Hide the Admin Bar on Front-end"
|
391 |
+
msgstr "Anzeigen/Verbergen der Admin-Leiste im Front-End"
|
392 |
+
|
393 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:67
|
394 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
395 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
396 |
+
msgid "Extra Profile Fields"
|
397 |
+
msgstr "Extra Profil Felder"
|
398 |
+
|
399 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:70
|
400 |
+
msgid "Addons"
|
401 |
+
msgstr "Add-Ons"
|
402 |
+
|
403 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:73
|
404 |
+
msgid "Register Your Version"
|
405 |
+
msgstr "Registrieren Sie Ihre Version"
|
406 |
+
|
407 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
408 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
409 |
+
msgid "The information size you were trying to submit was larger than"
|
410 |
+
msgstr "Die Information die Sie übertragen wollen ist größer als"
|
411 |
+
|
412 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
413 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
414 |
+
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
415 |
+
msgstr "Dies wird für gewöhnlich verursacht wenn große Dateien hochgeladen werden sollen."
|
416 |
+
|
417 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
418 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
419 |
+
msgid "Since it was also larger than"
|
420 |
+
msgstr "Es war größer als:"
|
421 |
+
|
422 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
423 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
424 |
+
msgid "no additional information is available."
|
425 |
+
msgstr "keine weiteren Informationen verfügbar."
|
426 |
+
|
427 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
|
428 |
+
msgid "You must be logged in to edit your profile."
|
429 |
+
msgstr "Sie müssen angemeldet sein um Ihr Profil zu ändern"
|
430 |
+
|
431 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
|
432 |
+
msgid "The avatar was successfully deleted."
|
433 |
+
msgstr "Der Avatar wurde gelöscht"
|
434 |
+
|
435 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
436 |
+
msgid "The attachment"
|
437 |
+
msgstr "Der Anhang"
|
438 |
+
|
439 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
440 |
+
msgid "was successfully deleted."
|
441 |
+
msgstr "wurde erfolgreich gelöscht"
|
442 |
+
|
443 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
|
444 |
+
msgid "The changes have been successfully saved."
|
445 |
+
msgstr "Die Änderungen wurden gespeichert"
|
446 |
+
|
447 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
448 |
+
msgid "The email address you entered is already registered to a different user."
|
449 |
+
msgstr "Die eingegebene E-Mail Adresse ist bereits registriert"
|
450 |
+
|
451 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
452 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
453 |
+
msgid "The email address was"
|
454 |
+
msgstr "Diese E-Mail wurde"
|
455 |
+
|
456 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
457 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
458 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
459 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
460 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
461 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
462 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
463 |
+
msgid "NOT"
|
464 |
+
msgstr "NICHT"
|
465 |
+
|
466 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
467 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
468 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
469 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
470 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
471 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
472 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
473 |
+
msgid "updated along with the rest of the information."
|
474 |
+
msgstr "mit den restlichen Informationen aktualisiert."
|
475 |
+
|
476 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
477 |
+
msgid "The email address you entered is invalid."
|
478 |
+
msgstr "Die eingegebene E-Mail Adresse ist ungültig!"
|
479 |
+
|
480 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
481 |
+
msgid "The passwords you entered do not match."
|
482 |
+
msgstr "Die eingegebenen Passwörter stimmen nicht überein"
|
483 |
+
|
484 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
485 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
486 |
+
msgid "The password was"
|
487 |
+
msgstr "Das Passwort ist"
|
488 |
+
|
489 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
490 |
+
msgid "You didn't complete both password fields."
|
491 |
+
msgstr "Sie haben die beiden Passwort Felder nicht ausgefüllt"
|
492 |
+
|
493 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
494 |
+
msgid "Your profile was NOT updated!"
|
495 |
+
msgstr "Ihr Profil wurde NICHT aktualisiert"
|
496 |
+
|
497 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
|
498 |
+
msgid "There was an error while trying to upload the following attachments:"
|
499 |
+
msgstr "Es gab einen Fehler beim hochladen der folgenden Datei:"
|
500 |
+
|
501 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
502 |
+
msgid "Possible cause: the size was bigger than"
|
503 |
+
msgstr "Möglicher Grund: die Datei war größer als"
|
504 |
+
|
505 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
506 |
+
msgid "The listed attachements were"
|
507 |
+
msgstr "Die augelisteten Anhänger sind"
|
508 |
+
|
509 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
510 |
+
msgid "There was an error while trying to upload your avatar picture."
|
511 |
+
msgstr "Es gab einen Fehler beim Hochladen des Avartars."
|
512 |
+
|
513 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
514 |
+
msgid "Possible cause: size/incorrect file-type."
|
515 |
+
msgstr "Möglicher Grund: Größe oder falscher Dateityp."
|
516 |
+
|
517 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
518 |
+
msgid "The avatar was"
|
519 |
+
msgstr "Der Avatar ist"
|
520 |
+
|
521 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
522 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
523 |
+
msgid "There was an error while trying to upload the following attachment(s)"
|
524 |
+
msgstr "Es gab einen Fehler beim Hochladen der/des folgenden Anhang/e:"
|
525 |
+
|
526 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
527 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
528 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
529 |
+
msgstr "Nur Dateien mit den folgenden Anhängen sind verwendbar:"
|
530 |
+
|
531 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
532 |
+
msgid "This file was"
|
533 |
+
msgstr "Der Anhang ist"
|
534 |
+
|
535 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
536 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
537 |
+
msgid "Name"
|
538 |
+
msgstr "Name"
|
539 |
+
|
540 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
|
541 |
+
msgid "Usernames cannot be changed."
|
542 |
+
msgstr "Benutzernamen können nicht geändert werden"
|
543 |
+
|
544 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
|
545 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
|
546 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
|
547 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
|
548 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
|
549 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
|
550 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
|
551 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
|
552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
|
553 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
|
554 |
+
msgid "This field is marked as required by the administrator."
|
555 |
+
msgstr "Dieses Feld wird benötigt."
|
556 |
+
|
557 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
|
558 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
|
559 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
|
560 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
|
561 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
|
562 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
|
563 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
|
564 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
|
565 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
|
566 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
|
567 |
+
msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
|
568 |
+
msgstr "Das Feld wurde nicht aktualisiert da es leer ist, jedoch benötigt wird."
|
569 |
+
|
570 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
|
571 |
+
msgid "Display name publicly as"
|
572 |
+
msgstr "angezeigter Name..."
|
573 |
+
|
574 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
575 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
576 |
+
msgid "Contact Info"
|
577 |
+
msgstr "E-Mail"
|
578 |
+
|
579 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
|
580 |
+
msgid "(required)"
|
581 |
+
msgstr "erforderlich"
|
582 |
+
|
583 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
584 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
585 |
+
msgid "About Yourself"
|
586 |
+
msgstr "Über Sie"
|
587 |
+
|
588 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
589 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
590 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
591 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
592 |
+
msgid "Repeat Password"
|
593 |
+
msgstr "Passwort wiederholen"
|
594 |
+
|
595 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
|
596 |
+
msgid "Update"
|
597 |
+
msgstr "Aktualisieren"
|
598 |
+
|
599 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:61
|
600 |
+
msgid "You are currently logged in as"
|
601 |
+
msgstr "Sie sind eingeloggt als"
|
602 |
+
|
603 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
604 |
+
msgid "Log out of this account"
|
605 |
+
msgstr "Aus diesem Profil ausloggen"
|
606 |
+
|
607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
608 |
+
msgid "Log out"
|
609 |
+
msgstr "Ausloggen"
|
610 |
+
|
611 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:80
|
612 |
+
msgid "You have successfully logged in as"
|
613 |
+
msgstr "Sie sind eingeloggt als"
|
614 |
+
|
615 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
616 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
617 |
+
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
618 |
+
msgstr "Sie werden umgehend weitergeleitet. Wenn Sie diesen Text länger als 3 Sekunden sehen klicken Sie bitte "
|
619 |
+
|
620 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
621 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
622 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
623 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
624 |
+
msgid "here"
|
625 |
+
msgstr "hier"
|
626 |
+
|
627 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
628 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
629 |
+
msgid "ERROR:"
|
630 |
+
msgstr "FEHLER"
|
631 |
+
|
632 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
633 |
+
msgid "The username field is empty"
|
634 |
+
msgstr "Das Feld Benutzername ist leer"
|
635 |
+
|
636 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:177
|
637 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
638 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
639 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
640 |
+
msgid "Password"
|
641 |
+
msgstr "Passwort"
|
642 |
+
|
643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
644 |
+
msgid "Log in"
|
645 |
+
msgstr "Einloggen"
|
646 |
+
|
647 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:189
|
648 |
+
msgid "Remember me"
|
649 |
+
msgstr "Daten merken"
|
650 |
+
|
651 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:204
|
652 |
+
msgid "Lost password?"
|
653 |
+
msgstr "Passwort vergessen"
|
654 |
+
|
655 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
656 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
657 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
658 |
+
msgid "ERROR"
|
659 |
+
msgstr "FEHLER"
|
660 |
+
|
661 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
662 |
+
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
663 |
+
msgstr "Ihr Account muss erst durch den Administrator freigegeben werden bevor Sie das Passwort ändern können."
|
664 |
+
|
665 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
666 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
667 |
+
msgid "A password reset email has been sent to "
|
668 |
+
msgstr "Eine E-Mail zum zurücsetzen Ihres Passwortes wurde gesendet an:"
|
669 |
+
|
670 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
671 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
672 |
+
msgid "Following the link sent in the email address will reset the password."
|
673 |
+
msgstr "Folgen Sie dem Link in der E-Mail um Ihr Passwort zurückzusetzen."
|
674 |
+
|
675 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
676 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
677 |
+
msgid "Someone requested that the password be reset for the following account: "
|
678 |
+
msgstr "Es wurde ein Anfrage zum Zurücksetzen Ihres Passwortes gestellt. Die Anfrage bezieht sich auf folgenden Account:"
|
679 |
+
|
680 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
681 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
682 |
+
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
683 |
+
msgstr "Wenn Sie diese Anfrage nicht gesendet haben, ignorieren Sie bitte diese E-Mail!"
|
684 |
+
|
685 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
686 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
687 |
+
msgid "To reset your password, visit the following link:"
|
688 |
+
msgstr "Um Ihr Passwort zurückzusetzen folgen Sie bitte dem folgenden Link:"
|
689 |
+
|
690 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
691 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
692 |
+
msgid "Password Reset Feature from"
|
693 |
+
msgstr "Passwort zurücksetzen von"
|
694 |
+
|
695 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
696 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
697 |
+
msgid "There was an error while trying to send the activation link to "
|
698 |
+
msgstr "Es gab einen Fehler beim Senden des Aktivierungslinks an "
|
699 |
+
|
700 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
701 |
+
msgid "The email address entered wasn't found in the database!"
|
702 |
+
msgstr "Die angegebene E-Mail-Adresse konnte nicht in unserer Datenbank gefunden werden!"
|
703 |
+
|
704 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
705 |
+
msgid "Please check that you entered the correct email address."
|
706 |
+
msgstr "Bitte überprüfen Sie die eingegebene E-Mail-Adresse."
|
707 |
+
|
708 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
709 |
+
msgid "The username entered wasn't found in the database!"
|
710 |
+
msgstr "Der angegebene Benutzername konnte nicht in unserer Datenbank gefunden werden!"
|
711 |
+
|
712 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
713 |
+
msgid "Please check that you entered the correct username."
|
714 |
+
msgstr "Bitte überprüfen Sie den eingegebenen Benutzernamen."
|
715 |
+
|
716 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
717 |
+
msgid "Your password has been successfully changed!"
|
718 |
+
msgstr "Ihr Passwort wurde erfolgreich geändert!"
|
719 |
+
|
720 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
721 |
+
msgid "You have successfully reset your password to:"
|
722 |
+
msgstr "Ihr neues Passwort lautet:"
|
723 |
+
|
724 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
725 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
726 |
+
msgid "Password Successfully Reset for"
|
727 |
+
msgstr "Passwort zurückgesetzt für:"
|
728 |
+
|
729 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
730 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
731 |
+
msgid "from"
|
732 |
+
msgstr "von"
|
733 |
+
|
734 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
735 |
+
msgid "has requested a password change via the password reset feature."
|
736 |
+
msgstr "hat eine Anfrage zum Zurücksetzen des Passwortes gesendet."
|
737 |
+
|
738 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
739 |
+
msgid "His/her new password is:"
|
740 |
+
msgstr "Ihr neues Passwort lautet:"
|
741 |
+
|
742 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
744 |
+
msgid "The entered passwords don't match!"
|
745 |
+
msgstr "Die eingegebenen Passwörter stimmen nicht überein!"
|
746 |
+
|
747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
748 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
749 |
+
msgid "Reset Password"
|
750 |
+
msgstr "Passwort zurücksetzen"
|
751 |
+
|
752 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
753 |
+
msgid "Invalid key!"
|
754 |
+
msgstr "Ungültige Eingabe"
|
755 |
+
|
756 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
757 |
+
msgid "Please enter your username or email address."
|
758 |
+
msgstr "Bitte geben Sie Ihren Benutzernamen oder Ihre E-Mail-Adresse ein mit der Sie sich registriert haben."
|
759 |
+
|
760 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
761 |
+
msgid "You will receive a link to create a new password via email."
|
762 |
+
msgstr "Sie erhalten eine E-Mail mit einem Link zum Zurücksetzen des Passwortes."
|
763 |
+
|
764 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
765 |
+
msgid "Username or E-mail"
|
766 |
+
msgstr "Benutzername oder E-Mail"
|
767 |
+
|
768 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
769 |
+
msgid "Get New Password"
|
770 |
+
msgstr "Neues Passwort anfordern"
|
771 |
+
|
772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
773 |
+
#, php-format
|
774 |
+
msgid ""
|
775 |
+
"To activate your user, please click the following link:\n"
|
776 |
+
"\n"
|
777 |
+
"%s\n"
|
778 |
+
"\n"
|
779 |
+
"After you activate, you will receive *another email* with your login.\n"
|
780 |
+
"\n"
|
781 |
+
msgstr ""
|
782 |
+
"Um Ihr Profil zu aktivieren klicken Sie bitte auf den folgenden Link:\n"
|
783 |
+
"\n"
|
784 |
+
"%s\n"
|
785 |
+
"\n"
|
786 |
+
"Nach der Aktivierung erhalten Sie eine E-Mail mit Ihren Benutzerdaten.\n"
|
787 |
+
|
788 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
789 |
+
#, php-format
|
790 |
+
msgid "[%1$s] Activate %2$s"
|
791 |
+
msgstr "[%1$s] Aktivieren %2$s"
|
792 |
+
|
793 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
794 |
+
msgid "Invalid activation key!"
|
795 |
+
msgstr "Falscher Aktivierungsschlüssel"
|
796 |
+
|
797 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
798 |
+
msgid "The user is already active!"
|
799 |
+
msgstr "Der Benutzer ist bereits aktiviert."
|
800 |
+
|
801 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
802 |
+
msgid "Could not create user!"
|
803 |
+
msgstr "Benutzer kann nicht erstellt werden."
|
804 |
+
|
805 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
806 |
+
msgid "That username is already activated!"
|
807 |
+
msgstr "Der Benutzername ist bereits aktiviert."
|
808 |
+
|
809 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
810 |
+
msgid "The user was successfully activated."
|
811 |
+
msgstr "Der Benutzer wurde erfolgreich aktiviert"
|
812 |
+
|
813 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
814 |
+
msgid "There was an error while trying to activate the user."
|
815 |
+
msgstr "Es gab einen Fehler bei der Aktivierung des Benutzers."
|
816 |
+
|
817 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
818 |
+
msgid "New subscriber on"
|
819 |
+
msgstr "Neue Registreirung bei:"
|
820 |
+
|
821 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
822 |
+
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!"
|
823 |
+
msgstr "Die \"Zustimmung des Administrators\" ist zur Aktivierung des Benutzers erforderlich."
|
824 |
+
|
825 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
826 |
+
msgid "A new subscriber has (been) registered!"
|
827 |
+
msgstr "Ein neuer Benutzer hat sich angemeldet!"
|
828 |
+
|
829 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
830 |
+
msgid "A new account has been created for you."
|
831 |
+
msgstr "Ein neues Benutzerprofil wurde für Sie erstellt."
|
832 |
+
|
833 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
834 |
+
msgid "Welcome to"
|
835 |
+
msgstr "Willkommen bei"
|
836 |
+
|
837 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
838 |
+
msgid "Your username is:"
|
839 |
+
msgstr "Ihr Benutzername ist:"
|
840 |
+
|
841 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
842 |
+
msgid "and password:"
|
843 |
+
msgstr "und das Passwort:"
|
844 |
+
|
845 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
846 |
+
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
847 |
+
msgstr "Bevor Sie auf Ihr Benutzerprofil zugreifen können ist die Zustimmung eines Administrators nötig. Sie werden per E-Mail über die Zustimmung informiert."
|
848 |
+
|
849 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
850 |
+
msgid "The user was NOT created!"
|
851 |
+
msgstr "Der Benutzer wurde nicht erstellt."
|
852 |
+
|
853 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
854 |
+
msgid "A username is required for registration."
|
855 |
+
msgstr "Ein Benutzername ist zur Registrierung notwendig."
|
856 |
+
|
857 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
858 |
+
msgid "Sorry, that username already exists!"
|
859 |
+
msgstr "Der Benutzername ist bereits registriert."
|
860 |
+
|
861 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
862 |
+
msgid "You must enter a valid email address."
|
863 |
+
msgstr "Sie müssen eine gültige E-Mail-Adresse eingeben."
|
864 |
+
|
865 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
866 |
+
msgid "Sorry, that email address is already used!"
|
867 |
+
msgstr "Diese E-Mail-Adresse ist bereits registriert."
|
868 |
+
|
869 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
870 |
+
msgid "You didn't complete one of the password-fields!"
|
871 |
+
msgstr "Eines der Passwortfelder wurde nicht ausgefüllt."
|
872 |
+
|
873 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
874 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
875 |
+
msgid "The account was NOT created!"
|
876 |
+
msgstr "Der Benutzer wurde nicht erstellt."
|
877 |
+
|
878 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
879 |
+
msgid "You must agree to the terms and conditions before registering!"
|
880 |
+
msgstr "Sie müssen den AGB zustimmen!"
|
881 |
+
|
882 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
883 |
+
msgid "(Several required fields were left uncompleted)"
|
884 |
+
msgstr "Einige zur Registrierung notwendige Felder wurde nicht ausgefüllt."
|
885 |
+
|
886 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
887 |
+
msgid "This username is already reserved to be used soon."
|
888 |
+
msgstr "Dieser Benutzername ist reserviert."
|
889 |
+
|
890 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
891 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
892 |
+
msgid "Please try a different one!"
|
893 |
+
msgstr "Bitte wählen Sie einen anderen."
|
894 |
+
|
895 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
896 |
+
msgid "This email address is already reserved to be used soon."
|
897 |
+
msgstr "Dieser E-Mail-Adresse ist reserviert."
|
898 |
+
|
899 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
900 |
+
msgid "You are logged in as"
|
901 |
+
msgstr "Sie sind eingeloggt als "
|
902 |
+
|
903 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
904 |
+
msgid "You don't need another account."
|
905 |
+
msgstr "Sie benötigen keinen weiteren Account."
|
906 |
+
|
907 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
908 |
+
msgid "Log out of this account."
|
909 |
+
msgstr "Aus diesem Profil ausloggen."
|
910 |
+
|
911 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
912 |
+
msgid "Logout"
|
913 |
+
msgstr "Ausloggen"
|
914 |
+
|
915 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
916 |
+
msgid "An email has been sent to "
|
917 |
+
msgstr "An "
|
918 |
+
|
919 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
920 |
+
msgid "with information on how to activate his/her account"
|
921 |
+
msgstr "wurde eine E-Mail mit der Information wie das Profil aktiviert wird gesendet."
|
922 |
+
|
923 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1173
|
924 |
+
msgid "A user account has been created for"
|
925 |
+
msgstr "Ein Benutzer wurde erstellt für"
|
926 |
+
|
927 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
928 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
929 |
+
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
930 |
+
msgstr "Sie werden umgehend weitergeleitet. Wenn Sie diesen Text länger als 3 Sekunden sehen klicken Sie bitte "
|
931 |
+
|
932 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
933 |
+
msgid "An email has been sent to you with information on how to activate your account"
|
934 |
+
msgstr "Eine E-Mail, mit der Information wie Ihr Profil aktiviert wird, wurde an Sie gesendet"
|
935 |
+
|
936 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
937 |
+
msgid "Thank you for registering"
|
938 |
+
msgstr "Vielen Dank für die Registrierung."
|
939 |
+
|
940 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
941 |
+
msgid "An error occured while trying to send the notification email."
|
942 |
+
msgstr "Ein Fehler ist aufgetreten beim Versuch, die Benachrichtigungs-Email zu senden."
|
943 |
+
|
944 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
945 |
+
msgid "An email containing activation instructions was successfully sent."
|
946 |
+
msgstr "Eine E-Mail mit Anweisungen zur Aktivierung wurde erfolgreich gesendet."
|
947 |
+
|
948 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
949 |
+
msgid "An email containing the username and password was successfully sent."
|
950 |
+
msgstr "Eine E-Mail mit dem Benutzernamen und Passwort wurde erfolgreich gesendet."
|
951 |
+
|
952 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
953 |
+
msgid "Users can register themselves or you can manually create users here."
|
954 |
+
msgstr "Benutzer können sich selbstständig registrieren oder manuell angelegt werden."
|
955 |
+
|
956 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
957 |
+
msgid "Users cannot currently register themselves, but you can manually create users here."
|
958 |
+
msgstr "Benutzer können sich nicht selbstständig registrieren jedoch manuell angelegt werden."
|
959 |
+
|
960 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
961 |
+
msgid "Only an administrator can add new users."
|
962 |
+
msgstr "Nur Administratoren können neue Benutze anlegen."
|
963 |
+
|
964 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
965 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
966 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
967 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
968 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
969 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
970 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
971 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
972 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
973 |
+
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
974 |
+
msgstr "Dieses Feld wird zur Registrierung benötigt."
|
975 |
+
|
976 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
977 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
978 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
979 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
980 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
981 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
982 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
983 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
984 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
985 |
+
msgid "This field is marked as required by the administrator"
|
986 |
+
msgstr "Dieses Feld wird zur Registrierung benötigt."
|
987 |
+
|
988 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
989 |
+
msgid "Anti-Spam"
|
990 |
+
msgstr "Anti-Spam"
|
991 |
+
|
992 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
993 |
+
msgid "Send these credentials via email."
|
994 |
+
msgstr "Senden Sie diese Anmeldeinformationen per E-Mail."
|
995 |
+
|
996 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
997 |
+
msgid "Add User"
|
998 |
+
msgstr "Benutzer hinzufügen"
|
999 |
+
|
1000 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1001 |
+
msgid "Register"
|
1002 |
+
msgstr "Regstrieren"
|
1003 |
+
|
1004 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
|
1005 |
+
msgid "You can create as many extra fields as your project requires. To break your custom fields into sections (on the front-end), add a \""
|
1006 |
+
msgstr "Sie können so viele zusätzliche Felder erstellen, wie Ihr Projekt erfordert. Um Ihre benutzerdefinierte Felder in Abschnitte (auf dem Front-End) zu unterteilen, fügen Sie ein \""
|
1007 |
+
|
1008 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
|
1009 |
+
msgid "heading"
|
1010 |
+
msgstr "Überschrift"
|
1011 |
+
|
1012 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
|
1013 |
+
msgid "\" custom field."
|
1014 |
+
msgstr "\" benutzerdefiniertes Feld ein."
|
1015 |
+
|
1016 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1017 |
+
msgid "All of the fields can be sorted and rearranged to your liking with"
|
1018 |
+
msgstr "Alle Felder können sortiert und nach Ihren Wünschen umgestaltet werden mit"
|
1019 |
+
|
1020 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1021 |
+
msgid "Drag"
|
1022 |
+
msgstr "Drag"
|
1023 |
+
|
1024 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1025 |
+
msgid "Drop"
|
1026 |
+
msgstr "Drop"
|
1027 |
+
|
1028 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1029 |
+
msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
|
1030 |
+
msgstr "Keine Sorge über die Reihenfolge der Felder. Sie können Sie jederzeit umsortieren."
|
1031 |
+
|
1032 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
|
1033 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
|
1034 |
+
msgid "Title"
|
1035 |
+
msgstr "Titel"
|
1036 |
+
|
1037 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
|
1038 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
|
1039 |
+
msgid "Type"
|
1040 |
+
msgstr "Typ"
|
1041 |
+
|
1042 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
|
1043 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
|
1044 |
+
msgid "Meta-Key"
|
1045 |
+
msgstr "Meta-Key"
|
1046 |
+
|
1047 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
|
1048 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
|
1049 |
+
msgid "ID"
|
1050 |
+
msgstr "ID"
|
1051 |
+
|
1052 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
|
1053 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
|
1054 |
+
msgid "Req'd"
|
1055 |
+
msgstr "Erforderlich"
|
1056 |
+
|
1057 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
|
1058 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
|
1059 |
+
msgid "Add Option"
|
1060 |
+
msgstr "Option Hinzufügen"
|
1061 |
+
|
1062 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
|
1063 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
|
1064 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
|
1065 |
+
msgid "Edit"
|
1066 |
+
msgstr "Bearbeiten"
|
1067 |
+
|
1068 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
|
1069 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
|
1070 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
|
1071 |
+
msgid "Delete"
|
1072 |
+
msgstr "Löschen"
|
1073 |
+
|
1074 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
|
1075 |
+
msgid "Title:"
|
1076 |
+
msgstr "Titel:"
|
1077 |
+
|
1078 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
|
1079 |
+
msgid "The title of the item."
|
1080 |
+
msgstr "Titel des Artikels"
|
1081 |
+
|
1082 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
|
1083 |
+
msgid "Meta-Key:"
|
1084 |
+
msgstr "Meta-Key:"
|
1085 |
+
|
1086 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
|
1087 |
+
msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing. Auto-completed but editable - in this case it must be uniqe.<br/>Changing this might take long in case of a very big user-count."
|
1088 |
+
msgstr "Verwenden Sie diese Verbindung mit Wordpress Funktionen um den Wert in der Seite Ihrer Wahl anzuzeigen. Auto-Vervollständigung ist editierbar. In diesem Fall muss die Angabe einmalig sein.<br/> Änderungen können bei hoher Benutzerzahl eine lange Zeit in Anspruch nehmen."
|
1089 |
+
|
1090 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
|
1091 |
+
msgid "Option Type:"
|
1092 |
+
msgstr "Option-Typ"
|
1093 |
+
|
1094 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
|
1095 |
+
msgid "Choose one of the supported option types."
|
1096 |
+
msgstr "Wählen Sie eine der gewählten Optionen"
|
1097 |
+
|
1098 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
|
1099 |
+
msgid "Description:"
|
1100 |
+
msgstr "Beschreibung"
|
1101 |
+
|
1102 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
|
1103 |
+
msgid "Enter a detailed description of the option for end users to read(optional)."
|
1104 |
+
msgstr "Geben Sie eine detailierte Beschreibung ein (Benutzer sehen diese (optional)"
|
1105 |
+
|
1106 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
|
1107 |
+
msgid "You can only insert links using standard HTML syntax:"
|
1108 |
+
msgstr "Sie können Links nur mit dem Standart-HTML-Syntax einfügen:"
|
1109 |
+
|
1110 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
|
1111 |
+
msgid "address"
|
1112 |
+
msgstr "Adresse"
|
1113 |
+
|
1114 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
|
1115 |
+
msgid "name"
|
1116 |
+
msgstr "Name"
|
1117 |
+
|
1118 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
|
1119 |
+
msgid "Options:"
|
1120 |
+
msgstr "Optionen:"
|
1121 |
+
|
1122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
|
1123 |
+
msgid "Enter a comma separated list of options. For example, you could have \"One,Two,Three\" or just a single value like \"Yes\" for a checkbox."
|
1124 |
+
msgstr "Geben Sie eine kommagetrennte Liste der Optionen ein."
|
1125 |
+
|
1126 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
|
1127 |
+
msgid "ID:"
|
1128 |
+
msgstr "ID:"
|
1129 |
+
|
1130 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
|
1131 |
+
msgid "This is the internal ID for this input. You can use this in conjuction with filters to target this element if needed.<br/>Can't be edited."
|
1132 |
+
msgstr "Dies ist die interne ID für dieses Feld."
|
1133 |
+
|
1134 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
|
1135 |
+
msgid "Required:"
|
1136 |
+
msgstr "Benötigt:"
|
1137 |
+
|
1138 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
|
1139 |
+
msgid "Check this box to make this field required."
|
1140 |
+
msgstr "Anhaken um dieses Feld als erforderlich zu markieren."
|
1141 |
+
|
1142 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
|
1143 |
+
msgid "Cancel"
|
1144 |
+
msgstr "Abbrechen"
|
1145 |
+
|
1146 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
|
1147 |
+
msgid "Save"
|
1148 |
+
msgstr "Speichern"
|
1149 |
+
|
1150 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
1151 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
|
1152 |
+
msgid "Register your version of Profile Builder Pro"
|
1153 |
+
msgstr "Registrieren Sie Ihre Version."
|
1154 |
+
|
1155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
|
1156 |
+
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1157 |
+
msgstr "Geben Sie den Registrierungsschlüssel ein der Ihnen mit der Bestätigungsmail zugesandt wurde."
|
1158 |
+
|
1159 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
|
1160 |
+
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1161 |
+
msgstr "Wenn Sie sich registrieren, erhalten Sie Informationen über Upgrades, Patches und technischen Support."
|
1162 |
+
|
1163 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:234
|
1164 |
+
msgid "Serial Number:"
|
1165 |
+
msgstr "Seriennummer:"
|
1166 |
+
|
1167 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:238
|
1168 |
+
msgid "The serial number was successfully validated!"
|
1169 |
+
msgstr "Die Seriennummer wurde bestätigt."
|
1170 |
+
|
1171 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:240
|
1172 |
+
#, fuzzy
|
1173 |
+
msgid "The serial number entered couldn't be validated!"
|
1174 |
+
msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
|
1175 |
+
|
1176 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:242
|
1177 |
+
#, fuzzy
|
1178 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
1179 |
+
msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
|
1180 |
+
|
1181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:244
|
1182 |
+
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!"
|
1183 |
+
msgstr "Die Seriennummer wurde nicht bestätigt weil ein Problem mit dem Server besteht. Bitte versuchen Sie es später noch einmal. "
|
1184 |
+
|
1185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:250
|
1186 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1187 |
+
msgstr "(Bsp.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1188 |
+
|
1189 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
|
1190 |
+
msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1191 |
+
msgstr "Sie müssen das User-Listing im \"Addons\" aktivieren!"
|
1192 |
+
|
1193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
|
1194 |
+
msgid "You can find it in Profile Builder's menu."
|
1195 |
+
msgstr "Sie finden es im Profile Builder Menü."
|
1196 |
+
|
1197 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
|
1198 |
+
msgid "You need to be logged in to view the userlisting!"
|
1199 |
+
msgstr "Sie müssen eingeloggt sein um die User-Listings sehen zu können."
|
1200 |
+
|
1201 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:67
|
1202 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:93
|
1203 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1204 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:909
|
1205 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:996
|
1206 |
+
msgid "Search Users by All Fields"
|
1207 |
+
msgstr "Suche Benutzer nach alle Felder"
|
1208 |
+
|
1209 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1210 |
+
msgid "Leave Blank and Press Search to List All Users"
|
1211 |
+
msgstr "Lassen Sie dieses Feld frei um nach allen Benutzern zu suchen."
|
1212 |
+
|
1213 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:115
|
1214 |
+
msgid "Search"
|
1215 |
+
msgstr "Suche"
|
1216 |
+
|
1217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
|
1218 |
+
msgid "First/Lastname"
|
1219 |
+
msgstr "Vor/Nachname"
|
1220 |
+
|
1221 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:134
|
1222 |
+
msgid "Email"
|
1223 |
+
msgstr "E-Mail"
|
1224 |
+
|
1225 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:140
|
1226 |
+
msgid "Sign-up Date"
|
1227 |
+
msgstr "Registrierungsdatum"
|
1228 |
+
|
1229 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:146
|
1230 |
+
msgid "Firstname"
|
1231 |
+
msgstr "Vorname"
|
1232 |
+
|
1233 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:152
|
1234 |
+
msgid "Lastname"
|
1235 |
+
msgstr "Nachname"
|
1236 |
+
|
1237 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:158
|
1238 |
+
msgid "Display Name"
|
1239 |
+
msgstr "Angezeigter Name"
|
1240 |
+
|
1241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:176
|
1242 |
+
msgid "Posts"
|
1243 |
+
msgstr "Posts"
|
1244 |
+
|
1245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1246 |
+
msgid "Click here to see more information about this user"
|
1247 |
+
msgstr "Klicken Sie hie rum weitere Informationen über den Benutzer zu sehen"
|
1248 |
+
|
1249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1250 |
+
msgid "More..."
|
1251 |
+
msgstr "Mehr..."
|
1252 |
+
|
1253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:401
|
1254 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1255 |
+
msgid "No uploaded attachment"
|
1256 |
+
msgstr "Keine hochgeladenen Anhänge"
|
1257 |
+
|
1258 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:403
|
1259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:744
|
1261 |
+
msgid "Click to see the current attachment"
|
1262 |
+
msgstr "Klicken um Anhänge zu sehen"
|
1263 |
+
|
1264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1265 |
+
msgid "Click here to go back"
|
1266 |
+
msgstr "Hier klicken um zurück zu gehen"
|
1267 |
+
|
1268 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1269 |
+
msgid "Back"
|
1270 |
+
msgstr "Zurück"
|
1271 |
+
|
1272 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1273 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1274 |
+
msgid "Current file"
|
1275 |
+
msgstr "Aktuelle Datei"
|
1276 |
+
|
1277 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:742
|
1278 |
+
msgid "Avatar"
|
1279 |
+
msgstr "Avatar"
|
1280 |
+
|
1281 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:799
|
1282 |
+
msgid "No results found!"
|
1283 |
+
msgstr "Keine Ergebnisse gefunden"
|
1284 |
+
|
1285 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:892
|
1286 |
+
msgid "«« First"
|
1287 |
+
msgstr "«« Erster"
|
1288 |
+
|
1289 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:893
|
1290 |
+
msgid "« Prev"
|
1291 |
+
msgstr "Letzter"
|
1292 |
+
|
1293 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:894
|
1294 |
+
msgid "Next » "
|
1295 |
+
msgstr "Nächster » "
|
1296 |
+
|
1297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
|
1298 |
+
msgid "Last »»"
|
1299 |
+
msgstr "Letzter »»"
|
1300 |
+
|
1301 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1247
|
1302 |
+
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1303 |
+
msgstr "Das reCaptcha wurde nicht erfolgreich eingegeben. Bitte gehen Sie zurück und probieren Sie es erneut."
|
1304 |
+
|
1305 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:9
|
1306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:10
|
1307 |
+
msgid "Activate/Deactivate Addons"
|
1308 |
+
msgstr "Aktivieren/Deaktivieren von Add-Ons"
|
1309 |
+
|
1310 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:14
|
1311 |
+
msgid "Name/Description"
|
1312 |
+
msgstr "Name/Beschreibung"
|
1313 |
+
|
1314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:15
|
1315 |
+
msgid "Status"
|
1316 |
+
msgstr "Status"
|
1317 |
+
|
1318 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:20
|
1319 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:82
|
1320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:83
|
1321 |
+
msgid "User-Listing"
|
1322 |
+
msgstr "User-Listing"
|
1323 |
+
|
1324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:22
|
1325 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:29
|
1326 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:36
|
1327 |
+
msgid "Active"
|
1328 |
+
msgstr "Aktiv"
|
1329 |
+
|
1330 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:23
|
1331 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:30
|
1332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:37
|
1333 |
+
msgid "Inactive"
|
1334 |
+
msgstr "Inaktiv"
|
1335 |
+
|
1336 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:27
|
1337 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:458
|
1338 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:459
|
1339 |
+
msgid "Custom Redirects"
|
1340 |
+
msgstr "Weiterleitungen"
|
1341 |
+
|
1342 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
1343 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
1344 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:602
|
1345 |
+
msgid "reCAPTCHA"
|
1346 |
+
msgstr "reCAPTCHA"
|
1347 |
+
|
1348 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:85
|
1349 |
+
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a (blank) page: "
|
1350 |
+
msgstr "Um eine Seite mit dem User-Listing zu erstellen, fügend Sie den folgenden Code in aine leere Seite ein."
|
1351 |
+
|
1352 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:86
|
1353 |
+
msgid "For instance, to create a userlisting shortcode listing only the editors and authors, visible to only the users currently logged in, you would use:"
|
1354 |
+
msgstr "Wenn Sie das User-Listing nur eingeloggten Benutzern anzeigen wollen, fügen Sie bitte folgenden Code ein:"
|
1355 |
+
|
1356 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:91
|
1357 |
+
msgid "These settings are applied to the front-end userlisting."
|
1358 |
+
msgstr "Diese Einstellungen werden im Front End des User-Listings angezeigt."
|
1359 |
+
|
1360 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:97
|
1361 |
+
msgid "Number of Users/Page: "
|
1362 |
+
msgstr "Anzahl Benutzer/Seite"
|
1363 |
+
|
1364 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:114
|
1365 |
+
msgid "Default Sorting Order: "
|
1366 |
+
msgstr "Standart Sortierfolge"
|
1367 |
+
|
1368 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:125
|
1369 |
+
msgid "\"All-Userlisting\" Template"
|
1370 |
+
msgstr "\"All-Userlisting\" Template"
|
1371 |
+
|
1372 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:127
|
1373 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:269
|
1374 |
+
msgid "With the userlisting templates you can customize the look, feel and information listed by the shortcode."
|
1375 |
+
msgstr "Mit dem User-Listing Template können Sie das Aussehen und die Informationen per Shortcode anzeigen lassen."
|
1376 |
+
|
1377 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:128
|
1378 |
+
msgid "The \"All Users Listing\" template is used to list all users. It's displayed on each page access where the shortcode is present."
|
1379 |
+
msgstr "Das \"All User Listing\"-Template zeigt die Liste aller Benutzer an. Es wird überall angezeigt wo der Shortcode implementiert ist"
|
1380 |
+
|
1381 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:132
|
1382 |
+
msgid "Avatar size: "
|
1383 |
+
msgstr "Avatar Größe"
|
1384 |
+
|
1385 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:148
|
1386 |
+
msgid "Insert \"Sort By\" Field:"
|
1387 |
+
msgstr "\"Sortieren nach\" Feld einfügen"
|
1388 |
+
|
1389 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:176
|
1390 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:275
|
1391 |
+
msgid "Insert \"User-Meta\" Field:"
|
1392 |
+
msgstr "\"User Meta\" Feld einfügen"
|
1393 |
+
|
1394 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:207
|
1395 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:313
|
1396 |
+
msgid "Insert Extra Functions:"
|
1397 |
+
msgstr "Extra Funktionen einfügen"
|
1398 |
+
|
1399 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:222
|
1400 |
+
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1401 |
+
msgstr "Zeige/Verberge Standart-\"All-User-Listing\"-Code"
|
1402 |
+
|
1403 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:224
|
1404 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:327
|
1405 |
+
msgid "If you wish to use a default userlisting, just copy the following code and paste it in the textarea below:"
|
1406 |
+
msgstr "Wenn Sie das Standart Userlisting nutzen möchten, kopieren Sie den Code in die untere Textfläche:"
|
1407 |
+
|
1408 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:267
|
1409 |
+
msgid "\"Single-Userlisting\" Template"
|
1410 |
+
msgstr "\"Single-Userlisting\"-Template"
|
1411 |
+
|
1412 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:270
|
1413 |
+
msgid "The \"Single User Listing\" template is used to list an individual user. It's displayed when clickin on the \"more info\" link."
|
1414 |
+
msgstr "Das \"Single-User-List\"-Template zeigt die Daten eines einzelnen Benutzers an. Es wird angezeigt sobald man auf \"Mehr Infos\" klickt."
|
1415 |
+
|
1416 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:325
|
1417 |
+
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1418 |
+
msgstr "Zeige/Verberge Standart-\"Single-User-Listing\"-Code"
|
1419 |
+
|
1420 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:463
|
1421 |
+
msgid "Redirects on custom page requests:"
|
1422 |
+
msgstr "Weiterleitung auf benutzerdefinierte Seiten:"
|
1423 |
+
|
1424 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:469
|
1425 |
+
msgid "Action"
|
1426 |
+
msgstr "Aktion"
|
1427 |
+
|
1428 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1429 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
|
1430 |
+
msgid "Redirect"
|
1431 |
+
msgstr "Weiterleiten"
|
1432 |
+
|
1433 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1434 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:517
|
1435 |
+
msgid "URL"
|
1436 |
+
msgstr "URL"
|
1437 |
+
|
1438 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:475
|
1439 |
+
msgid "After Registration:"
|
1440 |
+
msgstr "Nach Registrierung"
|
1441 |
+
|
1442 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1443 |
+
msgid "After Login (*):"
|
1444 |
+
msgstr "Nach Login"
|
1445 |
+
|
1446 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1447 |
+
msgid "Recover Password (**)"
|
1448 |
+
msgstr "Passowrt wiederherstellen"
|
1449 |
+
|
1450 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
1451 |
+
msgid "Does not."
|
1452 |
+
msgstr "Nicht"
|
1453 |
+
|
1454 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:504
|
1455 |
+
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1456 |
+
msgstr "Wenn dieses Feature aktiviert ist, wird der Benutzer bei den Seiten /\"Wordpress Passwort wiederherstellen/\"und /\"Passwort vergessen/\" auf die im Front-End eingestellte Seite weitergeleitet."
|
1457 |
+
|
1458 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:509
|
1459 |
+
msgid "Redirects on default WordPress page requests:"
|
1460 |
+
msgstr "Weiterleitung der Standart-Wordpress-Seite"
|
1461 |
+
|
1462 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
|
1463 |
+
msgid "Requested WP Page"
|
1464 |
+
msgstr "Angefragte WP Seite"
|
1465 |
+
|
1466 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:522
|
1467 |
+
msgid "Default WP Login Page(*)"
|
1468 |
+
msgstr "Standart WP Login Seite(*)"
|
1469 |
+
|
1470 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:534
|
1471 |
+
msgid "Default WP Logout Page(**)"
|
1472 |
+
msgstr "Standart WP Logout Seite (**)"
|
1473 |
+
|
1474 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:546
|
1475 |
+
msgid "Default WP Register Page"
|
1476 |
+
msgstr "Standart WP Registrierung"
|
1477 |
+
|
1478 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:558
|
1479 |
+
msgid "Default WP Dashboard (***)"
|
1480 |
+
msgstr "Standart WP Dashboard (***)"
|
1481 |
+
|
1482 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
|
1483 |
+
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1484 |
+
msgstr "Vor dem Login. Arbeitet am besten wenn es mit dem \"Nach dem Logout\" zusammen eingestellt ist."
|
1485 |
+
|
1486 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
|
1487 |
+
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1488 |
+
msgstr "Nach dem Logout. Arbeitet am besten wenn es mit dem \"Vor dem Login\" zusammen eingestellt ist."
|
1489 |
+
|
1490 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:571
|
1491 |
+
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1492 |
+
msgstr "Leitet jeden Berechtigungstufe weiter, ausser dem Admin."
|
1493 |
+
|
1494 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
|
1495 |
+
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1496 |
+
msgstr "Fügt einen reCAPTCHA auf der Registrierungsseite hinzu"
|
1497 |
+
|
1498 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:607
|
1499 |
+
msgid "For this you must get a public and private key from Google:"
|
1500 |
+
msgstr "Hierfür benötigen Sie einen privaten und öffentlichen Schlüssel von Google."
|
1501 |
+
|
1502 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
|
1503 |
+
msgid "Key"
|
1504 |
+
msgstr "Schlüssel"
|
1505 |
+
|
1506 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:614
|
1507 |
+
msgid "Code"
|
1508 |
+
msgstr "Code"
|
1509 |
+
|
1510 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:618
|
1511 |
+
msgid "Public Key:"
|
1512 |
+
msgstr "Öffentlicher Schlüssel"
|
1513 |
+
|
1514 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:622
|
1515 |
+
msgid "Private Key:"
|
1516 |
+
msgstr "Privater Schlüssel"
|
1517 |
+
|
1518 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:81
|
1519 |
+
msgid "Could not open socket!"
|
1520 |
+
msgstr "Sockel kann nicht geöffnet werden"
|
1521 |
+
|
1522 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:110
|
1523 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:156
|
1524 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
1525 |
+
msgstr "Um den reCAPTCHA zu nutzen benötigen Sie einen Schlüssel von"
|
1526 |
+
|
1527 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:161
|
1528 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
1529 |
+
msgstr "Aus Sicherheitsgründen müssen Sie die Remote-IP von reCAPTCHA nutzen."
|
1530 |
+
|
1531 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:220
|
1532 |
+
msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
|
1533 |
+
msgstr "Um reCAPTCHA Mailhide zu nutzen, muss das \"MCRYPT PHP Modul\" installiert sein."
|
1534 |
+
|
1535 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/recaptcha.library.php:237
|
1536 |
+
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1537 |
+
msgstr "Um reCAPTCHA Mailhide nutzen zu können, müssen Sie sich für einen öffentlichen und privaten Schlüssel registrieren. Hier:"
|
1538 |
+
|
1539 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:279
|
1540 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:422
|
1541 |
+
msgid "You must give your option a title."
|
1542 |
+
msgstr "Sie müssen der Option einen Titel geben."
|
1543 |
+
|
1544 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
|
1545 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
|
1546 |
+
msgid "You have entered an invalid meta-key format!"
|
1547 |
+
msgstr "Sie haben ein ungültiges Format des Meta-Keys eingegeben."
|
1548 |
+
|
1549 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
|
1550 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
|
1551 |
+
msgid "You must enter a valid meta-key."
|
1552 |
+
msgstr "Geben Sie einen gültigen Meta-Key ein."
|
1553 |
+
|
1554 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:293
|
1555 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
|
1556 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:440
|
1557 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:452
|
1558 |
+
msgid "That meta-key is already in use."
|
1559 |
+
msgstr "Der Meta-Key wird bereits verwendet."
|
1560 |
+
|
1561 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1562 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:460
|
1563 |
+
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1564 |
+
msgstr "Es ist bereits ein Avatar vorhanden."
|
1565 |
+
|
1566 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1567 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1568 |
+
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1569 |
+
msgstr "Es existiert bereits eine \"Agree to Terms and Conditions\"-Checkbox."
|
1570 |
+
|
1571 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1572 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1573 |
+
msgid "The textarea row value must be numeric."
|
1574 |
+
msgstr "Der Wert der Zeilenanzahl muss numerisch sein."
|
1575 |
+
|
1576 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
|
1577 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
|
1578 |
+
msgid "The maxlength attribute must be numeric."
|
1579 |
+
msgstr "Das \"maxlength\"-Attribut muss numerisch sein."
|
1580 |
+
|
1581 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1582 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1583 |
+
msgid "The value must be between 20 and 200!"
|
1584 |
+
msgstr "Der Wert muss zwischen 20 und 200 liegen."
|
1585 |
+
|
1586 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1587 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1588 |
+
msgid "The width component of the entered value must be numeric!"
|
1589 |
+
msgstr "Der Wert \"Breite\" muss numerisch sein."
|
1590 |
+
|
1591 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1592 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1593 |
+
msgid "The height component of the entered value must be numeric!"
|
1594 |
+
msgstr "Der Wert \"Höhe\" muss numerisch sein."
|
1595 |
+
|
1596 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
|
1597 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
|
1598 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1599 |
+
msgstr "Der Wert \"Breite\" muss zwischen 20 und 200 liegen."
|
1600 |
+
|
1601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
|
1602 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
|
1603 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1604 |
+
msgstr "Der Wert \"Höhe\" muss zwischen 20 und 200 liegen."
|
1605 |
+
|
1606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
|
1607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
|
1608 |
+
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1609 |
+
msgstr "Die eingegebenen Werte haben nicht das richtige Format (Breite/Höhe)"
|
1610 |
+
|
1611 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1612 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1613 |
+
msgid "The entered avatar size must be numeric!"
|
1614 |
+
msgstr "Die eingegebene Größe des Avatars muss numerisch sein"
|
1615 |
+
|
1616 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:383
|
1617 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:559
|
1618 |
+
msgid "There was an error, please try again."
|
1619 |
+
msgstr "Fehler, bitte versuchen Sie es erneut."
|
1620 |
+
|
1621 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
|
1622 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
|
1623 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
|
1624 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
|
1625 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
|
1626 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
|
1627 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
|
1628 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
|
1629 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
|
1630 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
|
1631 |
+
msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator)"
|
1632 |
+
msgstr "Das Feld konnte nicht aktualisiert werden da es leer ist."
|
1633 |
+
|
1634 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
|
1635 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
|
1636 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
|
1637 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
|
1638 |
+
msgid "max upload size"
|
1639 |
+
msgstr "Maximale Upload Größe"
|
1640 |
+
|
1641 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
|
1642 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
|
1643 |
+
msgid "Are you sure you want to delete this attachment?"
|
1644 |
+
msgstr "Sind Sie sicher dass Sie den Anhang löschen möchten?"
|
1645 |
+
|
1646 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1647 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
1649 |
+
msgid "Click to delete the current attachment"
|
1650 |
+
msgstr "Klicken Sie um den Anhang zu löschen."
|
1651 |
+
|
1652 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1653 |
+
msgid "The attachment can't be deleted (It was marked as required by the administrator)"
|
1654 |
+
msgstr "Der Anhang kann nicht gelöscht werden."
|
1655 |
+
|
1656 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1657 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1658 |
+
msgid "Current avatar"
|
1659 |
+
msgstr "Derzeitiger Avatar"
|
1660 |
+
|
1661 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1662 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1663 |
+
msgid "No uploaded avatar"
|
1664 |
+
msgstr "Kein hochgeladener Avatar"
|
1665 |
+
|
1666 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
|
1667 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
|
1668 |
+
msgid "Are you sure you want to delete this avatar?"
|
1669 |
+
msgstr "Sind Sie sicher dass Sie den Avatar löschen möchten?"
|
1670 |
+
|
1671 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
1672 |
+
msgid "The avatar image can't be deleted (It was marked as required by the administrator)."
|
1673 |
+
msgstr "Der Avatar kann nicht gelöscht werden."
|
1674 |
+
|
1675 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1676 |
+
msgid "Click to see the current avatar"
|
1677 |
+
msgstr "Klicken Sie um den aktuellen Avatar zu sehen."
|
1678 |
+
|
1679 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1680 |
+
msgid "Click to delete the avatar"
|
1681 |
+
msgstr "Klicken Sie um den Avatar zu löschen."
|
1682 |
+
|
1683 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:15
|
1684 |
+
msgid "The user-validation has failed - the avatar was not deleted!"
|
1685 |
+
msgstr "Die Benutzervalidierung ist fehlgeschlagen. Der Avatar wurde nicht gelöscht."
|
1686 |
+
|
1687 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:26
|
1688 |
+
msgid "The user-validation has failed - the attachment was not deleted!"
|
1689 |
+
msgstr "Die Benutzervalidierung ist fehlgeschlagen. Der Avatar wurde nicht gelöscht."
|
1690 |
+
|
1691 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1692 |
+
msgid "Do you want to"
|
1693 |
+
msgstr "Wollen Sie"
|
1694 |
+
|
1695 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1696 |
+
msgid "the current user?"
|
1697 |
+
msgstr "den aktuellen Benutzer?"
|
1698 |
+
|
1699 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1700 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1701 |
+
msgid "Your account on"
|
1702 |
+
msgstr "Ihr Profil auf"
|
1703 |
+
|
1704 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1705 |
+
msgid "has been approved!"
|
1706 |
+
msgstr "wurde genehmigt"
|
1707 |
+
|
1708 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:546
|
1709 |
+
msgid "An administrator has just approved your account on"
|
1710 |
+
msgstr "Ein Administrator hat Ihr Profil soeben genehmigt."
|
1711 |
+
|
1712 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1713 |
+
msgid "has been unapproved!"
|
1714 |
+
msgstr "wurde nicht genehmigt."
|
1715 |
+
|
1716 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:550
|
1717 |
+
msgid "An administrator has just unapproved your account on"
|
1718 |
+
msgstr "Ein Administrator hat Ihr Profil nicht genehmigt auf"
|
1719 |
+
|
1720 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:614
|
1721 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:660
|
1722 |
+
msgid "Approve"
|
1723 |
+
msgstr "Genehmigt"
|
1724 |
+
|
1725 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:615
|
1726 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:705
|
1727 |
+
msgid "Unapproved"
|
1728 |
+
msgstr "Nicht genehmigt"
|
1729 |
+
|
1730 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:626
|
1731 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:656
|
1732 |
+
msgid "Unapprove"
|
1733 |
+
msgstr "Nicht genehmigt"
|
1734 |
+
|
1735 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:627
|
1736 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:702
|
1737 |
+
msgid "Approved"
|
1738 |
+
msgstr "Genehmigt"
|
1739 |
+
|
1740 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:655
|
1741 |
+
msgid "unapprove"
|
1742 |
+
msgstr "nicht genehmigt"
|
1743 |
+
|
1744 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:659
|
1745 |
+
msgid "approve"
|
1746 |
+
msgstr "genehmigt"
|
1747 |
+
|
1748 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1749 |
+
msgid "Are you sure you want to"
|
1750 |
+
msgstr "Sind Sie sicher dass Sie"
|
1751 |
+
|
1752 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1753 |
+
msgid "this user?"
|
1754 |
+
msgstr "diesen Benutzer"
|
1755 |
+
|
1756 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:724
|
1757 |
+
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1758 |
+
msgstr "<strong>FEHLER</strong>: Das Profil muss durch einen Administrator genehmigt werden bevor Sie sich einloggen können."
|
1759 |
+
|
1760 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:819
|
1761 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1762 |
+
msgstr "Dieses Widget lässt ein Login-Formular in die Sidebar erscheinen."
|
1763 |
+
|
1764 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:824
|
1765 |
+
msgid "Profile Builder Login Widget"
|
1766 |
+
msgstr "Profile Login Builder Widget"
|
1767 |
+
|
1768 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:853
|
1769 |
+
msgid "Don't have an account?"
|
1770 |
+
msgstr "Sie haben noch kein Profil?"
|
1771 |
+
|
1772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:860
|
1773 |
+
msgid "Lost Your Password?"
|
1774 |
+
msgstr "Sie haben Ihr Passwort vergessen?"
|
1775 |
+
|
1776 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:889
|
1777 |
+
msgid "Login"
|
1778 |
+
msgstr "Einloggen"
|
1779 |
+
|
1780 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:898
|
1781 |
+
msgid "After login redirect URL:"
|
1782 |
+
msgstr "Weiterleitungs-URL nach dem Einloggen:"
|
1783 |
+
|
1784 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:903
|
1785 |
+
msgid "Register page URL (optional)"
|
1786 |
+
msgstr "URL zur Registrierungsseite:"
|
1787 |
+
|
1788 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:908
|
1789 |
+
msgid "Password Recovery page URL (optional)"
|
1790 |
+
msgstr "URL zur \"Passwort vergessen\"-Seite"
|
1791 |
+
|
1792 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:985
|
1793 |
+
#, php-format
|
1794 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please %sregister your copy%s of Profile Builder to receive access to automatic updates and support. Need a license key? %sPurchase one now%s %sDismiss%s"
|
1795 |
+
msgstr ""
|
1796 |
+
|
1797 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:987
|
1798 |
+
#, php-format
|
1799 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please %sRenew Your Licence%s to receive access to automatic updates and priority support. %sPurchase one now%s %sDismiss%s"
|
1800 |
+
msgstr ""
|
1801 |
+
|
translation/profilebuilder-en_US.mo
CHANGED
Binary file
|
translation/profilebuilder-en_US.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -99,8 +99,8 @@ msgid "shortcode."
|
|
99 |
msgstr ""
|
100 |
|
101 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
102 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
103 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
104 |
msgid "NOTE:"
|
105 |
msgstr ""
|
106 |
|
@@ -116,302 +116,310 @@ msgstr ""
|
|
116 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
120 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
121 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
122 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
123 |
msgid "General Settings"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
127 |
msgid "Stylesheet Used on the Front-End:"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
131 |
msgid "Default"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
135 |
msgid "White"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
139 |
msgid "Black"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
143 |
msgid "None"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
147 |
msgid "\"Email Confirmation\" Feature Activated:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
151 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
152 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
153 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
154 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
155 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
156 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
157 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
158 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
159 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
160 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
161 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
162 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
163 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
164 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
165 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
166 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
167 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
168 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
169 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
170 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
171 |
msgid "Yes"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
175 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
176 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
177 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
180 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
182 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
184 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
186 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
188 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
189 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
190 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
191 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
192 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
193 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
194 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
195 |
msgid "No"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
199 |
msgid "\"Admin Approval\" Feature Activated:"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
203 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
207 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
211 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
215 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
216 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
217 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
218 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
219 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
220 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
222 |
msgid "Save Changes"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
226 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
227 |
msgid "Show/Hide the Admin Bar on Front End"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
231 |
msgid "User-group"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
235 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
236 |
msgid "Visibility"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
240 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
241 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
242 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
243 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
244 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
245 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
247 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
248 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
249 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
250 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
252 |
msgid "Show"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
256 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
257 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
258 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
259 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
261 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
262 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
263 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
264 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
266 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
267 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
268 |
msgid "Hide"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
272 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
276 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
277 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
278 |
msgid "Default Profile Fields"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
282 |
msgid "Input Field Name"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
286 |
msgid "Required"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
290 |
msgid "Name:"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
294 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
295 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
296 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
297 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
298 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
299 |
msgid "Username"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
303 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
304 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
305 |
msgid "First Name"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
309 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
310 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
311 |
msgid "Last Name"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
315 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
316 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
317 |
msgid "Nickname"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
321 |
msgid "Display name publicly as..."
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
325 |
msgid "Contact Info:"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
329 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
330 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
331 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
332 |
msgid "E-mail"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
336 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
337 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
338 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
339 |
msgid "Website"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
343 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
344 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
345 |
msgid "AIM"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
349 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
350 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
351 |
msgid "Yahoo IM"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
355 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
356 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
357 |
msgid "Jabber / Google Talk"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
361 |
msgid "About Yourself:"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
365 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
366 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
367 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
368 |
msgid "Biographical Info"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
372 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
373 |
msgid "New Password"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
msgid "Basic Information"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
381 |
msgid "Show/Hide the Admin Bar on Front-end"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
385 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
386 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
387 |
msgid "Extra Profile Fields"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
391 |
msgid "Addons"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
395 |
msgid "Register Your Version"
|
396 |
msgstr ""
|
397 |
|
398 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
399 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
400 |
msgid "The information size you were trying to submit was larger than"
|
401 |
msgstr ""
|
402 |
|
403 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
404 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
405 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
406 |
msgstr ""
|
407 |
|
408 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
409 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
410 |
msgid "Since it was also larger than"
|
411 |
msgstr ""
|
412 |
|
413 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
414 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
415 |
msgid "no additional information is available."
|
416 |
msgstr ""
|
417 |
|
@@ -510,12 +518,12 @@ msgid "The avatar was"
|
|
510 |
msgstr ""
|
511 |
|
512 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
513 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
514 |
msgid "There was an error while trying to upload the following attachment(s)"
|
515 |
msgstr ""
|
516 |
|
517 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
518 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
519 |
msgid "Only files with the following extension(s) can be uploaded:"
|
520 |
msgstr ""
|
521 |
|
@@ -524,7 +532,7 @@ msgid "This file was"
|
|
524 |
msgstr ""
|
525 |
|
526 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
527 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
528 |
msgid "Name"
|
529 |
msgstr ""
|
530 |
|
@@ -563,7 +571,7 @@ msgid "Display name publicly as"
|
|
563 |
msgstr ""
|
564 |
|
565 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
566 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
567 |
msgid "Contact Info"
|
568 |
msgstr ""
|
569 |
|
@@ -572,14 +580,14 @@ msgid "(required)"
|
|
572 |
msgstr ""
|
573 |
|
574 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
575 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
576 |
msgid "About Yourself"
|
577 |
msgstr ""
|
578 |
|
579 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
580 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
581 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
582 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
583 |
msgid "Repeat Password"
|
584 |
msgstr ""
|
585 |
|
@@ -587,177 +595,180 @@ msgstr ""
|
|
587 |
msgid "Update"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
591 |
msgid "You are currently logged in as"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
595 |
msgid "Log out of this account"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
599 |
msgid "Log out"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
603 |
msgid "You have successfully logged in as"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
607 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
611 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
|
|
|
|
612 |
msgid "here"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
616 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
617 |
msgid "ERROR:"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
621 |
msgid "The username field is empty"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
625 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
626 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
627 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
628 |
msgid "Password"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
632 |
msgid "Log in"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
636 |
msgid "Remember me"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
640 |
msgid "Lost password?"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
644 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
645 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
646 |
msgid "ERROR"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
650 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
654 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
655 |
msgid "A password reset email has been sent to "
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
659 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
660 |
msgid "Following the link sent in the email address will reset the password."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
664 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
665 |
msgid "Someone requested that the password be reset for the following account: "
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
669 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
670 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
674 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
675 |
msgid "To reset your password, visit the following link:"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
679 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
680 |
msgid "Password Reset Feature from"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
684 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
685 |
msgid "There was an error while trying to send the activation link to "
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
689 |
msgid "The email address entered wasn't found in the database!"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
693 |
msgid "Please check that you entered the correct email address."
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
697 |
msgid "The username entered wasn't found in the database!"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
701 |
msgid "Please check that you entered the correct username."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
705 |
msgid "Your password has been successfully changed!"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
709 |
msgid "You have successfully reset your password to:"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
713 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
714 |
msgid "Password Successfully Reset for"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
718 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
719 |
msgid "from"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
723 |
msgid "has requested a password change via the password reset feature."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
727 |
msgid "His/her new password is:"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
731 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
732 |
msgid "The entered passwords don't match!"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
736 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
737 |
msgid "Reset Password"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
741 |
msgid "Invalid key!"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
745 |
msgid "Please enter your username or email address."
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
749 |
msgid "You will receive a link to create a new password via email."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
753 |
msgid "Username or E-mail"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
757 |
msgid "Get New Password"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
761 |
#, php-format
|
762 |
msgid ""
|
763 |
"To activate your user, please click the following link:\n"
|
@@ -768,218 +779,219 @@ msgid ""
|
|
768 |
"\n"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
772 |
#, php-format
|
773 |
msgid "[%1$s] Activate %2$s"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
777 |
msgid "Invalid activation key!"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
781 |
msgid "The user is already active!"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
785 |
msgid "Could not create user!"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
789 |
msgid "That username is already activated!"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
793 |
msgid "The user was successfully activated."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
797 |
msgid "There was an error while trying to activate the user."
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
801 |
msgid "New subscriber on"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
805 |
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!"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
809 |
msgid "A new subscriber has (been) registered!"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
813 |
msgid "A new account has been created for you."
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
817 |
msgid "Welcome to"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
821 |
msgid "Your username is:"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
825 |
msgid "and password:"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
829 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
833 |
msgid "The user was NOT created!"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
837 |
msgid "A username is required for registration."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
841 |
msgid "Sorry, that username already exists!"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
845 |
msgid "You must enter a valid email address."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
849 |
msgid "Sorry, that email address is already used!"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
853 |
msgid "You didn't complete one of the password-fields!"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
857 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
858 |
msgid "The account was NOT created!"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
862 |
msgid "You must agree to the terms and conditions before registering!"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
866 |
msgid "(Several required fields were left uncompleted)"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
870 |
msgid "This username is already reserved to be used soon."
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
874 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
875 |
msgid "Please try a different one!"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
879 |
msgid "This email address is already reserved to be used soon."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
883 |
msgid "You are logged in as"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
887 |
msgid "You don't need another account."
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
891 |
msgid "Log out of this account."
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
895 |
msgid "Logout"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
899 |
msgid "An email has been sent to "
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
903 |
msgid "with information on how to activate his/her account"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
907 |
msgid "A user account has been created for"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
911 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
915 |
msgid "An email has been sent to you with information on how to activate your account"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
919 |
msgid "Thank you for registering"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
923 |
msgid "An error occured while trying to send the notification email."
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
927 |
msgid "An email containing activation instructions was successfully sent."
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
931 |
msgid "An email containing the username and password was successfully sent."
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
935 |
msgid "Users can register themselves or you can manually create users here."
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
939 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
943 |
msgid "Only an administrator can add new users."
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
947 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
948 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
949 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
950 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
951 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
952 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
953 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
954 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
955 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
959 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
960 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
961 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
962 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
963 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
964 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
965 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
966 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
967 |
msgid "This field is marked as required by the administrator"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
971 |
msgid "Anti-Spam"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
975 |
msgid "Send these credentials via email."
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
979 |
msgid "Add User"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
983 |
msgid "Register"
|
984 |
msgstr ""
|
985 |
|
@@ -1129,36 +1141,40 @@ msgstr ""
|
|
1129 |
msgid "Save"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
|
1133 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
|
|
1134 |
msgid "Register your version of Profile Builder Pro"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1138 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1142 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1146 |
msgid "Serial Number:"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1150 |
msgid "The serial number was successfully validated!"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1154 |
-
msgid "The serial number couldn't be validated
|
|
|
|
|
|
|
|
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1158 |
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!"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1162 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1163 |
msgstr ""
|
1164 |
|
@@ -1174,107 +1190,107 @@ msgstr ""
|
|
1174 |
msgid "You need to be logged in to view the userlisting!"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1180 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1182 |
msgid "Search Users by All Fields"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1186 |
msgid "Leave Blank and Press Search to List All Users"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1190 |
msgid "Search"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1194 |
msgid "First/Lastname"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1198 |
msgid "Email"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1202 |
msgid "Sign-up Date"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1206 |
msgid "Firstname"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1210 |
msgid "Lastname"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1214 |
msgid "Display Name"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1218 |
msgid "Posts"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1222 |
msgid "Click here to see more information about this user"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1226 |
msgid "More..."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1230 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1231 |
msgid "No uploaded attachment"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1235 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1236 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1237 |
msgid "Click to see the current attachment"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1241 |
msgid "Click here to go back"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1245 |
msgid "Back"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1249 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1250 |
msgid "Current file"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1254 |
msgid "Avatar"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1258 |
msgid "No results found!"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1262 |
msgid "«« First"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1266 |
msgid "« Prev"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1270 |
msgid "Next » "
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1274 |
msgid "Last »»"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1278 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1279 |
msgstr ""
|
1280 |
|
@@ -1316,8 +1332,8 @@ msgid "Custom Redirects"
|
|
1316 |
msgstr ""
|
1317 |
|
1318 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
1319 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
|
1320 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
|
|
1321 |
msgid "reCAPTCHA"
|
1322 |
msgstr ""
|
1323 |
|
@@ -1402,12 +1418,12 @@ msgid "Action"
|
|
1402 |
msgstr ""
|
1403 |
|
1404 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1405 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1406 |
msgid "Redirect"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1410 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1411 |
msgid "URL"
|
1412 |
msgstr ""
|
1413 |
|
@@ -1416,74 +1432,78 @@ msgid "After Registration:"
|
|
1416 |
msgstr ""
|
1417 |
|
1418 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1419 |
-
msgid "After Login:"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1423 |
-
msgid "Recover Password (
|
1424 |
msgstr ""
|
1425 |
|
1426 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
|
|
|
|
|
|
|
|
1427 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1431 |
msgid "Redirects on default WordPress page requests:"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1435 |
msgid "Requested WP Page"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1439 |
msgid "Default WP Login Page(*)"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1443 |
msgid "Default WP Logout Page(**)"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1447 |
msgid "Default WP Register Page"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1451 |
msgid "Default WP Dashboard (***)"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1455 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1459 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1463 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1467 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1471 |
msgid "For this you must get a public and private key from Google:"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1475 |
msgid "Key"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1479 |
msgid "Code"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1483 |
msgid "Public Key:"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1487 |
msgid "Private Key:"
|
1488 |
msgstr ""
|
1489 |
|
@@ -1508,85 +1528,85 @@ msgstr ""
|
|
1508 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1512 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1513 |
msgid "You must give your option a title."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1517 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1518 |
msgid "You have entered an invalid meta-key format!"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1522 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1523 |
msgid "You must enter a valid meta-key."
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1527 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1528 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1529 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1530 |
msgid "That meta-key is already in use."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1534 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1535 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1539 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1540 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1544 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1545 |
msgid "The textarea row value must be numeric."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1549 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1550 |
msgid "The maxlength attribute must be numeric."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1554 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1555 |
msgid "The value must be between 20 and 200!"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1559 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1560 |
msgid "The width component of the entered value must be numeric!"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1564 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1565 |
msgid "The height component of the entered value must be numeric!"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1569 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1570 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1574 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1575 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1579 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1580 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1584 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1585 |
msgid "The entered avatar size must be numeric!"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1589 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1590 |
msgid "There was an error, please try again."
|
1591 |
msgstr ""
|
1592 |
|
@@ -1660,72 +1680,114 @@ msgstr ""
|
|
1660 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1664 |
msgid "Do you want to"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1668 |
msgid "the current user?"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1672 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1673 |
msgid "Your account on"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1677 |
msgid "has been approved!"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1681 |
msgid "An administrator has just approved your account on"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1685 |
msgid "has been unapproved!"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1689 |
msgid "An administrator has just unapproved your account on"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1693 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1694 |
msgid "Approve"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1698 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1699 |
msgid "Unapproved"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1703 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1704 |
msgid "Unapprove"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1708 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1709 |
msgid "Approved"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1713 |
msgid "unapprove"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1717 |
msgid "approve"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1721 |
msgid "Are you sure you want to"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1725 |
msgid "this user?"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1729 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1730 |
msgstr ""
|
1731 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-02 16:14+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-10-02 16:14+0200\n"
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
99 |
msgstr ""
|
100 |
|
101 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
102 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
|
103 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
104 |
msgid "NOTE:"
|
105 |
msgstr ""
|
106 |
|
116 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
|
120 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:69
|
121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
|
122 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
123 |
msgid "General Settings"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
|
127 |
msgid "Stylesheet Used on the Front-End:"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:72
|
131 |
msgid "Default"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
|
135 |
msgid "White"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:77
|
139 |
msgid "Black"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:81
|
143 |
msgid "None"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:87
|
147 |
msgid "\"Email Confirmation\" Feature Activated:"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
|
151 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:99
|
152 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
|
153 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
|
154 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:238
|
155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:251
|
156 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:264
|
157 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:283
|
158 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:296
|
159 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:312
|
160 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:325
|
161 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:338
|
162 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:357
|
163 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:371
|
164 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
165 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
166 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
167 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
|
168 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
|
169 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
|
170 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
|
171 |
msgid "Yes"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:90
|
175 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:100
|
176 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:213
|
177 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:226
|
178 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:239
|
179 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:252
|
180 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:265
|
181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:284
|
182 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:297
|
183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:313
|
184 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:326
|
185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:339
|
186 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:358
|
187 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:372
|
188 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
189 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
190 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
191 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:526
|
192 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:538
|
193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:550
|
194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:562
|
195 |
msgid "No"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
|
199 |
msgid "\"Admin Approval\" Feature Activated:"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
|
203 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
|
207 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
|
211 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:116
|
215 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
|
216 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:380
|
217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:256
|
218 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
219 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:576
|
221 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:630
|
222 |
msgid "Save Changes"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:134
|
226 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:135
|
227 |
msgid "Show/Hide the Admin Bar on Front End"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:139
|
231 |
msgid "User-group"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:140
|
235 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:193
|
236 |
msgid "Visibility"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:149
|
240 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
|
241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
|
242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
|
243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
|
244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
|
245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:279
|
246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:292
|
247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
|
248 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
|
249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:334
|
250 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:353
|
251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:367
|
252 |
msgid "Show"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:150
|
256 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:209
|
257 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:222
|
258 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:235
|
259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:248
|
260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:261
|
261 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:280
|
262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:293
|
263 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:309
|
264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:322
|
265 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:335
|
266 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:354
|
267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:368
|
268 |
msgid "Hide"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:162
|
272 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:187
|
276 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:188
|
277 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:61
|
278 |
msgid "Default Profile Fields"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
|
282 |
msgid "Input Field Name"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:194
|
286 |
msgid "Required"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:199
|
290 |
msgid "Name:"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:205
|
294 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
295 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:169
|
296 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
298 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:122
|
299 |
msgid "Username"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:218
|
303 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
304 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
305 |
msgid "First Name"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:231
|
309 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
310 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
311 |
msgid "Last Name"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:244
|
315 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
316 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
317 |
msgid "Nickname"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:257
|
321 |
msgid "Display name publicly as..."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:270
|
325 |
msgid "Contact Info:"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:276
|
329 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
330 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
331 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
332 |
msgid "E-mail"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:289
|
336 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
337 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
338 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:164
|
339 |
msgid "Website"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:305
|
343 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
344 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
345 |
msgid "AIM"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:318
|
349 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
350 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
351 |
msgid "Yahoo IM"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:331
|
355 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
356 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
357 |
msgid "Jabber / Google Talk"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:344
|
361 |
msgid "About Yourself:"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:350
|
365 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
366 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
367 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:170
|
368 |
msgid "Biographical Info"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:364
|
372 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
373 |
msgid "New Password"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:36
|
377 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive access to automatic updates and support. Need a license key? <a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>Purchase one now</a>"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:38
|
381 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</a> to receive access to automatic updates and priority support. <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>Purchase one now</a>"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
|
385 |
msgid "Basic Information"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
|
389 |
msgid "Show/Hide the Admin Bar on Front-end"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:67
|
393 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
394 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
395 |
msgid "Extra Profile Fields"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:70
|
399 |
msgid "Addons"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:73
|
403 |
msgid "Register Your Version"
|
404 |
msgstr ""
|
405 |
|
406 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
407 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
408 |
msgid "The information size you were trying to submit was larger than"
|
409 |
msgstr ""
|
410 |
|
411 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
412 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
413 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
414 |
msgstr ""
|
415 |
|
416 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
417 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
418 |
msgid "Since it was also larger than"
|
419 |
msgstr ""
|
420 |
|
421 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
422 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
423 |
msgid "no additional information is available."
|
424 |
msgstr ""
|
425 |
|
518 |
msgstr ""
|
519 |
|
520 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
521 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
522 |
msgid "There was an error while trying to upload the following attachment(s)"
|
523 |
msgstr ""
|
524 |
|
525 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
526 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
527 |
msgid "Only files with the following extension(s) can be uploaded:"
|
528 |
msgstr ""
|
529 |
|
532 |
msgstr ""
|
533 |
|
534 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
535 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
536 |
msgid "Name"
|
537 |
msgstr ""
|
538 |
|
571 |
msgstr ""
|
572 |
|
573 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
574 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
575 |
msgid "Contact Info"
|
576 |
msgstr ""
|
577 |
|
580 |
msgstr ""
|
581 |
|
582 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
583 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
584 |
msgid "About Yourself"
|
585 |
msgstr ""
|
586 |
|
587 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
588 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
589 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
590 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
591 |
msgid "Repeat Password"
|
592 |
msgstr ""
|
593 |
|
595 |
msgid "Update"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:61
|
599 |
msgid "You are currently logged in as"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
603 |
msgid "Log out of this account"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
607 |
msgid "Log out"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:80
|
611 |
msgid "You have successfully logged in as"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
615 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
616 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
620 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
621 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
622 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
623 |
msgid "here"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
627 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
628 |
msgid "ERROR:"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
632 |
msgid "The username field is empty"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:177
|
636 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
637 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
638 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
639 |
msgid "Password"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
643 |
msgid "Log in"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:189
|
647 |
msgid "Remember me"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:204
|
651 |
msgid "Lost password?"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
655 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
656 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
657 |
msgid "ERROR"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
661 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
665 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
666 |
msgid "A password reset email has been sent to "
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
670 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
671 |
msgid "Following the link sent in the email address will reset the password."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
675 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
676 |
msgid "Someone requested that the password be reset for the following account: "
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
680 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
681 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
685 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
686 |
msgid "To reset your password, visit the following link:"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
690 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
691 |
msgid "Password Reset Feature from"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
695 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
696 |
msgid "There was an error while trying to send the activation link to "
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
700 |
msgid "The email address entered wasn't found in the database!"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
704 |
msgid "Please check that you entered the correct email address."
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
708 |
msgid "The username entered wasn't found in the database!"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
712 |
msgid "Please check that you entered the correct username."
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
716 |
msgid "Your password has been successfully changed!"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
720 |
msgid "You have successfully reset your password to:"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
724 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
725 |
msgid "Password Successfully Reset for"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
729 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
730 |
msgid "from"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
734 |
msgid "has requested a password change via the password reset feature."
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
738 |
msgid "His/her new password is:"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
742 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
743 |
msgid "The entered passwords don't match!"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
748 |
msgid "Reset Password"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
752 |
msgid "Invalid key!"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
756 |
msgid "Please enter your username or email address."
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
760 |
msgid "You will receive a link to create a new password via email."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
764 |
msgid "Username or E-mail"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
768 |
msgid "Get New Password"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
772 |
#, php-format
|
773 |
msgid ""
|
774 |
"To activate your user, please click the following link:\n"
|
779 |
"\n"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
783 |
#, php-format
|
784 |
msgid "[%1$s] Activate %2$s"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
788 |
msgid "Invalid activation key!"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
792 |
msgid "The user is already active!"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
796 |
msgid "Could not create user!"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
800 |
msgid "That username is already activated!"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
804 |
msgid "The user was successfully activated."
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
808 |
msgid "There was an error while trying to activate the user."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
812 |
msgid "New subscriber on"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
816 |
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!"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
820 |
msgid "A new subscriber has (been) registered!"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
824 |
msgid "A new account has been created for you."
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
828 |
msgid "Welcome to"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
832 |
msgid "Your username is:"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
836 |
msgid "and password:"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
840 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
844 |
msgid "The user was NOT created!"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
848 |
msgid "A username is required for registration."
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
852 |
msgid "Sorry, that username already exists!"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
856 |
msgid "You must enter a valid email address."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
860 |
msgid "Sorry, that email address is already used!"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
864 |
msgid "You didn't complete one of the password-fields!"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
868 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
869 |
msgid "The account was NOT created!"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
873 |
msgid "You must agree to the terms and conditions before registering!"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
877 |
msgid "(Several required fields were left uncompleted)"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
881 |
msgid "This username is already reserved to be used soon."
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
885 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
886 |
msgid "Please try a different one!"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
890 |
msgid "This email address is already reserved to be used soon."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
894 |
msgid "You are logged in as"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
898 |
msgid "You don't need another account."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
902 |
msgid "Log out of this account."
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
906 |
msgid "Logout"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
910 |
msgid "An email has been sent to "
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
914 |
msgid "with information on how to activate his/her account"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1173
|
918 |
msgid "A user account has been created for"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
922 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
923 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
927 |
msgid "An email has been sent to you with information on how to activate your account"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
931 |
msgid "Thank you for registering"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
935 |
msgid "An error occured while trying to send the notification email."
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
939 |
msgid "An email containing activation instructions was successfully sent."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
943 |
msgid "An email containing the username and password was successfully sent."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
947 |
msgid "Users can register themselves or you can manually create users here."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
951 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
955 |
msgid "Only an administrator can add new users."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
959 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
960 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
961 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
962 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
963 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
964 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
965 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
966 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
967 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
971 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
972 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
973 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
974 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
975 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
976 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
977 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
978 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
979 |
msgid "This field is marked as required by the administrator"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
983 |
msgid "Anti-Spam"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
987 |
msgid "Send these credentials via email."
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
991 |
msgid "Add User"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
995 |
msgid "Register"
|
996 |
msgstr ""
|
997 |
|
1141 |
msgid "Save"
|
1142 |
msgstr ""
|
1143 |
|
|
|
1144 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
1145 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
|
1146 |
msgid "Register your version of Profile Builder Pro"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
|
1150 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
|
1154 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:234
|
1158 |
msgid "Serial Number:"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:238
|
1162 |
msgid "The serial number was successfully validated!"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:240
|
1166 |
+
msgid "The serial number entered couldn't be validated!"
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:242
|
1170 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:244
|
1174 |
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!"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:250
|
1178 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1179 |
msgstr ""
|
1180 |
|
1190 |
msgid "You need to be logged in to view the userlisting!"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:67
|
1194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:93
|
1195 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1196 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:909
|
1197 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:996
|
1198 |
msgid "Search Users by All Fields"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1202 |
msgid "Leave Blank and Press Search to List All Users"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:115
|
1206 |
msgid "Search"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
|
1210 |
msgid "First/Lastname"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:134
|
1214 |
msgid "Email"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:140
|
1218 |
msgid "Sign-up Date"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:146
|
1222 |
msgid "Firstname"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:152
|
1226 |
msgid "Lastname"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:158
|
1230 |
msgid "Display Name"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:176
|
1234 |
msgid "Posts"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1238 |
msgid "Click here to see more information about this user"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1242 |
msgid "More..."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:401
|
1246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1247 |
msgid "No uploaded attachment"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:403
|
1251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1252 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:744
|
1253 |
msgid "Click to see the current attachment"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1257 |
msgid "Click here to go back"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1261 |
msgid "Back"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1265 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1266 |
msgid "Current file"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:742
|
1270 |
msgid "Avatar"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:799
|
1274 |
msgid "No results found!"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:892
|
1278 |
msgid "«« First"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:893
|
1282 |
msgid "« Prev"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:894
|
1286 |
msgid "Next » "
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
|
1290 |
msgid "Last »»"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1247
|
1294 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1295 |
msgstr ""
|
1296 |
|
1332 |
msgstr ""
|
1333 |
|
1334 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
|
|
1335 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
1336 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:602
|
1337 |
msgid "reCAPTCHA"
|
1338 |
msgstr ""
|
1339 |
|
1418 |
msgstr ""
|
1419 |
|
1420 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1421 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
|
1422 |
msgid "Redirect"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1426 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:517
|
1427 |
msgid "URL"
|
1428 |
msgstr ""
|
1429 |
|
1432 |
msgstr ""
|
1433 |
|
1434 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1435 |
+
msgid "After Login (*):"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1439 |
+
msgid "Recover Password (**)"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
1443 |
+
msgid "Does not."
|
1444 |
+
msgstr ""
|
1445 |
+
|
1446 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:504
|
1447 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:509
|
1451 |
msgid "Redirects on default WordPress page requests:"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
|
1455 |
msgid "Requested WP Page"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:522
|
1459 |
msgid "Default WP Login Page(*)"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:534
|
1463 |
msgid "Default WP Logout Page(**)"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:546
|
1467 |
msgid "Default WP Register Page"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:558
|
1471 |
msgid "Default WP Dashboard (***)"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
|
1475 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
|
1479 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:571
|
1483 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
|
1487 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:607
|
1491 |
msgid "For this you must get a public and private key from Google:"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
|
1495 |
msgid "Key"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:614
|
1499 |
msgid "Code"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:618
|
1503 |
msgid "Public Key:"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:622
|
1507 |
msgid "Private Key:"
|
1508 |
msgstr ""
|
1509 |
|
1528 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:279
|
1532 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:422
|
1533 |
msgid "You must give your option a title."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
|
1537 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
|
1538 |
msgid "You have entered an invalid meta-key format!"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
|
1542 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
|
1543 |
msgid "You must enter a valid meta-key."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:293
|
1547 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
|
1548 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:440
|
1549 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:452
|
1550 |
msgid "That meta-key is already in use."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1554 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:460
|
1555 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1559 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1560 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1564 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1565 |
msgid "The textarea row value must be numeric."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
|
1569 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
|
1570 |
msgid "The maxlength attribute must be numeric."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1574 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1575 |
msgid "The value must be between 20 and 200!"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1579 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1580 |
msgid "The width component of the entered value must be numeric!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1584 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1585 |
msgid "The height component of the entered value must be numeric!"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
|
1589 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
|
1590 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
|
1594 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
|
1595 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
|
1599 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
|
1600 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1604 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1605 |
msgid "The entered avatar size must be numeric!"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:383
|
1609 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:559
|
1610 |
msgid "There was an error, please try again."
|
1611 |
msgstr ""
|
1612 |
|
1680 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1684 |
msgid "Do you want to"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1688 |
msgid "the current user?"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1692 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1693 |
msgid "Your account on"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1697 |
msgid "has been approved!"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:546
|
1701 |
msgid "An administrator has just approved your account on"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1705 |
msgid "has been unapproved!"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:550
|
1709 |
msgid "An administrator has just unapproved your account on"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:614
|
1713 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:660
|
1714 |
msgid "Approve"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:615
|
1718 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:705
|
1719 |
msgid "Unapproved"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:626
|
1723 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:656
|
1724 |
msgid "Unapprove"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:627
|
1728 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:702
|
1729 |
msgid "Approved"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:655
|
1733 |
msgid "unapprove"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:659
|
1737 |
msgid "approve"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1741 |
msgid "Are you sure you want to"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1745 |
msgid "this user?"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:724
|
1749 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:819
|
1753 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:824
|
1757 |
+
msgid "Profile Builder Login Widget"
|
1758 |
+
msgstr ""
|
1759 |
+
|
1760 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:853
|
1761 |
+
msgid "Don't have an account?"
|
1762 |
+
msgstr ""
|
1763 |
+
|
1764 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:860
|
1765 |
+
msgid "Lost Your Password?"
|
1766 |
+
msgstr ""
|
1767 |
+
|
1768 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:889
|
1769 |
+
msgid "Login"
|
1770 |
+
msgstr ""
|
1771 |
+
|
1772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:898
|
1773 |
+
msgid "After login redirect URL:"
|
1774 |
+
msgstr ""
|
1775 |
+
|
1776 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:903
|
1777 |
+
msgid "Register page URL (optional)"
|
1778 |
+
msgstr ""
|
1779 |
+
|
1780 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:908
|
1781 |
+
msgid "Password Recovery page URL (optional)"
|
1782 |
+
msgstr ""
|
1783 |
+
|
1784 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:985
|
1785 |
+
#, php-format
|
1786 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please %sregister your copy%s of Profile Builder to receive access to automatic updates and support. Need a license key? %sPurchase one now%s %sDismiss%s"
|
1787 |
+
msgstr ""
|
1788 |
+
|
1789 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:987
|
1790 |
+
#, php-format
|
1791 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please %sRenew Your Licence%s to receive access to automatic updates and priority support. %sPurchase one now%s %sDismiss%s"
|
1792 |
+
msgstr ""
|
1793 |
+
|
translation/profilebuilder-es_ES.mo
CHANGED
Binary file
|
translation/profilebuilder-es_ES.po
CHANGED
@@ -1,19 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
-
"X-Poedit-Basepath:
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-Country: SPAIN\n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
|
18 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
19 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
@@ -102,8 +100,8 @@ msgid "shortcode."
|
|
102 |
msgstr ""
|
103 |
|
104 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
105 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
106 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
107 |
msgid "NOTE:"
|
108 |
msgstr "OBSERVACION:"
|
109 |
|
@@ -119,305 +117,313 @@ msgstr "Los campos de información por defecto seguirán siendo visibles (y por
|
|
119 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
120 |
msgstr "desde la administración, mientras los campos personalizados sólo serán visibles en la parte pública."
|
121 |
|
122 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
123 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
124 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
125 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
126 |
msgid "General Settings"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
130 |
#, fuzzy
|
131 |
msgid "Stylesheet Used on the Front-End:"
|
132 |
msgstr "Hoja de estilos usada:"
|
133 |
|
134 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
135 |
msgid "Default"
|
136 |
msgstr "Predeterminada"
|
137 |
|
138 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
139 |
msgid "White"
|
140 |
msgstr "Blanco"
|
141 |
|
142 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
143 |
msgid "Black"
|
144 |
msgstr "Negro"
|
145 |
|
146 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
147 |
msgid "None"
|
148 |
msgstr "Ninguna"
|
149 |
|
150 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
151 |
msgid "\"Email Confirmation\" Feature Activated:"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
155 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
156 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
157 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
158 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
159 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
160 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
161 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
162 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
163 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
164 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
165 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
166 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
167 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
169 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
170 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
171 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
172 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
173 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
174 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
175 |
msgid "Yes"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
180 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
182 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
184 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
186 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
188 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
189 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
190 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
191 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
193 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
194 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
196 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
197 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
198 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
199 |
#, fuzzy
|
200 |
msgid "No"
|
201 |
msgstr "Ninguna"
|
202 |
|
203 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
204 |
msgid "\"Admin Approval\" Feature Activated:"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
208 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
212 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
216 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
220 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
222 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
223 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
224 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
226 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
227 |
msgid "Save Changes"
|
228 |
msgstr "Guardar cambios"
|
229 |
|
230 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
231 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
232 |
msgid "Show/Hide the Admin Bar on Front End"
|
233 |
msgstr "Mostrar/Ocultar la bbara de administración en la parte pública"
|
234 |
|
235 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
236 |
msgid "User-group"
|
237 |
msgstr "Perfiles"
|
238 |
|
239 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
240 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
241 |
msgid "Visibility"
|
242 |
msgstr "Visibilidad"
|
243 |
|
244 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
245 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
247 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
248 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
249 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
250 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
252 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
253 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
254 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
256 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
257 |
msgid "Show"
|
258 |
msgstr "Mostrar"
|
259 |
|
260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
261 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
262 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
263 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
264 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
266 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
267 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
268 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
269 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
270 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
271 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
272 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
273 |
msgid "Hide"
|
274 |
msgstr "Ocultar"
|
275 |
|
276 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
277 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
281 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
282 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
283 |
msgid "Default Profile Fields"
|
284 |
msgstr "Campos de perfil predeterminado"
|
285 |
|
286 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
287 |
msgid "Input Field Name"
|
288 |
msgstr "Etiqueta de campo"
|
289 |
|
290 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
291 |
#, fuzzy
|
292 |
msgid "Required"
|
293 |
msgstr "(obligatorio)"
|
294 |
|
295 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
296 |
msgid "Name:"
|
297 |
msgstr "Nombre:"
|
298 |
|
299 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
300 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
301 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
302 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
304 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
305 |
msgid "Username"
|
306 |
msgstr "Nombre de usuario"
|
307 |
|
308 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
309 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
310 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
311 |
msgid "First Name"
|
312 |
msgstr "Nombre:"
|
313 |
|
314 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
315 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
316 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
317 |
msgid "Last Name"
|
318 |
msgstr "Apellidos"
|
319 |
|
320 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
321 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
322 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
323 |
msgid "Nickname"
|
324 |
msgstr "Alias"
|
325 |
|
326 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
327 |
msgid "Display name publicly as..."
|
328 |
msgstr "Mostrar publicamente como..."
|
329 |
|
330 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
331 |
msgid "Contact Info:"
|
332 |
msgstr "Información de contacto:"
|
333 |
|
334 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
335 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
336 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
337 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
338 |
msgid "E-mail"
|
339 |
msgstr "Email"
|
340 |
|
341 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
342 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
343 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
344 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
345 |
msgid "Website"
|
346 |
msgstr "Sitio web"
|
347 |
|
348 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
349 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
350 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
351 |
msgid "AIM"
|
352 |
msgstr "AIM"
|
353 |
|
354 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
355 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
356 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
357 |
msgid "Yahoo IM"
|
358 |
msgstr "Yahoo IM"
|
359 |
|
360 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
361 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
362 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
363 |
msgid "Jabber / Google Talk"
|
364 |
msgstr "Jabber / Google Talk"
|
365 |
|
366 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
367 |
msgid "About Yourself:"
|
368 |
msgstr "Acerca de ti:"
|
369 |
|
370 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
371 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
372 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
373 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
374 |
msgid "Biographical Info"
|
375 |
msgstr "Información biográfica"
|
376 |
|
377 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
378 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
379 |
msgid "New Password"
|
380 |
msgstr "Nueva contraseña"
|
381 |
|
382 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
383 |
msgid "Basic Information"
|
384 |
msgstr "Información básica"
|
385 |
|
386 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
387 |
msgid "Show/Hide the Admin Bar on Front-end"
|
388 |
msgstr "Mostrar/ocultar la barra de administración en el Front-end"
|
389 |
|
390 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
391 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
392 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
393 |
msgid "Extra Profile Fields"
|
394 |
msgstr "Campos extra de perfil"
|
395 |
|
396 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
397 |
msgid "Addons"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
401 |
msgid "Register Your Version"
|
402 |
msgstr "Registra tu versión"
|
403 |
|
404 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
405 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
406 |
msgid "The information size you were trying to submit was larger than"
|
407 |
msgstr ""
|
408 |
|
409 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
410 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
411 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
412 |
msgstr ""
|
413 |
|
414 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
415 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
416 |
msgid "Since it was also larger than"
|
417 |
msgstr ""
|
418 |
|
419 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
420 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
421 |
msgid "no additional information is available."
|
422 |
msgstr ""
|
423 |
|
@@ -528,13 +534,13 @@ msgid "The avatar was"
|
|
528 |
msgstr ""
|
529 |
|
530 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
531 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
532 |
#, fuzzy
|
533 |
msgid "There was an error while trying to upload the following attachment(s)"
|
534 |
msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
535 |
|
536 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
537 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
538 |
msgid "Only files with the following extension(s) can be uploaded:"
|
539 |
msgstr ""
|
540 |
|
@@ -543,7 +549,7 @@ msgid "This file was"
|
|
543 |
msgstr ""
|
544 |
|
545 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
546 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
547 |
msgid "Name"
|
548 |
msgstr "Nombre"
|
549 |
|
@@ -583,7 +589,7 @@ msgid "Display name publicly as"
|
|
583 |
msgstr "Mostrar nombre públicamente como"
|
584 |
|
585 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
586 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
587 |
msgid "Contact Info"
|
588 |
msgstr "Información de contacto"
|
589 |
|
@@ -592,14 +598,14 @@ msgid "(required)"
|
|
592 |
msgstr "(obligatorio)"
|
593 |
|
594 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
595 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
596 |
msgid "About Yourself"
|
597 |
msgstr "Acerca de ti"
|
598 |
|
599 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
600 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
601 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
602 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
603 |
msgid "Repeat Password"
|
604 |
msgstr "Repetir contraseña"
|
605 |
|
@@ -607,188 +613,191 @@ msgstr "Repetir contraseña"
|
|
607 |
msgid "Update"
|
608 |
msgstr "Actualizar"
|
609 |
|
610 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
611 |
#, fuzzy
|
612 |
msgid "You are currently logged in as"
|
613 |
msgstr "Actualmente estás conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
614 |
|
615 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
616 |
msgid "Log out of this account"
|
617 |
msgstr "Cerrar sesión"
|
618 |
|
619 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
620 |
#, fuzzy
|
621 |
msgid "Log out"
|
622 |
msgstr "Salir »"
|
623 |
|
624 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
625 |
#, fuzzy
|
626 |
msgid "You have successfully logged in as"
|
627 |
msgstr "Te has conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
628 |
|
629 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
630 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
634 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
|
|
|
|
635 |
msgid "here"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
639 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
640 |
msgid "ERROR:"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
644 |
msgid "The username field is empty"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
648 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
650 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
651 |
msgid "Password"
|
652 |
msgstr "Contraseña"
|
653 |
|
654 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
655 |
msgid "Log in"
|
656 |
msgstr "Acceder"
|
657 |
|
658 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
659 |
msgid "Remember me"
|
660 |
msgstr "Recordarme"
|
661 |
|
662 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
663 |
msgid "Lost password?"
|
664 |
msgstr "¿has olvidado la contraseña?"
|
665 |
|
666 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
667 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
668 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
669 |
msgid "ERROR"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
673 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
677 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
678 |
msgid "A password reset email has been sent to "
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
682 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
683 |
msgid "Following the link sent in the email address will reset the password."
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
687 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
688 |
msgid "Someone requested that the password be reset for the following account: "
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
692 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
693 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
697 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
698 |
msgid "To reset your password, visit the following link:"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
702 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
703 |
msgid "Password Reset Feature from"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
707 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
708 |
#, fuzzy
|
709 |
msgid "There was an error while trying to send the activation link to "
|
710 |
msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
711 |
|
712 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
713 |
#, fuzzy
|
714 |
msgid "The email address entered wasn't found in the database!"
|
715 |
msgstr "La dirección de email no es válida.<br/>La dirección de email era"
|
716 |
|
717 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
718 |
msgid "Please check that you entered the correct email address."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
722 |
msgid "The username entered wasn't found in the database!"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
726 |
msgid "Please check that you entered the correct username."
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
730 |
#, fuzzy
|
731 |
msgid "Your password has been successfully changed!"
|
732 |
msgstr "Los cambios se han guardado correctamente."
|
733 |
|
734 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
735 |
msgid "You have successfully reset your password to:"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
739 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
740 |
#, fuzzy
|
741 |
msgid "Password Successfully Reset for"
|
742 |
msgstr "\" ha sido eliminado."
|
743 |
|
744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
745 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
746 |
msgid "from"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
750 |
msgid "has requested a password change via the password reset feature."
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
754 |
msgid "His/her new password is:"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
758 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
759 |
msgid "The entered passwords don't match!"
|
760 |
msgstr "Las contraseñas introducidas no coinciden"
|
761 |
|
762 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
763 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
764 |
#, fuzzy
|
765 |
msgid "Reset Password"
|
766 |
msgstr "Repetir contraseña"
|
767 |
|
768 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
769 |
msgid "Invalid key!"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
773 |
#, fuzzy
|
774 |
msgid "Please enter your username or email address."
|
775 |
msgstr "Has de introducir una dirección de Email válida."
|
776 |
|
777 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
778 |
msgid "You will receive a link to create a new password via email."
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
782 |
#, fuzzy
|
783 |
msgid "Username or E-mail"
|
784 |
msgstr "Nombre de usuario"
|
785 |
|
786 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
787 |
#, fuzzy
|
788 |
msgid "Get New Password"
|
789 |
msgstr "Nueva contraseña"
|
790 |
|
791 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
792 |
#, php-format
|
793 |
msgid ""
|
794 |
"To activate your user, please click the following link:\n"
|
@@ -799,230 +808,231 @@ msgid ""
|
|
799 |
"\n"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
803 |
#, php-format
|
804 |
msgid "[%1$s] Activate %2$s"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
808 |
msgid "Invalid activation key!"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
812 |
msgid "The user is already active!"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
816 |
msgid "Could not create user!"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
820 |
#, fuzzy
|
821 |
msgid "That username is already activated!"
|
822 |
msgstr "Lo sentimos, ese nombre de usuario ya existe"
|
823 |
|
824 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
825 |
#, fuzzy
|
826 |
msgid "The user was successfully activated."
|
827 |
msgstr "El avatar ha sido eliminado."
|
828 |
|
829 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
830 |
#, fuzzy
|
831 |
msgid "There was an error while trying to activate the user."
|
832 |
msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
833 |
|
834 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
835 |
msgid "New subscriber on"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
839 |
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!"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
843 |
msgid "A new subscriber has (been) registered!"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
847 |
#, fuzzy
|
848 |
msgid "A new account has been created for you."
|
849 |
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
850 |
|
851 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
852 |
msgid "Welcome to"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
856 |
msgid "Your username is:"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
860 |
#, fuzzy
|
861 |
msgid "and password:"
|
862 |
msgstr "Contraseña"
|
863 |
|
864 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
865 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
869 |
msgid "The user was NOT created!"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
873 |
msgid "A username is required for registration."
|
874 |
msgstr "Es obligatorio un nombre de usuario para la inscripción."
|
875 |
|
876 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
877 |
msgid "Sorry, that username already exists!"
|
878 |
msgstr "Lo sentimos, ese nombre de usuario ya existe"
|
879 |
|
880 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
881 |
msgid "You must enter a valid email address."
|
882 |
msgstr "Has de introducir una dirección de Email válida."
|
883 |
|
884 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
885 |
msgid "Sorry, that email address is already used!"
|
886 |
msgstr "Lo sentimos, esa dirección ya está en uso"
|
887 |
|
888 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
889 |
msgid "You didn't complete one of the password-fields!"
|
890 |
msgstr "No has completado una de los campos de contraseña"
|
891 |
|
892 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
893 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
894 |
#, fuzzy
|
895 |
msgid "The account was NOT created!"
|
896 |
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
897 |
|
898 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
899 |
msgid "You must agree to the terms and conditions before registering!"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
903 |
msgid "(Several required fields were left uncompleted)"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
907 |
msgid "This username is already reserved to be used soon."
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
911 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
912 |
msgid "Please try a different one!"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
916 |
#, fuzzy
|
917 |
msgid "This email address is already reserved to be used soon."
|
918 |
msgstr "Lo sentimos, esa dirección ya está en uso"
|
919 |
|
920 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
921 |
msgid "You are logged in as"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
925 |
msgid "You don't need another account."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
929 |
#, fuzzy
|
930 |
msgid "Log out of this account."
|
931 |
msgstr "Cerrar sesión"
|
932 |
|
933 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
934 |
#, fuzzy
|
935 |
msgid "Logout"
|
936 |
msgstr "Salir »"
|
937 |
|
938 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
939 |
msgid "An email has been sent to "
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
943 |
msgid "with information on how to activate his/her account"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
947 |
#, fuzzy
|
948 |
msgid "A user account has been created for"
|
949 |
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
950 |
|
951 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
952 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
956 |
msgid "An email has been sent to you with information on how to activate your account"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
960 |
#, fuzzy
|
961 |
msgid "Thank you for registering"
|
962 |
msgstr "Gracias por registrarte, %1$s."
|
963 |
|
964 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
965 |
msgid "An error occured while trying to send the notification email."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
969 |
msgid "An email containing activation instructions was successfully sent."
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
973 |
msgid "An email containing the username and password was successfully sent."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
977 |
msgid "Users can register themselves or you can manually create users here."
|
978 |
msgstr "Los usuarios pueden registrarse ellos mismos o puedes crear manualmente los usuarios desde aquí."
|
979 |
|
980 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
981 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
982 |
msgstr "Los usuarios no pueden registrarse ellos mismos, pero puedes crear manualmente los usuarios desde aquí."
|
983 |
|
984 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
985 |
msgid "Only an administrator can add new users."
|
986 |
msgstr "Sólo el administrador puede añadir nuevos usuarios."
|
987 |
|
988 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
989 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
990 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
991 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
992 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
993 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
994 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
995 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
996 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
997 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1001 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1002 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1003 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1004 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1005 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1006 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1007 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1008 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1009 |
msgid "This field is marked as required by the administrator"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1013 |
msgid "Anti-Spam"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1017 |
#, fuzzy
|
1018 |
msgid "Send these credentials via email."
|
1019 |
msgstr "Enviar las credenciales por correo electrónico."
|
1020 |
|
1021 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1022 |
msgid "Add User"
|
1023 |
msgstr "Añadir usuario"
|
1024 |
|
1025 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1026 |
msgid "Register"
|
1027 |
msgstr "Registrar"
|
1028 |
|
@@ -1176,37 +1186,42 @@ msgstr ""
|
|
1176 |
msgid "Save"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
|
1180 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
|
|
1181 |
msgid "Register your version of Profile Builder Pro"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1185 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1189 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1193 |
msgid "Serial Number:"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1197 |
#, fuzzy
|
1198 |
msgid "The serial number was successfully validated!"
|
1199 |
msgstr "El avatar ha sido eliminado."
|
1200 |
|
1201 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1202 |
-
|
|
|
|
|
|
|
|
|
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1206 |
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!"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1210 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1211 |
msgstr ""
|
1212 |
|
@@ -1223,116 +1238,116 @@ msgstr ""
|
|
1223 |
msgid "You need to be logged in to view the userlisting!"
|
1224 |
msgstr "Debes estar conectado para editar tu perfil."
|
1225 |
|
1226 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1227 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1228 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1230 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1231 |
msgid "Search Users by All Fields"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1235 |
msgid "Leave Blank and Press Search to List All Users"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1239 |
msgid "Search"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1243 |
#, fuzzy
|
1244 |
msgid "First/Lastname"
|
1245 |
msgstr "Nombre:"
|
1246 |
|
1247 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1248 |
#, fuzzy
|
1249 |
msgid "Email"
|
1250 |
msgstr "Email"
|
1251 |
|
1252 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1253 |
msgid "Sign-up Date"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1257 |
#, fuzzy
|
1258 |
msgid "Firstname"
|
1259 |
msgstr "Nombre:"
|
1260 |
|
1261 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1262 |
#, fuzzy
|
1263 |
msgid "Lastname"
|
1264 |
msgstr "Apellidos"
|
1265 |
|
1266 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1267 |
#, fuzzy
|
1268 |
msgid "Display Name"
|
1269 |
msgstr "Nombre:"
|
1270 |
|
1271 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1272 |
msgid "Posts"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1276 |
msgid "Click here to see more information about this user"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1280 |
msgid "More..."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1284 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1285 |
#, fuzzy
|
1286 |
msgid "No uploaded attachment"
|
1287 |
msgstr "El archivo adjunto \""
|
1288 |
|
1289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1290 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1291 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1292 |
msgid "Click to see the current attachment"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1296 |
msgid "Click here to go back"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1300 |
#, fuzzy
|
1301 |
msgid "Back"
|
1302 |
msgstr "Negro"
|
1303 |
|
1304 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1305 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1306 |
msgid "Current file"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1310 |
msgid "Avatar"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1314 |
msgid "No results found!"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1318 |
msgid "«« First"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1322 |
msgid "« Prev"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1326 |
#, fuzzy
|
1327 |
msgid "Next » "
|
1328 |
msgstr "Salir »"
|
1329 |
|
1330 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1331 |
#, fuzzy
|
1332 |
msgid "Last »»"
|
1333 |
msgstr "Salir »"
|
1334 |
|
1335 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1336 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1337 |
msgstr ""
|
1338 |
|
@@ -1374,8 +1389,8 @@ msgid "Custom Redirects"
|
|
1374 |
msgstr ""
|
1375 |
|
1376 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
1377 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
|
1378 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
|
|
1379 |
msgid "reCAPTCHA"
|
1380 |
msgstr ""
|
1381 |
|
@@ -1460,12 +1475,12 @@ msgid "Action"
|
|
1460 |
msgstr ""
|
1461 |
|
1462 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1463 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1464 |
msgid "Redirect"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1468 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1469 |
msgid "URL"
|
1470 |
msgstr ""
|
1471 |
|
@@ -1474,75 +1489,79 @@ msgid "After Registration:"
|
|
1474 |
msgstr ""
|
1475 |
|
1476 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1477 |
-
msgid "After Login:"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1481 |
#, fuzzy
|
1482 |
-
msgid "Recover Password (
|
1483 |
msgstr "Repetir contraseña"
|
1484 |
|
1485 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
|
|
|
|
|
|
|
|
1486 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1490 |
msgid "Redirects on default WordPress page requests:"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1494 |
msgid "Requested WP Page"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1498 |
msgid "Default WP Login Page(*)"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1502 |
msgid "Default WP Logout Page(**)"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1506 |
msgid "Default WP Register Page"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1510 |
msgid "Default WP Dashboard (***)"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1514 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1518 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1522 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1526 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1530 |
msgid "For this you must get a public and private key from Google:"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1534 |
msgid "Key"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1538 |
msgid "Code"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1542 |
msgid "Public Key:"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1546 |
msgid "Private Key:"
|
1547 |
msgstr ""
|
1548 |
|
@@ -1567,87 +1586,87 @@ msgstr ""
|
|
1567 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1571 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1572 |
#, fuzzy
|
1573 |
msgid "You must give your option a title."
|
1574 |
msgstr "Debes estar conectado para editar tu perfil."
|
1575 |
|
1576 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1577 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1578 |
msgid "You have entered an invalid meta-key format!"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1582 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1583 |
#, fuzzy
|
1584 |
msgid "You must enter a valid meta-key."
|
1585 |
msgstr "Has de introducir una dirección de Email válida."
|
1586 |
|
1587 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1588 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1589 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1590 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1591 |
msgid "That meta-key is already in use."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1595 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1596 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1600 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1601 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1605 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1606 |
msgid "The textarea row value must be numeric."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1610 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1611 |
msgid "The maxlength attribute must be numeric."
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1615 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1616 |
msgid "The value must be between 20 and 200!"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1620 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1621 |
msgid "The width component of the entered value must be numeric!"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1625 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1626 |
msgid "The height component of the entered value must be numeric!"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1630 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1631 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1635 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1636 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1640 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1641 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1645 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1646 |
msgid "The entered avatar size must be numeric!"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1650 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1651 |
msgid "There was an error, please try again."
|
1652 |
msgstr ""
|
1653 |
|
@@ -1721,75 +1740,120 @@ msgstr ""
|
|
1721 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1725 |
msgid "Do you want to"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1729 |
msgid "the current user?"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1733 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1734 |
msgid "Your account on"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1738 |
msgid "has been approved!"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1742 |
msgid "An administrator has just approved your account on"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1746 |
msgid "has been unapproved!"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1750 |
msgid "An administrator has just unapproved your account on"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1754 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1755 |
msgid "Approve"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1759 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1760 |
msgid "Unapproved"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1764 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1765 |
msgid "Unapprove"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1769 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1770 |
msgid "Approved"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1774 |
msgid "unapprove"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1778 |
msgid "approve"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1782 |
msgid "Are you sure you want to"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1786 |
msgid "this user?"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1790 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1791 |
msgstr ""
|
1792 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1793 |
#~ msgid "Plugin Layout"
|
1794 |
#~ msgstr "Diseño del Plugin"
|
1795 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-02 16:15+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-10-02 16:15+0200\n"
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
+
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabi\\Desktop\\test\\profile-builder-pro\n"
|
|
|
|
|
15 |
|
16 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
100 |
msgstr ""
|
101 |
|
102 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
103 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
|
104 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
105 |
msgid "NOTE:"
|
106 |
msgstr "OBSERVACION:"
|
107 |
|
117 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
118 |
msgstr "desde la administración, mientras los campos personalizados sólo serán visibles en la parte pública."
|
119 |
|
120 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
|
121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:69
|
122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
|
123 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
124 |
msgid "General Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
|
128 |
#, fuzzy
|
129 |
msgid "Stylesheet Used on the Front-End:"
|
130 |
msgstr "Hoja de estilos usada:"
|
131 |
|
132 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:72
|
133 |
msgid "Default"
|
134 |
msgstr "Predeterminada"
|
135 |
|
136 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
|
137 |
msgid "White"
|
138 |
msgstr "Blanco"
|
139 |
|
140 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:77
|
141 |
msgid "Black"
|
142 |
msgstr "Negro"
|
143 |
|
144 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:81
|
145 |
msgid "None"
|
146 |
msgstr "Ninguna"
|
147 |
|
148 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:87
|
149 |
msgid "\"Email Confirmation\" Feature Activated:"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
|
153 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:99
|
154 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
|
155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
|
156 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:238
|
157 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:251
|
158 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:264
|
159 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:283
|
160 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:296
|
161 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:312
|
162 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:325
|
163 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:338
|
164 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:357
|
165 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:371
|
166 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
167 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
169 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
|
170 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
|
171 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
|
172 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
|
173 |
msgid "Yes"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:90
|
177 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:100
|
178 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:213
|
179 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:226
|
180 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:239
|
181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:252
|
182 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:265
|
183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:284
|
184 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:297
|
185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:313
|
186 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:326
|
187 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:339
|
188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:358
|
189 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:372
|
190 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
191 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:526
|
194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:538
|
195 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:550
|
196 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:562
|
197 |
#, fuzzy
|
198 |
msgid "No"
|
199 |
msgstr "Ninguna"
|
200 |
|
201 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
|
202 |
msgid "\"Admin Approval\" Feature Activated:"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
|
206 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
|
210 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
|
214 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:116
|
218 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
|
219 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:380
|
220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:256
|
221 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
222 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
223 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:576
|
224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:630
|
225 |
msgid "Save Changes"
|
226 |
msgstr "Guardar cambios"
|
227 |
|
228 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:134
|
229 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:135
|
230 |
msgid "Show/Hide the Admin Bar on Front End"
|
231 |
msgstr "Mostrar/Ocultar la bbara de administración en la parte pública"
|
232 |
|
233 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:139
|
234 |
msgid "User-group"
|
235 |
msgstr "Perfiles"
|
236 |
|
237 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:140
|
238 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:193
|
239 |
msgid "Visibility"
|
240 |
msgstr "Visibilidad"
|
241 |
|
242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:149
|
243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
|
244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
|
245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
|
246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
|
247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
|
248 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:279
|
249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:292
|
250 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
|
251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
|
252 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:334
|
253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:353
|
254 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:367
|
255 |
msgid "Show"
|
256 |
msgstr "Mostrar"
|
257 |
|
258 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:150
|
259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:209
|
260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:222
|
261 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:235
|
262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:248
|
263 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:261
|
264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:280
|
265 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:293
|
266 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:309
|
267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:322
|
268 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:335
|
269 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:354
|
270 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:368
|
271 |
msgid "Hide"
|
272 |
msgstr "Ocultar"
|
273 |
|
274 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:162
|
275 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:187
|
279 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:188
|
280 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:61
|
281 |
msgid "Default Profile Fields"
|
282 |
msgstr "Campos de perfil predeterminado"
|
283 |
|
284 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
|
285 |
msgid "Input Field Name"
|
286 |
msgstr "Etiqueta de campo"
|
287 |
|
288 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:194
|
289 |
#, fuzzy
|
290 |
msgid "Required"
|
291 |
msgstr "(obligatorio)"
|
292 |
|
293 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:199
|
294 |
msgid "Name:"
|
295 |
msgstr "Nombre:"
|
296 |
|
297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:205
|
298 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:169
|
300 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
301 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
302 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:122
|
303 |
msgid "Username"
|
304 |
msgstr "Nombre de usuario"
|
305 |
|
306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:218
|
307 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
308 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
309 |
msgid "First Name"
|
310 |
msgstr "Nombre:"
|
311 |
|
312 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:231
|
313 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
315 |
msgid "Last Name"
|
316 |
msgstr "Apellidos"
|
317 |
|
318 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:244
|
319 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
321 |
msgid "Nickname"
|
322 |
msgstr "Alias"
|
323 |
|
324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:257
|
325 |
msgid "Display name publicly as..."
|
326 |
msgstr "Mostrar publicamente como..."
|
327 |
|
328 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:270
|
329 |
msgid "Contact Info:"
|
330 |
msgstr "Información de contacto:"
|
331 |
|
332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:276
|
333 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
334 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
335 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
336 |
msgid "E-mail"
|
337 |
msgstr "Email"
|
338 |
|
339 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:289
|
340 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
341 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
342 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:164
|
343 |
msgid "Website"
|
344 |
msgstr "Sitio web"
|
345 |
|
346 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:305
|
347 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
348 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
349 |
msgid "AIM"
|
350 |
msgstr "AIM"
|
351 |
|
352 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:318
|
353 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
354 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
355 |
msgid "Yahoo IM"
|
356 |
msgstr "Yahoo IM"
|
357 |
|
358 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:331
|
359 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
360 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
361 |
msgid "Jabber / Google Talk"
|
362 |
msgstr "Jabber / Google Talk"
|
363 |
|
364 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:344
|
365 |
msgid "About Yourself:"
|
366 |
msgstr "Acerca de ti:"
|
367 |
|
368 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:350
|
369 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
370 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
371 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:170
|
372 |
msgid "Biographical Info"
|
373 |
msgstr "Información biográfica"
|
374 |
|
375 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:364
|
376 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
377 |
msgid "New Password"
|
378 |
msgstr "Nueva contraseña"
|
379 |
|
380 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:36
|
381 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive access to automatic updates and support. Need a license key? <a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>Purchase one now</a>"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:38
|
385 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</a> to receive access to automatic updates and priority support. <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>Purchase one now</a>"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
|
389 |
msgid "Basic Information"
|
390 |
msgstr "Información básica"
|
391 |
|
392 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
|
393 |
msgid "Show/Hide the Admin Bar on Front-end"
|
394 |
msgstr "Mostrar/ocultar la barra de administración en el Front-end"
|
395 |
|
396 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:67
|
397 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
398 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
399 |
msgid "Extra Profile Fields"
|
400 |
msgstr "Campos extra de perfil"
|
401 |
|
402 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:70
|
403 |
msgid "Addons"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:73
|
407 |
msgid "Register Your Version"
|
408 |
msgstr "Registra tu versión"
|
409 |
|
410 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
411 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
412 |
msgid "The information size you were trying to submit was larger than"
|
413 |
msgstr ""
|
414 |
|
415 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
416 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
417 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
418 |
msgstr ""
|
419 |
|
420 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
421 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
422 |
msgid "Since it was also larger than"
|
423 |
msgstr ""
|
424 |
|
425 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
426 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
427 |
msgid "no additional information is available."
|
428 |
msgstr ""
|
429 |
|
534 |
msgstr ""
|
535 |
|
536 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
537 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
538 |
#, fuzzy
|
539 |
msgid "There was an error while trying to upload the following attachment(s)"
|
540 |
msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
541 |
|
542 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
543 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
544 |
msgid "Only files with the following extension(s) can be uploaded:"
|
545 |
msgstr ""
|
546 |
|
549 |
msgstr ""
|
550 |
|
551 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
553 |
msgid "Name"
|
554 |
msgstr "Nombre"
|
555 |
|
589 |
msgstr "Mostrar nombre públicamente como"
|
590 |
|
591 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
592 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
593 |
msgid "Contact Info"
|
594 |
msgstr "Información de contacto"
|
595 |
|
598 |
msgstr "(obligatorio)"
|
599 |
|
600 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
602 |
msgid "About Yourself"
|
603 |
msgstr "Acerca de ti"
|
604 |
|
605 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
609 |
msgid "Repeat Password"
|
610 |
msgstr "Repetir contraseña"
|
611 |
|
613 |
msgid "Update"
|
614 |
msgstr "Actualizar"
|
615 |
|
616 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:61
|
617 |
#, fuzzy
|
618 |
msgid "You are currently logged in as"
|
619 |
msgstr "Actualmente estás conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
620 |
|
621 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
622 |
msgid "Log out of this account"
|
623 |
msgstr "Cerrar sesión"
|
624 |
|
625 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
626 |
#, fuzzy
|
627 |
msgid "Log out"
|
628 |
msgstr "Salir »"
|
629 |
|
630 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:80
|
631 |
#, fuzzy
|
632 |
msgid "You have successfully logged in as"
|
633 |
msgstr "Te has conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
634 |
|
635 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
636 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
637 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
641 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
642 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
644 |
msgid "here"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
649 |
msgid "ERROR:"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
653 |
msgid "The username field is empty"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:177
|
657 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
659 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
660 |
msgid "Password"
|
661 |
msgstr "Contraseña"
|
662 |
|
663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
664 |
msgid "Log in"
|
665 |
msgstr "Acceder"
|
666 |
|
667 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:189
|
668 |
msgid "Remember me"
|
669 |
msgstr "Recordarme"
|
670 |
|
671 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:204
|
672 |
msgid "Lost password?"
|
673 |
msgstr "¿has olvidado la contraseña?"
|
674 |
|
675 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
676 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
677 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
678 |
msgid "ERROR"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
682 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
686 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
687 |
msgid "A password reset email has been sent to "
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
691 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
692 |
msgid "Following the link sent in the email address will reset the password."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
696 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
697 |
msgid "Someone requested that the password be reset for the following account: "
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
701 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
702 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
706 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
707 |
msgid "To reset your password, visit the following link:"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
711 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
712 |
msgid "Password Reset Feature from"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
716 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
717 |
#, fuzzy
|
718 |
msgid "There was an error while trying to send the activation link to "
|
719 |
msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
720 |
|
721 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
722 |
#, fuzzy
|
723 |
msgid "The email address entered wasn't found in the database!"
|
724 |
msgstr "La dirección de email no es válida.<br/>La dirección de email era"
|
725 |
|
726 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
727 |
msgid "Please check that you entered the correct email address."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
731 |
msgid "The username entered wasn't found in the database!"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
735 |
msgid "Please check that you entered the correct username."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
739 |
#, fuzzy
|
740 |
msgid "Your password has been successfully changed!"
|
741 |
msgstr "Los cambios se han guardado correctamente."
|
742 |
|
743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
744 |
msgid "You have successfully reset your password to:"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
748 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
749 |
#, fuzzy
|
750 |
msgid "Password Successfully Reset for"
|
751 |
msgstr "\" ha sido eliminado."
|
752 |
|
753 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
754 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
755 |
msgid "from"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
759 |
msgid "has requested a password change via the password reset feature."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
763 |
msgid "His/her new password is:"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
767 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
768 |
msgid "The entered passwords don't match!"
|
769 |
msgstr "Las contraseñas introducidas no coinciden"
|
770 |
|
771 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
773 |
#, fuzzy
|
774 |
msgid "Reset Password"
|
775 |
msgstr "Repetir contraseña"
|
776 |
|
777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
778 |
msgid "Invalid key!"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
782 |
#, fuzzy
|
783 |
msgid "Please enter your username or email address."
|
784 |
msgstr "Has de introducir una dirección de Email válida."
|
785 |
|
786 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
787 |
msgid "You will receive a link to create a new password via email."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
791 |
#, fuzzy
|
792 |
msgid "Username or E-mail"
|
793 |
msgstr "Nombre de usuario"
|
794 |
|
795 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
796 |
#, fuzzy
|
797 |
msgid "Get New Password"
|
798 |
msgstr "Nueva contraseña"
|
799 |
|
800 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
801 |
#, php-format
|
802 |
msgid ""
|
803 |
"To activate your user, please click the following link:\n"
|
808 |
"\n"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
812 |
#, php-format
|
813 |
msgid "[%1$s] Activate %2$s"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
817 |
msgid "Invalid activation key!"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
821 |
msgid "The user is already active!"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
825 |
msgid "Could not create user!"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
829 |
#, fuzzy
|
830 |
msgid "That username is already activated!"
|
831 |
msgstr "Lo sentimos, ese nombre de usuario ya existe"
|
832 |
|
833 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
834 |
#, fuzzy
|
835 |
msgid "The user was successfully activated."
|
836 |
msgstr "El avatar ha sido eliminado."
|
837 |
|
838 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
839 |
#, fuzzy
|
840 |
msgid "There was an error while trying to activate the user."
|
841 |
msgstr "Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
842 |
|
843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
844 |
msgid "New subscriber on"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
848 |
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!"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
852 |
msgid "A new subscriber has (been) registered!"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
856 |
#, fuzzy
|
857 |
msgid "A new account has been created for you."
|
858 |
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
859 |
|
860 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
861 |
msgid "Welcome to"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
865 |
msgid "Your username is:"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
869 |
#, fuzzy
|
870 |
msgid "and password:"
|
871 |
msgstr "Contraseña"
|
872 |
|
873 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
874 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
878 |
msgid "The user was NOT created!"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
882 |
msgid "A username is required for registration."
|
883 |
msgstr "Es obligatorio un nombre de usuario para la inscripción."
|
884 |
|
885 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
886 |
msgid "Sorry, that username already exists!"
|
887 |
msgstr "Lo sentimos, ese nombre de usuario ya existe"
|
888 |
|
889 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
890 |
msgid "You must enter a valid email address."
|
891 |
msgstr "Has de introducir una dirección de Email válida."
|
892 |
|
893 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
894 |
msgid "Sorry, that email address is already used!"
|
895 |
msgstr "Lo sentimos, esa dirección ya está en uso"
|
896 |
|
897 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
898 |
msgid "You didn't complete one of the password-fields!"
|
899 |
msgstr "No has completado una de los campos de contraseña"
|
900 |
|
901 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
902 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
903 |
#, fuzzy
|
904 |
msgid "The account was NOT created!"
|
905 |
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
906 |
|
907 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
908 |
msgid "You must agree to the terms and conditions before registering!"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
912 |
msgid "(Several required fields were left uncompleted)"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
916 |
msgid "This username is already reserved to be used soon."
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
920 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
921 |
msgid "Please try a different one!"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
925 |
#, fuzzy
|
926 |
msgid "This email address is already reserved to be used soon."
|
927 |
msgstr "Lo sentimos, esa dirección ya está en uso"
|
928 |
|
929 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
930 |
msgid "You are logged in as"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
934 |
msgid "You don't need another account."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
938 |
#, fuzzy
|
939 |
msgid "Log out of this account."
|
940 |
msgstr "Cerrar sesión"
|
941 |
|
942 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
943 |
#, fuzzy
|
944 |
msgid "Logout"
|
945 |
msgstr "Salir »"
|
946 |
|
947 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
948 |
msgid "An email has been sent to "
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
952 |
msgid "with information on how to activate his/her account"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1173
|
956 |
#, fuzzy
|
957 |
msgid "A user account has been created for"
|
958 |
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
959 |
|
960 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
961 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
962 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
966 |
msgid "An email has been sent to you with information on how to activate your account"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
970 |
#, fuzzy
|
971 |
msgid "Thank you for registering"
|
972 |
msgstr "Gracias por registrarte, %1$s."
|
973 |
|
974 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
975 |
msgid "An error occured while trying to send the notification email."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
979 |
msgid "An email containing activation instructions was successfully sent."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
983 |
msgid "An email containing the username and password was successfully sent."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
987 |
msgid "Users can register themselves or you can manually create users here."
|
988 |
msgstr "Los usuarios pueden registrarse ellos mismos o puedes crear manualmente los usuarios desde aquí."
|
989 |
|
990 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
991 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
992 |
msgstr "Los usuarios no pueden registrarse ellos mismos, pero puedes crear manualmente los usuarios desde aquí."
|
993 |
|
994 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
995 |
msgid "Only an administrator can add new users."
|
996 |
msgstr "Sólo el administrador puede añadir nuevos usuarios."
|
997 |
|
998 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
999 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
1000 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
1001 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
1002 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
1003 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
1004 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
1005 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
1006 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
1007 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
1011 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
1012 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
1013 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
1014 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
1015 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
1016 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
1017 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
1018 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
1019 |
msgid "This field is marked as required by the administrator"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
1023 |
msgid "Anti-Spam"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
1027 |
#, fuzzy
|
1028 |
msgid "Send these credentials via email."
|
1029 |
msgstr "Enviar las credenciales por correo electrónico."
|
1030 |
|
1031 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1032 |
msgid "Add User"
|
1033 |
msgstr "Añadir usuario"
|
1034 |
|
1035 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1036 |
msgid "Register"
|
1037 |
msgstr "Registrar"
|
1038 |
|
1186 |
msgid "Save"
|
1187 |
msgstr ""
|
1188 |
|
|
|
1189 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
1190 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
|
1191 |
msgid "Register your version of Profile Builder Pro"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
|
1195 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
|
1199 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:234
|
1203 |
msgid "Serial Number:"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:238
|
1207 |
#, fuzzy
|
1208 |
msgid "The serial number was successfully validated!"
|
1209 |
msgstr "El avatar ha sido eliminado."
|
1210 |
|
1211 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:240
|
1212 |
+
#, fuzzy
|
1213 |
+
msgid "The serial number entered couldn't be validated!"
|
1214 |
+
msgstr "El avatar ha sido eliminado."
|
1215 |
+
|
1216 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:242
|
1217 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:244
|
1221 |
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!"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:250
|
1225 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1226 |
msgstr ""
|
1227 |
|
1238 |
msgid "You need to be logged in to view the userlisting!"
|
1239 |
msgstr "Debes estar conectado para editar tu perfil."
|
1240 |
|
1241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:67
|
1242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:93
|
1243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:909
|
1245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:996
|
1246 |
msgid "Search Users by All Fields"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1250 |
msgid "Leave Blank and Press Search to List All Users"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:115
|
1254 |
msgid "Search"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
|
1258 |
#, fuzzy
|
1259 |
msgid "First/Lastname"
|
1260 |
msgstr "Nombre:"
|
1261 |
|
1262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:134
|
1263 |
#, fuzzy
|
1264 |
msgid "Email"
|
1265 |
msgstr "Email"
|
1266 |
|
1267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:140
|
1268 |
msgid "Sign-up Date"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:146
|
1272 |
#, fuzzy
|
1273 |
msgid "Firstname"
|
1274 |
msgstr "Nombre:"
|
1275 |
|
1276 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:152
|
1277 |
#, fuzzy
|
1278 |
msgid "Lastname"
|
1279 |
msgstr "Apellidos"
|
1280 |
|
1281 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:158
|
1282 |
#, fuzzy
|
1283 |
msgid "Display Name"
|
1284 |
msgstr "Nombre:"
|
1285 |
|
1286 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:176
|
1287 |
msgid "Posts"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1291 |
msgid "Click here to see more information about this user"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1295 |
msgid "More..."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:401
|
1299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1300 |
#, fuzzy
|
1301 |
msgid "No uploaded attachment"
|
1302 |
msgstr "El archivo adjunto \""
|
1303 |
|
1304 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:403
|
1305 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:744
|
1307 |
msgid "Click to see the current attachment"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1311 |
msgid "Click here to go back"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1315 |
#, fuzzy
|
1316 |
msgid "Back"
|
1317 |
msgstr "Negro"
|
1318 |
|
1319 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1321 |
msgid "Current file"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:742
|
1325 |
msgid "Avatar"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:799
|
1329 |
msgid "No results found!"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:892
|
1333 |
msgid "«« First"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:893
|
1337 |
msgid "« Prev"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:894
|
1341 |
#, fuzzy
|
1342 |
msgid "Next » "
|
1343 |
msgstr "Salir »"
|
1344 |
|
1345 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
|
1346 |
#, fuzzy
|
1347 |
msgid "Last »»"
|
1348 |
msgstr "Salir »"
|
1349 |
|
1350 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1247
|
1351 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1352 |
msgstr ""
|
1353 |
|
1389 |
msgstr ""
|
1390 |
|
1391 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
|
|
1392 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
1393 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:602
|
1394 |
msgid "reCAPTCHA"
|
1395 |
msgstr ""
|
1396 |
|
1475 |
msgstr ""
|
1476 |
|
1477 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1478 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
|
1479 |
msgid "Redirect"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1483 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:517
|
1484 |
msgid "URL"
|
1485 |
msgstr ""
|
1486 |
|
1489 |
msgstr ""
|
1490 |
|
1491 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1492 |
+
msgid "After Login (*):"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1496 |
#, fuzzy
|
1497 |
+
msgid "Recover Password (**)"
|
1498 |
msgstr "Repetir contraseña"
|
1499 |
|
1500 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
1501 |
+
msgid "Does not."
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:504
|
1505 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:509
|
1509 |
msgid "Redirects on default WordPress page requests:"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
|
1513 |
msgid "Requested WP Page"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:522
|
1517 |
msgid "Default WP Login Page(*)"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:534
|
1521 |
msgid "Default WP Logout Page(**)"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:546
|
1525 |
msgid "Default WP Register Page"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:558
|
1529 |
msgid "Default WP Dashboard (***)"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
|
1533 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
|
1537 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:571
|
1541 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
|
1545 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:607
|
1549 |
msgid "For this you must get a public and private key from Google:"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
|
1553 |
msgid "Key"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:614
|
1557 |
msgid "Code"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:618
|
1561 |
msgid "Public Key:"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:622
|
1565 |
msgid "Private Key:"
|
1566 |
msgstr ""
|
1567 |
|
1586 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:279
|
1590 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:422
|
1591 |
#, fuzzy
|
1592 |
msgid "You must give your option a title."
|
1593 |
msgstr "Debes estar conectado para editar tu perfil."
|
1594 |
|
1595 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
|
1596 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
|
1597 |
msgid "You have entered an invalid meta-key format!"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
|
1601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
|
1602 |
#, fuzzy
|
1603 |
msgid "You must enter a valid meta-key."
|
1604 |
msgstr "Has de introducir una dirección de Email válida."
|
1605 |
|
1606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:293
|
1607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
|
1608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:440
|
1609 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:452
|
1610 |
msgid "That meta-key is already in use."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1614 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:460
|
1615 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1619 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1620 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1624 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1625 |
msgid "The textarea row value must be numeric."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
|
1629 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
|
1630 |
msgid "The maxlength attribute must be numeric."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1634 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1635 |
msgid "The value must be between 20 and 200!"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1639 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1640 |
msgid "The width component of the entered value must be numeric!"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1644 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1645 |
msgid "The height component of the entered value must be numeric!"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
|
1649 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
|
1650 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
|
1654 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
|
1655 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
|
1659 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
|
1660 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1664 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1665 |
msgid "The entered avatar size must be numeric!"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:383
|
1669 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:559
|
1670 |
msgid "There was an error, please try again."
|
1671 |
msgstr ""
|
1672 |
|
1740 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1744 |
msgid "Do you want to"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1748 |
msgid "the current user?"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1752 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1753 |
msgid "Your account on"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1757 |
msgid "has been approved!"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:546
|
1761 |
msgid "An administrator has just approved your account on"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1765 |
msgid "has been unapproved!"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:550
|
1769 |
msgid "An administrator has just unapproved your account on"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:614
|
1773 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:660
|
1774 |
msgid "Approve"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:615
|
1778 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:705
|
1779 |
msgid "Unapproved"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:626
|
1783 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:656
|
1784 |
msgid "Unapprove"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:627
|
1788 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:702
|
1789 |
msgid "Approved"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:655
|
1793 |
msgid "unapprove"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:659
|
1797 |
msgid "approve"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1801 |
msgid "Are you sure you want to"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1805 |
msgid "this user?"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:724
|
1809 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:819
|
1813 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:824
|
1817 |
+
#, fuzzy
|
1818 |
+
msgid "Profile Builder Login Widget"
|
1819 |
+
msgstr "Generador de perfiles"
|
1820 |
+
|
1821 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:853
|
1822 |
+
msgid "Don't have an account?"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:860
|
1826 |
+
#, fuzzy
|
1827 |
+
msgid "Lost Your Password?"
|
1828 |
+
msgstr "¿has olvidado la contraseña?"
|
1829 |
+
|
1830 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:889
|
1831 |
+
#, fuzzy
|
1832 |
+
msgid "Login"
|
1833 |
+
msgstr "Acceder"
|
1834 |
+
|
1835 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:898
|
1836 |
+
msgid "After login redirect URL:"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:903
|
1840 |
+
msgid "Register page URL (optional)"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:908
|
1844 |
+
msgid "Password Recovery page URL (optional)"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:985
|
1848 |
+
#, php-format
|
1849 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please %sregister your copy%s of Profile Builder to receive access to automatic updates and support. Need a license key? %sPurchase one now%s %sDismiss%s"
|
1850 |
+
msgstr ""
|
1851 |
+
|
1852 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:987
|
1853 |
+
#, php-format
|
1854 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please %sRenew Your Licence%s to receive access to automatic updates and priority support. %sPurchase one now%s %sDismiss%s"
|
1855 |
+
msgstr ""
|
1856 |
+
|
1857 |
#~ msgid "Plugin Layout"
|
1858 |
#~ msgstr "Diseño del Plugin"
|
1859 |
|
translation/profilebuilder-fr_FR.mo
CHANGED
Binary file
|
translation/profilebuilder-fr_FR.po
CHANGED
@@ -1,18 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
-
"X-Poedit-Basepath:
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
|
16 |
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
18 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
@@ -101,8 +100,8 @@ msgid "shortcode."
|
|
101 |
msgstr ""
|
102 |
|
103 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
104 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
105 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
106 |
msgid "NOTE:"
|
107 |
msgstr "NOTE:"
|
108 |
|
@@ -118,305 +117,313 @@ msgstr "Les champs d'informations par défaut seront encore visibles (donc modif
|
|
118 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
119 |
msgstr "depuis le Back-End, alors que les champs personnalisés ne seront visibles que sur le Front-End. "
|
120 |
|
121 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
122 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
123 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
124 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
125 |
msgid "General Settings"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
129 |
#, fuzzy
|
130 |
msgid "Stylesheet Used on the Front-End:"
|
131 |
msgstr "Feuille de style utilisée"
|
132 |
|
133 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
134 |
msgid "Default"
|
135 |
msgstr "Défaut"
|
136 |
|
137 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
138 |
msgid "White"
|
139 |
msgstr "Blanc"
|
140 |
|
141 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
142 |
msgid "Black"
|
143 |
msgstr "Noir"
|
144 |
|
145 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
146 |
msgid "None"
|
147 |
msgstr "Aucune"
|
148 |
|
149 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
150 |
msgid "\"Email Confirmation\" Feature Activated:"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
154 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
155 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
156 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
157 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
158 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
159 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
160 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
161 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
162 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
163 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
164 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
165 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
166 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
167 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
169 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
170 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
171 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
172 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
173 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
174 |
msgid "Yes"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
180 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
182 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
184 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
186 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
188 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
189 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
190 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
191 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
193 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
194 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
196 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
197 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
198 |
#, fuzzy
|
199 |
msgid "No"
|
200 |
msgstr "Aucune"
|
201 |
|
202 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
203 |
msgid "\"Admin Approval\" Feature Activated:"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
207 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
211 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
215 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
219 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
220 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
222 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
223 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
224 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
226 |
msgid "Save Changes"
|
227 |
msgstr "Sauvegarder les modifications"
|
228 |
|
229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
230 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
231 |
msgid "Show/Hide the Admin Bar on Front End"
|
232 |
msgstr "Afficher/Masquer la Barre d'Administration sur le Front-End"
|
233 |
|
234 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
235 |
msgid "User-group"
|
236 |
msgstr "Groupe d'Utilisateurs"
|
237 |
|
238 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
239 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
240 |
msgid "Visibility"
|
241 |
msgstr "Visibilité"
|
242 |
|
243 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
244 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
245 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
247 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
248 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
249 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
250 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
252 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
253 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
254 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
256 |
msgid "Show"
|
257 |
msgstr "Afficher"
|
258 |
|
259 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
261 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
262 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
263 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
264 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
266 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
267 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
268 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
269 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
270 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
271 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
272 |
msgid "Hide"
|
273 |
msgstr "Masquer"
|
274 |
|
275 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
276 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
280 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
281 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
282 |
msgid "Default Profile Fields"
|
283 |
msgstr "Champs de Profil par Défaut"
|
284 |
|
285 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
286 |
msgid "Input Field Name"
|
287 |
msgstr "Nom du Champ de Saisie"
|
288 |
|
289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
290 |
#, fuzzy
|
291 |
msgid "Required"
|
292 |
msgstr "(requis)"
|
293 |
|
294 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
295 |
msgid "Name:"
|
296 |
msgstr "Nom:"
|
297 |
|
298 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
299 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
300 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
301 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
302 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
304 |
msgid "Username"
|
305 |
msgstr "Nom d'Utilisateur"
|
306 |
|
307 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
308 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
309 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
310 |
msgid "First Name"
|
311 |
msgstr "Prénom"
|
312 |
|
313 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
314 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
315 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
316 |
msgid "Last Name"
|
317 |
msgstr "Nom"
|
318 |
|
319 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
320 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
321 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
322 |
msgid "Nickname"
|
323 |
msgstr "Pseudo"
|
324 |
|
325 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
326 |
msgid "Display name publicly as..."
|
327 |
msgstr "Apparaître publiquement en tant que..."
|
328 |
|
329 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
330 |
msgid "Contact Info:"
|
331 |
msgstr "Infos de Contact"
|
332 |
|
333 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
334 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
335 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
336 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
337 |
msgid "E-mail"
|
338 |
msgstr "Courriel"
|
339 |
|
340 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
341 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
342 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
343 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
344 |
msgid "Website"
|
345 |
msgstr "Site Web"
|
346 |
|
347 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
348 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
349 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
350 |
msgid "AIM"
|
351 |
msgstr "AIM"
|
352 |
|
353 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
354 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
355 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
356 |
msgid "Yahoo IM"
|
357 |
msgstr "Yahoo IM"
|
358 |
|
359 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
360 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
361 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
362 |
msgid "Jabber / Google Talk"
|
363 |
msgstr "Jabber / Google Talk"
|
364 |
|
365 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
366 |
msgid "About Yourself:"
|
367 |
msgstr "À propos de vous:"
|
368 |
|
369 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
370 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
371 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
372 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
373 |
msgid "Biographical Info"
|
374 |
msgstr "Infos Biographiques"
|
375 |
|
376 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
377 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
378 |
msgid "New Password"
|
379 |
msgstr "Nouveau Mot de Passe"
|
380 |
|
381 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
msgid "Basic Information"
|
383 |
msgstr "Informations de Base"
|
384 |
|
385 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
386 |
msgid "Show/Hide the Admin Bar on Front-end"
|
387 |
msgstr "Afficher/Masquer la Barre d'Administration sur le Front-End"
|
388 |
|
389 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
390 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
391 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
392 |
msgid "Extra Profile Fields"
|
393 |
msgstr "Champs de Profile Supplémentaires"
|
394 |
|
395 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
396 |
msgid "Addons"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
400 |
msgid "Register Your Version"
|
401 |
msgstr "Enregistrer Votre Version"
|
402 |
|
403 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
404 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
405 |
msgid "The information size you were trying to submit was larger than"
|
406 |
msgstr ""
|
407 |
|
408 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
409 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
410 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
411 |
msgstr ""
|
412 |
|
413 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
414 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
415 |
msgid "Since it was also larger than"
|
416 |
msgstr ""
|
417 |
|
418 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
419 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
420 |
msgid "no additional information is available."
|
421 |
msgstr ""
|
422 |
|
@@ -527,13 +534,13 @@ msgid "The avatar was"
|
|
527 |
msgstr ""
|
528 |
|
529 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
530 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
531 |
#, fuzzy
|
532 |
msgid "There was an error while trying to upload the following attachment(s)"
|
533 |
msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
534 |
|
535 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
536 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
537 |
msgid "Only files with the following extension(s) can be uploaded:"
|
538 |
msgstr ""
|
539 |
|
@@ -542,7 +549,7 @@ msgid "This file was"
|
|
542 |
msgstr ""
|
543 |
|
544 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
545 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
546 |
msgid "Name"
|
547 |
msgstr "Nom"
|
548 |
|
@@ -582,7 +589,7 @@ msgid "Display name publicly as"
|
|
582 |
msgstr "Apparaître publiquement en tant que"
|
583 |
|
584 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
585 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
586 |
msgid "Contact Info"
|
587 |
msgstr "Infos de Contact"
|
588 |
|
@@ -591,14 +598,14 @@ msgid "(required)"
|
|
591 |
msgstr "(requis)"
|
592 |
|
593 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
594 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
595 |
msgid "About Yourself"
|
596 |
msgstr "À Propos de Vous"
|
597 |
|
598 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
600 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
601 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
602 |
msgid "Repeat Password"
|
603 |
msgstr "Répéter le Mot de Passe"
|
604 |
|
@@ -606,188 +613,191 @@ msgstr "Répéter le Mot de Passe"
|
|
606 |
msgid "Update"
|
607 |
msgstr "Mettre à Jour"
|
608 |
|
609 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
610 |
#, fuzzy
|
611 |
msgid "You are currently logged in as"
|
612 |
msgstr "Vous êtes actuellement connecté(e) en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
613 |
|
614 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
615 |
msgid "Log out of this account"
|
616 |
msgstr "Se déconnecter de ce compte"
|
617 |
|
618 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
619 |
#, fuzzy
|
620 |
msgid "Log out"
|
621 |
msgstr "Déconnexion »"
|
622 |
|
623 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
624 |
#, fuzzy
|
625 |
msgid "You have successfully logged in as"
|
626 |
msgstr "Vous vous êtes connecté en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
627 |
|
628 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
629 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
633 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
|
|
|
|
634 |
msgid "here"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
638 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
639 |
msgid "ERROR:"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
643 |
msgid "The username field is empty"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
647 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
648 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
650 |
msgid "Password"
|
651 |
msgstr "Mot de Passe"
|
652 |
|
653 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
654 |
msgid "Log in"
|
655 |
msgstr "Connexion"
|
656 |
|
657 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
658 |
msgid "Remember me"
|
659 |
msgstr "Se souvenir de moi"
|
660 |
|
661 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
662 |
msgid "Lost password?"
|
663 |
msgstr "Mot de passe oublié ?"
|
664 |
|
665 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
666 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
667 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
668 |
msgid "ERROR"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
672 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
676 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
677 |
msgid "A password reset email has been sent to "
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
681 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
682 |
msgid "Following the link sent in the email address will reset the password."
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
686 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
687 |
msgid "Someone requested that the password be reset for the following account: "
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
691 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
692 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
696 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
697 |
msgid "To reset your password, visit the following link:"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
701 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
702 |
msgid "Password Reset Feature from"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
706 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
707 |
#, fuzzy
|
708 |
msgid "There was an error while trying to send the activation link to "
|
709 |
msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
710 |
|
711 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
712 |
#, fuzzy
|
713 |
msgid "The email address entered wasn't found in the database!"
|
714 |
msgstr "L'adresse de courriel n'est pas valide. <br/> L'adresse de courriel était "
|
715 |
|
716 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
717 |
msgid "Please check that you entered the correct email address."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
721 |
msgid "The username entered wasn't found in the database!"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
725 |
msgid "Please check that you entered the correct username."
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
729 |
#, fuzzy
|
730 |
msgid "Your password has been successfully changed!"
|
731 |
msgstr "Les modifications ont bien été sauvegardées."
|
732 |
|
733 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
734 |
msgid "You have successfully reset your password to:"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
738 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
739 |
#, fuzzy
|
740 |
msgid "Password Successfully Reset for"
|
741 |
msgstr "\" a bien été supprimée."
|
742 |
|
743 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
745 |
msgid "from"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
749 |
msgid "has requested a password change via the password reset feature."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
753 |
msgid "His/her new password is:"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
757 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
758 |
msgid "The entered passwords don't match!"
|
759 |
msgstr "Les mots de passe ne correspondent pas !"
|
760 |
|
761 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
762 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
763 |
#, fuzzy
|
764 |
msgid "Reset Password"
|
765 |
msgstr "Répéter le Mot de Passe"
|
766 |
|
767 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
768 |
msgid "Invalid key!"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
772 |
#, fuzzy
|
773 |
msgid "Please enter your username or email address."
|
774 |
msgstr "Vous devez entrer une adresse de courriel valide."
|
775 |
|
776 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
777 |
msgid "You will receive a link to create a new password via email."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
781 |
#, fuzzy
|
782 |
msgid "Username or E-mail"
|
783 |
msgstr "Nom d'Utilisateur"
|
784 |
|
785 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
786 |
#, fuzzy
|
787 |
msgid "Get New Password"
|
788 |
msgstr "Nouveau Mot de Passe"
|
789 |
|
790 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
791 |
#, php-format
|
792 |
msgid ""
|
793 |
"To activate your user, please click the following link:\n"
|
@@ -798,230 +808,231 @@ msgid ""
|
|
798 |
"\n"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
802 |
#, php-format
|
803 |
msgid "[%1$s] Activate %2$s"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
807 |
msgid "Invalid activation key!"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
811 |
msgid "The user is already active!"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
815 |
msgid "Could not create user!"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
819 |
#, fuzzy
|
820 |
msgid "That username is already activated!"
|
821 |
msgstr "Désolé, ce nom d'utilisateur existe déjà !"
|
822 |
|
823 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
824 |
#, fuzzy
|
825 |
msgid "The user was successfully activated."
|
826 |
msgstr "L'avatar a bien été supprimé."
|
827 |
|
828 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
829 |
#, fuzzy
|
830 |
msgid "There was an error while trying to activate the user."
|
831 |
msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
832 |
|
833 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
834 |
msgid "New subscriber on"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
838 |
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!"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
842 |
msgid "A new subscriber has (been) registered!"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
846 |
#, fuzzy
|
847 |
msgid "A new account has been created for you."
|
848 |
msgstr "Un compte utilisateur pour %1$s a été créé."
|
849 |
|
850 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
851 |
msgid "Welcome to"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
855 |
msgid "Your username is:"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
859 |
#, fuzzy
|
860 |
msgid "and password:"
|
861 |
msgstr "Mot de Passe"
|
862 |
|
863 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
864 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
868 |
msgid "The user was NOT created!"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
872 |
msgid "A username is required for registration."
|
873 |
msgstr "Un nom d'utilisateur est requis pour l'enregistrement."
|
874 |
|
875 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
876 |
msgid "Sorry, that username already exists!"
|
877 |
msgstr "Désolé, ce nom d'utilisateur existe déjà !"
|
878 |
|
879 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
880 |
msgid "You must enter a valid email address."
|
881 |
msgstr "Vous devez entrer une adresse de courriel valide."
|
882 |
|
883 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
884 |
msgid "Sorry, that email address is already used!"
|
885 |
msgstr "Désolé, cette adresse de courriel est déjà utilisée !"
|
886 |
|
887 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
888 |
msgid "You didn't complete one of the password-fields!"
|
889 |
msgstr "Vous n'avez pas renseigné un des champs de mot de passe !"
|
890 |
|
891 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
892 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
893 |
#, fuzzy
|
894 |
msgid "The account was NOT created!"
|
895 |
msgstr "Un compte utilisateur pour %1$s a été créé."
|
896 |
|
897 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
898 |
msgid "You must agree to the terms and conditions before registering!"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
902 |
msgid "(Several required fields were left uncompleted)"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
906 |
msgid "This username is already reserved to be used soon."
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
910 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
911 |
msgid "Please try a different one!"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
915 |
#, fuzzy
|
916 |
msgid "This email address is already reserved to be used soon."
|
917 |
msgstr "Désolé, cette adresse de courriel est déjà utilisée !"
|
918 |
|
919 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
920 |
msgid "You are logged in as"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
924 |
msgid "You don't need another account."
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
928 |
#, fuzzy
|
929 |
msgid "Log out of this account."
|
930 |
msgstr "Se déconnecter de ce compte"
|
931 |
|
932 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
933 |
#, fuzzy
|
934 |
msgid "Logout"
|
935 |
msgstr "Déconnexion »"
|
936 |
|
937 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
938 |
msgid "An email has been sent to "
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
942 |
msgid "with information on how to activate his/her account"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
946 |
#, fuzzy
|
947 |
msgid "A user account has been created for"
|
948 |
msgstr "Un compte utilisateur pour %1$s a été créé."
|
949 |
|
950 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
951 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
955 |
msgid "An email has been sent to you with information on how to activate your account"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
959 |
#, fuzzy
|
960 |
msgid "Thank you for registering"
|
961 |
msgstr "Merci de vous être enregistré, %1$s."
|
962 |
|
963 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
964 |
msgid "An error occured while trying to send the notification email."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
968 |
msgid "An email containing activation instructions was successfully sent."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
972 |
msgid "An email containing the username and password was successfully sent."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
976 |
msgid "Users can register themselves or you can manually create users here."
|
977 |
msgstr "Les utilisateurs peuvent s'enregistrer ou bien vous pouvez les créer manuellement ici."
|
978 |
|
979 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
980 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
981 |
msgstr "Les utilisateurs ne peuvent actuellement pas s'enregistrer eux-même, mais vous pouvez les créer manuellement ici."
|
982 |
|
983 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
984 |
msgid "Only an administrator can add new users."
|
985 |
msgstr "Seul un administrateur peut ajouter de nouveaux utilisateurs."
|
986 |
|
987 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
988 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
989 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
990 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
991 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
992 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
993 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
994 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
995 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
996 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1000 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1001 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1002 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1003 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1004 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1005 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1006 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1007 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1008 |
msgid "This field is marked as required by the administrator"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1012 |
msgid "Anti-Spam"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1016 |
#, fuzzy
|
1017 |
msgid "Send these credentials via email."
|
1018 |
msgstr " Envoyer ces données par courriel."
|
1019 |
|
1020 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1021 |
msgid "Add User"
|
1022 |
msgstr "Ajouter un Utilisateur"
|
1023 |
|
1024 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1025 |
msgid "Register"
|
1026 |
msgstr "Enregistrement"
|
1027 |
|
@@ -1175,37 +1186,42 @@ msgstr ""
|
|
1175 |
msgid "Save"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
|
1179 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
|
|
1180 |
msgid "Register your version of Profile Builder Pro"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1184 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1188 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1192 |
msgid "Serial Number:"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1196 |
#, fuzzy
|
1197 |
msgid "The serial number was successfully validated!"
|
1198 |
msgstr "L'avatar a bien été supprimé."
|
1199 |
|
1200 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1201 |
-
|
|
|
|
|
|
|
|
|
|
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1205 |
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!"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1209 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1210 |
msgstr ""
|
1211 |
|
@@ -1222,116 +1238,116 @@ msgstr ""
|
|
1222 |
msgid "You need to be logged in to view the userlisting!"
|
1223 |
msgstr "Vous devez être connecté(e) pour modifier votre profil."
|
1224 |
|
1225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1226 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1227 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1228 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1230 |
msgid "Search Users by All Fields"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1234 |
msgid "Leave Blank and Press Search to List All Users"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1238 |
msgid "Search"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1242 |
#, fuzzy
|
1243 |
msgid "First/Lastname"
|
1244 |
msgstr "Prénom"
|
1245 |
|
1246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1247 |
#, fuzzy
|
1248 |
msgid "Email"
|
1249 |
msgstr "Courriel"
|
1250 |
|
1251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1252 |
msgid "Sign-up Date"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1256 |
#, fuzzy
|
1257 |
msgid "Firstname"
|
1258 |
msgstr "Prénom"
|
1259 |
|
1260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1261 |
#, fuzzy
|
1262 |
msgid "Lastname"
|
1263 |
msgstr "Nom"
|
1264 |
|
1265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1266 |
#, fuzzy
|
1267 |
msgid "Display Name"
|
1268 |
msgstr "Prénom"
|
1269 |
|
1270 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1271 |
msgid "Posts"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1275 |
msgid "Click here to see more information about this user"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1279 |
msgid "More..."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1283 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1284 |
#, fuzzy
|
1285 |
msgid "No uploaded attachment"
|
1286 |
msgstr "La pièce jointe \""
|
1287 |
|
1288 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1290 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1291 |
msgid "Click to see the current attachment"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1295 |
msgid "Click here to go back"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1299 |
#, fuzzy
|
1300 |
msgid "Back"
|
1301 |
msgstr "Noir"
|
1302 |
|
1303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1304 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1305 |
msgid "Current file"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1309 |
msgid "Avatar"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1313 |
msgid "No results found!"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1317 |
msgid "«« First"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1321 |
msgid "« Prev"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1325 |
#, fuzzy
|
1326 |
msgid "Next » "
|
1327 |
msgstr "Déconnexion »"
|
1328 |
|
1329 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1330 |
#, fuzzy
|
1331 |
msgid "Last »»"
|
1332 |
msgstr "Déconnexion »"
|
1333 |
|
1334 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1335 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1336 |
msgstr ""
|
1337 |
|
@@ -1373,8 +1389,8 @@ msgid "Custom Redirects"
|
|
1373 |
msgstr ""
|
1374 |
|
1375 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
1376 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
|
1377 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
|
|
1378 |
msgid "reCAPTCHA"
|
1379 |
msgstr ""
|
1380 |
|
@@ -1459,12 +1475,12 @@ msgid "Action"
|
|
1459 |
msgstr ""
|
1460 |
|
1461 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1462 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1463 |
msgid "Redirect"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1467 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1468 |
msgid "URL"
|
1469 |
msgstr ""
|
1470 |
|
@@ -1473,75 +1489,79 @@ msgid "After Registration:"
|
|
1473 |
msgstr ""
|
1474 |
|
1475 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1476 |
-
msgid "After Login:"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1480 |
#, fuzzy
|
1481 |
-
msgid "Recover Password (
|
1482 |
msgstr "Répéter le Mot de Passe"
|
1483 |
|
1484 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
|
|
|
|
|
|
|
|
1485 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1489 |
msgid "Redirects on default WordPress page requests:"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1493 |
msgid "Requested WP Page"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1497 |
msgid "Default WP Login Page(*)"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1501 |
msgid "Default WP Logout Page(**)"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1505 |
msgid "Default WP Register Page"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1509 |
msgid "Default WP Dashboard (***)"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1513 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1517 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1521 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1525 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1529 |
msgid "For this you must get a public and private key from Google:"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1533 |
msgid "Key"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1537 |
msgid "Code"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1541 |
msgid "Public Key:"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1545 |
msgid "Private Key:"
|
1546 |
msgstr ""
|
1547 |
|
@@ -1566,87 +1586,87 @@ msgstr ""
|
|
1566 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1570 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1571 |
#, fuzzy
|
1572 |
msgid "You must give your option a title."
|
1573 |
msgstr "Vous devez être connecté(e) pour modifier votre profil."
|
1574 |
|
1575 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1576 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1577 |
msgid "You have entered an invalid meta-key format!"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1581 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1582 |
#, fuzzy
|
1583 |
msgid "You must enter a valid meta-key."
|
1584 |
msgstr "Vous devez entrer une adresse de courriel valide."
|
1585 |
|
1586 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1587 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1588 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1589 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1590 |
msgid "That meta-key is already in use."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1594 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1595 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1600 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1604 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1605 |
msgid "The textarea row value must be numeric."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1609 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1610 |
msgid "The maxlength attribute must be numeric."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1614 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1615 |
msgid "The value must be between 20 and 200!"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1619 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1620 |
msgid "The width component of the entered value must be numeric!"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1624 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1625 |
msgid "The height component of the entered value must be numeric!"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1629 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1630 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1634 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1635 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1639 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1640 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1644 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1645 |
msgid "The entered avatar size must be numeric!"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1650 |
msgid "There was an error, please try again."
|
1651 |
msgstr ""
|
1652 |
|
@@ -1720,75 +1740,120 @@ msgstr ""
|
|
1720 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1724 |
msgid "Do you want to"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1728 |
msgid "the current user?"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1732 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1733 |
msgid "Your account on"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1737 |
msgid "has been approved!"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1741 |
msgid "An administrator has just approved your account on"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1745 |
msgid "has been unapproved!"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1749 |
msgid "An administrator has just unapproved your account on"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1753 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1754 |
msgid "Approve"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1758 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1759 |
msgid "Unapproved"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1763 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1764 |
msgid "Unapprove"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1768 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1769 |
msgid "Approved"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1773 |
msgid "unapprove"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1777 |
msgid "approve"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1781 |
msgid "Are you sure you want to"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1785 |
msgid "this user?"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1789 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1790 |
msgstr ""
|
1791 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1792 |
#~ msgid "Plugin Layout"
|
1793 |
#~ msgstr "Apparence du Plugin"
|
1794 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-02 16:15+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-10-02 16:15+0200\n"
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
+
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabi\\Desktop\\test\\profile-builder-pro\n"
|
|
|
15 |
|
16 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
100 |
msgstr ""
|
101 |
|
102 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
103 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
|
104 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
105 |
msgid "NOTE:"
|
106 |
msgstr "NOTE:"
|
107 |
|
117 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
118 |
msgstr "depuis le Back-End, alors que les champs personnalisés ne seront visibles que sur le Front-End. "
|
119 |
|
120 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
|
121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:69
|
122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
|
123 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
124 |
msgid "General Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
|
128 |
#, fuzzy
|
129 |
msgid "Stylesheet Used on the Front-End:"
|
130 |
msgstr "Feuille de style utilisée"
|
131 |
|
132 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:72
|
133 |
msgid "Default"
|
134 |
msgstr "Défaut"
|
135 |
|
136 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
|
137 |
msgid "White"
|
138 |
msgstr "Blanc"
|
139 |
|
140 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:77
|
141 |
msgid "Black"
|
142 |
msgstr "Noir"
|
143 |
|
144 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:81
|
145 |
msgid "None"
|
146 |
msgstr "Aucune"
|
147 |
|
148 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:87
|
149 |
msgid "\"Email Confirmation\" Feature Activated:"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
|
153 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:99
|
154 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
|
155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
|
156 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:238
|
157 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:251
|
158 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:264
|
159 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:283
|
160 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:296
|
161 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:312
|
162 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:325
|
163 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:338
|
164 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:357
|
165 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:371
|
166 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
167 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
169 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
|
170 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
|
171 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
|
172 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
|
173 |
msgid "Yes"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:90
|
177 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:100
|
178 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:213
|
179 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:226
|
180 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:239
|
181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:252
|
182 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:265
|
183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:284
|
184 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:297
|
185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:313
|
186 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:326
|
187 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:339
|
188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:358
|
189 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:372
|
190 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
191 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:526
|
194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:538
|
195 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:550
|
196 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:562
|
197 |
#, fuzzy
|
198 |
msgid "No"
|
199 |
msgstr "Aucune"
|
200 |
|
201 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
|
202 |
msgid "\"Admin Approval\" Feature Activated:"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
|
206 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
|
210 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
|
214 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:116
|
218 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
|
219 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:380
|
220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:256
|
221 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
222 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
223 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:576
|
224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:630
|
225 |
msgid "Save Changes"
|
226 |
msgstr "Sauvegarder les modifications"
|
227 |
|
228 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:134
|
229 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:135
|
230 |
msgid "Show/Hide the Admin Bar on Front End"
|
231 |
msgstr "Afficher/Masquer la Barre d'Administration sur le Front-End"
|
232 |
|
233 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:139
|
234 |
msgid "User-group"
|
235 |
msgstr "Groupe d'Utilisateurs"
|
236 |
|
237 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:140
|
238 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:193
|
239 |
msgid "Visibility"
|
240 |
msgstr "Visibilité"
|
241 |
|
242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:149
|
243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
|
244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
|
245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
|
246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
|
247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
|
248 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:279
|
249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:292
|
250 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
|
251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
|
252 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:334
|
253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:353
|
254 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:367
|
255 |
msgid "Show"
|
256 |
msgstr "Afficher"
|
257 |
|
258 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:150
|
259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:209
|
260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:222
|
261 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:235
|
262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:248
|
263 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:261
|
264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:280
|
265 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:293
|
266 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:309
|
267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:322
|
268 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:335
|
269 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:354
|
270 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:368
|
271 |
msgid "Hide"
|
272 |
msgstr "Masquer"
|
273 |
|
274 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:162
|
275 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:187
|
279 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:188
|
280 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:61
|
281 |
msgid "Default Profile Fields"
|
282 |
msgstr "Champs de Profil par Défaut"
|
283 |
|
284 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
|
285 |
msgid "Input Field Name"
|
286 |
msgstr "Nom du Champ de Saisie"
|
287 |
|
288 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:194
|
289 |
#, fuzzy
|
290 |
msgid "Required"
|
291 |
msgstr "(requis)"
|
292 |
|
293 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:199
|
294 |
msgid "Name:"
|
295 |
msgstr "Nom:"
|
296 |
|
297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:205
|
298 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:169
|
300 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
301 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
302 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:122
|
303 |
msgid "Username"
|
304 |
msgstr "Nom d'Utilisateur"
|
305 |
|
306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:218
|
307 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
308 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
309 |
msgid "First Name"
|
310 |
msgstr "Prénom"
|
311 |
|
312 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:231
|
313 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
315 |
msgid "Last Name"
|
316 |
msgstr "Nom"
|
317 |
|
318 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:244
|
319 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
321 |
msgid "Nickname"
|
322 |
msgstr "Pseudo"
|
323 |
|
324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:257
|
325 |
msgid "Display name publicly as..."
|
326 |
msgstr "Apparaître publiquement en tant que..."
|
327 |
|
328 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:270
|
329 |
msgid "Contact Info:"
|
330 |
msgstr "Infos de Contact"
|
331 |
|
332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:276
|
333 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
334 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
335 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
336 |
msgid "E-mail"
|
337 |
msgstr "Courriel"
|
338 |
|
339 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:289
|
340 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
341 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
342 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:164
|
343 |
msgid "Website"
|
344 |
msgstr "Site Web"
|
345 |
|
346 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:305
|
347 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
348 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
349 |
msgid "AIM"
|
350 |
msgstr "AIM"
|
351 |
|
352 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:318
|
353 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
354 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
355 |
msgid "Yahoo IM"
|
356 |
msgstr "Yahoo IM"
|
357 |
|
358 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:331
|
359 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
360 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
361 |
msgid "Jabber / Google Talk"
|
362 |
msgstr "Jabber / Google Talk"
|
363 |
|
364 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:344
|
365 |
msgid "About Yourself:"
|
366 |
msgstr "À propos de vous:"
|
367 |
|
368 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:350
|
369 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
370 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
371 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:170
|
372 |
msgid "Biographical Info"
|
373 |
msgstr "Infos Biographiques"
|
374 |
|
375 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:364
|
376 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
377 |
msgid "New Password"
|
378 |
msgstr "Nouveau Mot de Passe"
|
379 |
|
380 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:36
|
381 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive access to automatic updates and support. Need a license key? <a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>Purchase one now</a>"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:38
|
385 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</a> to receive access to automatic updates and priority support. <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>Purchase one now</a>"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
|
389 |
msgid "Basic Information"
|
390 |
msgstr "Informations de Base"
|
391 |
|
392 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
|
393 |
msgid "Show/Hide the Admin Bar on Front-end"
|
394 |
msgstr "Afficher/Masquer la Barre d'Administration sur le Front-End"
|
395 |
|
396 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:67
|
397 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
398 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
399 |
msgid "Extra Profile Fields"
|
400 |
msgstr "Champs de Profile Supplémentaires"
|
401 |
|
402 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:70
|
403 |
msgid "Addons"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:73
|
407 |
msgid "Register Your Version"
|
408 |
msgstr "Enregistrer Votre Version"
|
409 |
|
410 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
411 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
412 |
msgid "The information size you were trying to submit was larger than"
|
413 |
msgstr ""
|
414 |
|
415 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
416 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
417 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
418 |
msgstr ""
|
419 |
|
420 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
421 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
422 |
msgid "Since it was also larger than"
|
423 |
msgstr ""
|
424 |
|
425 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
426 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
427 |
msgid "no additional information is available."
|
428 |
msgstr ""
|
429 |
|
534 |
msgstr ""
|
535 |
|
536 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
537 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
538 |
#, fuzzy
|
539 |
msgid "There was an error while trying to upload the following attachment(s)"
|
540 |
msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
541 |
|
542 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
543 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
544 |
msgid "Only files with the following extension(s) can be uploaded:"
|
545 |
msgstr ""
|
546 |
|
549 |
msgstr ""
|
550 |
|
551 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
553 |
msgid "Name"
|
554 |
msgstr "Nom"
|
555 |
|
589 |
msgstr "Apparaître publiquement en tant que"
|
590 |
|
591 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
592 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
593 |
msgid "Contact Info"
|
594 |
msgstr "Infos de Contact"
|
595 |
|
598 |
msgstr "(requis)"
|
599 |
|
600 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
602 |
msgid "About Yourself"
|
603 |
msgstr "À Propos de Vous"
|
604 |
|
605 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
609 |
msgid "Repeat Password"
|
610 |
msgstr "Répéter le Mot de Passe"
|
611 |
|
613 |
msgid "Update"
|
614 |
msgstr "Mettre à Jour"
|
615 |
|
616 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:61
|
617 |
#, fuzzy
|
618 |
msgid "You are currently logged in as"
|
619 |
msgstr "Vous êtes actuellement connecté(e) en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
620 |
|
621 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
622 |
msgid "Log out of this account"
|
623 |
msgstr "Se déconnecter de ce compte"
|
624 |
|
625 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
626 |
#, fuzzy
|
627 |
msgid "Log out"
|
628 |
msgstr "Déconnexion »"
|
629 |
|
630 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:80
|
631 |
#, fuzzy
|
632 |
msgid "You have successfully logged in as"
|
633 |
msgstr "Vous vous êtes connecté en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
634 |
|
635 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
636 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
637 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
641 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
642 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
644 |
msgid "here"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
649 |
msgid "ERROR:"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
653 |
msgid "The username field is empty"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:177
|
657 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
659 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
660 |
msgid "Password"
|
661 |
msgstr "Mot de Passe"
|
662 |
|
663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
664 |
msgid "Log in"
|
665 |
msgstr "Connexion"
|
666 |
|
667 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:189
|
668 |
msgid "Remember me"
|
669 |
msgstr "Se souvenir de moi"
|
670 |
|
671 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:204
|
672 |
msgid "Lost password?"
|
673 |
msgstr "Mot de passe oublié ?"
|
674 |
|
675 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
676 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
677 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
678 |
msgid "ERROR"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
682 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
686 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
687 |
msgid "A password reset email has been sent to "
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
691 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
692 |
msgid "Following the link sent in the email address will reset the password."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
696 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
697 |
msgid "Someone requested that the password be reset for the following account: "
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
701 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
702 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
706 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
707 |
msgid "To reset your password, visit the following link:"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
711 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
712 |
msgid "Password Reset Feature from"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
716 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
717 |
#, fuzzy
|
718 |
msgid "There was an error while trying to send the activation link to "
|
719 |
msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
720 |
|
721 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
722 |
#, fuzzy
|
723 |
msgid "The email address entered wasn't found in the database!"
|
724 |
msgstr "L'adresse de courriel n'est pas valide. <br/> L'adresse de courriel était "
|
725 |
|
726 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
727 |
msgid "Please check that you entered the correct email address."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
731 |
msgid "The username entered wasn't found in the database!"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
735 |
msgid "Please check that you entered the correct username."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
739 |
#, fuzzy
|
740 |
msgid "Your password has been successfully changed!"
|
741 |
msgstr "Les modifications ont bien été sauvegardées."
|
742 |
|
743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
744 |
msgid "You have successfully reset your password to:"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
748 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
749 |
#, fuzzy
|
750 |
msgid "Password Successfully Reset for"
|
751 |
msgstr "\" a bien été supprimée."
|
752 |
|
753 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
754 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
755 |
msgid "from"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
759 |
msgid "has requested a password change via the password reset feature."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
763 |
msgid "His/her new password is:"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
767 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
768 |
msgid "The entered passwords don't match!"
|
769 |
msgstr "Les mots de passe ne correspondent pas !"
|
770 |
|
771 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
773 |
#, fuzzy
|
774 |
msgid "Reset Password"
|
775 |
msgstr "Répéter le Mot de Passe"
|
776 |
|
777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
778 |
msgid "Invalid key!"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
782 |
#, fuzzy
|
783 |
msgid "Please enter your username or email address."
|
784 |
msgstr "Vous devez entrer une adresse de courriel valide."
|
785 |
|
786 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
787 |
msgid "You will receive a link to create a new password via email."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
791 |
#, fuzzy
|
792 |
msgid "Username or E-mail"
|
793 |
msgstr "Nom d'Utilisateur"
|
794 |
|
795 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
796 |
#, fuzzy
|
797 |
msgid "Get New Password"
|
798 |
msgstr "Nouveau Mot de Passe"
|
799 |
|
800 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
801 |
#, php-format
|
802 |
msgid ""
|
803 |
"To activate your user, please click the following link:\n"
|
808 |
"\n"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
812 |
#, php-format
|
813 |
msgid "[%1$s] Activate %2$s"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
817 |
msgid "Invalid activation key!"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
821 |
msgid "The user is already active!"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
825 |
msgid "Could not create user!"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
829 |
#, fuzzy
|
830 |
msgid "That username is already activated!"
|
831 |
msgstr "Désolé, ce nom d'utilisateur existe déjà !"
|
832 |
|
833 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
834 |
#, fuzzy
|
835 |
msgid "The user was successfully activated."
|
836 |
msgstr "L'avatar a bien été supprimé."
|
837 |
|
838 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
839 |
#, fuzzy
|
840 |
msgid "There was an error while trying to activate the user."
|
841 |
msgstr "Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
842 |
|
843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
844 |
msgid "New subscriber on"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
848 |
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!"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
852 |
msgid "A new subscriber has (been) registered!"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
856 |
#, fuzzy
|
857 |
msgid "A new account has been created for you."
|
858 |
msgstr "Un compte utilisateur pour %1$s a été créé."
|
859 |
|
860 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
861 |
msgid "Welcome to"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
865 |
msgid "Your username is:"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
869 |
#, fuzzy
|
870 |
msgid "and password:"
|
871 |
msgstr "Mot de Passe"
|
872 |
|
873 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
874 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
878 |
msgid "The user was NOT created!"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
882 |
msgid "A username is required for registration."
|
883 |
msgstr "Un nom d'utilisateur est requis pour l'enregistrement."
|
884 |
|
885 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
886 |
msgid "Sorry, that username already exists!"
|
887 |
msgstr "Désolé, ce nom d'utilisateur existe déjà !"
|
888 |
|
889 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
890 |
msgid "You must enter a valid email address."
|
891 |
msgstr "Vous devez entrer une adresse de courriel valide."
|
892 |
|
893 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
894 |
msgid "Sorry, that email address is already used!"
|
895 |
msgstr "Désolé, cette adresse de courriel est déjà utilisée !"
|
896 |
|
897 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
898 |
msgid "You didn't complete one of the password-fields!"
|
899 |
msgstr "Vous n'avez pas renseigné un des champs de mot de passe !"
|
900 |
|
901 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
902 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
903 |
#, fuzzy
|
904 |
msgid "The account was NOT created!"
|
905 |
msgstr "Un compte utilisateur pour %1$s a été créé."
|
906 |
|
907 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
908 |
msgid "You must agree to the terms and conditions before registering!"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
912 |
msgid "(Several required fields were left uncompleted)"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
916 |
msgid "This username is already reserved to be used soon."
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
920 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
921 |
msgid "Please try a different one!"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
925 |
#, fuzzy
|
926 |
msgid "This email address is already reserved to be used soon."
|
927 |
msgstr "Désolé, cette adresse de courriel est déjà utilisée !"
|
928 |
|
929 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
930 |
msgid "You are logged in as"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
934 |
msgid "You don't need another account."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
938 |
#, fuzzy
|
939 |
msgid "Log out of this account."
|
940 |
msgstr "Se déconnecter de ce compte"
|
941 |
|
942 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
943 |
#, fuzzy
|
944 |
msgid "Logout"
|
945 |
msgstr "Déconnexion »"
|
946 |
|
947 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
948 |
msgid "An email has been sent to "
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
952 |
msgid "with information on how to activate his/her account"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1173
|
956 |
#, fuzzy
|
957 |
msgid "A user account has been created for"
|
958 |
msgstr "Un compte utilisateur pour %1$s a été créé."
|
959 |
|
960 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
961 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
962 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
966 |
msgid "An email has been sent to you with information on how to activate your account"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
970 |
#, fuzzy
|
971 |
msgid "Thank you for registering"
|
972 |
msgstr "Merci de vous être enregistré, %1$s."
|
973 |
|
974 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
975 |
msgid "An error occured while trying to send the notification email."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
979 |
msgid "An email containing activation instructions was successfully sent."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
983 |
msgid "An email containing the username and password was successfully sent."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
987 |
msgid "Users can register themselves or you can manually create users here."
|
988 |
msgstr "Les utilisateurs peuvent s'enregistrer ou bien vous pouvez les créer manuellement ici."
|
989 |
|
990 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
991 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
992 |
msgstr "Les utilisateurs ne peuvent actuellement pas s'enregistrer eux-même, mais vous pouvez les créer manuellement ici."
|
993 |
|
994 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
995 |
msgid "Only an administrator can add new users."
|
996 |
msgstr "Seul un administrateur peut ajouter de nouveaux utilisateurs."
|
997 |
|
998 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
999 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
1000 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
1001 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
1002 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
1003 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
1004 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
1005 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
1006 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
1007 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
1011 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
1012 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
1013 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
1014 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
1015 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
1016 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
1017 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
1018 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
1019 |
msgid "This field is marked as required by the administrator"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
1023 |
msgid "Anti-Spam"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
1027 |
#, fuzzy
|
1028 |
msgid "Send these credentials via email."
|
1029 |
msgstr " Envoyer ces données par courriel."
|
1030 |
|
1031 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1032 |
msgid "Add User"
|
1033 |
msgstr "Ajouter un Utilisateur"
|
1034 |
|
1035 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1036 |
msgid "Register"
|
1037 |
msgstr "Enregistrement"
|
1038 |
|
1186 |
msgid "Save"
|
1187 |
msgstr ""
|
1188 |
|
|
|
1189 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
1190 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
|
1191 |
msgid "Register your version of Profile Builder Pro"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
|
1195 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
|
1199 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:234
|
1203 |
msgid "Serial Number:"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:238
|
1207 |
#, fuzzy
|
1208 |
msgid "The serial number was successfully validated!"
|
1209 |
msgstr "L'avatar a bien été supprimé."
|
1210 |
|
1211 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:240
|
1212 |
+
#, fuzzy
|
1213 |
+
msgid "The serial number entered couldn't be validated!"
|
1214 |
+
msgstr "L'avatar a bien été supprimé."
|
1215 |
+
|
1216 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:242
|
1217 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:244
|
1221 |
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!"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:250
|
1225 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1226 |
msgstr ""
|
1227 |
|
1238 |
msgid "You need to be logged in to view the userlisting!"
|
1239 |
msgstr "Vous devez être connecté(e) pour modifier votre profil."
|
1240 |
|
1241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:67
|
1242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:93
|
1243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:909
|
1245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:996
|
1246 |
msgid "Search Users by All Fields"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1250 |
msgid "Leave Blank and Press Search to List All Users"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:115
|
1254 |
msgid "Search"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
|
1258 |
#, fuzzy
|
1259 |
msgid "First/Lastname"
|
1260 |
msgstr "Prénom"
|
1261 |
|
1262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:134
|
1263 |
#, fuzzy
|
1264 |
msgid "Email"
|
1265 |
msgstr "Courriel"
|
1266 |
|
1267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:140
|
1268 |
msgid "Sign-up Date"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:146
|
1272 |
#, fuzzy
|
1273 |
msgid "Firstname"
|
1274 |
msgstr "Prénom"
|
1275 |
|
1276 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:152
|
1277 |
#, fuzzy
|
1278 |
msgid "Lastname"
|
1279 |
msgstr "Nom"
|
1280 |
|
1281 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:158
|
1282 |
#, fuzzy
|
1283 |
msgid "Display Name"
|
1284 |
msgstr "Prénom"
|
1285 |
|
1286 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:176
|
1287 |
msgid "Posts"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1291 |
msgid "Click here to see more information about this user"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1295 |
msgid "More..."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:401
|
1299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1300 |
#, fuzzy
|
1301 |
msgid "No uploaded attachment"
|
1302 |
msgstr "La pièce jointe \""
|
1303 |
|
1304 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:403
|
1305 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:744
|
1307 |
msgid "Click to see the current attachment"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1311 |
msgid "Click here to go back"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1315 |
#, fuzzy
|
1316 |
msgid "Back"
|
1317 |
msgstr "Noir"
|
1318 |
|
1319 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1321 |
msgid "Current file"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:742
|
1325 |
msgid "Avatar"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:799
|
1329 |
msgid "No results found!"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:892
|
1333 |
msgid "«« First"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:893
|
1337 |
msgid "« Prev"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:894
|
1341 |
#, fuzzy
|
1342 |
msgid "Next » "
|
1343 |
msgstr "Déconnexion »"
|
1344 |
|
1345 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
|
1346 |
#, fuzzy
|
1347 |
msgid "Last »»"
|
1348 |
msgstr "Déconnexion »"
|
1349 |
|
1350 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1247
|
1351 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1352 |
msgstr ""
|
1353 |
|
1389 |
msgstr ""
|
1390 |
|
1391 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
|
|
1392 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
1393 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:602
|
1394 |
msgid "reCAPTCHA"
|
1395 |
msgstr ""
|
1396 |
|
1475 |
msgstr ""
|
1476 |
|
1477 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1478 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
|
1479 |
msgid "Redirect"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1483 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:517
|
1484 |
msgid "URL"
|
1485 |
msgstr ""
|
1486 |
|
1489 |
msgstr ""
|
1490 |
|
1491 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1492 |
+
msgid "After Login (*):"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1496 |
#, fuzzy
|
1497 |
+
msgid "Recover Password (**)"
|
1498 |
msgstr "Répéter le Mot de Passe"
|
1499 |
|
1500 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
1501 |
+
msgid "Does not."
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:504
|
1505 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:509
|
1509 |
msgid "Redirects on default WordPress page requests:"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
|
1513 |
msgid "Requested WP Page"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:522
|
1517 |
msgid "Default WP Login Page(*)"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:534
|
1521 |
msgid "Default WP Logout Page(**)"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:546
|
1525 |
msgid "Default WP Register Page"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:558
|
1529 |
msgid "Default WP Dashboard (***)"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
|
1533 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
|
1537 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:571
|
1541 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
|
1545 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:607
|
1549 |
msgid "For this you must get a public and private key from Google:"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
|
1553 |
msgid "Key"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:614
|
1557 |
msgid "Code"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:618
|
1561 |
msgid "Public Key:"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:622
|
1565 |
msgid "Private Key:"
|
1566 |
msgstr ""
|
1567 |
|
1586 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:279
|
1590 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:422
|
1591 |
#, fuzzy
|
1592 |
msgid "You must give your option a title."
|
1593 |
msgstr "Vous devez être connecté(e) pour modifier votre profil."
|
1594 |
|
1595 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
|
1596 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
|
1597 |
msgid "You have entered an invalid meta-key format!"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
|
1601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
|
1602 |
#, fuzzy
|
1603 |
msgid "You must enter a valid meta-key."
|
1604 |
msgstr "Vous devez entrer une adresse de courriel valide."
|
1605 |
|
1606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:293
|
1607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
|
1608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:440
|
1609 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:452
|
1610 |
msgid "That meta-key is already in use."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1614 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:460
|
1615 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1619 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1620 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1624 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1625 |
msgid "The textarea row value must be numeric."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
|
1629 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
|
1630 |
msgid "The maxlength attribute must be numeric."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1634 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1635 |
msgid "The value must be between 20 and 200!"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1639 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1640 |
msgid "The width component of the entered value must be numeric!"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1644 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1645 |
msgid "The height component of the entered value must be numeric!"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
|
1649 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
|
1650 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
|
1654 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
|
1655 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
|
1659 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
|
1660 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1664 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1665 |
msgid "The entered avatar size must be numeric!"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:383
|
1669 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:559
|
1670 |
msgid "There was an error, please try again."
|
1671 |
msgstr ""
|
1672 |
|
1740 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1744 |
msgid "Do you want to"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1748 |
msgid "the current user?"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1752 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1753 |
msgid "Your account on"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1757 |
msgid "has been approved!"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:546
|
1761 |
msgid "An administrator has just approved your account on"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1765 |
msgid "has been unapproved!"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:550
|
1769 |
msgid "An administrator has just unapproved your account on"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:614
|
1773 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:660
|
1774 |
msgid "Approve"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:615
|
1778 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:705
|
1779 |
msgid "Unapproved"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:626
|
1783 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:656
|
1784 |
msgid "Unapprove"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:627
|
1788 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:702
|
1789 |
msgid "Approved"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:655
|
1793 |
msgid "unapprove"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:659
|
1797 |
msgid "approve"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1801 |
msgid "Are you sure you want to"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1805 |
msgid "this user?"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:724
|
1809 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:819
|
1813 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:824
|
1817 |
+
#, fuzzy
|
1818 |
+
msgid "Profile Builder Login Widget"
|
1819 |
+
msgstr "Profile Builder"
|
1820 |
+
|
1821 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:853
|
1822 |
+
msgid "Don't have an account?"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:860
|
1826 |
+
#, fuzzy
|
1827 |
+
msgid "Lost Your Password?"
|
1828 |
+
msgstr "Mot de passe oublié ?"
|
1829 |
+
|
1830 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:889
|
1831 |
+
#, fuzzy
|
1832 |
+
msgid "Login"
|
1833 |
+
msgstr "Connexion"
|
1834 |
+
|
1835 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:898
|
1836 |
+
msgid "After login redirect URL:"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:903
|
1840 |
+
msgid "Register page URL (optional)"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:908
|
1844 |
+
msgid "Password Recovery page URL (optional)"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:985
|
1848 |
+
#, php-format
|
1849 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please %sregister your copy%s of Profile Builder to receive access to automatic updates and support. Need a license key? %sPurchase one now%s %sDismiss%s"
|
1850 |
+
msgstr ""
|
1851 |
+
|
1852 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:987
|
1853 |
+
#, php-format
|
1854 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please %sRenew Your Licence%s to receive access to automatic updates and priority support. %sPurchase one now%s %sDismiss%s"
|
1855 |
+
msgstr ""
|
1856 |
+
|
1857 |
#~ msgid "Plugin Layout"
|
1858 |
#~ msgstr "Apparence du Plugin"
|
1859 |
|
translation/profilebuilder-hu_HU.mo
CHANGED
Binary file
|
translation/profilebuilder-hu_HU.po
CHANGED
@@ -1,18 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
-
"X-Poedit-Basepath:
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
|
16 |
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
18 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
@@ -101,8 +100,8 @@ msgid "shortcode."
|
|
101 |
msgstr ""
|
102 |
|
103 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
104 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
105 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
106 |
msgid "NOTE:"
|
107 |
msgstr "MEGJEGYZÉS:"
|
108 |
|
@@ -118,305 +117,313 @@ msgstr "Az alap információs mezők továbbra is láthatóak (és módosíthat
|
|
118 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
119 |
msgstr "Az egyedi mezők csak a felhasználók számára lesznek láthatók. "
|
120 |
|
121 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
122 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
123 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
124 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
125 |
msgid "General Settings"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
129 |
#, fuzzy
|
130 |
msgid "Stylesheet Used on the Front-End:"
|
131 |
msgstr "Stíluslap használata:"
|
132 |
|
133 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
134 |
msgid "Default"
|
135 |
msgstr "Szokásos"
|
136 |
|
137 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
138 |
msgid "White"
|
139 |
msgstr "Fehér"
|
140 |
|
141 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
142 |
msgid "Black"
|
143 |
msgstr "Fekete"
|
144 |
|
145 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
146 |
msgid "None"
|
147 |
msgstr "Nincs"
|
148 |
|
149 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
150 |
msgid "\"Email Confirmation\" Feature Activated:"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
154 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
155 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
156 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
157 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
158 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
159 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
160 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
161 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
162 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
163 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
164 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
165 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
166 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
167 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
169 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
170 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
171 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
172 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
173 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
174 |
msgid "Yes"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
180 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
182 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
184 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
186 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
188 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
189 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
190 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
191 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
193 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
194 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
196 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
197 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
198 |
#, fuzzy
|
199 |
msgid "No"
|
200 |
msgstr "Nincs"
|
201 |
|
202 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
203 |
msgid "\"Admin Approval\" Feature Activated:"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
207 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
211 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
215 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
219 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
220 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
222 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
223 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
224 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
226 |
msgid "Save Changes"
|
227 |
msgstr "Módosítások mentése"
|
228 |
|
229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
230 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
231 |
msgid "Show/Hide the Admin Bar on Front End"
|
232 |
msgstr "Admin sáv elrejt/mutat a felhasználó előtt"
|
233 |
|
234 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
235 |
msgid "User-group"
|
236 |
msgstr "Felhasználói csoport"
|
237 |
|
238 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
239 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
240 |
msgid "Visibility"
|
241 |
msgstr "Láthatóság"
|
242 |
|
243 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
244 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
245 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
247 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
248 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
249 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
250 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
252 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
253 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
254 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
256 |
msgid "Show"
|
257 |
msgstr "Mutat"
|
258 |
|
259 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
261 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
262 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
263 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
264 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
266 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
267 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
268 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
269 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
270 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
271 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
272 |
msgid "Hide"
|
273 |
msgstr "Elrejt"
|
274 |
|
275 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
276 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
280 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
281 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
282 |
msgid "Default Profile Fields"
|
283 |
msgstr "Alap profil mezők"
|
284 |
|
285 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
286 |
msgid "Input Field Name"
|
287 |
msgstr "Beviteli mező neve"
|
288 |
|
289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
290 |
#, fuzzy
|
291 |
msgid "Required"
|
292 |
msgstr "(kötelező)"
|
293 |
|
294 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
295 |
msgid "Name:"
|
296 |
msgstr "Név:"
|
297 |
|
298 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
299 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
300 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
301 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
302 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
304 |
msgid "Username"
|
305 |
msgstr "Felhasználónév"
|
306 |
|
307 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
308 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
309 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
310 |
msgid "First Name"
|
311 |
msgstr "Keresztnév"
|
312 |
|
313 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
314 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
315 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
316 |
msgid "Last Name"
|
317 |
msgstr "Vezetéknév"
|
318 |
|
319 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
320 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
321 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
322 |
msgid "Nickname"
|
323 |
msgstr "Loginnév"
|
324 |
|
325 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
326 |
msgid "Display name publicly as..."
|
327 |
msgstr "A nevem publikus megjelenítése, mint"
|
328 |
|
329 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
330 |
msgid "Contact Info:"
|
331 |
msgstr "Kapcsolati adatok"
|
332 |
|
333 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
334 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
335 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
336 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
337 |
msgid "E-mail"
|
338 |
msgstr "E-mail"
|
339 |
|
340 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
341 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
342 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
343 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
344 |
msgid "Website"
|
345 |
msgstr "Weboldal"
|
346 |
|
347 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
348 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
349 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
350 |
msgid "AIM"
|
351 |
msgstr "AIM"
|
352 |
|
353 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
354 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
355 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
356 |
msgid "Yahoo IM"
|
357 |
msgstr "Yahoo IM"
|
358 |
|
359 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
360 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
361 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
362 |
msgid "Jabber / Google Talk"
|
363 |
msgstr "Jabber / Google Talk"
|
364 |
|
365 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
366 |
msgid "About Yourself:"
|
367 |
msgstr "Magadról:"
|
368 |
|
369 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
370 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
371 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
372 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
373 |
msgid "Biographical Info"
|
374 |
msgstr "Életrajzi információk"
|
375 |
|
376 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
377 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
378 |
msgid "New Password"
|
379 |
msgstr "Új jelszó"
|
380 |
|
381 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
msgid "Basic Information"
|
383 |
msgstr "Alapadatok"
|
384 |
|
385 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
386 |
msgid "Show/Hide the Admin Bar on Front-end"
|
387 |
msgstr "Admin sáv elrejt/mutat a felhasználó előtt"
|
388 |
|
389 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
390 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
391 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
392 |
msgid "Extra Profile Fields"
|
393 |
msgstr "Extra profil mezők"
|
394 |
|
395 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
396 |
msgid "Addons"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
400 |
msgid "Register Your Version"
|
401 |
msgstr "Regisztráld a verziódat!"
|
402 |
|
403 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
404 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
405 |
msgid "The information size you were trying to submit was larger than"
|
406 |
msgstr ""
|
407 |
|
408 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
409 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
410 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
411 |
msgstr ""
|
412 |
|
413 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
414 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
415 |
msgid "Since it was also larger than"
|
416 |
msgstr ""
|
417 |
|
418 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
419 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
420 |
msgid "no additional information is available."
|
421 |
msgstr ""
|
422 |
|
@@ -527,13 +534,13 @@ msgid "The avatar was"
|
|
527 |
msgstr ""
|
528 |
|
529 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
530 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
531 |
#, fuzzy
|
532 |
msgid "There was an error while trying to upload the following attachment(s)"
|
533 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
534 |
|
535 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
536 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
537 |
msgid "Only files with the following extension(s) can be uploaded:"
|
538 |
msgstr ""
|
539 |
|
@@ -542,7 +549,7 @@ msgid "This file was"
|
|
542 |
msgstr ""
|
543 |
|
544 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
545 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
546 |
msgid "Name"
|
547 |
msgstr "Név"
|
548 |
|
@@ -582,7 +589,7 @@ msgid "Display name publicly as"
|
|
582 |
msgstr "Név megjelenítése publikusan, mint"
|
583 |
|
584 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
585 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
586 |
msgid "Contact Info"
|
587 |
msgstr "Kapcsolati információ"
|
588 |
|
@@ -591,14 +598,14 @@ msgid "(required)"
|
|
591 |
msgstr "(kötelező)"
|
592 |
|
593 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
594 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
595 |
msgid "About Yourself"
|
596 |
msgstr "Magadról"
|
597 |
|
598 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
600 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
601 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
602 |
msgid "Repeat Password"
|
603 |
msgstr "Jelszó, mégegyszer"
|
604 |
|
@@ -606,188 +613,191 @@ msgstr "Jelszó, mégegyszer"
|
|
606 |
msgid "Update"
|
607 |
msgstr "Frissítés"
|
608 |
|
609 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
610 |
#, fuzzy
|
611 |
msgid "You are currently logged in as"
|
612 |
msgstr "Jelenleg be vagy jelentkezve, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
613 |
|
614 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
615 |
msgid "Log out of this account"
|
616 |
msgstr "Kijelentkezés ebből a fiókból"
|
617 |
|
618 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
619 |
#, fuzzy
|
620 |
msgid "Log out"
|
621 |
msgstr "Kijelentkezés »"
|
622 |
|
623 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
624 |
#, fuzzy
|
625 |
msgid "You have successfully logged in as"
|
626 |
msgstr "Sikeresen bejelentkeztél, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
627 |
|
628 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
629 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
633 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
|
|
|
|
634 |
msgid "here"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
638 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
639 |
msgid "ERROR:"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
643 |
msgid "The username field is empty"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
647 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
648 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
650 |
msgid "Password"
|
651 |
msgstr "Jelszó"
|
652 |
|
653 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
654 |
msgid "Log in"
|
655 |
msgstr "Bejelentkezés"
|
656 |
|
657 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
658 |
msgid "Remember me"
|
659 |
msgstr "Emlékezz rám!"
|
660 |
|
661 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
662 |
msgid "Lost password?"
|
663 |
msgstr "Elvesztett jelszó?"
|
664 |
|
665 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
666 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
667 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
668 |
msgid "ERROR"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
672 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
676 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
677 |
msgid "A password reset email has been sent to "
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
681 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
682 |
msgid "Following the link sent in the email address will reset the password."
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
686 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
687 |
msgid "Someone requested that the password be reset for the following account: "
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
691 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
692 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
696 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
697 |
msgid "To reset your password, visit the following link:"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
701 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
702 |
msgid "Password Reset Feature from"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
706 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
707 |
#, fuzzy
|
708 |
msgid "There was an error while trying to send the activation link to "
|
709 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
710 |
|
711 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
712 |
#, fuzzy
|
713 |
msgid "The email address entered wasn't found in the database!"
|
714 |
msgstr "Az email cím, amit megadtál érvénytelen. <br/> Ez az email cím"
|
715 |
|
716 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
717 |
msgid "Please check that you entered the correct email address."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
721 |
msgid "The username entered wasn't found in the database!"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
725 |
msgid "Please check that you entered the correct username."
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
729 |
#, fuzzy
|
730 |
msgid "Your password has been successfully changed!"
|
731 |
msgstr "A változások sikeresen mentve."
|
732 |
|
733 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
734 |
msgid "You have successfully reset your password to:"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
738 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
739 |
#, fuzzy
|
740 |
msgid "Password Successfully Reset for"
|
741 |
msgstr "\" sikeresen törölve."
|
742 |
|
743 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
745 |
msgid "from"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
749 |
msgid "has requested a password change via the password reset feature."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
753 |
msgid "His/her new password is:"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
757 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
758 |
msgid "The entered passwords don't match!"
|
759 |
msgstr "A beírt jelszavak nem egyeznek!"
|
760 |
|
761 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
762 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
763 |
#, fuzzy
|
764 |
msgid "Reset Password"
|
765 |
msgstr "Jelszó, mégegyszer"
|
766 |
|
767 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
768 |
msgid "Invalid key!"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
772 |
#, fuzzy
|
773 |
msgid "Please enter your username or email address."
|
774 |
msgstr "Valós email címet kell beírnod!"
|
775 |
|
776 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
777 |
msgid "You will receive a link to create a new password via email."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
781 |
#, fuzzy
|
782 |
msgid "Username or E-mail"
|
783 |
msgstr "Felhasználónév"
|
784 |
|
785 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
786 |
#, fuzzy
|
787 |
msgid "Get New Password"
|
788 |
msgstr "Új jelszó"
|
789 |
|
790 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
791 |
#, php-format
|
792 |
msgid ""
|
793 |
"To activate your user, please click the following link:\n"
|
@@ -798,230 +808,231 @@ msgid ""
|
|
798 |
"\n"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
802 |
#, php-format
|
803 |
msgid "[%1$s] Activate %2$s"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
807 |
msgid "Invalid activation key!"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
811 |
msgid "The user is already active!"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
815 |
msgid "Could not create user!"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
819 |
#, fuzzy
|
820 |
msgid "That username is already activated!"
|
821 |
msgstr "Bocs, de ez a felhasználónév foglalt!"
|
822 |
|
823 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
824 |
#, fuzzy
|
825 |
msgid "The user was successfully activated."
|
826 |
msgstr "Az avatar sikeresen törölve."
|
827 |
|
828 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
829 |
#, fuzzy
|
830 |
msgid "There was an error while trying to activate the user."
|
831 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
832 |
|
833 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
834 |
msgid "New subscriber on"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
838 |
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!"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
842 |
msgid "A new subscriber has (been) registered!"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
846 |
#, fuzzy
|
847 |
msgid "A new account has been created for you."
|
848 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
849 |
|
850 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
851 |
msgid "Welcome to"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
855 |
msgid "Your username is:"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
859 |
#, fuzzy
|
860 |
msgid "and password:"
|
861 |
msgstr "Jelszó"
|
862 |
|
863 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
864 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
868 |
msgid "The user was NOT created!"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
872 |
msgid "A username is required for registration."
|
873 |
msgstr "Felhasználónév megadása kötelező a regisztrációhoz."
|
874 |
|
875 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
876 |
msgid "Sorry, that username already exists!"
|
877 |
msgstr "Bocs, de ez a felhasználónév foglalt!"
|
878 |
|
879 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
880 |
msgid "You must enter a valid email address."
|
881 |
msgstr "Valós email címet kell beírnod!"
|
882 |
|
883 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
884 |
msgid "Sorry, that email address is already used!"
|
885 |
msgstr "Bocs, de ez az email cím már használatban van!"
|
886 |
|
887 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
888 |
msgid "You didn't complete one of the password-fields!"
|
889 |
msgstr "Nem töltötted ki az egyik jelszó mezőt!"
|
890 |
|
891 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
892 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
893 |
#, fuzzy
|
894 |
msgid "The account was NOT created!"
|
895 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
896 |
|
897 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
898 |
msgid "You must agree to the terms and conditions before registering!"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
902 |
msgid "(Several required fields were left uncompleted)"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
906 |
msgid "This username is already reserved to be used soon."
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
910 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
911 |
msgid "Please try a different one!"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
915 |
#, fuzzy
|
916 |
msgid "This email address is already reserved to be used soon."
|
917 |
msgstr "Bocs, de ez az email cím már használatban van!"
|
918 |
|
919 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
920 |
msgid "You are logged in as"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
924 |
msgid "You don't need another account."
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
928 |
#, fuzzy
|
929 |
msgid "Log out of this account."
|
930 |
msgstr "Kijelentkezés ebből a fiókból"
|
931 |
|
932 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
933 |
#, fuzzy
|
934 |
msgid "Logout"
|
935 |
msgstr "Kijelentkezés »"
|
936 |
|
937 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
938 |
msgid "An email has been sent to "
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
942 |
msgid "with information on how to activate his/her account"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
946 |
#, fuzzy
|
947 |
msgid "A user account has been created for"
|
948 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
949 |
|
950 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
951 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
955 |
msgid "An email has been sent to you with information on how to activate your account"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
959 |
#, fuzzy
|
960 |
msgid "Thank you for registering"
|
961 |
msgstr "Kösz a regisztrációt, %1$s!"
|
962 |
|
963 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
964 |
msgid "An error occured while trying to send the notification email."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
968 |
msgid "An email containing activation instructions was successfully sent."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
972 |
msgid "An email containing the username and password was successfully sent."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
976 |
msgid "Users can register themselves or you can manually create users here."
|
977 |
msgstr "A felhasználók önmagukat tudják regisztrálni, vagy sajátkezűleg készíthetsz felhasználókat itt."
|
978 |
|
979 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
980 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
981 |
msgstr "A felhasználók jelenleg nem tudják magukat regisztrálni, de te tudsz itt létrehozni új felhasználót."
|
982 |
|
983 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
984 |
msgid "Only an administrator can add new users."
|
985 |
msgstr "Csak egy adminisztrátor tud felhasználót hozzáadni."
|
986 |
|
987 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
988 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
989 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
990 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
991 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
992 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
993 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
994 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
995 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
996 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1000 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1001 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1002 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1003 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1004 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1005 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1006 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1007 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1008 |
msgid "This field is marked as required by the administrator"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1012 |
msgid "Anti-Spam"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1016 |
#, fuzzy
|
1017 |
msgid "Send these credentials via email."
|
1018 |
msgstr "Hitelesítő adatok küldése emailben. "
|
1019 |
|
1020 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1021 |
msgid "Add User"
|
1022 |
msgstr "Felhasználó hozzáadása"
|
1023 |
|
1024 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1025 |
msgid "Register"
|
1026 |
msgstr "Regisztráció"
|
1027 |
|
@@ -1175,37 +1186,42 @@ msgstr ""
|
|
1175 |
msgid "Save"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
|
1179 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
|
|
1180 |
msgid "Register your version of Profile Builder Pro"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1184 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1188 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1192 |
msgid "Serial Number:"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1196 |
#, fuzzy
|
1197 |
msgid "The serial number was successfully validated!"
|
1198 |
msgstr "Az avatar sikeresen törölve."
|
1199 |
|
1200 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1201 |
-
|
|
|
|
|
|
|
|
|
|
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1205 |
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!"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1209 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1210 |
msgstr ""
|
1211 |
|
@@ -1222,116 +1238,116 @@ msgstr ""
|
|
1222 |
msgid "You need to be logged in to view the userlisting!"
|
1223 |
msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
|
1224 |
|
1225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1226 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1227 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1228 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1230 |
msgid "Search Users by All Fields"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1234 |
msgid "Leave Blank and Press Search to List All Users"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1238 |
msgid "Search"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1242 |
#, fuzzy
|
1243 |
msgid "First/Lastname"
|
1244 |
msgstr "Keresztnév"
|
1245 |
|
1246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1247 |
#, fuzzy
|
1248 |
msgid "Email"
|
1249 |
msgstr "E-mail"
|
1250 |
|
1251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1252 |
msgid "Sign-up Date"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1256 |
#, fuzzy
|
1257 |
msgid "Firstname"
|
1258 |
msgstr "Keresztnév"
|
1259 |
|
1260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1261 |
#, fuzzy
|
1262 |
msgid "Lastname"
|
1263 |
msgstr "Vezetéknév"
|
1264 |
|
1265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1266 |
#, fuzzy
|
1267 |
msgid "Display Name"
|
1268 |
msgstr "Keresztnév"
|
1269 |
|
1270 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1271 |
msgid "Posts"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1275 |
msgid "Click here to see more information about this user"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1279 |
msgid "More..."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1283 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1284 |
#, fuzzy
|
1285 |
msgid "No uploaded attachment"
|
1286 |
msgstr "A csatolmány \""
|
1287 |
|
1288 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1290 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1291 |
msgid "Click to see the current attachment"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1295 |
msgid "Click here to go back"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1299 |
#, fuzzy
|
1300 |
msgid "Back"
|
1301 |
msgstr "Fekete"
|
1302 |
|
1303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1304 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1305 |
msgid "Current file"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1309 |
msgid "Avatar"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1313 |
msgid "No results found!"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1317 |
msgid "«« First"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1321 |
msgid "« Prev"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1325 |
#, fuzzy
|
1326 |
msgid "Next » "
|
1327 |
msgstr "Kijelentkezés »"
|
1328 |
|
1329 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1330 |
#, fuzzy
|
1331 |
msgid "Last »»"
|
1332 |
msgstr "Kijelentkezés »"
|
1333 |
|
1334 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1335 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1336 |
msgstr ""
|
1337 |
|
@@ -1373,8 +1389,8 @@ msgid "Custom Redirects"
|
|
1373 |
msgstr ""
|
1374 |
|
1375 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
1376 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
|
1377 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
|
|
1378 |
msgid "reCAPTCHA"
|
1379 |
msgstr ""
|
1380 |
|
@@ -1459,12 +1475,12 @@ msgid "Action"
|
|
1459 |
msgstr ""
|
1460 |
|
1461 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1462 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1463 |
msgid "Redirect"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1467 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1468 |
msgid "URL"
|
1469 |
msgstr ""
|
1470 |
|
@@ -1473,75 +1489,79 @@ msgid "After Registration:"
|
|
1473 |
msgstr ""
|
1474 |
|
1475 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1476 |
-
msgid "After Login:"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1480 |
#, fuzzy
|
1481 |
-
msgid "Recover Password (
|
1482 |
msgstr "Jelszó, mégegyszer"
|
1483 |
|
1484 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
|
|
|
|
|
|
|
|
1485 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1489 |
msgid "Redirects on default WordPress page requests:"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1493 |
msgid "Requested WP Page"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1497 |
msgid "Default WP Login Page(*)"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1501 |
msgid "Default WP Logout Page(**)"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1505 |
msgid "Default WP Register Page"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1509 |
msgid "Default WP Dashboard (***)"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1513 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1517 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1521 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1525 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1529 |
msgid "For this you must get a public and private key from Google:"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1533 |
msgid "Key"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1537 |
msgid "Code"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1541 |
msgid "Public Key:"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1545 |
msgid "Private Key:"
|
1546 |
msgstr ""
|
1547 |
|
@@ -1566,87 +1586,87 @@ msgstr ""
|
|
1566 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1570 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1571 |
#, fuzzy
|
1572 |
msgid "You must give your option a title."
|
1573 |
msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
|
1574 |
|
1575 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1576 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1577 |
msgid "You have entered an invalid meta-key format!"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1581 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1582 |
#, fuzzy
|
1583 |
msgid "You must enter a valid meta-key."
|
1584 |
msgstr "Valós email címet kell beírnod!"
|
1585 |
|
1586 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1587 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1588 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1589 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1590 |
msgid "That meta-key is already in use."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1594 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1595 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1600 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1604 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1605 |
msgid "The textarea row value must be numeric."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1609 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1610 |
msgid "The maxlength attribute must be numeric."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1614 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1615 |
msgid "The value must be between 20 and 200!"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1619 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1620 |
msgid "The width component of the entered value must be numeric!"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1624 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1625 |
msgid "The height component of the entered value must be numeric!"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1629 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1630 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1634 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1635 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1639 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1640 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1644 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1645 |
msgid "The entered avatar size must be numeric!"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1650 |
msgid "There was an error, please try again."
|
1651 |
msgstr ""
|
1652 |
|
@@ -1720,75 +1740,120 @@ msgstr ""
|
|
1720 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1724 |
msgid "Do you want to"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1728 |
msgid "the current user?"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1732 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1733 |
msgid "Your account on"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1737 |
msgid "has been approved!"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1741 |
msgid "An administrator has just approved your account on"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1745 |
msgid "has been unapproved!"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1749 |
msgid "An administrator has just unapproved your account on"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1753 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1754 |
msgid "Approve"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1758 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1759 |
msgid "Unapproved"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1763 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1764 |
msgid "Unapprove"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1768 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1769 |
msgid "Approved"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1773 |
msgid "unapprove"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1777 |
msgid "approve"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1781 |
msgid "Are you sure you want to"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1785 |
msgid "this user?"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1789 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1790 |
msgstr ""
|
1791 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1792 |
#~ msgid "Plugin Layout"
|
1793 |
#~ msgstr "Bővítény megjelenítés"
|
1794 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-02 16:15+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-10-02 16:15+0200\n"
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
+
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabi\\Desktop\\test\\profile-builder-pro\n"
|
|
|
15 |
|
16 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
100 |
msgstr ""
|
101 |
|
102 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
103 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
|
104 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
105 |
msgid "NOTE:"
|
106 |
msgstr "MEGJEGYZÉS:"
|
107 |
|
117 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
118 |
msgstr "Az egyedi mezők csak a felhasználók számára lesznek láthatók. "
|
119 |
|
120 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
|
121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:69
|
122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
|
123 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
124 |
msgid "General Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
|
128 |
#, fuzzy
|
129 |
msgid "Stylesheet Used on the Front-End:"
|
130 |
msgstr "Stíluslap használata:"
|
131 |
|
132 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:72
|
133 |
msgid "Default"
|
134 |
msgstr "Szokásos"
|
135 |
|
136 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
|
137 |
msgid "White"
|
138 |
msgstr "Fehér"
|
139 |
|
140 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:77
|
141 |
msgid "Black"
|
142 |
msgstr "Fekete"
|
143 |
|
144 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:81
|
145 |
msgid "None"
|
146 |
msgstr "Nincs"
|
147 |
|
148 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:87
|
149 |
msgid "\"Email Confirmation\" Feature Activated:"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
|
153 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:99
|
154 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
|
155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
|
156 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:238
|
157 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:251
|
158 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:264
|
159 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:283
|
160 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:296
|
161 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:312
|
162 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:325
|
163 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:338
|
164 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:357
|
165 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:371
|
166 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
167 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
169 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
|
170 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
|
171 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
|
172 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
|
173 |
msgid "Yes"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:90
|
177 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:100
|
178 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:213
|
179 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:226
|
180 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:239
|
181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:252
|
182 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:265
|
183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:284
|
184 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:297
|
185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:313
|
186 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:326
|
187 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:339
|
188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:358
|
189 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:372
|
190 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
191 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:526
|
194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:538
|
195 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:550
|
196 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:562
|
197 |
#, fuzzy
|
198 |
msgid "No"
|
199 |
msgstr "Nincs"
|
200 |
|
201 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
|
202 |
msgid "\"Admin Approval\" Feature Activated:"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
|
206 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
|
210 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
|
214 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:116
|
218 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
|
219 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:380
|
220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:256
|
221 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
222 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
223 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:576
|
224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:630
|
225 |
msgid "Save Changes"
|
226 |
msgstr "Módosítások mentése"
|
227 |
|
228 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:134
|
229 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:135
|
230 |
msgid "Show/Hide the Admin Bar on Front End"
|
231 |
msgstr "Admin sáv elrejt/mutat a felhasználó előtt"
|
232 |
|
233 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:139
|
234 |
msgid "User-group"
|
235 |
msgstr "Felhasználói csoport"
|
236 |
|
237 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:140
|
238 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:193
|
239 |
msgid "Visibility"
|
240 |
msgstr "Láthatóság"
|
241 |
|
242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:149
|
243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
|
244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
|
245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
|
246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
|
247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
|
248 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:279
|
249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:292
|
250 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
|
251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
|
252 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:334
|
253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:353
|
254 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:367
|
255 |
msgid "Show"
|
256 |
msgstr "Mutat"
|
257 |
|
258 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:150
|
259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:209
|
260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:222
|
261 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:235
|
262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:248
|
263 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:261
|
264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:280
|
265 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:293
|
266 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:309
|
267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:322
|
268 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:335
|
269 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:354
|
270 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:368
|
271 |
msgid "Hide"
|
272 |
msgstr "Elrejt"
|
273 |
|
274 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:162
|
275 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:187
|
279 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:188
|
280 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:61
|
281 |
msgid "Default Profile Fields"
|
282 |
msgstr "Alap profil mezők"
|
283 |
|
284 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
|
285 |
msgid "Input Field Name"
|
286 |
msgstr "Beviteli mező neve"
|
287 |
|
288 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:194
|
289 |
#, fuzzy
|
290 |
msgid "Required"
|
291 |
msgstr "(kötelező)"
|
292 |
|
293 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:199
|
294 |
msgid "Name:"
|
295 |
msgstr "Név:"
|
296 |
|
297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:205
|
298 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:169
|
300 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
301 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
302 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:122
|
303 |
msgid "Username"
|
304 |
msgstr "Felhasználónév"
|
305 |
|
306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:218
|
307 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
308 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
309 |
msgid "First Name"
|
310 |
msgstr "Keresztnév"
|
311 |
|
312 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:231
|
313 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
315 |
msgid "Last Name"
|
316 |
msgstr "Vezetéknév"
|
317 |
|
318 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:244
|
319 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
321 |
msgid "Nickname"
|
322 |
msgstr "Loginnév"
|
323 |
|
324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:257
|
325 |
msgid "Display name publicly as..."
|
326 |
msgstr "A nevem publikus megjelenítése, mint"
|
327 |
|
328 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:270
|
329 |
msgid "Contact Info:"
|
330 |
msgstr "Kapcsolati adatok"
|
331 |
|
332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:276
|
333 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
334 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
335 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
336 |
msgid "E-mail"
|
337 |
msgstr "E-mail"
|
338 |
|
339 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:289
|
340 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
341 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
342 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:164
|
343 |
msgid "Website"
|
344 |
msgstr "Weboldal"
|
345 |
|
346 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:305
|
347 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
348 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
349 |
msgid "AIM"
|
350 |
msgstr "AIM"
|
351 |
|
352 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:318
|
353 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
354 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
355 |
msgid "Yahoo IM"
|
356 |
msgstr "Yahoo IM"
|
357 |
|
358 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:331
|
359 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
360 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
361 |
msgid "Jabber / Google Talk"
|
362 |
msgstr "Jabber / Google Talk"
|
363 |
|
364 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:344
|
365 |
msgid "About Yourself:"
|
366 |
msgstr "Magadról:"
|
367 |
|
368 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:350
|
369 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
370 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
371 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:170
|
372 |
msgid "Biographical Info"
|
373 |
msgstr "Életrajzi információk"
|
374 |
|
375 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:364
|
376 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
377 |
msgid "New Password"
|
378 |
msgstr "Új jelszó"
|
379 |
|
380 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:36
|
381 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive access to automatic updates and support. Need a license key? <a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>Purchase one now</a>"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:38
|
385 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</a> to receive access to automatic updates and priority support. <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>Purchase one now</a>"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
|
389 |
msgid "Basic Information"
|
390 |
msgstr "Alapadatok"
|
391 |
|
392 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
|
393 |
msgid "Show/Hide the Admin Bar on Front-end"
|
394 |
msgstr "Admin sáv elrejt/mutat a felhasználó előtt"
|
395 |
|
396 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:67
|
397 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
398 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
399 |
msgid "Extra Profile Fields"
|
400 |
msgstr "Extra profil mezők"
|
401 |
|
402 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:70
|
403 |
msgid "Addons"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:73
|
407 |
msgid "Register Your Version"
|
408 |
msgstr "Regisztráld a verziódat!"
|
409 |
|
410 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
411 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
412 |
msgid "The information size you were trying to submit was larger than"
|
413 |
msgstr ""
|
414 |
|
415 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
416 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
417 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
418 |
msgstr ""
|
419 |
|
420 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
421 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
422 |
msgid "Since it was also larger than"
|
423 |
msgstr ""
|
424 |
|
425 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
426 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
427 |
msgid "no additional information is available."
|
428 |
msgstr ""
|
429 |
|
534 |
msgstr ""
|
535 |
|
536 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
537 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
538 |
#, fuzzy
|
539 |
msgid "There was an error while trying to upload the following attachment(s)"
|
540 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
541 |
|
542 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
543 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
544 |
msgid "Only files with the following extension(s) can be uploaded:"
|
545 |
msgstr ""
|
546 |
|
549 |
msgstr ""
|
550 |
|
551 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
553 |
msgid "Name"
|
554 |
msgstr "Név"
|
555 |
|
589 |
msgstr "Név megjelenítése publikusan, mint"
|
590 |
|
591 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
592 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
593 |
msgid "Contact Info"
|
594 |
msgstr "Kapcsolati információ"
|
595 |
|
598 |
msgstr "(kötelező)"
|
599 |
|
600 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
602 |
msgid "About Yourself"
|
603 |
msgstr "Magadról"
|
604 |
|
605 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
609 |
msgid "Repeat Password"
|
610 |
msgstr "Jelszó, mégegyszer"
|
611 |
|
613 |
msgid "Update"
|
614 |
msgstr "Frissítés"
|
615 |
|
616 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:61
|
617 |
#, fuzzy
|
618 |
msgid "You are currently logged in as"
|
619 |
msgstr "Jelenleg be vagy jelentkezve, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
620 |
|
621 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
622 |
msgid "Log out of this account"
|
623 |
msgstr "Kijelentkezés ebből a fiókból"
|
624 |
|
625 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
626 |
#, fuzzy
|
627 |
msgid "Log out"
|
628 |
msgstr "Kijelentkezés »"
|
629 |
|
630 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:80
|
631 |
#, fuzzy
|
632 |
msgid "You have successfully logged in as"
|
633 |
msgstr "Sikeresen bejelentkeztél, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
634 |
|
635 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
636 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
637 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
641 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
642 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
644 |
msgid "here"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
649 |
msgid "ERROR:"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
653 |
msgid "The username field is empty"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:177
|
657 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
659 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
660 |
msgid "Password"
|
661 |
msgstr "Jelszó"
|
662 |
|
663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
664 |
msgid "Log in"
|
665 |
msgstr "Bejelentkezés"
|
666 |
|
667 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:189
|
668 |
msgid "Remember me"
|
669 |
msgstr "Emlékezz rám!"
|
670 |
|
671 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:204
|
672 |
msgid "Lost password?"
|
673 |
msgstr "Elvesztett jelszó?"
|
674 |
|
675 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
676 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
677 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
678 |
msgid "ERROR"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
682 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
686 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
687 |
msgid "A password reset email has been sent to "
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
691 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
692 |
msgid "Following the link sent in the email address will reset the password."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
696 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
697 |
msgid "Someone requested that the password be reset for the following account: "
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
701 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
702 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
706 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
707 |
msgid "To reset your password, visit the following link:"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
711 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
712 |
msgid "Password Reset Feature from"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
716 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
717 |
#, fuzzy
|
718 |
msgid "There was an error while trying to send the activation link to "
|
719 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
720 |
|
721 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
722 |
#, fuzzy
|
723 |
msgid "The email address entered wasn't found in the database!"
|
724 |
msgstr "Az email cím, amit megadtál érvénytelen. <br/> Ez az email cím"
|
725 |
|
726 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
727 |
msgid "Please check that you entered the correct email address."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
731 |
msgid "The username entered wasn't found in the database!"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
735 |
msgid "Please check that you entered the correct username."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
739 |
#, fuzzy
|
740 |
msgid "Your password has been successfully changed!"
|
741 |
msgstr "A változások sikeresen mentve."
|
742 |
|
743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
744 |
msgid "You have successfully reset your password to:"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
748 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
749 |
#, fuzzy
|
750 |
msgid "Password Successfully Reset for"
|
751 |
msgstr "\" sikeresen törölve."
|
752 |
|
753 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
754 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
755 |
msgid "from"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
759 |
msgid "has requested a password change via the password reset feature."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
763 |
msgid "His/her new password is:"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
767 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
768 |
msgid "The entered passwords don't match!"
|
769 |
msgstr "A beírt jelszavak nem egyeznek!"
|
770 |
|
771 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
773 |
#, fuzzy
|
774 |
msgid "Reset Password"
|
775 |
msgstr "Jelszó, mégegyszer"
|
776 |
|
777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
778 |
msgid "Invalid key!"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
782 |
#, fuzzy
|
783 |
msgid "Please enter your username or email address."
|
784 |
msgstr "Valós email címet kell beírnod!"
|
785 |
|
786 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
787 |
msgid "You will receive a link to create a new password via email."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
791 |
#, fuzzy
|
792 |
msgid "Username or E-mail"
|
793 |
msgstr "Felhasználónév"
|
794 |
|
795 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
796 |
#, fuzzy
|
797 |
msgid "Get New Password"
|
798 |
msgstr "Új jelszó"
|
799 |
|
800 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
801 |
#, php-format
|
802 |
msgid ""
|
803 |
"To activate your user, please click the following link:\n"
|
808 |
"\n"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
812 |
#, php-format
|
813 |
msgid "[%1$s] Activate %2$s"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
817 |
msgid "Invalid activation key!"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
821 |
msgid "The user is already active!"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
825 |
msgid "Could not create user!"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
829 |
#, fuzzy
|
830 |
msgid "That username is already activated!"
|
831 |
msgstr "Bocs, de ez a felhasználónév foglalt!"
|
832 |
|
833 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
834 |
#, fuzzy
|
835 |
msgid "The user was successfully activated."
|
836 |
msgstr "Az avatar sikeresen törölve."
|
837 |
|
838 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
839 |
#, fuzzy
|
840 |
msgid "There was an error while trying to activate the user."
|
841 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
842 |
|
843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
844 |
msgid "New subscriber on"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
848 |
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!"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
852 |
msgid "A new subscriber has (been) registered!"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
856 |
#, fuzzy
|
857 |
msgid "A new account has been created for you."
|
858 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
859 |
|
860 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
861 |
msgid "Welcome to"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
865 |
msgid "Your username is:"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
869 |
#, fuzzy
|
870 |
msgid "and password:"
|
871 |
msgstr "Jelszó"
|
872 |
|
873 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
874 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
878 |
msgid "The user was NOT created!"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
882 |
msgid "A username is required for registration."
|
883 |
msgstr "Felhasználónév megadása kötelező a regisztrációhoz."
|
884 |
|
885 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
886 |
msgid "Sorry, that username already exists!"
|
887 |
msgstr "Bocs, de ez a felhasználónév foglalt!"
|
888 |
|
889 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
890 |
msgid "You must enter a valid email address."
|
891 |
msgstr "Valós email címet kell beírnod!"
|
892 |
|
893 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
894 |
msgid "Sorry, that email address is already used!"
|
895 |
msgstr "Bocs, de ez az email cím már használatban van!"
|
896 |
|
897 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
898 |
msgid "You didn't complete one of the password-fields!"
|
899 |
msgstr "Nem töltötted ki az egyik jelszó mezőt!"
|
900 |
|
901 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
902 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
903 |
#, fuzzy
|
904 |
msgid "The account was NOT created!"
|
905 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
906 |
|
907 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
908 |
msgid "You must agree to the terms and conditions before registering!"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
912 |
msgid "(Several required fields were left uncompleted)"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
916 |
msgid "This username is already reserved to be used soon."
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
920 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
921 |
msgid "Please try a different one!"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
925 |
#, fuzzy
|
926 |
msgid "This email address is already reserved to be used soon."
|
927 |
msgstr "Bocs, de ez az email cím már használatban van!"
|
928 |
|
929 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
930 |
msgid "You are logged in as"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
934 |
msgid "You don't need another account."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
938 |
#, fuzzy
|
939 |
msgid "Log out of this account."
|
940 |
msgstr "Kijelentkezés ebből a fiókból"
|
941 |
|
942 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
943 |
#, fuzzy
|
944 |
msgid "Logout"
|
945 |
msgstr "Kijelentkezés »"
|
946 |
|
947 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
948 |
msgid "An email has been sent to "
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
952 |
msgid "with information on how to activate his/her account"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1173
|
956 |
#, fuzzy
|
957 |
msgid "A user account has been created for"
|
958 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
959 |
|
960 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
961 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
962 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
966 |
msgid "An email has been sent to you with information on how to activate your account"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
970 |
#, fuzzy
|
971 |
msgid "Thank you for registering"
|
972 |
msgstr "Kösz a regisztrációt, %1$s!"
|
973 |
|
974 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
975 |
msgid "An error occured while trying to send the notification email."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
979 |
msgid "An email containing activation instructions was successfully sent."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
983 |
msgid "An email containing the username and password was successfully sent."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
987 |
msgid "Users can register themselves or you can manually create users here."
|
988 |
msgstr "A felhasználók önmagukat tudják regisztrálni, vagy sajátkezűleg készíthetsz felhasználókat itt."
|
989 |
|
990 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
991 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
992 |
msgstr "A felhasználók jelenleg nem tudják magukat regisztrálni, de te tudsz itt létrehozni új felhasználót."
|
993 |
|
994 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
995 |
msgid "Only an administrator can add new users."
|
996 |
msgstr "Csak egy adminisztrátor tud felhasználót hozzáadni."
|
997 |
|
998 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
999 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
1000 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
1001 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
1002 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
1003 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
1004 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
1005 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
1006 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
1007 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
1011 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
1012 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
1013 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
1014 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
1015 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
1016 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
1017 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
1018 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
1019 |
msgid "This field is marked as required by the administrator"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
1023 |
msgid "Anti-Spam"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
1027 |
#, fuzzy
|
1028 |
msgid "Send these credentials via email."
|
1029 |
msgstr "Hitelesítő adatok küldése emailben. "
|
1030 |
|
1031 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1032 |
msgid "Add User"
|
1033 |
msgstr "Felhasználó hozzáadása"
|
1034 |
|
1035 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1036 |
msgid "Register"
|
1037 |
msgstr "Regisztráció"
|
1038 |
|
1186 |
msgid "Save"
|
1187 |
msgstr ""
|
1188 |
|
|
|
1189 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
1190 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
|
1191 |
msgid "Register your version of Profile Builder Pro"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
|
1195 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
|
1199 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:234
|
1203 |
msgid "Serial Number:"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:238
|
1207 |
#, fuzzy
|
1208 |
msgid "The serial number was successfully validated!"
|
1209 |
msgstr "Az avatar sikeresen törölve."
|
1210 |
|
1211 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:240
|
1212 |
+
#, fuzzy
|
1213 |
+
msgid "The serial number entered couldn't be validated!"
|
1214 |
+
msgstr "Az avatar sikeresen törölve."
|
1215 |
+
|
1216 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:242
|
1217 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:244
|
1221 |
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!"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:250
|
1225 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1226 |
msgstr ""
|
1227 |
|
1238 |
msgid "You need to be logged in to view the userlisting!"
|
1239 |
msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
|
1240 |
|
1241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:67
|
1242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:93
|
1243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:909
|
1245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:996
|
1246 |
msgid "Search Users by All Fields"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1250 |
msgid "Leave Blank and Press Search to List All Users"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:115
|
1254 |
msgid "Search"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
|
1258 |
#, fuzzy
|
1259 |
msgid "First/Lastname"
|
1260 |
msgstr "Keresztnév"
|
1261 |
|
1262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:134
|
1263 |
#, fuzzy
|
1264 |
msgid "Email"
|
1265 |
msgstr "E-mail"
|
1266 |
|
1267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:140
|
1268 |
msgid "Sign-up Date"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:146
|
1272 |
#, fuzzy
|
1273 |
msgid "Firstname"
|
1274 |
msgstr "Keresztnév"
|
1275 |
|
1276 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:152
|
1277 |
#, fuzzy
|
1278 |
msgid "Lastname"
|
1279 |
msgstr "Vezetéknév"
|
1280 |
|
1281 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:158
|
1282 |
#, fuzzy
|
1283 |
msgid "Display Name"
|
1284 |
msgstr "Keresztnév"
|
1285 |
|
1286 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:176
|
1287 |
msgid "Posts"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1291 |
msgid "Click here to see more information about this user"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1295 |
msgid "More..."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:401
|
1299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1300 |
#, fuzzy
|
1301 |
msgid "No uploaded attachment"
|
1302 |
msgstr "A csatolmány \""
|
1303 |
|
1304 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:403
|
1305 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:744
|
1307 |
msgid "Click to see the current attachment"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1311 |
msgid "Click here to go back"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1315 |
#, fuzzy
|
1316 |
msgid "Back"
|
1317 |
msgstr "Fekete"
|
1318 |
|
1319 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1321 |
msgid "Current file"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:742
|
1325 |
msgid "Avatar"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:799
|
1329 |
msgid "No results found!"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:892
|
1333 |
msgid "«« First"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:893
|
1337 |
msgid "« Prev"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:894
|
1341 |
#, fuzzy
|
1342 |
msgid "Next » "
|
1343 |
msgstr "Kijelentkezés »"
|
1344 |
|
1345 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
|
1346 |
#, fuzzy
|
1347 |
msgid "Last »»"
|
1348 |
msgstr "Kijelentkezés »"
|
1349 |
|
1350 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1247
|
1351 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1352 |
msgstr ""
|
1353 |
|
1389 |
msgstr ""
|
1390 |
|
1391 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
|
|
1392 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
1393 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:602
|
1394 |
msgid "reCAPTCHA"
|
1395 |
msgstr ""
|
1396 |
|
1475 |
msgstr ""
|
1476 |
|
1477 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1478 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
|
1479 |
msgid "Redirect"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1483 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:517
|
1484 |
msgid "URL"
|
1485 |
msgstr ""
|
1486 |
|
1489 |
msgstr ""
|
1490 |
|
1491 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1492 |
+
msgid "After Login (*):"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1496 |
#, fuzzy
|
1497 |
+
msgid "Recover Password (**)"
|
1498 |
msgstr "Jelszó, mégegyszer"
|
1499 |
|
1500 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
1501 |
+
msgid "Does not."
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:504
|
1505 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:509
|
1509 |
msgid "Redirects on default WordPress page requests:"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
|
1513 |
msgid "Requested WP Page"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:522
|
1517 |
msgid "Default WP Login Page(*)"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:534
|
1521 |
msgid "Default WP Logout Page(**)"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:546
|
1525 |
msgid "Default WP Register Page"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:558
|
1529 |
msgid "Default WP Dashboard (***)"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
|
1533 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
|
1537 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:571
|
1541 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
|
1545 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:607
|
1549 |
msgid "For this you must get a public and private key from Google:"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
|
1553 |
msgid "Key"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:614
|
1557 |
msgid "Code"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:618
|
1561 |
msgid "Public Key:"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:622
|
1565 |
msgid "Private Key:"
|
1566 |
msgstr ""
|
1567 |
|
1586 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:279
|
1590 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:422
|
1591 |
#, fuzzy
|
1592 |
msgid "You must give your option a title."
|
1593 |
msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
|
1594 |
|
1595 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
|
1596 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
|
1597 |
msgid "You have entered an invalid meta-key format!"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
|
1601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
|
1602 |
#, fuzzy
|
1603 |
msgid "You must enter a valid meta-key."
|
1604 |
msgstr "Valós email címet kell beírnod!"
|
1605 |
|
1606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:293
|
1607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
|
1608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:440
|
1609 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:452
|
1610 |
msgid "That meta-key is already in use."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1614 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:460
|
1615 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1619 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1620 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1624 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1625 |
msgid "The textarea row value must be numeric."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
|
1629 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
|
1630 |
msgid "The maxlength attribute must be numeric."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1634 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1635 |
msgid "The value must be between 20 and 200!"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1639 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1640 |
msgid "The width component of the entered value must be numeric!"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1644 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1645 |
msgid "The height component of the entered value must be numeric!"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
|
1649 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
|
1650 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
|
1654 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
|
1655 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
|
1659 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
|
1660 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1664 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1665 |
msgid "The entered avatar size must be numeric!"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:383
|
1669 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:559
|
1670 |
msgid "There was an error, please try again."
|
1671 |
msgstr ""
|
1672 |
|
1740 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1744 |
msgid "Do you want to"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1748 |
msgid "the current user?"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1752 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1753 |
msgid "Your account on"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1757 |
msgid "has been approved!"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:546
|
1761 |
msgid "An administrator has just approved your account on"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1765 |
msgid "has been unapproved!"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:550
|
1769 |
msgid "An administrator has just unapproved your account on"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:614
|
1773 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:660
|
1774 |
msgid "Approve"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:615
|
1778 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:705
|
1779 |
msgid "Unapproved"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:626
|
1783 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:656
|
1784 |
msgid "Unapprove"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:627
|
1788 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:702
|
1789 |
msgid "Approved"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:655
|
1793 |
msgid "unapprove"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:659
|
1797 |
msgid "approve"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1801 |
msgid "Are you sure you want to"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1805 |
msgid "this user?"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:724
|
1809 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:819
|
1813 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:824
|
1817 |
+
#, fuzzy
|
1818 |
+
msgid "Profile Builder Login Widget"
|
1819 |
+
msgstr "Profile Builder"
|
1820 |
+
|
1821 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:853
|
1822 |
+
msgid "Don't have an account?"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:860
|
1826 |
+
#, fuzzy
|
1827 |
+
msgid "Lost Your Password?"
|
1828 |
+
msgstr "Elvesztett jelszó?"
|
1829 |
+
|
1830 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:889
|
1831 |
+
#, fuzzy
|
1832 |
+
msgid "Login"
|
1833 |
+
msgstr "Bejelentkezés"
|
1834 |
+
|
1835 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:898
|
1836 |
+
msgid "After login redirect URL:"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:903
|
1840 |
+
msgid "Register page URL (optional)"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:908
|
1844 |
+
msgid "Password Recovery page URL (optional)"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:985
|
1848 |
+
#, php-format
|
1849 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please %sregister your copy%s of Profile Builder to receive access to automatic updates and support. Need a license key? %sPurchase one now%s %sDismiss%s"
|
1850 |
+
msgstr ""
|
1851 |
+
|
1852 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:987
|
1853 |
+
#, php-format
|
1854 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please %sRenew Your Licence%s to receive access to automatic updates and priority support. %sPurchase one now%s %sDismiss%s"
|
1855 |
+
msgstr ""
|
1856 |
+
|
1857 |
#~ msgid "Plugin Layout"
|
1858 |
#~ msgstr "Bővítény megjelenítés"
|
1859 |
|
translation/profilebuilder-it_IT.mo
CHANGED
Binary file
|
translation/profilebuilder-it_IT.po
CHANGED
@@ -1,18 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
-
"X-Poedit-Basepath:
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
|
16 |
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
18 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
@@ -101,8 +100,8 @@ msgid "shortcode."
|
|
101 |
msgstr ""
|
102 |
|
103 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
104 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
105 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
106 |
msgid "NOTE:"
|
107 |
msgstr "NOTA:"
|
108 |
|
@@ -118,305 +117,313 @@ msgstr "Il valore predefinito di campi di informazione saranno ancora visibili (
|
|
118 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
119 |
msgstr "dal back-end, mentre i campi personalizzati saranno visibili solo nel front-end."
|
120 |
|
121 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
122 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
123 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
124 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
125 |
msgid "General Settings"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
129 |
#, fuzzy
|
130 |
msgid "Stylesheet Used on the Front-End:"
|
131 |
msgstr "Stylesheet usato:"
|
132 |
|
133 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
134 |
msgid "Default"
|
135 |
msgstr "Default"
|
136 |
|
137 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
138 |
msgid "White"
|
139 |
msgstr "Bianco"
|
140 |
|
141 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
142 |
msgid "Black"
|
143 |
msgstr "Nero"
|
144 |
|
145 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
146 |
msgid "None"
|
147 |
msgstr "Nessuno"
|
148 |
|
149 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
150 |
msgid "\"Email Confirmation\" Feature Activated:"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
154 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
155 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
156 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
157 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
158 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
159 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
160 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
161 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
162 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
163 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
164 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
165 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
166 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
167 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
169 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
170 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
171 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
172 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
173 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
174 |
msgid "Yes"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
180 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
182 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
184 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
186 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
188 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
189 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
190 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
191 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
193 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
194 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
196 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
197 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
198 |
#, fuzzy
|
199 |
msgid "No"
|
200 |
msgstr "Nessuno"
|
201 |
|
202 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
203 |
msgid "\"Admin Approval\" Feature Activated:"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
207 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
211 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
215 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
219 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
220 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
222 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
223 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
224 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
226 |
msgid "Save Changes"
|
227 |
msgstr "Salva modifiche"
|
228 |
|
229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
230 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
231 |
msgid "Show/Hide the Admin Bar on Front End"
|
232 |
msgstr "Mostra / Nascondi la barra di amministrazione di Front End"
|
233 |
|
234 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
235 |
msgid "User-group"
|
236 |
msgstr "Gruppi di utenti"
|
237 |
|
238 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
239 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
240 |
msgid "Visibility"
|
241 |
msgstr "Visibilità"
|
242 |
|
243 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
244 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
245 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
247 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
248 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
249 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
250 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
252 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
253 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
254 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
256 |
msgid "Show"
|
257 |
msgstr "Mostra"
|
258 |
|
259 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
261 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
262 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
263 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
264 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
266 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
267 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
268 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
269 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
270 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
271 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
272 |
msgid "Hide"
|
273 |
msgstr "Nascondi"
|
274 |
|
275 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
276 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
280 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
281 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
282 |
msgid "Default Profile Fields"
|
283 |
msgstr "Campi profilo di default"
|
284 |
|
285 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
286 |
msgid "Input Field Name"
|
287 |
msgstr "Inserisci campo nome"
|
288 |
|
289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
290 |
#, fuzzy
|
291 |
msgid "Required"
|
292 |
msgstr "(richiesto)"
|
293 |
|
294 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
295 |
msgid "Name:"
|
296 |
msgstr "Nome:"
|
297 |
|
298 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
299 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
300 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
301 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
302 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
304 |
msgid "Username"
|
305 |
msgstr "Username"
|
306 |
|
307 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
308 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
309 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
310 |
msgid "First Name"
|
311 |
msgstr "Nome"
|
312 |
|
313 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
314 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
315 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
316 |
msgid "Last Name"
|
317 |
msgstr "Cognome"
|
318 |
|
319 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
320 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
321 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
322 |
msgid "Nickname"
|
323 |
msgstr "Nickname"
|
324 |
|
325 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
326 |
msgid "Display name publicly as..."
|
327 |
msgstr "Nome visualizzato pubblicamente come ..."
|
328 |
|
329 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
330 |
msgid "Contact Info:"
|
331 |
msgstr "Informazioni di contatto:"
|
332 |
|
333 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
334 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
335 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
336 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
337 |
msgid "E-mail"
|
338 |
msgstr "E-mail:"
|
339 |
|
340 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
341 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
342 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
343 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
344 |
msgid "Website"
|
345 |
msgstr "Sito web:"
|
346 |
|
347 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
348 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
349 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
350 |
msgid "AIM"
|
351 |
msgstr "AIM"
|
352 |
|
353 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
354 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
355 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
356 |
msgid "Yahoo IM"
|
357 |
msgstr "Yahoo IM"
|
358 |
|
359 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
360 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
361 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
362 |
msgid "Jabber / Google Talk"
|
363 |
msgstr "Google Talk"
|
364 |
|
365 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
366 |
msgid "About Yourself:"
|
367 |
msgstr "Su di te:"
|
368 |
|
369 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
370 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
371 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
372 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
373 |
msgid "Biographical Info"
|
374 |
msgstr "Informazioni biografiche"
|
375 |
|
376 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
377 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
378 |
msgid "New Password"
|
379 |
msgstr "Nuova Password"
|
380 |
|
381 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
msgid "Basic Information"
|
383 |
msgstr "Informazioni di base"
|
384 |
|
385 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
386 |
msgid "Show/Hide the Admin Bar on Front-end"
|
387 |
msgstr "Mostra / Nascondi la barra di amministrazione di front-end"
|
388 |
|
389 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
390 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
391 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
392 |
msgid "Extra Profile Fields"
|
393 |
msgstr "Campi profilo extra"
|
394 |
|
395 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
396 |
msgid "Addons"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
400 |
msgid "Register Your Version"
|
401 |
msgstr "Registra la tua Versione"
|
402 |
|
403 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
404 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
405 |
msgid "The information size you were trying to submit was larger than"
|
406 |
msgstr ""
|
407 |
|
408 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
409 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
410 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
411 |
msgstr ""
|
412 |
|
413 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
414 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
415 |
msgid "Since it was also larger than"
|
416 |
msgstr ""
|
417 |
|
418 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
419 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
420 |
msgid "no additional information is available."
|
421 |
msgstr ""
|
422 |
|
@@ -527,13 +534,13 @@ msgid "The avatar was"
|
|
527 |
msgstr ""
|
528 |
|
529 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
530 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
531 |
#, fuzzy
|
532 |
msgid "There was an error while trying to upload the following attachment(s)"
|
533 |
msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
|
534 |
|
535 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
536 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
537 |
msgid "Only files with the following extension(s) can be uploaded:"
|
538 |
msgstr ""
|
539 |
|
@@ -542,7 +549,7 @@ msgid "This file was"
|
|
542 |
msgstr ""
|
543 |
|
544 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
545 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
546 |
msgid "Name"
|
547 |
msgstr "Nome"
|
548 |
|
@@ -582,7 +589,7 @@ msgid "Display name publicly as"
|
|
582 |
msgstr "Nome visualizzato pubblicamente come"
|
583 |
|
584 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
585 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
586 |
msgid "Contact Info"
|
587 |
msgstr "Informazioni di contatto"
|
588 |
|
@@ -591,14 +598,14 @@ msgid "(required)"
|
|
591 |
msgstr "(richiesto)"
|
592 |
|
593 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
594 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
595 |
msgid "About Yourself"
|
596 |
msgstr "Su di te"
|
597 |
|
598 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
600 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
601 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
602 |
msgid "Repeat Password"
|
603 |
msgstr "Ripeti Password"
|
604 |
|
@@ -606,188 +613,191 @@ msgstr "Ripeti Password"
|
|
606 |
msgid "Update"
|
607 |
msgstr "Aggiorna"
|
608 |
|
609 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
610 |
#, fuzzy
|
611 |
msgid "You are currently logged in as"
|
612 |
msgstr "Sei attualmente connesso come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
613 |
|
614 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
615 |
msgid "Log out of this account"
|
616 |
msgstr "Esci da questo account"
|
617 |
|
618 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
619 |
#, fuzzy
|
620 |
msgid "Log out"
|
621 |
msgstr "Log out »"
|
622 |
|
623 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
624 |
#, fuzzy
|
625 |
msgid "You have successfully logged in as"
|
626 |
msgstr "Hai effettuato il login correttamente come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
627 |
|
628 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
629 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
633 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
|
|
|
|
634 |
msgid "here"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
638 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
639 |
msgid "ERROR:"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
643 |
msgid "The username field is empty"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
647 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
648 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
650 |
msgid "Password"
|
651 |
msgstr "Password"
|
652 |
|
653 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
654 |
msgid "Log in"
|
655 |
msgstr "Log in"
|
656 |
|
657 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
658 |
msgid "Remember me"
|
659 |
msgstr "Ricordati di me"
|
660 |
|
661 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
662 |
msgid "Lost password?"
|
663 |
msgstr "Password persa?"
|
664 |
|
665 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
666 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
667 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
668 |
msgid "ERROR"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
672 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
676 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
677 |
msgid "A password reset email has been sent to "
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
681 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
682 |
msgid "Following the link sent in the email address will reset the password."
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
686 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
687 |
msgid "Someone requested that the password be reset for the following account: "
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
691 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
692 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
696 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
697 |
msgid "To reset your password, visit the following link:"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
701 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
702 |
msgid "Password Reset Feature from"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
706 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
707 |
#, fuzzy
|
708 |
msgid "There was an error while trying to send the activation link to "
|
709 |
msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
|
710 |
|
711 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
712 |
#, fuzzy
|
713 |
msgid "The email address entered wasn't found in the database!"
|
714 |
msgstr "L'indirizzo email inserito non è valido. <br/> L'indirizzo e-mail è stato"
|
715 |
|
716 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
717 |
msgid "Please check that you entered the correct email address."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
721 |
msgid "The username entered wasn't found in the database!"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
725 |
msgid "Please check that you entered the correct username."
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
729 |
#, fuzzy
|
730 |
msgid "Your password has been successfully changed!"
|
731 |
msgstr "Le modifiche sono state salvate con successo."
|
732 |
|
733 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
734 |
msgid "You have successfully reset your password to:"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
738 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
739 |
#, fuzzy
|
740 |
msgid "Password Successfully Reset for"
|
741 |
msgstr "\" è stato cancellato con successo."
|
742 |
|
743 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
745 |
msgid "from"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
749 |
msgid "has requested a password change via the password reset feature."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
753 |
msgid "His/her new password is:"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
757 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
758 |
msgid "The entered passwords don't match!"
|
759 |
msgstr "Le password inserite non corrispondono!"
|
760 |
|
761 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
762 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
763 |
#, fuzzy
|
764 |
msgid "Reset Password"
|
765 |
msgstr "Ripeti Password"
|
766 |
|
767 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
768 |
msgid "Invalid key!"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
772 |
#, fuzzy
|
773 |
msgid "Please enter your username or email address."
|
774 |
msgstr "Devi inserire un indirizzo email valido."
|
775 |
|
776 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
777 |
msgid "You will receive a link to create a new password via email."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
781 |
#, fuzzy
|
782 |
msgid "Username or E-mail"
|
783 |
msgstr "Username"
|
784 |
|
785 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
786 |
#, fuzzy
|
787 |
msgid "Get New Password"
|
788 |
msgstr "Nuova Password"
|
789 |
|
790 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
791 |
#, php-format
|
792 |
msgid ""
|
793 |
"To activate your user, please click the following link:\n"
|
@@ -798,230 +808,231 @@ msgid ""
|
|
798 |
"\n"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
802 |
#, php-format
|
803 |
msgid "[%1$s] Activate %2$s"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
807 |
msgid "Invalid activation key!"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
811 |
msgid "The user is already active!"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
815 |
msgid "Could not create user!"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
819 |
#, fuzzy
|
820 |
msgid "That username is already activated!"
|
821 |
msgstr "Ci dispiace, questo nome utente esiste già!"
|
822 |
|
823 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
824 |
#, fuzzy
|
825 |
msgid "The user was successfully activated."
|
826 |
msgstr "L'avatar è stato cancellato con successo."
|
827 |
|
828 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
829 |
#, fuzzy
|
830 |
msgid "There was an error while trying to activate the user."
|
831 |
msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
|
832 |
|
833 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
834 |
msgid "New subscriber on"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
838 |
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!"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
842 |
msgid "A new subscriber has (been) registered!"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
846 |
#, fuzzy
|
847 |
msgid "A new account has been created for you."
|
848 |
msgstr "Un account utente come %1$s è stato creato."
|
849 |
|
850 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
851 |
msgid "Welcome to"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
855 |
msgid "Your username is:"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
859 |
#, fuzzy
|
860 |
msgid "and password:"
|
861 |
msgstr "Password"
|
862 |
|
863 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
864 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
868 |
msgid "The user was NOT created!"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
872 |
msgid "A username is required for registration."
|
873 |
msgstr "E' richiesto un nome utente per la registrazione."
|
874 |
|
875 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
876 |
msgid "Sorry, that username already exists!"
|
877 |
msgstr "Ci dispiace, questo nome utente esiste già!"
|
878 |
|
879 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
880 |
msgid "You must enter a valid email address."
|
881 |
msgstr "Devi inserire un indirizzo email valido."
|
882 |
|
883 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
884 |
msgid "Sorry, that email address is already used!"
|
885 |
msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
|
886 |
|
887 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
888 |
msgid "You didn't complete one of the password-fields!"
|
889 |
msgstr "Non ha completato uno dei campi password!"
|
890 |
|
891 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
892 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
893 |
#, fuzzy
|
894 |
msgid "The account was NOT created!"
|
895 |
msgstr "Un account utente come %1$s è stato creato."
|
896 |
|
897 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
898 |
msgid "You must agree to the terms and conditions before registering!"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
902 |
msgid "(Several required fields were left uncompleted)"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
906 |
msgid "This username is already reserved to be used soon."
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
910 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
911 |
msgid "Please try a different one!"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
915 |
#, fuzzy
|
916 |
msgid "This email address is already reserved to be used soon."
|
917 |
msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
|
918 |
|
919 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
920 |
msgid "You are logged in as"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
924 |
msgid "You don't need another account."
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
928 |
#, fuzzy
|
929 |
msgid "Log out of this account."
|
930 |
msgstr "Esci da questo account"
|
931 |
|
932 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
933 |
#, fuzzy
|
934 |
msgid "Logout"
|
935 |
msgstr "Logout »"
|
936 |
|
937 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
938 |
msgid "An email has been sent to "
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
942 |
msgid "with information on how to activate his/her account"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
946 |
#, fuzzy
|
947 |
msgid "A user account has been created for"
|
948 |
msgstr "Un account utente come %1$s è stato creato."
|
949 |
|
950 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
951 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
955 |
msgid "An email has been sent to you with information on how to activate your account"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
959 |
#, fuzzy
|
960 |
msgid "Thank you for registering"
|
961 |
msgstr "Grazie per esserti registrato, %1$s."
|
962 |
|
963 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
964 |
msgid "An error occured while trying to send the notification email."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
968 |
msgid "An email containing activation instructions was successfully sent."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
972 |
msgid "An email containing the username and password was successfully sent."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
976 |
msgid "Users can register themselves or you can manually create users here."
|
977 |
msgstr "Gli utenti possono registrarsi oppure è possibile creare manualmente gli utenti qui."
|
978 |
|
979 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
980 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
981 |
msgstr "Gli utenti non possono al momento registrarsi, ma è possibile creare manualmente gli utenti qui."
|
982 |
|
983 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
984 |
msgid "Only an administrator can add new users."
|
985 |
msgstr "Solo gli amministratori possono inserire nuovi utenti."
|
986 |
|
987 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
988 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
989 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
990 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
991 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
992 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
993 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
994 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
995 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
996 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1000 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1001 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1002 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1003 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1004 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1005 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1006 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1007 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1008 |
msgid "This field is marked as required by the administrator"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1012 |
msgid "Anti-Spam"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1016 |
#, fuzzy
|
1017 |
msgid "Send these credentials via email."
|
1018 |
msgstr "Invia le mie credenziali via email."
|
1019 |
|
1020 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1021 |
msgid "Add User"
|
1022 |
msgstr "Inserisci utente"
|
1023 |
|
1024 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1025 |
msgid "Register"
|
1026 |
msgstr "Registrati"
|
1027 |
|
@@ -1175,37 +1186,42 @@ msgstr ""
|
|
1175 |
msgid "Save"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
|
1179 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
|
|
1180 |
msgid "Register your version of Profile Builder Pro"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1184 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1188 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1192 |
msgid "Serial Number:"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1196 |
#, fuzzy
|
1197 |
msgid "The serial number was successfully validated!"
|
1198 |
msgstr "L'avatar è stato cancellato con successo."
|
1199 |
|
1200 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1201 |
-
|
|
|
|
|
|
|
|
|
|
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1205 |
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!"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1209 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1210 |
msgstr ""
|
1211 |
|
@@ -1222,116 +1238,116 @@ msgstr ""
|
|
1222 |
msgid "You need to be logged in to view the userlisting!"
|
1223 |
msgstr "Devi essere registrato per modificare il tuo profilo."
|
1224 |
|
1225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1226 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1227 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1228 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1230 |
msgid "Search Users by All Fields"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1234 |
msgid "Leave Blank and Press Search to List All Users"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1238 |
msgid "Search"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1242 |
#, fuzzy
|
1243 |
msgid "First/Lastname"
|
1244 |
msgstr "Nome"
|
1245 |
|
1246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1247 |
#, fuzzy
|
1248 |
msgid "Email"
|
1249 |
msgstr "E-mail:"
|
1250 |
|
1251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1252 |
msgid "Sign-up Date"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1256 |
#, fuzzy
|
1257 |
msgid "Firstname"
|
1258 |
msgstr "Nome"
|
1259 |
|
1260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1261 |
#, fuzzy
|
1262 |
msgid "Lastname"
|
1263 |
msgstr "Cognome"
|
1264 |
|
1265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1266 |
#, fuzzy
|
1267 |
msgid "Display Name"
|
1268 |
msgstr "Nome"
|
1269 |
|
1270 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1271 |
msgid "Posts"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1275 |
msgid "Click here to see more information about this user"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1279 |
msgid "More..."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1283 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1284 |
#, fuzzy
|
1285 |
msgid "No uploaded attachment"
|
1286 |
msgstr "L'allegato \""
|
1287 |
|
1288 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1290 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1291 |
msgid "Click to see the current attachment"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1295 |
msgid "Click here to go back"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1299 |
#, fuzzy
|
1300 |
msgid "Back"
|
1301 |
msgstr "Nero"
|
1302 |
|
1303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1304 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1305 |
msgid "Current file"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1309 |
msgid "Avatar"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1313 |
msgid "No results found!"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1317 |
msgid "«« First"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1321 |
msgid "« Prev"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1325 |
#, fuzzy
|
1326 |
msgid "Next » "
|
1327 |
msgstr "Logout »"
|
1328 |
|
1329 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1330 |
#, fuzzy
|
1331 |
msgid "Last »»"
|
1332 |
msgstr "Logout »"
|
1333 |
|
1334 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1335 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1336 |
msgstr ""
|
1337 |
|
@@ -1373,8 +1389,8 @@ msgid "Custom Redirects"
|
|
1373 |
msgstr ""
|
1374 |
|
1375 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
1376 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
|
1377 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
|
|
1378 |
msgid "reCAPTCHA"
|
1379 |
msgstr ""
|
1380 |
|
@@ -1459,12 +1475,12 @@ msgid "Action"
|
|
1459 |
msgstr ""
|
1460 |
|
1461 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1462 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1463 |
msgid "Redirect"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1467 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1468 |
msgid "URL"
|
1469 |
msgstr ""
|
1470 |
|
@@ -1473,75 +1489,79 @@ msgid "After Registration:"
|
|
1473 |
msgstr ""
|
1474 |
|
1475 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1476 |
-
msgid "After Login:"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1480 |
#, fuzzy
|
1481 |
-
msgid "Recover Password (
|
1482 |
msgstr "Ripeti Password"
|
1483 |
|
1484 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
|
|
|
|
|
|
|
|
1485 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1489 |
msgid "Redirects on default WordPress page requests:"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1493 |
msgid "Requested WP Page"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1497 |
msgid "Default WP Login Page(*)"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1501 |
msgid "Default WP Logout Page(**)"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1505 |
msgid "Default WP Register Page"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1509 |
msgid "Default WP Dashboard (***)"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1513 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1517 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1521 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1525 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1529 |
msgid "For this you must get a public and private key from Google:"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1533 |
msgid "Key"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1537 |
msgid "Code"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1541 |
msgid "Public Key:"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1545 |
msgid "Private Key:"
|
1546 |
msgstr ""
|
1547 |
|
@@ -1566,87 +1586,87 @@ msgstr ""
|
|
1566 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1570 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1571 |
#, fuzzy
|
1572 |
msgid "You must give your option a title."
|
1573 |
msgstr "Devi essere registrato per modificare il tuo profilo."
|
1574 |
|
1575 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1576 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1577 |
msgid "You have entered an invalid meta-key format!"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1581 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1582 |
#, fuzzy
|
1583 |
msgid "You must enter a valid meta-key."
|
1584 |
msgstr "Devi inserire un indirizzo email valido."
|
1585 |
|
1586 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1587 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1588 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1589 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1590 |
msgid "That meta-key is already in use."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1594 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1595 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1600 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1604 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1605 |
msgid "The textarea row value must be numeric."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1609 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1610 |
msgid "The maxlength attribute must be numeric."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1614 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1615 |
msgid "The value must be between 20 and 200!"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1619 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1620 |
msgid "The width component of the entered value must be numeric!"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1624 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1625 |
msgid "The height component of the entered value must be numeric!"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1629 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1630 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1634 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1635 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1639 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1640 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1644 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1645 |
msgid "The entered avatar size must be numeric!"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1650 |
msgid "There was an error, please try again."
|
1651 |
msgstr ""
|
1652 |
|
@@ -1720,75 +1740,120 @@ msgstr ""
|
|
1720 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1724 |
msgid "Do you want to"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1728 |
msgid "the current user?"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1732 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1733 |
msgid "Your account on"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1737 |
msgid "has been approved!"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1741 |
msgid "An administrator has just approved your account on"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1745 |
msgid "has been unapproved!"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1749 |
msgid "An administrator has just unapproved your account on"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1753 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1754 |
msgid "Approve"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1758 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1759 |
msgid "Unapproved"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1763 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1764 |
msgid "Unapprove"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1768 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1769 |
msgid "Approved"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1773 |
msgid "unapprove"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1777 |
msgid "approve"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1781 |
msgid "Are you sure you want to"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1785 |
msgid "this user?"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1789 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1790 |
msgstr ""
|
1791 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1792 |
#~ msgid "Plugin Layout"
|
1793 |
#~ msgstr "Plugin Layout"
|
1794 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-02 16:15+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-10-02 16:15+0200\n"
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
+
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabi\\Desktop\\test\\profile-builder-pro\n"
|
|
|
15 |
|
16 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
100 |
msgstr ""
|
101 |
|
102 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
103 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
|
104 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
105 |
msgid "NOTE:"
|
106 |
msgstr "NOTA:"
|
107 |
|
117 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
118 |
msgstr "dal back-end, mentre i campi personalizzati saranno visibili solo nel front-end."
|
119 |
|
120 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
|
121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:69
|
122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
|
123 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
124 |
msgid "General Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
|
128 |
#, fuzzy
|
129 |
msgid "Stylesheet Used on the Front-End:"
|
130 |
msgstr "Stylesheet usato:"
|
131 |
|
132 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:72
|
133 |
msgid "Default"
|
134 |
msgstr "Default"
|
135 |
|
136 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
|
137 |
msgid "White"
|
138 |
msgstr "Bianco"
|
139 |
|
140 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:77
|
141 |
msgid "Black"
|
142 |
msgstr "Nero"
|
143 |
|
144 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:81
|
145 |
msgid "None"
|
146 |
msgstr "Nessuno"
|
147 |
|
148 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:87
|
149 |
msgid "\"Email Confirmation\" Feature Activated:"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
|
153 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:99
|
154 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
|
155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
|
156 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:238
|
157 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:251
|
158 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:264
|
159 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:283
|
160 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:296
|
161 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:312
|
162 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:325
|
163 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:338
|
164 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:357
|
165 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:371
|
166 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
167 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
169 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
|
170 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
|
171 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
|
172 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
|
173 |
msgid "Yes"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:90
|
177 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:100
|
178 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:213
|
179 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:226
|
180 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:239
|
181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:252
|
182 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:265
|
183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:284
|
184 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:297
|
185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:313
|
186 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:326
|
187 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:339
|
188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:358
|
189 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:372
|
190 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
191 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:526
|
194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:538
|
195 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:550
|
196 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:562
|
197 |
#, fuzzy
|
198 |
msgid "No"
|
199 |
msgstr "Nessuno"
|
200 |
|
201 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
|
202 |
msgid "\"Admin Approval\" Feature Activated:"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
|
206 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
|
210 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
|
214 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:116
|
218 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
|
219 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:380
|
220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:256
|
221 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
222 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
223 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:576
|
224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:630
|
225 |
msgid "Save Changes"
|
226 |
msgstr "Salva modifiche"
|
227 |
|
228 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:134
|
229 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:135
|
230 |
msgid "Show/Hide the Admin Bar on Front End"
|
231 |
msgstr "Mostra / Nascondi la barra di amministrazione di Front End"
|
232 |
|
233 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:139
|
234 |
msgid "User-group"
|
235 |
msgstr "Gruppi di utenti"
|
236 |
|
237 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:140
|
238 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:193
|
239 |
msgid "Visibility"
|
240 |
msgstr "Visibilità"
|
241 |
|
242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:149
|
243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
|
244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
|
245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
|
246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
|
247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
|
248 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:279
|
249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:292
|
250 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
|
251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
|
252 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:334
|
253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:353
|
254 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:367
|
255 |
msgid "Show"
|
256 |
msgstr "Mostra"
|
257 |
|
258 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:150
|
259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:209
|
260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:222
|
261 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:235
|
262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:248
|
263 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:261
|
264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:280
|
265 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:293
|
266 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:309
|
267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:322
|
268 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:335
|
269 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:354
|
270 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:368
|
271 |
msgid "Hide"
|
272 |
msgstr "Nascondi"
|
273 |
|
274 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:162
|
275 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:187
|
279 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:188
|
280 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:61
|
281 |
msgid "Default Profile Fields"
|
282 |
msgstr "Campi profilo di default"
|
283 |
|
284 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
|
285 |
msgid "Input Field Name"
|
286 |
msgstr "Inserisci campo nome"
|
287 |
|
288 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:194
|
289 |
#, fuzzy
|
290 |
msgid "Required"
|
291 |
msgstr "(richiesto)"
|
292 |
|
293 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:199
|
294 |
msgid "Name:"
|
295 |
msgstr "Nome:"
|
296 |
|
297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:205
|
298 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:169
|
300 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
301 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
302 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:122
|
303 |
msgid "Username"
|
304 |
msgstr "Username"
|
305 |
|
306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:218
|
307 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
308 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
309 |
msgid "First Name"
|
310 |
msgstr "Nome"
|
311 |
|
312 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:231
|
313 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
315 |
msgid "Last Name"
|
316 |
msgstr "Cognome"
|
317 |
|
318 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:244
|
319 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
321 |
msgid "Nickname"
|
322 |
msgstr "Nickname"
|
323 |
|
324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:257
|
325 |
msgid "Display name publicly as..."
|
326 |
msgstr "Nome visualizzato pubblicamente come ..."
|
327 |
|
328 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:270
|
329 |
msgid "Contact Info:"
|
330 |
msgstr "Informazioni di contatto:"
|
331 |
|
332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:276
|
333 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
334 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
335 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
336 |
msgid "E-mail"
|
337 |
msgstr "E-mail:"
|
338 |
|
339 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:289
|
340 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
341 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
342 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:164
|
343 |
msgid "Website"
|
344 |
msgstr "Sito web:"
|
345 |
|
346 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:305
|
347 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
348 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
349 |
msgid "AIM"
|
350 |
msgstr "AIM"
|
351 |
|
352 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:318
|
353 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
354 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
355 |
msgid "Yahoo IM"
|
356 |
msgstr "Yahoo IM"
|
357 |
|
358 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:331
|
359 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
360 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
361 |
msgid "Jabber / Google Talk"
|
362 |
msgstr "Google Talk"
|
363 |
|
364 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:344
|
365 |
msgid "About Yourself:"
|
366 |
msgstr "Su di te:"
|
367 |
|
368 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:350
|
369 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
370 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
371 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:170
|
372 |
msgid "Biographical Info"
|
373 |
msgstr "Informazioni biografiche"
|
374 |
|
375 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:364
|
376 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
377 |
msgid "New Password"
|
378 |
msgstr "Nuova Password"
|
379 |
|
380 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:36
|
381 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive access to automatic updates and support. Need a license key? <a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>Purchase one now</a>"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:38
|
385 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</a> to receive access to automatic updates and priority support. <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>Purchase one now</a>"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
|
389 |
msgid "Basic Information"
|
390 |
msgstr "Informazioni di base"
|
391 |
|
392 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
|
393 |
msgid "Show/Hide the Admin Bar on Front-end"
|
394 |
msgstr "Mostra / Nascondi la barra di amministrazione di front-end"
|
395 |
|
396 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:67
|
397 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
398 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
399 |
msgid "Extra Profile Fields"
|
400 |
msgstr "Campi profilo extra"
|
401 |
|
402 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:70
|
403 |
msgid "Addons"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:73
|
407 |
msgid "Register Your Version"
|
408 |
msgstr "Registra la tua Versione"
|
409 |
|
410 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
411 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
412 |
msgid "The information size you were trying to submit was larger than"
|
413 |
msgstr ""
|
414 |
|
415 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
416 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
417 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
418 |
msgstr ""
|
419 |
|
420 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
421 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
422 |
msgid "Since it was also larger than"
|
423 |
msgstr ""
|
424 |
|
425 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
426 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
427 |
msgid "no additional information is available."
|
428 |
msgstr ""
|
429 |
|
534 |
msgstr ""
|
535 |
|
536 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
537 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
538 |
#, fuzzy
|
539 |
msgid "There was an error while trying to upload the following attachment(s)"
|
540 |
msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
|
541 |
|
542 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
543 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
544 |
msgid "Only files with the following extension(s) can be uploaded:"
|
545 |
msgstr ""
|
546 |
|
549 |
msgstr ""
|
550 |
|
551 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
553 |
msgid "Name"
|
554 |
msgstr "Nome"
|
555 |
|
589 |
msgstr "Nome visualizzato pubblicamente come"
|
590 |
|
591 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
592 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
593 |
msgid "Contact Info"
|
594 |
msgstr "Informazioni di contatto"
|
595 |
|
598 |
msgstr "(richiesto)"
|
599 |
|
600 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
602 |
msgid "About Yourself"
|
603 |
msgstr "Su di te"
|
604 |
|
605 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
609 |
msgid "Repeat Password"
|
610 |
msgstr "Ripeti Password"
|
611 |
|
613 |
msgid "Update"
|
614 |
msgstr "Aggiorna"
|
615 |
|
616 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:61
|
617 |
#, fuzzy
|
618 |
msgid "You are currently logged in as"
|
619 |
msgstr "Sei attualmente connesso come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
620 |
|
621 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
622 |
msgid "Log out of this account"
|
623 |
msgstr "Esci da questo account"
|
624 |
|
625 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
626 |
#, fuzzy
|
627 |
msgid "Log out"
|
628 |
msgstr "Log out »"
|
629 |
|
630 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:80
|
631 |
#, fuzzy
|
632 |
msgid "You have successfully logged in as"
|
633 |
msgstr "Hai effettuato il login correttamente come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
634 |
|
635 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
636 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
637 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
641 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
642 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
644 |
msgid "here"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
649 |
msgid "ERROR:"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
653 |
msgid "The username field is empty"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:177
|
657 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
659 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
660 |
msgid "Password"
|
661 |
msgstr "Password"
|
662 |
|
663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
664 |
msgid "Log in"
|
665 |
msgstr "Log in"
|
666 |
|
667 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:189
|
668 |
msgid "Remember me"
|
669 |
msgstr "Ricordati di me"
|
670 |
|
671 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:204
|
672 |
msgid "Lost password?"
|
673 |
msgstr "Password persa?"
|
674 |
|
675 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
676 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
677 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
678 |
msgid "ERROR"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
682 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
686 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
687 |
msgid "A password reset email has been sent to "
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
691 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
692 |
msgid "Following the link sent in the email address will reset the password."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
696 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
697 |
msgid "Someone requested that the password be reset for the following account: "
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
701 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
702 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
706 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
707 |
msgid "To reset your password, visit the following link:"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
711 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
712 |
msgid "Password Reset Feature from"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
716 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
717 |
#, fuzzy
|
718 |
msgid "There was an error while trying to send the activation link to "
|
719 |
msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
|
720 |
|
721 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
722 |
#, fuzzy
|
723 |
msgid "The email address entered wasn't found in the database!"
|
724 |
msgstr "L'indirizzo email inserito non è valido. <br/> L'indirizzo e-mail è stato"
|
725 |
|
726 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
727 |
msgid "Please check that you entered the correct email address."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
731 |
msgid "The username entered wasn't found in the database!"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
735 |
msgid "Please check that you entered the correct username."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
739 |
#, fuzzy
|
740 |
msgid "Your password has been successfully changed!"
|
741 |
msgstr "Le modifiche sono state salvate con successo."
|
742 |
|
743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
744 |
msgid "You have successfully reset your password to:"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
748 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
749 |
#, fuzzy
|
750 |
msgid "Password Successfully Reset for"
|
751 |
msgstr "\" è stato cancellato con successo."
|
752 |
|
753 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
754 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
755 |
msgid "from"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
759 |
msgid "has requested a password change via the password reset feature."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
763 |
msgid "His/her new password is:"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
767 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
768 |
msgid "The entered passwords don't match!"
|
769 |
msgstr "Le password inserite non corrispondono!"
|
770 |
|
771 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
773 |
#, fuzzy
|
774 |
msgid "Reset Password"
|
775 |
msgstr "Ripeti Password"
|
776 |
|
777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
778 |
msgid "Invalid key!"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
782 |
#, fuzzy
|
783 |
msgid "Please enter your username or email address."
|
784 |
msgstr "Devi inserire un indirizzo email valido."
|
785 |
|
786 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
787 |
msgid "You will receive a link to create a new password via email."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
791 |
#, fuzzy
|
792 |
msgid "Username or E-mail"
|
793 |
msgstr "Username"
|
794 |
|
795 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
796 |
#, fuzzy
|
797 |
msgid "Get New Password"
|
798 |
msgstr "Nuova Password"
|
799 |
|
800 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
801 |
#, php-format
|
802 |
msgid ""
|
803 |
"To activate your user, please click the following link:\n"
|
808 |
"\n"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
812 |
#, php-format
|
813 |
msgid "[%1$s] Activate %2$s"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
817 |
msgid "Invalid activation key!"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
821 |
msgid "The user is already active!"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
825 |
msgid "Could not create user!"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
829 |
#, fuzzy
|
830 |
msgid "That username is already activated!"
|
831 |
msgstr "Ci dispiace, questo nome utente esiste già!"
|
832 |
|
833 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
834 |
#, fuzzy
|
835 |
msgid "The user was successfully activated."
|
836 |
msgstr "L'avatar è stato cancellato con successo."
|
837 |
|
838 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
839 |
#, fuzzy
|
840 |
msgid "There was an error while trying to activate the user."
|
841 |
msgstr "Si è verificato un errore durante il tentativo di caricare i seguenti allegati: <br/>"
|
842 |
|
843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
844 |
msgid "New subscriber on"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
848 |
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!"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
852 |
msgid "A new subscriber has (been) registered!"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
856 |
#, fuzzy
|
857 |
msgid "A new account has been created for you."
|
858 |
msgstr "Un account utente come %1$s è stato creato."
|
859 |
|
860 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
861 |
msgid "Welcome to"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
865 |
msgid "Your username is:"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
869 |
#, fuzzy
|
870 |
msgid "and password:"
|
871 |
msgstr "Password"
|
872 |
|
873 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
874 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
878 |
msgid "The user was NOT created!"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
882 |
msgid "A username is required for registration."
|
883 |
msgstr "E' richiesto un nome utente per la registrazione."
|
884 |
|
885 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
886 |
msgid "Sorry, that username already exists!"
|
887 |
msgstr "Ci dispiace, questo nome utente esiste già!"
|
888 |
|
889 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
890 |
msgid "You must enter a valid email address."
|
891 |
msgstr "Devi inserire un indirizzo email valido."
|
892 |
|
893 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
894 |
msgid "Sorry, that email address is already used!"
|
895 |
msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
|
896 |
|
897 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
898 |
msgid "You didn't complete one of the password-fields!"
|
899 |
msgstr "Non ha completato uno dei campi password!"
|
900 |
|
901 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
902 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
903 |
#, fuzzy
|
904 |
msgid "The account was NOT created!"
|
905 |
msgstr "Un account utente come %1$s è stato creato."
|
906 |
|
907 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
908 |
msgid "You must agree to the terms and conditions before registering!"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
912 |
msgid "(Several required fields were left uncompleted)"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
916 |
msgid "This username is already reserved to be used soon."
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
920 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
921 |
msgid "Please try a different one!"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
925 |
#, fuzzy
|
926 |
msgid "This email address is already reserved to be used soon."
|
927 |
msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
|
928 |
|
929 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
930 |
msgid "You are logged in as"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
934 |
msgid "You don't need another account."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
938 |
#, fuzzy
|
939 |
msgid "Log out of this account."
|
940 |
msgstr "Esci da questo account"
|
941 |
|
942 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
943 |
#, fuzzy
|
944 |
msgid "Logout"
|
945 |
msgstr "Logout »"
|
946 |
|
947 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
948 |
msgid "An email has been sent to "
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
952 |
msgid "with information on how to activate his/her account"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1173
|
956 |
#, fuzzy
|
957 |
msgid "A user account has been created for"
|
958 |
msgstr "Un account utente come %1$s è stato creato."
|
959 |
|
960 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
961 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
962 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
966 |
msgid "An email has been sent to you with information on how to activate your account"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
970 |
#, fuzzy
|
971 |
msgid "Thank you for registering"
|
972 |
msgstr "Grazie per esserti registrato, %1$s."
|
973 |
|
974 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
975 |
msgid "An error occured while trying to send the notification email."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
979 |
msgid "An email containing activation instructions was successfully sent."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
983 |
msgid "An email containing the username and password was successfully sent."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
987 |
msgid "Users can register themselves or you can manually create users here."
|
988 |
msgstr "Gli utenti possono registrarsi oppure è possibile creare manualmente gli utenti qui."
|
989 |
|
990 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
991 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
992 |
msgstr "Gli utenti non possono al momento registrarsi, ma è possibile creare manualmente gli utenti qui."
|
993 |
|
994 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
995 |
msgid "Only an administrator can add new users."
|
996 |
msgstr "Solo gli amministratori possono inserire nuovi utenti."
|
997 |
|
998 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
999 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
1000 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
1001 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
1002 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
1003 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
1004 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
1005 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
1006 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
1007 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
1011 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
1012 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
1013 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
1014 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
1015 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
1016 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
1017 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
1018 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
1019 |
msgid "This field is marked as required by the administrator"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
1023 |
msgid "Anti-Spam"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
1027 |
#, fuzzy
|
1028 |
msgid "Send these credentials via email."
|
1029 |
msgstr "Invia le mie credenziali via email."
|
1030 |
|
1031 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1032 |
msgid "Add User"
|
1033 |
msgstr "Inserisci utente"
|
1034 |
|
1035 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1036 |
msgid "Register"
|
1037 |
msgstr "Registrati"
|
1038 |
|
1186 |
msgid "Save"
|
1187 |
msgstr ""
|
1188 |
|
|
|
1189 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
1190 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
|
1191 |
msgid "Register your version of Profile Builder Pro"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
|
1195 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
|
1199 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:234
|
1203 |
msgid "Serial Number:"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:238
|
1207 |
#, fuzzy
|
1208 |
msgid "The serial number was successfully validated!"
|
1209 |
msgstr "L'avatar è stato cancellato con successo."
|
1210 |
|
1211 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:240
|
1212 |
+
#, fuzzy
|
1213 |
+
msgid "The serial number entered couldn't be validated!"
|
1214 |
+
msgstr "L'avatar è stato cancellato con successo."
|
1215 |
+
|
1216 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:242
|
1217 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:244
|
1221 |
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!"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:250
|
1225 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1226 |
msgstr ""
|
1227 |
|
1238 |
msgid "You need to be logged in to view the userlisting!"
|
1239 |
msgstr "Devi essere registrato per modificare il tuo profilo."
|
1240 |
|
1241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:67
|
1242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:93
|
1243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:909
|
1245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:996
|
1246 |
msgid "Search Users by All Fields"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1250 |
msgid "Leave Blank and Press Search to List All Users"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:115
|
1254 |
msgid "Search"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
|
1258 |
#, fuzzy
|
1259 |
msgid "First/Lastname"
|
1260 |
msgstr "Nome"
|
1261 |
|
1262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:134
|
1263 |
#, fuzzy
|
1264 |
msgid "Email"
|
1265 |
msgstr "E-mail:"
|
1266 |
|
1267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:140
|
1268 |
msgid "Sign-up Date"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:146
|
1272 |
#, fuzzy
|
1273 |
msgid "Firstname"
|
1274 |
msgstr "Nome"
|
1275 |
|
1276 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:152
|
1277 |
#, fuzzy
|
1278 |
msgid "Lastname"
|
1279 |
msgstr "Cognome"
|
1280 |
|
1281 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:158
|
1282 |
#, fuzzy
|
1283 |
msgid "Display Name"
|
1284 |
msgstr "Nome"
|
1285 |
|
1286 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:176
|
1287 |
msgid "Posts"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1291 |
msgid "Click here to see more information about this user"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1295 |
msgid "More..."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:401
|
1299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1300 |
#, fuzzy
|
1301 |
msgid "No uploaded attachment"
|
1302 |
msgstr "L'allegato \""
|
1303 |
|
1304 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:403
|
1305 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:744
|
1307 |
msgid "Click to see the current attachment"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1311 |
msgid "Click here to go back"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1315 |
#, fuzzy
|
1316 |
msgid "Back"
|
1317 |
msgstr "Nero"
|
1318 |
|
1319 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1321 |
msgid "Current file"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:742
|
1325 |
msgid "Avatar"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:799
|
1329 |
msgid "No results found!"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:892
|
1333 |
msgid "«« First"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:893
|
1337 |
msgid "« Prev"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:894
|
1341 |
#, fuzzy
|
1342 |
msgid "Next » "
|
1343 |
msgstr "Logout »"
|
1344 |
|
1345 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
|
1346 |
#, fuzzy
|
1347 |
msgid "Last »»"
|
1348 |
msgstr "Logout »"
|
1349 |
|
1350 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1247
|
1351 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1352 |
msgstr ""
|
1353 |
|
1389 |
msgstr ""
|
1390 |
|
1391 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
|
|
1392 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
1393 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:602
|
1394 |
msgid "reCAPTCHA"
|
1395 |
msgstr ""
|
1396 |
|
1475 |
msgstr ""
|
1476 |
|
1477 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1478 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
|
1479 |
msgid "Redirect"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1483 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:517
|
1484 |
msgid "URL"
|
1485 |
msgstr ""
|
1486 |
|
1489 |
msgstr ""
|
1490 |
|
1491 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1492 |
+
msgid "After Login (*):"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1496 |
#, fuzzy
|
1497 |
+
msgid "Recover Password (**)"
|
1498 |
msgstr "Ripeti Password"
|
1499 |
|
1500 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
1501 |
+
msgid "Does not."
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:504
|
1505 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:509
|
1509 |
msgid "Redirects on default WordPress page requests:"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
|
1513 |
msgid "Requested WP Page"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:522
|
1517 |
msgid "Default WP Login Page(*)"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:534
|
1521 |
msgid "Default WP Logout Page(**)"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:546
|
1525 |
msgid "Default WP Register Page"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:558
|
1529 |
msgid "Default WP Dashboard (***)"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
|
1533 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
|
1537 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:571
|
1541 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
|
1545 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:607
|
1549 |
msgid "For this you must get a public and private key from Google:"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
|
1553 |
msgid "Key"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:614
|
1557 |
msgid "Code"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:618
|
1561 |
msgid "Public Key:"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:622
|
1565 |
msgid "Private Key:"
|
1566 |
msgstr ""
|
1567 |
|
1586 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:279
|
1590 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:422
|
1591 |
#, fuzzy
|
1592 |
msgid "You must give your option a title."
|
1593 |
msgstr "Devi essere registrato per modificare il tuo profilo."
|
1594 |
|
1595 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
|
1596 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
|
1597 |
msgid "You have entered an invalid meta-key format!"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
|
1601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
|
1602 |
#, fuzzy
|
1603 |
msgid "You must enter a valid meta-key."
|
1604 |
msgstr "Devi inserire un indirizzo email valido."
|
1605 |
|
1606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:293
|
1607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
|
1608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:440
|
1609 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:452
|
1610 |
msgid "That meta-key is already in use."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1614 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:460
|
1615 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1619 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1620 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1624 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1625 |
msgid "The textarea row value must be numeric."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
|
1629 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
|
1630 |
msgid "The maxlength attribute must be numeric."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1634 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1635 |
msgid "The value must be between 20 and 200!"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1639 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1640 |
msgid "The width component of the entered value must be numeric!"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1644 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1645 |
msgid "The height component of the entered value must be numeric!"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
|
1649 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
|
1650 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
|
1654 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
|
1655 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
|
1659 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
|
1660 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1664 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1665 |
msgid "The entered avatar size must be numeric!"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:383
|
1669 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:559
|
1670 |
msgid "There was an error, please try again."
|
1671 |
msgstr ""
|
1672 |
|
1740 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1744 |
msgid "Do you want to"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1748 |
msgid "the current user?"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1752 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1753 |
msgid "Your account on"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1757 |
msgid "has been approved!"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:546
|
1761 |
msgid "An administrator has just approved your account on"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1765 |
msgid "has been unapproved!"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:550
|
1769 |
msgid "An administrator has just unapproved your account on"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:614
|
1773 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:660
|
1774 |
msgid "Approve"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:615
|
1778 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:705
|
1779 |
msgid "Unapproved"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:626
|
1783 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:656
|
1784 |
msgid "Unapprove"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:627
|
1788 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:702
|
1789 |
msgid "Approved"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:655
|
1793 |
msgid "unapprove"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:659
|
1797 |
msgid "approve"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1801 |
msgid "Are you sure you want to"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1805 |
msgid "this user?"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:724
|
1809 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:819
|
1813 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:824
|
1817 |
+
#, fuzzy
|
1818 |
+
msgid "Profile Builder Login Widget"
|
1819 |
+
msgstr "Profile Builder"
|
1820 |
+
|
1821 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:853
|
1822 |
+
msgid "Don't have an account?"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:860
|
1826 |
+
#, fuzzy
|
1827 |
+
msgid "Lost Your Password?"
|
1828 |
+
msgstr "Password persa?"
|
1829 |
+
|
1830 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:889
|
1831 |
+
#, fuzzy
|
1832 |
+
msgid "Login"
|
1833 |
+
msgstr "Log in"
|
1834 |
+
|
1835 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:898
|
1836 |
+
msgid "After login redirect URL:"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:903
|
1840 |
+
msgid "Register page URL (optional)"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:908
|
1844 |
+
msgid "Password Recovery page URL (optional)"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:985
|
1848 |
+
#, php-format
|
1849 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please %sregister your copy%s of Profile Builder to receive access to automatic updates and support. Need a license key? %sPurchase one now%s %sDismiss%s"
|
1850 |
+
msgstr ""
|
1851 |
+
|
1852 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:987
|
1853 |
+
#, php-format
|
1854 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please %sRenew Your Licence%s to receive access to automatic updates and priority support. %sPurchase one now%s %sDismiss%s"
|
1855 |
+
msgstr ""
|
1856 |
+
|
1857 |
#~ msgid "Plugin Layout"
|
1858 |
#~ msgstr "Plugin Layout"
|
1859 |
|
translation/profilebuilder-nb_NO.mo
CHANGED
Binary file
|
translation/profilebuilder-nb_NO.po
CHANGED
@@ -1,18 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
-
"X-Poedit-Basepath:
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
|
16 |
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
18 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
@@ -101,8 +100,8 @@ msgid "shortcode."
|
|
101 |
msgstr ""
|
102 |
|
103 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
104 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
105 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
106 |
msgid "NOTE:"
|
107 |
msgstr "MERK:"
|
108 |
|
@@ -118,305 +117,313 @@ msgstr "Standard informasjonsfelter vil fortsatt bli synlige "
|
|
118 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
119 |
msgstr "fra back-end, vil skreddersydde felter kun bli synlige på front-end"
|
120 |
|
121 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
122 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
123 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
124 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
125 |
msgid "General Settings"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
129 |
#, fuzzy
|
130 |
msgid "Stylesheet Used on the Front-End:"
|
131 |
msgstr "Styelsheet brukt:"
|
132 |
|
133 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
134 |
msgid "Default"
|
135 |
msgstr "Standard"
|
136 |
|
137 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
138 |
msgid "White"
|
139 |
msgstr "Hvit"
|
140 |
|
141 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
142 |
msgid "Black"
|
143 |
msgstr "Svart"
|
144 |
|
145 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
146 |
msgid "None"
|
147 |
msgstr "Ingen"
|
148 |
|
149 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
150 |
msgid "\"Email Confirmation\" Feature Activated:"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
154 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
155 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
156 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
157 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
158 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
159 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
160 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
161 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
162 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
163 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
164 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
165 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
166 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
167 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
169 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
170 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
171 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
172 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
173 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
174 |
msgid "Yes"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
180 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
182 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
184 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
186 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
188 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
189 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
190 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
191 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
193 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
194 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
196 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
197 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
198 |
#, fuzzy
|
199 |
msgid "No"
|
200 |
msgstr "Ingen"
|
201 |
|
202 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
203 |
msgid "\"Admin Approval\" Feature Activated:"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
207 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
211 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
215 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
219 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
220 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
222 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
223 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
224 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
226 |
msgid "Save Changes"
|
227 |
msgstr "Lagre endringer"
|
228 |
|
229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
230 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
231 |
msgid "Show/Hide the Admin Bar on Front End"
|
232 |
msgstr "Vis/Skjul administratormeny på front-end"
|
233 |
|
234 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
235 |
msgid "User-group"
|
236 |
msgstr "Brukergruppe"
|
237 |
|
238 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
239 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
240 |
msgid "Visibility"
|
241 |
msgstr "Synlighet"
|
242 |
|
243 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
244 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
245 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
247 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
248 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
249 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
250 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
252 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
253 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
254 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
256 |
msgid "Show"
|
257 |
msgstr "Vis"
|
258 |
|
259 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
261 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
262 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
263 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
264 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
266 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
267 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
268 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
269 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
270 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
271 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
272 |
msgid "Hide"
|
273 |
msgstr "Skjul"
|
274 |
|
275 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
276 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
280 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
281 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
282 |
msgid "Default Profile Fields"
|
283 |
msgstr "Grunnleggende felter"
|
284 |
|
285 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
286 |
msgid "Input Field Name"
|
287 |
msgstr "Sett inn feltnavn"
|
288 |
|
289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
290 |
#, fuzzy
|
291 |
msgid "Required"
|
292 |
msgstr "(påkrevd)"
|
293 |
|
294 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
295 |
msgid "Name:"
|
296 |
msgstr "Navn:"
|
297 |
|
298 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
299 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
300 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
301 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
302 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
304 |
msgid "Username"
|
305 |
msgstr "Brukernavn"
|
306 |
|
307 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
308 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
309 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
310 |
msgid "First Name"
|
311 |
msgstr "Fornavn"
|
312 |
|
313 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
314 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
315 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
316 |
msgid "Last Name"
|
317 |
msgstr "Etternavn"
|
318 |
|
319 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
320 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
321 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
322 |
msgid "Nickname"
|
323 |
msgstr "Kallenavn"
|
324 |
|
325 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
326 |
msgid "Display name publicly as..."
|
327 |
msgstr "Vis mitt navn offentlig som"
|
328 |
|
329 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
330 |
msgid "Contact Info:"
|
331 |
msgstr "Kontaktinformasjon"
|
332 |
|
333 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
334 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
335 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
336 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
337 |
msgid "E-mail"
|
338 |
msgstr "E-post"
|
339 |
|
340 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
341 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
342 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
343 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
344 |
msgid "Website"
|
345 |
msgstr "Nettside"
|
346 |
|
347 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
348 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
349 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
350 |
msgid "AIM"
|
351 |
msgstr "AIM"
|
352 |
|
353 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
354 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
355 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
356 |
msgid "Yahoo IM"
|
357 |
msgstr "Yahoo IM"
|
358 |
|
359 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
360 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
361 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
362 |
msgid "Jabber / Google Talk"
|
363 |
msgstr "Jabber / Google Talk"
|
364 |
|
365 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
366 |
msgid "About Yourself:"
|
367 |
msgstr "Om meg selv:"
|
368 |
|
369 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
370 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
371 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
372 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
373 |
msgid "Biographical Info"
|
374 |
msgstr "Litt om meg selv"
|
375 |
|
376 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
377 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
378 |
msgid "New Password"
|
379 |
msgstr "Nytt passord"
|
380 |
|
381 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
msgid "Basic Information"
|
383 |
msgstr "Grunnleggende informasjon"
|
384 |
|
385 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
386 |
msgid "Show/Hide the Admin Bar on Front-end"
|
387 |
msgstr "Vis/skjul administratormenyen fra front-end"
|
388 |
|
389 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
390 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
391 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
392 |
msgid "Extra Profile Fields"
|
393 |
msgstr "Ekstra profilfelter"
|
394 |
|
395 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
396 |
msgid "Addons"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
400 |
msgid "Register Your Version"
|
401 |
msgstr "Registrer din versjon"
|
402 |
|
403 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
404 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
405 |
msgid "The information size you were trying to submit was larger than"
|
406 |
msgstr ""
|
407 |
|
408 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
409 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
410 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
411 |
msgstr ""
|
412 |
|
413 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
414 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
415 |
msgid "Since it was also larger than"
|
416 |
msgstr ""
|
417 |
|
418 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
419 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
420 |
msgid "no additional information is available."
|
421 |
msgstr ""
|
422 |
|
@@ -527,13 +534,13 @@ msgid "The avatar was"
|
|
527 |
msgstr ""
|
528 |
|
529 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
530 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
531 |
#, fuzzy
|
532 |
msgid "There was an error while trying to upload the following attachment(s)"
|
533 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
534 |
|
535 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
536 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
537 |
msgid "Only files with the following extension(s) can be uploaded:"
|
538 |
msgstr ""
|
539 |
|
@@ -542,7 +549,7 @@ msgid "This file was"
|
|
542 |
msgstr ""
|
543 |
|
544 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
545 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
546 |
msgid "Name"
|
547 |
msgstr "Navn"
|
548 |
|
@@ -582,7 +589,7 @@ msgid "Display name publicly as"
|
|
582 |
msgstr "Vis mitt navn offentlig som"
|
583 |
|
584 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
585 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
586 |
msgid "Contact Info"
|
587 |
msgstr "Kontaktinformasjon"
|
588 |
|
@@ -591,14 +598,14 @@ msgid "(required)"
|
|
591 |
msgstr "(påkrevd)"
|
592 |
|
593 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
594 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
595 |
msgid "About Yourself"
|
596 |
msgstr "Om deg selv"
|
597 |
|
598 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
600 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
601 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
602 |
msgid "Repeat Password"
|
603 |
msgstr "Gjenta passord"
|
604 |
|
@@ -606,188 +613,191 @@ msgstr "Gjenta passord"
|
|
606 |
msgid "Update"
|
607 |
msgstr "Oppdater"
|
608 |
|
609 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
610 |
#, fuzzy
|
611 |
msgid "You are currently logged in as"
|
612 |
msgstr "Du er logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
613 |
|
614 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
615 |
msgid "Log out of this account"
|
616 |
msgstr "Logg ut av denne kontoen"
|
617 |
|
618 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
619 |
#, fuzzy
|
620 |
msgid "Log out"
|
621 |
msgstr "Logg ut »"
|
622 |
|
623 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
624 |
#, fuzzy
|
625 |
msgid "You have successfully logged in as"
|
626 |
msgstr "Du har logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
627 |
|
628 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
629 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
633 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
|
|
|
|
634 |
msgid "here"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
638 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
639 |
msgid "ERROR:"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
643 |
msgid "The username field is empty"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
647 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
648 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
650 |
msgid "Password"
|
651 |
msgstr "Passord"
|
652 |
|
653 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
654 |
msgid "Log in"
|
655 |
msgstr "Logg inn"
|
656 |
|
657 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
658 |
msgid "Remember me"
|
659 |
msgstr "Husk meg"
|
660 |
|
661 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
662 |
msgid "Lost password?"
|
663 |
msgstr "Mistet passordet?"
|
664 |
|
665 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
666 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
667 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
668 |
msgid "ERROR"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
672 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
676 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
677 |
msgid "A password reset email has been sent to "
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
681 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
682 |
msgid "Following the link sent in the email address will reset the password."
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
686 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
687 |
msgid "Someone requested that the password be reset for the following account: "
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
691 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
692 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
696 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
697 |
msgid "To reset your password, visit the following link:"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
701 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
702 |
msgid "Password Reset Feature from"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
706 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
707 |
#, fuzzy
|
708 |
msgid "There was an error while trying to send the activation link to "
|
709 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
710 |
|
711 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
712 |
#, fuzzy
|
713 |
msgid "The email address entered wasn't found in the database!"
|
714 |
msgstr "E-postadressen du tastet inn er ikke gyldig. <br/> E-postadressen var"
|
715 |
|
716 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
717 |
msgid "Please check that you entered the correct email address."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
721 |
msgid "The username entered wasn't found in the database!"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
725 |
msgid "Please check that you entered the correct username."
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
729 |
#, fuzzy
|
730 |
msgid "Your password has been successfully changed!"
|
731 |
msgstr "Endringene er lagret"
|
732 |
|
733 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
734 |
msgid "You have successfully reset your password to:"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
738 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
739 |
#, fuzzy
|
740 |
msgid "Password Successfully Reset for"
|
741 |
msgstr "\" er slettet."
|
742 |
|
743 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
745 |
msgid "from"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
749 |
msgid "has requested a password change via the password reset feature."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
753 |
msgid "His/her new password is:"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
757 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
758 |
msgid "The entered passwords don't match!"
|
759 |
msgstr "Passordene er ikke like"
|
760 |
|
761 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
762 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
763 |
#, fuzzy
|
764 |
msgid "Reset Password"
|
765 |
msgstr "Gjenta passord"
|
766 |
|
767 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
768 |
msgid "Invalid key!"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
772 |
#, fuzzy
|
773 |
msgid "Please enter your username or email address."
|
774 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
775 |
|
776 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
777 |
msgid "You will receive a link to create a new password via email."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
781 |
#, fuzzy
|
782 |
msgid "Username or E-mail"
|
783 |
msgstr "Brukernavn"
|
784 |
|
785 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
786 |
#, fuzzy
|
787 |
msgid "Get New Password"
|
788 |
msgstr "Nytt passord"
|
789 |
|
790 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
791 |
#, php-format
|
792 |
msgid ""
|
793 |
"To activate your user, please click the following link:\n"
|
@@ -798,230 +808,231 @@ msgid ""
|
|
798 |
"\n"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
802 |
#, php-format
|
803 |
msgid "[%1$s] Activate %2$s"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
807 |
msgid "Invalid activation key!"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
811 |
msgid "The user is already active!"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
815 |
msgid "Could not create user!"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
819 |
#, fuzzy
|
820 |
msgid "That username is already activated!"
|
821 |
msgstr "Brukernavnet er allerede i bruk!"
|
822 |
|
823 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
824 |
#, fuzzy
|
825 |
msgid "The user was successfully activated."
|
826 |
msgstr "Bildet ditt er slettet."
|
827 |
|
828 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
829 |
#, fuzzy
|
830 |
msgid "There was an error while trying to activate the user."
|
831 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
832 |
|
833 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
834 |
msgid "New subscriber on"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
838 |
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!"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
842 |
msgid "A new subscriber has (been) registered!"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
846 |
#, fuzzy
|
847 |
msgid "A new account has been created for you."
|
848 |
msgstr "En bruker for %1$s har blitt lagt til."
|
849 |
|
850 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
851 |
msgid "Welcome to"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
855 |
msgid "Your username is:"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
859 |
#, fuzzy
|
860 |
msgid "and password:"
|
861 |
msgstr "Passord"
|
862 |
|
863 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
864 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
868 |
msgid "The user was NOT created!"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
872 |
msgid "A username is required for registration."
|
873 |
msgstr "Et brukernavn kreves for registrering."
|
874 |
|
875 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
876 |
msgid "Sorry, that username already exists!"
|
877 |
msgstr "Brukernavnet er allerede i bruk!"
|
878 |
|
879 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
880 |
msgid "You must enter a valid email address."
|
881 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
882 |
|
883 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
884 |
msgid "Sorry, that email address is already used!"
|
885 |
msgstr "Denne e-posten er allerede i bruk!"
|
886 |
|
887 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
888 |
msgid "You didn't complete one of the password-fields!"
|
889 |
msgstr "Du fylte ut feil i et av passordfeltene!"
|
890 |
|
891 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
892 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
893 |
#, fuzzy
|
894 |
msgid "The account was NOT created!"
|
895 |
msgstr "En bruker for %1$s har blitt lagt til."
|
896 |
|
897 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
898 |
msgid "You must agree to the terms and conditions before registering!"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
902 |
msgid "(Several required fields were left uncompleted)"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
906 |
msgid "This username is already reserved to be used soon."
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
910 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
911 |
msgid "Please try a different one!"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
915 |
#, fuzzy
|
916 |
msgid "This email address is already reserved to be used soon."
|
917 |
msgstr "Denne e-posten er allerede i bruk!"
|
918 |
|
919 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
920 |
msgid "You are logged in as"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
924 |
msgid "You don't need another account."
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
928 |
#, fuzzy
|
929 |
msgid "Log out of this account."
|
930 |
msgstr "Logg ut av denne kontoen"
|
931 |
|
932 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
933 |
#, fuzzy
|
934 |
msgid "Logout"
|
935 |
msgstr "Logg ut »"
|
936 |
|
937 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
938 |
msgid "An email has been sent to "
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
942 |
msgid "with information on how to activate his/her account"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
946 |
#, fuzzy
|
947 |
msgid "A user account has been created for"
|
948 |
msgstr "En bruker for %1$s har blitt lagt til."
|
949 |
|
950 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
951 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
955 |
msgid "An email has been sent to you with information on how to activate your account"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
959 |
#, fuzzy
|
960 |
msgid "Thank you for registering"
|
961 |
msgstr "Takk for at du registrerte deg, %1$s."
|
962 |
|
963 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
964 |
msgid "An error occured while trying to send the notification email."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
968 |
msgid "An email containing activation instructions was successfully sent."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
972 |
msgid "An email containing the username and password was successfully sent."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
976 |
msgid "Users can register themselves or you can manually create users here."
|
977 |
msgstr "Brukere kan registrere seg selv eller du kan gjøre det manuelt her."
|
978 |
|
979 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
980 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
981 |
msgstr "Brukere kan ikke registrere seg selv, men du som har administratorrettigheter kan manuelt legge til brukere her. "
|
982 |
|
983 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
984 |
msgid "Only an administrator can add new users."
|
985 |
msgstr "Kun en administrator kan legge til nye brukere."
|
986 |
|
987 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
988 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
989 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
990 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
991 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
992 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
993 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
994 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
995 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
996 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1000 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1001 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1002 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1003 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1004 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1005 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1006 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1007 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1008 |
msgid "This field is marked as required by the administrator"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1012 |
msgid "Anti-Spam"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1016 |
#, fuzzy
|
1017 |
msgid "Send these credentials via email."
|
1018 |
msgstr "Send denne informasjon om brukernavn og passord på e-post"
|
1019 |
|
1020 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1021 |
msgid "Add User"
|
1022 |
msgstr "Legg til bruker"
|
1023 |
|
1024 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1025 |
msgid "Register"
|
1026 |
msgstr "Registrer"
|
1027 |
|
@@ -1175,37 +1186,42 @@ msgstr ""
|
|
1175 |
msgid "Save"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
|
1179 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
|
|
1180 |
msgid "Register your version of Profile Builder Pro"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1184 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1188 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1192 |
msgid "Serial Number:"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1196 |
#, fuzzy
|
1197 |
msgid "The serial number was successfully validated!"
|
1198 |
msgstr "Bildet ditt er slettet."
|
1199 |
|
1200 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1201 |
-
|
|
|
|
|
|
|
|
|
|
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1205 |
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!"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1209 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1210 |
msgstr ""
|
1211 |
|
@@ -1222,116 +1238,116 @@ msgstr ""
|
|
1222 |
msgid "You need to be logged in to view the userlisting!"
|
1223 |
msgstr "Du må være innlogget for å redigere profilen din."
|
1224 |
|
1225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1226 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1227 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1228 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1230 |
msgid "Search Users by All Fields"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1234 |
msgid "Leave Blank and Press Search to List All Users"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1238 |
msgid "Search"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1242 |
#, fuzzy
|
1243 |
msgid "First/Lastname"
|
1244 |
msgstr "Fornavn"
|
1245 |
|
1246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1247 |
#, fuzzy
|
1248 |
msgid "Email"
|
1249 |
msgstr "E-post"
|
1250 |
|
1251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1252 |
msgid "Sign-up Date"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1256 |
#, fuzzy
|
1257 |
msgid "Firstname"
|
1258 |
msgstr "Fornavn"
|
1259 |
|
1260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1261 |
#, fuzzy
|
1262 |
msgid "Lastname"
|
1263 |
msgstr "Etternavn"
|
1264 |
|
1265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1266 |
#, fuzzy
|
1267 |
msgid "Display Name"
|
1268 |
msgstr "Fornavn"
|
1269 |
|
1270 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1271 |
msgid "Posts"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1275 |
msgid "Click here to see more information about this user"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1279 |
msgid "More..."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1283 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1284 |
#, fuzzy
|
1285 |
msgid "No uploaded attachment"
|
1286 |
msgstr "Vedlegget \""
|
1287 |
|
1288 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1290 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1291 |
msgid "Click to see the current attachment"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1295 |
msgid "Click here to go back"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1299 |
#, fuzzy
|
1300 |
msgid "Back"
|
1301 |
msgstr "Svart"
|
1302 |
|
1303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1304 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1305 |
msgid "Current file"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1309 |
msgid "Avatar"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1313 |
msgid "No results found!"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1317 |
msgid "«« First"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1321 |
msgid "« Prev"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1325 |
#, fuzzy
|
1326 |
msgid "Next » "
|
1327 |
msgstr "Logg ut »"
|
1328 |
|
1329 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1330 |
#, fuzzy
|
1331 |
msgid "Last »»"
|
1332 |
msgstr "Logg ut »"
|
1333 |
|
1334 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1335 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1336 |
msgstr ""
|
1337 |
|
@@ -1373,8 +1389,8 @@ msgid "Custom Redirects"
|
|
1373 |
msgstr ""
|
1374 |
|
1375 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
1376 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
|
1377 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
|
|
1378 |
msgid "reCAPTCHA"
|
1379 |
msgstr ""
|
1380 |
|
@@ -1459,12 +1475,12 @@ msgid "Action"
|
|
1459 |
msgstr ""
|
1460 |
|
1461 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1462 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1463 |
msgid "Redirect"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1467 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1468 |
msgid "URL"
|
1469 |
msgstr ""
|
1470 |
|
@@ -1473,75 +1489,79 @@ msgid "After Registration:"
|
|
1473 |
msgstr ""
|
1474 |
|
1475 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1476 |
-
msgid "After Login:"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1480 |
#, fuzzy
|
1481 |
-
msgid "Recover Password (
|
1482 |
msgstr "Gjenta passord"
|
1483 |
|
1484 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
|
|
|
|
|
|
|
|
1485 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1489 |
msgid "Redirects on default WordPress page requests:"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1493 |
msgid "Requested WP Page"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1497 |
msgid "Default WP Login Page(*)"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1501 |
msgid "Default WP Logout Page(**)"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1505 |
msgid "Default WP Register Page"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1509 |
msgid "Default WP Dashboard (***)"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1513 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1517 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1521 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1525 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1529 |
msgid "For this you must get a public and private key from Google:"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1533 |
msgid "Key"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1537 |
msgid "Code"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1541 |
msgid "Public Key:"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1545 |
msgid "Private Key:"
|
1546 |
msgstr ""
|
1547 |
|
@@ -1566,87 +1586,87 @@ msgstr ""
|
|
1566 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1570 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1571 |
#, fuzzy
|
1572 |
msgid "You must give your option a title."
|
1573 |
msgstr "Du må være innlogget for å redigere profilen din."
|
1574 |
|
1575 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1576 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1577 |
msgid "You have entered an invalid meta-key format!"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1581 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1582 |
#, fuzzy
|
1583 |
msgid "You must enter a valid meta-key."
|
1584 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
1585 |
|
1586 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1587 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1588 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1589 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1590 |
msgid "That meta-key is already in use."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1594 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1595 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1600 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1604 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1605 |
msgid "The textarea row value must be numeric."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1609 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1610 |
msgid "The maxlength attribute must be numeric."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1614 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1615 |
msgid "The value must be between 20 and 200!"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1619 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1620 |
msgid "The width component of the entered value must be numeric!"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1624 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1625 |
msgid "The height component of the entered value must be numeric!"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1629 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1630 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1634 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1635 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1639 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1640 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1644 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1645 |
msgid "The entered avatar size must be numeric!"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1650 |
msgid "There was an error, please try again."
|
1651 |
msgstr ""
|
1652 |
|
@@ -1720,75 +1740,120 @@ msgstr ""
|
|
1720 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1724 |
msgid "Do you want to"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1728 |
msgid "the current user?"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1732 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1733 |
msgid "Your account on"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1737 |
msgid "has been approved!"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1741 |
msgid "An administrator has just approved your account on"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1745 |
msgid "has been unapproved!"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1749 |
msgid "An administrator has just unapproved your account on"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1753 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1754 |
msgid "Approve"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1758 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1759 |
msgid "Unapproved"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1763 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1764 |
msgid "Unapprove"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1768 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1769 |
msgid "Approved"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1773 |
msgid "unapprove"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1777 |
msgid "approve"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1781 |
msgid "Are you sure you want to"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1785 |
msgid "this user?"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1789 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1790 |
msgstr ""
|
1791 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1792 |
#~ msgid "Plugin Layout"
|
1793 |
#~ msgstr "Plugin layout"
|
1794 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-02 16:15+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-10-02 16:15+0200\n"
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
+
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabi\\Desktop\\test\\profile-builder-pro\n"
|
|
|
15 |
|
16 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
100 |
msgstr ""
|
101 |
|
102 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
103 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
|
104 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
105 |
msgid "NOTE:"
|
106 |
msgstr "MERK:"
|
107 |
|
117 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
118 |
msgstr "fra back-end, vil skreddersydde felter kun bli synlige på front-end"
|
119 |
|
120 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
|
121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:69
|
122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
|
123 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
124 |
msgid "General Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
|
128 |
#, fuzzy
|
129 |
msgid "Stylesheet Used on the Front-End:"
|
130 |
msgstr "Styelsheet brukt:"
|
131 |
|
132 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:72
|
133 |
msgid "Default"
|
134 |
msgstr "Standard"
|
135 |
|
136 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
|
137 |
msgid "White"
|
138 |
msgstr "Hvit"
|
139 |
|
140 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:77
|
141 |
msgid "Black"
|
142 |
msgstr "Svart"
|
143 |
|
144 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:81
|
145 |
msgid "None"
|
146 |
msgstr "Ingen"
|
147 |
|
148 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:87
|
149 |
msgid "\"Email Confirmation\" Feature Activated:"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
|
153 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:99
|
154 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
|
155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
|
156 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:238
|
157 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:251
|
158 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:264
|
159 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:283
|
160 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:296
|
161 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:312
|
162 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:325
|
163 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:338
|
164 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:357
|
165 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:371
|
166 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
167 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
169 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
|
170 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
|
171 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
|
172 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
|
173 |
msgid "Yes"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:90
|
177 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:100
|
178 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:213
|
179 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:226
|
180 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:239
|
181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:252
|
182 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:265
|
183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:284
|
184 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:297
|
185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:313
|
186 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:326
|
187 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:339
|
188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:358
|
189 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:372
|
190 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
191 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:526
|
194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:538
|
195 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:550
|
196 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:562
|
197 |
#, fuzzy
|
198 |
msgid "No"
|
199 |
msgstr "Ingen"
|
200 |
|
201 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
|
202 |
msgid "\"Admin Approval\" Feature Activated:"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
|
206 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
|
210 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
|
214 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:116
|
218 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
|
219 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:380
|
220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:256
|
221 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
222 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
223 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:576
|
224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:630
|
225 |
msgid "Save Changes"
|
226 |
msgstr "Lagre endringer"
|
227 |
|
228 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:134
|
229 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:135
|
230 |
msgid "Show/Hide the Admin Bar on Front End"
|
231 |
msgstr "Vis/Skjul administratormeny på front-end"
|
232 |
|
233 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:139
|
234 |
msgid "User-group"
|
235 |
msgstr "Brukergruppe"
|
236 |
|
237 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:140
|
238 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:193
|
239 |
msgid "Visibility"
|
240 |
msgstr "Synlighet"
|
241 |
|
242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:149
|
243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
|
244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
|
245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
|
246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
|
247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
|
248 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:279
|
249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:292
|
250 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
|
251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
|
252 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:334
|
253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:353
|
254 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:367
|
255 |
msgid "Show"
|
256 |
msgstr "Vis"
|
257 |
|
258 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:150
|
259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:209
|
260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:222
|
261 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:235
|
262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:248
|
263 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:261
|
264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:280
|
265 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:293
|
266 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:309
|
267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:322
|
268 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:335
|
269 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:354
|
270 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:368
|
271 |
msgid "Hide"
|
272 |
msgstr "Skjul"
|
273 |
|
274 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:162
|
275 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:187
|
279 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:188
|
280 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:61
|
281 |
msgid "Default Profile Fields"
|
282 |
msgstr "Grunnleggende felter"
|
283 |
|
284 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
|
285 |
msgid "Input Field Name"
|
286 |
msgstr "Sett inn feltnavn"
|
287 |
|
288 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:194
|
289 |
#, fuzzy
|
290 |
msgid "Required"
|
291 |
msgstr "(påkrevd)"
|
292 |
|
293 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:199
|
294 |
msgid "Name:"
|
295 |
msgstr "Navn:"
|
296 |
|
297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:205
|
298 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:169
|
300 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
301 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
302 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:122
|
303 |
msgid "Username"
|
304 |
msgstr "Brukernavn"
|
305 |
|
306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:218
|
307 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
308 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
309 |
msgid "First Name"
|
310 |
msgstr "Fornavn"
|
311 |
|
312 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:231
|
313 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
315 |
msgid "Last Name"
|
316 |
msgstr "Etternavn"
|
317 |
|
318 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:244
|
319 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
321 |
msgid "Nickname"
|
322 |
msgstr "Kallenavn"
|
323 |
|
324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:257
|
325 |
msgid "Display name publicly as..."
|
326 |
msgstr "Vis mitt navn offentlig som"
|
327 |
|
328 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:270
|
329 |
msgid "Contact Info:"
|
330 |
msgstr "Kontaktinformasjon"
|
331 |
|
332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:276
|
333 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
334 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
335 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
336 |
msgid "E-mail"
|
337 |
msgstr "E-post"
|
338 |
|
339 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:289
|
340 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
341 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
342 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:164
|
343 |
msgid "Website"
|
344 |
msgstr "Nettside"
|
345 |
|
346 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:305
|
347 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
348 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
349 |
msgid "AIM"
|
350 |
msgstr "AIM"
|
351 |
|
352 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:318
|
353 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
354 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
355 |
msgid "Yahoo IM"
|
356 |
msgstr "Yahoo IM"
|
357 |
|
358 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:331
|
359 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
360 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
361 |
msgid "Jabber / Google Talk"
|
362 |
msgstr "Jabber / Google Talk"
|
363 |
|
364 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:344
|
365 |
msgid "About Yourself:"
|
366 |
msgstr "Om meg selv:"
|
367 |
|
368 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:350
|
369 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
370 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
371 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:170
|
372 |
msgid "Biographical Info"
|
373 |
msgstr "Litt om meg selv"
|
374 |
|
375 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:364
|
376 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
377 |
msgid "New Password"
|
378 |
msgstr "Nytt passord"
|
379 |
|
380 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:36
|
381 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive access to automatic updates and support. Need a license key? <a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>Purchase one now</a>"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:38
|
385 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</a> to receive access to automatic updates and priority support. <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>Purchase one now</a>"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
|
389 |
msgid "Basic Information"
|
390 |
msgstr "Grunnleggende informasjon"
|
391 |
|
392 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
|
393 |
msgid "Show/Hide the Admin Bar on Front-end"
|
394 |
msgstr "Vis/skjul administratormenyen fra front-end"
|
395 |
|
396 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:67
|
397 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
398 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
399 |
msgid "Extra Profile Fields"
|
400 |
msgstr "Ekstra profilfelter"
|
401 |
|
402 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:70
|
403 |
msgid "Addons"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:73
|
407 |
msgid "Register Your Version"
|
408 |
msgstr "Registrer din versjon"
|
409 |
|
410 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
411 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
412 |
msgid "The information size you were trying to submit was larger than"
|
413 |
msgstr ""
|
414 |
|
415 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
416 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
417 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
418 |
msgstr ""
|
419 |
|
420 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
421 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
422 |
msgid "Since it was also larger than"
|
423 |
msgstr ""
|
424 |
|
425 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
426 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
427 |
msgid "no additional information is available."
|
428 |
msgstr ""
|
429 |
|
534 |
msgstr ""
|
535 |
|
536 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
537 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
538 |
#, fuzzy
|
539 |
msgid "There was an error while trying to upload the following attachment(s)"
|
540 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
541 |
|
542 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
543 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
544 |
msgid "Only files with the following extension(s) can be uploaded:"
|
545 |
msgstr ""
|
546 |
|
549 |
msgstr ""
|
550 |
|
551 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
553 |
msgid "Name"
|
554 |
msgstr "Navn"
|
555 |
|
589 |
msgstr "Vis mitt navn offentlig som"
|
590 |
|
591 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
592 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
593 |
msgid "Contact Info"
|
594 |
msgstr "Kontaktinformasjon"
|
595 |
|
598 |
msgstr "(påkrevd)"
|
599 |
|
600 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
602 |
msgid "About Yourself"
|
603 |
msgstr "Om deg selv"
|
604 |
|
605 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
609 |
msgid "Repeat Password"
|
610 |
msgstr "Gjenta passord"
|
611 |
|
613 |
msgid "Update"
|
614 |
msgstr "Oppdater"
|
615 |
|
616 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:61
|
617 |
#, fuzzy
|
618 |
msgid "You are currently logged in as"
|
619 |
msgstr "Du er logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
620 |
|
621 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
622 |
msgid "Log out of this account"
|
623 |
msgstr "Logg ut av denne kontoen"
|
624 |
|
625 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
626 |
#, fuzzy
|
627 |
msgid "Log out"
|
628 |
msgstr "Logg ut »"
|
629 |
|
630 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:80
|
631 |
#, fuzzy
|
632 |
msgid "You have successfully logged in as"
|
633 |
msgstr "Du har logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
634 |
|
635 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
636 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
637 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
641 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
642 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
644 |
msgid "here"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
649 |
msgid "ERROR:"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
653 |
msgid "The username field is empty"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:177
|
657 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
659 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
660 |
msgid "Password"
|
661 |
msgstr "Passord"
|
662 |
|
663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
664 |
msgid "Log in"
|
665 |
msgstr "Logg inn"
|
666 |
|
667 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:189
|
668 |
msgid "Remember me"
|
669 |
msgstr "Husk meg"
|
670 |
|
671 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:204
|
672 |
msgid "Lost password?"
|
673 |
msgstr "Mistet passordet?"
|
674 |
|
675 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
676 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
677 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
678 |
msgid "ERROR"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
682 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
686 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
687 |
msgid "A password reset email has been sent to "
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
691 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
692 |
msgid "Following the link sent in the email address will reset the password."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
696 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
697 |
msgid "Someone requested that the password be reset for the following account: "
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
701 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
702 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
706 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
707 |
msgid "To reset your password, visit the following link:"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
711 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
712 |
msgid "Password Reset Feature from"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
716 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
717 |
#, fuzzy
|
718 |
msgid "There was an error while trying to send the activation link to "
|
719 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
720 |
|
721 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
722 |
#, fuzzy
|
723 |
msgid "The email address entered wasn't found in the database!"
|
724 |
msgstr "E-postadressen du tastet inn er ikke gyldig. <br/> E-postadressen var"
|
725 |
|
726 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
727 |
msgid "Please check that you entered the correct email address."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
731 |
msgid "The username entered wasn't found in the database!"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
735 |
msgid "Please check that you entered the correct username."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
739 |
#, fuzzy
|
740 |
msgid "Your password has been successfully changed!"
|
741 |
msgstr "Endringene er lagret"
|
742 |
|
743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
744 |
msgid "You have successfully reset your password to:"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
748 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
749 |
#, fuzzy
|
750 |
msgid "Password Successfully Reset for"
|
751 |
msgstr "\" er slettet."
|
752 |
|
753 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
754 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
755 |
msgid "from"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
759 |
msgid "has requested a password change via the password reset feature."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
763 |
msgid "His/her new password is:"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
767 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
768 |
msgid "The entered passwords don't match!"
|
769 |
msgstr "Passordene er ikke like"
|
770 |
|
771 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
773 |
#, fuzzy
|
774 |
msgid "Reset Password"
|
775 |
msgstr "Gjenta passord"
|
776 |
|
777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
778 |
msgid "Invalid key!"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
782 |
#, fuzzy
|
783 |
msgid "Please enter your username or email address."
|
784 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
785 |
|
786 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
787 |
msgid "You will receive a link to create a new password via email."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
791 |
#, fuzzy
|
792 |
msgid "Username or E-mail"
|
793 |
msgstr "Brukernavn"
|
794 |
|
795 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
796 |
#, fuzzy
|
797 |
msgid "Get New Password"
|
798 |
msgstr "Nytt passord"
|
799 |
|
800 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
801 |
#, php-format
|
802 |
msgid ""
|
803 |
"To activate your user, please click the following link:\n"
|
808 |
"\n"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
812 |
#, php-format
|
813 |
msgid "[%1$s] Activate %2$s"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
817 |
msgid "Invalid activation key!"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
821 |
msgid "The user is already active!"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
825 |
msgid "Could not create user!"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
829 |
#, fuzzy
|
830 |
msgid "That username is already activated!"
|
831 |
msgstr "Brukernavnet er allerede i bruk!"
|
832 |
|
833 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
834 |
#, fuzzy
|
835 |
msgid "The user was successfully activated."
|
836 |
msgstr "Bildet ditt er slettet."
|
837 |
|
838 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
839 |
#, fuzzy
|
840 |
msgid "There was an error while trying to activate the user."
|
841 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
842 |
|
843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
844 |
msgid "New subscriber on"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
848 |
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!"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
852 |
msgid "A new subscriber has (been) registered!"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
856 |
#, fuzzy
|
857 |
msgid "A new account has been created for you."
|
858 |
msgstr "En bruker for %1$s har blitt lagt til."
|
859 |
|
860 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
861 |
msgid "Welcome to"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
865 |
msgid "Your username is:"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
869 |
#, fuzzy
|
870 |
msgid "and password:"
|
871 |
msgstr "Passord"
|
872 |
|
873 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
874 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
878 |
msgid "The user was NOT created!"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
882 |
msgid "A username is required for registration."
|
883 |
msgstr "Et brukernavn kreves for registrering."
|
884 |
|
885 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
886 |
msgid "Sorry, that username already exists!"
|
887 |
msgstr "Brukernavnet er allerede i bruk!"
|
888 |
|
889 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
890 |
msgid "You must enter a valid email address."
|
891 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
892 |
|
893 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
894 |
msgid "Sorry, that email address is already used!"
|
895 |
msgstr "Denne e-posten er allerede i bruk!"
|
896 |
|
897 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
898 |
msgid "You didn't complete one of the password-fields!"
|
899 |
msgstr "Du fylte ut feil i et av passordfeltene!"
|
900 |
|
901 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
902 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
903 |
#, fuzzy
|
904 |
msgid "The account was NOT created!"
|
905 |
msgstr "En bruker for %1$s har blitt lagt til."
|
906 |
|
907 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
908 |
msgid "You must agree to the terms and conditions before registering!"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
912 |
msgid "(Several required fields were left uncompleted)"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
916 |
msgid "This username is already reserved to be used soon."
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
920 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
921 |
msgid "Please try a different one!"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
925 |
#, fuzzy
|
926 |
msgid "This email address is already reserved to be used soon."
|
927 |
msgstr "Denne e-posten er allerede i bruk!"
|
928 |
|
929 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
930 |
msgid "You are logged in as"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
934 |
msgid "You don't need another account."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
938 |
#, fuzzy
|
939 |
msgid "Log out of this account."
|
940 |
msgstr "Logg ut av denne kontoen"
|
941 |
|
942 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
943 |
#, fuzzy
|
944 |
msgid "Logout"
|
945 |
msgstr "Logg ut »"
|
946 |
|
947 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
948 |
msgid "An email has been sent to "
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
952 |
msgid "with information on how to activate his/her account"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1173
|
956 |
#, fuzzy
|
957 |
msgid "A user account has been created for"
|
958 |
msgstr "En bruker for %1$s har blitt lagt til."
|
959 |
|
960 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
961 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
962 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
966 |
msgid "An email has been sent to you with information on how to activate your account"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
970 |
#, fuzzy
|
971 |
msgid "Thank you for registering"
|
972 |
msgstr "Takk for at du registrerte deg, %1$s."
|
973 |
|
974 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
975 |
msgid "An error occured while trying to send the notification email."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
979 |
msgid "An email containing activation instructions was successfully sent."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
983 |
msgid "An email containing the username and password was successfully sent."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
987 |
msgid "Users can register themselves or you can manually create users here."
|
988 |
msgstr "Brukere kan registrere seg selv eller du kan gjøre det manuelt her."
|
989 |
|
990 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
991 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
992 |
msgstr "Brukere kan ikke registrere seg selv, men du som har administratorrettigheter kan manuelt legge til brukere her. "
|
993 |
|
994 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
995 |
msgid "Only an administrator can add new users."
|
996 |
msgstr "Kun en administrator kan legge til nye brukere."
|
997 |
|
998 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
999 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
1000 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
1001 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
1002 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
1003 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
1004 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
1005 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
1006 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
1007 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
1011 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
1012 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
1013 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
1014 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
1015 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
1016 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
1017 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
1018 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
1019 |
msgid "This field is marked as required by the administrator"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
1023 |
msgid "Anti-Spam"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
1027 |
#, fuzzy
|
1028 |
msgid "Send these credentials via email."
|
1029 |
msgstr "Send denne informasjon om brukernavn og passord på e-post"
|
1030 |
|
1031 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1032 |
msgid "Add User"
|
1033 |
msgstr "Legg til bruker"
|
1034 |
|
1035 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1036 |
msgid "Register"
|
1037 |
msgstr "Registrer"
|
1038 |
|
1186 |
msgid "Save"
|
1187 |
msgstr ""
|
1188 |
|
|
|
1189 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
1190 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
|
1191 |
msgid "Register your version of Profile Builder Pro"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
|
1195 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
|
1199 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:234
|
1203 |
msgid "Serial Number:"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:238
|
1207 |
#, fuzzy
|
1208 |
msgid "The serial number was successfully validated!"
|
1209 |
msgstr "Bildet ditt er slettet."
|
1210 |
|
1211 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:240
|
1212 |
+
#, fuzzy
|
1213 |
+
msgid "The serial number entered couldn't be validated!"
|
1214 |
+
msgstr "Bildet ditt er slettet."
|
1215 |
+
|
1216 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:242
|
1217 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:244
|
1221 |
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!"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:250
|
1225 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1226 |
msgstr ""
|
1227 |
|
1238 |
msgid "You need to be logged in to view the userlisting!"
|
1239 |
msgstr "Du må være innlogget for å redigere profilen din."
|
1240 |
|
1241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:67
|
1242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:93
|
1243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:909
|
1245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:996
|
1246 |
msgid "Search Users by All Fields"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1250 |
msgid "Leave Blank and Press Search to List All Users"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:115
|
1254 |
msgid "Search"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
|
1258 |
#, fuzzy
|
1259 |
msgid "First/Lastname"
|
1260 |
msgstr "Fornavn"
|
1261 |
|
1262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:134
|
1263 |
#, fuzzy
|
1264 |
msgid "Email"
|
1265 |
msgstr "E-post"
|
1266 |
|
1267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:140
|
1268 |
msgid "Sign-up Date"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:146
|
1272 |
#, fuzzy
|
1273 |
msgid "Firstname"
|
1274 |
msgstr "Fornavn"
|
1275 |
|
1276 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:152
|
1277 |
#, fuzzy
|
1278 |
msgid "Lastname"
|
1279 |
msgstr "Etternavn"
|
1280 |
|
1281 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:158
|
1282 |
#, fuzzy
|
1283 |
msgid "Display Name"
|
1284 |
msgstr "Fornavn"
|
1285 |
|
1286 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:176
|
1287 |
msgid "Posts"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1291 |
msgid "Click here to see more information about this user"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1295 |
msgid "More..."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:401
|
1299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1300 |
#, fuzzy
|
1301 |
msgid "No uploaded attachment"
|
1302 |
msgstr "Vedlegget \""
|
1303 |
|
1304 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:403
|
1305 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:744
|
1307 |
msgid "Click to see the current attachment"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1311 |
msgid "Click here to go back"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1315 |
#, fuzzy
|
1316 |
msgid "Back"
|
1317 |
msgstr "Svart"
|
1318 |
|
1319 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1320 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1321 |
msgid "Current file"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:742
|
1325 |
msgid "Avatar"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:799
|
1329 |
msgid "No results found!"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:892
|
1333 |
msgid "«« First"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:893
|
1337 |
msgid "« Prev"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:894
|
1341 |
#, fuzzy
|
1342 |
msgid "Next » "
|
1343 |
msgstr "Logg ut »"
|
1344 |
|
1345 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
|
1346 |
#, fuzzy
|
1347 |
msgid "Last »»"
|
1348 |
msgstr "Logg ut »"
|
1349 |
|
1350 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1247
|
1351 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1352 |
msgstr ""
|
1353 |
|
1389 |
msgstr ""
|
1390 |
|
1391 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
|
|
1392 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
1393 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:602
|
1394 |
msgid "reCAPTCHA"
|
1395 |
msgstr ""
|
1396 |
|
1475 |
msgstr ""
|
1476 |
|
1477 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1478 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
|
1479 |
msgid "Redirect"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1483 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:517
|
1484 |
msgid "URL"
|
1485 |
msgstr ""
|
1486 |
|
1489 |
msgstr ""
|
1490 |
|
1491 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1492 |
+
msgid "After Login (*):"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1496 |
#, fuzzy
|
1497 |
+
msgid "Recover Password (**)"
|
1498 |
msgstr "Gjenta passord"
|
1499 |
|
1500 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
1501 |
+
msgid "Does not."
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:504
|
1505 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:509
|
1509 |
msgid "Redirects on default WordPress page requests:"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
|
1513 |
msgid "Requested WP Page"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:522
|
1517 |
msgid "Default WP Login Page(*)"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:534
|
1521 |
msgid "Default WP Logout Page(**)"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:546
|
1525 |
msgid "Default WP Register Page"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:558
|
1529 |
msgid "Default WP Dashboard (***)"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
|
1533 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
|
1537 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:571
|
1541 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
|
1545 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:607
|
1549 |
msgid "For this you must get a public and private key from Google:"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
|
1553 |
msgid "Key"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:614
|
1557 |
msgid "Code"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:618
|
1561 |
msgid "Public Key:"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:622
|
1565 |
msgid "Private Key:"
|
1566 |
msgstr ""
|
1567 |
|
1586 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:279
|
1590 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:422
|
1591 |
#, fuzzy
|
1592 |
msgid "You must give your option a title."
|
1593 |
msgstr "Du må være innlogget for å redigere profilen din."
|
1594 |
|
1595 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
|
1596 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
|
1597 |
msgid "You have entered an invalid meta-key format!"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
|
1601 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
|
1602 |
#, fuzzy
|
1603 |
msgid "You must enter a valid meta-key."
|
1604 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
1605 |
|
1606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:293
|
1607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
|
1608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:440
|
1609 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:452
|
1610 |
msgid "That meta-key is already in use."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1614 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:460
|
1615 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1619 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1620 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1624 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1625 |
msgid "The textarea row value must be numeric."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
|
1629 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
|
1630 |
msgid "The maxlength attribute must be numeric."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1634 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1635 |
msgid "The value must be between 20 and 200!"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1639 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1640 |
msgid "The width component of the entered value must be numeric!"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1644 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1645 |
msgid "The height component of the entered value must be numeric!"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
|
1649 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
|
1650 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
|
1654 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
|
1655 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
|
1659 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
|
1660 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1664 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1665 |
msgid "The entered avatar size must be numeric!"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:383
|
1669 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:559
|
1670 |
msgid "There was an error, please try again."
|
1671 |
msgstr ""
|
1672 |
|
1740 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1744 |
msgid "Do you want to"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1748 |
msgid "the current user?"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1752 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1753 |
msgid "Your account on"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1757 |
msgid "has been approved!"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:546
|
1761 |
msgid "An administrator has just approved your account on"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1765 |
msgid "has been unapproved!"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:550
|
1769 |
msgid "An administrator has just unapproved your account on"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:614
|
1773 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:660
|
1774 |
msgid "Approve"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:615
|
1778 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:705
|
1779 |
msgid "Unapproved"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:626
|
1783 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:656
|
1784 |
msgid "Unapprove"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:627
|
1788 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:702
|
1789 |
msgid "Approved"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:655
|
1793 |
msgid "unapprove"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:659
|
1797 |
msgid "approve"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1801 |
msgid "Are you sure you want to"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1805 |
msgid "this user?"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:724
|
1809 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:819
|
1813 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:824
|
1817 |
+
#, fuzzy
|
1818 |
+
msgid "Profile Builder Login Widget"
|
1819 |
+
msgstr "Profile Builder"
|
1820 |
+
|
1821 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:853
|
1822 |
+
msgid "Don't have an account?"
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:860
|
1826 |
+
#, fuzzy
|
1827 |
+
msgid "Lost Your Password?"
|
1828 |
+
msgstr "Mistet passordet?"
|
1829 |
+
|
1830 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:889
|
1831 |
+
#, fuzzy
|
1832 |
+
msgid "Login"
|
1833 |
+
msgstr "Logg inn"
|
1834 |
+
|
1835 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:898
|
1836 |
+
msgid "After login redirect URL:"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:903
|
1840 |
+
msgid "Register page URL (optional)"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:908
|
1844 |
+
msgid "Password Recovery page URL (optional)"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:985
|
1848 |
+
#, php-format
|
1849 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please %sregister your copy%s of Profile Builder to receive access to automatic updates and support. Need a license key? %sPurchase one now%s %sDismiss%s"
|
1850 |
+
msgstr ""
|
1851 |
+
|
1852 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:987
|
1853 |
+
#, php-format
|
1854 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please %sRenew Your Licence%s to receive access to automatic updates and priority support. %sPurchase one now%s %sDismiss%s"
|
1855 |
+
msgstr ""
|
1856 |
+
|
1857 |
#~ msgid "Plugin Layout"
|
1858 |
#~ msgstr "Plugin layout"
|
1859 |
|
translation/profilebuilder-nl_NL.mo
CHANGED
Binary file
|
translation/profilebuilder-nl_NL.po
CHANGED
@@ -1,22 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Poedit-
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
-
"X-Poedit-Basepath: ../\n"
|
18 |
-
"X-Textdomain-Support: yes\n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ profilebuilder
|
22 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
@@ -123,8 +118,8 @@ msgstr ""
|
|
123 |
|
124 |
# @ profilebuilder
|
125 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
126 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
127 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
128 |
msgid "NOTE:"
|
129 |
msgstr "LET OP:"
|
130 |
|
@@ -143,343 +138,351 @@ msgstr "De standaard informatievelden zullen nog steeds zichtbaar (en dus aanpas
|
|
143 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
144 |
msgstr "in de back-end, terwijl de toegevoegde velden alleen zichtbaar zijn in de front-end."
|
145 |
|
146 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
147 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
148 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
149 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
150 |
msgid "General Settings"
|
151 |
msgstr ""
|
152 |
|
153 |
# @ profilebuilder
|
154 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
155 |
#, fuzzy
|
156 |
msgid "Stylesheet Used on the Front-End:"
|
157 |
msgstr "Gebruikte stylesheet:"
|
158 |
|
159 |
# @ profilebuilder
|
160 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
161 |
msgid "Default"
|
162 |
msgstr "Standaard"
|
163 |
|
164 |
# @ profilebuilder
|
165 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
166 |
msgid "White"
|
167 |
msgstr "Wit"
|
168 |
|
169 |
# @ profilebuilder
|
170 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
171 |
msgid "Black"
|
172 |
msgstr "Zwart"
|
173 |
|
174 |
# @ profilebuilder
|
175 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
176 |
msgid "None"
|
177 |
msgstr "Geen"
|
178 |
|
179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
180 |
msgid "\"Email Confirmation\" Feature Activated:"
|
181 |
msgstr ""
|
182 |
|
183 |
# @ profilebuilder
|
184 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
186 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
188 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
189 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
190 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
191 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
192 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
193 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
194 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
196 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
197 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
198 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
199 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
200 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
201 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
202 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
203 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
204 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
205 |
msgid "Yes"
|
206 |
msgstr "Ja"
|
207 |
|
208 |
# @ profilebuilder
|
209 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
210 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
211 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
212 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
213 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
214 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
215 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
216 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
217 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
218 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
219 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
220 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
222 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
223 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
224 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
225 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
226 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
227 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
228 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
230 |
msgid "No"
|
231 |
msgstr "Nee"
|
232 |
|
233 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
234 |
msgid "\"Admin Approval\" Feature Activated:"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
238 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
242 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
246 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
247 |
msgstr ""
|
248 |
|
249 |
# @ default
|
250 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
252 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
253 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
254 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
255 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
256 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
257 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
258 |
msgid "Save Changes"
|
259 |
msgstr "Wijzigingen Opslaan"
|
260 |
|
261 |
# @ profilebuilder
|
262 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
263 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
264 |
msgid "Show/Hide the Admin Bar on Front End"
|
265 |
msgstr "Toon / Verberg de Admin Balk in de Front-end"
|
266 |
|
267 |
# @ profilebuilder
|
268 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
269 |
msgid "User-group"
|
270 |
msgstr "Gebruikersgroep"
|
271 |
|
272 |
# @ profilebuilder
|
273 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
274 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
275 |
msgid "Visibility"
|
276 |
msgstr "Zichtbaarheid"
|
277 |
|
278 |
# @ profilebuilder
|
279 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
280 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
281 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
282 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
283 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
284 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
285 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
286 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
287 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
288 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
290 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
291 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
292 |
msgid "Show"
|
293 |
msgstr "Tonen"
|
294 |
|
295 |
# @ profilebuilder
|
296 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
297 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
298 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
299 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
300 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
301 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
302 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
304 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
305 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
306 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
307 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
308 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
309 |
msgid "Hide"
|
310 |
msgstr "Verbergen"
|
311 |
|
312 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
313 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
314 |
msgstr ""
|
315 |
|
316 |
# @ profilebuilder
|
317 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
318 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
319 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
320 |
msgid "Default Profile Fields"
|
321 |
msgstr "Standaard Profiel Velden"
|
322 |
|
323 |
# @ profilebuilder
|
324 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
325 |
msgid "Input Field Name"
|
326 |
msgstr "Voer Veldnaam In"
|
327 |
|
328 |
# @ profilebuilder
|
329 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
330 |
msgid "Required"
|
331 |
msgstr "Verplicht"
|
332 |
|
333 |
# @ profilebuilder
|
334 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
335 |
msgid "Name:"
|
336 |
msgstr "Naam:"
|
337 |
|
338 |
# @ profilebuilder
|
339 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
340 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
341 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
342 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
343 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
344 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
345 |
msgid "Username"
|
346 |
msgstr "Gebruikersnaam"
|
347 |
|
348 |
# @ profilebuilder
|
349 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
350 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
351 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
352 |
msgid "First Name"
|
353 |
msgstr "Voornaam"
|
354 |
|
355 |
# @ profilebuilder
|
356 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
357 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
358 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
359 |
msgid "Last Name"
|
360 |
msgstr "Achternaam"
|
361 |
|
362 |
# @ profilebuilder
|
363 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
364 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
365 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
366 |
msgid "Nickname"
|
367 |
msgstr "Bijnaam"
|
368 |
|
369 |
# @ profilebuilder
|
370 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
371 |
msgid "Display name publicly as..."
|
372 |
msgstr "Toon naam publiekelijk als..."
|
373 |
|
374 |
# @ profilebuilder
|
375 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
376 |
msgid "Contact Info:"
|
377 |
msgstr "Contact Informatie:"
|
378 |
|
379 |
# @ profilebuilder
|
380 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
381 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
382 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
383 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
384 |
msgid "E-mail"
|
385 |
msgstr "E-mail"
|
386 |
|
387 |
# @ profilebuilder
|
388 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
389 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
390 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
391 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
392 |
msgid "Website"
|
393 |
msgstr "Website"
|
394 |
|
395 |
# @ profilebuilder
|
396 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
397 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
398 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
399 |
msgid "AIM"
|
400 |
msgstr "AIM"
|
401 |
|
402 |
# @ profilebuilder
|
403 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
404 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
405 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
406 |
msgid "Yahoo IM"
|
407 |
msgstr "Yahoo IM"
|
408 |
|
409 |
# @ profilebuilder
|
410 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
411 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
412 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
413 |
msgid "Jabber / Google Talk"
|
414 |
msgstr "Jabber / Google Talk"
|
415 |
|
416 |
# @ profilebuilder
|
417 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
418 |
msgid "About Yourself:"
|
419 |
msgstr "Over Jezelf:"
|
420 |
|
421 |
# @ profilebuilder
|
422 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
423 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
424 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
425 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
426 |
msgid "Biographical Info"
|
427 |
msgstr "Biografie"
|
428 |
|
429 |
# @ profilebuilder
|
430 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
431 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
432 |
msgid "New Password"
|
433 |
msgstr "Nieuw Wachtwoord"
|
434 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
435 |
# @ profilebuilder
|
436 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
437 |
msgid "Basic Information"
|
438 |
msgstr "Basis Informatie"
|
439 |
|
440 |
# @ profilebuilder
|
441 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
442 |
msgid "Show/Hide the Admin Bar on Front-end"
|
443 |
msgstr "Toon / Verberg de Admin Balk"
|
444 |
|
445 |
# @ profilebuilder
|
446 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
447 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
448 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
449 |
msgid "Extra Profile Fields"
|
450 |
msgstr "Extra Profiel Velden"
|
451 |
|
452 |
# @ profilebuilder
|
453 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
454 |
msgid "Addons"
|
455 |
msgstr "Addons"
|
456 |
|
457 |
# @ profilebuilder
|
458 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
459 |
msgid "Register Your Version"
|
460 |
msgstr "Registreer Je Versie"
|
461 |
|
462 |
# @ profilebuilder
|
463 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
464 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
465 |
msgid "The information size you were trying to submit was larger than"
|
466 |
msgstr "De omvang van gegevens die u probeert te versturen was groter dan"
|
467 |
|
468 |
# @ profilebuilder
|
469 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
470 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
471 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
472 |
msgstr "Dit gebeurt meestal omdat u een te groot bestand probeert te uploaden."
|
473 |
|
474 |
# @ profilebuilder
|
475 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
476 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
477 |
msgid "Since it was also larger than"
|
478 |
msgstr "Omdat het ook groter was dan"
|
479 |
|
480 |
# @ profilebuilder
|
481 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
482 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
483 |
msgid "no additional information is available."
|
484 |
msgstr "geen extra informatie beschikbaar."
|
485 |
|
@@ -599,13 +602,13 @@ msgstr "De avatar is"
|
|
599 |
|
600 |
# @ profilebuilder
|
601 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
602 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
603 |
#, fuzzy
|
604 |
msgid "There was an error while trying to upload the following attachment(s)"
|
605 |
msgstr "Foutmelding tijdens het uploaden van de volgende attachments:"
|
606 |
|
607 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
608 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
609 |
msgid "Only files with the following extension(s) can be uploaded:"
|
610 |
msgstr ""
|
611 |
|
@@ -615,7 +618,7 @@ msgstr ""
|
|
615 |
|
616 |
# @ profilebuilder
|
617 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
618 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
619 |
msgid "Name"
|
620 |
msgstr "Naam"
|
621 |
|
@@ -657,7 +660,7 @@ msgstr "Naam publiekelijk tonen als"
|
|
657 |
|
658 |
# @ profilebuilder
|
659 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
660 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
661 |
msgid "Contact Info"
|
662 |
msgstr "Contact Informatie"
|
663 |
|
@@ -668,15 +671,15 @@ msgstr "(verplicht)"
|
|
668 |
|
669 |
# @ profilebuilder
|
670 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
671 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
672 |
msgid "About Yourself"
|
673 |
msgstr "Over Jezelf"
|
674 |
|
675 |
# @ profilebuilder
|
676 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
677 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
678 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
679 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
680 |
msgid "Repeat Password"
|
681 |
msgstr "Herhaal Wachtwoord"
|
682 |
|
@@ -686,214 +689,217 @@ msgid "Update"
|
|
686 |
msgstr "Bijwerken"
|
687 |
|
688 |
# @ profilebuilder
|
689 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
690 |
msgid "You are currently logged in as"
|
691 |
msgstr "U bent momenteel ingelogd als"
|
692 |
|
693 |
# @ profilebuilder
|
694 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
695 |
msgid "Log out of this account"
|
696 |
msgstr "Gebruiker uitloggen"
|
697 |
|
698 |
# @ profilebuilder
|
699 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
700 |
msgid "Log out"
|
701 |
msgstr "Uitloggen"
|
702 |
|
703 |
# @ profilebuilder
|
704 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
705 |
msgid "You have successfully logged in as"
|
706 |
msgstr "U bent succesvol ingelogd als"
|
707 |
|
708 |
# @ profilebuilder
|
709 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
710 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
711 |
msgstr "U wordt automatisch doorgestuurd. Als u deze pagina meer dan 1 seconde ziet, klik svp op"
|
712 |
|
713 |
# @ profilebuilder
|
714 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
715 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
|
|
|
|
716 |
msgid "here"
|
717 |
msgstr "hier"
|
718 |
|
719 |
# @ profilebuilder
|
720 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
721 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
722 |
msgid "ERROR:"
|
723 |
msgstr "FOUT:"
|
724 |
|
725 |
# @ profilebuilder
|
726 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
727 |
msgid "The username field is empty"
|
728 |
msgstr "Veld voor gebruikersnaam is leeg"
|
729 |
|
730 |
# @ profilebuilder
|
731 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
732 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
733 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
734 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
735 |
msgid "Password"
|
736 |
msgstr "Wachtwoord"
|
737 |
|
738 |
# @ profilebuilder
|
739 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
740 |
msgid "Log in"
|
741 |
msgstr "Inloggen"
|
742 |
|
743 |
# @ profilebuilder
|
744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
745 |
msgid "Remember me"
|
746 |
msgstr "Onthoud gegevens"
|
747 |
|
748 |
# @ profilebuilder
|
749 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
750 |
msgid "Lost password?"
|
751 |
msgstr "Wachtwoord vergeten?"
|
752 |
|
753 |
# @ profilebuilder
|
754 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
755 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
756 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
757 |
msgid "ERROR"
|
758 |
msgstr "FOUT"
|
759 |
|
760 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
761 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
762 |
msgstr ""
|
763 |
|
764 |
# @ profilebuilder
|
765 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
766 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
767 |
msgid "A password reset email has been sent to "
|
768 |
msgstr "E-mail over wachtwoord resetten is gestuurd naar"
|
769 |
|
770 |
# @ profilebuilder
|
771 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
772 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
773 |
msgid "Following the link sent in the email address will reset the password."
|
774 |
msgstr "Via de link in de gestuurde e-mail wordt uw wachtwoord ge-reset."
|
775 |
|
776 |
# @ profilebuilder
|
777 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
778 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
779 |
msgid "Someone requested that the password be reset for the following account: "
|
780 |
msgstr "Iemand heeft gevraagd om wachtwoord te resetten voor account:"
|
781 |
|
782 |
# @ profilebuilder
|
783 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
784 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
785 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
786 |
msgstr "Als dit een fout was, kunt u deze e-mail negeren. Er zal niets gebeuren."
|
787 |
|
788 |
# @ profilebuilder
|
789 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
790 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
791 |
msgid "To reset your password, visit the following link:"
|
792 |
msgstr "Om uw wachtwoord te resetten, ga naar de link:"
|
793 |
|
794 |
# @ profilebuilder
|
795 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
796 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
797 |
msgid "Password Reset Feature from"
|
798 |
msgstr "Functie om wachtwoord te resetten van"
|
799 |
|
800 |
# @ profilebuilder
|
801 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
802 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
803 |
msgid "There was an error while trying to send the activation link to "
|
804 |
msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
|
805 |
|
806 |
# @ profilebuilder
|
807 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
808 |
msgid "The email address entered wasn't found in the database!"
|
809 |
msgstr "Het ingetoetste e-mail adres is niet in de database gevonden!"
|
810 |
|
811 |
# @ profilebuilder
|
812 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
813 |
msgid "Please check that you entered the correct email address."
|
814 |
msgstr "Check svp of u het juiste e-mail adres heeft ingetoetst."
|
815 |
|
816 |
# @ profilebuilder
|
817 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
818 |
msgid "The username entered wasn't found in the database!"
|
819 |
msgstr "De ingetoetste gebruikersnaam is niet in de database gevonden!"
|
820 |
|
821 |
# @ profilebuilder
|
822 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
823 |
msgid "Please check that you entered the correct username."
|
824 |
msgstr "Check svp of u de juiste gebuikersnaam heeft ingetoetst."
|
825 |
|
826 |
# @ profilebuilder
|
827 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
828 |
msgid "Your password has been successfully changed!"
|
829 |
msgstr "Uw wachtwoord is succesvol gewijzigd!"
|
830 |
|
831 |
# @ profilebuilder
|
832 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
833 |
#, fuzzy
|
834 |
msgid "You have successfully reset your password to:"
|
835 |
msgstr "U heeft uw wachtwoord succesvol ge-reset"
|
836 |
|
837 |
# @ profilebuilder
|
838 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
839 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
840 |
msgid "Password Successfully Reset for"
|
841 |
msgstr "Wachtwoord is succesvol ge-reset voor"
|
842 |
|
843 |
# @ profilebuilder
|
844 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
845 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
846 |
msgid "from"
|
847 |
msgstr "van"
|
848 |
|
849 |
# @ default
|
850 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
851 |
msgid "has requested a password change via the password reset feature."
|
852 |
msgstr ""
|
853 |
|
854 |
# @ profilebuilder
|
855 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
856 |
msgid "His/her new password is:"
|
857 |
msgstr "Zijn/haar nieuwe wachtwoord is:"
|
858 |
|
859 |
# @ profilebuilder
|
860 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
861 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
862 |
msgid "The entered passwords don't match!"
|
863 |
msgstr "De ingevoerde wachtwoorden komen niet overeen!"
|
864 |
|
865 |
# @ profilebuilder
|
866 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
867 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
868 |
msgid "Reset Password"
|
869 |
msgstr "Reset wachtwoord"
|
870 |
|
871 |
# @ profilebuilder
|
872 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
873 |
msgid "Invalid key!"
|
874 |
msgstr "Ongeldige sleutel!"
|
875 |
|
876 |
# @ profilebuilder
|
877 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
878 |
msgid "Please enter your username or email address."
|
879 |
msgstr "Svp uw gebruikersnaam of e-mail adres intypen."
|
880 |
|
881 |
# @ profilebuilder
|
882 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
883 |
msgid "You will receive a link to create a new password via email."
|
884 |
msgstr "U zult een e-mail ontvangen om nieuw wachtwoord aan te maken."
|
885 |
|
886 |
# @ profilebuilder
|
887 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
888 |
msgid "Username or E-mail"
|
889 |
msgstr "Gebruikersnaam of e-mail adres"
|
890 |
|
891 |
# @ profilebuilder
|
892 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
893 |
msgid "Get New Password"
|
894 |
msgstr "Nieuw wachtwoord"
|
895 |
|
896 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
897 |
#, php-format
|
898 |
msgid ""
|
899 |
"To activate your user, please click the following link:\n"
|
@@ -904,267 +910,268 @@ msgid ""
|
|
904 |
"\n"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
908 |
#, php-format
|
909 |
msgid "[%1$s] Activate %2$s"
|
910 |
msgstr ""
|
911 |
|
912 |
# @ profilebuilder
|
913 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
914 |
#, fuzzy
|
915 |
msgid "Invalid activation key!"
|
916 |
msgstr "Ongeldige sleutel!"
|
917 |
|
918 |
# @ profilebuilder
|
919 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
920 |
#, fuzzy
|
921 |
msgid "The user is already active!"
|
922 |
msgstr "Gebruikers is NIET aangemaakt!"
|
923 |
|
924 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
925 |
msgid "Could not create user!"
|
926 |
msgstr ""
|
927 |
|
928 |
# @ profilebuilder
|
929 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
930 |
#, fuzzy
|
931 |
msgid "That username is already activated!"
|
932 |
msgstr "Sorry, die gebruikersnaam bestaat al!"
|
933 |
|
934 |
# @ profilebuilder
|
935 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
936 |
#, fuzzy
|
937 |
msgid "The user was successfully activated."
|
938 |
msgstr "De avatar is succesvol verwijderd."
|
939 |
|
940 |
# @ profilebuilder
|
941 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
942 |
#, fuzzy
|
943 |
msgid "There was an error while trying to activate the user."
|
944 |
msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
|
945 |
|
946 |
# @ profilebuilder
|
947 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
948 |
msgid "New subscriber on"
|
949 |
msgstr "Nieuwe abonee op"
|
950 |
|
951 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
952 |
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!"
|
953 |
msgstr ""
|
954 |
|
955 |
# @ default
|
956 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
957 |
msgid "A new subscriber has (been) registered!"
|
958 |
msgstr ""
|
959 |
|
960 |
# @ profilebuilder
|
961 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
962 |
#, fuzzy
|
963 |
msgid "A new account has been created for you."
|
964 |
msgstr "Gebruikers account is gemaakt voor"
|
965 |
|
966 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
967 |
msgid "Welcome to"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
971 |
msgid "Your username is:"
|
972 |
msgstr ""
|
973 |
|
974 |
# @ profilebuilder
|
975 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
976 |
#, fuzzy
|
977 |
msgid "and password:"
|
978 |
msgstr "Wachtwoord"
|
979 |
|
980 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
981 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
982 |
msgstr ""
|
983 |
|
984 |
# @ profilebuilder
|
985 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
986 |
msgid "The user was NOT created!"
|
987 |
msgstr "Gebruikers is NIET aangemaakt!"
|
988 |
|
989 |
# @ profilebuilder
|
990 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
991 |
msgid "A username is required for registration."
|
992 |
msgstr "Een gebruikersnaam is vereist voor registratie."
|
993 |
|
994 |
# @ profilebuilder
|
995 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
996 |
msgid "Sorry, that username already exists!"
|
997 |
msgstr "Sorry, die gebruikersnaam bestaat al!"
|
998 |
|
999 |
# @ profilebuilder
|
1000 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1001 |
msgid "You must enter a valid email address."
|
1002 |
msgstr "U moet een geldig e-mail adres invullen."
|
1003 |
|
1004 |
# @ profilebuilder
|
1005 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1006 |
msgid "Sorry, that email address is already used!"
|
1007 |
msgstr "Sorry, dat e-mail adres is al in gebruik!"
|
1008 |
|
1009 |
# @ profilebuilder
|
1010 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1011 |
msgid "You didn't complete one of the password-fields!"
|
1012 |
msgstr "Je hebt een van de wachtwoord-velden niet volledig ingevuld!"
|
1013 |
|
1014 |
# @ profilebuilder
|
1015 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1016 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1017 |
msgid "The account was NOT created!"
|
1018 |
msgstr "Account is NIET aangemaakt!"
|
1019 |
|
1020 |
# @ profilebuilder
|
1021 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1022 |
msgid "You must agree to the terms and conditions before registering!"
|
1023 |
msgstr "U moet akkoord gaan met de voorwaarden voordat u registreert!"
|
1024 |
|
1025 |
# @ profilebuilder
|
1026 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1027 |
msgid "(Several required fields were left uncompleted)"
|
1028 |
msgstr "(Diverse verplichte velden zijn onvolledig ingevuld)"
|
1029 |
|
1030 |
# @ profilebuilder
|
1031 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1032 |
#, fuzzy
|
1033 |
msgid "This username is already reserved to be used soon."
|
1034 |
msgstr "Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
|
1035 |
|
1036 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1037 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1038 |
msgid "Please try a different one!"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
# @ profilebuilder
|
1042 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1043 |
#, fuzzy
|
1044 |
msgid "This email address is already reserved to be used soon."
|
1045 |
msgstr "Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
|
1046 |
|
1047 |
# @ profilebuilder
|
1048 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1049 |
msgid "You are logged in as"
|
1050 |
msgstr "U bent ingelogd als"
|
1051 |
|
1052 |
# @ profilebuilder
|
1053 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1054 |
msgid "You don't need another account."
|
1055 |
msgstr "U heeft geen ander account nodig"
|
1056 |
|
1057 |
# @ profilebuilder
|
1058 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1059 |
msgid "Log out of this account."
|
1060 |
msgstr "Uitloggen van dit account"
|
1061 |
|
1062 |
# @ profilebuilder
|
1063 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1064 |
msgid "Logout"
|
1065 |
msgstr "Uitloggen"
|
1066 |
|
1067 |
# @ profilebuilder
|
1068 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1069 |
#, fuzzy
|
1070 |
msgid "An email has been sent to "
|
1071 |
msgstr "E-mail over wachtwoord resetten is gestuurd naar"
|
1072 |
|
1073 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1074 |
msgid "with information on how to activate his/her account"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
# @ profilebuilder
|
1078 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1079 |
msgid "A user account has been created for"
|
1080 |
msgstr "Gebruikers account is gemaakt voor"
|
1081 |
|
1082 |
# @ profilebuilder
|
1083 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
1084 |
#, fuzzy
|
1085 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
1086 |
msgstr "U wordt automatisch doorgestuurd. Als u deze pagina meer dan 1 seconde ziet, klik svp op"
|
1087 |
|
1088 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1089 |
msgid "An email has been sent to you with information on how to activate your account"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
# @ profilebuilder
|
1093 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1094 |
msgid "Thank you for registering"
|
1095 |
msgstr "Bedankt voor registreren"
|
1096 |
|
1097 |
# @ profilebuilder
|
1098 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1099 |
msgid "An error occured while trying to send the notification email."
|
1100 |
msgstr "Fout opgetreden tijdens verzenden van notificatie e-mail."
|
1101 |
|
1102 |
# @ profilebuilder
|
1103 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1104 |
#, fuzzy
|
1105 |
msgid "An email containing activation instructions was successfully sent."
|
1106 |
msgstr "Een e-mail met gebruikersnaam en wachtwoord is succesvol verzonden."
|
1107 |
|
1108 |
# @ profilebuilder
|
1109 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1110 |
msgid "An email containing the username and password was successfully sent."
|
1111 |
msgstr "Een e-mail met gebruikersnaam en wachtwoord is succesvol verzonden."
|
1112 |
|
1113 |
# @ profilebuilder
|
1114 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1115 |
msgid "Users can register themselves or you can manually create users here."
|
1116 |
msgstr "Gebruikers kunnen zich registreren of je kunt hier handmatig gebruikers aanmaken."
|
1117 |
|
1118 |
# @ profilebuilder
|
1119 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1120 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
1121 |
msgstr "Gebruikers kunnen zich op dit moment niet registreren, maar je kunt hier wel handmatig gebruikers aanmaken."
|
1122 |
|
1123 |
# @ profilebuilder
|
1124 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1125 |
msgid "Only an administrator can add new users."
|
1126 |
msgstr "Alleen een beheerder kan nieuwe gebruikers toevoegen."
|
1127 |
|
1128 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1129 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1130 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1131 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1132 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1133 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1134 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1135 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1136 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1137 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1141 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1142 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1143 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1144 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1145 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1146 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1147 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1148 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1149 |
msgid "This field is marked as required by the administrator"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1153 |
msgid "Anti-Spam"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
# @ profilebuilder
|
1157 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1158 |
msgid "Send these credentials via email."
|
1159 |
msgstr "Verstuur deze gegevens via e-mail."
|
1160 |
|
1161 |
# @ profilebuilder
|
1162 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1163 |
msgid "Add User"
|
1164 |
msgstr "Gebruiker Toevoegen"
|
1165 |
|
1166 |
# @ profilebuilder
|
1167 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1168 |
msgid "Register"
|
1169 |
msgstr "Registreren"
|
1170 |
|
@@ -1326,38 +1333,44 @@ msgstr ""
|
|
1326 |
msgid "Save"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
|
1330 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
|
|
1331 |
msgid "Register your version of Profile Builder Pro"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1335 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1339 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1343 |
msgid "Serial Number:"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
# @ profilebuilder
|
1347 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1348 |
#, fuzzy
|
1349 |
msgid "The serial number was successfully validated!"
|
1350 |
msgstr "De avatar is succesvol verwijderd."
|
1351 |
|
1352 |
-
|
1353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1357 |
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!"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1361 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1362 |
msgstr ""
|
1363 |
|
@@ -1375,121 +1388,121 @@ msgstr ""
|
|
1375 |
msgid "You need to be logged in to view the userlisting!"
|
1376 |
msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
|
1377 |
|
1378 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1379 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1380 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1381 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1382 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1383 |
msgid "Search Users by All Fields"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1387 |
msgid "Leave Blank and Press Search to List All Users"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1391 |
msgid "Search"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
# @ profilebuilder
|
1395 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1396 |
#, fuzzy
|
1397 |
msgid "First/Lastname"
|
1398 |
msgstr "Voornaam"
|
1399 |
|
1400 |
# @ profilebuilder
|
1401 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1402 |
#, fuzzy
|
1403 |
msgid "Email"
|
1404 |
msgstr "E-mail"
|
1405 |
|
1406 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1407 |
msgid "Sign-up Date"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
# @ profilebuilder
|
1411 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1412 |
#, fuzzy
|
1413 |
msgid "Firstname"
|
1414 |
msgstr "Voornaam"
|
1415 |
|
1416 |
# @ profilebuilder
|
1417 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1418 |
#, fuzzy
|
1419 |
msgid "Lastname"
|
1420 |
msgstr "Achternaam"
|
1421 |
|
1422 |
# @ profilebuilder
|
1423 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1424 |
#, fuzzy
|
1425 |
msgid "Display Name"
|
1426 |
msgstr "Voornaam"
|
1427 |
|
1428 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1429 |
msgid "Posts"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1433 |
msgid "Click here to see more information about this user"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1437 |
msgid "More..."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
# @ profilebuilder
|
1441 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1442 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1443 |
#, fuzzy
|
1444 |
msgid "No uploaded attachment"
|
1445 |
msgstr "De bijlage"
|
1446 |
|
1447 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1448 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1449 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1450 |
msgid "Click to see the current attachment"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1454 |
msgid "Click here to go back"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
# @ profilebuilder
|
1458 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1459 |
#, fuzzy
|
1460 |
msgid "Back"
|
1461 |
msgstr "Zwart"
|
1462 |
|
1463 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1464 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1465 |
msgid "Current file"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1469 |
msgid "Avatar"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1473 |
msgid "No results found!"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1477 |
msgid "«« First"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1481 |
msgid "« Prev"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1485 |
msgid "Next » "
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1489 |
msgid "Last »»"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1493 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1494 |
msgstr ""
|
1495 |
|
@@ -1531,8 +1544,8 @@ msgid "Custom Redirects"
|
|
1531 |
msgstr ""
|
1532 |
|
1533 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
1534 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
|
1535 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
|
|
1536 |
msgid "reCAPTCHA"
|
1537 |
msgstr ""
|
1538 |
|
@@ -1618,13 +1631,13 @@ msgstr ""
|
|
1618 |
|
1619 |
# @ profilebuilder
|
1620 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1621 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1622 |
#, fuzzy
|
1623 |
msgid "Redirect"
|
1624 |
msgstr "Verplicht"
|
1625 |
|
1626 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1627 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1628 |
msgid "URL"
|
1629 |
msgstr ""
|
1630 |
|
@@ -1633,76 +1646,80 @@ msgid "After Registration:"
|
|
1633 |
msgstr ""
|
1634 |
|
1635 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1636 |
-
msgid "After Login:"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
# @ profilebuilder
|
1640 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1641 |
#, fuzzy
|
1642 |
-
msgid "Recover Password (
|
1643 |
msgstr "Reset wachtwoord"
|
1644 |
|
1645 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
|
|
|
|
|
|
|
|
1646 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1650 |
msgid "Redirects on default WordPress page requests:"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1654 |
msgid "Requested WP Page"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1658 |
msgid "Default WP Login Page(*)"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1662 |
msgid "Default WP Logout Page(**)"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1666 |
msgid "Default WP Register Page"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1670 |
msgid "Default WP Dashboard (***)"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1674 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1678 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1682 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1686 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1690 |
msgid "For this you must get a public and private key from Google:"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1694 |
msgid "Key"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1698 |
msgid "Code"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1702 |
msgid "Public Key:"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1706 |
msgid "Private Key:"
|
1707 |
msgstr ""
|
1708 |
|
@@ -1728,89 +1745,89 @@ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private k
|
|
1728 |
msgstr ""
|
1729 |
|
1730 |
# @ profilebuilder
|
1731 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1732 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1733 |
#, fuzzy
|
1734 |
msgid "You must give your option a title."
|
1735 |
msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
|
1736 |
|
1737 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1738 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1739 |
msgid "You have entered an invalid meta-key format!"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
# @ profilebuilder
|
1743 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1745 |
#, fuzzy
|
1746 |
msgid "You must enter a valid meta-key."
|
1747 |
msgstr "U moet een geldig e-mail adres invullen."
|
1748 |
|
1749 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1750 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1751 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1752 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1753 |
msgid "That meta-key is already in use."
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1757 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1758 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1762 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1763 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1767 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1768 |
msgid "The textarea row value must be numeric."
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1772 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1773 |
msgid "The maxlength attribute must be numeric."
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1777 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1778 |
msgid "The value must be between 20 and 200!"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1782 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1783 |
msgid "The width component of the entered value must be numeric!"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1787 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1788 |
msgid "The height component of the entered value must be numeric!"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1792 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1793 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1797 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1798 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1802 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1803 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1807 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1808 |
msgid "The entered avatar size must be numeric!"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
# @ profilebuilder
|
1812 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1813 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1814 |
#, fuzzy
|
1815 |
msgid "There was an error, please try again."
|
1816 |
msgstr "Foutmelding tijdens het uploaden van uw avatar afbeelding."
|
@@ -1885,72 +1902,122 @@ msgstr ""
|
|
1885 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1889 |
msgid "Do you want to"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1893 |
msgid "the current user?"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1897 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1898 |
msgid "Your account on"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1902 |
msgid "has been approved!"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1906 |
msgid "An administrator has just approved your account on"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1910 |
msgid "has been unapproved!"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1914 |
msgid "An administrator has just unapproved your account on"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1918 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1919 |
msgid "Approve"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1923 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1924 |
msgid "Unapproved"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1928 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1929 |
msgid "Unapprove"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1933 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1934 |
msgid "Approved"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1938 |
msgid "unapprove"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1942 |
msgid "approve"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1946 |
msgid "Are you sure you want to"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1950 |
msgid "this user?"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1954 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1955 |
msgstr ""
|
1956 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-02 16:15+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-10-02 16:15+0200\n"
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
+
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabi\\Desktop\\test\\profile-builder-pro\n"
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
# @ profilebuilder
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
118 |
|
119 |
# @ profilebuilder
|
120 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
|
122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
123 |
msgid "NOTE:"
|
124 |
msgstr "LET OP:"
|
125 |
|
138 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
139 |
msgstr "in de back-end, terwijl de toegevoegde velden alleen zichtbaar zijn in de front-end."
|
140 |
|
141 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
|
142 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:69
|
143 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
|
144 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
145 |
msgid "General Settings"
|
146 |
msgstr ""
|
147 |
|
148 |
# @ profilebuilder
|
149 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
|
150 |
#, fuzzy
|
151 |
msgid "Stylesheet Used on the Front-End:"
|
152 |
msgstr "Gebruikte stylesheet:"
|
153 |
|
154 |
# @ profilebuilder
|
155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:72
|
156 |
msgid "Default"
|
157 |
msgstr "Standaard"
|
158 |
|
159 |
# @ profilebuilder
|
160 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
|
161 |
msgid "White"
|
162 |
msgstr "Wit"
|
163 |
|
164 |
# @ profilebuilder
|
165 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:77
|
166 |
msgid "Black"
|
167 |
msgstr "Zwart"
|
168 |
|
169 |
# @ profilebuilder
|
170 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:81
|
171 |
msgid "None"
|
172 |
msgstr "Geen"
|
173 |
|
174 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:87
|
175 |
msgid "\"Email Confirmation\" Feature Activated:"
|
176 |
msgstr ""
|
177 |
|
178 |
# @ profilebuilder
|
179 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
|
180 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:99
|
181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
|
182 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
|
183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:238
|
184 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:251
|
185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:264
|
186 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:283
|
187 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:296
|
188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:312
|
189 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:325
|
190 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:338
|
191 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:357
|
192 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:371
|
193 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
194 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
195 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
196 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
|
197 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
|
198 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
|
199 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
|
200 |
msgid "Yes"
|
201 |
msgstr "Ja"
|
202 |
|
203 |
# @ profilebuilder
|
204 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:90
|
205 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:100
|
206 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:213
|
207 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:226
|
208 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:239
|
209 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:252
|
210 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:265
|
211 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:284
|
212 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:297
|
213 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:313
|
214 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:326
|
215 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:339
|
216 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:358
|
217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:372
|
218 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
219 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
220 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
221 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:526
|
222 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:538
|
223 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:550
|
224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:562
|
225 |
msgid "No"
|
226 |
msgstr "Nee"
|
227 |
|
228 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
|
229 |
msgid "\"Admin Approval\" Feature Activated:"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
|
233 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
|
237 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
|
241 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
242 |
msgstr ""
|
243 |
|
244 |
# @ default
|
245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:116
|
246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
|
247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:380
|
248 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:256
|
249 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
250 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:576
|
252 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:630
|
253 |
msgid "Save Changes"
|
254 |
msgstr "Wijzigingen Opslaan"
|
255 |
|
256 |
# @ profilebuilder
|
257 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:134
|
258 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:135
|
259 |
msgid "Show/Hide the Admin Bar on Front End"
|
260 |
msgstr "Toon / Verberg de Admin Balk in de Front-end"
|
261 |
|
262 |
# @ profilebuilder
|
263 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:139
|
264 |
msgid "User-group"
|
265 |
msgstr "Gebruikersgroep"
|
266 |
|
267 |
# @ profilebuilder
|
268 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:140
|
269 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:193
|
270 |
msgid "Visibility"
|
271 |
msgstr "Zichtbaarheid"
|
272 |
|
273 |
# @ profilebuilder
|
274 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:149
|
275 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
|
276 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
|
277 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
|
278 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
|
279 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
|
280 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:279
|
281 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:292
|
282 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
|
283 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
|
284 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:334
|
285 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:353
|
286 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:367
|
287 |
msgid "Show"
|
288 |
msgstr "Tonen"
|
289 |
|
290 |
# @ profilebuilder
|
291 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:150
|
292 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:209
|
293 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:222
|
294 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:235
|
295 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:248
|
296 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:261
|
297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:280
|
298 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:293
|
299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:309
|
300 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:322
|
301 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:335
|
302 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:354
|
303 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:368
|
304 |
msgid "Hide"
|
305 |
msgstr "Verbergen"
|
306 |
|
307 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:162
|
308 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
309 |
msgstr ""
|
310 |
|
311 |
# @ profilebuilder
|
312 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:187
|
313 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:188
|
314 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:61
|
315 |
msgid "Default Profile Fields"
|
316 |
msgstr "Standaard Profiel Velden"
|
317 |
|
318 |
# @ profilebuilder
|
319 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
|
320 |
msgid "Input Field Name"
|
321 |
msgstr "Voer Veldnaam In"
|
322 |
|
323 |
# @ profilebuilder
|
324 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:194
|
325 |
msgid "Required"
|
326 |
msgstr "Verplicht"
|
327 |
|
328 |
# @ profilebuilder
|
329 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:199
|
330 |
msgid "Name:"
|
331 |
msgstr "Naam:"
|
332 |
|
333 |
# @ profilebuilder
|
334 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:205
|
335 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
336 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:169
|
337 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
338 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
339 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:122
|
340 |
msgid "Username"
|
341 |
msgstr "Gebruikersnaam"
|
342 |
|
343 |
# @ profilebuilder
|
344 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:218
|
345 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
346 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
347 |
msgid "First Name"
|
348 |
msgstr "Voornaam"
|
349 |
|
350 |
# @ profilebuilder
|
351 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:231
|
352 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
353 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
354 |
msgid "Last Name"
|
355 |
msgstr "Achternaam"
|
356 |
|
357 |
# @ profilebuilder
|
358 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:244
|
359 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
360 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
361 |
msgid "Nickname"
|
362 |
msgstr "Bijnaam"
|
363 |
|
364 |
# @ profilebuilder
|
365 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:257
|
366 |
msgid "Display name publicly as..."
|
367 |
msgstr "Toon naam publiekelijk als..."
|
368 |
|
369 |
# @ profilebuilder
|
370 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:270
|
371 |
msgid "Contact Info:"
|
372 |
msgstr "Contact Informatie:"
|
373 |
|
374 |
# @ profilebuilder
|
375 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:276
|
376 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
377 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
378 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
379 |
msgid "E-mail"
|
380 |
msgstr "E-mail"
|
381 |
|
382 |
# @ profilebuilder
|
383 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:289
|
384 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
385 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
386 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:164
|
387 |
msgid "Website"
|
388 |
msgstr "Website"
|
389 |
|
390 |
# @ profilebuilder
|
391 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:305
|
392 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
393 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
394 |
msgid "AIM"
|
395 |
msgstr "AIM"
|
396 |
|
397 |
# @ profilebuilder
|
398 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:318
|
399 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
400 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
401 |
msgid "Yahoo IM"
|
402 |
msgstr "Yahoo IM"
|
403 |
|
404 |
# @ profilebuilder
|
405 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:331
|
406 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
407 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
408 |
msgid "Jabber / Google Talk"
|
409 |
msgstr "Jabber / Google Talk"
|
410 |
|
411 |
# @ profilebuilder
|
412 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:344
|
413 |
msgid "About Yourself:"
|
414 |
msgstr "Over Jezelf:"
|
415 |
|
416 |
# @ profilebuilder
|
417 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:350
|
418 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
419 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
420 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:170
|
421 |
msgid "Biographical Info"
|
422 |
msgstr "Biografie"
|
423 |
|
424 |
# @ profilebuilder
|
425 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:364
|
426 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
427 |
msgid "New Password"
|
428 |
msgstr "Nieuw Wachtwoord"
|
429 |
|
430 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:36
|
431 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive access to automatic updates and support. Need a license key? <a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>Purchase one now</a>"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:38
|
435 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</a> to receive access to automatic updates and priority support. <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>Purchase one now</a>"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
# @ profilebuilder
|
439 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
|
440 |
msgid "Basic Information"
|
441 |
msgstr "Basis Informatie"
|
442 |
|
443 |
# @ profilebuilder
|
444 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
|
445 |
msgid "Show/Hide the Admin Bar on Front-end"
|
446 |
msgstr "Toon / Verberg de Admin Balk"
|
447 |
|
448 |
# @ profilebuilder
|
449 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:67
|
450 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
451 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
452 |
msgid "Extra Profile Fields"
|
453 |
msgstr "Extra Profiel Velden"
|
454 |
|
455 |
# @ profilebuilder
|
456 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:70
|
457 |
msgid "Addons"
|
458 |
msgstr "Addons"
|
459 |
|
460 |
# @ profilebuilder
|
461 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:73
|
462 |
msgid "Register Your Version"
|
463 |
msgstr "Registreer Je Versie"
|
464 |
|
465 |
# @ profilebuilder
|
466 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
467 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
468 |
msgid "The information size you were trying to submit was larger than"
|
469 |
msgstr "De omvang van gegevens die u probeert te versturen was groter dan"
|
470 |
|
471 |
# @ profilebuilder
|
472 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
473 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
474 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
475 |
msgstr "Dit gebeurt meestal omdat u een te groot bestand probeert te uploaden."
|
476 |
|
477 |
# @ profilebuilder
|
478 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
479 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
480 |
msgid "Since it was also larger than"
|
481 |
msgstr "Omdat het ook groter was dan"
|
482 |
|
483 |
# @ profilebuilder
|
484 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
485 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
486 |
msgid "no additional information is available."
|
487 |
msgstr "geen extra informatie beschikbaar."
|
488 |
|
602 |
|
603 |
# @ profilebuilder
|
604 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
605 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
606 |
#, fuzzy
|
607 |
msgid "There was an error while trying to upload the following attachment(s)"
|
608 |
msgstr "Foutmelding tijdens het uploaden van de volgende attachments:"
|
609 |
|
610 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
611 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
612 |
msgid "Only files with the following extension(s) can be uploaded:"
|
613 |
msgstr ""
|
614 |
|
618 |
|
619 |
# @ profilebuilder
|
620 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
621 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
622 |
msgid "Name"
|
623 |
msgstr "Naam"
|
624 |
|
660 |
|
661 |
# @ profilebuilder
|
662 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
664 |
msgid "Contact Info"
|
665 |
msgstr "Contact Informatie"
|
666 |
|
671 |
|
672 |
# @ profilebuilder
|
673 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
674 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
675 |
msgid "About Yourself"
|
676 |
msgstr "Over Jezelf"
|
677 |
|
678 |
# @ profilebuilder
|
679 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
680 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
681 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
682 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
683 |
msgid "Repeat Password"
|
684 |
msgstr "Herhaal Wachtwoord"
|
685 |
|
689 |
msgstr "Bijwerken"
|
690 |
|
691 |
# @ profilebuilder
|
692 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:61
|
693 |
msgid "You are currently logged in as"
|
694 |
msgstr "U bent momenteel ingelogd als"
|
695 |
|
696 |
# @ profilebuilder
|
697 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
698 |
msgid "Log out of this account"
|
699 |
msgstr "Gebruiker uitloggen"
|
700 |
|
701 |
# @ profilebuilder
|
702 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
703 |
msgid "Log out"
|
704 |
msgstr "Uitloggen"
|
705 |
|
706 |
# @ profilebuilder
|
707 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:80
|
708 |
msgid "You have successfully logged in as"
|
709 |
msgstr "U bent succesvol ingelogd als"
|
710 |
|
711 |
# @ profilebuilder
|
712 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
713 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
714 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
715 |
msgstr "U wordt automatisch doorgestuurd. Als u deze pagina meer dan 1 seconde ziet, klik svp op"
|
716 |
|
717 |
# @ profilebuilder
|
718 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
719 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
720 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
721 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
722 |
msgid "here"
|
723 |
msgstr "hier"
|
724 |
|
725 |
# @ profilebuilder
|
726 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
727 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
728 |
msgid "ERROR:"
|
729 |
msgstr "FOUT:"
|
730 |
|
731 |
# @ profilebuilder
|
732 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
733 |
msgid "The username field is empty"
|
734 |
msgstr "Veld voor gebruikersnaam is leeg"
|
735 |
|
736 |
# @ profilebuilder
|
737 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:177
|
738 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
739 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
740 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
741 |
msgid "Password"
|
742 |
msgstr "Wachtwoord"
|
743 |
|
744 |
# @ profilebuilder
|
745 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
746 |
msgid "Log in"
|
747 |
msgstr "Inloggen"
|
748 |
|
749 |
# @ profilebuilder
|
750 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:189
|
751 |
msgid "Remember me"
|
752 |
msgstr "Onthoud gegevens"
|
753 |
|
754 |
# @ profilebuilder
|
755 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:204
|
756 |
msgid "Lost password?"
|
757 |
msgstr "Wachtwoord vergeten?"
|
758 |
|
759 |
# @ profilebuilder
|
760 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
761 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
762 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
763 |
msgid "ERROR"
|
764 |
msgstr "FOUT"
|
765 |
|
766 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
767 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
768 |
msgstr ""
|
769 |
|
770 |
# @ profilebuilder
|
771 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
773 |
msgid "A password reset email has been sent to "
|
774 |
msgstr "E-mail over wachtwoord resetten is gestuurd naar"
|
775 |
|
776 |
# @ profilebuilder
|
777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
778 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
779 |
msgid "Following the link sent in the email address will reset the password."
|
780 |
msgstr "Via de link in de gestuurde e-mail wordt uw wachtwoord ge-reset."
|
781 |
|
782 |
# @ profilebuilder
|
783 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
784 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
785 |
msgid "Someone requested that the password be reset for the following account: "
|
786 |
msgstr "Iemand heeft gevraagd om wachtwoord te resetten voor account:"
|
787 |
|
788 |
# @ profilebuilder
|
789 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
790 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
791 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
792 |
msgstr "Als dit een fout was, kunt u deze e-mail negeren. Er zal niets gebeuren."
|
793 |
|
794 |
# @ profilebuilder
|
795 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
796 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
797 |
msgid "To reset your password, visit the following link:"
|
798 |
msgstr "Om uw wachtwoord te resetten, ga naar de link:"
|
799 |
|
800 |
# @ profilebuilder
|
801 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
802 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
803 |
msgid "Password Reset Feature from"
|
804 |
msgstr "Functie om wachtwoord te resetten van"
|
805 |
|
806 |
# @ profilebuilder
|
807 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
808 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
809 |
msgid "There was an error while trying to send the activation link to "
|
810 |
msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
|
811 |
|
812 |
# @ profilebuilder
|
813 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
814 |
msgid "The email address entered wasn't found in the database!"
|
815 |
msgstr "Het ingetoetste e-mail adres is niet in de database gevonden!"
|
816 |
|
817 |
# @ profilebuilder
|
818 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
819 |
msgid "Please check that you entered the correct email address."
|
820 |
msgstr "Check svp of u het juiste e-mail adres heeft ingetoetst."
|
821 |
|
822 |
# @ profilebuilder
|
823 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
824 |
msgid "The username entered wasn't found in the database!"
|
825 |
msgstr "De ingetoetste gebruikersnaam is niet in de database gevonden!"
|
826 |
|
827 |
# @ profilebuilder
|
828 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
829 |
msgid "Please check that you entered the correct username."
|
830 |
msgstr "Check svp of u de juiste gebuikersnaam heeft ingetoetst."
|
831 |
|
832 |
# @ profilebuilder
|
833 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
834 |
msgid "Your password has been successfully changed!"
|
835 |
msgstr "Uw wachtwoord is succesvol gewijzigd!"
|
836 |
|
837 |
# @ profilebuilder
|
838 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
839 |
#, fuzzy
|
840 |
msgid "You have successfully reset your password to:"
|
841 |
msgstr "U heeft uw wachtwoord succesvol ge-reset"
|
842 |
|
843 |
# @ profilebuilder
|
844 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
845 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
846 |
msgid "Password Successfully Reset for"
|
847 |
msgstr "Wachtwoord is succesvol ge-reset voor"
|
848 |
|
849 |
# @ profilebuilder
|
850 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
851 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
852 |
msgid "from"
|
853 |
msgstr "van"
|
854 |
|
855 |
# @ default
|
856 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
857 |
msgid "has requested a password change via the password reset feature."
|
858 |
msgstr ""
|
859 |
|
860 |
# @ profilebuilder
|
861 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
862 |
msgid "His/her new password is:"
|
863 |
msgstr "Zijn/haar nieuwe wachtwoord is:"
|
864 |
|
865 |
# @ profilebuilder
|
866 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
867 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
868 |
msgid "The entered passwords don't match!"
|
869 |
msgstr "De ingevoerde wachtwoorden komen niet overeen!"
|
870 |
|
871 |
# @ profilebuilder
|
872 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
873 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
874 |
msgid "Reset Password"
|
875 |
msgstr "Reset wachtwoord"
|
876 |
|
877 |
# @ profilebuilder
|
878 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
879 |
msgid "Invalid key!"
|
880 |
msgstr "Ongeldige sleutel!"
|
881 |
|
882 |
# @ profilebuilder
|
883 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
884 |
msgid "Please enter your username or email address."
|
885 |
msgstr "Svp uw gebruikersnaam of e-mail adres intypen."
|
886 |
|
887 |
# @ profilebuilder
|
888 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
889 |
msgid "You will receive a link to create a new password via email."
|
890 |
msgstr "U zult een e-mail ontvangen om nieuw wachtwoord aan te maken."
|
891 |
|
892 |
# @ profilebuilder
|
893 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
894 |
msgid "Username or E-mail"
|
895 |
msgstr "Gebruikersnaam of e-mail adres"
|
896 |
|
897 |
# @ profilebuilder
|
898 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
899 |
msgid "Get New Password"
|
900 |
msgstr "Nieuw wachtwoord"
|
901 |
|
902 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
903 |
#, php-format
|
904 |
msgid ""
|
905 |
"To activate your user, please click the following link:\n"
|
910 |
"\n"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
914 |
#, php-format
|
915 |
msgid "[%1$s] Activate %2$s"
|
916 |
msgstr ""
|
917 |
|
918 |
# @ profilebuilder
|
919 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
920 |
#, fuzzy
|
921 |
msgid "Invalid activation key!"
|
922 |
msgstr "Ongeldige sleutel!"
|
923 |
|
924 |
# @ profilebuilder
|
925 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
926 |
#, fuzzy
|
927 |
msgid "The user is already active!"
|
928 |
msgstr "Gebruikers is NIET aangemaakt!"
|
929 |
|
930 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
931 |
msgid "Could not create user!"
|
932 |
msgstr ""
|
933 |
|
934 |
# @ profilebuilder
|
935 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
936 |
#, fuzzy
|
937 |
msgid "That username is already activated!"
|
938 |
msgstr "Sorry, die gebruikersnaam bestaat al!"
|
939 |
|
940 |
# @ profilebuilder
|
941 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
942 |
#, fuzzy
|
943 |
msgid "The user was successfully activated."
|
944 |
msgstr "De avatar is succesvol verwijderd."
|
945 |
|
946 |
# @ profilebuilder
|
947 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
948 |
#, fuzzy
|
949 |
msgid "There was an error while trying to activate the user."
|
950 |
msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
|
951 |
|
952 |
# @ profilebuilder
|
953 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
954 |
msgid "New subscriber on"
|
955 |
msgstr "Nieuwe abonee op"
|
956 |
|
957 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
958 |
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!"
|
959 |
msgstr ""
|
960 |
|
961 |
# @ default
|
962 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
963 |
msgid "A new subscriber has (been) registered!"
|
964 |
msgstr ""
|
965 |
|
966 |
# @ profilebuilder
|
967 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
968 |
#, fuzzy
|
969 |
msgid "A new account has been created for you."
|
970 |
msgstr "Gebruikers account is gemaakt voor"
|
971 |
|
972 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
973 |
msgid "Welcome to"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
977 |
msgid "Your username is:"
|
978 |
msgstr ""
|
979 |
|
980 |
# @ profilebuilder
|
981 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
982 |
#, fuzzy
|
983 |
msgid "and password:"
|
984 |
msgstr "Wachtwoord"
|
985 |
|
986 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
987 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
988 |
msgstr ""
|
989 |
|
990 |
# @ profilebuilder
|
991 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
992 |
msgid "The user was NOT created!"
|
993 |
msgstr "Gebruikers is NIET aangemaakt!"
|
994 |
|
995 |
# @ profilebuilder
|
996 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
997 |
msgid "A username is required for registration."
|
998 |
msgstr "Een gebruikersnaam is vereist voor registratie."
|
999 |
|
1000 |
# @ profilebuilder
|
1001 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
1002 |
msgid "Sorry, that username already exists!"
|
1003 |
msgstr "Sorry, die gebruikersnaam bestaat al!"
|
1004 |
|
1005 |
# @ profilebuilder
|
1006 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
1007 |
msgid "You must enter a valid email address."
|
1008 |
msgstr "U moet een geldig e-mail adres invullen."
|
1009 |
|
1010 |
# @ profilebuilder
|
1011 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
1012 |
msgid "Sorry, that email address is already used!"
|
1013 |
msgstr "Sorry, dat e-mail adres is al in gebruik!"
|
1014 |
|
1015 |
# @ profilebuilder
|
1016 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
1017 |
msgid "You didn't complete one of the password-fields!"
|
1018 |
msgstr "Je hebt een van de wachtwoord-velden niet volledig ingevuld!"
|
1019 |
|
1020 |
# @ profilebuilder
|
1021 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
1022 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
1023 |
msgid "The account was NOT created!"
|
1024 |
msgstr "Account is NIET aangemaakt!"
|
1025 |
|
1026 |
# @ profilebuilder
|
1027 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
1028 |
msgid "You must agree to the terms and conditions before registering!"
|
1029 |
msgstr "U moet akkoord gaan met de voorwaarden voordat u registreert!"
|
1030 |
|
1031 |
# @ profilebuilder
|
1032 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
1033 |
msgid "(Several required fields were left uncompleted)"
|
1034 |
msgstr "(Diverse verplichte velden zijn onvolledig ingevuld)"
|
1035 |
|
1036 |
# @ profilebuilder
|
1037 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
1038 |
#, fuzzy
|
1039 |
msgid "This username is already reserved to be used soon."
|
1040 |
msgstr "Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
|
1041 |
|
1042 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
1043 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
1044 |
msgid "Please try a different one!"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
# @ profilebuilder
|
1048 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
1049 |
#, fuzzy
|
1050 |
msgid "This email address is already reserved to be used soon."
|
1051 |
msgstr "Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
|
1052 |
|
1053 |
# @ profilebuilder
|
1054 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
1055 |
msgid "You are logged in as"
|
1056 |
msgstr "U bent ingelogd als"
|
1057 |
|
1058 |
# @ profilebuilder
|
1059 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
1060 |
msgid "You don't need another account."
|
1061 |
msgstr "U heeft geen ander account nodig"
|
1062 |
|
1063 |
# @ profilebuilder
|
1064 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
1065 |
msgid "Log out of this account."
|
1066 |
msgstr "Uitloggen van dit account"
|
1067 |
|
1068 |
# @ profilebuilder
|
1069 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
1070 |
msgid "Logout"
|
1071 |
msgstr "Uitloggen"
|
1072 |
|
1073 |
# @ profilebuilder
|
1074 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
1075 |
#, fuzzy
|
1076 |
msgid "An email has been sent to "
|
1077 |
msgstr "E-mail over wachtwoord resetten is gestuurd naar"
|
1078 |
|
1079 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
1080 |
msgid "with information on how to activate his/her account"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
# @ profilebuilder
|
1084 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1173
|
1085 |
msgid "A user account has been created for"
|
1086 |
msgstr "Gebruikers account is gemaakt voor"
|
1087 |
|
1088 |
# @ profilebuilder
|
1089 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
1090 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
1091 |
#, fuzzy
|
1092 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
1093 |
msgstr "U wordt automatisch doorgestuurd. Als u deze pagina meer dan 1 seconde ziet, klik svp op"
|
1094 |
|
1095 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
1096 |
msgid "An email has been sent to you with information on how to activate your account"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
# @ profilebuilder
|
1100 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
1101 |
msgid "Thank you for registering"
|
1102 |
msgstr "Bedankt voor registreren"
|
1103 |
|
1104 |
# @ profilebuilder
|
1105 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
1106 |
msgid "An error occured while trying to send the notification email."
|
1107 |
msgstr "Fout opgetreden tijdens verzenden van notificatie e-mail."
|
1108 |
|
1109 |
# @ profilebuilder
|
1110 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
1111 |
#, fuzzy
|
1112 |
msgid "An email containing activation instructions was successfully sent."
|
1113 |
msgstr "Een e-mail met gebruikersnaam en wachtwoord is succesvol verzonden."
|
1114 |
|
1115 |
# @ profilebuilder
|
1116 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
1117 |
msgid "An email containing the username and password was successfully sent."
|
1118 |
msgstr "Een e-mail met gebruikersnaam en wachtwoord is succesvol verzonden."
|
1119 |
|
1120 |
# @ profilebuilder
|
1121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
1122 |
msgid "Users can register themselves or you can manually create users here."
|
1123 |
msgstr "Gebruikers kunnen zich registreren of je kunt hier handmatig gebruikers aanmaken."
|
1124 |
|
1125 |
# @ profilebuilder
|
1126 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
1127 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
1128 |
msgstr "Gebruikers kunnen zich op dit moment niet registreren, maar je kunt hier wel handmatig gebruikers aanmaken."
|
1129 |
|
1130 |
# @ profilebuilder
|
1131 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
1132 |
msgid "Only an administrator can add new users."
|
1133 |
msgstr "Alleen een beheerder kan nieuwe gebruikers toevoegen."
|
1134 |
|
1135 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
1136 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
1137 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
1138 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
1139 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
1140 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
1141 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
1142 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
1143 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
1144 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
1148 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
1149 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
1150 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
1151 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
1152 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
1153 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
1154 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
1155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
1156 |
msgid "This field is marked as required by the administrator"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
1160 |
msgid "Anti-Spam"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
# @ profilebuilder
|
1164 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
1165 |
msgid "Send these credentials via email."
|
1166 |
msgstr "Verstuur deze gegevens via e-mail."
|
1167 |
|
1168 |
# @ profilebuilder
|
1169 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1170 |
msgid "Add User"
|
1171 |
msgstr "Gebruiker Toevoegen"
|
1172 |
|
1173 |
# @ profilebuilder
|
1174 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1175 |
msgid "Register"
|
1176 |
msgstr "Registreren"
|
1177 |
|
1333 |
msgid "Save"
|
1334 |
msgstr ""
|
1335 |
|
|
|
1336 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
1337 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
|
1338 |
msgid "Register your version of Profile Builder Pro"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
|
1342 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
|
1346 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:234
|
1350 |
msgid "Serial Number:"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
# @ profilebuilder
|
1354 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:238
|
1355 |
#, fuzzy
|
1356 |
msgid "The serial number was successfully validated!"
|
1357 |
msgstr "De avatar is succesvol verwijderd."
|
1358 |
|
1359 |
+
# @ profilebuilder
|
1360 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:240
|
1361 |
+
#, fuzzy
|
1362 |
+
msgid "The serial number entered couldn't be validated!"
|
1363 |
+
msgstr "De avatar is succesvol verwijderd."
|
1364 |
+
|
1365 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:242
|
1366 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:244
|
1370 |
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!"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:250
|
1374 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1375 |
msgstr ""
|
1376 |
|
1388 |
msgid "You need to be logged in to view the userlisting!"
|
1389 |
msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
|
1390 |
|
1391 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:67
|
1392 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:93
|
1393 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1394 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:909
|
1395 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:996
|
1396 |
msgid "Search Users by All Fields"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1400 |
msgid "Leave Blank and Press Search to List All Users"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:115
|
1404 |
msgid "Search"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
# @ profilebuilder
|
1408 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
|
1409 |
#, fuzzy
|
1410 |
msgid "First/Lastname"
|
1411 |
msgstr "Voornaam"
|
1412 |
|
1413 |
# @ profilebuilder
|
1414 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:134
|
1415 |
#, fuzzy
|
1416 |
msgid "Email"
|
1417 |
msgstr "E-mail"
|
1418 |
|
1419 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:140
|
1420 |
msgid "Sign-up Date"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
# @ profilebuilder
|
1424 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:146
|
1425 |
#, fuzzy
|
1426 |
msgid "Firstname"
|
1427 |
msgstr "Voornaam"
|
1428 |
|
1429 |
# @ profilebuilder
|
1430 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:152
|
1431 |
#, fuzzy
|
1432 |
msgid "Lastname"
|
1433 |
msgstr "Achternaam"
|
1434 |
|
1435 |
# @ profilebuilder
|
1436 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:158
|
1437 |
#, fuzzy
|
1438 |
msgid "Display Name"
|
1439 |
msgstr "Voornaam"
|
1440 |
|
1441 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:176
|
1442 |
msgid "Posts"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1446 |
msgid "Click here to see more information about this user"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1450 |
msgid "More..."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
# @ profilebuilder
|
1454 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:401
|
1455 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1456 |
#, fuzzy
|
1457 |
msgid "No uploaded attachment"
|
1458 |
msgstr "De bijlage"
|
1459 |
|
1460 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:403
|
1461 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1462 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:744
|
1463 |
msgid "Click to see the current attachment"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1467 |
msgid "Click here to go back"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
# @ profilebuilder
|
1471 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1472 |
#, fuzzy
|
1473 |
msgid "Back"
|
1474 |
msgstr "Zwart"
|
1475 |
|
1476 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1477 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1478 |
msgid "Current file"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:742
|
1482 |
msgid "Avatar"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:799
|
1486 |
msgid "No results found!"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:892
|
1490 |
msgid "«« First"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:893
|
1494 |
msgid "« Prev"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:894
|
1498 |
msgid "Next » "
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
|
1502 |
msgid "Last »»"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1247
|
1506 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1507 |
msgstr ""
|
1508 |
|
1544 |
msgstr ""
|
1545 |
|
1546 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
|
|
1547 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
1548 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:602
|
1549 |
msgid "reCAPTCHA"
|
1550 |
msgstr ""
|
1551 |
|
1631 |
|
1632 |
# @ profilebuilder
|
1633 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1634 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
|
1635 |
#, fuzzy
|
1636 |
msgid "Redirect"
|
1637 |
msgstr "Verplicht"
|
1638 |
|
1639 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1640 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:517
|
1641 |
msgid "URL"
|
1642 |
msgstr ""
|
1643 |
|
1646 |
msgstr ""
|
1647 |
|
1648 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1649 |
+
msgid "After Login (*):"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
# @ profilebuilder
|
1653 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1654 |
#, fuzzy
|
1655 |
+
msgid "Recover Password (**)"
|
1656 |
msgstr "Reset wachtwoord"
|
1657 |
|
1658 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
1659 |
+
msgid "Does not."
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:504
|
1663 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:509
|
1667 |
msgid "Redirects on default WordPress page requests:"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
|
1671 |
msgid "Requested WP Page"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:522
|
1675 |
msgid "Default WP Login Page(*)"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:534
|
1679 |
msgid "Default WP Logout Page(**)"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:546
|
1683 |
msgid "Default WP Register Page"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:558
|
1687 |
msgid "Default WP Dashboard (***)"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
|
1691 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
|
1695 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:571
|
1699 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
|
1703 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:607
|
1707 |
msgid "For this you must get a public and private key from Google:"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
|
1711 |
msgid "Key"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:614
|
1715 |
msgid "Code"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:618
|
1719 |
msgid "Public Key:"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:622
|
1723 |
msgid "Private Key:"
|
1724 |
msgstr ""
|
1725 |
|
1745 |
msgstr ""
|
1746 |
|
1747 |
# @ profilebuilder
|
1748 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:279
|
1749 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:422
|
1750 |
#, fuzzy
|
1751 |
msgid "You must give your option a title."
|
1752 |
msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
|
1753 |
|
1754 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
|
1755 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
|
1756 |
msgid "You have entered an invalid meta-key format!"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
# @ profilebuilder
|
1760 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
|
1761 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
|
1762 |
#, fuzzy
|
1763 |
msgid "You must enter a valid meta-key."
|
1764 |
msgstr "U moet een geldig e-mail adres invullen."
|
1765 |
|
1766 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:293
|
1767 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
|
1768 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:440
|
1769 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:452
|
1770 |
msgid "That meta-key is already in use."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1774 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:460
|
1775 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1779 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1780 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1784 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1785 |
msgid "The textarea row value must be numeric."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
|
1789 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
|
1790 |
msgid "The maxlength attribute must be numeric."
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1794 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1795 |
msgid "The value must be between 20 and 200!"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1799 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1800 |
msgid "The width component of the entered value must be numeric!"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1804 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1805 |
msgid "The height component of the entered value must be numeric!"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
|
1809 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
|
1810 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
|
1814 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
|
1815 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
|
1819 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
|
1820 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1824 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1825 |
msgid "The entered avatar size must be numeric!"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
# @ profilebuilder
|
1829 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:383
|
1830 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:559
|
1831 |
#, fuzzy
|
1832 |
msgid "There was an error, please try again."
|
1833 |
msgstr "Foutmelding tijdens het uploaden van uw avatar afbeelding."
|
1902 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1906 |
msgid "Do you want to"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1910 |
msgid "the current user?"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1914 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1915 |
msgid "Your account on"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1919 |
msgid "has been approved!"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:546
|
1923 |
msgid "An administrator has just approved your account on"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1927 |
msgid "has been unapproved!"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:550
|
1931 |
msgid "An administrator has just unapproved your account on"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:614
|
1935 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:660
|
1936 |
msgid "Approve"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:615
|
1940 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:705
|
1941 |
msgid "Unapproved"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:626
|
1945 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:656
|
1946 |
msgid "Unapprove"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:627
|
1950 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:702
|
1951 |
msgid "Approved"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:655
|
1955 |
msgid "unapprove"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:659
|
1959 |
msgid "approve"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1963 |
msgid "Are you sure you want to"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1967 |
msgid "this user?"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:724
|
1971 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:819
|
1975 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1976 |
+
msgstr ""
|
1977 |
+
|
1978 |
+
# @ profilebuilder
|
1979 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:824
|
1980 |
+
#, fuzzy
|
1981 |
+
msgid "Profile Builder Login Widget"
|
1982 |
+
msgstr "Profile Builder"
|
1983 |
+
|
1984 |
+
# @ profilebuilder
|
1985 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:853
|
1986 |
+
#, fuzzy
|
1987 |
+
msgid "Don't have an account?"
|
1988 |
+
msgstr "U heeft geen ander account nodig"
|
1989 |
+
|
1990 |
+
# @ profilebuilder
|
1991 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:860
|
1992 |
+
#, fuzzy
|
1993 |
+
msgid "Lost Your Password?"
|
1994 |
+
msgstr "Wachtwoord vergeten?"
|
1995 |
+
|
1996 |
+
# @ profilebuilder
|
1997 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:889
|
1998 |
+
#, fuzzy
|
1999 |
+
msgid "Login"
|
2000 |
+
msgstr "Inloggen"
|
2001 |
+
|
2002 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:898
|
2003 |
+
msgid "After login redirect URL:"
|
2004 |
+
msgstr ""
|
2005 |
+
|
2006 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:903
|
2007 |
+
msgid "Register page URL (optional)"
|
2008 |
+
msgstr ""
|
2009 |
+
|
2010 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:908
|
2011 |
+
msgid "Password Recovery page URL (optional)"
|
2012 |
+
msgstr ""
|
2013 |
+
|
2014 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:985
|
2015 |
+
#, php-format
|
2016 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please %sregister your copy%s of Profile Builder to receive access to automatic updates and support. Need a license key? %sPurchase one now%s %sDismiss%s"
|
2017 |
+
msgstr ""
|
2018 |
+
|
2019 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:987
|
2020 |
+
#, php-format
|
2021 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please %sRenew Your Licence%s to receive access to automatic updates and priority support. %sPurchase one now%s %sDismiss%s"
|
2022 |
+
msgstr ""
|
2023 |
+
|
translation/profilebuilder-pl_PL.mo
CHANGED
Binary file
|
translation/profilebuilder-pl_PL.po
CHANGED
@@ -1,19 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
-
"X-Poedit-Basepath:
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-Country: POLAND\n"
|
16 |
-
"X-Poedit-SearchPath-0: C:\\Users\\Cristi\\Desktop\\free\n"
|
17 |
|
18 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
19 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
@@ -102,8 +100,8 @@ msgid "shortcode."
|
|
102 |
msgstr ""
|
103 |
|
104 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
105 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
106 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
107 |
msgid "NOTE:"
|
108 |
msgstr "UWAGA:"
|
109 |
|
@@ -119,303 +117,311 @@ msgstr "Domyślne pola nadal będą widoczne (i przez to edytowalne) "
|
|
119 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
120 |
msgstr "z poziomu panelu administratora, podczas gdy nowo utworzone pola będą widoczne tylko z poziomu strony."
|
121 |
|
122 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
123 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
124 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
125 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
126 |
msgid "General Settings"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
130 |
#, fuzzy
|
131 |
msgid "Stylesheet Used on the Front-End:"
|
132 |
msgstr "Używane style:"
|
133 |
|
134 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
135 |
msgid "Default"
|
136 |
msgstr "Domyślny"
|
137 |
|
138 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
139 |
msgid "White"
|
140 |
msgstr "Biały"
|
141 |
|
142 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
143 |
msgid "Black"
|
144 |
msgstr "Czarny"
|
145 |
|
146 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
147 |
msgid "None"
|
148 |
msgstr "Żaden"
|
149 |
|
150 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
151 |
msgid "\"Email Confirmation\" Feature Activated:"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
155 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
156 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
157 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
158 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
159 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
160 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
161 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
162 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
163 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
164 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
165 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
166 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
167 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
169 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
170 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
171 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
172 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
173 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
174 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
175 |
msgid "Yes"
|
176 |
msgstr "Tak"
|
177 |
|
178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
180 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
182 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
184 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
186 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
188 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
189 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
190 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
191 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
193 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
194 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
196 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
197 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
198 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
199 |
msgid "No"
|
200 |
msgstr "Nie"
|
201 |
|
202 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
203 |
msgid "\"Admin Approval\" Feature Activated:"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
207 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
211 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
215 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
219 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
220 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
222 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
223 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
224 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
226 |
msgid "Save Changes"
|
227 |
msgstr "Zachowaj zmiany"
|
228 |
|
229 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
230 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
231 |
msgid "Show/Hide the Admin Bar on Front End"
|
232 |
msgstr "Pokaż/ukryj pasek administratora na stronie"
|
233 |
|
234 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
235 |
msgid "User-group"
|
236 |
msgstr "Grupa użytkowników"
|
237 |
|
238 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
239 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
240 |
msgid "Visibility"
|
241 |
msgstr "Widoczność"
|
242 |
|
243 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
244 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
245 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
247 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
248 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
249 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
250 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
252 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
253 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
254 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
256 |
msgid "Show"
|
257 |
msgstr "Pokaż"
|
258 |
|
259 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
260 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
261 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
262 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
263 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
264 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
266 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
267 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
268 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
269 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
270 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
271 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
272 |
msgid "Hide"
|
273 |
msgstr "Ukryj"
|
274 |
|
275 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
276 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
280 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
281 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
282 |
msgid "Default Profile Fields"
|
283 |
msgstr "Domyślne pola profilu"
|
284 |
|
285 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
286 |
msgid "Input Field Name"
|
287 |
msgstr "Nazwa pola"
|
288 |
|
289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
290 |
msgid "Required"
|
291 |
msgstr "Wymagane"
|
292 |
|
293 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
294 |
msgid "Name:"
|
295 |
msgstr "Imię:"
|
296 |
|
297 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
298 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
299 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
300 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
301 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
302 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
303 |
msgid "Username"
|
304 |
msgstr "Nazwa użytkownika"
|
305 |
|
306 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
307 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
308 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
309 |
msgid "First Name"
|
310 |
msgstr "Imię"
|
311 |
|
312 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
313 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
314 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
315 |
msgid "Last Name"
|
316 |
msgstr "Nazwisko"
|
317 |
|
318 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
319 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
320 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
321 |
msgid "Nickname"
|
322 |
msgstr "Ksywa"
|
323 |
|
324 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
325 |
msgid "Display name publicly as..."
|
326 |
msgstr "Pokaż wszystkim jako..."
|
327 |
|
328 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
329 |
msgid "Contact Info:"
|
330 |
msgstr "Dane kontaktowe:"
|
331 |
|
332 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
333 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
334 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
335 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
336 |
msgid "E-mail"
|
337 |
msgstr "E-mail"
|
338 |
|
339 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
340 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
341 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
342 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
343 |
msgid "Website"
|
344 |
msgstr "Strona www"
|
345 |
|
346 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
347 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
348 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
349 |
msgid "AIM"
|
350 |
msgstr "AIM"
|
351 |
|
352 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
353 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
354 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
355 |
msgid "Yahoo IM"
|
356 |
msgstr "Komunikator Yahoo"
|
357 |
|
358 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
359 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
360 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
361 |
msgid "Jabber / Google Talk"
|
362 |
msgstr "Jabber / GTalk"
|
363 |
|
364 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
365 |
msgid "About Yourself:"
|
366 |
msgstr "O sobie:"
|
367 |
|
368 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
369 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
370 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
371 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
372 |
msgid "Biographical Info"
|
373 |
msgstr "Informacje biograficzne"
|
374 |
|
375 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
376 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
377 |
msgid "New Password"
|
378 |
msgstr "Nowe hasło"
|
379 |
|
380 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
msgid "Basic Information"
|
382 |
msgstr "Informacje podstawowe"
|
383 |
|
384 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
385 |
msgid "Show/Hide the Admin Bar on Front-end"
|
386 |
msgstr "Pokaż/ukryj pasek administratora na stronie"
|
387 |
|
388 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
389 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
390 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
391 |
msgid "Extra Profile Fields"
|
392 |
msgstr "Dodatkowe pola profilu"
|
393 |
|
394 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
395 |
msgid "Addons"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
399 |
msgid "Register Your Version"
|
400 |
msgstr "Zarejestruj swoją wersję"
|
401 |
|
402 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
403 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
404 |
msgid "The information size you were trying to submit was larger than"
|
405 |
msgstr ""
|
406 |
|
407 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
408 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
409 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
410 |
msgstr ""
|
411 |
|
412 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
413 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
414 |
msgid "Since it was also larger than"
|
415 |
msgstr ""
|
416 |
|
417 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
418 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
419 |
msgid "no additional information is available."
|
420 |
msgstr ""
|
421 |
|
@@ -526,13 +532,13 @@ msgid "The avatar was"
|
|
526 |
msgstr ""
|
527 |
|
528 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
529 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
530 |
#, fuzzy
|
531 |
msgid "There was an error while trying to upload the following attachment(s)"
|
532 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
533 |
|
534 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
535 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
536 |
msgid "Only files with the following extension(s) can be uploaded:"
|
537 |
msgstr ""
|
538 |
|
@@ -541,7 +547,7 @@ msgid "This file was"
|
|
541 |
msgstr ""
|
542 |
|
543 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
544 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
545 |
msgid "Name"
|
546 |
msgstr "Imię"
|
547 |
|
@@ -581,7 +587,7 @@ msgid "Display name publicly as"
|
|
581 |
msgstr "Pokaż publicznie jako"
|
582 |
|
583 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
584 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
585 |
msgid "Contact Info"
|
586 |
msgstr "Dane kontaktowe"
|
587 |
|
@@ -590,14 +596,14 @@ msgid "(required)"
|
|
590 |
msgstr "(wymagane)"
|
591 |
|
592 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
593 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
594 |
msgid "About Yourself"
|
595 |
msgstr "O sobie"
|
596 |
|
597 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
598 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
600 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
601 |
msgid "Repeat Password"
|
602 |
msgstr "Powtórz hasło"
|
603 |
|
@@ -605,188 +611,191 @@ msgstr "Powtórz hasło"
|
|
605 |
msgid "Update"
|
606 |
msgstr "Aktualizuj"
|
607 |
|
608 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
609 |
#, fuzzy
|
610 |
msgid "You are currently logged in as"
|
611 |
msgstr "Jesteś zalogowany jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
612 |
|
613 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
614 |
msgid "Log out of this account"
|
615 |
msgstr "Wyloguj się z konta"
|
616 |
|
617 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
618 |
#, fuzzy
|
619 |
msgid "Log out"
|
620 |
msgstr "Wyloguj się &raguo;"
|
621 |
|
622 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
623 |
#, fuzzy
|
624 |
msgid "You have successfully logged in as"
|
625 |
msgstr "Zalogowałeś się jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
626 |
|
627 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
628 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
632 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.
|
|
|
|
|
633 |
msgid "here"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
637 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
638 |
msgid "ERROR:"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
642 |
msgid "The username field is empty"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
646 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
647 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
648 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
649 |
msgid "Password"
|
650 |
msgstr "Hasło"
|
651 |
|
652 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
653 |
msgid "Log in"
|
654 |
msgstr "Zaloguj się"
|
655 |
|
656 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
657 |
msgid "Remember me"
|
658 |
msgstr "Zapamiętaj mnie"
|
659 |
|
660 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
661 |
msgid "Lost password?"
|
662 |
msgstr "Zapomniałeś hasła?"
|
663 |
|
664 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
665 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
666 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
667 |
msgid "ERROR"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
671 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
675 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
676 |
msgid "A password reset email has been sent to "
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
680 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
681 |
msgid "Following the link sent in the email address will reset the password."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
685 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
686 |
msgid "Someone requested that the password be reset for the following account: "
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
690 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
691 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
695 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
696 |
msgid "To reset your password, visit the following link:"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
700 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
701 |
msgid "Password Reset Feature from"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
705 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
706 |
#, fuzzy
|
707 |
msgid "There was an error while trying to send the activation link to "
|
708 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
709 |
|
710 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
711 |
#, fuzzy
|
712 |
msgid "The email address entered wasn't found in the database!"
|
713 |
msgstr "Adres email, który wprowadziłeś, jest nieprawidłowy. <br/> Adres email to "
|
714 |
|
715 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
716 |
msgid "Please check that you entered the correct email address."
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
720 |
msgid "The username entered wasn't found in the database!"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
724 |
msgid "Please check that you entered the correct username."
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
728 |
#, fuzzy
|
729 |
msgid "Your password has been successfully changed!"
|
730 |
msgstr "Zmiany zostały zachowane"
|
731 |
|
732 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
733 |
msgid "You have successfully reset your password to:"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
737 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
738 |
#, fuzzy
|
739 |
msgid "Password Successfully Reset for"
|
740 |
msgstr "\" został poprawnie usunięty."
|
741 |
|
742 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
743 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
744 |
msgid "from"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
748 |
msgid "has requested a password change via the password reset feature."
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
752 |
msgid "His/her new password is:"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
756 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
757 |
msgid "The entered passwords don't match!"
|
758 |
msgstr "Wprowadzone hasła nie zgadzają się!"
|
759 |
|
760 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
761 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
762 |
#, fuzzy
|
763 |
msgid "Reset Password"
|
764 |
msgstr "Powtórz hasło"
|
765 |
|
766 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
767 |
msgid "Invalid key!"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
771 |
#, fuzzy
|
772 |
msgid "Please enter your username or email address."
|
773 |
msgstr "Musisz podać poprawny adres email."
|
774 |
|
775 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
776 |
msgid "You will receive a link to create a new password via email."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
780 |
#, fuzzy
|
781 |
msgid "Username or E-mail"
|
782 |
msgstr "Nazwa użytkownika"
|
783 |
|
784 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
785 |
#, fuzzy
|
786 |
msgid "Get New Password"
|
787 |
msgstr "Nowe hasło"
|
788 |
|
789 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
790 |
#, php-format
|
791 |
msgid ""
|
792 |
"To activate your user, please click the following link:\n"
|
@@ -797,229 +806,230 @@ msgid ""
|
|
797 |
"\n"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
801 |
#, php-format
|
802 |
msgid "[%1$s] Activate %2$s"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
806 |
msgid "Invalid activation key!"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
810 |
msgid "The user is already active!"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
814 |
msgid "Could not create user!"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
818 |
#, fuzzy
|
819 |
msgid "That username is already activated!"
|
820 |
msgstr "Podany użytkownik już istnieje!"
|
821 |
|
822 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
823 |
#, fuzzy
|
824 |
msgid "The user was successfully activated."
|
825 |
msgstr "Avatar został poprawnie usunięty."
|
826 |
|
827 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
828 |
#, fuzzy
|
829 |
msgid "There was an error while trying to activate the user."
|
830 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
831 |
|
832 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
833 |
msgid "New subscriber on"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
837 |
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!"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
841 |
msgid "A new subscriber has (been) registered!"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
845 |
#, fuzzy
|
846 |
msgid "A new account has been created for you."
|
847 |
msgstr "Konto dla %1$s zostało założone."
|
848 |
|
849 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
850 |
msgid "Welcome to"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
854 |
msgid "Your username is:"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
858 |
#, fuzzy
|
859 |
msgid "and password:"
|
860 |
msgstr "Hasło"
|
861 |
|
862 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
863 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
867 |
msgid "The user was NOT created!"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
871 |
msgid "A username is required for registration."
|
872 |
msgstr "Nazwa użytkownika jest wymagana do rejestracji."
|
873 |
|
874 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
875 |
msgid "Sorry, that username already exists!"
|
876 |
msgstr "Podany użytkownik już istnieje!"
|
877 |
|
878 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
879 |
msgid "You must enter a valid email address."
|
880 |
msgstr "Musisz podać poprawny adres email."
|
881 |
|
882 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
883 |
msgid "Sorry, that email address is already used!"
|
884 |
msgstr "Podany adres email został już wykorzystany!"
|
885 |
|
886 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
887 |
msgid "You didn't complete one of the password-fields!"
|
888 |
msgstr "Nie wypełniłeś jednego z pól z hasłem!"
|
889 |
|
890 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
891 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
892 |
#, fuzzy
|
893 |
msgid "The account was NOT created!"
|
894 |
msgstr "Konto dla %1$s zostało założone."
|
895 |
|
896 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
897 |
msgid "You must agree to the terms and conditions before registering!"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
901 |
msgid "(Several required fields were left uncompleted)"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
905 |
msgid "This username is already reserved to be used soon."
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
909 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
910 |
msgid "Please try a different one!"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
914 |
#, fuzzy
|
915 |
msgid "This email address is already reserved to be used soon."
|
916 |
msgstr "Podany adres email został już wykorzystany!"
|
917 |
|
918 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
919 |
msgid "You are logged in as"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
923 |
msgid "You don't need another account."
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
927 |
#, fuzzy
|
928 |
msgid "Log out of this account."
|
929 |
msgstr "Wyloguj się z konta"
|
930 |
|
931 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
932 |
#, fuzzy
|
933 |
msgid "Logout"
|
934 |
msgstr "Wyloguj się »"
|
935 |
|
936 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
937 |
msgid "An email has been sent to "
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
941 |
msgid "with information on how to activate his/her account"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
945 |
#, fuzzy
|
946 |
msgid "A user account has been created for"
|
947 |
msgstr "Konto dla %1$s zostało założone."
|
948 |
|
949 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
950 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
954 |
msgid "An email has been sent to you with information on how to activate your account"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
958 |
#, fuzzy
|
959 |
msgid "Thank you for registering"
|
960 |
msgstr "Dziękujemy za rejestrację, %1$s."
|
961 |
|
962 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
963 |
msgid "An error occured while trying to send the notification email."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
967 |
msgid "An email containing activation instructions was successfully sent."
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
971 |
msgid "An email containing the username and password was successfully sent."
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
975 |
msgid "Users can register themselves or you can manually create users here."
|
976 |
msgstr "Użytkownicy mogą zarejestrować się sami albo możesz dodać ich tutaj."
|
977 |
|
978 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
979 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
980 |
msgstr "Aktualnie użytkownicy nie mogą zarejestrować się sami, ale możesz dodać ich tutaj."
|
981 |
|
982 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
983 |
msgid "Only an administrator can add new users."
|
984 |
msgstr "Tylko administrator może dodać nowych użytkowników."
|
985 |
|
986 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
987 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
988 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
989 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
990 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
991 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
992 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
993 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
994 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
995 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
999 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1000 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1001 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1002 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1003 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1004 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1005 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1006 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1007 |
msgid "This field is marked as required by the administrator"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1011 |
msgid "Anti-Spam"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1015 |
msgid "Send these credentials via email."
|
1016 |
msgstr "Wyślij hasło i login emailem."
|
1017 |
|
1018 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1019 |
msgid "Add User"
|
1020 |
msgstr "Dodaj użytkownika"
|
1021 |
|
1022 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
1023 |
msgid "Register"
|
1024 |
msgstr "Zarejestruj się"
|
1025 |
|
@@ -1174,37 +1184,42 @@ msgstr ""
|
|
1174 |
msgid "Save"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:229
|
1178 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
|
|
1179 |
msgid "Register your version of Profile Builder Pro"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1183 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1187 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1191 |
msgid "Serial Number:"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1195 |
#, fuzzy
|
1196 |
msgid "The serial number was successfully validated!"
|
1197 |
msgstr "Avatar został poprawnie usunięty."
|
1198 |
|
1199 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1200 |
-
|
|
|
|
|
|
|
|
|
|
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1204 |
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!"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
1208 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1209 |
msgstr ""
|
1210 |
|
@@ -1221,116 +1236,116 @@ msgstr ""
|
|
1221 |
msgid "You need to be logged in to view the userlisting!"
|
1222 |
msgstr "Musisz być zalogowany żeby edytować swój profil."
|
1223 |
|
1224 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1226 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1227 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1228 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1229 |
msgid "Search Users by All Fields"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1233 |
msgid "Leave Blank and Press Search to List All Users"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1237 |
msgid "Search"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1241 |
#, fuzzy
|
1242 |
msgid "First/Lastname"
|
1243 |
msgstr "Imię"
|
1244 |
|
1245 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1246 |
#, fuzzy
|
1247 |
msgid "Email"
|
1248 |
msgstr "E-mail"
|
1249 |
|
1250 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1251 |
msgid "Sign-up Date"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1255 |
#, fuzzy
|
1256 |
msgid "Firstname"
|
1257 |
msgstr "Imię"
|
1258 |
|
1259 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1260 |
#, fuzzy
|
1261 |
msgid "Lastname"
|
1262 |
msgstr "Nazwisko"
|
1263 |
|
1264 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1265 |
#, fuzzy
|
1266 |
msgid "Display Name"
|
1267 |
msgstr "Imię"
|
1268 |
|
1269 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1270 |
msgid "Posts"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1274 |
msgid "Click here to see more information about this user"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1278 |
msgid "More..."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1282 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1283 |
#, fuzzy
|
1284 |
msgid "No uploaded attachment"
|
1285 |
msgstr "Załącznik \""
|
1286 |
|
1287 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1288 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1289 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1290 |
msgid "Click to see the current attachment"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1294 |
msgid "Click here to go back"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1298 |
#, fuzzy
|
1299 |
msgid "Back"
|
1300 |
msgstr "Czarny"
|
1301 |
|
1302 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1303 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1304 |
msgid "Current file"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1308 |
msgid "Avatar"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1312 |
msgid "No results found!"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1316 |
msgid "«« First"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1320 |
msgid "« Prev"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1324 |
#, fuzzy
|
1325 |
msgid "Next » "
|
1326 |
msgstr "Wyloguj się »"
|
1327 |
|
1328 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1329 |
#, fuzzy
|
1330 |
msgid "Last »»"
|
1331 |
msgstr "Wyloguj się »"
|
1332 |
|
1333 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:
|
1334 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1335 |
msgstr ""
|
1336 |
|
@@ -1372,8 +1387,8 @@ msgid "Custom Redirects"
|
|
1372 |
msgstr ""
|
1373 |
|
1374 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
1375 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:600
|
1376 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
|
|
1377 |
msgid "reCAPTCHA"
|
1378 |
msgstr ""
|
1379 |
|
@@ -1458,13 +1473,13 @@ msgid "Action"
|
|
1458 |
msgstr ""
|
1459 |
|
1460 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1461 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1462 |
#, fuzzy
|
1463 |
msgid "Redirect"
|
1464 |
msgstr "Wymagane"
|
1465 |
|
1466 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1467 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1468 |
msgid "URL"
|
1469 |
msgstr ""
|
1470 |
|
@@ -1473,75 +1488,79 @@ msgid "After Registration:"
|
|
1473 |
msgstr ""
|
1474 |
|
1475 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1476 |
-
msgid "After Login:"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1480 |
#, fuzzy
|
1481 |
-
msgid "Recover Password (
|
1482 |
msgstr "Powtórz hasło"
|
1483 |
|
1484 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
|
|
|
|
|
|
|
|
1485 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1489 |
msgid "Redirects on default WordPress page requests:"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1493 |
msgid "Requested WP Page"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1497 |
msgid "Default WP Login Page(*)"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1501 |
msgid "Default WP Logout Page(**)"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1505 |
msgid "Default WP Register Page"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1509 |
msgid "Default WP Dashboard (***)"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1513 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1517 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1521 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1525 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1529 |
msgid "For this you must get a public and private key from Google:"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1533 |
msgid "Key"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1537 |
msgid "Code"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1541 |
msgid "Public Key:"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
1545 |
msgid "Private Key:"
|
1546 |
msgstr ""
|
1547 |
|
@@ -1566,87 +1585,87 @@ msgstr ""
|
|
1566 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1570 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1571 |
#, fuzzy
|
1572 |
msgid "You must give your option a title."
|
1573 |
msgstr "Musisz być zalogowany żeby edytować swój profil."
|
1574 |
|
1575 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1576 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1577 |
msgid "You have entered an invalid meta-key format!"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1581 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1582 |
#, fuzzy
|
1583 |
msgid "You must enter a valid meta-key."
|
1584 |
msgstr "Musisz podać poprawny adres email."
|
1585 |
|
1586 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1587 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1588 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1589 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1590 |
msgid "That meta-key is already in use."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1594 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1595 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1599 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1600 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1604 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1605 |
msgid "The textarea row value must be numeric."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1609 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1610 |
msgid "The maxlength attribute must be numeric."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1614 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1615 |
msgid "The value must be between 20 and 200!"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1619 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1620 |
msgid "The width component of the entered value must be numeric!"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1624 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1625 |
msgid "The height component of the entered value must be numeric!"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1629 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1630 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1634 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1635 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1639 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1640 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1644 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1645 |
msgid "The entered avatar size must be numeric!"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1649 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1650 |
msgid "There was an error, please try again."
|
1651 |
msgstr ""
|
1652 |
|
@@ -1720,75 +1739,120 @@ msgstr ""
|
|
1720 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1724 |
msgid "Do you want to"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1728 |
msgid "the current user?"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1732 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1733 |
msgid "Your account on"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1737 |
msgid "has been approved!"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1741 |
msgid "An administrator has just approved your account on"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1745 |
msgid "has been unapproved!"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1749 |
msgid "An administrator has just unapproved your account on"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1753 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1754 |
msgid "Approve"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1758 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1759 |
msgid "Unapproved"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1763 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1764 |
msgid "Unapprove"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1768 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1769 |
msgid "Approved"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1773 |
msgid "unapprove"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1777 |
msgid "approve"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1781 |
msgid "Are you sure you want to"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1785 |
msgid "this user?"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1789 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1790 |
msgstr ""
|
1791 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1792 |
#~ msgid "Plugin Layout"
|
1793 |
#~ msgstr "Układ pluginu"
|
1794 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-02 16:16+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-10-02 16:16+0200\n"
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
+
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabi\\Desktop\\test\\profile-builder-pro\n"
|
|
|
|
|
15 |
|
16 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
100 |
msgstr ""
|
101 |
|
102 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
103 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
|
104 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
105 |
msgid "NOTE:"
|
106 |
msgstr "UWAGA:"
|
107 |
|
117 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
118 |
msgstr "z poziomu panelu administratora, podczas gdy nowo utworzone pola będą widoczne tylko z poziomu strony."
|
119 |
|
120 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
|
121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:69
|
122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
|
123 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
124 |
msgid "General Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
|
128 |
#, fuzzy
|
129 |
msgid "Stylesheet Used on the Front-End:"
|
130 |
msgstr "Używane style:"
|
131 |
|
132 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:72
|
133 |
msgid "Default"
|
134 |
msgstr "Domyślny"
|
135 |
|
136 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
|
137 |
msgid "White"
|
138 |
msgstr "Biały"
|
139 |
|
140 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:77
|
141 |
msgid "Black"
|
142 |
msgstr "Czarny"
|
143 |
|
144 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:81
|
145 |
msgid "None"
|
146 |
msgstr "Żaden"
|
147 |
|
148 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:87
|
149 |
msgid "\"Email Confirmation\" Feature Activated:"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
|
153 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:99
|
154 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
|
155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
|
156 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:238
|
157 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:251
|
158 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:264
|
159 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:283
|
160 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:296
|
161 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:312
|
162 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:325
|
163 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:338
|
164 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:357
|
165 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:371
|
166 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
167 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
169 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
|
170 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
|
171 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
|
172 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
|
173 |
msgid "Yes"
|
174 |
msgstr "Tak"
|
175 |
|
176 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:90
|
177 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:100
|
178 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:213
|
179 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:226
|
180 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:239
|
181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:252
|
182 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:265
|
183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:284
|
184 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:297
|
185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:313
|
186 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:326
|
187 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:339
|
188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:358
|
189 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:372
|
190 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
191 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:526
|
194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:538
|
195 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:550
|
196 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:562
|
197 |
msgid "No"
|
198 |
msgstr "Nie"
|
199 |
|
200 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
|
201 |
msgid "\"Admin Approval\" Feature Activated:"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
|
205 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
|
209 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
|
213 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:116
|
217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
|
218 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:380
|
219 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:256
|
220 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
221 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
222 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:576
|
223 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:630
|
224 |
msgid "Save Changes"
|
225 |
msgstr "Zachowaj zmiany"
|
226 |
|
227 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:134
|
228 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:135
|
229 |
msgid "Show/Hide the Admin Bar on Front End"
|
230 |
msgstr "Pokaż/ukryj pasek administratora na stronie"
|
231 |
|
232 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:139
|
233 |
msgid "User-group"
|
234 |
msgstr "Grupa użytkowników"
|
235 |
|
236 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:140
|
237 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:193
|
238 |
msgid "Visibility"
|
239 |
msgstr "Widoczność"
|
240 |
|
241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:149
|
242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
|
243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
|
244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
|
245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
|
246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
|
247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:279
|
248 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:292
|
249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
|
250 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
|
251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:334
|
252 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:353
|
253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:367
|
254 |
msgid "Show"
|
255 |
msgstr "Pokaż"
|
256 |
|
257 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:150
|
258 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:209
|
259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:222
|
260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:235
|
261 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:248
|
262 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:261
|
263 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:280
|
264 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:293
|
265 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:309
|
266 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:322
|
267 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:335
|
268 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:354
|
269 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:368
|
270 |
msgid "Hide"
|
271 |
msgstr "Ukryj"
|
272 |
|
273 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:162
|
274 |
msgid "If you added new roles (via another plugin) <u>after</u> Profile Builder was activated, please reactivate it, since the roles are initialized during plugin activation."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:187
|
278 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:188
|
279 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:61
|
280 |
msgid "Default Profile Fields"
|
281 |
msgstr "Domyślne pola profilu"
|
282 |
|
283 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:192
|
284 |
msgid "Input Field Name"
|
285 |
msgstr "Nazwa pola"
|
286 |
|
287 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:194
|
288 |
msgid "Required"
|
289 |
msgstr "Wymagane"
|
290 |
|
291 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:199
|
292 |
msgid "Name:"
|
293 |
msgstr "Imię:"
|
294 |
|
295 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:205
|
296 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:169
|
298 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
299 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
300 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:122
|
301 |
msgid "Username"
|
302 |
msgstr "Nazwa użytkownika"
|
303 |
|
304 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:218
|
305 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
306 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
307 |
msgid "First Name"
|
308 |
msgstr "Imię"
|
309 |
|
310 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:231
|
311 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
312 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
313 |
msgid "Last Name"
|
314 |
msgstr "Nazwisko"
|
315 |
|
316 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:244
|
317 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
318 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
319 |
msgid "Nickname"
|
320 |
msgstr "Ksywa"
|
321 |
|
322 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:257
|
323 |
msgid "Display name publicly as..."
|
324 |
msgstr "Pokaż wszystkim jako..."
|
325 |
|
326 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:270
|
327 |
msgid "Contact Info:"
|
328 |
msgstr "Dane kontaktowe:"
|
329 |
|
330 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:276
|
331 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
332 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
333 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
334 |
msgid "E-mail"
|
335 |
msgstr "E-mail"
|
336 |
|
337 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:289
|
338 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
339 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
340 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:164
|
341 |
msgid "Website"
|
342 |
msgstr "Strona www"
|
343 |
|
344 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:305
|
345 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
346 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
347 |
msgid "AIM"
|
348 |
msgstr "AIM"
|
349 |
|
350 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:318
|
351 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
352 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
353 |
msgid "Yahoo IM"
|
354 |
msgstr "Komunikator Yahoo"
|
355 |
|
356 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:331
|
357 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
358 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
359 |
msgid "Jabber / Google Talk"
|
360 |
msgstr "Jabber / GTalk"
|
361 |
|
362 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:344
|
363 |
msgid "About Yourself:"
|
364 |
msgstr "O sobie:"
|
365 |
|
366 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:350
|
367 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
368 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
369 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:170
|
370 |
msgid "Biographical Info"
|
371 |
msgstr "Informacje biograficzne"
|
372 |
|
373 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:364
|
374 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
375 |
msgid "New Password"
|
376 |
msgstr "Nowe hasło"
|
377 |
|
378 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:36
|
379 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive access to automatic updates and support. Need a license key? <a href='http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' class='button-primary'>Purchase one now</a>"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:38
|
383 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</a> to receive access to automatic updates and priority support. <a href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' class='button-primary'>Purchase one now</a>"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:58
|
387 |
msgid "Basic Information"
|
388 |
msgstr "Informacje podstawowe"
|
389 |
|
390 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:60
|
391 |
msgid "Show/Hide the Admin Bar on Front-end"
|
392 |
msgstr "Pokaż/ukryj pasek administratora na stronie"
|
393 |
|
394 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:67
|
395 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:6
|
396 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:7
|
397 |
msgid "Extra Profile Fields"
|
398 |
msgstr "Dodatkowe pola profilu"
|
399 |
|
400 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:70
|
401 |
msgid "Addons"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:73
|
405 |
msgid "Register Your Version"
|
406 |
msgstr "Zarejestruj swoją wersję"
|
407 |
|
408 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
409 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
410 |
msgid "The information size you were trying to submit was larger than"
|
411 |
msgstr ""
|
412 |
|
413 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
414 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
415 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
416 |
msgstr ""
|
417 |
|
418 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
419 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
420 |
msgid "Since it was also larger than"
|
421 |
msgstr ""
|
422 |
|
423 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
424 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
425 |
msgid "no additional information is available."
|
426 |
msgstr ""
|
427 |
|
532 |
msgstr ""
|
533 |
|
534 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
535 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
536 |
#, fuzzy
|
537 |
msgid "There was an error while trying to upload the following attachment(s)"
|
538 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
539 |
|
540 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
541 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
542 |
msgid "Only files with the following extension(s) can be uploaded:"
|
543 |
msgstr ""
|
544 |
|
547 |
msgstr ""
|
548 |
|
549 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
550 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
551 |
msgid "Name"
|
552 |
msgstr "Imię"
|
553 |
|
587 |
msgstr "Pokaż publicznie jako"
|
588 |
|
589 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
590 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
591 |
msgid "Contact Info"
|
592 |
msgstr "Dane kontaktowe"
|
593 |
|
596 |
msgstr "(wymagane)"
|
597 |
|
598 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
599 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
600 |
msgid "About Yourself"
|
601 |
msgstr "O sobie"
|
602 |
|
603 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
604 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
605 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
607 |
msgid "Repeat Password"
|
608 |
msgstr "Powtórz hasło"
|
609 |
|
611 |
msgid "Update"
|
612 |
msgstr "Aktualizuj"
|
613 |
|
614 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:61
|
615 |
#, fuzzy
|
616 |
msgid "You are currently logged in as"
|
617 |
msgstr "Jesteś zalogowany jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
618 |
|
619 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
620 |
msgid "Log out of this account"
|
621 |
msgstr "Wyloguj się z konta"
|
622 |
|
623 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:62
|
624 |
#, fuzzy
|
625 |
msgid "Log out"
|
626 |
msgstr "Wyloguj się &raguo;"
|
627 |
|
628 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:80
|
629 |
#, fuzzy
|
630 |
msgid "You have successfully logged in as"
|
631 |
msgstr "Zalogowałeś się jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
632 |
|
633 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
634 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
635 |
msgid "You will soon be redirected automatically. If you see this page for more than 1 second, please click"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:110
|
639 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:124
|
640 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
641 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
642 |
msgid "here"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
646 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
647 |
msgid "ERROR:"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
651 |
msgid "The username field is empty"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:177
|
655 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
656 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
657 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
658 |
msgid "Password"
|
659 |
msgstr "Hasło"
|
660 |
|
661 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
662 |
msgid "Log in"
|
663 |
msgstr "Zaloguj się"
|
664 |
|
665 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:189
|
666 |
msgid "Remember me"
|
667 |
msgstr "Zapamiętaj mnie"
|
668 |
|
669 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.login.php:204
|
670 |
msgid "Lost password?"
|
671 |
msgstr "Zapomniałeś hasła?"
|
672 |
|
673 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
674 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
675 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
676 |
msgid "ERROR"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
680 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
684 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
685 |
msgid "A password reset email has been sent to "
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
689 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
690 |
msgid "Following the link sent in the email address will reset the password."
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
694 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
695 |
msgid "Someone requested that the password be reset for the following account: "
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
699 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
700 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
704 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
705 |
msgid "To reset your password, visit the following link:"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
709 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
710 |
msgid "Password Reset Feature from"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
714 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
715 |
#, fuzzy
|
716 |
msgid "There was an error while trying to send the activation link to "
|
717 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
718 |
|
719 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
720 |
#, fuzzy
|
721 |
msgid "The email address entered wasn't found in the database!"
|
722 |
msgstr "Adres email, który wprowadziłeś, jest nieprawidłowy. <br/> Adres email to "
|
723 |
|
724 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
725 |
msgid "Please check that you entered the correct email address."
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
729 |
msgid "The username entered wasn't found in the database!"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
733 |
msgid "Please check that you entered the correct username."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
737 |
#, fuzzy
|
738 |
msgid "Your password has been successfully changed!"
|
739 |
msgstr "Zmiany zostały zachowane"
|
740 |
|
741 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
742 |
msgid "You have successfully reset your password to:"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
746 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
747 |
#, fuzzy
|
748 |
msgid "Password Successfully Reset for"
|
749 |
msgstr "\" został poprawnie usunięty."
|
750 |
|
751 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
752 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
753 |
msgid "from"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
757 |
msgid "has requested a password change via the password reset feature."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
761 |
msgid "His/her new password is:"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
765 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
766 |
msgid "The entered passwords don't match!"
|
767 |
msgstr "Wprowadzone hasła nie zgadzają się!"
|
768 |
|
769 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
770 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
771 |
#, fuzzy
|
772 |
msgid "Reset Password"
|
773 |
msgstr "Powtórz hasło"
|
774 |
|
775 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
776 |
msgid "Invalid key!"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
780 |
#, fuzzy
|
781 |
msgid "Please enter your username or email address."
|
782 |
msgstr "Musisz podać poprawny adres email."
|
783 |
|
784 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
785 |
msgid "You will receive a link to create a new password via email."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
789 |
#, fuzzy
|
790 |
msgid "Username or E-mail"
|
791 |
msgstr "Nazwa użytkownika"
|
792 |
|
793 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
794 |
#, fuzzy
|
795 |
msgid "Get New Password"
|
796 |
msgstr "Nowe hasło"
|
797 |
|
798 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
799 |
#, php-format
|
800 |
msgid ""
|
801 |
"To activate your user, please click the following link:\n"
|
806 |
"\n"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
810 |
#, php-format
|
811 |
msgid "[%1$s] Activate %2$s"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
815 |
msgid "Invalid activation key!"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
819 |
msgid "The user is already active!"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
823 |
msgid "Could not create user!"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
827 |
#, fuzzy
|
828 |
msgid "That username is already activated!"
|
829 |
msgstr "Podany użytkownik już istnieje!"
|
830 |
|
831 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
832 |
#, fuzzy
|
833 |
msgid "The user was successfully activated."
|
834 |
msgstr "Avatar został poprawnie usunięty."
|
835 |
|
836 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
837 |
#, fuzzy
|
838 |
msgid "There was an error while trying to activate the user."
|
839 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
840 |
|
841 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
842 |
msgid "New subscriber on"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
846 |
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!"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
850 |
msgid "A new subscriber has (been) registered!"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
854 |
#, fuzzy
|
855 |
msgid "A new account has been created for you."
|
856 |
msgstr "Konto dla %1$s zostało założone."
|
857 |
|
858 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
859 |
msgid "Welcome to"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
863 |
msgid "Your username is:"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
867 |
#, fuzzy
|
868 |
msgid "and password:"
|
869 |
msgstr "Hasło"
|
870 |
|
871 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
872 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
876 |
msgid "The user was NOT created!"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
880 |
msgid "A username is required for registration."
|
881 |
msgstr "Nazwa użytkownika jest wymagana do rejestracji."
|
882 |
|
883 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
884 |
msgid "Sorry, that username already exists!"
|
885 |
msgstr "Podany użytkownik już istnieje!"
|
886 |
|
887 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
888 |
msgid "You must enter a valid email address."
|
889 |
msgstr "Musisz podać poprawny adres email."
|
890 |
|
891 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
892 |
msgid "Sorry, that email address is already used!"
|
893 |
msgstr "Podany adres email został już wykorzystany!"
|
894 |
|
895 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
896 |
msgid "You didn't complete one of the password-fields!"
|
897 |
msgstr "Nie wypełniłeś jednego z pól z hasłem!"
|
898 |
|
899 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
900 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
901 |
#, fuzzy
|
902 |
msgid "The account was NOT created!"
|
903 |
msgstr "Konto dla %1$s zostało założone."
|
904 |
|
905 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
906 |
msgid "You must agree to the terms and conditions before registering!"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
910 |
msgid "(Several required fields were left uncompleted)"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
914 |
msgid "This username is already reserved to be used soon."
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
918 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
919 |
msgid "Please try a different one!"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
923 |
#, fuzzy
|
924 |
msgid "This email address is already reserved to be used soon."
|
925 |
msgstr "Podany adres email został już wykorzystany!"
|
926 |
|
927 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
928 |
msgid "You are logged in as"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
932 |
msgid "You don't need another account."
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
936 |
#, fuzzy
|
937 |
msgid "Log out of this account."
|
938 |
msgstr "Wyloguj się z konta"
|
939 |
|
940 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
941 |
#, fuzzy
|
942 |
msgid "Logout"
|
943 |
msgstr "Wyloguj się »"
|
944 |
|
945 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
946 |
msgid "An email has been sent to "
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
950 |
msgid "with information on how to activate his/her account"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1173
|
954 |
#, fuzzy
|
955 |
msgid "A user account has been created for"
|
956 |
msgstr "Konto dla %1$s zostało założone."
|
957 |
|
958 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
959 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
960 |
msgid "You will soon be redirected automatically. If you see this page for more than 3 seconds, please click"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
964 |
msgid "An email has been sent to you with information on how to activate your account"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
968 |
#, fuzzy
|
969 |
msgid "Thank you for registering"
|
970 |
msgstr "Dziękujemy za rejestrację, %1$s."
|
971 |
|
972 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
973 |
msgid "An error occured while trying to send the notification email."
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
977 |
msgid "An email containing activation instructions was successfully sent."
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
981 |
msgid "An email containing the username and password was successfully sent."
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
985 |
msgid "Users can register themselves or you can manually create users here."
|
986 |
msgstr "Użytkownicy mogą zarejestrować się sami albo możesz dodać ich tutaj."
|
987 |
|
988 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
989 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
990 |
msgstr "Aktualnie użytkownicy nie mogą zarejestrować się sami, ale możesz dodać ich tutaj."
|
991 |
|
992 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
993 |
msgid "Only an administrator can add new users."
|
994 |
msgstr "Tylko administrator może dodać nowych użytkowników."
|
995 |
|
996 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
997 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
998 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
999 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
1000 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
1001 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
1002 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
1003 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
1004 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
1005 |
msgid "This field must be filled out before registering (It was marked as required by the administrator)"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
1009 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
1010 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
1011 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
1012 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
1013 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
1014 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
1015 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
1016 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
1017 |
msgid "This field is marked as required by the administrator"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
1021 |
msgid "Anti-Spam"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
1025 |
msgid "Send these credentials via email."
|
1026 |
msgstr "Wyślij hasło i login emailem."
|
1027 |
|
1028 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1029 |
msgid "Add User"
|
1030 |
msgstr "Dodaj użytkownika"
|
1031 |
|
1032 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
1033 |
msgid "Register"
|
1034 |
msgstr "Zarejestruj się"
|
1035 |
|
1184 |
msgid "Save"
|
1185 |
msgstr ""
|
1186 |
|
|
|
1187 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:230
|
1188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:231
|
1189 |
msgid "Register your version of Profile Builder Pro"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:232
|
1193 |
msgid "Now that you acquired a copy of Profile Builder Pro, you should take the time and register it with the serial number you received in the e-mail."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:233
|
1197 |
msgid "If you register this version of Profile Builder, you'll receive information regarding eventual upgrades, patches, and - if needed - technical support."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:234
|
1201 |
msgid "Serial Number:"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:238
|
1205 |
#, fuzzy
|
1206 |
msgid "The serial number was successfully validated!"
|
1207 |
msgstr "Avatar został poprawnie usunięty."
|
1208 |
|
1209 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:240
|
1210 |
+
#, fuzzy
|
1211 |
+
msgid "The serial number entered couldn't be validated!"
|
1212 |
+
msgstr "Avatar został poprawnie usunięty."
|
1213 |
+
|
1214 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:242
|
1215 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:244
|
1219 |
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!"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:250
|
1223 |
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1224 |
msgstr ""
|
1225 |
|
1236 |
msgid "You need to be logged in to view the userlisting!"
|
1237 |
msgstr "Musisz być zalogowany żeby edytować swój profil."
|
1238 |
|
1239 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:67
|
1240 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:93
|
1241 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1242 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:909
|
1243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:996
|
1244 |
msgid "Search Users by All Fields"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:111
|
1248 |
msgid "Leave Blank and Press Search to List All Users"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:115
|
1252 |
msgid "Search"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:128
|
1256 |
#, fuzzy
|
1257 |
msgid "First/Lastname"
|
1258 |
msgstr "Imię"
|
1259 |
|
1260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:134
|
1261 |
#, fuzzy
|
1262 |
msgid "Email"
|
1263 |
msgstr "E-mail"
|
1264 |
|
1265 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:140
|
1266 |
msgid "Sign-up Date"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:146
|
1270 |
#, fuzzy
|
1271 |
msgid "Firstname"
|
1272 |
msgstr "Imię"
|
1273 |
|
1274 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:152
|
1275 |
#, fuzzy
|
1276 |
msgid "Lastname"
|
1277 |
msgstr "Nazwisko"
|
1278 |
|
1279 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:158
|
1280 |
#, fuzzy
|
1281 |
msgid "Display Name"
|
1282 |
msgstr "Imię"
|
1283 |
|
1284 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:176
|
1285 |
msgid "Posts"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1289 |
msgid "Click here to see more information about this user"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:218
|
1293 |
msgid "More..."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:401
|
1297 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1298 |
#, fuzzy
|
1299 |
msgid "No uploaded attachment"
|
1300 |
msgstr "Załącznik \""
|
1301 |
|
1302 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:403
|
1303 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1304 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:744
|
1305 |
msgid "Click to see the current attachment"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1309 |
msgid "Click here to go back"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:525
|
1313 |
#, fuzzy
|
1314 |
msgid "Back"
|
1315 |
msgstr "Czarny"
|
1316 |
|
1317 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:688
|
1318 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:690
|
1319 |
msgid "Current file"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:742
|
1323 |
msgid "Avatar"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:799
|
1327 |
msgid "No results found!"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:892
|
1331 |
msgid "«« First"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:893
|
1335 |
msgid "« Prev"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:894
|
1339 |
#, fuzzy
|
1340 |
msgid "Next » "
|
1341 |
msgstr "Wyloguj się »"
|
1342 |
|
1343 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:895
|
1344 |
#, fuzzy
|
1345 |
msgid "Last »»"
|
1346 |
msgstr "Wyloguj się »"
|
1347 |
|
1348 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:1247
|
1349 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1350 |
msgstr ""
|
1351 |
|
1387 |
msgstr ""
|
1388 |
|
1389 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:34
|
|
|
1390 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:601
|
1391 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:602
|
1392 |
msgid "reCAPTCHA"
|
1393 |
msgstr ""
|
1394 |
|
1473 |
msgstr ""
|
1474 |
|
1475 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:470
|
1476 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:516
|
1477 |
#, fuzzy
|
1478 |
msgid "Redirect"
|
1479 |
msgstr "Wymagane"
|
1480 |
|
1481 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:471
|
1482 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:517
|
1483 |
msgid "URL"
|
1484 |
msgstr ""
|
1485 |
|
1488 |
msgstr ""
|
1489 |
|
1490 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:483
|
1491 |
+
msgid "After Login (*):"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:492
|
1495 |
#, fuzzy
|
1496 |
+
msgid "Recover Password (**)"
|
1497 |
msgstr "Powtórz hasło"
|
1498 |
|
1499 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:503
|
1500 |
+
msgid "Does not."
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:504
|
1504 |
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:509
|
1508 |
msgid "Redirects on default WordPress page requests:"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:515
|
1512 |
msgid "Requested WP Page"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:522
|
1516 |
msgid "Default WP Login Page(*)"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:534
|
1520 |
msgid "Default WP Logout Page(**)"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:546
|
1524 |
msgid "Default WP Register Page"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:558
|
1528 |
msgid "Default WP Dashboard (***)"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:569
|
1532 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:570
|
1536 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:571
|
1540 |
msgid "Redirects every user-role EXCEPT the ones with administrator privilages (can manage options)."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:606
|
1544 |
msgid "Adds a reCAPTCHA form on the registration page created in the front-end (only)."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:607
|
1548 |
msgid "For this you must get a public and private key from Google:"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:613
|
1552 |
msgid "Key"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:614
|
1556 |
msgid "Code"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:618
|
1560 |
msgid "Public Key:"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:622
|
1564 |
msgid "Private Key:"
|
1565 |
msgstr ""
|
1566 |
|
1585 |
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:279
|
1589 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:422
|
1590 |
#, fuzzy
|
1591 |
msgid "You must give your option a title."
|
1592 |
msgstr "Musisz być zalogowany żeby edytować swój profil."
|
1593 |
|
1594 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:283
|
1595 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:426
|
1596 |
msgid "You have entered an invalid meta-key format!"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:287
|
1600 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:430
|
1601 |
#, fuzzy
|
1602 |
msgid "You must enter a valid meta-key."
|
1603 |
msgstr "Musisz podać poprawny adres email."
|
1604 |
|
1605 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:293
|
1606 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:303
|
1607 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:440
|
1608 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:452
|
1609 |
msgid "That meta-key is already in use."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1613 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:460
|
1614 |
msgid "There is already an avatar input-type. You can only have one avatar present."
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1618 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1619 |
msgid "There is already an \"Agree to Terms and Conditions\" checkbox. You can only have one present."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1623 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1624 |
msgid "The textarea row value must be numeric."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:326
|
1628 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:476
|
1629 |
msgid "The maxlength attribute must be numeric."
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1633 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1634 |
msgid "The value must be between 20 and 200!"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1638 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1639 |
msgid "The width component of the entered value must be numeric!"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1643 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1644 |
msgid "The height component of the entered value must be numeric!"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:342
|
1648 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:492
|
1649 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:344
|
1653 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:494
|
1654 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:346
|
1658 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:496
|
1659 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1663 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1664 |
msgid "The entered avatar size must be numeric!"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:383
|
1668 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:559
|
1669 |
msgid "There was an error, please try again."
|
1670 |
msgstr ""
|
1671 |
|
1739 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1743 |
msgid "Do you want to"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:517
|
1747 |
msgid "the current user?"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1751 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1752 |
msgid "Your account on"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:545
|
1756 |
msgid "has been approved!"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:546
|
1760 |
msgid "An administrator has just approved your account on"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:549
|
1764 |
msgid "has been unapproved!"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:550
|
1768 |
msgid "An administrator has just unapproved your account on"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:614
|
1772 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:660
|
1773 |
msgid "Approve"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:615
|
1777 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:705
|
1778 |
msgid "Unapproved"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:626
|
1782 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:656
|
1783 |
msgid "Unapprove"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:627
|
1787 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:702
|
1788 |
msgid "Approved"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:655
|
1792 |
msgid "unapprove"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:659
|
1796 |
msgid "approve"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1800 |
msgid "Are you sure you want to"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:663
|
1804 |
msgid "this user?"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:724
|
1808 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:819
|
1812 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1813 |
+
msgstr ""
|
1814 |
+
|
1815 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:824
|
1816 |
+
#, fuzzy
|
1817 |
+
msgid "Profile Builder Login Widget"
|
1818 |
+
msgstr "Profile Builder "
|
1819 |
+
|
1820 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:853
|
1821 |
+
msgid "Don't have an account?"
|
1822 |
+
msgstr ""
|
1823 |
+
|
1824 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:860
|
1825 |
+
#, fuzzy
|
1826 |
+
msgid "Lost Your Password?"
|
1827 |
+
msgstr "Zapomniałeś hasła?"
|
1828 |
+
|
1829 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:889
|
1830 |
+
#, fuzzy
|
1831 |
+
msgid "Login"
|
1832 |
+
msgstr "Zaloguj się"
|
1833 |
+
|
1834 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:898
|
1835 |
+
msgid "After login redirect URL:"
|
1836 |
+
msgstr ""
|
1837 |
+
|
1838 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:903
|
1839 |
+
msgid "Register page URL (optional)"
|
1840 |
+
msgstr ""
|
1841 |
+
|
1842 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:908
|
1843 |
+
msgid "Password Recovery page URL (optional)"
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:985
|
1847 |
+
#, php-format
|
1848 |
+
msgid "Your <strong>Profile Builder Pro</strong> serial number is invalid or missing. Please %sregister your copy%s of Profile Builder to receive access to automatic updates and support. Need a license key? %sPurchase one now%s %sDismiss%s"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:987
|
1852 |
+
#, php-format
|
1853 |
+
msgid "Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please %sRenew Your Licence%s to receive access to automatic updates and priority support. %sPurchase one now%s %sDismiss%s"
|
1854 |
+
msgstr ""
|
1855 |
+
|
1856 |
#~ msgid "Plugin Layout"
|
1857 |
#~ msgstr "Układ pluginu"
|
1858 |
|
translation/profilebuilder-pt_BR.mo
CHANGED
Binary file
|
translation/profilebuilder-pt_BR.po
CHANGED
@@ -1,19 +1,17 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
-
"X-Poedit-Basepath:
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-Country: BRAZIL\n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
|
18 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
19 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
@@ -102,8 +100,8 @@ msgid "shortcode."
|
|
102 |
msgstr ""
|
103 |
|
104 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
105 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
106 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
107 |
msgid "NOTE:"
|
108 |
msgstr "OBS:"
|
109 |
|
@@ -119,306 +117,314 @@ msgstr "Os campos de informação por padrão seguirão sendo visíveis (e porta
|
|
119 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
120 |
msgstr "através da administração, enquanto os campos personalizados somente serão visíveis na parte pública (front end)."
|
121 |
|
122 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
123 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
124 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:
|
125 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
126 |
msgid "General Settings"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
130 |
#, fuzzy
|
131 |
msgid "Stylesheet Used on the Front-End:"
|
132 |
msgstr "Folha de estilos usada:"
|
133 |
|
134 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
135 |
msgid "Default"
|
136 |
msgstr "Padrão"
|
137 |
|
138 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
139 |
msgid "White"
|
140 |
msgstr "Branco"
|
141 |
|
142 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
143 |
msgid "Black"
|
144 |
msgstr "Preto"
|
145 |
|
146 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
147 |
msgid "None"
|
148 |
msgstr "Nenhum"
|
149 |
|
150 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
151 |
msgid "\"Email Confirmation\" Feature Activated:"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
155 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
156 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
157 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
158 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
159 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
160 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
161 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
162 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
163 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
164 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
165 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
166 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
167 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
169 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
170 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
171 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
172 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
173 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
174 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
175 |
msgid "Yes"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
179 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
180 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
182 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
183 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
184 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
186 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
187 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
188 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
189 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
190 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
191 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
193 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
194 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
195 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
196 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
197 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
198 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
199 |
#, fuzzy
|
200 |
msgid "No"
|
201 |
msgstr "Nenhum"
|
202 |
|
203 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
204 |
msgid "\"Admin Approval\" Feature Activated:"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
208 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
212 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
216 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
220 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
221 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
222 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:
|
223 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
224 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
225 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
226 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:
|
227 |
msgid "Save Changes"
|
228 |
msgstr "Salvar modificações"
|
229 |
|
230 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
231 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
232 |
#, fuzzy
|
233 |
msgid "Show/Hide the Admin Bar on Front End"
|
234 |
msgstr "Mostrar/Ocultar a bara de admin no front-end"
|
235 |
|
236 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
237 |
msgid "User-group"
|
238 |
msgstr "Grupo do usuário"
|
239 |
|
240 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
241 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
242 |
msgid "Visibility"
|
243 |
msgstr "Visibilidade"
|
244 |
|
245 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
246 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
247 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
248 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
249 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
250 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
251 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
252 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
253 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
254 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
255 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
256 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
257 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
258 |
msgid "Show"
|
259 |
msgstr "Mostrar"
|
260 |
|
261 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
262 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:
|
263 |
-
#: C:\Users\Gabi\Desktop\test\profile-
|
264 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:233
|
265 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:246
|
266 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:259
|
267 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:278
|
268 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:291
|
269 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:307
|
270 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:320
|
271 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:333
|
272 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:352
|
273 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:366
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-10-02 16:16+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-10-02 16:17+0200\n"
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
+
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabi\\Desktop\\test\\profile-builder-pro\n"
|
|
|
|
|
15 |
|
16 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:25
|
17 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
100 |
msgstr ""
|
101 |
|
102 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:49
|
103 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:105
|
104 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
105 |
msgid "NOTE:"
|
106 |
msgstr "OBS:"
|
107 |
|
117 |
msgid "from the back-end, while custom fields will only be visible in the front-end."
|
118 |
msgstr "através da administração, enquanto os campos personalizados somente serão visíveis na parte pública (front end)."
|
119 |
|
120 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:68
|
121 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:69
|
122 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/options.php:59
|
123 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:89
|
124 |
msgid "General Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:70
|
128 |
#, fuzzy
|
129 |
msgid "Stylesheet Used on the Front-End:"
|
130 |
msgstr "Folha de estilos usada:"
|
131 |
|
132 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:72
|
133 |
msgid "Default"
|
134 |
msgstr "Padrão"
|
135 |
|
136 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:76
|
137 |
msgid "White"
|
138 |
msgstr "Branco"
|
139 |
|
140 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:77
|
141 |
msgid "Black"
|
142 |
msgstr "Preto"
|
143 |
|
144 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:81
|
145 |
msgid "None"
|
146 |
msgstr "Nenhum"
|
147 |
|
148 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:87
|
149 |
msgid "\"Email Confirmation\" Feature Activated:"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:89
|
153 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:99
|
154 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:212
|
155 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:225
|
156 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:238
|
157 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:251
|
158 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:264
|
159 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:283
|
160 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:296
|
161 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:312
|
162 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:325
|
163 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:338
|
164 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:357
|
165 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:371
|
166 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:477
|
167 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:485
|
168 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:495
|
169 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:525
|
170 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:537
|
171 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:549
|
172 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:561
|
173 |
msgid "Yes"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:90
|
177 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:100
|
178 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:213
|
179 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:226
|
180 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:239
|
181 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:252
|
182 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:265
|
183 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:284
|
184 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:297
|
185 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:313
|
186 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:326
|
187 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:339
|
188 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:358
|
189 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:372
|
190 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:478
|
191 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:486
|
192 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:496
|
193 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:526
|
194 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:538
|
195 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:550
|
196 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:562
|
197 |
#, fuzzy
|
198 |
msgid "No"
|
199 |
msgstr "Nenhum"
|
200 |
|
201 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:97
|
202 |
msgid "\"Admin Approval\" Feature Activated:"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:106
|
206 |
msgid "The black stylesheet is intended for sites/blogs with a dark background."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:107
|
210 |
msgid "The white stylesheet is intended for a sites/blogs with a light background color."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:108
|
214 |
msgid "On single-site installations the \"Email Confirmation\" feature only works in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:116
|
218 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:169
|
219 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:380
|
220 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:256
|
221 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:45
|
222 |
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:421
|
223 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:576
|
224 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.php:630
|
225 |
msgid "Save Changes"
|
226 |
msgstr "Salvar modificações"
|
227 |
|
228 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:134
|
229 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:135
|
230 |
#, fuzzy
|
231 |
msgid "Show/Hide the Admin Bar on Front End"
|
232 |
msgstr "Mostrar/Ocultar a bara de admin no front-end"
|
233 |
|
234 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:139
|
235 |
msgid "User-group"
|
236 |
msgstr "Grupo do usuário"
|
237 |
|
238 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:140
|
239 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:193
|
240 |
msgid "Visibility"
|
241 |
msgstr "Visibilidade"
|
242 |
|
243 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:149
|
244 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:208
|
245 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:221
|
246 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:234
|
247 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:247
|
248 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:260
|
249 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:279
|
250 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:292
|
251 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:308
|
252 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:321
|
253 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:334
|
254 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:353
|
255 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:367
|
256 |
msgid "Show"
|
257 |
msgstr "Mostrar"
|
258 |
|
259 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:150
|
260 |
+
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:209
|
261 |
+
#: C:\Users\Gabi\Desktop\test\profile-build
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|