Version Description
Separated some of the plugin's functions into separate files. Also fixed a few bugs.
Download this release
Release Info
Developer | barinagabriel |
Plugin | User registration & user profile – Profile Builder |
Version | 1.1.34 |
Comparing to | |
See all releases |
Code changes from version 1.1.33 to 1.1.34
- assets/css/premium.style.css +4 -4
- assets/images/ad_image.png +0 -0
- assets/images/buy_now_button.png +0 -0
- classes/class.admin.php +4 -4
- front-end/menu.file.php +0 -387
- front-end/options.php +0 -147
- front-end/wppb.login.php +14 -33
- front-end/wppb.recover.password.php +2 -2
- front-end/wppb.register.php +4 -4
- functions/admin.bar.php +55 -0
- functions/basic.info.php +36 -0
- functions/default.settings.php +209 -0
- functions/functions.load.php +101 -96
- functions/general.settings.php +64 -0
- functions/options.php +178 -0
- index.php +2 -2
- readme.txt +8 -2
- screenshot-4.png +0 -0
- screenshot-5.png +0 -0
- screenshot-1.png → screenshots/screenshot-1.png +0 -0
- screenshot-2.png → screenshots/screenshot-2.png +0 -0
- screenshot-3.png → screenshots/screenshot-3.png +0 -0
- screenshots/screenshot-4.jpg +0 -0
- screenshots/screenshot-5.jpg +0 -0
- translation/profilebuilder-cs_CZ.mo +0 -0
- translation/profilebuilder-cs_CZ.po +2236 -2035
- translation/profilebuilder-de_DE.mo +0 -0
- translation/profilebuilder-de_DE.po +1436 -1164
- translation/profilebuilder-en_US.mo +0 -0
- translation/profilebuilder-en_US.po +1952 -1793
- translation/profilebuilder-es_ES.mo +0 -0
- translation/profilebuilder-es_ES.po +2078 -1877
- translation/profilebuilder-fr_FR.mo +0 -0
- translation/profilebuilder-fr_FR.po +2082 -1877
- translation/profilebuilder-hu_HU.mo +0 -0
- translation/profilebuilder-hu_HU.po +0 -1310
assets/css/premium.style.css
CHANGED
@@ -555,7 +555,7 @@ a:hover strong {
|
|
555 |
font-size: 12px;
|
556 |
margin-bottom: 9px !important;
|
557 |
padding: 5px;
|
558 |
-
width:
|
559 |
display: block;
|
560 |
color: #888;
|
561 |
resize: none;
|
@@ -1122,8 +1122,8 @@ div.file_wrap {
|
|
1122 |
color:grey;
|
1123 |
}
|
1124 |
#layoutNoticeDiv{
|
1125 |
-
position:
|
1126 |
-
bottom:
|
1127 |
}
|
1128 |
.options_tabs{
|
1129 |
margin:0;
|
@@ -1208,4 +1208,4 @@ div.file_wrap {
|
|
1208 |
}
|
1209 |
#framework_wrap #content #insertExtraFunction{
|
1210 |
width:100%;
|
1211 |
-
}
|
555 |
font-size: 12px;
|
556 |
margin-bottom: 9px !important;
|
557 |
padding: 5px;
|
558 |
+
width: 100%;
|
559 |
display: block;
|
560 |
color: #888;
|
561 |
resize: none;
|
1122 |
color:grey;
|
1123 |
}
|
1124 |
#layoutNoticeDiv{
|
1125 |
+
position: relative;
|
1126 |
+
bottom: -50px;
|
1127 |
}
|
1128 |
.options_tabs{
|
1129 |
margin:0;
|
1208 |
}
|
1209 |
#framework_wrap #content #insertExtraFunction{
|
1210 |
width:100%;
|
1211 |
+
}
|
assets/images/ad_image.png
CHANGED
Binary file
|
assets/images/buy_now_button.png
CHANGED
Binary file
|
classes/class.admin.php
CHANGED
@@ -113,9 +113,9 @@ class PB_Admin{
|
|
113 |
if ($admintSettingsPresent == 'not_found'){ // if the field doesn't exists, then create it
|
114 |
$rolesArray = array();
|
115 |
foreach ( $editable_roles as $key => $data )
|
116 |
-
$rolesArray = array( $
|
117 |
$rolesArray = array_reverse($rolesArray,true);
|
118 |
-
|
119 |
}
|
120 |
|
121 |
}
|
@@ -172,8 +172,8 @@ class PB_Admin{
|
|
172 |
}
|
173 |
|
174 |
function profile_builder_options_page() {
|
175 |
-
|
176 |
-
|
177 |
}
|
178 |
|
179 |
}
|
113 |
if ($admintSettingsPresent == 'not_found'){ // if the field doesn't exists, then create it
|
114 |
$rolesArray = array();
|
115 |
foreach ( $editable_roles as $key => $data )
|
116 |
+
$rolesArray = array( $data['name'] => 'show' ) + $rolesArray;
|
117 |
$rolesArray = array_reverse($rolesArray,true);
|
118 |
+
update_option( 'wppb_display_admin_settings', $rolesArray);
|
119 |
}
|
120 |
|
121 |
}
|
172 |
}
|
173 |
|
174 |
function profile_builder_options_page() {
|
175 |
+
// Grab Options Page
|
176 |
+
include( WPPB_PLUGIN_DIR.'/functions/options.php' );
|
177 |
}
|
178 |
|
179 |
}
|
front-end/menu.file.php
DELETED
@@ -1,387 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/* this is for the backwards compatibility from v.1.1.12 to v.1.1.13 */
|
3 |
-
$update = false;
|
4 |
-
$arraySettingsPresent = get_option('wppb_custom_fields','not_found');
|
5 |
-
if ($arraySettingsPresent != 'not_found'){
|
6 |
-
foreach ($arraySettingsPresent as $key => $value){
|
7 |
-
if ($value['item_metaName'] == null){
|
8 |
-
$arraySettingsPresent[$key]['item_metaName'] = 'custom_field_'.$value['id'];
|
9 |
-
$update = true;
|
10 |
-
}
|
11 |
-
if ($value['item_LastMetaName'] == null){
|
12 |
-
$arraySettingsPresent[$key]['item_LastMetaName'] = 'custom_field_'.$value['id'];
|
13 |
-
$update = true;
|
14 |
-
}
|
15 |
-
}
|
16 |
-
// only update if it is needed
|
17 |
-
if ($update == true)
|
18 |
-
update_option( 'wppb_custom_fields', $arraySettingsPresent);
|
19 |
-
}
|
20 |
-
/* END backwards compatibility */
|
21 |
-
|
22 |
-
function wppb_basic_info(){
|
23 |
-
?>
|
24 |
-
|
25 |
-
<h2><?php _e('Profile Builder', 'profilebuilder');?></h2>
|
26 |
-
<h3><?php _e('Welcome to Profile Builder!', 'profilebuilder');?></h3>
|
27 |
-
<p>
|
28 |
-
<strong><?php _e('Profile Builder', 'profilebuilder');?></strong><?php _e(' 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.', 'profilebuilder');?><br/><br/>
|
29 |
-
<?php _e('Also, grants users with administrator rights to customize basic fields or to add new ones.', 'profilebuilder');?><br/><br/>
|
30 |
-
<?php _e('To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile).', 'profilebuilder');?><br/>
|
31 |
-
<?php _e('Now all you need to do is add the following shortcode(for the previous example): ', 'profilebuilder');?>[wppb-edit-profile].<br/>
|
32 |
-
<?php _e('Publish your page and you are ready to go!', 'profilebuilder');?><br/><br/>
|
33 |
-
<?php _e('You can use the following shortcodes:', 'profilebuilder');?><br/>
|
34 |
-
→ <strong>[wppb-login]</strong> - <?php _e('for a log-in form.', 'profilebuilder');?><br/>
|
35 |
-
→ <strong>[wppb-register]</strong> - <?php _e('to add a registration form.', 'profilebuilder');?><br/>
|
36 |
-
→ <strong>[wppb-edit-profile]</strong> - <?php _e('to grant users a front-end acces to their personal information(requires user to be logged in).', 'profilebuilder');?><br/>
|
37 |
-
→ <strong>[wppb-recover-password]</strong> - <?php _e('to add a password recovery form.', 'profilebuilder');?><br/><br/>
|
38 |
-
|
39 |
-
<?php _e('Users with administrator rights have access to the following features:', 'profilebuilder');?><br/>
|
40 |
-
→ <?php _e('add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black.', 'profilebuilder');?><br/>
|
41 |
-
→ <?php _e('select whether to display or not the admin bar in the front end for a specific user-group registered to the site.', 'profilebuilder');?><br/>
|
42 |
-
→ <?php _e('select which information-field can users see/modify. The hidden fields\' values remain unmodified.', 'profilebuilder');?><br/>
|
43 |
-
→ <?php _e('add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload.', 'profilebuilder');?><br/>
|
44 |
-
→ <?php _e('add an avatar field.', 'profilebuilder');?><br/>
|
45 |
-
→ <?php _e('create custom redirects.', 'profilebuilder');?><br/>
|
46 |
-
→ <?php echo $echoString = __('front-end userlisting using the', 'profilebuilder').' <strong>[wppb-list-users]</strong> '. __('shortcode.', 'profilebuilder');?><br/>
|
47 |
-
<br/>
|
48 |
-
|
49 |
-
<strong><?php _e('NOTE:', 'profilebuilder');?></strong>
|
50 |
-
<?php _e('this plugin only adds/removes fields in the front-end.', 'profilebuilder');?><br/>
|
51 |
-
<?php _e('The default information-fields will still be visible(and thus modifiable)', 'profilebuilder');?>
|
52 |
-
<?php _e('from the back-end, while custom fields will only be visible in the front-end.', 'profilebuilder');?>
|
53 |
-
</p>
|
54 |
-
|
55 |
-
<?php
|
56 |
-
}
|
57 |
-
?>
|
58 |
-
|
59 |
-
<?php
|
60 |
-
function wppb_general_settings(){
|
61 |
-
|
62 |
-
$wppb_premiumStyle = WPPB_PLUGIN_DIR . '/premium/';
|
63 |
-
?>
|
64 |
-
<form method="post" action="options.php#general-settings">
|
65 |
-
<?php $wppb_generalSettings = get_option('wppb_general_settings'); ?>
|
66 |
-
<?php settings_fields('wppb_general_settings'); ?>
|
67 |
-
|
68 |
-
<h2><?php _e('General Settings', 'profilebuilder');?></h2>
|
69 |
-
<h3><?php _e('General Settings', 'profilebuilder');?></h3>
|
70 |
-
<font id="generalSettingFont"><?php _e('Stylesheet Used on the Front-End:', 'profilebuilder');?></font>
|
71 |
-
<select name="wppb_general_settings[extraFieldsLayout]" class="wppb_general_settings">
|
72 |
-
<option value="yes" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'yes') echo 'selected';?>><?php _e('Default', 'profilebuilder');?></option>
|
73 |
-
<?php
|
74 |
-
if (file_exists ( $wppb_premiumStyle.'premium.php' )){
|
75 |
-
?>
|
76 |
-
<option value="white" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'white') echo 'selected';?>><?php _e('White', 'profilebuilder');?></option>
|
77 |
-
<option value="black" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'black') echo 'selected';?>><?php _e('Black', 'profilebuilder');?></option>
|
78 |
-
<?php
|
79 |
-
}
|
80 |
-
?>
|
81 |
-
<option value="no" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'no') echo 'selected';?>><?php _e('None', 'profilebuilder');?></option>
|
82 |
-
</select>
|
83 |
-
<?php
|
84 |
-
if (!is_multisite()){
|
85 |
-
?>
|
86 |
-
<br/><br/>
|
87 |
-
<font id="generalSettingFont"><?php _e('"Email Confirmation" Feature Activated:', 'profilebuilder');?></font>
|
88 |
-
<select name="wppb_general_settings[emailConfirmation]" class="wppb_general_settings2">
|
89 |
-
<option value="yes" <?php if ($wppb_generalSettings['emailConfirmation'] == 'yes') echo 'selected';?>><?php _e('Yes', 'profilebuilder');?></option>
|
90 |
-
<option value="no" <?php if ($wppb_generalSettings['emailConfirmation'] == 'no') echo 'selected';?>><?php _e('No', 'profilebuilder');?></option>
|
91 |
-
</select>
|
92 |
-
<?php
|
93 |
-
}
|
94 |
-
if (file_exists ( $wppb_premiumStyle.'premium.php' )){
|
95 |
-
?>
|
96 |
-
<br/><br/>
|
97 |
-
<font id="generalSettingFont"><?php _e('"Admin Approval" Feature Activated:', 'profilebuilder');?></font>
|
98 |
-
<select id="adminApprovalSelect" name="wppb_general_settings[adminApproval]" class="wppb_general_settings3">
|
99 |
-
<option value="yes" <?php if ($wppb_generalSettings['adminApproval'] == 'yes') echo 'selected';?>><?php _e('Yes', 'profilebuilder');?></option>
|
100 |
-
<option value="no" <?php if ($wppb_generalSettings['adminApproval'] == 'no') echo 'selected';?>><?php _e('No', 'profilebuilder');?></option>
|
101 |
-
</select>
|
102 |
-
<?php
|
103 |
-
echo '<div id="layoutNoticeDiv">
|
104 |
-
<font size="1" id="layoutNotice">
|
105 |
-
<b>'. __('NOTE:', 'profilebuilder') .'</b><br/>
|
106 |
-
→ '. __('The black stylesheet is intended for sites/blogs with a dark background.', 'profilebuilder') .'<br/>
|
107 |
-
→ '. __('The white stylesheet is intended for a sites/blogs with a light background color.', 'profilebuilder') .'<br/>
|
108 |
-
→ '. __('On single-site installations the "Email Confirmation" feature only works in the front-end, so make sure you also use the "Custom Redirects" feature.', 'profilebuilder') .'
|
109 |
-
</font>
|
110 |
-
</div>';
|
111 |
-
}
|
112 |
-
?>
|
113 |
-
<div align="right">
|
114 |
-
<input type="hidden" name="action" value="update" />
|
115 |
-
<p class="submit">
|
116 |
-
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
117 |
-
</p>
|
118 |
-
</div>
|
119 |
-
</form>
|
120 |
-
|
121 |
-
|
122 |
-
<?php
|
123 |
-
}
|
124 |
-
?>
|
125 |
-
|
126 |
-
<?php
|
127 |
-
function wppb_display_admin_settings(){
|
128 |
-
?>
|
129 |
-
<form method="post" action="options.php#show-hide-admin-bar">
|
130 |
-
<?php $wppb_showAdminBar = get_option('wppb_display_admin_settings'); ?>
|
131 |
-
<?php settings_fields('wppb_display_admin_settings'); ?>
|
132 |
-
|
133 |
-
|
134 |
-
<h2><?php _e('Show/Hide the Admin Bar on Front End', 'profilebuilder');?></h2>
|
135 |
-
<h3><?php _e('Show/Hide the Admin Bar on Front End', 'profilebuilder');?></h3>
|
136 |
-
<table class="wp-list-table widefat fixed pages" cellspacing="0">
|
137 |
-
<thead>
|
138 |
-
<tr>
|
139 |
-
<th id="manage-column" scope="col"><?php _e('User-group', 'profilebuilder');?></th>
|
140 |
-
<th id="manage-column" scope="col"><?php _e('Visibility', 'profilebuilder');?></th>
|
141 |
-
</tr>
|
142 |
-
</thead>
|
143 |
-
<tbody>
|
144 |
-
<?php
|
145 |
-
foreach($wppb_showAdminBar as $key => $data){
|
146 |
-
echo'<tr>
|
147 |
-
<td id="manage-columnCell">'.$key.'</td>
|
148 |
-
<td id="manage-columnCell">
|
149 |
-
<input type="radio" name="wppb_display_admin_settings['.$key.']" value="show"';if ($wppb_showAdminBar[$key] == 'show') echo ' checked';echo'/><font size="1">'; _e('Show', 'profilebuilder'); echo'</font><span style="padding-left:20px"></span>
|
150 |
-
<input type="radio" name="wppb_display_admin_settings['.$key.']" value="hide"';if ($wppb_showAdminBar[$key] == 'hide') echo ' checked';echo'/><font size="1">'; _e('Hide', 'profilebuilder'); echo'</font>
|
151 |
-
</td>
|
152 |
-
</tr>';
|
153 |
-
}
|
154 |
-
?>
|
155 |
-
|
156 |
-
</table>
|
157 |
-
|
158 |
-
<?php
|
159 |
-
echo '<div id="layoutNoticeDiv">
|
160 |
-
<font size="1" id="layoutNotice">
|
161 |
-
<b>'. __('NOTE:', 'profilebuilder') .'</b><br/>
|
162 |
-
→ '. __('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.', 'profilebuilder') .'
|
163 |
-
</font>
|
164 |
-
</div>';
|
165 |
-
?>
|
166 |
-
<div align="right">
|
167 |
-
<input type="hidden" name="action" value="update" />
|
168 |
-
<p class="submit">
|
169 |
-
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
170 |
-
</p>
|
171 |
-
</div>
|
172 |
-
</form>
|
173 |
-
|
174 |
-
|
175 |
-
<?php
|
176 |
-
}
|
177 |
-
?>
|
178 |
-
|
179 |
-
<?php
|
180 |
-
function wppb_default_settings(){
|
181 |
-
?>
|
182 |
-
<form method="post" action="options.php#default-fields">
|
183 |
-
<?php $wppb_defaultOptions = get_option('wppb_default_settings'); ?>
|
184 |
-
<?php settings_fields('wppb_option_group'); ?>
|
185 |
-
|
186 |
-
|
187 |
-
<h2><?php _e('Default Profile Fields', 'profilebuilder');?></h2>
|
188 |
-
<h3><?php _e('Default Profile Fields', 'profilebuilder');?></h3>
|
189 |
-
<table class="wp-list-table widefat fixed pages" cellspacing="0">
|
190 |
-
<thead>
|
191 |
-
<tr>
|
192 |
-
<th id="manage-column" scope="col"><?php _e('Input Field Name', 'profilebuilder');?></th>
|
193 |
-
<th id="manage-column" scope="col"><?php _e('Visibility', 'profilebuilder');?></th>
|
194 |
-
<th id="manage-column" scope="col"><?php _e('Required', 'profilebuilder');?></th>
|
195 |
-
</tr>
|
196 |
-
</thead>
|
197 |
-
<tbody class="plugins" >
|
198 |
-
<tr>
|
199 |
-
<td colspan="3"><font size="2"><?php _e('Name:', 'profilebuilder');?></font></td>
|
200 |
-
</tr>
|
201 |
-
</tbody>
|
202 |
-
<tbody>
|
203 |
-
<tr>
|
204 |
-
<td id="manage-columnCell">
|
205 |
-
<span style="padding-left:50px"></span><?php _e('Username', 'profilebuilder');?>
|
206 |
-
</td>
|
207 |
-
<td id="manage-columnCell">
|
208 |
-
<input type="radio" name="wppb_default_settings[username]" value="show" checked /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
209 |
-
<input type="radio" name="wppb_default_settings[username]" value="hide" disabled /><font size="1" color="grey"><?php _e('Hide', 'profilebuilder');?></font>
|
210 |
-
</td>
|
211 |
-
<td id="manage-columnCell">
|
212 |
-
<input type="radio" name="wppb_default_settings[usernameRequired]" value="yes" checked /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
213 |
-
<input type="radio" name="wppb_default_settings[usernameRequired]" value="no" disabled /><font size="1" color="grey"><?php _e('No', 'profilebuilder');?></font>
|
214 |
-
</td>
|
215 |
-
</tr>
|
216 |
-
<tr>
|
217 |
-
<td id="manage-columnCell">
|
218 |
-
<span style="padding-left:50px"></span><?php _e('First Name', 'profilebuilder');?>
|
219 |
-
</td>
|
220 |
-
<td id="manage-columnCell">
|
221 |
-
<input type="radio" name="wppb_default_settings[firstname]" value="show" <?php if ($wppb_defaultOptions['firstname'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
222 |
-
<input type="radio" name="wppb_default_settings[firstname]" value="hide" <?php if ($wppb_defaultOptions['firstname'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
223 |
-
</td>
|
224 |
-
<td id="manage-columnCell">
|
225 |
-
<input type="radio" name="wppb_default_settings[firstnameRequired]" value="yes" <?php if ($wppb_defaultOptions['firstnameRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
226 |
-
<input type="radio" name="wppb_default_settings[firstnameRequired]" value="no" <?php if ($wppb_defaultOptions['firstnameRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
227 |
-
</td>
|
228 |
-
</tr>
|
229 |
-
<tr>
|
230 |
-
<td id="manage-columnCell">
|
231 |
-
<span style="padding-left:50px"></span><?php _e('Last Name', 'profilebuilder');?>
|
232 |
-
</td>
|
233 |
-
<td id="manage-columnCell">
|
234 |
-
<input type="radio" name="wppb_default_settings[lastname]" value="show" <?php if ($wppb_defaultOptions['lastname'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
235 |
-
<input type="radio" name="wppb_default_settings[lastname]" value="hide" <?php if ($wppb_defaultOptions['lastname'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
236 |
-
</td>
|
237 |
-
<td id="manage-columnCell">
|
238 |
-
<input type="radio" name="wppb_default_settings[lastnameRequired]" value="yes" <?php if ($wppb_defaultOptions['lastnameRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
239 |
-
<input type="radio" name="wppb_default_settings[lastnameRequired]" value="no" <?php if ($wppb_defaultOptions['lastnameRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
240 |
-
</td>
|
241 |
-
</tr>
|
242 |
-
<tr>
|
243 |
-
<td id="manage-columnCell">
|
244 |
-
<span style="padding-left:50px"></span><?php _e('Nickname', 'profilebuilder');?>
|
245 |
-
</td>
|
246 |
-
<td id="manage-columnCell">
|
247 |
-
<input type="radio" name="wppb_default_settings[nickname]" value="show" <?php if ($wppb_defaultOptions['nickname'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
248 |
-
<input type="radio" name="wppb_default_settings[nickname]" value="hide" <?php if ($wppb_defaultOptions['nickname'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
249 |
-
</td>
|
250 |
-
<td id="manage-columnCell">
|
251 |
-
<input type="radio" name="wppb_default_settings[nicknameRequired]" value="yes" <?php if ($wppb_defaultOptions['nicknameRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
252 |
-
<input type="radio" name="wppb_default_settings[nicknameRequired]" value="no" <?php if ($wppb_defaultOptions['nicknameRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
253 |
-
</td>
|
254 |
-
</tr>
|
255 |
-
<tr>
|
256 |
-
<td id="manage-columnCell">
|
257 |
-
<span style="padding-left:50px"></span><?php _e('Display name publicly as...', 'profilebuilder');?>
|
258 |
-
</td>
|
259 |
-
<td id="manage-columnCell">
|
260 |
-
<input type="radio" name="wppb_default_settings[dispname]" value="show" <?php if ($wppb_defaultOptions['dispname'] == 'show') echo 'checked';?> /><?php _e('Show', 'profilebuilder');?><span style="padding-left:20px"></span>
|
261 |
-
<input type="radio" name="wppb_default_settings[dispname]" value="hide" <?php if ($wppb_defaultOptions['dispname'] == 'hide') echo 'checked';?> /><?php _e('Hide', 'profilebuilder');?>
|
262 |
-
</td>
|
263 |
-
<td id="manage-columnCell">
|
264 |
-
<input type="radio" name="wppb_default_settings[dispnameRequired]" value="yes" <?php if ($wppb_defaultOptions['dispnameRequired'] == 'yes') echo 'checked';?> /><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
265 |
-
<input type="radio" name="wppb_default_settings[dispnameRequired]" value="no" <?php if ($wppb_defaultOptions['dispnameRequired'] == 'no') echo 'checked';?> /><?php _e('No', 'profilebuilder');?>
|
266 |
-
</td>
|
267 |
-
</tr>
|
268 |
-
<tbody class="plugins">
|
269 |
-
<tr>
|
270 |
-
<td colspan="3"><font size="2"><?php _e('Contact Info:', 'profilebuilder');?></font></td>
|
271 |
-
</tr>
|
272 |
-
</tbody>
|
273 |
-
<tbody>
|
274 |
-
<tr>
|
275 |
-
<td id="manage-columnCell">
|
276 |
-
<span style="padding-left:50px"></span><?php _e('E-mail', 'profilebuilder');?>
|
277 |
-
</td>
|
278 |
-
<td id="manage-columnCell">
|
279 |
-
<input type="radio" name="wppb_default_settings[email]" value="show" checked><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
280 |
-
<input type="radio" name="wppb_default_settings[email]" value="hide" disabled><font size="1" color="grey"><?php _e('Hide', 'profilebuilder');?></font>
|
281 |
-
</td>
|
282 |
-
<td id="manage-columnCell">
|
283 |
-
<input type="radio" name="wppb_default_settings[emailRequired]" value="yes" checked /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
284 |
-
<input type="radio" name="wppb_default_settings[emailRequired]" value="no" disabled /><font size="1" color="grey"><?php _e('No', 'profilebuilder');?></font>
|
285 |
-
</td>
|
286 |
-
</tr>
|
287 |
-
<tr>
|
288 |
-
<td id="manage-columnCell">
|
289 |
-
<span style="padding-left:50px"></span><?php _e('Website', 'profilebuilder');?>
|
290 |
-
</td>
|
291 |
-
<td id="manage-columnCell">
|
292 |
-
<input type="radio" name="wppb_default_settings[website]" value="show" <?php if ($wppb_defaultOptions['website'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
293 |
-
<input type="radio" name="wppb_default_settings[website]" value="hide" <?php if ($wppb_defaultOptions['website'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
294 |
-
</td>
|
295 |
-
<td id="manage-columnCell">
|
296 |
-
<input type="radio" name="wppb_default_settings[websiteRequired]" value="yes" <?php if ($wppb_defaultOptions['websiteRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
297 |
-
<input type="radio" name="wppb_default_settings[websiteRequired]" value="no" <?php if ($wppb_defaultOptions['websiteRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
298 |
-
</td>
|
299 |
-
</tr>
|
300 |
-
<tbody class="plugins">
|
301 |
-
</tbody>
|
302 |
-
<tbody>
|
303 |
-
<tr>
|
304 |
-
<td id="manage-columnCell">
|
305 |
-
<span style="padding-left:50px"></span><?php _e('AIM', 'profilebuilder');?>
|
306 |
-
</td>
|
307 |
-
<td id="manage-columnCell">
|
308 |
-
<input type="radio" name="wppb_default_settings[aim]" value="show" <?php if ($wppb_defaultOptions['aim'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
309 |
-
<input type="radio" name="wppb_default_settings[aim]" value="hide" <?php if ($wppb_defaultOptions['aim'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
310 |
-
</td>
|
311 |
-
<td id="manage-columnCell">
|
312 |
-
<input type="radio" name="wppb_default_settings[aimRequired]" value="yes" <?php if ($wppb_defaultOptions['aimRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
313 |
-
<input type="radio" name="wppb_default_settings[aimRequired]" value="no" <?php if ($wppb_defaultOptions['aimRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
314 |
-
</td>
|
315 |
-
</tr>
|
316 |
-
<tr>
|
317 |
-
<td id="manage-columnCell">
|
318 |
-
<span style="padding-left:50px"></span><?php _e('Yahoo IM', 'profilebuilder');?>
|
319 |
-
</td>
|
320 |
-
<td id="manage-columnCell">
|
321 |
-
<input type="radio" name="wppb_default_settings[yahoo]" value="show" <?php if ($wppb_defaultOptions['yahoo'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
322 |
-
<input type="radio" name="wppb_default_settings[yahoo]" value="hide" <?php if ($wppb_defaultOptions['yahoo'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
323 |
-
</td>
|
324 |
-
<td id="manage-columnCell">
|
325 |
-
<input type="radio" name="wppb_default_settings[yahooRequired]" value="yes" <?php if ($wppb_defaultOptions['yahooRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
326 |
-
<input type="radio" name="wppb_default_settings[yahooRequired]" value="no" <?php if ($wppb_defaultOptions['yahooRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
327 |
-
</td>
|
328 |
-
</tr>
|
329 |
-
<tr>
|
330 |
-
<td id="manage-columnCell">
|
331 |
-
<span style="padding-left:50px"></span><?php _e('Jabber / Google Talk', 'profilebuilder');?>
|
332 |
-
</td>
|
333 |
-
<td id="manage-columnCell">
|
334 |
-
<input type="radio" name="wppb_default_settings[jabber]" value="show" <?php if ($wppb_defaultOptions['jabber'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
335 |
-
<input type="radio" name="wppb_default_settings[jabber]" value="hide" <?php if ($wppb_defaultOptions['jabber'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
336 |
-
</td>
|
337 |
-
<td id="manage-columnCell">
|
338 |
-
<input type="radio" name="wppb_default_settings[jabberRequired]" value="yes" <?php if ($wppb_defaultOptions['jabberRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
339 |
-
<input type="radio" name="wppb_default_settings[jabberRequired]" value="no" <?php if ($wppb_defaultOptions['jabberRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
340 |
-
</td>
|
341 |
-
</tr>
|
342 |
-
<tbody class="plugins">
|
343 |
-
<tr>
|
344 |
-
<td colspan="3"><font size="2"><?php _e('About Yourself:', 'profilebuilder');?></font></td>
|
345 |
-
</tr>
|
346 |
-
</tbody>
|
347 |
-
<tbody>
|
348 |
-
<tr>
|
349 |
-
<td id="manage-columnCell">
|
350 |
-
<span style="padding-left:50px"></span><?php _e('Biographical Info', 'profilebuilder');?>
|
351 |
-
</td>
|
352 |
-
<td id="manage-columnCell">
|
353 |
-
<input type="radio" name="wppb_default_settings[bio]" value="show" <?php if ($wppb_defaultOptions['bio'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
354 |
-
<input type="radio" name="wppb_default_settings[bio]" value="hide" <?php if ($wppb_defaultOptions['bio'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
355 |
-
</td>
|
356 |
-
<td id="manage-columnCell">
|
357 |
-
<input type="radio" name="wppb_default_settings[bioRequired]" value="yes" <?php if ($wppb_defaultOptions['bioRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
358 |
-
<input type="radio" name="wppb_default_settings[bioRequired]" value="no" <?php if ($wppb_defaultOptions['bioRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
359 |
-
</td>
|
360 |
-
</tr>
|
361 |
-
<tbody>
|
362 |
-
<tr>
|
363 |
-
<td id="manage-columnCell">
|
364 |
-
<span style="padding-left:50px"></span><?php _e('New Password', 'profilebuilder');?>
|
365 |
-
</td>
|
366 |
-
<td id="manage-columnCell">
|
367 |
-
<input type="radio" name="wppb_default_settings[password]" value="show" checked><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
368 |
-
<input type="radio" name="wppb_default_settings[password]" value="hide" disabled><font size="1" color="grey"><?php _e('Hide', 'profilebuilder');?></font>
|
369 |
-
</td>
|
370 |
-
<td id="manage-columnCell">
|
371 |
-
<input type="radio" name="wppb_default_settings[passwordRequired]" value="yes" checked /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
372 |
-
<input type="radio" name="wppb_default_settings[passwordRequired]" value="no" disabled /><font size="1" color="grey"><?php _e('No', 'profilebuilder');?></font>
|
373 |
-
</td>
|
374 |
-
</tr>
|
375 |
-
</tbody>
|
376 |
-
</table>
|
377 |
-
<div align="right">
|
378 |
-
<input type="hidden" name="action" value="update" />
|
379 |
-
<p class="submit">
|
380 |
-
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
381 |
-
</p>
|
382 |
-
</form>
|
383 |
-
</div>
|
384 |
-
|
385 |
-
<?php
|
386 |
-
}
|
387 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
front-end/options.php
DELETED
@@ -1,147 +0,0 @@
|
|
1 |
-
<!--
|
2 |
-
Original Plugin Name: OptionTree
|
3 |
-
Original Plugin URI: http://wp.envato.com
|
4 |
-
Original Author: Derek Herman
|
5 |
-
Original Author URI: http://valendesigns.com
|
6 |
-
-->
|
7 |
-
<?php if (!defined('PROFILE_BUILDER_VERSION')) exit('No direct script access allowed'); ?>
|
8 |
-
<?php require_once('menu.file.php'); ?>
|
9 |
-
|
10 |
-
<div id="framework_wrap" class="wrap">
|
11 |
-
|
12 |
-
<div id="header">
|
13 |
-
<h1>Profile Builder</h1>
|
14 |
-
<span class="icon"> </span>
|
15 |
-
<div class="version">
|
16 |
-
<?php echo 'Version ' . PROFILE_BUILDER_VERSION; ?>
|
17 |
-
</div>
|
18 |
-
</div>
|
19 |
-
|
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>
|
42 |
-
|
43 |
-
<?php $wppb_premium = WPPB_PLUGIN_DIR . '/premium/';
|
44 |
-
if (file_exists ( $wppb_premium.'premium.php' )){
|
45 |
-
echo '<div class="ajax-message';
|
46 |
-
if ( isset( $message ) ) { echo ' show'; }
|
47 |
-
echo '">';
|
48 |
-
if ( isset( $message ) ) { echo $message; }
|
49 |
-
echo '</div>';
|
50 |
-
}
|
51 |
-
?>
|
52 |
-
|
53 |
-
<div id="content">
|
54 |
-
|
55 |
-
<div id="options_tabs">
|
56 |
-
|
57 |
-
<ul class="options_tabs">
|
58 |
-
<li><a href="#profile-builder"><?php _e('Basic Information','profilebuilder');?></a><span></span></li>
|
59 |
-
<li><a href="#general-settings"><?php _e('General Settings','profilebuilder');?></a><span></span></li>
|
60 |
-
<li><a href="#show-hide-admin-bar"><?php _e('Show/Hide the Admin Bar on Front-end','profilebuilder');?></a><span></span></li>
|
61 |
-
<li><a href="#default-fields"><?php _e('Default Profile Fields','profilebuilder');?></a><span></span></li>
|
62 |
-
<?php
|
63 |
-
$wppb_premium = WPPB_PLUGIN_DIR . '/premium/';
|
64 |
-
$wppb_addons = WPPB_PLUGIN_DIR . '/premium/addon/';
|
65 |
-
|
66 |
-
if (file_exists ( $wppb_premium.'premium.php' )){
|
67 |
-
echo '<li><a href="#create-extra-fields">'; _e('Extra Profile Fields','profilebuilder'); echo'</a><span></span></li>';
|
68 |
-
}
|
69 |
-
if (file_exists ( $wppb_addons.'addon.php' )){
|
70 |
-
echo '<li><a href="#add-ons">'; _e('Addons','profilebuilder'); echo'</a><span></span></li>';
|
71 |
-
}
|
72 |
-
if (file_exists ( $wppb_premium.'premium.php' )){
|
73 |
-
echo '<li><a href="#register-profile-builder">'; _e('Register Your Version','profilebuilder'); echo'</a><span></span></li>';
|
74 |
-
}
|
75 |
-
?>
|
76 |
-
<?php
|
77 |
-
$addons_options_set = get_option('wppb_addon_settings','not_found');
|
78 |
-
if ($addons_options_set != 'not_found'){
|
79 |
-
$addons_options_description = get_option('wppb_addon_settings_description'); //fetch the descriptions array
|
80 |
-
foreach ($addons_options_set as $key => $value)
|
81 |
-
if ($value == 'show'){
|
82 |
-
echo '<li><a href="#'.$key.'">'; _e($addons_options_description[$key],'profilebuilder'); echo '</a><span></span></li>';
|
83 |
-
}
|
84 |
-
}
|
85 |
-
?>
|
86 |
-
|
87 |
-
</ul>
|
88 |
-
<div id="profile-builder" class="block">
|
89 |
-
<?php wppb_basic_info(); ?>
|
90 |
-
</div>
|
91 |
-
|
92 |
-
<div id="general-settings" class="block">
|
93 |
-
<?php wppb_general_settings(); ?>
|
94 |
-
</div>
|
95 |
-
|
96 |
-
|
97 |
-
<div id="show-hide-admin-bar" class="block has-table">
|
98 |
-
<?php wppb_display_admin_settings(); ?>
|
99 |
-
</div>
|
100 |
-
|
101 |
-
<div id="default-fields" class="block has-table">
|
102 |
-
<?php wppb_default_settings(); ?>
|
103 |
-
</div>
|
104 |
-
|
105 |
-
<?php $wppb_premium = WPPB_PLUGIN_DIR . '/premium/';
|
106 |
-
if (file_exists ( $wppb_premium.'premium.php' )){
|
107 |
-
require_once($wppb_premium.'premium.php');
|
108 |
-
echo '<div id="create-extra-fields" class="block has-table">';
|
109 |
-
wppb_custom_settings();
|
110 |
-
echo '</div>';
|
111 |
-
echo '<div id="register-profile-builder" class="block">';
|
112 |
-
wppb_register_profile_builder();
|
113 |
-
echo '</div>';
|
114 |
-
}
|
115 |
-
?>
|
116 |
-
|
117 |
-
<?php $wppb_addons = WPPB_PLUGIN_DIR . '/premium/addon/';
|
118 |
-
if (file_exists ( $wppb_addons.'addon.php' )){
|
119 |
-
require_once($wppb_addons.'addon.php');
|
120 |
-
echo '<div id="add-ons" class="block has-table">';
|
121 |
-
wppb_displayAddons();
|
122 |
-
echo '</div>';
|
123 |
-
|
124 |
-
$addons_options_set = get_option('wppb_addon_settings','not_found');
|
125 |
-
if ($addons_options_set != 'not_found'){
|
126 |
-
foreach ($addons_options_set as $key => $value)
|
127 |
-
if ($value == 'show'){
|
128 |
-
echo '<div id="'.$key.'" class="block has-table">';
|
129 |
-
$key();
|
130 |
-
echo '</div>';
|
131 |
-
}
|
132 |
-
}
|
133 |
-
}
|
134 |
-
?>
|
135 |
-
|
136 |
-
<br class="clear" />
|
137 |
-
|
138 |
-
</div>
|
139 |
-
|
140 |
-
</div>
|
141 |
-
|
142 |
-
<div class="info bottom"></div>
|
143 |
-
|
144 |
-
</div>
|
145 |
-
|
146 |
-
</div>
|
147 |
-
<!-- [END] framework_wrap -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
front-end/wppb.login.php
CHANGED
@@ -1,20 +1,4 @@
|
|
1 |
<?php
|
2 |
-
if(!function_exists('wppb_curpageurl')){
|
3 |
-
function wppb_curpageurl() {
|
4 |
-
$pageURL = 'http';
|
5 |
-
if ((isset($_SERVER["HTTPS"])) && ($_SERVER["HTTPS"] == "on")) {
|
6 |
-
$pageURL .= "s";
|
7 |
-
}
|
8 |
-
$pageURL .= "://";
|
9 |
-
if ($_SERVER["SERVER_PORT"] != "80") {
|
10 |
-
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
|
11 |
-
} else {
|
12 |
-
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
|
13 |
-
}
|
14 |
-
return $pageURL;
|
15 |
-
}
|
16 |
-
}
|
17 |
-
|
18 |
/* wp_signon can only be executed before anything is outputed in the page because of that we're adding it to the init hook */
|
19 |
global $wppb_login;
|
20 |
$wppb_login = false;
|
@@ -59,7 +43,7 @@ function wppb_front_end_login( $atts ){
|
|
59 |
$loginFilterArray['loginMessage1'] = '
|
60 |
<p class="alert">'.
|
61 |
__('You are currently logged in as', 'profilebuilder').' <a href="'.$authorPostsUrl = get_author_posts_url( $wppb_user->ID ).'" title="'.$wppb_user->display_name.'">'.$wppb_user->display_name.'</a>.
|
62 |
-
<a href="'.wp_logout_url(
|
63 |
</p><!-- .alert-->';
|
64 |
|
65 |
$loginFilterArray['loginMessage1'] = apply_filters('wppb_login_login_message1', $loginFilterArray['loginMessage1'], $wppb_user->ID, $wppb_user->display_name);
|
@@ -89,20 +73,17 @@ function wppb_front_end_login( $atts ){
|
|
89 |
if (isset($_POST['button']) && isset($_POST['formName']) ){
|
90 |
if ($_POST['formName'] == 'login'){
|
91 |
if ($_POST['button'] == 'page'){
|
92 |
-
$permaLnk2 =
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
$
|
100 |
-
|
101 |
-
|
102 |
-
$
|
103 |
-
if ($findHttp === false)
|
104 |
-
$permaLnk2 = 'http://'. $permaLnk2;
|
105 |
-
}
|
106 |
}
|
107 |
}
|
108 |
|
@@ -112,7 +93,7 @@ function wppb_front_end_login( $atts ){
|
|
112 |
echo $loginFilterArray['redirectMessage'];
|
113 |
|
114 |
}elseif($_POST['button'] == 'widget'){
|
115 |
-
$permaLnk2 =
|
116 |
if ($redirect != ''){
|
117 |
$permaLnk2 = trim($redirect);
|
118 |
$findHttp = strpos( (string)$permaLnk2, 'http' );
|
@@ -122,7 +103,7 @@ function wppb_front_end_login( $atts ){
|
|
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['
|
126 |
echo $loginFilterArray['widgetRedirectMessage'];
|
127 |
|
128 |
}
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
/* wp_signon can only be executed before anything is outputed in the page because of that we're adding it to the init hook */
|
3 |
global $wppb_login;
|
4 |
$wppb_login = false;
|
43 |
$loginFilterArray['loginMessage1'] = '
|
44 |
<p class="alert">'.
|
45 |
__('You are currently logged in as', 'profilebuilder').' <a href="'.$authorPostsUrl = get_author_posts_url( $wppb_user->ID ).'" title="'.$wppb_user->display_name.'">'.$wppb_user->display_name.'</a>.
|
46 |
+
<a href="'.wp_logout_url( $redirectTo = wppb_curpageurl() ).'" title="'. __('Log out of this account', 'profilebuilder').'">'. __('Log out', 'profilebuilder').' »</a>
|
47 |
</p><!-- .alert-->';
|
48 |
|
49 |
$loginFilterArray['loginMessage1'] = apply_filters('wppb_login_login_message1', $loginFilterArray['loginMessage1'], $wppb_user->ID, $wppb_user->display_name);
|
73 |
if (isset($_POST['button']) && isset($_POST['formName']) ){
|
74 |
if ($_POST['formName'] == 'login'){
|
75 |
if ($_POST['button'] == 'page'){
|
76 |
+
$permaLnk2 = wppb_curpageurl();
|
77 |
+
|
78 |
+
$wppb_addon_settings = get_option('wppb_addon_settings'); //fetch the descriptions array
|
79 |
+
if ($wppb_addon_settings['wppb_customRedirect'] == 'show'){
|
80 |
+
//check to see if the redirect location is not an empty string and is activated
|
81 |
+
$customRedirectSettings = get_option('customRedirectSettings');
|
82 |
+
if ((trim($customRedirectSettings['afterLoginTarget']) != '') && ($customRedirectSettings['afterLogin'] == 'yes')){
|
83 |
+
$permaLnk2 = trim($customRedirectSettings['afterLoginTarget']);
|
84 |
+
$findHttp = strpos( (string)$permaLnk2, 'http' );
|
85 |
+
if ($findHttp === false)
|
86 |
+
$permaLnk2 = 'http://'. $permaLnk2;
|
|
|
|
|
|
|
87 |
}
|
88 |
}
|
89 |
|
93 |
echo $loginFilterArray['redirectMessage'];
|
94 |
|
95 |
}elseif($_POST['button'] == 'widget'){
|
96 |
+
$permaLnk2 = wppb_curpageurl();
|
97 |
if ($redirect != ''){
|
98 |
$permaLnk2 = trim($redirect);
|
99 |
$findHttp = strpos( (string)$permaLnk2, 'http' );
|
103 |
|
104 |
$loginFilterArray['widgetRedirectMessage'] = '
|
105 |
<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/>';
|
106 |
+
$loginFilterArray['widgetRedirectMessage'] = apply_filters('wppb_login_widget_redirect_message', $loginFilterArray['widgetRedirectMessage'], $permaLnk2);
|
107 |
echo $loginFilterArray['widgetRedirectMessage'];
|
108 |
|
109 |
}
|
front-end/wppb.recover.password.php
CHANGED
@@ -102,7 +102,7 @@ function wppb_check_for_unapproved_user($data, $what){
|
|
102 |
require_once(ABSPATH . WPINC . '/ms-functions.php');
|
103 |
$userID = get_user_id_from_string( $data );
|
104 |
}else{
|
105 |
-
$user =
|
106 |
$userID = $user->ID;
|
107 |
}
|
108 |
|
@@ -314,7 +314,7 @@ function wppb_front_end_password_recovery(){
|
|
314 |
$key = preg_replace('/[^a-z0-9]/i', '', $_GET['key']);
|
315 |
$login = $_GET['loginName'];
|
316 |
|
317 |
-
$user = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->users WHERE user_activation_key =
|
318 |
|
319 |
if ( !empty( $user ) ){
|
320 |
//check if the "finalAction" variable is not in the address bar, if it is, don't display the form anymore
|
102 |
require_once(ABSPATH . WPINC . '/ms-functions.php');
|
103 |
$userID = get_user_id_from_string( $data );
|
104 |
}else{
|
105 |
+
$user = get_user_by('login', $data);
|
106 |
$userID = $user->ID;
|
107 |
}
|
108 |
|
314 |
$key = preg_replace('/[^a-z0-9]/i', '', $_GET['key']);
|
315 |
$login = $_GET['loginName'];
|
316 |
|
317 |
+
$user = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->users WHERE user_activation_key = %s AND user_login = %s", $key, $login));
|
318 |
|
319 |
if ( !empty( $user ) ){
|
320 |
//check if the "finalAction" variable is not in the address bar, if it is, don't display the form anymore
|
front-end/wppb.register.php
CHANGED
@@ -383,7 +383,7 @@ function wppb_signup_user_notification($user, $user_email, $key, $meta = '') {
|
|
383 |
$message_headers = "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n";
|
384 |
$siteURL = wppb_curpageurl().wppb_passed_arguments_check().'key='.$key;
|
385 |
|
386 |
-
$message = sprintf(apply_filters( 'wppb_signup_user_notification_email', __( "To activate your user, please click the following link:\n\n%s\n\nAfter you activate, you will receive *another email* with your login.\n\n", "profilebuilder" ),$user, $user_email, $key, $meta), $siteURL);
|
387 |
|
388 |
$subject = sprintf(apply_filters( 'wppb_signup_user_notification_subject', __( '[%1$s] Activate %2$s', 'profilebuilder'), $user, $user_email, $key, $meta ), $from_name, $user);
|
389 |
|
@@ -504,7 +504,7 @@ function wppb_notify_user_registration_email($bloginfo, $user_name, $email, $sen
|
|
504 |
$registerFilterArray['adminMessageOnRegistration'] .= '<br/>'. __('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!', 'profilebuilder') ."\r\n";
|
505 |
$registerFilterArray['adminMessageOnRegistration'] = apply_filters('wppb_register_admin_message_content', $registerFilterArray['adminMessageOnRegistration'], $bloginfo, $user_name, $email);
|
506 |
|
507 |
-
$registerFilterArray['adminMessageOnRegistrationTitle'] = '['. $bloginfo .'] '. __('A new subscriber has (been) registered!');
|
508 |
$registerFilterArray['adminMessageOnRegistrationTitle'] = apply_filters ('wppb_register_admin_message_title', $registerFilterArray['adminMessageOnRegistrationTitle']);
|
509 |
|
510 |
if (trim($registerFilterArray['adminMessageOnRegistration']) != ''){
|
@@ -1149,6 +1149,7 @@ function wppb_front_end_register($atts){
|
|
1149 |
?>
|
1150 |
<div class="wppb_holder" id="wppb_register">
|
1151 |
<?php
|
|
|
1152 |
if ( is_user_logged_in() && !current_user_can( 'create_users' ) ) :
|
1153 |
|
1154 |
global $user_ID;
|
@@ -1175,7 +1176,6 @@ function wppb_front_end_register($atts){
|
|
1175 |
echo $registerFilterArray['registrationMessage1'];
|
1176 |
}
|
1177 |
|
1178 |
-
$wppb_addons = WPPB_PLUGIN_DIR . '/premium/addon/';
|
1179 |
if (file_exists ( $wppb_addons.'addon.php' )){
|
1180 |
//check to see if the redirecting addon is present and activated
|
1181 |
$wppb_addon_settings = get_option('wppb_addon_settings');
|
@@ -1207,7 +1207,7 @@ function wppb_front_end_register($atts){
|
|
1207 |
echo $registerFilterArray['registrationMessage2'];
|
1208 |
}
|
1209 |
|
1210 |
-
$wppb_addons = WPPB_PLUGIN_DIR . '/premium/
|
1211 |
if (file_exists ( $wppb_addons.'addon.php' )){
|
1212 |
//check to see if the redirecting addon is present and activated
|
1213 |
$wppb_addon_settings = get_option('wppb_addon_settings');
|
383 |
$message_headers = "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n";
|
384 |
$siteURL = wppb_curpageurl().wppb_passed_arguments_check().'key='.$key;
|
385 |
|
386 |
+
$message = sprintf(apply_filters( 'wppb_signup_user_notification_email', __( "To activate your user, please click the following link:\n\n%s%s%s\n\nAfter you activate, you will receive *another email* with your login.\n\n", "profilebuilder" ),$user, $user_email, $key, $meta), '<a href="'.$siteURL.'">', $siteURL, '</a>.');
|
387 |
|
388 |
$subject = sprintf(apply_filters( 'wppb_signup_user_notification_subject', __( '[%1$s] Activate %2$s', 'profilebuilder'), $user, $user_email, $key, $meta ), $from_name, $user);
|
389 |
|
504 |
$registerFilterArray['adminMessageOnRegistration'] .= '<br/>'. __('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!', 'profilebuilder') ."\r\n";
|
505 |
$registerFilterArray['adminMessageOnRegistration'] = apply_filters('wppb_register_admin_message_content', $registerFilterArray['adminMessageOnRegistration'], $bloginfo, $user_name, $email);
|
506 |
|
507 |
+
$registerFilterArray['adminMessageOnRegistrationTitle'] = '['. $bloginfo .'] '. __('A new subscriber has (been) registered!', 'profilebuilder');
|
508 |
$registerFilterArray['adminMessageOnRegistrationTitle'] = apply_filters ('wppb_register_admin_message_title', $registerFilterArray['adminMessageOnRegistrationTitle']);
|
509 |
|
510 |
if (trim($registerFilterArray['adminMessageOnRegistration']) != ''){
|
1149 |
?>
|
1150 |
<div class="wppb_holder" id="wppb_register">
|
1151 |
<?php
|
1152 |
+
|
1153 |
if ( is_user_logged_in() && !current_user_can( 'create_users' ) ) :
|
1154 |
|
1155 |
global $user_ID;
|
1176 |
echo $registerFilterArray['registrationMessage1'];
|
1177 |
}
|
1178 |
|
|
|
1179 |
if (file_exists ( $wppb_addons.'addon.php' )){
|
1180 |
//check to see if the redirecting addon is present and activated
|
1181 |
$wppb_addon_settings = get_option('wppb_addon_settings');
|
1207 |
echo $registerFilterArray['registrationMessage2'];
|
1208 |
}
|
1209 |
|
1210 |
+
$wppb_addons = WPPB_PLUGIN_DIR . '/premium/addons/';
|
1211 |
if (file_exists ( $wppb_addons.'addon.php' )){
|
1212 |
//check to see if the redirecting addon is present and activated
|
1213 |
$wppb_addon_settings = get_option('wppb_addon_settings');
|
functions/admin.bar.php
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function wppb_display_admin_settings(){
|
3 |
+
?>
|
4 |
+
<form method="post" action="options.php#show-hide-admin-bar">
|
5 |
+
<?php
|
6 |
+
global $wp_roles;
|
7 |
+
|
8 |
+
$wppb_showAdminBar = get_option('wppb_display_admin_settings');
|
9 |
+
settings_fields('wppb_display_admin_settings');
|
10 |
+
?>
|
11 |
+
|
12 |
+
|
13 |
+
<h2><?php _e('Show/Hide the Admin Bar on Front End', 'profilebuilder');?></h2>
|
14 |
+
<h3><?php _e('Show/Hide the Admin Bar on Front End', 'profilebuilder');?></h3>
|
15 |
+
<table class="wp-list-table widefat fixed pages" cellspacing="0">
|
16 |
+
<thead>
|
17 |
+
<tr>
|
18 |
+
<th id="manage-column" scope="col"><?php _e('User-group', 'profilebuilder');?></th>
|
19 |
+
<th id="manage-column" scope="col"><?php _e('Visibility', 'profilebuilder');?></th>
|
20 |
+
</tr>
|
21 |
+
</thead>
|
22 |
+
<tbody>
|
23 |
+
<?php
|
24 |
+
foreach($wppb_showAdminBar as $key => $data){
|
25 |
+
echo'<tr>
|
26 |
+
<td id="manage-columnCell">'.$wp_roles->roles[$key]['name'].'</td>
|
27 |
+
<td id="manage-columnCell">
|
28 |
+
<input type="radio" name="wppb_display_admin_settings['.$key.']" value="show"';if ($wppb_showAdminBar[$key] == 'show') echo ' checked';echo'/><font size="1">'; _e('Show', 'profilebuilder'); echo'</font><span style="padding-left:20px"></span>
|
29 |
+
<input type="radio" name="wppb_display_admin_settings['.$key.']" value="hide"';if ($wppb_showAdminBar[$key] == 'hide') echo ' checked';echo'/><font size="1">'; _e('Hide', 'profilebuilder'); echo'</font>
|
30 |
+
</td>
|
31 |
+
</tr>';
|
32 |
+
}
|
33 |
+
?>
|
34 |
+
|
35 |
+
</table>
|
36 |
+
|
37 |
+
<?php
|
38 |
+
echo '<div id="layoutNoticeDiv">
|
39 |
+
<font size="1" id="layoutNotice">
|
40 |
+
<b>'. __('NOTE:', 'profilebuilder') .'</b><br/>
|
41 |
+
→ '. __('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.', 'profilebuilder') .'
|
42 |
+
</font>
|
43 |
+
</div>';
|
44 |
+
?>
|
45 |
+
<div align="right">
|
46 |
+
<input type="hidden" name="action" value="update" />
|
47 |
+
<p class="submit">
|
48 |
+
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
49 |
+
</p>
|
50 |
+
</div>
|
51 |
+
</form>
|
52 |
+
|
53 |
+
|
54 |
+
<?php
|
55 |
+
}
|
functions/basic.info.php
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function wppb_basic_info(){
|
3 |
+
?>
|
4 |
+
|
5 |
+
<h2><?php _e('Profile Builder', 'profilebuilder');?></h2>
|
6 |
+
<h3><?php _e('Welcome to Profile Builder!', 'profilebuilder');?></h3>
|
7 |
+
<p>
|
8 |
+
<strong><?php _e('Profile Builder', 'profilebuilder');?></strong><?php _e(' 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.', 'profilebuilder');?><br/><br/>
|
9 |
+
<?php _e('Also, grants users with administrator rights to customize basic fields or to add new ones.', 'profilebuilder');?><br/><br/>
|
10 |
+
<?php _e('To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile).', 'profilebuilder');?><br/>
|
11 |
+
<?php _e('Now all you need to do is add the following shortcode(for the previous example): ', 'profilebuilder');?>[wppb-edit-profile].<br/>
|
12 |
+
<?php _e('Publish your page and you are ready to go!', 'profilebuilder');?><br/><br/>
|
13 |
+
<?php _e('You can use the following shortcodes:', 'profilebuilder');?><br/>
|
14 |
+
→ <strong>[wppb-login]</strong> - <?php _e('for a log-in form.', 'profilebuilder');?><br/>
|
15 |
+
→ <strong>[wppb-register]</strong> - <?php _e('to add a registration form.', 'profilebuilder');?><br/>
|
16 |
+
→ <strong>[wppb-edit-profile]</strong> - <?php _e('to grant users a front-end acces to their personal information(requires user to be logged in).', 'profilebuilder');?><br/>
|
17 |
+
→ <strong>[wppb-recover-password]</strong> - <?php _e('to add a password recovery form.', 'profilebuilder');?><br/><br/>
|
18 |
+
|
19 |
+
<?php _e('With the <strong>Pro</strong> version, users with administrator rights have access to the following features:', 'profilebuilder');?><br/>
|
20 |
+
→ <?php _e('add a custom stylesheet/inherit values from the current theme or use one of the following built into this plugin: default, white or black.', 'profilebuilder');?><br/>
|
21 |
+
→ <?php _e('select whether to display or not the admin bar in the front end for a specific user-group registered to the site.', 'profilebuilder');?><br/>
|
22 |
+
→ <?php _e('select which information-field can users see/modify. The hidden fields\' values remain unmodified.', 'profilebuilder');?><br/>
|
23 |
+
→ <?php _e('add custom fields to the existing ones, with several types to choose from: heading, text, textarea, select, checkbox, radio, and/or upload.', 'profilebuilder');?><br/>
|
24 |
+
→ <?php _e('add an avatar field.', 'profilebuilder');?><br/>
|
25 |
+
→ <?php _e('create custom redirects.', 'profilebuilder');?><br/>
|
26 |
+
→ <?php echo $echoString = __('front-end userlisting using the', 'profilebuilder').' <strong>[wppb-list-users]</strong> '. __('shortcode.', 'profilebuilder');?><br/>
|
27 |
+
<br/>
|
28 |
+
|
29 |
+
<strong><?php _e('NOTE:', 'profilebuilder');?></strong>
|
30 |
+
<?php _e('this plugin only adds/removes fields in the front-end.', 'profilebuilder');?><br/>
|
31 |
+
<?php _e('The default information-fields will still be visible(and thus modifiable)', 'profilebuilder');?>
|
32 |
+
<?php _e('from the back-end, while custom fields will only be visible in the front-end.', 'profilebuilder');?>
|
33 |
+
</p>
|
34 |
+
|
35 |
+
<?php
|
36 |
+
}
|
functions/default.settings.php
ADDED
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function wppb_default_settings(){
|
3 |
+
?>
|
4 |
+
<form method="post" action="options.php#default-fields">
|
5 |
+
<?php $wppb_defaultOptions = get_option('wppb_default_settings'); ?>
|
6 |
+
<?php settings_fields('wppb_option_group'); ?>
|
7 |
+
|
8 |
+
|
9 |
+
<h2><?php _e('Default Profile Fields', 'profilebuilder');?></h2>
|
10 |
+
<h3><?php _e('Default Profile Fields', 'profilebuilder');?></h3>
|
11 |
+
<table class="wp-list-table widefat fixed pages" cellspacing="0">
|
12 |
+
<thead>
|
13 |
+
<tr>
|
14 |
+
<th id="manage-column" scope="col"><?php _e('Input Field Name', 'profilebuilder');?></th>
|
15 |
+
<th id="manage-column" scope="col"><?php _e('Visibility', 'profilebuilder');?></th>
|
16 |
+
<th id="manage-column" scope="col"><?php _e('Required', 'profilebuilder');?></th>
|
17 |
+
</tr>
|
18 |
+
</thead>
|
19 |
+
<tbody class="plugins" >
|
20 |
+
<tr>
|
21 |
+
<td colspan="3"><font size="2"><?php _e('Name:', 'profilebuilder');?></font></td>
|
22 |
+
</tr>
|
23 |
+
</tbody>
|
24 |
+
<tbody>
|
25 |
+
<tr>
|
26 |
+
<td id="manage-columnCell">
|
27 |
+
<span style="padding-left:50px"></span><?php _e('Username', 'profilebuilder');?>
|
28 |
+
</td>
|
29 |
+
<td id="manage-columnCell">
|
30 |
+
<input type="radio" name="wppb_default_settings[username]" value="show" checked /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
31 |
+
<input type="radio" name="wppb_default_settings[username]" value="hide" disabled /><font size="1" color="grey"><?php _e('Hide', 'profilebuilder');?></font>
|
32 |
+
</td>
|
33 |
+
<td id="manage-columnCell">
|
34 |
+
<input type="radio" name="wppb_default_settings[usernameRequired]" value="yes" checked /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
35 |
+
<input type="radio" name="wppb_default_settings[usernameRequired]" value="no" disabled /><font size="1" color="grey"><?php _e('No', 'profilebuilder');?></font>
|
36 |
+
</td>
|
37 |
+
</tr>
|
38 |
+
<tr>
|
39 |
+
<td id="manage-columnCell">
|
40 |
+
<span style="padding-left:50px"></span><?php _e('First Name', 'profilebuilder');?>
|
41 |
+
</td>
|
42 |
+
<td id="manage-columnCell">
|
43 |
+
<input type="radio" name="wppb_default_settings[firstname]" value="show" <?php if ($wppb_defaultOptions['firstname'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
44 |
+
<input type="radio" name="wppb_default_settings[firstname]" value="hide" <?php if ($wppb_defaultOptions['firstname'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
45 |
+
</td>
|
46 |
+
<td id="manage-columnCell">
|
47 |
+
<input type="radio" name="wppb_default_settings[firstnameRequired]" value="yes" <?php if ($wppb_defaultOptions['firstnameRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
48 |
+
<input type="radio" name="wppb_default_settings[firstnameRequired]" value="no" <?php if ($wppb_defaultOptions['firstnameRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
49 |
+
</td>
|
50 |
+
</tr>
|
51 |
+
<tr>
|
52 |
+
<td id="manage-columnCell">
|
53 |
+
<span style="padding-left:50px"></span><?php _e('Last Name', 'profilebuilder');?>
|
54 |
+
</td>
|
55 |
+
<td id="manage-columnCell">
|
56 |
+
<input type="radio" name="wppb_default_settings[lastname]" value="show" <?php if ($wppb_defaultOptions['lastname'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
57 |
+
<input type="radio" name="wppb_default_settings[lastname]" value="hide" <?php if ($wppb_defaultOptions['lastname'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
58 |
+
</td>
|
59 |
+
<td id="manage-columnCell">
|
60 |
+
<input type="radio" name="wppb_default_settings[lastnameRequired]" value="yes" <?php if ($wppb_defaultOptions['lastnameRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
61 |
+
<input type="radio" name="wppb_default_settings[lastnameRequired]" value="no" <?php if ($wppb_defaultOptions['lastnameRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
62 |
+
</td>
|
63 |
+
</tr>
|
64 |
+
<tr>
|
65 |
+
<td id="manage-columnCell">
|
66 |
+
<span style="padding-left:50px"></span><?php _e('Nickname', 'profilebuilder');?>
|
67 |
+
</td>
|
68 |
+
<td id="manage-columnCell">
|
69 |
+
<input type="radio" name="wppb_default_settings[nickname]" value="show" <?php if ($wppb_defaultOptions['nickname'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
70 |
+
<input type="radio" name="wppb_default_settings[nickname]" value="hide" <?php if ($wppb_defaultOptions['nickname'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
71 |
+
</td>
|
72 |
+
<td id="manage-columnCell">
|
73 |
+
<input type="radio" name="wppb_default_settings[nicknameRequired]" value="yes" <?php if ($wppb_defaultOptions['nicknameRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
74 |
+
<input type="radio" name="wppb_default_settings[nicknameRequired]" value="no" <?php if ($wppb_defaultOptions['nicknameRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
75 |
+
</td>
|
76 |
+
</tr>
|
77 |
+
<tr>
|
78 |
+
<td id="manage-columnCell">
|
79 |
+
<span style="padding-left:50px"></span><?php _e('Display name publicly as...', 'profilebuilder');?>
|
80 |
+
</td>
|
81 |
+
<td id="manage-columnCell">
|
82 |
+
<input type="radio" name="wppb_default_settings[dispname]" value="show" <?php if ($wppb_defaultOptions['dispname'] == 'show') echo 'checked';?> /><?php _e('Show', 'profilebuilder');?><span style="padding-left:20px"></span>
|
83 |
+
<input type="radio" name="wppb_default_settings[dispname]" value="hide" <?php if ($wppb_defaultOptions['dispname'] == 'hide') echo 'checked';?> /><?php _e('Hide', 'profilebuilder');?>
|
84 |
+
</td>
|
85 |
+
<td id="manage-columnCell">
|
86 |
+
<input type="radio" name="wppb_default_settings[dispnameRequired]" value="yes" <?php if ($wppb_defaultOptions['dispnameRequired'] == 'yes') echo 'checked';?> /><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
87 |
+
<input type="radio" name="wppb_default_settings[dispnameRequired]" value="no" <?php if ($wppb_defaultOptions['dispnameRequired'] == 'no') echo 'checked';?> /><?php _e('No', 'profilebuilder');?>
|
88 |
+
</td>
|
89 |
+
</tr>
|
90 |
+
<tbody class="plugins">
|
91 |
+
<tr>
|
92 |
+
<td colspan="3"><font size="2"><?php _e('Contact Info:', 'profilebuilder');?></font></td>
|
93 |
+
</tr>
|
94 |
+
</tbody>
|
95 |
+
<tbody>
|
96 |
+
<tr>
|
97 |
+
<td id="manage-columnCell">
|
98 |
+
<span style="padding-left:50px"></span><?php _e('E-mail', 'profilebuilder');?>
|
99 |
+
</td>
|
100 |
+
<td id="manage-columnCell">
|
101 |
+
<input type="radio" name="wppb_default_settings[email]" value="show" checked><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
102 |
+
<input type="radio" name="wppb_default_settings[email]" value="hide" disabled><font size="1" color="grey"><?php _e('Hide', 'profilebuilder');?></font>
|
103 |
+
</td>
|
104 |
+
<td id="manage-columnCell">
|
105 |
+
<input type="radio" name="wppb_default_settings[emailRequired]" value="yes" checked /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
106 |
+
<input type="radio" name="wppb_default_settings[emailRequired]" value="no" disabled /><font size="1" color="grey"><?php _e('No', 'profilebuilder');?></font>
|
107 |
+
</td>
|
108 |
+
</tr>
|
109 |
+
<tr>
|
110 |
+
<td id="manage-columnCell">
|
111 |
+
<span style="padding-left:50px"></span><?php _e('Website', 'profilebuilder');?>
|
112 |
+
</td>
|
113 |
+
<td id="manage-columnCell">
|
114 |
+
<input type="radio" name="wppb_default_settings[website]" value="show" <?php if ($wppb_defaultOptions['website'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
115 |
+
<input type="radio" name="wppb_default_settings[website]" value="hide" <?php if ($wppb_defaultOptions['website'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
116 |
+
</td>
|
117 |
+
<td id="manage-columnCell">
|
118 |
+
<input type="radio" name="wppb_default_settings[websiteRequired]" value="yes" <?php if ($wppb_defaultOptions['websiteRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
119 |
+
<input type="radio" name="wppb_default_settings[websiteRequired]" value="no" <?php if ($wppb_defaultOptions['websiteRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
120 |
+
</td>
|
121 |
+
</tr>
|
122 |
+
<tbody class="plugins">
|
123 |
+
</tbody>
|
124 |
+
<tbody>
|
125 |
+
<tr>
|
126 |
+
<td id="manage-columnCell">
|
127 |
+
<span style="padding-left:50px"></span><?php _e('AIM', 'profilebuilder');?>
|
128 |
+
</td>
|
129 |
+
<td id="manage-columnCell">
|
130 |
+
<input type="radio" name="wppb_default_settings[aim]" value="show" <?php if ($wppb_defaultOptions['aim'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
131 |
+
<input type="radio" name="wppb_default_settings[aim]" value="hide" <?php if ($wppb_defaultOptions['aim'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
132 |
+
</td>
|
133 |
+
<td id="manage-columnCell">
|
134 |
+
<input type="radio" name="wppb_default_settings[aimRequired]" value="yes" <?php if ($wppb_defaultOptions['aimRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
135 |
+
<input type="radio" name="wppb_default_settings[aimRequired]" value="no" <?php if ($wppb_defaultOptions['aimRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
136 |
+
</td>
|
137 |
+
</tr>
|
138 |
+
<tr>
|
139 |
+
<td id="manage-columnCell">
|
140 |
+
<span style="padding-left:50px"></span><?php _e('Yahoo IM', 'profilebuilder');?>
|
141 |
+
</td>
|
142 |
+
<td id="manage-columnCell">
|
143 |
+
<input type="radio" name="wppb_default_settings[yahoo]" value="show" <?php if ($wppb_defaultOptions['yahoo'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
144 |
+
<input type="radio" name="wppb_default_settings[yahoo]" value="hide" <?php if ($wppb_defaultOptions['yahoo'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
145 |
+
</td>
|
146 |
+
<td id="manage-columnCell">
|
147 |
+
<input type="radio" name="wppb_default_settings[yahooRequired]" value="yes" <?php if ($wppb_defaultOptions['yahooRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
148 |
+
<input type="radio" name="wppb_default_settings[yahooRequired]" value="no" <?php if ($wppb_defaultOptions['yahooRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
149 |
+
</td>
|
150 |
+
</tr>
|
151 |
+
<tr>
|
152 |
+
<td id="manage-columnCell">
|
153 |
+
<span style="padding-left:50px"></span><?php _e('Jabber / Google Talk', 'profilebuilder');?>
|
154 |
+
</td>
|
155 |
+
<td id="manage-columnCell">
|
156 |
+
<input type="radio" name="wppb_default_settings[jabber]" value="show" <?php if ($wppb_defaultOptions['jabber'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
157 |
+
<input type="radio" name="wppb_default_settings[jabber]" value="hide" <?php if ($wppb_defaultOptions['jabber'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
158 |
+
</td>
|
159 |
+
<td id="manage-columnCell">
|
160 |
+
<input type="radio" name="wppb_default_settings[jabberRequired]" value="yes" <?php if ($wppb_defaultOptions['jabberRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
161 |
+
<input type="radio" name="wppb_default_settings[jabberRequired]" value="no" <?php if ($wppb_defaultOptions['jabberRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
162 |
+
</td>
|
163 |
+
</tr>
|
164 |
+
<tbody class="plugins">
|
165 |
+
<tr>
|
166 |
+
<td colspan="3"><font size="2"><?php _e('About Yourself:', 'profilebuilder');?></font></td>
|
167 |
+
</tr>
|
168 |
+
</tbody>
|
169 |
+
<tbody>
|
170 |
+
<tr>
|
171 |
+
<td id="manage-columnCell">
|
172 |
+
<span style="padding-left:50px"></span><?php _e('Biographical Info', 'profilebuilder');?>
|
173 |
+
</td>
|
174 |
+
<td id="manage-columnCell">
|
175 |
+
<input type="radio" name="wppb_default_settings[bio]" value="show" <?php if ($wppb_defaultOptions['bio'] == 'show') echo 'checked';?> /><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
176 |
+
<input type="radio" name="wppb_default_settings[bio]" value="hide" <?php if ($wppb_defaultOptions['bio'] == 'hide') echo 'checked';?> /><font size="1"><?php _e('Hide', 'profilebuilder');?></font>
|
177 |
+
</td>
|
178 |
+
<td id="manage-columnCell">
|
179 |
+
<input type="radio" name="wppb_default_settings[bioRequired]" value="yes" <?php if ($wppb_defaultOptions['bioRequired'] == 'yes') echo 'checked';?> /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
180 |
+
<input type="radio" name="wppb_default_settings[bioRequired]" value="no" <?php if ($wppb_defaultOptions['bioRequired'] == 'no') echo 'checked';?> /><font size="1"><?php _e('No', 'profilebuilder');?></font>
|
181 |
+
</td>
|
182 |
+
</tr>
|
183 |
+
<tbody>
|
184 |
+
<tr>
|
185 |
+
<td id="manage-columnCell">
|
186 |
+
<span style="padding-left:50px"></span><?php _e('(New) Password', 'profilebuilder');?>
|
187 |
+
</td>
|
188 |
+
<td id="manage-columnCell">
|
189 |
+
<input type="radio" name="wppb_default_settings[password]" value="show" checked><font size="1"><?php _e('Show', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
190 |
+
<input type="radio" name="wppb_default_settings[password]" value="hide" disabled><font size="1" color="grey"><?php _e('Hide', 'profilebuilder');?></font>
|
191 |
+
</td>
|
192 |
+
<td id="manage-columnCell">
|
193 |
+
<input type="radio" name="wppb_default_settings[passwordRequired]" value="yes" checked /><font size="1"><?php _e('Yes', 'profilebuilder');?></font><span style="padding-left:20px"></span>
|
194 |
+
<input type="radio" name="wppb_default_settings[passwordRequired]" value="no" disabled /><font size="1" color="grey"><?php _e('No', 'profilebuilder');?></font>
|
195 |
+
</td>
|
196 |
+
</tr>
|
197 |
+
</tbody>
|
198 |
+
</table>
|
199 |
+
<div align="right">
|
200 |
+
<input type="hidden" name="action" value="update" />
|
201 |
+
<p class="submit">
|
202 |
+
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
203 |
+
</p>
|
204 |
+
</form>
|
205 |
+
</div>
|
206 |
+
|
207 |
+
<?php
|
208 |
+
}
|
209 |
+
?>
|
functions/functions.load.php
CHANGED
@@ -13,28 +13,57 @@ Original Author URI: http://valendesigns.com
|
|
13 |
/* whitelist options, you can add more register_settings changing the second parameter */
|
14 |
|
15 |
function wppb_register_settings() {
|
16 |
-
$premiumPresent = WPPB_PLUGIN_DIR . '/premium/premium.php';
|
17 |
-
$addonPresent = WPPB_PLUGIN_DIR . '/premium/addon/addon.php';
|
18 |
-
|
19 |
register_setting( 'wppb_option_group', 'wppb_default_settings' );
|
20 |
register_setting( 'wppb_general_settings', 'wppb_general_settings' );
|
21 |
register_setting( 'wppb_display_admin_settings', 'wppb_display_admin_settings' );
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
register_setting( 'customUserListingSettings', 'customUserListingSettings' );
|
29 |
-
register_setting( 'reCaptchaSettings', 'reCaptchaSettings' );
|
30 |
-
}
|
31 |
-
|
32 |
|
33 |
}
|
34 |
|
|
|
|
|
|
|
35 |
$wppb_premiumAdmin = WPPB_PLUGIN_DIR . '/premium/functions/';
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
include_once($wppb_premiumAdmin.'premium.functions.load.php');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
function wppb_add_plugin_stylesheet() {
|
40 |
$wppb_generalSettings = get_option('wppb_general_settings');
|
@@ -88,22 +117,65 @@ function wppb_show_admin_bar($content){
|
|
88 |
}
|
89 |
|
90 |
if(!function_exists('wppb_curpageurl')){
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
$
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
|
|
|
|
|
|
104 |
}
|
105 |
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
|
108 |
if ( is_admin() ){
|
109 |
/* include the css for the datepicker */
|
@@ -124,7 +196,7 @@ if ( is_admin() ){
|
|
124 |
/* display the same extra profile fields in the admin panel also */
|
125 |
$wppb_premium = WPPB_PLUGIN_DIR . '/premium/functions/';
|
126 |
if (file_exists ( $wppb_premium.'extra.fields.php' )){
|
127 |
-
|
128 |
add_action( 'show_user_profile', 'display_profile_extra_fields_in_admin', 10 );
|
129 |
add_action( 'edit_user_profile', 'display_profile_extra_fields_in_admin', 10 );
|
130 |
add_action( 'personal_options_update', 'save_profile_extra_fields_in_admin', 10 );
|
@@ -158,71 +230,4 @@ if ( is_admin() ){
|
|
158 |
|
159 |
/* Shortcodes used for the widget area. */
|
160 |
add_filter('widget_text', 'do_shortcode', 11);
|
161 |
-
|
162 |
-
/* check to see if the premium functions are present */
|
163 |
-
$wppb_premiumAdmin = WPPB_PLUGIN_DIR . '/premium/functions/';
|
164 |
-
if (file_exists ( $wppb_premiumAdmin.'premium.functions.load.php' )){
|
165 |
-
|
166 |
-
include_once($wppb_premiumAdmin.'premium.functions.load.php');
|
167 |
-
|
168 |
-
/* filter to set current users custom avatar */
|
169 |
-
add_filter('get_avatar', 'wppb_changeDefaultAvatar', 21, 5);
|
170 |
-
}
|
171 |
-
|
172 |
-
$wppb_premiumAddon = WPPB_PLUGIN_DIR . '/premium/addon/';
|
173 |
-
if (file_exists ( $wppb_premiumAddon.'addon.functions.php' )){
|
174 |
-
//include the file containing the addon functions
|
175 |
-
include_once($wppb_premiumAddon.'addon.functions.php');
|
176 |
-
|
177 |
-
$wppb_addonOptions = get_option('wppb_addon_settings');
|
178 |
-
if ($wppb_addonOptions['wppb_userListing'] == 'show'){
|
179 |
-
//add shortcode for the user-listing functionality
|
180 |
-
add_shortcode('wppb-list-users', 'wppb_list_all_users');
|
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 );
|
13 |
/* whitelist options, you can add more register_settings changing the second parameter */
|
14 |
|
15 |
function wppb_register_settings() {
|
|
|
|
|
|
|
16 |
register_setting( 'wppb_option_group', 'wppb_default_settings' );
|
17 |
register_setting( 'wppb_general_settings', 'wppb_general_settings' );
|
18 |
register_setting( 'wppb_display_admin_settings', 'wppb_display_admin_settings' );
|
19 |
+
register_setting( 'wppb_profile_builder_pro_serial', 'wppb_profile_builder_pro_serial' );
|
20 |
+
register_setting( 'wppb_profile_builder_hobbyist_serial', 'wppb_profile_builder_hobbyist_serial' );
|
21 |
+
register_setting( 'wppb_addon_settings', 'wppb_addon_settings' );
|
22 |
+
register_setting( 'customRedirectSettings', 'customRedirectSettings' );
|
23 |
+
register_setting( 'customUserListingSettings', 'customUserListingSettings' );
|
24 |
+
register_setting( 'reCaptchaSettings', 'reCaptchaSettings' );
|
|
|
|
|
|
|
|
|
25 |
|
26 |
}
|
27 |
|
28 |
+
|
29 |
+
// include files
|
30 |
+
$wppb_premiumAddon = WPPB_PLUGIN_DIR . '/premium/addons/';
|
31 |
$wppb_premiumAdmin = WPPB_PLUGIN_DIR . '/premium/functions/';
|
32 |
+
|
33 |
+
if (file_exists ( $wppb_premiumAddon.'recaptcha.php' ))
|
34 |
+
include_once($wppb_premiumAddon.'recaptcha.php');
|
35 |
+
if (file_exists ( $wppb_premiumAddon.'custom.redirects.php' ))
|
36 |
+
include_once($wppb_premiumAddon.'custom.redirects.php');
|
37 |
+
if (file_exists ( $wppb_premiumAddon.'userlisting.php' )){
|
38 |
+
include_once($wppb_premiumAddon.'userlisting.php');
|
39 |
+
|
40 |
+
$wppb_addonOptions = get_option('wppb_addon_settings');
|
41 |
+
if ($wppb_addonOptions['wppb_userListing'] == 'show'){
|
42 |
+
add_shortcode('wppb-list-users', 'wppb_list_all_users');
|
43 |
+
}else
|
44 |
+
add_shortcode('wppb-list-users', 'wppb_list_all_users_display_error');
|
45 |
+
}
|
46 |
+
if (file_exists ( $wppb_premiumAdmin.'premium.functions.load.php' )){
|
47 |
include_once($wppb_premiumAdmin.'premium.functions.load.php');
|
48 |
+
add_filter('get_avatar', 'wppb_changeDefaultAvatar', 21, 5);
|
49 |
+
}
|
50 |
+
if (file_exists ( $wppb_premiumAdmin.'admin.approval.php' )){
|
51 |
+
include_once($wppb_premiumAdmin.'admin.approval.php');
|
52 |
+
}
|
53 |
+
if (file_exists ( $wppb_premiumAdmin.'login.widget.php' )){
|
54 |
+
include_once($wppb_premiumAdmin.'login.widget.php');
|
55 |
+
}
|
56 |
+
if (file_exists ( $wppb_premiumAdmin.'register.version.php' ))
|
57 |
+
include_once($wppb_premiumAdmin.'register.version.php');
|
58 |
+
|
59 |
+
require_once(WPPB_PLUGIN_DIR.'/functions/basic.info.php');
|
60 |
+
require_once(WPPB_PLUGIN_DIR.'/functions/general.settings.php');
|
61 |
+
require_once(WPPB_PLUGIN_DIR.'/functions/admin.bar.php');
|
62 |
+
require_once(WPPB_PLUGIN_DIR.'/functions/default.settings.php');
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
|
68 |
function wppb_add_plugin_stylesheet() {
|
69 |
$wppb_generalSettings = get_option('wppb_general_settings');
|
117 |
}
|
118 |
|
119 |
if(!function_exists('wppb_curpageurl')){
|
120 |
+
function wppb_curpageurl() {
|
121 |
+
$pageURL = 'http';
|
122 |
+
|
123 |
+
if ((isset($_SERVER["HTTPS"])) && ($_SERVER["HTTPS"] == "on"))
|
124 |
+
$pageURL .= "s";
|
125 |
+
|
126 |
+
$pageURL .= "://";
|
127 |
+
|
128 |
+
if ($_SERVER["SERVER_PORT"] != "80")
|
129 |
+
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
|
130 |
+
|
131 |
+
else
|
132 |
+
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
|
133 |
+
|
134 |
+
return $pageURL;
|
135 |
+
}
|
136 |
}
|
137 |
|
138 |
|
139 |
+
//functions needed for the email-confirmation on single-sites
|
140 |
+
function wppb_signup_schema($oldVal, $newVal){
|
141 |
+
|
142 |
+
// Declare these as global in case schema.php is included from a function.
|
143 |
+
global $wpdb, $wp_queries, $charset_collate;
|
144 |
+
|
145 |
+
if ($newVal['emailConfirmation'] == 'yes'){
|
146 |
+
|
147 |
+
//The database character collate.
|
148 |
+
$charset_collate = '';
|
149 |
+
|
150 |
+
if ( ! empty( $wpdb->charset ) )
|
151 |
+
$charset_collate = "DEFAULT CHARACTER SET ".$wpdb->charset;
|
152 |
+
if ( ! empty( $wpdb->collate ) )
|
153 |
+
$charset_collate .= " COLLATE ".$wpdb->collate;
|
154 |
+
$tableName = $wpdb->prefix.'signups';
|
155 |
+
|
156 |
+
$sql = "
|
157 |
+
CREATE TABLE $tableName (
|
158 |
+
domain varchar(200) NOT NULL default '',
|
159 |
+
path varchar(100) NOT NULL default '',
|
160 |
+
title longtext NOT NULL,
|
161 |
+
user_login varchar(60) NOT NULL default '',
|
162 |
+
user_email varchar(100) NOT NULL default '',
|
163 |
+
registered datetime NOT NULL default '0000-00-00 00:00:00',
|
164 |
+
activated datetime NOT NULL default '0000-00-00 00:00:00',
|
165 |
+
active tinyint(1) NOT NULL default '0',
|
166 |
+
activation_key varchar(50) NOT NULL default '',
|
167 |
+
meta longtext,
|
168 |
+
KEY activation_key (activation_key),
|
169 |
+
KEY domain (domain)
|
170 |
+
) $charset_collate;";
|
171 |
+
|
172 |
+
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
173 |
+
$res = dbDelta($sql);
|
174 |
+
}
|
175 |
+
}
|
176 |
+
add_action( 'update_option_wppb_general_settings', 'wppb_signup_schema', 10, 2 );
|
177 |
+
|
178 |
+
|
179 |
|
180 |
if ( is_admin() ){
|
181 |
/* include the css for the datepicker */
|
196 |
/* display the same extra profile fields in the admin panel also */
|
197 |
$wppb_premium = WPPB_PLUGIN_DIR . '/premium/functions/';
|
198 |
if (file_exists ( $wppb_premium.'extra.fields.php' )){
|
199 |
+
include_once( $wppb_premium.'extra.fields.php' );
|
200 |
add_action( 'show_user_profile', 'display_profile_extra_fields_in_admin', 10 );
|
201 |
add_action( 'edit_user_profile', 'display_profile_extra_fields_in_admin', 10 );
|
202 |
add_action( 'personal_options_update', 'save_profile_extra_fields_in_admin', 10 );
|
230 |
|
231 |
/* Shortcodes used for the widget area. */
|
232 |
add_filter('widget_text', 'do_shortcode', 11);
|
233 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
functions/general.settings.php
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function wppb_general_settings(){
|
3 |
+
|
4 |
+
$wppb_premiumStyle = WPPB_PLUGIN_DIR . '/premium/functions/';
|
5 |
+
?>
|
6 |
+
<form method="post" action="options.php#general-settings">
|
7 |
+
<?php $wppb_generalSettings = get_option('wppb_general_settings'); ?>
|
8 |
+
<?php settings_fields('wppb_general_settings'); ?>
|
9 |
+
|
10 |
+
<h2><?php _e('General Settings', 'profilebuilder');?></h2>
|
11 |
+
<h3><?php _e('General Settings', 'profilebuilder');?></h3>
|
12 |
+
<font id="generalSettingFont"><?php _e('Stylesheet Used on the Front-End:', 'profilebuilder');?></font>
|
13 |
+
<select name="wppb_general_settings[extraFieldsLayout]" class="wppb_general_settings">
|
14 |
+
<option value="yes" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'yes') echo 'selected';?>><?php _e('Default', 'profilebuilder');?></option>
|
15 |
+
<?php
|
16 |
+
if (file_exists ( $wppb_premiumStyle.'custom.fields.php' )){
|
17 |
+
?>
|
18 |
+
<option value="white" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'white') echo 'selected';?>><?php _e('White', 'profilebuilder');?></option>
|
19 |
+
<option value="black" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'black') echo 'selected';?>><?php _e('Black', 'profilebuilder');?></option>
|
20 |
+
<?php
|
21 |
+
}
|
22 |
+
?>
|
23 |
+
<option value="no" <?php if ($wppb_generalSettings['extraFieldsLayout'] == 'no') echo 'selected';?>><?php _e('None', 'profilebuilder');?></option>
|
24 |
+
</select>
|
25 |
+
<?php
|
26 |
+
if (!is_multisite()){
|
27 |
+
?>
|
28 |
+
<br/><br/>
|
29 |
+
<font id="generalSettingFont"><?php _e('"Email Confirmation" Feature Activated:', 'profilebuilder');?></font>
|
30 |
+
<select name="wppb_general_settings[emailConfirmation]" class="wppb_general_settings2">
|
31 |
+
<option value="yes" <?php if ($wppb_generalSettings['emailConfirmation'] == 'yes') echo 'selected';?>><?php _e('Yes', 'profilebuilder');?></option>
|
32 |
+
<option value="no" <?php if ($wppb_generalSettings['emailConfirmation'] == 'no') echo 'selected';?>><?php _e('No', 'profilebuilder');?></option>
|
33 |
+
</select>
|
34 |
+
<?php
|
35 |
+
}
|
36 |
+
if (file_exists ( $wppb_premiumStyle.'custom.fields.php' )){
|
37 |
+
?>
|
38 |
+
<br/><br/>
|
39 |
+
<font id="generalSettingFont"><?php _e('"Admin Approval" Feature Activated:', 'profilebuilder');?></font>
|
40 |
+
<select id="adminApprovalSelect" name="wppb_general_settings[adminApproval]" class="wppb_general_settings3">
|
41 |
+
<option value="yes" <?php if ($wppb_generalSettings['adminApproval'] == 'yes') echo 'selected';?>><?php _e('Yes', 'profilebuilder');?></option>
|
42 |
+
<option value="no" <?php if ($wppb_generalSettings['adminApproval'] == 'no') echo 'selected';?>><?php _e('No', 'profilebuilder');?></option>
|
43 |
+
</select>
|
44 |
+
<?php
|
45 |
+
echo '<div id="layoutNoticeDiv">
|
46 |
+
<font size="1" id="layoutNotice">
|
47 |
+
<b>'. __('NOTE:', 'profilebuilder') .'</b><br/>
|
48 |
+
→ '. __('The black stylesheet is intended for sites/blogs with a dark background.', 'profilebuilder') .'<br/>
|
49 |
+
→ '. __('The white stylesheet is intended for a sites/blogs with a light background color.', 'profilebuilder') .'<br/>
|
50 |
+
→ '. __('On single-site installations the "Email Confirmation" feature only works in the front-end, so make sure you also use the "Custom Redirects" feature.', 'profilebuilder') .'
|
51 |
+
</font>
|
52 |
+
</div>';
|
53 |
+
}
|
54 |
+
?>
|
55 |
+
<div align="right">
|
56 |
+
<input type="hidden" name="action" value="update" />
|
57 |
+
<p class="submit">
|
58 |
+
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
59 |
+
</p>
|
60 |
+
</div>
|
61 |
+
</form>
|
62 |
+
|
63 |
+
<?php
|
64 |
+
}
|
functions/options.php
ADDED
@@ -0,0 +1,178 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!--
|
2 |
+
Original Plugin Name: OptionTree
|
3 |
+
Original Plugin URI: http://wp.envato.com
|
4 |
+
Original Author: Derek Herman
|
5 |
+
Original Author URI: http://valendesigns.com
|
6 |
+
-->
|
7 |
+
<?php
|
8 |
+
if (!defined('PROFILE_BUILDER_VERSION'))
|
9 |
+
exit('No direct script access allowed');
|
10 |
+
|
11 |
+
/* this is for the backwards compatibility from v.1.1.12 to v.1.1.13 */
|
12 |
+
$update = false;
|
13 |
+
$arraySettingsPresent = get_option('wppb_custom_fields','not_found');
|
14 |
+
if ($arraySettingsPresent != 'not_found'){
|
15 |
+
foreach ($arraySettingsPresent as $key => $value){
|
16 |
+
if ($value['item_metaName'] == null){
|
17 |
+
$arraySettingsPresent[$key]['item_metaName'] = 'custom_field_'.$value['id'];
|
18 |
+
$update = true;
|
19 |
+
}
|
20 |
+
if ($value['item_LastMetaName'] == null){
|
21 |
+
$arraySettingsPresent[$key]['item_LsastMetaName'] = 'custom_field_'.$value['id'];
|
22 |
+
$update = true;
|
23 |
+
}
|
24 |
+
}
|
25 |
+
// only update if it is needed
|
26 |
+
if ($update == true)
|
27 |
+
update_option( 'wppb_custom_fields', $arraySettingsPresent);
|
28 |
+
}
|
29 |
+
/* END backwards compatibility */
|
30 |
+
?>
|
31 |
+
|
32 |
+
|
33 |
+
<div id="framework_wrap" class="wrap">
|
34 |
+
|
35 |
+
<div id="header">
|
36 |
+
<h1>Profile Builder</h1>
|
37 |
+
<span class="icon"> </span>
|
38 |
+
<div class="version">
|
39 |
+
<?php echo 'Version ' . PROFILE_BUILDER_VERSION; ?>
|
40 |
+
</div>
|
41 |
+
</div>
|
42 |
+
|
43 |
+
<div id="content_wrap">
|
44 |
+
|
45 |
+
<?php
|
46 |
+
global $current_user ;
|
47 |
+
|
48 |
+
$wppb_premium = WPPB_PLUGIN_DIR . '/premium/functions/';
|
49 |
+
if (!file_exists ( $wppb_premium.'custom.fields.php' )){
|
50 |
+
?>
|
51 |
+
<div class="info basic-version-info">
|
52 |
+
<img src="<?php echo WPPB_PLUGIN_URL ?>/assets/images/ad_image.png" alt="Profile Builder Pro" />
|
53 |
+
<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="Buy Profile Builder Pro"><img id="wppb_buyNowButton" src="<?php echo WPPB_PLUGIN_URL ?>/assets/images/buy_now_button.png"/></a>
|
54 |
+
</div>
|
55 |
+
<?php
|
56 |
+
}elseif ( ! get_user_meta($current_user->ID, 'wppb_dismiss_notification') ) {
|
57 |
+
|
58 |
+
if (file_exists ( WPPB_PLUGIN_DIR . '/premium/addons/addon.php' ))
|
59 |
+
$wppb_profile_builder_pro_hobbyist_serial_status = get_option('wppb_profile_builder_pro_serial_status');
|
60 |
+
else
|
61 |
+
$wppb_profile_builder_pro_hobbyist_serial_status = get_option('wppb_profile_builder_hobbyist_serial_status');
|
62 |
+
|
63 |
+
if ($wppb_profile_builder_pro_hobbyist_serial_status == 'notFound')
|
64 |
+
echo '<div class="info pro-noserial-info" style="line-height:22px;">'.__("Your <strong>Profile Builder</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>';
|
65 |
+
elseif ($wppb_profile_builder_pro_hobbyist_serial_status == 'expired')
|
66 |
+
echo '<div class="info pro-noserial-info" style="line-height:22px;">'.__("Your <strong>Profile Builder</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>';
|
67 |
+
}
|
68 |
+
?>
|
69 |
+
<div class="info top-info"></div>
|
70 |
+
|
71 |
+
<?php $wppb_premium = WPPB_PLUGIN_DIR . '/premium/functions/';
|
72 |
+
if (file_exists ( $wppb_premium.'custom.fields.php' )){
|
73 |
+
echo '<div class="ajax-message';
|
74 |
+
if ( isset( $message ) ) { echo ' show'; }
|
75 |
+
echo '">';
|
76 |
+
if ( isset( $message ) ) { echo $message; }
|
77 |
+
echo '</div>';
|
78 |
+
}
|
79 |
+
?>
|
80 |
+
|
81 |
+
<div id="content">
|
82 |
+
|
83 |
+
<div id="options_tabs">
|
84 |
+
|
85 |
+
<ul class="options_tabs">
|
86 |
+
<li><a href="#profile-builder"><?php _e('Basic Information','profilebuilder');?></a><span></span></li>
|
87 |
+
<li><a href="#general-settings"><?php _e('General Settings','profilebuilder');?></a><span></span></li>
|
88 |
+
<li><a href="#show-hide-admin-bar"><?php _e('Show/Hide the Admin Bar on Front-end','profilebuilder');?></a><span></span></li>
|
89 |
+
<li><a href="#default-fields"><?php _e('Default Profile Fields','profilebuilder');?></a><span></span></li>
|
90 |
+
<?php
|
91 |
+
$wppb_premium = WPPB_PLUGIN_DIR . '/premium/functions/';
|
92 |
+
$wppb_addons = WPPB_PLUGIN_DIR . '/premium/addons/';
|
93 |
+
|
94 |
+
if (file_exists ( $wppb_premium.'custom.fields.php' )){
|
95 |
+
echo '<li><a href="#create-extra-fields">'; _e('Extra Profile Fields','profilebuilder'); echo'</a><span></span></li>';
|
96 |
+
}
|
97 |
+
if (file_exists ( $wppb_addons.'addon.php' )){
|
98 |
+
echo '<li><a href="#add-ons">'; _e('Addons','profilebuilder'); echo'</a><span></span></li>';
|
99 |
+
}
|
100 |
+
if (file_exists ( $wppb_premium.'custom.fields.php' )){
|
101 |
+
echo '<li><a href="#register-profile-builder">'; _e('Register Your Version','profilebuilder'); echo'</a><span></span></li>';
|
102 |
+
}
|
103 |
+
?>
|
104 |
+
<?php
|
105 |
+
$addons_options_set = get_option('wppb_addon_settings','not_found');
|
106 |
+
if ($addons_options_set != 'not_found'){
|
107 |
+
$addons_options_description = get_option('wppb_addon_settings_description'); //fetch the descriptions array
|
108 |
+
foreach ($addons_options_set as $key => $value)
|
109 |
+
if ($value == 'show'){
|
110 |
+
echo '<li><a href="#'.$key.'">'; _e($addons_options_description[$key],'profilebuilder'); echo '</a><span></span></li>';
|
111 |
+
}
|
112 |
+
}
|
113 |
+
?>
|
114 |
+
|
115 |
+
</ul>
|
116 |
+
<div id="profile-builder" class="block">
|
117 |
+
<?php wppb_basic_info(); ?>
|
118 |
+
</div>
|
119 |
+
|
120 |
+
<div id="general-settings" class="block">
|
121 |
+
<?php wppb_general_settings(); ?>
|
122 |
+
</div>
|
123 |
+
|
124 |
+
|
125 |
+
<div id="show-hide-admin-bar" class="block has-table">
|
126 |
+
<?php wppb_display_admin_settings(); ?>
|
127 |
+
</div>
|
128 |
+
|
129 |
+
<div id="default-fields" class="block has-table">
|
130 |
+
<?php wppb_default_settings(); ?>
|
131 |
+
</div>
|
132 |
+
|
133 |
+
<?php
|
134 |
+
$wppb_premium = WPPB_PLUGIN_DIR . '/premium/functions/';
|
135 |
+
if (file_exists ( $wppb_premium.'custom.fields.php' )){
|
136 |
+
require_once($wppb_premium.'custom.fields.php');
|
137 |
+
echo '<div id="create-extra-fields" class="block has-table">';
|
138 |
+
wppb_custom_settings();
|
139 |
+
echo '</div>';
|
140 |
+
echo '<div id="register-profile-builder" class="block">';
|
141 |
+
if (file_exists ( WPPB_PLUGIN_DIR . '/premium/addons/addon.php' ))
|
142 |
+
wppb_register_profile_builder_pro();
|
143 |
+
else
|
144 |
+
wppb_register_profile_builder_hobbyist();
|
145 |
+
echo '</div>';
|
146 |
+
}
|
147 |
+
|
148 |
+
$wppb_addons = WPPB_PLUGIN_DIR . '/premium/addons/';
|
149 |
+
if (file_exists ( $wppb_addons.'addon.php' )){
|
150 |
+
require_once($wppb_addons.'addon.php');
|
151 |
+
echo '<div id="add-ons" class="block has-table">';
|
152 |
+
wppb_displayAddons();
|
153 |
+
echo '</div>';
|
154 |
+
|
155 |
+
$addons_options_set = get_option('wppb_addon_settings','not_found');
|
156 |
+
if ($addons_options_set != 'not_found'){
|
157 |
+
foreach ($addons_options_set as $key => $value)
|
158 |
+
if ($value == 'show'){
|
159 |
+
echo '<div id="'.$key.'" class="block has-table">';
|
160 |
+
$key();
|
161 |
+
echo '</div>';
|
162 |
+
}
|
163 |
+
}
|
164 |
+
}
|
165 |
+
?>
|
166 |
+
|
167 |
+
<br class="clear" />
|
168 |
+
|
169 |
+
</div>
|
170 |
+
|
171 |
+
</div>
|
172 |
+
|
173 |
+
<div class="info bottom"></div>
|
174 |
+
|
175 |
+
</div>
|
176 |
+
|
177 |
+
</div>
|
178 |
+
<!-- [END] framework_wrap -->
|
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.35
|
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.35' );
|
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
@@ -6,8 +6,8 @@ Tags: registration, profile, user registration, custom field registration, custo
|
|
6 |
custom registration, custom registration form, custom registration page, extra user fields, registration page, user custom fields, user listing, user login, user registration form, front-end login,
|
7 |
front-end register, front-end registration, frontend edit profile, edit profile
|
8 |
Requires at least: 3.1
|
9 |
-
Tested up to: 3.
|
10 |
-
Stable tag: 1.1.
|
11 |
|
12 |
Simple to use profile plugin allowing front-end login, registration and edit profile by using shortcodes.
|
13 |
|
@@ -93,6 +93,12 @@ This plugin only adds/removes fields in the front-end. The default information-f
|
|
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 |
|
6 |
custom registration, custom registration form, custom registration page, extra user fields, registration page, user custom fields, user listing, user login, user registration form, front-end login,
|
7 |
front-end register, front-end registration, frontend edit profile, edit profile
|
8 |
Requires at least: 3.1
|
9 |
+
Tested up to: 3.5
|
10 |
+
Stable tag: 1.1.35
|
11 |
|
12 |
Simple to use profile plugin allowing front-end login, registration and edit profile by using shortcodes.
|
13 |
|
93 |
5. Logged in Page: screenshot7.jpg
|
94 |
|
95 |
== Changelog ==
|
96 |
+
= 1.1.35 =
|
97 |
+
Added support for WP 3.5.
|
98 |
+
|
99 |
+
= 1.1.34 =
|
100 |
+
Separated some of the plugin's functions into separate files. Also fixed a few bugs.
|
101 |
+
|
102 |
= 1.1.33 =
|
103 |
Fixed function where it wouldn't create the _signups table in the free version.
|
104 |
|
screenshot-4.png
DELETED
Binary file
|
screenshot-5.png
DELETED
Binary file
|
screenshot-1.png → screenshots/screenshot-1.png
RENAMED
File without changes
|
screenshot-2.png → screenshots/screenshot-2.png
RENAMED
File without changes
|
screenshot-3.png → screenshots/screenshot-3.png
RENAMED
File without changes
|
screenshots/screenshot-4.jpg
ADDED
Binary file
|
screenshots/screenshot-5.jpg
ADDED
Binary file
|
translation/profilebuilder-cs_CZ.mo
CHANGED
Binary file
|
translation/profilebuilder-cs_CZ.po
CHANGED
@@ -1,2035 +1,2236 @@
|
|
1 |
-
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"
|
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-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
#: C:\Users\
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
#: C:\Users\
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
#: C:\Users\
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
#: C:\Users\
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
msgstr "
|
71 |
-
|
72 |
-
|
73 |
-
#: C:\Users\
|
74 |
-
|
75 |
-
msgid "
|
76 |
-
msgstr "
|
77 |
-
|
78 |
-
# @ profilebuilder
|
79 |
-
#: C:\Users\
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
#: C:\Users\
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
#: C:\Users\
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
#: C:\Users\
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
msgid "
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
# @ profilebuilder
|
121 |
-
#: C:\Users\
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
msgid "
|
140 |
-
msgstr "
|
141 |
-
|
142 |
-
|
143 |
-
#: C:\Users\
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
#: C:\Users\
|
180 |
-
#: C:\Users\
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
#: C:\Users\
|
186 |
-
#: C:\Users\
|
187 |
-
#: C:\Users\
|
188 |
-
#: C:\Users\
|
189 |
-
#: C:\Users\
|
190 |
-
#: C:\Users\
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
#: C:\Users\
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
#: C:\Users\
|
205 |
-
#: C:\Users\
|
206 |
-
#: C:\Users\
|
207 |
-
#: C:\Users\
|
208 |
-
#: C:\Users\
|
209 |
-
#: C:\Users\
|
210 |
-
#: C:\Users\
|
211 |
-
#: C:\Users\
|
212 |
-
#: C:\Users\
|
213 |
-
#: C:\Users\
|
214 |
-
#: C:\Users\
|
215 |
-
#: C:\Users\
|
216 |
-
#: C:\Users\
|
217 |
-
#: C:\Users\
|
218 |
-
#: C:\Users\
|
219 |
-
#: C:\Users\
|
220 |
-
#: C:\Users\
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
#: C:\Users\
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
#: C:\Users\
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
#: C:\Users\
|
234 |
-
msgid "
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
#: C:\Users\
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
#: C:\Users\
|
248 |
-
#: C:\Users\
|
249 |
-
#: C:\Users\
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
#: C:\Users\
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
#: C:\Users\
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
#: C:\Users\
|
286 |
-
#: C:\Users\
|
287 |
-
#: C:\Users\
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
#: C:\Users\
|
294 |
-
#: C:\Users\
|
295 |
-
#: C:\Users\
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
#: C:\Users\
|
301 |
-
#: C:\Users\
|
302 |
-
#: C:\Users\
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
#: C:\Users\
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
#: C:\Users\
|
315 |
-
#: C:\Users\
|
316 |
-
msgid "
|
317 |
-
msgstr "
|
318 |
-
|
319 |
-
# @ profilebuilder
|
320 |
-
#: C:\Users\
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
#: C:\Users\
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
#: C:\Users\
|
342 |
-
msgid "
|
343 |
-
msgstr "
|
344 |
-
|
345 |
-
# @ profilebuilder
|
346 |
-
#: C:\Users\
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
#: C:\Users\
|
378 |
-
#: C:\Users\
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
#: C:\Users\
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
#: C:\Users\
|
394 |
-
#: C:\Users\
|
395 |
-
#: C:\Users\
|
396 |
-
msgid "
|
397 |
-
msgstr "
|
398 |
-
|
399 |
-
# @ profilebuilder
|
400 |
-
#: C:\Users\
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
#: C:\Users\
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
#: C:\Users\
|
421 |
-
#: C:\Users\
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
#: C:\Users\
|
428 |
-
#: C:\Users\
|
429 |
-
msgid "
|
430 |
-
msgstr "
|
431 |
-
|
432 |
-
#: C:\Users\
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
#: C:\Users\
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
#: C:\Users\
|
480 |
-
msgid "
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
|
484 |
-
#: C:\Users\
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
#: C:\Users\
|
490 |
-
msgid "You
|
491 |
-
msgstr "
|
492 |
-
|
493 |
-
# @ profilebuilder
|
494 |
-
#: C:\Users\
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
#: C:\Users\
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
#: C:\Users\
|
522 |
-
|
523 |
-
msgid "
|
524 |
-
msgstr ""
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
#: C:\Users\
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
#: C:\Users\
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
#: C:\Users\
|
564 |
-
#,
|
565 |
-
msgid "
|
566 |
-
msgstr "
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
msgid "
|
600 |
-
msgstr "
|
601 |
-
|
602 |
-
#: C:\Users\
|
603 |
-
msgid "
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
#: C:\Users\
|
619 |
-
msgid "
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: C:\Users\
|
623 |
-
msgid "
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
# @ profilebuilder
|
627 |
-
#: C:\Users\
|
628 |
-
|
629 |
-
msgid "
|
630 |
-
msgstr "
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
msgstr "
|
637 |
-
|
638 |
-
#: C:\Users\
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
#: C:\Users\
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
#: C:\Users\
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
#: C:\Users\
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
#: C:\Users\
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
685 |
-
|
686 |
-
|
687 |
-
#: C:\Users\
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
msgid "You
|
703 |
-
msgstr "
|
704 |
-
|
705 |
-
# @ profilebuilder
|
706 |
-
#: C:\Users\
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
#: C:\Users\
|
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 |
-
#: C:\Users\
|
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 |
-
msgstr ""
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
#: C:\Users\
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
#: C:\Users\
|
787 |
-
#: C:\Users\
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
msgstr ""
|
795 |
-
|
796 |
-
#: C:\Users\
|
797 |
-
#: C:\Users\
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
#: C:\Users\
|
802 |
-
#: C:\Users\
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
#: C:\Users\
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
#: C:\Users\
|
820 |
-
msgid "
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
#: C:\Users\
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
#: C:\Users\
|
849 |
-
#: C:\Users\
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
#: C:\Users\
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
#: C:\Users\
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
#: C:\Users\
|
869 |
-
#: C:\Users\
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
#: C:\Users\
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
msgstr "
|
893 |
-
|
894 |
-
# @
|
895 |
-
#: C:\Users\
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
#: C:\Users\
|
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 |
-
# @ profilebuilder
|
929 |
-
#: C:\Users\
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
msgid "
|
962 |
-
msgstr "
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
msgstr "
|
995 |
-
|
996 |
-
# @ profilebuilder
|
997 |
-
#: C:\Users\
|
998 |
-
msgid "
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
msgstr ""
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
msgid "
|
1039 |
-
msgstr "
|
1040 |
-
|
1041 |
-
#: C:\Users\
|
1042 |
-
msgid "
|
1043 |
-
msgstr ""
|
1044 |
-
|
1045 |
-
#: C:\Users\
|
1046 |
-
msgid "
|
1047 |
-
msgstr ""
|
1048 |
-
|
1049 |
-
# @ profilebuilder
|
1050 |
-
#: C:\Users\
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
#: C:\Users\
|
1062 |
-
msgid "
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
msgid "
|
1082 |
-
msgstr ""
|
1083 |
-
|
1084 |
-
# @ profilebuilder
|
1085 |
-
#: C:\Users\
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
#: C:\Users\
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
#: C:\Users\
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
#: C:\Users\
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
#: C:\Users\
|
1104 |
-
msgid "
|
1105 |
-
msgstr "
|
1106 |
-
|
1107 |
-
# @ profilebuilder
|
1108 |
-
#: C:\Users\
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
#: C:\Users\
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
#: C:\Users\
|
1118 |
-
#: C:\Users\
|
1119 |
-
#: C:\Users\
|
1120 |
-
#: C:\Users\
|
1121 |
-
#: C:\Users\
|
1122 |
-
#: C:\Users\
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
#: C:\Users\
|
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 |
-
msgid "
|
1159 |
-
msgstr "
|
1160 |
-
|
1161 |
-
# @ profilebuilder
|
1162 |
-
#: C:\Users\
|
1163 |
-
msgid "
|
1164 |
-
msgstr "
|
1165 |
-
|
1166 |
-
# @ profilebuilder
|
1167 |
-
#: C:\Users\
|
1168 |
-
msgid "
|
1169 |
-
msgstr "
|
1170 |
-
|
1171 |
-
# @ profilebuilder
|
1172 |
-
#: C:\Users\
|
1173 |
-
msgid "
|
1174 |
-
msgstr "
|
1175 |
-
|
1176 |
-
# @ profilebuilder
|
1177 |
-
#: C:\Users\
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
msgid "
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
#: C:\Users\
|
1201 |
-
msgid "
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
#: C:\Users\
|
1207 |
-
msgid "
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
#: C:\Users\
|
1235 |
-
msgid "
|
1236 |
-
msgstr "
|
1237 |
-
|
1238 |
-
# @ profilebuilder
|
1239 |
-
#: C:\Users\
|
1240 |
-
#: C:\Users\
|
1241 |
-
#: C:\Users\
|
1242 |
-
msgid "
|
1243 |
-
msgstr "
|
1244 |
-
|
1245 |
-
# @ profilebuilder
|
1246 |
-
#: C:\Users\
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
#: C:\Users\
|
1280 |
-
msgid "
|
1281 |
-
msgstr "
|
1282 |
-
|
1283 |
-
#: C:\Users\
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
#: C:\Users\
|
1348 |
-
msgid "
|
1349 |
-
msgstr "
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
msgid "
|
1365 |
-
msgstr "
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
msgstr ""
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
#: C:\Users\
|
1383 |
-
msgid "
|
1384 |
-
msgstr ""
|
1385 |
-
|
1386 |
-
#: C:\Users\
|
1387 |
-
msgid "
|
1388 |
-
msgstr ""
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
msgid "
|
1422 |
-
msgstr "
|
1423 |
-
|
1424 |
-
#: C:\Users\
|
1425 |
-
msgid "
|
1426 |
-
msgstr ""
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
#: C:\Users\
|
1461 |
-
|
1462 |
-
msgid "
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
#: C:\Users\
|
1468 |
-
msgid "
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
msgid "
|
1479 |
-
msgstr "
|
1480 |
-
|
1481 |
-
|
1482 |
-
#: C:\Users\
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
#: C:\Users\
|
1488 |
-
msgid "
|
1489 |
-
msgstr ""
|
1490 |
-
|
1491 |
-
#: C:\Users\
|
1492 |
-
msgid "
|
1493 |
-
msgstr ""
|
1494 |
-
|
1495 |
-
#: C:\Users\
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
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 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
#: C:\Users\
|
1535 |
-
#: C:\Users\
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
#: C:\Users\
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
#: C:\Users\
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
#: C:\Users\
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
#: C:\Users\
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
#: C:\Users\
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
#: C:\Users\
|
1590 |
-
msgid "
|
1591 |
-
msgstr ""
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
#: C:\Users\
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
#: C:\Users\
|
1606 |
-
#: C:\Users\
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
#: C:\Users\
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
#: C:\Users\
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
#: C:\Users\
|
1637 |
-
msgid "
|
1638 |
-
msgstr ""
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
msgid "
|
1662 |
-
msgstr ""
|
1663 |
-
|
1664 |
-
# @ profilebuilder
|
1665 |
-
#: C:\Users\
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
#: C:\Users\
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
#: C:\Users\
|
1687 |
-
msgid "
|
1688 |
-
msgstr ""
|
1689 |
-
|
1690 |
-
#: C:\Users\
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
#: C:\Users\
|
1715 |
-
msgid "
|
1716 |
-
msgstr ""
|
1717 |
-
|
1718 |
-
#: C:\Users\
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
#: C:\Users\
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
#: C:\Users\
|
1740 |
-
msgid "
|
1741 |
-
msgstr ""
|
1742 |
-
|
1743 |
-
#: C:\Users\
|
1744 |
-
#: C:\Users\
|
1745 |
-
msgid "
|
1746 |
-
msgstr ""
|
1747 |
-
|
1748 |
-
#: C:\Users\
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
#: C:\Users\
|
1762 |
-
#: C:\Users\
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
|
1767 |
-
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
#: C:\Users\
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
#: C:\Users\
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
#: C:\Users\
|
1788 |
-
|
1789 |
-
|
1790 |
-
|
1791 |
-
|
1792 |
-
#: C:\Users\
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
#: C:\Users\
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
#: C:\Users\
|
1803 |
-
msgid "
|
1804 |
-
msgstr ""
|
1805 |
-
|
1806 |
-
#: C:\Users\
|
1807 |
-
|
1808 |
-
|
1809 |
-
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
msgstr ""
|
1830 |
-
|
1831 |
-
|
1832 |
-
|
1833 |
-
|
1834 |
-
|
1835 |
-
|
1836 |
-
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
#: C:\Users\
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
|
1855 |
-
#: C:\Users\
|
1856 |
-
msgid "
|
1857 |
-
msgstr ""
|
1858 |
-
|
1859 |
-
|
1860 |
-
#: C:\Users\
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
#: C:\Users\
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
#: C:\Users\
|
1878 |
-
msgid "
|
1879 |
-
msgstr ""
|
1880 |
-
|
1881 |
-
|
1882 |
-
#: C:\Users\
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
#: C:\Users\
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
#: C:\Users\
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
#: C:\Users\
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
|
1903 |
-
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
#: C:\Users\
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
#: C:\Users\
|
1924 |
-
msgid "the
|
1925 |
-
msgstr ""
|
1926 |
-
|
1927 |
-
#: C:\Users\
|
1928 |
-
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
|
1943 |
-
|
1944 |
-
#: C:\Users\
|
1945 |
-
msgid "
|
1946 |
-
msgstr ""
|
1947 |
-
|
1948 |
-
|
1949 |
-
#: C:\Users\
|
1950 |
-
msgid "
|
1951 |
-
msgstr ""
|
1952 |
-
|
1953 |
-
|
1954 |
-
#: C:\Users\
|
1955 |
-
msgid "
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
#: C:\Users\
|
1960 |
-
msgid "
|
1961 |
-
msgstr ""
|
1962 |
-
|
1963 |
-
#: C:\Users\
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
|
1968 |
-
#: C:\Users\
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
|
1995 |
-
|
1996 |
-
|
1997 |
-
|
1998 |
-
#: C:\Users\
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
#: C:\Users\
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
#: C:\Users\
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
#: C:\Users\
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
#: C:\Users\
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-12-11 15:08+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-12-11 15:08+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.4\n"
|
15 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
|
16 |
+
"pro\n"
|
17 |
+
|
18 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
20 |
+
msgid "The information size you were trying to submit was larger than"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
24 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
25 |
+
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
29 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
30 |
+
msgid "Since it was also larger than"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
34 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
35 |
+
msgid "no additional information is available."
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
# @ profilebuilder
|
39 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
|
40 |
+
msgid "You must be logged in to edit your profile."
|
41 |
+
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
42 |
+
|
43 |
+
# @ profilebuilder
|
44 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
|
45 |
+
msgid "The avatar was successfully deleted."
|
46 |
+
msgstr "Avatar byl úspěšně odstraněn."
|
47 |
+
|
48 |
+
# @ profilebuilder
|
49 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
50 |
+
#, fuzzy
|
51 |
+
msgid "The attachment"
|
52 |
+
msgstr "Příloha \""
|
53 |
+
|
54 |
+
# @ profilebuilder
|
55 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
56 |
+
#, fuzzy
|
57 |
+
msgid "was successfully deleted."
|
58 |
+
msgstr "\" byla úspěšně odstraněna."
|
59 |
+
|
60 |
+
# @ profilebuilder
|
61 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
|
62 |
+
msgid "The changes have been successfully saved."
|
63 |
+
msgstr "Změny byly úspěšně uloženy."
|
64 |
+
|
65 |
+
# @ profilebuilder
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
67 |
+
#, fuzzy
|
68 |
+
msgid ""
|
69 |
+
"The email address you entered is already registered to a different user."
|
70 |
+
msgstr ""
|
71 |
+
"Zadaný e-mail má již zaregistrován jiný uživatel. <br/> E-mailová adresa"
|
72 |
+
|
73 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
74 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
75 |
+
msgid "The email address was"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
# @ profilebuilder
|
79 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
80 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
81 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
82 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
83 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
84 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
85 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
86 |
+
msgid "NOT"
|
87 |
+
msgstr "NEBYLA"
|
88 |
+
|
89 |
+
# @ profilebuilder
|
90 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
91 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
92 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
93 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
94 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
95 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
96 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
97 |
+
#, fuzzy
|
98 |
+
msgid "updated along with the rest of the information."
|
99 |
+
msgstr " aktualizována spolu s ostatními informacemi."
|
100 |
+
|
101 |
+
# @ profilebuilder
|
102 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
103 |
+
#, fuzzy
|
104 |
+
msgid "The email address you entered is invalid."
|
105 |
+
msgstr "Zadaný e-mail není platný. <br/> Adresa "
|
106 |
+
|
107 |
+
# @ profilebuilder
|
108 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
109 |
+
#, fuzzy
|
110 |
+
msgid "The passwords you entered do not match."
|
111 |
+
msgstr "Zadaná hesla se neshodují. <br/> Zadané heslo "
|
112 |
+
|
113 |
+
# @ profilebuilder
|
114 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
115 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
116 |
+
#, fuzzy
|
117 |
+
msgid "The password was"
|
118 |
+
msgstr "Nové heslo"
|
119 |
+
|
120 |
+
# @ profilebuilder
|
121 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
122 |
+
#, fuzzy
|
123 |
+
msgid "You didn't complete both password fields."
|
124 |
+
msgstr "Nebyla vyplněna obě pole hesla."
|
125 |
+
|
126 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
127 |
+
msgid "Your profile was NOT updated!"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
# @ profilebuilder
|
131 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
|
132 |
+
#, fuzzy
|
133 |
+
msgid "There was an error while trying to upload the following attachments:"
|
134 |
+
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
135 |
+
|
136 |
+
# @ profilebuilder
|
137 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
138 |
+
#, fuzzy
|
139 |
+
msgid "Possible cause: the size was bigger than"
|
140 |
+
msgstr "<br/> Možná příčina: velikost byla větší než "
|
141 |
+
|
142 |
+
# @ profilebuilder
|
143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
144 |
+
#, fuzzy
|
145 |
+
msgid "The listed attachements were"
|
146 |
+
msgstr "B. <br/> Příloha (přílohy) "
|
147 |
+
|
148 |
+
# @ profilebuilder
|
149 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
150 |
+
#, fuzzy
|
151 |
+
msgid "There was an error while trying to upload your avatar picture."
|
152 |
+
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
153 |
+
|
154 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
155 |
+
msgid "Possible cause: size/incorrect file-type."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
159 |
+
msgid "The avatar was"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
# @ profilebuilder
|
163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
164 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
165 |
+
#, fuzzy
|
166 |
+
msgid "There was an error while trying to upload the following attachment(s)"
|
167 |
+
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
168 |
+
|
169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
170 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
171 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
175 |
+
msgid "This file was"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
# @ profilebuilder
|
179 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
180 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
181 |
+
msgid "Name"
|
182 |
+
msgstr "Jméno"
|
183 |
+
|
184 |
+
# @ profilebuilder
|
185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:150
|
187 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:497
|
191 |
+
msgid "Username"
|
192 |
+
msgstr "Uživatelské jméno"
|
193 |
+
|
194 |
+
# @ default
|
195 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
|
196 |
+
#, fuzzy
|
197 |
+
msgid "Usernames cannot be changed."
|
198 |
+
msgstr "Uživatelská jména nelze měnit."
|
199 |
+
|
200 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
|
201 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
|
202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
|
203 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
|
204 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
|
205 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
|
206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
|
207 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
|
208 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
|
209 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
|
210 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
211 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
212 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:297
|
214 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:362
|
215 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:428
|
216 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:482
|
217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:530
|
218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:593
|
219 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:702
|
220 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
|
221 |
+
msgid "This field is marked as required by the administrator."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
|
225 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
|
226 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
|
227 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
|
228 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
|
229 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
|
230 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
|
231 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
|
232 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
|
233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
|
234 |
+
msgid ""
|
235 |
+
"This field wasn't updated because you entered and empty string (It was "
|
236 |
+
"marked as required by the administrator."
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
# @ profilebuilder
|
240 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
241 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
242 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
243 |
+
msgid "First Name"
|
244 |
+
msgstr "Křestní jméno"
|
245 |
+
|
246 |
+
# @ profilebuilder
|
247 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
248 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
249 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
250 |
+
msgid "Last Name"
|
251 |
+
msgstr "Příjmení"
|
252 |
+
|
253 |
+
# @ profilebuilder
|
254 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
255 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
256 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
257 |
+
msgid "Nickname"
|
258 |
+
msgstr "Přezdívka"
|
259 |
+
|
260 |
+
# @ profilebuilder
|
261 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
|
262 |
+
msgid "Display name publicly as"
|
263 |
+
msgstr "Veřejně zobrazovat jako"
|
264 |
+
|
265 |
+
# @ profilebuilder
|
266 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
267 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
268 |
+
msgid "Contact Info"
|
269 |
+
msgstr "Kontaktní informace"
|
270 |
+
|
271 |
+
# @ profilebuilder
|
272 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
273 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
274 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
275 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
276 |
+
msgid "E-mail"
|
277 |
+
msgstr "E-mail"
|
278 |
+
|
279 |
+
# @ profilebuilder
|
280 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
|
281 |
+
msgid "(required)"
|
282 |
+
msgstr "(vyžadováno)"
|
283 |
+
|
284 |
+
# @ profilebuilder
|
285 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
286 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
287 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
288 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:539
|
289 |
+
msgid "Website"
|
290 |
+
msgstr "Web"
|
291 |
+
|
292 |
+
# @ profilebuilder
|
293 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
294 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
295 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
296 |
+
msgid "AIM"
|
297 |
+
msgstr "AIM (AOL Instant Messenger)"
|
298 |
+
|
299 |
+
# @ profilebuilder
|
300 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
301 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
302 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
303 |
+
msgid "Yahoo IM"
|
304 |
+
msgstr "Yahoo IM"
|
305 |
+
|
306 |
+
# @ profilebuilder
|
307 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
308 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
309 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
310 |
+
msgid "Jabber / Google Talk"
|
311 |
+
msgstr "Jabber / Google Talk"
|
312 |
+
|
313 |
+
# @ profilebuilder
|
314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
315 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
316 |
+
msgid "About Yourself"
|
317 |
+
msgstr "O vás"
|
318 |
+
|
319 |
+
# @ profilebuilder
|
320 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
321 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
322 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:545
|
324 |
+
msgid "Biographical Info"
|
325 |
+
msgstr "Osobní informace"
|
326 |
+
|
327 |
+
# @ profilebuilder
|
328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
329 |
+
msgid "New Password"
|
330 |
+
msgstr "Nové heslo"
|
331 |
+
|
332 |
+
# @ profilebuilder
|
333 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
335 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
336 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
337 |
+
msgid "Repeat Password"
|
338 |
+
msgstr "Heslo ještě jednou"
|
339 |
+
|
340 |
+
# @ profilebuilder
|
341 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
|
342 |
+
msgid "Update"
|
343 |
+
msgstr "Aktualizovat"
|
344 |
+
|
345 |
+
# @ profilebuilder
|
346 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:45
|
347 |
+
#, fuzzy
|
348 |
+
msgid "You are currently logged in as"
|
349 |
+
msgstr "Jste přihlášeni jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
350 |
+
|
351 |
+
# @ profilebuilder
|
352 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:46
|
353 |
+
msgid "Log out of this account"
|
354 |
+
msgstr "Odhlásit se"
|
355 |
+
|
356 |
+
# @ profilebuilder
|
357 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:46
|
358 |
+
#, fuzzy
|
359 |
+
msgid "Log out"
|
360 |
+
msgstr "Odhlásit se »"
|
361 |
+
|
362 |
+
# @ profilebuilder
|
363 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:64
|
364 |
+
#, fuzzy
|
365 |
+
msgid "You have successfully logged in as"
|
366 |
+
msgstr "Úspěšné přihlášení jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
367 |
+
|
368 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:91
|
369 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:105
|
370 |
+
msgid ""
|
371 |
+
"You will soon be redirected automatically. If you see this page for more "
|
372 |
+
"than 1 second, please click"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:91
|
376 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:105
|
377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
378 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
379 |
+
msgid "here"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:123
|
383 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
384 |
+
msgid "ERROR:"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:123
|
388 |
+
msgid "The username field is empty"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
# @ profilebuilder
|
392 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
|
393 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
394 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
395 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
396 |
+
msgid "Password"
|
397 |
+
msgstr "Heslo"
|
398 |
+
|
399 |
+
# @ profilebuilder
|
400 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:166
|
401 |
+
msgid "Log in"
|
402 |
+
msgstr "Přihlásit se"
|
403 |
+
|
404 |
+
# @ profilebuilder
|
405 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
|
406 |
+
msgid "Remember me"
|
407 |
+
msgstr "Pamatovat si mě"
|
408 |
+
|
409 |
+
# @ profilebuilder
|
410 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
411 |
+
msgid "Lost password?"
|
412 |
+
msgstr "Zapomněli jste heslo?"
|
413 |
+
|
414 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
415 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
417 |
+
msgid "ERROR"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
421 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
422 |
+
msgid ""
|
423 |
+
"Your account has to be confirmed by an administrator before you can use the "
|
424 |
+
"\"Password Reset\" feature."
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
429 |
+
msgid "A password reset email has been sent to "
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
433 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
434 |
+
msgid "Following the link sent in the email address will reset the password."
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
439 |
+
msgid ""
|
440 |
+
"Someone requested that the password be reset for the following account: "
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
444 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
445 |
+
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
449 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
450 |
+
msgid "To reset your password, visit the following link:"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
454 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
455 |
+
msgid "Password Reset Feature from"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
# @ profilebuilder
|
459 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
460 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
461 |
+
#, fuzzy
|
462 |
+
msgid "There was an error while trying to send the activation link to "
|
463 |
+
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
464 |
+
|
465 |
+
# @ profilebuilder
|
466 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
467 |
+
#, fuzzy
|
468 |
+
msgid "The email address entered wasn't found in the database!"
|
469 |
+
msgstr "Zadaný e-mail není platný. <br/> Adresa "
|
470 |
+
|
471 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
472 |
+
msgid "Please check that you entered the correct email address."
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
476 |
+
msgid "The username entered wasn't found in the database!"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
480 |
+
msgid "Please check that you entered the correct username."
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
# @ profilebuilder
|
484 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
485 |
+
#, fuzzy
|
486 |
+
msgid "Your password has been successfully changed!"
|
487 |
+
msgstr "Změny byly úspěšně uloženy."
|
488 |
+
|
489 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
490 |
+
msgid "You have successfully reset your password to:"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
# @ profilebuilder
|
494 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
495 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
496 |
+
#, fuzzy
|
497 |
+
msgid "Password Successfully Reset for"
|
498 |
+
msgstr "\" byla úspěšně odstraněna."
|
499 |
+
|
500 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
501 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
502 |
+
msgid "from"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
506 |
+
msgid "has requested a password change via the password reset feature."
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
510 |
+
msgid "His/her new password is:"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
# @ profilebuilder
|
514 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
515 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
516 |
+
msgid "The entered passwords don't match!"
|
517 |
+
msgstr "Zadaná hesla se neshodují."
|
518 |
+
|
519 |
+
# @ profilebuilder
|
520 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
521 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
522 |
+
#, fuzzy
|
523 |
+
msgid "Reset Password"
|
524 |
+
msgstr "Heslo ještě jednou"
|
525 |
+
|
526 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
527 |
+
msgid "Invalid key!"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
# @ profilebuilder
|
531 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
532 |
+
#, fuzzy
|
533 |
+
msgid "Please enter your username or email address."
|
534 |
+
msgstr "Musíte zadat platnou e-mailovou adresu."
|
535 |
+
|
536 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
537 |
+
msgid "You will receive a link to create a new password via email."
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
# @ profilebuilder
|
541 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
542 |
+
#, fuzzy
|
543 |
+
msgid "Username or E-mail"
|
544 |
+
msgstr "Uživatelské jméno"
|
545 |
+
|
546 |
+
# @ profilebuilder
|
547 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
548 |
+
#, fuzzy
|
549 |
+
msgid "Get New Password"
|
550 |
+
msgstr "Nové heslo"
|
551 |
+
|
552 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
553 |
+
#, php-format
|
554 |
+
msgid ""
|
555 |
+
"To activate your user, please click the following link:\n"
|
556 |
+
"\n"
|
557 |
+
"%s%s%s\n"
|
558 |
+
"\n"
|
559 |
+
"After you activate, you will receive *another email* with your login.\n"
|
560 |
+
"\n"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
564 |
+
#, php-format
|
565 |
+
msgid "[%1$s] Activate %2$s"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
569 |
+
msgid "Invalid activation key!"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
573 |
+
msgid "The user is already active!"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
577 |
+
msgid "Could not create user!"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
# @ profilebuilder
|
581 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
582 |
+
#, fuzzy
|
583 |
+
msgid "That username is already activated!"
|
584 |
+
msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
|
585 |
+
|
586 |
+
# @ profilebuilder
|
587 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
588 |
+
#, fuzzy
|
589 |
+
msgid "The user was successfully activated."
|
590 |
+
msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
|
591 |
+
|
592 |
+
# @ profilebuilder
|
593 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
594 |
+
#, fuzzy
|
595 |
+
msgid "There was an error while trying to activate the user."
|
596 |
+
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
597 |
+
|
598 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
599 |
+
msgid "New subscriber on"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
603 |
+
msgid ""
|
604 |
+
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
605 |
+
"please remember that you need to approve this user before he/she can log in!"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
609 |
+
msgid "A new subscriber has (been) registered!"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
# @ profilebuilder
|
613 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
614 |
+
#, fuzzy
|
615 |
+
msgid "A new account has been created for you."
|
616 |
+
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
617 |
+
|
618 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
619 |
+
msgid "Welcome to"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
623 |
+
msgid "Your username is:"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
# @ profilebuilder
|
627 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
628 |
+
#, fuzzy
|
629 |
+
msgid "and password:"
|
630 |
+
msgstr "Heslo"
|
631 |
+
|
632 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
633 |
+
msgid ""
|
634 |
+
"Before you can access your account, an administrator needs to approve it. "
|
635 |
+
"You will be notified via email."
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
639 |
+
msgid "The user was NOT created!"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
# @ profilebuilder
|
643 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
644 |
+
msgid "A username is required for registration."
|
645 |
+
msgstr "Uživatelské jméno je nutné pro registraci."
|
646 |
+
|
647 |
+
# @ profilebuilder
|
648 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
649 |
+
msgid "Sorry, that username already exists!"
|
650 |
+
msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
|
651 |
+
|
652 |
+
# @ profilebuilder
|
653 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
654 |
+
msgid "You must enter a valid email address."
|
655 |
+
msgstr "Musíte zadat platnou e-mailovou adresu."
|
656 |
+
|
657 |
+
# @ profilebuilder
|
658 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
659 |
+
msgid "Sorry, that email address is already used!"
|
660 |
+
msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
|
661 |
+
|
662 |
+
# @ profilebuilder
|
663 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
664 |
+
msgid "You didn't complete one of the password-fields!"
|
665 |
+
msgstr "Nebyla vyplněna obě pole hesla."
|
666 |
+
|
667 |
+
# @ profilebuilder
|
668 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
669 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
670 |
+
#, fuzzy
|
671 |
+
msgid "The account was NOT created!"
|
672 |
+
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
673 |
+
|
674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
675 |
+
msgid "You must agree to the terms and conditions before registering!"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
679 |
+
msgid "(Several required fields were left uncompleted)"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
683 |
+
msgid "This username is already reserved to be used soon."
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
687 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
688 |
+
msgid "Please try a different one!"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
# @ profilebuilder
|
692 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
693 |
+
#, fuzzy
|
694 |
+
msgid "This email address is already reserved to be used soon."
|
695 |
+
msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
|
696 |
+
|
697 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
698 |
+
msgid "You are logged in as"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
702 |
+
msgid "You don't need another account."
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
# @ profilebuilder
|
706 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
707 |
+
#, fuzzy
|
708 |
+
msgid "Log out of this account."
|
709 |
+
msgstr "Odhlásit se"
|
710 |
+
|
711 |
+
# @ profilebuilder
|
712 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
713 |
+
#, fuzzy
|
714 |
+
msgid "Logout"
|
715 |
+
msgstr "Odhlásit se »"
|
716 |
+
|
717 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1169
|
718 |
+
msgid "An email has been sent to "
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1169
|
722 |
+
msgid "with information on how to activate his/her account"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
# @ profilebuilder
|
726 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1174
|
727 |
+
#, fuzzy
|
728 |
+
msgid "A user account has been created for"
|
729 |
+
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
730 |
+
|
731 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
732 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
733 |
+
msgid ""
|
734 |
+
"You will soon be redirected automatically. If you see this page for more "
|
735 |
+
"than 3 seconds, please click"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
739 |
+
msgid ""
|
740 |
+
"An email has been sent to you with information on how to activate your "
|
741 |
+
"account"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
# @ profilebuilder
|
745 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
746 |
+
#, fuzzy
|
747 |
+
msgid "Thank you for registering"
|
748 |
+
msgstr "Děkujeme za registraci, %1$s."
|
749 |
+
|
750 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
751 |
+
msgid "An error occured while trying to send the notification email."
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
755 |
+
msgid "An email containing activation instructions was successfully sent."
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
759 |
+
msgid "An email containing the username and password was successfully sent."
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
# @ profilebuilder
|
763 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
764 |
+
msgid "Users can register themselves or you can manually create users here."
|
765 |
+
msgstr ""
|
766 |
+
"Uživatelé se mohou zaregistrovat sami, případně můžete manuálně vytvářet "
|
767 |
+
"uživatele zde."
|
768 |
+
|
769 |
+
# @ profilebuilder
|
770 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
771 |
+
msgid ""
|
772 |
+
"Users cannot currently register themselves, but you can manually create "
|
773 |
+
"users here."
|
774 |
+
msgstr ""
|
775 |
+
"Uživatelé se nemohou sami zaregistrovat, ale můžete je ručně vytvářet zde."
|
776 |
+
|
777 |
+
# @ profilebuilder
|
778 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
779 |
+
msgid "Only an administrator can add new users."
|
780 |
+
msgstr "Pouze administrátor může přidávat nové uživatele."
|
781 |
+
|
782 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
783 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
784 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
785 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
786 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
787 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
788 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
789 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
790 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
791 |
+
msgid ""
|
792 |
+
"This field must be filled out before registering (It was marked as required "
|
793 |
+
"by the administrator)"
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
797 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
798 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
799 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
800 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
801 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
802 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
803 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
804 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
805 |
+
msgid "This field is marked as required by the administrator"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
809 |
+
msgid "Anti-Spam"
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
# @ profilebuilder
|
813 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
814 |
+
#, fuzzy
|
815 |
+
msgid "Send these credentials via email."
|
816 |
+
msgstr "Odeslat tyto přihlašovací údaje e-mailem."
|
817 |
+
|
818 |
+
# @ profilebuilder
|
819 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
820 |
+
msgid "Add User"
|
821 |
+
msgstr "Přidat uživatele"
|
822 |
+
|
823 |
+
# @ profilebuilder
|
824 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
825 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
826 |
+
msgid "Register"
|
827 |
+
msgstr "Registrovat"
|
828 |
+
|
829 |
+
# @ profilebuilder
|
830 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
|
831 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
|
832 |
+
msgid "Show/Hide the Admin Bar on Front End"
|
833 |
+
msgstr "Administrační lišta ve front-endu"
|
834 |
+
|
835 |
+
# @ profilebuilder
|
836 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
|
837 |
+
msgid "User-group"
|
838 |
+
msgstr "Skupina"
|
839 |
+
|
840 |
+
# @ profilebuilder
|
841 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
|
842 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
|
843 |
+
msgid "Visibility"
|
844 |
+
msgstr "Viditelnost"
|
845 |
+
|
846 |
+
# @ profilebuilder
|
847 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:28
|
848 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
849 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
850 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
851 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
|
852 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
|
853 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
|
854 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
|
855 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
|
856 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
|
857 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
|
858 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
|
859 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
|
860 |
+
msgid "Show"
|
861 |
+
msgstr "Zobrazit"
|
862 |
+
|
863 |
+
# @ profilebuilder
|
864 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:29
|
865 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
866 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
867 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
868 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
|
869 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
|
870 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
|
871 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
|
872 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
|
873 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
|
874 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
|
875 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
|
876 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
|
877 |
+
msgid "Hide"
|
878 |
+
msgstr "Skrýt"
|
879 |
+
|
880 |
+
# @ profilebuilder
|
881 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:40
|
882 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
883 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
884 |
+
msgid "NOTE:"
|
885 |
+
msgstr "POZNÁMKA:"
|
886 |
+
|
887 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:41
|
888 |
+
msgid ""
|
889 |
+
"If you added new roles (via another plugin) <u>after</u> Profile Builder was "
|
890 |
+
"activated, please reactivate it, since the roles are initialized during "
|
891 |
+
"plugin activation."
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
# @ default
|
895 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:48
|
896 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
897 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
898 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
899 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
900 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
901 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:369
|
902 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
903 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
904 |
+
msgid "Save Changes"
|
905 |
+
msgstr "Uložit změny"
|
906 |
+
|
907 |
+
# @ profilebuilder
|
908 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
|
909 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
|
910 |
+
msgid "Profile Builder"
|
911 |
+
msgstr "Profile Builder"
|
912 |
+
|
913 |
+
# @ profilebuilder
|
914 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
|
915 |
+
msgid "Welcome to Profile Builder!"
|
916 |
+
msgstr "Vítá vás Profile Builder!"
|
917 |
+
|
918 |
+
# @ profilebuilder
|
919 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
|
920 |
+
msgid ""
|
921 |
+
" lets you customize your website by adding a front-end menu for all your "
|
922 |
+
"users, giving them a more flexible way to modify their user-information or "
|
923 |
+
"to register new users."
|
924 |
+
msgstr ""
|
925 |
+
" umožňuje přidat front-end menu pro všechny uživatele vašeho webu. To "
|
926 |
+
"usnadňuje úpravu profilu a zjednodušuje registraci nových uživatelů."
|
927 |
+
|
928 |
+
# @ profilebuilder
|
929 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
|
930 |
+
msgid ""
|
931 |
+
"Also, grants users with administrator rights to customize basic fields or to "
|
932 |
+
"add new ones."
|
933 |
+
msgstr ""
|
934 |
+
"Uživatelé s administrátorskými právy mohou upravovat stávající pole v "
|
935 |
+
"profilu a vytvářet nová."
|
936 |
+
|
937 |
+
# @ profilebuilder
|
938 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
|
939 |
+
msgid ""
|
940 |
+
"To achieve this, just create a new page, and give it an intuitive name(e.g. "
|
941 |
+
"Edit Profile)."
|
942 |
+
msgstr ""
|
943 |
+
"Pro úpravu profilu přímo na webu (ne v administraci) stačí vytvořit novu "
|
944 |
+
"Stránku (a pojmenovat ji například Upravit profil)."
|
945 |
+
|
946 |
+
# @ profilebuilder
|
947 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
|
948 |
+
msgid ""
|
949 |
+
"Now all you need to do is add the following shortcode(for the previous "
|
950 |
+
"example): "
|
951 |
+
msgstr ""
|
952 |
+
"Do vytvořené stránky (nebo widgetu) pak stačí umístit následující kód: "
|
953 |
+
|
954 |
+
# @ profilebuilder
|
955 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
|
956 |
+
msgid "Publish your page and you are ready to go!"
|
957 |
+
msgstr "Nyní vytvořenou stránku publikujte a jste hotovi."
|
958 |
+
|
959 |
+
# @ profilebuilder
|
960 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
|
961 |
+
msgid "You can use the following shortcodes:"
|
962 |
+
msgstr "K dispozici jsou následující kódy:"
|
963 |
+
|
964 |
+
# @ profilebuilder
|
965 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
|
966 |
+
msgid "for a log-in form."
|
967 |
+
msgstr " pro přihlašovací formulář."
|
968 |
+
|
969 |
+
# @ profilebuilder
|
970 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
|
971 |
+
msgid "to add a registration form."
|
972 |
+
msgstr " pro registrační formulář."
|
973 |
+
|
974 |
+
# @ profilebuilder
|
975 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
|
976 |
+
msgid ""
|
977 |
+
"to grant users a front-end acces to their personal information(requires user "
|
978 |
+
"to be logged in)."
|
979 |
+
msgstr ""
|
980 |
+
"pro poskytnutí přístupu k vlastnímu profilu (pouze pro přihlášené uživatele)."
|
981 |
+
|
982 |
+
# @ profilebuilder
|
983 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
|
984 |
+
#, fuzzy
|
985 |
+
msgid "to add a password recovery form."
|
986 |
+
msgstr " pro registrační formulář."
|
987 |
+
|
988 |
+
# @ profilebuilder
|
989 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
|
990 |
+
#, fuzzy
|
991 |
+
msgid ""
|
992 |
+
"With the <strong>Pro</strong> version, users with administrator rights have "
|
993 |
+
"access to the following features:"
|
994 |
+
msgstr "Uživatelé s administrátorskými právy mohou také:"
|
995 |
+
|
996 |
+
# @ profilebuilder
|
997 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
|
998 |
+
msgid ""
|
999 |
+
"add a custom stylesheet/inherit values from the current theme or use one of "
|
1000 |
+
"the following built into this plugin: default, white or black."
|
1001 |
+
msgstr ""
|
1002 |
+
"přidat/zahrnout vlastní CSS styl z aktuální šablony nebo použít některý ze "
|
1003 |
+
"stylů Profile Builder (výchozí, bílý, černý)."
|
1004 |
+
|
1005 |
+
# @ profilebuilder
|
1006 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
|
1007 |
+
msgid ""
|
1008 |
+
"select whether to display or not the admin bar in the front end for a "
|
1009 |
+
"specific user-group registered to the site."
|
1010 |
+
msgstr ""
|
1011 |
+
"zvolit, zda zobrazovat administrační menu ve front-endu - v závislosti na "
|
1012 |
+
"uživatelské skupině."
|
1013 |
+
|
1014 |
+
# @ profilebuilder
|
1015 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
|
1016 |
+
msgid ""
|
1017 |
+
"select which information-field can users see/modify. The hidden fields' "
|
1018 |
+
"values remain unmodified."
|
1019 |
+
msgstr ""
|
1020 |
+
"určit, která pole mohou uživatelé vidět/upravovat. Obsah skrytých polí "
|
1021 |
+
"zůstane beze změny."
|
1022 |
+
|
1023 |
+
# @ profilebuilder
|
1024 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
|
1025 |
+
msgid ""
|
1026 |
+
"add custom fields to the existing ones, with several types to choose from: "
|
1027 |
+
"heading, text, textarea, select, checkbox, radio, and/or upload."
|
1028 |
+
msgstr ""
|
1029 |
+
"přidat další uživatelská pole k již existujícím polím profilu. K dispozici "
|
1030 |
+
"jsou typy polí: nadpis, text, textarea, select, check-box, radio a upload."
|
1031 |
+
|
1032 |
+
# @ profilebuilder
|
1033 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
|
1034 |
+
msgid "add an avatar field."
|
1035 |
+
msgstr "přidat pole pro avatar."
|
1036 |
+
|
1037 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
|
1038 |
+
msgid "create custom redirects."
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
|
1042 |
+
msgid "front-end userlisting using the"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
|
1046 |
+
msgid "shortcode."
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
# @ profilebuilder
|
1050 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
1051 |
+
msgid "this plugin only adds/removes fields in the front-end."
|
1052 |
+
msgstr "tento plugin pouze přidává/odstraňuje pole ve front-endu."
|
1053 |
+
|
1054 |
+
# @ profilebuilder
|
1055 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
|
1056 |
+
msgid ""
|
1057 |
+
"The default information-fields will still be visible(and thus modifiable)"
|
1058 |
+
msgstr "Výchozí pole budou i nadále dostupná (včetně možnosti úprav)"
|
1059 |
+
|
1060 |
+
# @ profilebuilder
|
1061 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
|
1062 |
+
msgid ""
|
1063 |
+
"from the back-end, while custom fields will only be visible in the front-end."
|
1064 |
+
msgstr "v administraci. Vlastní pole budou přístupná ve front-endu (na webu)."
|
1065 |
+
|
1066 |
+
# @ profilebuilder
|
1067 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
|
1068 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
|
1069 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
|
1070 |
+
msgid "Default Profile Fields"
|
1071 |
+
msgstr "Výchozí pole profilu"
|
1072 |
+
|
1073 |
+
# @ profilebuilder
|
1074 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
|
1075 |
+
msgid "Input Field Name"
|
1076 |
+
msgstr "Název pole"
|
1077 |
+
|
1078 |
+
# @ profilebuilder
|
1079 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
|
1080 |
+
#, fuzzy
|
1081 |
+
msgid "Required"
|
1082 |
+
msgstr "(vyžadováno)"
|
1083 |
+
|
1084 |
+
# @ profilebuilder
|
1085 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
|
1086 |
+
msgid "Name:"
|
1087 |
+
msgstr "Jméno:"
|
1088 |
+
|
1089 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
|
1090 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
|
1091 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
|
1092 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
|
1093 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
|
1094 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
|
1095 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
|
1096 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
|
1097 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
|
1098 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
|
1099 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
|
1100 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
1101 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
1102 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
1103 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1104 |
+
msgid "Yes"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
# @ profilebuilder
|
1108 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
|
1109 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
|
1110 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
|
1111 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
|
1112 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
|
1113 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
|
1114 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
|
1115 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
|
1116 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:148
|
1117 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:161
|
1118 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:180
|
1119 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1120 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1121 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1122 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1123 |
+
#, fuzzy
|
1124 |
+
msgid "No"
|
1125 |
+
msgstr "Žádný"
|
1126 |
+
|
1127 |
+
# @ profilebuilder
|
1128 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
|
1129 |
+
msgid "Display name publicly as..."
|
1130 |
+
msgstr "Veřejně zobrazovat jako..."
|
1131 |
+
|
1132 |
+
# @ profilebuilder
|
1133 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
|
1134 |
+
msgid "Contact Info:"
|
1135 |
+
msgstr "Kontaktní informace:"
|
1136 |
+
|
1137 |
+
# @ profilebuilder
|
1138 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
|
1139 |
+
msgid "About Yourself:"
|
1140 |
+
msgstr "O vás:"
|
1141 |
+
|
1142 |
+
# @ profilebuilder
|
1143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
|
1144 |
+
#, fuzzy
|
1145 |
+
msgid "(New) Password"
|
1146 |
+
msgstr "Nové heslo"
|
1147 |
+
|
1148 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1149 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1150 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:37
|
1152 |
+
msgid "General Settings"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
# @ profilebuilder
|
1156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:12
|
1157 |
+
#, fuzzy
|
1158 |
+
msgid "Stylesheet Used on the Front-End:"
|
1159 |
+
msgstr "CSS styl:"
|
1160 |
+
|
1161 |
+
# @ profilebuilder
|
1162 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
1163 |
+
msgid "Default"
|
1164 |
+
msgstr "Výchozí"
|
1165 |
+
|
1166 |
+
# @ profilebuilder
|
1167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1168 |
+
msgid "White"
|
1169 |
+
msgstr "Bílý"
|
1170 |
+
|
1171 |
+
# @ profilebuilder
|
1172 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:19
|
1173 |
+
msgid "Black"
|
1174 |
+
msgstr "Černý"
|
1175 |
+
|
1176 |
+
# @ profilebuilder
|
1177 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:23
|
1178 |
+
msgid "None"
|
1179 |
+
msgstr "Žádný"
|
1180 |
+
|
1181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:29
|
1182 |
+
msgid "\"Email Confirmation\" Feature Activated:"
|
1183 |
+
msgstr ""
|
1184 |
+
|
1185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:39
|
1186 |
+
msgid "\"Admin Approval\" Feature Activated:"
|
1187 |
+
msgstr ""
|
1188 |
+
|
1189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:48
|
1190 |
+
msgid ""
|
1191 |
+
"The black stylesheet is intended for sites/blogs with a dark background."
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:49
|
1195 |
+
msgid ""
|
1196 |
+
"The white stylesheet is intended for a sites/blogs with a light background "
|
1197 |
+
"color."
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:50
|
1201 |
+
msgid ""
|
1202 |
+
"On single-site installations the \"Email Confirmation\" feature only works "
|
1203 |
+
"in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1207 |
+
msgid ""
|
1208 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1209 |
+
"Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-"
|
1210 |
+
"profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive "
|
1211 |
+
"access to automatic updates and support. Need a license key? <a href='http://"
|
1212 |
+
"www.cozmoslabs.com/wordpress-profile-builder/?"
|
1213 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' "
|
1214 |
+
"class='button-primary'>Purchase one now</a>"
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1218 |
+
msgid ""
|
1219 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please <a "
|
1220 |
+
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1221 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</"
|
1222 |
+
"a> to receive access to automatic updates and priority support. <a "
|
1223 |
+
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1224 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' "
|
1225 |
+
"class='button-primary'>Purchase one now</a>"
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
# @ profilebuilder
|
1229 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1230 |
+
msgid "Basic Information"
|
1231 |
+
msgstr "Základní informace"
|
1232 |
+
|
1233 |
+
# @ profilebuilder
|
1234 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
|
1235 |
+
msgid "Show/Hide the Admin Bar on Front-end"
|
1236 |
+
msgstr "Zobrazit/skrýt administrační lištu ve front-endu"
|
1237 |
+
|
1238 |
+
# @ profilebuilder
|
1239 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
|
1240 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
|
1241 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
|
1242 |
+
msgid "Extra Profile Fields"
|
1243 |
+
msgstr "Vlastní pole profilu"
|
1244 |
+
|
1245 |
+
# @ profilebuilder
|
1246 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
|
1247 |
+
#, fuzzy
|
1248 |
+
msgid "Addons"
|
1249 |
+
msgstr "Přidat volbu"
|
1250 |
+
|
1251 |
+
# @ profilebuilder
|
1252 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
|
1253 |
+
msgid "Register Your Version"
|
1254 |
+
msgstr "Registrace"
|
1255 |
+
|
1256 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
|
1257 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
|
1258 |
+
msgid "Activate/Deactivate Addons"
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
# @ profilebuilder
|
1262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:14
|
1263 |
+
#, fuzzy
|
1264 |
+
msgid "Name/Description"
|
1265 |
+
msgstr "Popis:"
|
1266 |
+
|
1267 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:15
|
1268 |
+
msgid "Status"
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:20
|
1272 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:30
|
1273 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:31
|
1274 |
+
msgid "User-Listing"
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:22
|
1278 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
|
1279 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
|
1280 |
+
msgid "Active"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
|
1284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
|
1285 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
|
1286 |
+
msgid "Inactive"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1290 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1291 |
+
msgid "Custom Redirects"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:34
|
1295 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:255
|
1296 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:256
|
1297 |
+
msgid "reCAPTCHA"
|
1298 |
+
msgstr ""
|
1299 |
+
|
1300 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1301 |
+
msgid "Redirects on custom page requests:"
|
1302 |
+
msgstr ""
|
1303 |
+
|
1304 |
+
# @ profilebuilder
|
1305 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1306 |
+
#, fuzzy
|
1307 |
+
msgid "Action"
|
1308 |
+
msgstr "Přidat volbu"
|
1309 |
+
|
1310 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1311 |
+
msgid "Redirect"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1315 |
+
msgid "URL"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1319 |
+
msgid "After Registration:"
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1323 |
+
msgid "After Login:"
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
# @ profilebuilder
|
1327 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1328 |
+
#, fuzzy
|
1329 |
+
msgid "Recover Password (*)"
|
1330 |
+
msgstr "Heslo ještě jednou"
|
1331 |
+
|
1332 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1333 |
+
msgid ""
|
1334 |
+
"When activated this feature will redirect the user on both the default "
|
1335 |
+
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1336 |
+
"Profile Builder on the front-end login page."
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1340 |
+
msgid "Redirects on default WordPress page requests:"
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1344 |
+
msgid "Requested WP Page"
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1348 |
+
msgid "Default WP Login Page(*)"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1352 |
+
msgid "Default WP Logout Page(**)"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1356 |
+
msgid "Default WP Register Page"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1360 |
+
msgid "Default WP Dashboard (***)"
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1364 |
+
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1368 |
+
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1372 |
+
msgid ""
|
1373 |
+
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1374 |
+
"manage options)."
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:49
|
1378 |
+
msgid "Could not open socket!"
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
1382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:120
|
1383 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:123
|
1387 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:180
|
1391 |
+
msgid ""
|
1392 |
+
"To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:196
|
1396 |
+
msgid ""
|
1397 |
+
"To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
|
1398 |
+
"you can do so at"
|
1399 |
+
msgstr ""
|
1400 |
+
|
1401 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:260
|
1402 |
+
msgid ""
|
1403 |
+
"Adds a reCAPTCHA form on the registration page created in the front-end "
|
1404 |
+
"(only)."
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:261
|
1408 |
+
msgid "For this you must get a public and private key from Google:"
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
# @ profilebuilder
|
1412 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:267
|
1413 |
+
msgid "Key"
|
1414 |
+
msgstr "Klíč"
|
1415 |
+
|
1416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:268
|
1417 |
+
msgid "Code"
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:272
|
1421 |
+
msgid "Public Key:"
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:276
|
1425 |
+
msgid "Private Key:"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:311
|
1429 |
+
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:33
|
1433 |
+
msgid ""
|
1434 |
+
"To create a page containing the users registered to this current site/blog, "
|
1435 |
+
"insert the following shortcode in a (blank) page: "
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:34
|
1439 |
+
msgid ""
|
1440 |
+
"For instance, to create a userlisting shortcode listing only the editors and "
|
1441 |
+
"authors, visible to only the users currently logged in, you would use:"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:39
|
1445 |
+
msgid "These settings are applied to the front-end userlisting."
|
1446 |
+
msgstr ""
|
1447 |
+
|
1448 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:45
|
1449 |
+
msgid "Number of Users/Page: "
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:62
|
1453 |
+
msgid "Default Sorting Order: "
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:73
|
1457 |
+
msgid "\"All-Userlisting\" Template"
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:75
|
1461 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:217
|
1462 |
+
msgid ""
|
1463 |
+
"With the userlisting templates you can customize the look, feel and "
|
1464 |
+
"information listed by the shortcode."
|
1465 |
+
msgstr ""
|
1466 |
+
|
1467 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1468 |
+
msgid ""
|
1469 |
+
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1470 |
+
"on each page access where the shortcode is present."
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:80
|
1474 |
+
msgid "Avatar size: "
|
1475 |
+
msgstr ""
|
1476 |
+
|
1477 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:96
|
1478 |
+
msgid "Insert \"Sort By\" Field:"
|
1479 |
+
msgstr ""
|
1480 |
+
|
1481 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:124
|
1482 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:223
|
1483 |
+
msgid "Insert \"User-Meta\" Field:"
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:155
|
1487 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:261
|
1488 |
+
msgid "Insert Extra Functions:"
|
1489 |
+
msgstr ""
|
1490 |
+
|
1491 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:170
|
1492 |
+
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:172
|
1496 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:275
|
1497 |
+
msgid ""
|
1498 |
+
"If you wish to use a default userlisting, just copy the following code and "
|
1499 |
+
"paste it in the textarea below:"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:215
|
1503 |
+
msgid "\"Single-Userlisting\" Template"
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1507 |
+
msgid ""
|
1508 |
+
"The \"Single User Listing\" template is used to list an individual user. "
|
1509 |
+
"It's displayed when clickin on the \"more info\" link."
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:273
|
1513 |
+
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:379
|
1517 |
+
msgid ""
|
1518 |
+
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1519 |
+
msgstr ""
|
1520 |
+
|
1521 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:379
|
1522 |
+
msgid "You can find it in Profile Builder's menu."
|
1523 |
+
msgstr ""
|
1524 |
+
|
1525 |
+
# @ profilebuilder
|
1526 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:404
|
1527 |
+
#, fuzzy
|
1528 |
+
msgid "You need to be logged in to view the userlisting!"
|
1529 |
+
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
1530 |
+
|
1531 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:442
|
1532 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:468
|
1533 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:486
|
1534 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1327
|
1535 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1413
|
1536 |
+
msgid "Search Users by All Fields"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:486
|
1540 |
+
msgid "Leave Blank and Press Search to List All Users"
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:490
|
1544 |
+
msgid "Search"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
# @ profilebuilder
|
1548 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:503
|
1549 |
+
#, fuzzy
|
1550 |
+
msgid "First/Lastname"
|
1551 |
+
msgstr "Křestní jméno"
|
1552 |
+
|
1553 |
+
# @ profilebuilder
|
1554 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:509
|
1555 |
+
#, fuzzy
|
1556 |
+
msgid "Email"
|
1557 |
+
msgstr "E-mail"
|
1558 |
+
|
1559 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:515
|
1560 |
+
msgid "Sign-up Date"
|
1561 |
+
msgstr ""
|
1562 |
+
|
1563 |
+
# @ profilebuilder
|
1564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:521
|
1565 |
+
#, fuzzy
|
1566 |
+
msgid "Firstname"
|
1567 |
+
msgstr "Křestní jméno"
|
1568 |
+
|
1569 |
+
# @ profilebuilder
|
1570 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:527
|
1571 |
+
#, fuzzy
|
1572 |
+
msgid "Lastname"
|
1573 |
+
msgstr "Příjmení"
|
1574 |
+
|
1575 |
+
# @ profilebuilder
|
1576 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:533
|
1577 |
+
#, fuzzy
|
1578 |
+
msgid "Display Name"
|
1579 |
+
msgstr "Křestní jméno"
|
1580 |
+
|
1581 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:551
|
1582 |
+
msgid "Posts"
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:593
|
1586 |
+
msgid "Click here to see more information about this user"
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:593
|
1590 |
+
msgid "More..."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
# @ profilebuilder
|
1594 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:794
|
1595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1101
|
1596 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1597 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1598 |
+
#, fuzzy
|
1599 |
+
msgid "No uploaded attachment"
|
1600 |
+
msgstr "Příloha \""
|
1601 |
+
|
1602 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:796
|
1603 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1103
|
1604 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1159
|
1605 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1606 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1607 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1608 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
1609 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
1610 |
+
msgid "Click to see the current attachment"
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:922
|
1614 |
+
msgid "Click here to go back"
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
# @ profilebuilder
|
1618 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:922
|
1619 |
+
#, fuzzy
|
1620 |
+
msgid "Back"
|
1621 |
+
msgstr "Černý"
|
1622 |
+
|
1623 |
+
# @ profilebuilder
|
1624 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1101
|
1625 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1103
|
1626 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1627 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1628 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1629 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1630 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1631 |
+
msgid "Current file"
|
1632 |
+
msgstr "Aktuální soubor"
|
1633 |
+
|
1634 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1157
|
1635 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1636 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1637 |
+
msgid "Avatar"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1214
|
1641 |
+
msgid "No results found!"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1310
|
1645 |
+
msgid "«« First"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1649 |
+
msgid "« Prev"
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
# @ profilebuilder
|
1653 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1654 |
+
#, fuzzy
|
1655 |
+
msgid "Next » "
|
1656 |
+
msgstr "Odhlásit se »"
|
1657 |
+
|
1658 |
+
# @ profilebuilder
|
1659 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1660 |
+
#, fuzzy
|
1661 |
+
msgid "Last »»"
|
1662 |
+
msgstr "Odhlásit se »"
|
1663 |
+
|
1664 |
+
# @ profilebuilder
|
1665 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:284
|
1666 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:427
|
1667 |
+
#, fuzzy
|
1668 |
+
msgid "You must give your option a title."
|
1669 |
+
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
1670 |
+
|
1671 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:288
|
1672 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:431
|
1673 |
+
msgid "You have entered an invalid meta-key format!"
|
1674 |
+
msgstr ""
|
1675 |
+
|
1676 |
+
# @ profilebuilder
|
1677 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:292
|
1678 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:435
|
1679 |
+
#, fuzzy
|
1680 |
+
msgid "You must enter a valid meta-key."
|
1681 |
+
msgstr "Musíte zadat platnou e-mailovou adresu."
|
1682 |
+
|
1683 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:298
|
1684 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:308
|
1685 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:445
|
1686 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:457
|
1687 |
+
msgid "That meta-key is already in use."
|
1688 |
+
msgstr ""
|
1689 |
+
|
1690 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:315
|
1691 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:465
|
1692 |
+
msgid ""
|
1693 |
+
"There is already an avatar input-type. You can only have one avatar present."
|
1694 |
+
msgstr ""
|
1695 |
+
|
1696 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1697 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1698 |
+
msgid ""
|
1699 |
+
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1700 |
+
"have one present."
|
1701 |
+
msgstr ""
|
1702 |
+
|
1703 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:327
|
1704 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:477
|
1705 |
+
msgid "The textarea row value must be numeric."
|
1706 |
+
msgstr ""
|
1707 |
+
|
1708 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:331
|
1709 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:481
|
1710 |
+
msgid "The maxlength attribute must be numeric."
|
1711 |
+
msgstr ""
|
1712 |
+
|
1713 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1714 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1715 |
+
msgid "The value must be between 20 and 200!"
|
1716 |
+
msgstr ""
|
1717 |
+
|
1718 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:343
|
1719 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
|
1720 |
+
msgid "The width component of the entered value must be numeric!"
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1724 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1725 |
+
msgid "The height component of the entered value must be numeric!"
|
1726 |
+
msgstr ""
|
1727 |
+
|
1728 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1729 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1730 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1731 |
+
msgstr ""
|
1732 |
+
|
1733 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1734 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1735 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1739 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1740 |
+
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:354
|
1744 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:504
|
1745 |
+
msgid "The entered avatar size must be numeric!"
|
1746 |
+
msgstr ""
|
1747 |
+
|
1748 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:388
|
1749 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:564
|
1750 |
+
msgid "There was an error, please try again."
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:18
|
1754 |
+
msgid "Do you want to"
|
1755 |
+
msgstr ""
|
1756 |
+
|
1757 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:18
|
1758 |
+
msgid "the current user?"
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1762 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1763 |
+
msgid "Your account on"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1767 |
+
msgid "has been approved!"
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1771 |
+
msgid "An administrator has just approved your account on"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1775 |
+
msgid "has been unapproved!"
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1779 |
+
msgid "An administrator has just unapproved your account on"
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1783 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:172
|
1784 |
+
msgid "Approve"
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:127
|
1788 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:217
|
1789 |
+
msgid "Unapproved"
|
1790 |
+
msgstr ""
|
1791 |
+
|
1792 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:138
|
1793 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:168
|
1794 |
+
msgid "Unapprove"
|
1795 |
+
msgstr ""
|
1796 |
+
|
1797 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:139
|
1798 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:214
|
1799 |
+
msgid "Approved"
|
1800 |
+
msgstr ""
|
1801 |
+
|
1802 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:167
|
1803 |
+
msgid "unapprove"
|
1804 |
+
msgstr ""
|
1805 |
+
|
1806 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:171
|
1807 |
+
msgid "approve"
|
1808 |
+
msgstr ""
|
1809 |
+
|
1810 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1811 |
+
msgid "Are you sure you want to"
|
1812 |
+
msgstr ""
|
1813 |
+
|
1814 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1815 |
+
msgid "this user?"
|
1816 |
+
msgstr ""
|
1817 |
+
|
1818 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1819 |
+
msgid ""
|
1820 |
+
"<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
|
1821 |
+
"before you can log in."
|
1822 |
+
msgstr ""
|
1823 |
+
|
1824 |
+
# @ profilebuilder
|
1825 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1826 |
+
msgid ""
|
1827 |
+
"You can create as many extra fields as your project requires. To break your "
|
1828 |
+
"custom fields into sections (on the front-end), add a \""
|
1829 |
+
msgstr ""
|
1830 |
+
"Můžete vytvořit libovolné množství vlastních polí. K jejich rozdělení do "
|
1831 |
+
"tématických celků (ve front-endu) použijte pole \""
|
1832 |
+
|
1833 |
+
# @ profilebuilder
|
1834 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1835 |
+
msgid "heading"
|
1836 |
+
msgstr "záhlaví"
|
1837 |
+
|
1838 |
+
# @ profilebuilder
|
1839 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1840 |
+
msgid "\" custom field."
|
1841 |
+
msgstr "\"."
|
1842 |
+
|
1843 |
+
# @ profilebuilder
|
1844 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1845 |
+
#, fuzzy
|
1846 |
+
msgid "All of the fields can be sorted and rearranged to your liking with"
|
1847 |
+
msgstr "Všechna pole lze třídit pomocí "
|
1848 |
+
|
1849 |
+
# @ profilebuilder
|
1850 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1851 |
+
msgid "Drag"
|
1852 |
+
msgstr "Drag"
|
1853 |
+
|
1854 |
+
# @ profilebuilder
|
1855 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1856 |
+
msgid "Drop"
|
1857 |
+
msgstr "Drop"
|
1858 |
+
|
1859 |
+
# @ profilebuilder
|
1860 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1861 |
+
#, fuzzy
|
1862 |
+
msgid ""
|
1863 |
+
"Don't worry about the order in which you create your custom fields, you can "
|
1864 |
+
"always reorder them."
|
1865 |
+
msgstr ""
|
1866 |
+
". Není proto třeba se starat o pořadí, ve kterém vytvoříte vlastní pole, "
|
1867 |
+
"můžete jej kdykoli změnit."
|
1868 |
+
|
1869 |
+
# @ profilebuilder
|
1870 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
|
1871 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
|
1872 |
+
msgid "Title"
|
1873 |
+
msgstr "Název"
|
1874 |
+
|
1875 |
+
# @ profilebuilder
|
1876 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
|
1877 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
|
1878 |
+
msgid "Type"
|
1879 |
+
msgstr "Typ"
|
1880 |
+
|
1881 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
|
1882 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
|
1883 |
+
msgid "Meta-Key"
|
1884 |
+
msgstr ""
|
1885 |
+
|
1886 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
|
1887 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
|
1888 |
+
msgid "ID"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
|
1892 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
|
1893 |
+
msgid "Req'd"
|
1894 |
+
msgstr ""
|
1895 |
+
|
1896 |
+
# @ profilebuilder
|
1897 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
|
1898 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
|
1899 |
+
msgid "Add Option"
|
1900 |
+
msgstr "Přidat volbu"
|
1901 |
+
|
1902 |
+
# @ profilebuilder
|
1903 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
|
1904 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
|
1905 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
|
1906 |
+
msgid "Edit"
|
1907 |
+
msgstr "Upravit"
|
1908 |
+
|
1909 |
+
# @ profilebuilder
|
1910 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
|
1911 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
|
1912 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
|
1913 |
+
msgid "Delete"
|
1914 |
+
msgstr "Odstranit"
|
1915 |
+
|
1916 |
+
# @ profilebuilder
|
1917 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
|
1918 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:84
|
1919 |
+
msgid "Title:"
|
1920 |
+
msgstr "Název:"
|
1921 |
+
|
1922 |
+
# @ profilebuilder
|
1923 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
|
1924 |
+
msgid "The title of the item."
|
1925 |
+
msgstr "Název vlastního pole."
|
1926 |
+
|
1927 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
|
1928 |
+
msgid "Meta-Key:"
|
1929 |
+
msgstr ""
|
1930 |
+
|
1931 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
|
1932 |
+
msgid ""
|
1933 |
+
"Use this in conjuction with WordPress functions to display the value in the "
|
1934 |
+
"page of your choosing. Auto-completed but editable - in this case it must be "
|
1935 |
+
"uniqe.<br/>Changing this might take long in case of a very big user-count."
|
1936 |
+
msgstr ""
|
1937 |
+
|
1938 |
+
# @ profilebuilder
|
1939 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
|
1940 |
+
msgid "Option Type:"
|
1941 |
+
msgstr "Typ vlastního pole:"
|
1942 |
+
|
1943 |
+
# @ profilebuilder
|
1944 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
|
1945 |
+
msgid "Choose one of the supported option types."
|
1946 |
+
msgstr "Vyberte jednu z nabízených možností."
|
1947 |
+
|
1948 |
+
# @ profilebuilder
|
1949 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
|
1950 |
+
msgid "Description:"
|
1951 |
+
msgstr "Popis:"
|
1952 |
+
|
1953 |
+
# @ profilebuilder
|
1954 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
|
1955 |
+
msgid ""
|
1956 |
+
"Enter a detailed description of the option for end users to read(optional)."
|
1957 |
+
msgstr "Zadejte podrobný popis vlastního pole pro uživatele (volitelné)."
|
1958 |
+
|
1959 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1960 |
+
msgid "You can only insert links using standard HTML syntax:"
|
1961 |
+
msgstr ""
|
1962 |
+
|
1963 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1964 |
+
msgid "address"
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
# @ profilebuilder
|
1968 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1969 |
+
#, fuzzy
|
1970 |
+
msgid "name"
|
1971 |
+
msgstr "Jméno"
|
1972 |
+
|
1973 |
+
# @ profilebuilder
|
1974 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
|
1975 |
+
msgid "Options:"
|
1976 |
+
msgstr "Možnosti:"
|
1977 |
+
|
1978 |
+
# @ profilebuilder
|
1979 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
|
1980 |
+
msgid ""
|
1981 |
+
"Enter a comma separated list of options. For example, you could have \"One,"
|
1982 |
+
"Two,Three\" or just a single value like \"Yes\" for a checkbox."
|
1983 |
+
msgstr ""
|
1984 |
+
"Zadejte čárkami oddělený seznam možností. Například \"Jedna, dva, tři\" nebo "
|
1985 |
+
"jen jednu hodnotu (např. \"Ano\" u check-boxu)."
|
1986 |
+
|
1987 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
|
1988 |
+
msgid "ID:"
|
1989 |
+
msgstr ""
|
1990 |
+
|
1991 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
|
1992 |
+
msgid ""
|
1993 |
+
"This is the internal ID for this input. You can use this in conjuction with "
|
1994 |
+
"filters to target this element if needed.<br/>Can't be edited."
|
1995 |
+
msgstr ""
|
1996 |
+
|
1997 |
+
# @ profilebuilder
|
1998 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
|
1999 |
+
#, fuzzy
|
2000 |
+
msgid "Required:"
|
2001 |
+
msgstr "(vyžadováno)"
|
2002 |
+
|
2003 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
|
2004 |
+
msgid "Check this box to make this field required."
|
2005 |
+
msgstr ""
|
2006 |
+
|
2007 |
+
# @ profilebuilder
|
2008 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:193
|
2009 |
+
msgid "Cancel"
|
2010 |
+
msgstr "Zrušit"
|
2011 |
+
|
2012 |
+
# @ profilebuilder
|
2013 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:194
|
2014 |
+
msgid "Save"
|
2015 |
+
msgstr "Uložit"
|
2016 |
+
|
2017 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
|
2018 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
|
2019 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
|
2020 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
|
2021 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
|
2022 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
|
2023 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
|
2024 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
|
2025 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
|
2026 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
|
2027 |
+
msgid ""
|
2028 |
+
"This field wasn't updated because you entered and empty string (It was "
|
2029 |
+
"marked as required by the administrator)"
|
2030 |
+
msgstr ""
|
2031 |
+
|
2032 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
|
2033 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
|
2034 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
|
2035 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
|
2036 |
+
msgid "max upload size"
|
2037 |
+
msgstr ""
|
2038 |
+
|
2039 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
|
2040 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
|
2041 |
+
msgid "Are you sure you want to delete this attachment?"
|
2042 |
+
msgstr ""
|
2043 |
+
|
2044 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
2045 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
2046 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
2047 |
+
msgid "Click to delete the current attachment"
|
2048 |
+
msgstr ""
|
2049 |
+
|
2050 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
2051 |
+
msgid ""
|
2052 |
+
"The attachment can't be deleted (It was marked as required by the "
|
2053 |
+
"administrator)"
|
2054 |
+
msgstr ""
|
2055 |
+
|
2056 |
+
# @ profilebuilder
|
2057 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
2058 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
2059 |
+
msgid "Current avatar"
|
2060 |
+
msgstr "Aktuální avatar"
|
2061 |
+
|
2062 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
2063 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
2064 |
+
msgid "No uploaded avatar"
|
2065 |
+
msgstr ""
|
2066 |
+
|
2067 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
|
2068 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
|
2069 |
+
msgid "Are you sure you want to delete this avatar?"
|
2070 |
+
msgstr ""
|
2071 |
+
|
2072 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
2073 |
+
msgid ""
|
2074 |
+
"The avatar image can't be deleted (It was marked as required by the "
|
2075 |
+
"administrator)."
|
2076 |
+
msgstr ""
|
2077 |
+
|
2078 |
+
# @ profilebuilder
|
2079 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
2080 |
+
#, fuzzy
|
2081 |
+
msgid "Click to see the current avatar"
|
2082 |
+
msgstr "Aktuální avatar"
|
2083 |
+
|
2084 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
2085 |
+
msgid "Click to delete the avatar"
|
2086 |
+
msgstr ""
|
2087 |
+
|
2088 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
|
2089 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
2090 |
+
msgstr ""
|
2091 |
+
|
2092 |
+
# @ profilebuilder
|
2093 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
|
2094 |
+
#, fuzzy
|
2095 |
+
msgid "Profile Builder Login Widget"
|
2096 |
+
msgstr "Profile Builder"
|
2097 |
+
|
2098 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:44
|
2099 |
+
msgid "Don't have an account?"
|
2100 |
+
msgstr ""
|
2101 |
+
|
2102 |
+
# @ profilebuilder
|
2103 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
2104 |
+
#, fuzzy
|
2105 |
+
msgid "Lost Your Password?"
|
2106 |
+
msgstr "Zapomněli jste heslo?"
|
2107 |
+
|
2108 |
+
# @ profilebuilder
|
2109 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:80
|
2110 |
+
#, fuzzy
|
2111 |
+
msgid "Login"
|
2112 |
+
msgstr "Přihlásit se"
|
2113 |
+
|
2114 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
2115 |
+
msgid "After login redirect URL:"
|
2116 |
+
msgstr ""
|
2117 |
+
|
2118 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
2119 |
+
msgid "Register page URL (optional)"
|
2120 |
+
msgstr ""
|
2121 |
+
|
2122 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
2123 |
+
msgid "Password Recovery page URL (optional)"
|
2124 |
+
msgstr ""
|
2125 |
+
|
2126 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
2127 |
+
msgid "The user-validation has failed - the avatar was not deleted!"
|
2128 |
+
msgstr ""
|
2129 |
+
|
2130 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:25
|
2131 |
+
msgid "The user-validation has failed - the attachment was not deleted!"
|
2132 |
+
msgstr ""
|
2133 |
+
|
2134 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:473
|
2135 |
+
#, php-format
|
2136 |
+
msgid ""
|
2137 |
+
"Your <strong>Profile Builder Pro</strong> serial number is invalid or "
|
2138 |
+
"missing. Please %sregister your copy%s of Profile Builder to receive access "
|
2139 |
+
"to automatic updates and support. Need a license key? %sPurchase one now%s "
|
2140 |
+
"%sDismiss%s"
|
2141 |
+
msgstr ""
|
2142 |
+
|
2143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:477
|
2144 |
+
#, php-format
|
2145 |
+
msgid ""
|
2146 |
+
"Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please "
|
2147 |
+
"%sRenew Your Licence%s to receive access to automatic updates and priority "
|
2148 |
+
"support. %sPurchase one now%s %sDismiss%s"
|
2149 |
+
msgstr ""
|
2150 |
+
|
2151 |
+
# @ profilebuilder
|
2152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
2153 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:10
|
2154 |
+
msgid "Register your version of Profile Builder Pro"
|
2155 |
+
msgstr "Zaregistrujte si svou verzi Profile Builder Pro"
|
2156 |
+
|
2157 |
+
# @ profilebuilder
|
2158 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:11
|
2159 |
+
msgid ""
|
2160 |
+
"Now that you acquired a copy of Profile Builder Pro, you should take the "
|
2161 |
+
"time and register it with the serial number you received in the e-mail."
|
2162 |
+
msgstr ""
|
2163 |
+
"Nyní, když jste získali svou kopii Profile Builder Pro, zvažte výhody "
|
2164 |
+
"registrace této kopie zadáním sériového čísla, které jste obdrželi v e-mailu."
|
2165 |
+
|
2166 |
+
# @ profilebuilder
|
2167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:12
|
2168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:53
|
2169 |
+
msgid ""
|
2170 |
+
"If you register this version of Profile Builder, you'll receive information "
|
2171 |
+
"regarding eventual upgrades, patches, and - if needed - technical support."
|
2172 |
+
msgstr ""
|
2173 |
+
"Pokud si zaregistrujete tuto verzi Profile Builder, budete dostávat "
|
2174 |
+
"informace o aktualizacích, nových verzích a získáte přístup k technické "
|
2175 |
+
"podpoře."
|
2176 |
+
|
2177 |
+
# @ profilebuilder
|
2178 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:13
|
2179 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:54
|
2180 |
+
msgid "Serial Number:"
|
2181 |
+
msgstr "Sériové číslo:"
|
2182 |
+
|
2183 |
+
# @ profilebuilder
|
2184 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
|
2185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
|
2186 |
+
msgid "The serial number was successfully validated!"
|
2187 |
+
msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
|
2188 |
+
|
2189 |
+
# @ profilebuilder
|
2190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
|
2191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
|
2192 |
+
#, fuzzy
|
2193 |
+
msgid "The serial number entered couldn't be validated!"
|
2194 |
+
msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
|
2195 |
+
|
2196 |
+
# @ profilebuilder
|
2197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
|
2198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
|
2199 |
+
#, fuzzy
|
2200 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
2201 |
+
msgstr "Sériové číslo nemůže být ověřeno nebo není platné!"
|
2202 |
+
|
2203 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:23
|
2204 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:64
|
2205 |
+
msgid ""
|
2206 |
+
"The serial number couldn't be validated because process timed out. This is "
|
2207 |
+
"possible due to the server being down. Please try again later!"
|
2208 |
+
msgstr ""
|
2209 |
+
|
2210 |
+
# @ profilebuilder
|
2211 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:29
|
2212 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2213 |
+
msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2214 |
+
|
2215 |
+
# @ profilebuilder
|
2216 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:50
|
2217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:51
|
2218 |
+
#, fuzzy
|
2219 |
+
msgid "Register your version of Profile Builder Hobbyist"
|
2220 |
+
msgstr "Zaregistrujte si svou verzi Profile Builder Pro"
|
2221 |
+
|
2222 |
+
# @ profilebuilder
|
2223 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:52
|
2224 |
+
#, fuzzy
|
2225 |
+
msgid ""
|
2226 |
+
"Now that you acquired a copy of Profile Builder Hobbyist, you should take "
|
2227 |
+
"the time and register it with the serial number you received in the e-mail."
|
2228 |
+
msgstr ""
|
2229 |
+
"Nyní, když jste získali svou kopii Profile Builder Pro, zvažte výhody "
|
2230 |
+
"registrace této kopie zadáním sériového čísla, které jste obdrželi v e-mailu."
|
2231 |
+
|
2232 |
+
# @ profilebuilder
|
2233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
|
2234 |
+
#, fuzzy
|
2235 |
+
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2236 |
+
msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
translation/profilebuilder-de_DE.mo
CHANGED
Binary file
|
translation/profilebuilder-de_DE.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"
|
@@ -11,770 +11,489 @@ msgstr ""
|
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
-
"X-Generator: Poedit 1.5.
|
15 |
-
"X-Poedit-SearchPath-0: C:\\Users\\
|
|
|
16 |
|
17 |
-
#: C:\Users\
|
18 |
-
#: C:\Users\
|
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\
|
413 |
-
#: C:\Users\
|
414 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
415 |
-
msgstr "
|
|
|
|
|
416 |
|
417 |
-
#: C:\Users\
|
418 |
-
#: C:\Users\
|
419 |
msgid "Since it was also larger than"
|
420 |
msgstr "Es war größer als:"
|
421 |
|
422 |
-
#: C:\Users\
|
423 |
-
#: C:\Users\
|
424 |
msgid "no additional information is available."
|
425 |
msgstr "keine weiteren Informationen verfügbar."
|
426 |
|
427 |
-
#: C:\Users\
|
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\
|
432 |
msgid "The avatar was successfully deleted."
|
433 |
msgstr "Der Avatar wurde gelöscht"
|
434 |
|
435 |
-
#: C:\Users\
|
436 |
msgid "The attachment"
|
437 |
msgstr "Der Anhang"
|
438 |
|
439 |
-
#: C:\Users\
|
440 |
msgid "was successfully deleted."
|
441 |
msgstr "wurde erfolgreich gelöscht"
|
442 |
|
443 |
-
#: C:\Users\
|
444 |
msgid "The changes have been successfully saved."
|
445 |
msgstr "Die Änderungen wurden gespeichert"
|
446 |
|
447 |
-
#: C:\Users\
|
448 |
-
msgid "
|
|
|
449 |
msgstr "Die eingegebene E-Mail Adresse ist bereits registriert"
|
450 |
|
451 |
-
#: C:\Users\
|
452 |
-
#: C:\Users\
|
453 |
msgid "The email address was"
|
454 |
msgstr "Diese E-Mail wurde"
|
455 |
|
456 |
-
#: C:\Users\
|
457 |
-
#: C:\Users\
|
458 |
-
#: C:\Users\
|
459 |
-
#: C:\Users\
|
460 |
-
#: C:\Users\
|
461 |
-
#: C:\Users\
|
462 |
-
#: C:\Users\
|
463 |
msgid "NOT"
|
464 |
msgstr "NICHT"
|
465 |
|
466 |
-
#: C:\Users\
|
467 |
-
#: C:\Users\
|
468 |
-
#: C:\Users\
|
469 |
-
#: C:\Users\
|
470 |
-
#: C:\Users\
|
471 |
-
#: C:\Users\
|
472 |
-
#: C:\Users\
|
473 |
msgid "updated along with the rest of the information."
|
474 |
msgstr "mit den restlichen Informationen aktualisiert."
|
475 |
|
476 |
-
#: C:\Users\
|
477 |
msgid "The email address you entered is invalid."
|
478 |
msgstr "Die eingegebene E-Mail Adresse ist ungültig!"
|
479 |
|
480 |
-
#: C:\Users\
|
481 |
msgid "The passwords you entered do not match."
|
482 |
msgstr "Die eingegebenen Passwörter stimmen nicht überein"
|
483 |
|
484 |
-
#: C:\Users\
|
485 |
-
#: C:\Users\
|
486 |
msgid "The password was"
|
487 |
msgstr "Das Passwort ist"
|
488 |
|
489 |
-
#: C:\Users\
|
490 |
msgid "You didn't complete both password fields."
|
491 |
msgstr "Sie haben die beiden Passwort Felder nicht ausgefüllt"
|
492 |
|
493 |
-
#: C:\Users\
|
494 |
msgid "Your profile was NOT updated!"
|
495 |
msgstr "Ihr Profil wurde NICHT aktualisiert"
|
496 |
|
497 |
-
#: C:\Users\
|
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\
|
502 |
msgid "Possible cause: the size was bigger than"
|
503 |
msgstr "Möglicher Grund: die Datei war größer als"
|
504 |
|
505 |
-
#: C:\Users\
|
506 |
msgid "The listed attachements were"
|
507 |
msgstr "Die augelisteten Anhänger sind"
|
508 |
|
509 |
-
#: C:\Users\
|
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\
|
514 |
msgid "Possible cause: size/incorrect file-type."
|
515 |
msgstr "Möglicher Grund: Größe oder falscher Dateityp."
|
516 |
|
517 |
-
#: C:\Users\
|
518 |
msgid "The avatar was"
|
519 |
msgstr "Der Avatar ist"
|
520 |
|
521 |
-
#: C:\Users\
|
522 |
-
#: C:\Users\
|
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\
|
527 |
-
#: C:\Users\
|
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\
|
532 |
msgid "This file was"
|
533 |
msgstr "Der Anhang ist"
|
534 |
|
535 |
-
#: C:\Users\
|
536 |
-
#: C:\Users\
|
537 |
msgid "Name"
|
538 |
msgstr "Name"
|
539 |
|
540 |
-
#: C:\Users\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
541 |
msgid "Usernames cannot be changed."
|
542 |
msgstr "Benutzernamen können nicht geändert werden"
|
543 |
|
544 |
-
#: C:\Users\
|
545 |
-
#: C:\Users\
|
546 |
-
#: C:\Users\
|
547 |
-
#: C:\Users\
|
548 |
-
#: C:\Users\
|
549 |
-
#: C:\Users\
|
550 |
-
#: C:\Users\
|
551 |
-
#: C:\Users\
|
552 |
-
#: C:\Users\
|
553 |
-
#: C:\Users\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
554 |
msgid "This field is marked as required by the administrator."
|
555 |
msgstr "Dieses Feld wird benötigt."
|
556 |
|
557 |
-
#: C:\Users\
|
558 |
-
#: C:\Users\
|
559 |
-
#: C:\Users\
|
560 |
-
#: C:\Users\
|
561 |
-
#: C:\Users\
|
562 |
-
#: C:\Users\
|
563 |
-
#: C:\Users\
|
564 |
-
#: C:\Users\
|
565 |
-
#: C:\Users\
|
566 |
-
#: C:\Users\
|
567 |
-
msgid "
|
568 |
-
|
569 |
-
|
570 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
msgid "Display name publicly as"
|
572 |
msgstr "angezeigter Name..."
|
573 |
|
574 |
-
#: C:\Users\
|
575 |
-
#: C:\Users\
|
576 |
msgid "Contact Info"
|
577 |
msgstr "E-Mail"
|
578 |
|
579 |
-
#: C:\Users\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
580 |
msgid "(required)"
|
581 |
msgstr "erforderlich"
|
582 |
|
583 |
-
#: C:\Users\
|
584 |
-
#: C:\Users\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
585 |
msgid "About Yourself"
|
586 |
msgstr "Über Sie"
|
587 |
|
588 |
-
#: C:\Users\
|
589 |
-
#: C:\Users\
|
590 |
-
#: C:\Users\
|
591 |
-
#: C:\Users\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
592 |
msgid "Repeat Password"
|
593 |
msgstr "Passwort wiederholen"
|
594 |
|
595 |
-
#: C:\Users\
|
596 |
msgid "Update"
|
597 |
msgstr "Aktualisieren"
|
598 |
|
599 |
-
#: C:\Users\
|
600 |
msgid "You are currently logged in as"
|
601 |
msgstr "Sie sind eingeloggt als"
|
602 |
|
603 |
-
#: C:\Users\
|
604 |
msgid "Log out of this account"
|
605 |
msgstr "Aus diesem Profil ausloggen"
|
606 |
|
607 |
-
#: C:\Users\
|
608 |
msgid "Log out"
|
609 |
msgstr "Ausloggen"
|
610 |
|
611 |
-
#: C:\Users\
|
612 |
msgid "You have successfully logged in as"
|
613 |
msgstr "Sie sind eingeloggt als"
|
614 |
|
615 |
-
#: C:\Users\
|
616 |
-
#: C:\Users\
|
617 |
-
msgid "
|
618 |
-
|
|
|
|
|
|
|
|
|
619 |
|
620 |
-
#: C:\Users\
|
621 |
-
#: C:\Users\
|
622 |
-
#: C:\Users\
|
623 |
-
#: C:\Users\
|
624 |
msgid "here"
|
625 |
msgstr "hier"
|
626 |
|
627 |
-
#: C:\Users\
|
628 |
-
#: C:\Users\
|
629 |
msgid "ERROR:"
|
630 |
msgstr "FEHLER"
|
631 |
|
632 |
-
#: C:\Users\
|
633 |
msgid "The username field is empty"
|
634 |
msgstr "Das Feld Benutzername ist leer"
|
635 |
|
636 |
-
#: C:\Users\
|
637 |
-
#: C:\Users\
|
638 |
-
#: C:\Users\
|
639 |
-
#: C:\Users\
|
640 |
msgid "Password"
|
641 |
msgstr "Passwort"
|
642 |
|
643 |
-
#: C:\Users\
|
644 |
msgid "Log in"
|
645 |
msgstr "Einloggen"
|
646 |
|
647 |
-
#: C:\Users\
|
648 |
msgid "Remember me"
|
649 |
msgstr "Daten merken"
|
650 |
|
651 |
-
#: C:\Users\
|
652 |
msgid "Lost password?"
|
653 |
msgstr "Passwort vergessen"
|
654 |
|
655 |
-
#: C:\Users\
|
656 |
-
#: C:\Users\
|
657 |
-
#: C:\Users\
|
658 |
msgid "ERROR"
|
659 |
msgstr "FEHLER"
|
660 |
|
661 |
-
#: C:\Users\
|
662 |
-
|
663 |
-
|
|
|
|
|
|
|
|
|
|
|
664 |
|
665 |
-
#: C:\Users\
|
666 |
-
#: C:\Users\
|
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\
|
671 |
-
#: C:\Users\
|
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\
|
676 |
-
#: C:\Users\
|
677 |
-
msgid "
|
678 |
-
|
|
|
|
|
|
|
679 |
|
680 |
-
#: C:\Users\
|
681 |
-
#: C:\Users\
|
682 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
683 |
-
msgstr "
|
|
|
|
|
684 |
|
685 |
-
#: C:\Users\
|
686 |
-
#: C:\Users\
|
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\
|
691 |
-
#: C:\Users\
|
692 |
msgid "Password Reset Feature from"
|
693 |
msgstr "Passwort zurücksetzen von"
|
694 |
|
695 |
-
#: C:\Users\
|
696 |
-
#: C:\Users\
|
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\
|
701 |
msgid "The email address entered wasn't found in the database!"
|
702 |
-
msgstr "
|
|
|
|
|
703 |
|
704 |
-
#: C:\Users\
|
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\
|
709 |
msgid "The username entered wasn't found in the database!"
|
710 |
-
msgstr "
|
|
|
|
|
711 |
|
712 |
-
#: C:\Users\
|
713 |
msgid "Please check that you entered the correct username."
|
714 |
msgstr "Bitte überprüfen Sie den eingegebenen Benutzernamen."
|
715 |
|
716 |
-
#: C:\Users\
|
717 |
msgid "Your password has been successfully changed!"
|
718 |
msgstr "Ihr Passwort wurde erfolgreich geändert!"
|
719 |
|
720 |
-
#: C:\Users\
|
721 |
msgid "You have successfully reset your password to:"
|
722 |
msgstr "Ihr neues Passwort lautet:"
|
723 |
|
724 |
-
#: C:\Users\
|
725 |
-
#: C:\Users\
|
726 |
msgid "Password Successfully Reset for"
|
727 |
msgstr "Passwort zurückgesetzt für:"
|
728 |
|
729 |
-
#: C:\Users\
|
730 |
-
#: C:\Users\
|
731 |
msgid "from"
|
732 |
msgstr "von"
|
733 |
|
734 |
-
#: C:\Users\
|
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\
|
739 |
msgid "His/her new password is:"
|
740 |
msgstr "Ihr neues Passwort lautet:"
|
741 |
|
742 |
-
#: C:\Users\
|
743 |
-
#: C:\Users\
|
744 |
msgid "The entered passwords don't match!"
|
745 |
msgstr "Die eingegebenen Passwörter stimmen nicht überein!"
|
746 |
|
747 |
-
#: C:\Users\
|
748 |
-
#: C:\Users\
|
749 |
msgid "Reset Password"
|
750 |
msgstr "Passwort zurücksetzen"
|
751 |
|
752 |
-
#: C:\Users\
|
753 |
msgid "Invalid key!"
|
754 |
msgstr "Ungültige Eingabe"
|
755 |
|
756 |
-
#: C:\Users\
|
757 |
msgid "Please enter your username or email address."
|
758 |
-
msgstr "
|
|
|
|
|
759 |
|
760 |
-
#: C:\Users\
|
761 |
msgid "You will receive a link to create a new password via email."
|
762 |
-
msgstr "
|
|
|
763 |
|
764 |
-
#: C:\Users\
|
765 |
msgid "Username or E-mail"
|
766 |
msgstr "Benutzername oder E-Mail"
|
767 |
|
768 |
-
#: C:\Users\
|
769 |
msgid "Get New Password"
|
770 |
msgstr "Neues Passwort anfordern"
|
771 |
|
772 |
-
#: C:\Users\
|
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"
|
@@ -785,1017 +504,1570 @@ msgstr ""
|
|
785 |
"\n"
|
786 |
"Nach der Aktivierung erhalten Sie eine E-Mail mit Ihren Benutzerdaten.\n"
|
787 |
|
788 |
-
#: C:\Users\
|
789 |
#, php-format
|
790 |
msgid "[%1$s] Activate %2$s"
|
791 |
msgstr "[%1$s] Aktivieren %2$s"
|
792 |
|
793 |
-
#: C:\Users\
|
794 |
msgid "Invalid activation key!"
|
795 |
msgstr "Falscher Aktivierungsschlüssel"
|
796 |
|
797 |
-
#: C:\Users\
|
798 |
msgid "The user is already active!"
|
799 |
msgstr "Der Benutzer ist bereits aktiviert."
|
800 |
|
801 |
-
#: C:\Users\
|
802 |
msgid "Could not create user!"
|
803 |
msgstr "Benutzer kann nicht erstellt werden."
|
804 |
|
805 |
-
#: C:\Users\
|
806 |
msgid "That username is already activated!"
|
807 |
msgstr "Der Benutzername ist bereits aktiviert."
|
808 |
|
809 |
-
#: C:\Users\
|
810 |
msgid "The user was successfully activated."
|
811 |
msgstr "Der Benutzer wurde erfolgreich aktiviert"
|
812 |
|
813 |
-
#: C:\Users\
|
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\
|
818 |
msgid "New subscriber on"
|
819 |
msgstr "Neue Registreirung bei:"
|
820 |
|
821 |
-
#: C:\Users\
|
822 |
-
msgid "
|
823 |
-
|
|
|
|
|
|
|
|
|
824 |
|
825 |
-
#: C:\Users\
|
826 |
msgid "A new subscriber has (been) registered!"
|
827 |
msgstr "Ein neuer Benutzer hat sich angemeldet!"
|
828 |
|
829 |
-
#: C:\Users\
|
830 |
msgid "A new account has been created for you."
|
831 |
msgstr "Ein neues Benutzerprofil wurde für Sie erstellt."
|
832 |
|
833 |
-
#: C:\Users\
|
834 |
msgid "Welcome to"
|
835 |
msgstr "Willkommen bei"
|
836 |
|
837 |
-
#: C:\Users\
|
838 |
msgid "Your username is:"
|
839 |
msgstr "Ihr Benutzername ist:"
|
840 |
|
841 |
-
#: C:\Users\
|
842 |
msgid "and password:"
|
843 |
msgstr "und das Passwort:"
|
844 |
|
845 |
-
#: C:\Users\
|
846 |
-
msgid "
|
847 |
-
|
|
|
|
|
|
|
|
|
848 |
|
849 |
-
#: C:\Users\
|
850 |
msgid "The user was NOT created!"
|
851 |
msgstr "Der Benutzer wurde nicht erstellt."
|
852 |
|
853 |
-
#: C:\Users\
|
854 |
msgid "A username is required for registration."
|
855 |
msgstr "Ein Benutzername ist zur Registrierung notwendig."
|
856 |
|
857 |
-
#: C:\Users\
|
858 |
msgid "Sorry, that username already exists!"
|
859 |
msgstr "Der Benutzername ist bereits registriert."
|
860 |
|
861 |
-
#: C:\Users\
|
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\
|
866 |
msgid "Sorry, that email address is already used!"
|
867 |
msgstr "Diese E-Mail-Adresse ist bereits registriert."
|
868 |
|
869 |
-
#: C:\Users\
|
870 |
msgid "You didn't complete one of the password-fields!"
|
871 |
msgstr "Eines der Passwortfelder wurde nicht ausgefüllt."
|
872 |
|
873 |
-
#: C:\Users\
|
874 |
-
#: C:\Users\
|
875 |
msgid "The account was NOT created!"
|
876 |
msgstr "Der Benutzer wurde nicht erstellt."
|
877 |
|
878 |
-
#: C:\Users\
|
879 |
msgid "You must agree to the terms and conditions before registering!"
|
880 |
msgstr "Sie müssen den AGB zustimmen!"
|
881 |
|
882 |
-
#: C:\Users\
|
883 |
msgid "(Several required fields were left uncompleted)"
|
884 |
msgstr "Einige zur Registrierung notwendige Felder wurde nicht ausgefüllt."
|
885 |
|
886 |
-
#: C:\Users\
|
887 |
msgid "This username is already reserved to be used soon."
|
888 |
msgstr "Dieser Benutzername ist reserviert."
|
889 |
|
890 |
-
#: C:\Users\
|
891 |
-
#: C:\Users\
|
892 |
msgid "Please try a different one!"
|
893 |
msgstr "Bitte wählen Sie einen anderen."
|
894 |
|
895 |
-
#: C:\Users\
|
896 |
msgid "This email address is already reserved to be used soon."
|
897 |
msgstr "Dieser E-Mail-Adresse ist reserviert."
|
898 |
|
899 |
-
#: C:\Users\
|
900 |
msgid "You are logged in as"
|
901 |
msgstr "Sie sind eingeloggt als "
|
902 |
|
903 |
-
#: C:\Users\
|
904 |
msgid "You don't need another account."
|
905 |
msgstr "Sie benötigen keinen weiteren Account."
|
906 |
|
907 |
-
#: C:\Users\
|
908 |
msgid "Log out of this account."
|
909 |
msgstr "Aus diesem Profil ausloggen."
|
910 |
|
911 |
-
#: C:\Users\
|
912 |
msgid "Logout"
|
913 |
msgstr "Ausloggen"
|
914 |
|
915 |
-
#: C:\Users\
|
916 |
msgid "An email has been sent to "
|
917 |
msgstr "An "
|
918 |
|
919 |
-
#: C:\Users\
|
920 |
msgid "with information on how to activate his/her account"
|
921 |
-
msgstr "
|
|
|
922 |
|
923 |
-
#: C:\Users\
|
924 |
msgid "A user account has been created for"
|
925 |
msgstr "Ein Benutzer wurde erstellt für"
|
926 |
|
927 |
-
#: C:\Users\
|
928 |
-
#: C:\Users\
|
929 |
-
msgid "
|
930 |
-
|
|
|
|
|
|
|
|
|
931 |
|
932 |
-
#: C:\Users\
|
933 |
-
msgid "
|
934 |
-
|
|
|
|
|
|
|
|
|
935 |
|
936 |
-
#: C:\Users\
|
937 |
msgid "Thank you for registering"
|
938 |
msgstr "Vielen Dank für die Registrierung."
|
939 |
|
940 |
-
#: C:\Users\
|
941 |
msgid "An error occured while trying to send the notification email."
|
942 |
-
msgstr "
|
|
|
|
|
943 |
|
944 |
-
#: C:\Users\
|
945 |
msgid "An email containing activation instructions was successfully sent."
|
946 |
-
msgstr "
|
|
|
947 |
|
948 |
-
#: C:\Users\
|
949 |
msgid "An email containing the username and password was successfully sent."
|
950 |
-
msgstr "
|
|
|
951 |
|
952 |
-
#: C:\Users\
|
953 |
msgid "Users can register themselves or you can manually create users here."
|
954 |
-
msgstr "
|
|
|
955 |
|
956 |
-
#: C:\Users\
|
957 |
-
msgid "
|
958 |
-
|
|
|
|
|
|
|
|
|
959 |
|
960 |
-
#: C:\Users\
|
961 |
msgid "Only an administrator can add new users."
|
962 |
msgstr "Nur Administratoren können neue Benutze anlegen."
|
963 |
|
964 |
-
#: C:\Users\
|
965 |
-
#: C:\Users\
|
966 |
-
#: C:\Users\
|
967 |
-
#: C:\Users\
|
968 |
-
#: C:\Users\
|
969 |
-
#: C:\Users\
|
970 |
-
#: C:\Users\
|
971 |
-
#: C:\Users\
|
972 |
-
#: C:\Users\
|
973 |
-
msgid "
|
|
|
|
|
974 |
msgstr "Dieses Feld wird zur Registrierung benötigt."
|
975 |
|
976 |
-
#: C:\Users\
|
977 |
-
#: C:\Users\
|
978 |
-
#: C:\Users\
|
979 |
-
#: C:\Users\
|
980 |
-
#: C:\Users\
|
981 |
-
#: C:\Users\
|
982 |
-
#: C:\Users\
|
983 |
-
#: C:\Users\
|
984 |
-
#: C:\Users\
|
985 |
msgid "This field is marked as required by the administrator"
|
986 |
msgstr "Dieses Feld wird zur Registrierung benötigt."
|
987 |
|
988 |
-
#: C:\Users\
|
989 |
msgid "Anti-Spam"
|
990 |
msgstr "Anti-Spam"
|
991 |
|
992 |
-
#: C:\Users\
|
993 |
msgid "Send these credentials via email."
|
994 |
msgstr "Senden Sie diese Anmeldeinformationen per E-Mail."
|
995 |
|
996 |
-
#: C:\Users\
|
997 |
msgid "Add User"
|
998 |
msgstr "Benutzer hinzufügen"
|
999 |
|
1000 |
-
#: C:\Users\
|
|
|
1001 |
msgid "Register"
|
1002 |
msgstr "Regstrieren"
|
1003 |
|
1004 |
-
#: C:\Users\
|
1005 |
-
|
1006 |
-
|
|
|
1007 |
|
1008 |
-
#: C:\Users\
|
1009 |
-
msgid "
|
1010 |
-
msgstr "
|
1011 |
|
1012 |
-
#: C:\Users\
|
1013 |
-
|
1014 |
-
|
|
|
1015 |
|
1016 |
-
#: C:\Users\
|
1017 |
-
|
1018 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
|
1020 |
-
#: C:\Users\
|
1021 |
-
|
1022 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1023 |
|
1024 |
-
#: C:\Users\
|
1025 |
-
|
1026 |
-
|
|
|
|
|
1027 |
|
1028 |
-
#: C:\Users\
|
1029 |
-
msgid "
|
1030 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1031 |
|
1032 |
-
#: C:\Users\
|
1033 |
-
#: C:\Users\
|
1034 |
-
msgid "
|
1035 |
-
msgstr "
|
1036 |
|
1037 |
-
#: C:\Users\
|
1038 |
-
|
1039 |
-
|
1040 |
-
msgstr "Typ"
|
1041 |
|
1042 |
-
#: C:\Users\
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
|
|
|
|
|
|
|
|
|
|
1046 |
|
1047 |
-
#: C:\Users\
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
|
|
|
|
|
|
1051 |
|
1052 |
-
#: C:\Users\
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
|
|
|
|
|
|
1056 |
|
1057 |
-
#: C:\Users\
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
|
|
|
|
|
|
1061 |
|
1062 |
-
#: C:\Users\
|
1063 |
-
|
1064 |
-
|
1065 |
-
msgid "Edit"
|
1066 |
-
msgstr "Bearbeiten"
|
1067 |
|
1068 |
-
#: C:\Users\
|
1069 |
-
|
1070 |
-
|
1071 |
-
msgid "Delete"
|
1072 |
-
msgstr "Löschen"
|
1073 |
|
1074 |
-
#: C:\Users\
|
1075 |
-
msgid "
|
1076 |
-
msgstr "
|
1077 |
|
1078 |
-
#: C:\Users\
|
1079 |
-
msgid "
|
1080 |
-
msgstr "
|
1081 |
|
1082 |
-
#: C:\Users\
|
1083 |
-
msgid "
|
1084 |
-
|
|
|
|
|
|
|
|
|
1085 |
|
1086 |
-
#: C:\Users\
|
1087 |
-
msgid "
|
1088 |
-
msgstr "
|
1089 |
|
1090 |
-
#: C:\Users\
|
1091 |
-
|
1092 |
-
|
|
|
|
|
|
|
|
|
1093 |
|
1094 |
-
#: C:\Users\
|
1095 |
-
msgid "
|
1096 |
-
|
|
|
|
|
|
|
|
|
1097 |
|
1098 |
-
#: C:\Users\
|
1099 |
-
msgid "
|
1100 |
-
|
|
|
|
|
1101 |
|
1102 |
-
#: C:\Users\
|
1103 |
-
msgid "
|
1104 |
-
|
|
|
|
|
1105 |
|
1106 |
-
#: C:\Users\
|
1107 |
-
msgid "
|
1108 |
-
|
|
|
|
|
1109 |
|
1110 |
-
#: C:\Users\
|
1111 |
-
msgid "
|
1112 |
-
msgstr "
|
1113 |
|
1114 |
-
#: C:\Users\
|
1115 |
-
msgid "
|
1116 |
-
msgstr "
|
1117 |
|
1118 |
-
#: C:\Users\
|
1119 |
-
msgid "
|
1120 |
-
msgstr "
|
1121 |
|
1122 |
-
#: C:\Users\
|
1123 |
-
msgid "
|
1124 |
-
msgstr "
|
1125 |
|
1126 |
-
#: C:\Users\
|
1127 |
-
msgid "
|
1128 |
-
msgstr "
|
1129 |
|
1130 |
-
#: C:\Users\
|
1131 |
-
msgid "
|
1132 |
-
|
|
|
1133 |
|
1134 |
-
#: C:\Users\
|
1135 |
-
msgid "
|
1136 |
-
|
|
|
|
|
|
|
1137 |
|
1138 |
-
#: C:\Users\
|
1139 |
-
|
1140 |
-
|
|
|
|
|
1141 |
|
1142 |
-
#: C:\Users\
|
1143 |
-
msgid "
|
1144 |
-
msgstr "
|
1145 |
|
1146 |
-
#: C:\Users\
|
1147 |
-
msgid "
|
1148 |
-
msgstr "
|
1149 |
|
1150 |
-
#: C:\Users\
|
1151 |
-
|
1152 |
-
|
1153 |
-
msgstr "Registrieren Sie Ihre Version."
|
1154 |
|
1155 |
-
#: C:\Users\
|
1156 |
-
|
1157 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1158 |
|
1159 |
-
#: C:\Users\
|
1160 |
-
|
1161 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1162 |
|
1163 |
-
#: C:\Users\
|
1164 |
-
msgid "
|
1165 |
-
msgstr "
|
1166 |
|
1167 |
-
#: C:\Users\
|
1168 |
-
msgid "
|
1169 |
-
msgstr "
|
1170 |
|
1171 |
-
#: C:\Users\
|
1172 |
-
|
1173 |
-
|
1174 |
-
msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
|
1175 |
|
1176 |
-
#: C:\Users\
|
1177 |
#, fuzzy
|
1178 |
-
msgid "
|
1179 |
-
msgstr "
|
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\
|
1230 |
-
|
1231 |
-
|
|
|
|
|
|
|
1232 |
|
1233 |
-
#: C:\Users\
|
1234 |
-
msgid "
|
1235 |
-
msgstr "
|
1236 |
|
1237 |
-
#: C:\Users\
|
1238 |
-
msgid "
|
1239 |
-
msgstr "
|
1240 |
|
1241 |
-
#: C:\Users\
|
1242 |
-
msgid "
|
1243 |
-
msgstr "
|
1244 |
|
1245 |
-
#: C:\Users\
|
1246 |
-
msgid "
|
1247 |
-
msgstr "
|
1248 |
|
1249 |
-
#: C:\Users\
|
1250 |
-
msgid "
|
1251 |
-
msgstr "
|
1252 |
|
1253 |
-
#: C:\Users\
|
1254 |
-
|
1255 |
-
|
1256 |
-
msgstr "Keine hochgeladenen Anhänge"
|
1257 |
|
1258 |
-
#: C:\Users\
|
1259 |
-
|
1260 |
-
|
1261 |
-
msgid "Click to see the current attachment"
|
1262 |
-
msgstr "Klicken um Anhänge zu sehen"
|
1263 |
|
1264 |
-
#: C:\Users\
|
1265 |
-
msgid "
|
1266 |
-
|
|
|
1267 |
|
1268 |
-
#: C:\Users\
|
1269 |
-
msgid "
|
1270 |
-
|
|
|
|
|
1271 |
|
1272 |
-
#: C:\Users\
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
|
|
|
|
|
|
|
|
1276 |
|
1277 |
-
#: C:\Users\
|
1278 |
-
msgid "
|
1279 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1280 |
|
1281 |
-
#: C:\Users\
|
1282 |
-
msgid "
|
1283 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1284 |
|
1285 |
-
#: C:\Users\
|
1286 |
-
msgid "
|
1287 |
-
msgstr "
|
1288 |
|
1289 |
-
#: C:\Users\
|
1290 |
-
msgid "
|
1291 |
-
msgstr "
|
1292 |
|
1293 |
-
#: C:\Users\
|
1294 |
-
|
1295 |
-
|
|
|
|
|
1296 |
|
1297 |
-
#: C:\Users\
|
1298 |
-
msgid "
|
1299 |
-
msgstr "
|
1300 |
|
1301 |
-
#: C:\Users\
|
1302 |
-
msgid "
|
1303 |
-
msgstr "
|
1304 |
|
1305 |
-
#: C:\Users\
|
1306 |
-
#: C:\Users\
|
1307 |
msgid "Activate/Deactivate Addons"
|
1308 |
msgstr "Aktivieren/Deaktivieren von Add-Ons"
|
1309 |
|
1310 |
-
#: C:\Users\
|
1311 |
msgid "Name/Description"
|
1312 |
msgstr "Name/Beschreibung"
|
1313 |
|
1314 |
-
#: C:\Users\
|
1315 |
msgid "Status"
|
1316 |
msgstr "Status"
|
1317 |
|
1318 |
-
#: C:\Users\
|
1319 |
-
#: C:\Users\
|
1320 |
-
#: C:\Users\
|
1321 |
msgid "User-Listing"
|
1322 |
msgstr "User-Listing"
|
1323 |
|
1324 |
-
#: C:\Users\
|
1325 |
-
#: C:\Users\
|
1326 |
-
#: C:\Users\
|
1327 |
msgid "Active"
|
1328 |
msgstr "Aktiv"
|
1329 |
|
1330 |
-
#: C:\Users\
|
1331 |
-
#: C:\Users\
|
1332 |
-
#: C:\Users\
|
1333 |
msgid "Inactive"
|
1334 |
msgstr "Inaktiv"
|
1335 |
|
1336 |
-
#: C:\Users\
|
1337 |
-
#: C:\Users\
|
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\
|
1343 |
-
#: C:\Users\
|
1344 |
-
#: C:\Users\
|
1345 |
msgid "reCAPTCHA"
|
1346 |
msgstr "reCAPTCHA"
|
1347 |
|
1348 |
-
#: C:\Users\
|
1349 |
-
msgid "
|
1350 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1351 |
|
1352 |
-
#: C:\Users\
|
1353 |
-
msgid "
|
1354 |
-
msgstr "
|
1355 |
|
1356 |
-
#: C:\Users\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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\
|
1361 |
msgid "Number of Users/Page: "
|
1362 |
msgstr "Anzahl Benutzer/Seite"
|
1363 |
|
1364 |
-
#: C:\Users\
|
1365 |
msgid "Default Sorting Order: "
|
1366 |
msgstr "Standart Sortierfolge"
|
1367 |
|
1368 |
-
#: C:\Users\
|
1369 |
msgid "\"All-Userlisting\" Template"
|
1370 |
msgstr "\"All-Userlisting\" Template"
|
1371 |
|
1372 |
-
#: C:\Users\
|
1373 |
-
#: C:\Users\
|
1374 |
-
msgid "
|
1375 |
-
|
|
|
|
|
|
|
|
|
1376 |
|
1377 |
-
#: C:\Users\
|
1378 |
-
msgid "
|
1379 |
-
|
|
|
|
|
|
|
|
|
1380 |
|
1381 |
-
#: C:\Users\
|
1382 |
msgid "Avatar size: "
|
1383 |
msgstr "Avatar Größe"
|
1384 |
|
1385 |
-
#: C:\Users\
|
1386 |
msgid "Insert \"Sort By\" Field:"
|
1387 |
msgstr "\"Sortieren nach\" Feld einfügen"
|
1388 |
|
1389 |
-
#: C:\Users\
|
1390 |
-
#: C:\Users\
|
1391 |
msgid "Insert \"User-Meta\" Field:"
|
1392 |
msgstr "\"User Meta\" Feld einfügen"
|
1393 |
|
1394 |
-
#: C:\Users\
|
1395 |
-
#: C:\Users\
|
1396 |
msgid "Insert Extra Functions:"
|
1397 |
msgstr "Extra Funktionen einfügen"
|
1398 |
|
1399 |
-
#: C:\Users\
|
1400 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1401 |
msgstr "Zeige/Verberge Standart-\"All-User-Listing\"-Code"
|
1402 |
|
1403 |
-
#: C:\Users\
|
1404 |
-
#: C:\Users\
|
1405 |
-
msgid "
|
1406 |
-
|
|
|
|
|
|
|
|
|
1407 |
|
1408 |
-
#: C:\Users\
|
1409 |
msgid "\"Single-Userlisting\" Template"
|
1410 |
msgstr "\"Single-Userlisting\"-Template"
|
1411 |
|
1412 |
-
#: C:\Users\
|
1413 |
-
msgid "
|
1414 |
-
|
|
|
|
|
|
|
|
|
1415 |
|
1416 |
-
#: C:\Users\
|
1417 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1418 |
msgstr "Zeige/Verberge Standart-\"Single-User-Listing\"-Code"
|
1419 |
|
1420 |
-
#: C:\Users\
|
1421 |
-
msgid "
|
1422 |
-
|
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\
|
1439 |
-
msgid "
|
1440 |
-
msgstr "
|
1441 |
|
1442 |
-
#: C:\Users\
|
1443 |
-
msgid "
|
1444 |
-
msgstr "
|
1445 |
|
1446 |
-
#: C:\Users\
|
1447 |
-
|
1448 |
-
|
|
|
|
|
|
|
|
|
1449 |
|
1450 |
-
#: C:\Users\
|
1451 |
-
msgid "
|
1452 |
-
msgstr "
|
1453 |
|
1454 |
-
#: C:\Users\
|
1455 |
-
msgid "
|
1456 |
-
msgstr "
|
1457 |
|
1458 |
-
#: C:\Users\
|
1459 |
-
msgid "
|
1460 |
-
msgstr "
|
1461 |
|
1462 |
-
#: C:\Users\
|
1463 |
-
msgid "
|
1464 |
-
msgstr "
|
1465 |
|
1466 |
-
#: C:\Users\
|
1467 |
-
msgid "
|
1468 |
-
msgstr "
|
1469 |
|
1470 |
-
#: C:\Users\
|
1471 |
-
msgid "
|
1472 |
-
msgstr "
|
1473 |
|
1474 |
-
#: C:\Users\
|
1475 |
-
msgid "
|
1476 |
-
msgstr "
|
1477 |
|
1478 |
-
#: C:\Users\
|
1479 |
-
msgid "
|
1480 |
-
msgstr "
|
1481 |
|
1482 |
-
#: C:\Users\
|
1483 |
-
msgid "
|
1484 |
-
msgstr "
|
1485 |
|
1486 |
-
#: C:\Users\
|
1487 |
-
msgid "
|
1488 |
-
msgstr "
|
1489 |
|
1490 |
-
#: C:\Users\
|
1491 |
-
msgid "
|
1492 |
-
msgstr "
|
1493 |
|
1494 |
-
#: C:\Users\
|
1495 |
-
|
1496 |
-
|
|
|
|
|
|
|
1497 |
|
1498 |
-
#: C:\Users\
|
1499 |
-
|
1500 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1501 |
|
1502 |
-
#: C:\Users\
|
1503 |
-
msgid "
|
1504 |
-
msgstr "
|
1505 |
|
1506 |
-
#: C:\Users\
|
1507 |
-
msgid "
|
1508 |
-
msgstr "
|
1509 |
|
1510 |
-
#: C:\Users\
|
1511 |
-
|
1512 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1513 |
|
1514 |
-
#: C:\Users\
|
1515 |
-
|
1516 |
-
|
|
|
|
|
1517 |
|
1518 |
-
#: C:\Users\
|
1519 |
-
msgid "
|
1520 |
-
msgstr "
|
1521 |
|
1522 |
-
#: C:\Users\
|
1523 |
-
|
1524 |
-
|
1525 |
-
msgstr "Um den reCAPTCHA zu nutzen benötigen Sie einen Schlüssel von"
|
1526 |
|
1527 |
-
#: C:\Users\
|
1528 |
-
msgid "
|
1529 |
-
msgstr "
|
1530 |
|
1531 |
-
#: C:\Users\
|
1532 |
-
msgid "
|
1533 |
-
msgstr "
|
1534 |
|
1535 |
-
#: C:\Users\
|
1536 |
-
msgid "
|
1537 |
-
msgstr "
|
1538 |
|
1539 |
-
#: C:\Users\
|
1540 |
-
#: C:\Users\
|
1541 |
msgid "You must give your option a title."
|
1542 |
msgstr "Sie müssen der Option einen Titel geben."
|
1543 |
|
1544 |
-
#: C:\Users\
|
1545 |
-
#: C:\Users\
|
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\
|
1550 |
-
#: C:\Users\
|
1551 |
msgid "You must enter a valid meta-key."
|
1552 |
msgstr "Geben Sie einen gültigen Meta-Key ein."
|
1553 |
|
1554 |
-
#: C:\Users\
|
1555 |
-
#: C:\Users\
|
1556 |
-
#: C:\Users\
|
1557 |
-
#: C:\Users\
|
1558 |
msgid "That meta-key is already in use."
|
1559 |
msgstr "Der Meta-Key wird bereits verwendet."
|
1560 |
|
1561 |
-
#: C:\Users\
|
1562 |
-
#: C:\Users\
|
1563 |
-
msgid "
|
|
|
1564 |
msgstr "Es ist bereits ein Avatar vorhanden."
|
1565 |
|
1566 |
-
#: C:\Users\
|
1567 |
-
#: C:\Users\
|
1568 |
-
msgid "
|
|
|
|
|
1569 |
msgstr "Es existiert bereits eine \"Agree to Terms and Conditions\"-Checkbox."
|
1570 |
|
1571 |
-
#: C:\Users\
|
1572 |
-
#: C:\Users\
|
1573 |
msgid "The textarea row value must be numeric."
|
1574 |
msgstr "Der Wert der Zeilenanzahl muss numerisch sein."
|
1575 |
|
1576 |
-
#: C:\Users\
|
1577 |
-
#: C:\Users\
|
1578 |
msgid "The maxlength attribute must be numeric."
|
1579 |
msgstr "Das \"maxlength\"-Attribut muss numerisch sein."
|
1580 |
|
1581 |
-
#: C:\Users\
|
1582 |
-
#: C:\Users\
|
1583 |
msgid "The value must be between 20 and 200!"
|
1584 |
msgstr "Der Wert muss zwischen 20 und 200 liegen."
|
1585 |
|
1586 |
-
#: C:\Users\
|
1587 |
-
#: C:\Users\
|
1588 |
msgid "The width component of the entered value must be numeric!"
|
1589 |
msgstr "Der Wert \"Breite\" muss numerisch sein."
|
1590 |
|
1591 |
-
#: C:\Users\
|
1592 |
-
#: C:\Users\
|
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\
|
1597 |
-
#: C:\Users\
|
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\
|
1602 |
-
#: C:\Users\
|
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\
|
1607 |
-
#: C:\Users\
|
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\
|
1612 |
-
#: C:\Users\
|
1613 |
msgid "The entered avatar size must be numeric!"
|
1614 |
msgstr "Die eingegebene Größe des Avatars muss numerisch sein"
|
1615 |
|
1616 |
-
#: C:\Users\
|
1617 |
-
#: C:\Users\
|
1618 |
msgid "There was an error, please try again."
|
1619 |
msgstr "Fehler, bitte versuchen Sie es erneut."
|
1620 |
|
1621 |
-
#: C:\Users\
|
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\
|
1696 |
msgid "the current user?"
|
1697 |
msgstr "den aktuellen Benutzer?"
|
1698 |
|
1699 |
-
#: C:\Users\
|
1700 |
-
#: C:\Users\
|
1701 |
msgid "Your account on"
|
1702 |
msgstr "Ihr Profil auf"
|
1703 |
|
1704 |
-
#: C:\Users\
|
1705 |
msgid "has been approved!"
|
1706 |
msgstr "wurde genehmigt"
|
1707 |
|
1708 |
-
#: C:\Users\
|
1709 |
msgid "An administrator has just approved your account on"
|
1710 |
msgstr "Ein Administrator hat Ihr Profil soeben genehmigt."
|
1711 |
|
1712 |
-
#: C:\Users\
|
1713 |
msgid "has been unapproved!"
|
1714 |
msgstr "wurde nicht genehmigt."
|
1715 |
|
1716 |
-
#: C:\Users\
|
1717 |
msgid "An administrator has just unapproved your account on"
|
1718 |
msgstr "Ein Administrator hat Ihr Profil nicht genehmigt auf"
|
1719 |
|
1720 |
-
#: C:\Users\
|
1721 |
-
#: C:\Users\
|
1722 |
msgid "Approve"
|
1723 |
msgstr "Genehmigt"
|
1724 |
|
1725 |
-
#: C:\Users\
|
1726 |
-
#: C:\Users\
|
1727 |
msgid "Unapproved"
|
1728 |
msgstr "Nicht genehmigt"
|
1729 |
|
1730 |
-
#: C:\Users\
|
1731 |
-
#: C:\Users\
|
1732 |
msgid "Unapprove"
|
1733 |
msgstr "Nicht genehmigt"
|
1734 |
|
1735 |
-
#: C:\Users\
|
1736 |
-
#: C:\Users\
|
1737 |
msgid "Approved"
|
1738 |
msgstr "Genehmigt"
|
1739 |
|
1740 |
-
#: C:\Users\
|
1741 |
msgid "unapprove"
|
1742 |
msgstr "nicht genehmigt"
|
1743 |
|
1744 |
-
#: C:\Users\
|
1745 |
msgid "approve"
|
1746 |
msgstr "genehmigt"
|
1747 |
|
1748 |
-
#: C:\Users\
|
1749 |
msgid "Are you sure you want to"
|
1750 |
msgstr "Sind Sie sicher dass Sie"
|
1751 |
|
1752 |
-
#: C:\Users\
|
1753 |
msgid "this user?"
|
1754 |
msgstr "diesen Benutzer"
|
1755 |
|
1756 |
-
#: C:\Users\
|
1757 |
-
msgid "
|
1758 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1759 |
|
1760 |
-
#: C:\Users\
|
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\
|
1765 |
msgid "Profile Builder Login Widget"
|
1766 |
msgstr "Profile Login Builder Widget"
|
1767 |
|
1768 |
-
#: C:\Users\
|
1769 |
msgid "Don't have an account?"
|
1770 |
msgstr "Sie haben noch kein Profil?"
|
1771 |
|
1772 |
-
#: C:\Users\
|
1773 |
msgid "Lost Your Password?"
|
1774 |
msgstr "Sie haben Ihr Passwort vergessen?"
|
1775 |
|
1776 |
-
#: C:\Users\
|
1777 |
msgid "Login"
|
1778 |
msgstr "Einloggen"
|
1779 |
|
1780 |
-
#: C:\Users\
|
1781 |
msgid "After login redirect URL:"
|
1782 |
msgstr "Weiterleitungs-URL nach dem Einloggen:"
|
1783 |
|
1784 |
-
#: C:\Users\
|
1785 |
msgid "Register page URL (optional)"
|
1786 |
msgstr "URL zur Registrierungsseite:"
|
1787 |
|
1788 |
-
#: C:\Users\
|
1789 |
msgid "Password Recovery page URL (optional)"
|
1790 |
msgstr "URL zur \"Passwort vergessen\"-Seite"
|
1791 |
|
1792 |
-
#: C:\Users\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1793 |
#, php-format
|
1794 |
-
msgid "
|
|
|
|
|
|
|
|
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: C:\Users\
|
1798 |
#, php-format
|
1799 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1800 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1801 |
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-12-11 15:09+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-12-11 15:09+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"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Generator: Poedit 1.5.4\n"
|
15 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
|
16 |
+
"pro\n"
|
17 |
|
18 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "The information size you were trying to submit was larger than"
|
21 |
msgstr "Die Information die Sie übertragen wollen ist größer als"
|
22 |
|
23 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
24 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
25 |
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
26 |
+
msgstr ""
|
27 |
+
"Dies wird für gewöhnlich verursacht wenn große Dateien hochgeladen werden "
|
28 |
+
"sollen."
|
29 |
|
30 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
31 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
32 |
msgid "Since it was also larger than"
|
33 |
msgstr "Es war größer als:"
|
34 |
|
35 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
36 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
37 |
msgid "no additional information is available."
|
38 |
msgstr "keine weiteren Informationen verfügbar."
|
39 |
|
40 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
|
41 |
msgid "You must be logged in to edit your profile."
|
42 |
msgstr "Sie müssen angemeldet sein um Ihr Profil zu ändern"
|
43 |
|
44 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
|
45 |
msgid "The avatar was successfully deleted."
|
46 |
msgstr "Der Avatar wurde gelöscht"
|
47 |
|
48 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
49 |
msgid "The attachment"
|
50 |
msgstr "Der Anhang"
|
51 |
|
52 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
53 |
msgid "was successfully deleted."
|
54 |
msgstr "wurde erfolgreich gelöscht"
|
55 |
|
56 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
|
57 |
msgid "The changes have been successfully saved."
|
58 |
msgstr "Die Änderungen wurden gespeichert"
|
59 |
|
60 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
61 |
+
msgid ""
|
62 |
+
"The email address you entered is already registered to a different user."
|
63 |
msgstr "Die eingegebene E-Mail Adresse ist bereits registriert"
|
64 |
|
65 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
67 |
msgid "The email address was"
|
68 |
msgstr "Diese E-Mail wurde"
|
69 |
|
70 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
71 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
72 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
73 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
74 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
76 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
77 |
msgid "NOT"
|
78 |
msgstr "NICHT"
|
79 |
|
80 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
81 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
82 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
83 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
84 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
85 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
86 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
87 |
msgid "updated along with the rest of the information."
|
88 |
msgstr "mit den restlichen Informationen aktualisiert."
|
89 |
|
90 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
91 |
msgid "The email address you entered is invalid."
|
92 |
msgstr "Die eingegebene E-Mail Adresse ist ungültig!"
|
93 |
|
94 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
95 |
msgid "The passwords you entered do not match."
|
96 |
msgstr "Die eingegebenen Passwörter stimmen nicht überein"
|
97 |
|
98 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
99 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
100 |
msgid "The password was"
|
101 |
msgstr "Das Passwort ist"
|
102 |
|
103 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
104 |
msgid "You didn't complete both password fields."
|
105 |
msgstr "Sie haben die beiden Passwort Felder nicht ausgefüllt"
|
106 |
|
107 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
108 |
msgid "Your profile was NOT updated!"
|
109 |
msgstr "Ihr Profil wurde NICHT aktualisiert"
|
110 |
|
111 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
|
112 |
msgid "There was an error while trying to upload the following attachments:"
|
113 |
msgstr "Es gab einen Fehler beim hochladen der folgenden Datei:"
|
114 |
|
115 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
116 |
msgid "Possible cause: the size was bigger than"
|
117 |
msgstr "Möglicher Grund: die Datei war größer als"
|
118 |
|
119 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
120 |
msgid "The listed attachements were"
|
121 |
msgstr "Die augelisteten Anhänger sind"
|
122 |
|
123 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
124 |
msgid "There was an error while trying to upload your avatar picture."
|
125 |
msgstr "Es gab einen Fehler beim Hochladen des Avartars."
|
126 |
|
127 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
128 |
msgid "Possible cause: size/incorrect file-type."
|
129 |
msgstr "Möglicher Grund: Größe oder falscher Dateityp."
|
130 |
|
131 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
132 |
msgid "The avatar was"
|
133 |
msgstr "Der Avatar ist"
|
134 |
|
135 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
136 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
137 |
msgid "There was an error while trying to upload the following attachment(s)"
|
138 |
msgstr "Es gab einen Fehler beim Hochladen der/des folgenden Anhang/e:"
|
139 |
|
140 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
141 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
142 |
msgid "Only files with the following extension(s) can be uploaded:"
|
143 |
msgstr "Nur Dateien mit den folgenden Anhängen sind verwendbar:"
|
144 |
|
145 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
146 |
msgid "This file was"
|
147 |
msgstr "Der Anhang ist"
|
148 |
|
149 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
150 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
151 |
msgid "Name"
|
152 |
msgstr "Name"
|
153 |
|
154 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
155 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:150
|
156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
158 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
159 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:497
|
160 |
+
msgid "Username"
|
161 |
+
msgstr "Benutzername"
|
162 |
+
|
163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
|
164 |
msgid "Usernames cannot be changed."
|
165 |
msgstr "Benutzernamen können nicht geändert werden"
|
166 |
|
167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
|
168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
|
169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
|
170 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
|
171 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
|
172 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
|
173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
|
174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
|
175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
|
176 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
|
177 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
178 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
179 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
180 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:297
|
181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:362
|
182 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:428
|
183 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:482
|
184 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:530
|
185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:593
|
186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:702
|
187 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
|
188 |
msgid "This field is marked as required by the administrator."
|
189 |
msgstr "Dieses Feld wird benötigt."
|
190 |
|
191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
|
192 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
|
193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
|
194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
|
195 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
|
197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
|
198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
|
199 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
|
200 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
|
201 |
+
msgid ""
|
202 |
+
"This field wasn't updated because you entered and empty string (It was "
|
203 |
+
"marked as required by the administrator."
|
204 |
+
msgstr ""
|
205 |
+
"Das Feld wurde nicht aktualisiert da es leer ist, jedoch benötigt wird."
|
206 |
+
|
207 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
208 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
209 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
210 |
+
msgid "First Name"
|
211 |
+
msgstr "Vorname"
|
212 |
+
|
213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
214 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
215 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
216 |
+
msgid "Last Name"
|
217 |
+
msgstr "Nachname"
|
218 |
+
|
219 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
220 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
221 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
222 |
+
msgid "Nickname"
|
223 |
+
msgstr "Nickname"
|
224 |
+
|
225 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
|
226 |
msgid "Display name publicly as"
|
227 |
msgstr "angezeigter Name..."
|
228 |
|
229 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
230 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
231 |
msgid "Contact Info"
|
232 |
msgstr "E-Mail"
|
233 |
|
234 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
235 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
236 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
237 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
238 |
+
msgid "E-mail"
|
239 |
+
msgstr "E-Mail"
|
240 |
+
|
241 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
|
242 |
msgid "(required)"
|
243 |
msgstr "erforderlich"
|
244 |
|
245 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
246 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
247 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
248 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:539
|
249 |
+
msgid "Website"
|
250 |
+
msgstr "Website"
|
251 |
+
|
252 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
253 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
254 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
255 |
+
msgid "AIM"
|
256 |
+
msgstr "AIM"
|
257 |
+
|
258 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
259 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
260 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
261 |
+
msgid "Yahoo IM"
|
262 |
+
msgstr "Yahoo IM"
|
263 |
+
|
264 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
265 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
266 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
267 |
+
msgid "Jabber / Google Talk"
|
268 |
+
msgstr "Jabber / Google Talk"
|
269 |
+
|
270 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
271 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
272 |
msgid "About Yourself"
|
273 |
msgstr "Über Sie"
|
274 |
|
275 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
276 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
277 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
278 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:545
|
279 |
+
msgid "Biographical Info"
|
280 |
+
msgstr "Sonstige Angaben"
|
281 |
+
|
282 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
283 |
+
msgid "New Password"
|
284 |
+
msgstr "Neues Passwort"
|
285 |
+
|
286 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
287 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
288 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
289 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
290 |
msgid "Repeat Password"
|
291 |
msgstr "Passwort wiederholen"
|
292 |
|
293 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
|
294 |
msgid "Update"
|
295 |
msgstr "Aktualisieren"
|
296 |
|
297 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:45
|
298 |
msgid "You are currently logged in as"
|
299 |
msgstr "Sie sind eingeloggt als"
|
300 |
|
301 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:46
|
302 |
msgid "Log out of this account"
|
303 |
msgstr "Aus diesem Profil ausloggen"
|
304 |
|
305 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:46
|
306 |
msgid "Log out"
|
307 |
msgstr "Ausloggen"
|
308 |
|
309 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:64
|
310 |
msgid "You have successfully logged in as"
|
311 |
msgstr "Sie sind eingeloggt als"
|
312 |
|
313 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:91
|
314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:105
|
315 |
+
msgid ""
|
316 |
+
"You will soon be redirected automatically. If you see this page for more "
|
317 |
+
"than 1 second, please click"
|
318 |
+
msgstr ""
|
319 |
+
"Sie werden umgehend weitergeleitet. Wenn Sie diesen Text länger als 3 "
|
320 |
+
"Sekunden sehen klicken Sie bitte "
|
321 |
|
322 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:91
|
323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:105
|
324 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
325 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
326 |
msgid "here"
|
327 |
msgstr "hier"
|
328 |
|
329 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:123
|
330 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
331 |
msgid "ERROR:"
|
332 |
msgstr "FEHLER"
|
333 |
|
334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:123
|
335 |
msgid "The username field is empty"
|
336 |
msgstr "Das Feld Benutzername ist leer"
|
337 |
|
338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
|
339 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
340 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
341 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
342 |
msgid "Password"
|
343 |
msgstr "Passwort"
|
344 |
|
345 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:166
|
346 |
msgid "Log in"
|
347 |
msgstr "Einloggen"
|
348 |
|
349 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
|
350 |
msgid "Remember me"
|
351 |
msgstr "Daten merken"
|
352 |
|
353 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
354 |
msgid "Lost password?"
|
355 |
msgstr "Passwort vergessen"
|
356 |
|
357 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
358 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
359 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
360 |
msgid "ERROR"
|
361 |
msgstr "FEHLER"
|
362 |
|
363 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
364 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
365 |
+
msgid ""
|
366 |
+
"Your account has to be confirmed by an administrator before you can use the "
|
367 |
+
"\"Password Reset\" feature."
|
368 |
+
msgstr ""
|
369 |
+
"Ihr Account muss erst durch den Administrator freigegeben werden bevor Sie "
|
370 |
+
"das Passwort ändern können."
|
371 |
|
372 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
373 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
374 |
msgid "A password reset email has been sent to "
|
375 |
msgstr "Eine E-Mail zum zurücsetzen Ihres Passwortes wurde gesendet an:"
|
376 |
|
377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
378 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
379 |
msgid "Following the link sent in the email address will reset the password."
|
380 |
msgstr "Folgen Sie dem Link in der E-Mail um Ihr Passwort zurückzusetzen."
|
381 |
|
382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
383 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
384 |
+
msgid ""
|
385 |
+
"Someone requested that the password be reset for the following account: "
|
386 |
+
msgstr ""
|
387 |
+
"Es wurde ein Anfrage zum Zurücksetzen Ihres Passwortes gestellt. Die Anfrage "
|
388 |
+
"bezieht sich auf folgenden Account:"
|
389 |
|
390 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
391 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
392 |
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
393 |
+
msgstr ""
|
394 |
+
"Wenn Sie diese Anfrage nicht gesendet haben, ignorieren Sie bitte diese E-"
|
395 |
+
"Mail!"
|
396 |
|
397 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
398 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
399 |
msgid "To reset your password, visit the following link:"
|
400 |
msgstr "Um Ihr Passwort zurückzusetzen folgen Sie bitte dem folgenden Link:"
|
401 |
|
402 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
403 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
404 |
msgid "Password Reset Feature from"
|
405 |
msgstr "Passwort zurücksetzen von"
|
406 |
|
407 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
408 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
409 |
msgid "There was an error while trying to send the activation link to "
|
410 |
msgstr "Es gab einen Fehler beim Senden des Aktivierungslinks an "
|
411 |
|
412 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
413 |
msgid "The email address entered wasn't found in the database!"
|
414 |
+
msgstr ""
|
415 |
+
"Die angegebene E-Mail-Adresse konnte nicht in unserer Datenbank gefunden "
|
416 |
+
"werden!"
|
417 |
|
418 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
419 |
msgid "Please check that you entered the correct email address."
|
420 |
msgstr "Bitte überprüfen Sie die eingegebene E-Mail-Adresse."
|
421 |
|
422 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
423 |
msgid "The username entered wasn't found in the database!"
|
424 |
+
msgstr ""
|
425 |
+
"Der angegebene Benutzername konnte nicht in unserer Datenbank gefunden "
|
426 |
+
"werden!"
|
427 |
|
428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
429 |
msgid "Please check that you entered the correct username."
|
430 |
msgstr "Bitte überprüfen Sie den eingegebenen Benutzernamen."
|
431 |
|
432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
433 |
msgid "Your password has been successfully changed!"
|
434 |
msgstr "Ihr Passwort wurde erfolgreich geändert!"
|
435 |
|
436 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
437 |
msgid "You have successfully reset your password to:"
|
438 |
msgstr "Ihr neues Passwort lautet:"
|
439 |
|
440 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
441 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
442 |
msgid "Password Successfully Reset for"
|
443 |
msgstr "Passwort zurückgesetzt für:"
|
444 |
|
445 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
446 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
447 |
msgid "from"
|
448 |
msgstr "von"
|
449 |
|
450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
451 |
msgid "has requested a password change via the password reset feature."
|
452 |
msgstr "hat eine Anfrage zum Zurücksetzen des Passwortes gesendet."
|
453 |
|
454 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
455 |
msgid "His/her new password is:"
|
456 |
msgstr "Ihr neues Passwort lautet:"
|
457 |
|
458 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
459 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
460 |
msgid "The entered passwords don't match!"
|
461 |
msgstr "Die eingegebenen Passwörter stimmen nicht überein!"
|
462 |
|
463 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
464 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
465 |
msgid "Reset Password"
|
466 |
msgstr "Passwort zurücksetzen"
|
467 |
|
468 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
469 |
msgid "Invalid key!"
|
470 |
msgstr "Ungültige Eingabe"
|
471 |
|
472 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
473 |
msgid "Please enter your username or email address."
|
474 |
+
msgstr ""
|
475 |
+
"Bitte geben Sie Ihren Benutzernamen oder Ihre E-Mail-Adresse ein mit der Sie "
|
476 |
+
"sich registriert haben."
|
477 |
|
478 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
479 |
msgid "You will receive a link to create a new password via email."
|
480 |
+
msgstr ""
|
481 |
+
"Sie erhalten eine E-Mail mit einem Link zum Zurücksetzen des Passwortes."
|
482 |
|
483 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
484 |
msgid "Username or E-mail"
|
485 |
msgstr "Benutzername oder E-Mail"
|
486 |
|
487 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
488 |
msgid "Get New Password"
|
489 |
msgstr "Neues Passwort anfordern"
|
490 |
|
491 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
492 |
+
#, fuzzy, php-format
|
493 |
msgid ""
|
494 |
"To activate your user, please click the following link:\n"
|
495 |
"\n"
|
496 |
+
"%s%s%s\n"
|
497 |
"\n"
|
498 |
"After you activate, you will receive *another email* with your login.\n"
|
499 |
"\n"
|
504 |
"\n"
|
505 |
"Nach der Aktivierung erhalten Sie eine E-Mail mit Ihren Benutzerdaten.\n"
|
506 |
|
507 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
508 |
#, php-format
|
509 |
msgid "[%1$s] Activate %2$s"
|
510 |
msgstr "[%1$s] Aktivieren %2$s"
|
511 |
|
512 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
513 |
msgid "Invalid activation key!"
|
514 |
msgstr "Falscher Aktivierungsschlüssel"
|
515 |
|
516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
517 |
msgid "The user is already active!"
|
518 |
msgstr "Der Benutzer ist bereits aktiviert."
|
519 |
|
520 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
521 |
msgid "Could not create user!"
|
522 |
msgstr "Benutzer kann nicht erstellt werden."
|
523 |
|
524 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
525 |
msgid "That username is already activated!"
|
526 |
msgstr "Der Benutzername ist bereits aktiviert."
|
527 |
|
528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
529 |
msgid "The user was successfully activated."
|
530 |
msgstr "Der Benutzer wurde erfolgreich aktiviert"
|
531 |
|
532 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
533 |
msgid "There was an error while trying to activate the user."
|
534 |
msgstr "Es gab einen Fehler bei der Aktivierung des Benutzers."
|
535 |
|
536 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
537 |
msgid "New subscriber on"
|
538 |
msgstr "Neue Registreirung bei:"
|
539 |
|
540 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
541 |
+
msgid ""
|
542 |
+
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
543 |
+
"please remember that you need to approve this user before he/she can log in!"
|
544 |
+
msgstr ""
|
545 |
+
"Die \"Zustimmung des Administrators\" ist zur Aktivierung des Benutzers "
|
546 |
+
"erforderlich."
|
547 |
|
548 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
549 |
msgid "A new subscriber has (been) registered!"
|
550 |
msgstr "Ein neuer Benutzer hat sich angemeldet!"
|
551 |
|
552 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
553 |
msgid "A new account has been created for you."
|
554 |
msgstr "Ein neues Benutzerprofil wurde für Sie erstellt."
|
555 |
|
556 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
557 |
msgid "Welcome to"
|
558 |
msgstr "Willkommen bei"
|
559 |
|
560 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
561 |
msgid "Your username is:"
|
562 |
msgstr "Ihr Benutzername ist:"
|
563 |
|
564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
565 |
msgid "and password:"
|
566 |
msgstr "und das Passwort:"
|
567 |
|
568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
569 |
+
msgid ""
|
570 |
+
"Before you can access your account, an administrator needs to approve it. "
|
571 |
+
"You will be notified via email."
|
572 |
+
msgstr ""
|
573 |
+
"Bevor Sie auf Ihr Benutzerprofil zugreifen können ist die Zustimmung eines "
|
574 |
+
"Administrators nötig. Sie werden per E-Mail über die Zustimmung informiert."
|
575 |
|
576 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
577 |
msgid "The user was NOT created!"
|
578 |
msgstr "Der Benutzer wurde nicht erstellt."
|
579 |
|
580 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
581 |
msgid "A username is required for registration."
|
582 |
msgstr "Ein Benutzername ist zur Registrierung notwendig."
|
583 |
|
584 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
585 |
msgid "Sorry, that username already exists!"
|
586 |
msgstr "Der Benutzername ist bereits registriert."
|
587 |
|
588 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
589 |
msgid "You must enter a valid email address."
|
590 |
msgstr "Sie müssen eine gültige E-Mail-Adresse eingeben."
|
591 |
|
592 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
593 |
msgid "Sorry, that email address is already used!"
|
594 |
msgstr "Diese E-Mail-Adresse ist bereits registriert."
|
595 |
|
596 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
597 |
msgid "You didn't complete one of the password-fields!"
|
598 |
msgstr "Eines der Passwortfelder wurde nicht ausgefüllt."
|
599 |
|
600 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
601 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
602 |
msgid "The account was NOT created!"
|
603 |
msgstr "Der Benutzer wurde nicht erstellt."
|
604 |
|
605 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
606 |
msgid "You must agree to the terms and conditions before registering!"
|
607 |
msgstr "Sie müssen den AGB zustimmen!"
|
608 |
|
609 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
610 |
msgid "(Several required fields were left uncompleted)"
|
611 |
msgstr "Einige zur Registrierung notwendige Felder wurde nicht ausgefüllt."
|
612 |
|
613 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
614 |
msgid "This username is already reserved to be used soon."
|
615 |
msgstr "Dieser Benutzername ist reserviert."
|
616 |
|
617 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
618 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
619 |
msgid "Please try a different one!"
|
620 |
msgstr "Bitte wählen Sie einen anderen."
|
621 |
|
622 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
623 |
msgid "This email address is already reserved to be used soon."
|
624 |
msgstr "Dieser E-Mail-Adresse ist reserviert."
|
625 |
|
626 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
627 |
msgid "You are logged in as"
|
628 |
msgstr "Sie sind eingeloggt als "
|
629 |
|
630 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
631 |
msgid "You don't need another account."
|
632 |
msgstr "Sie benötigen keinen weiteren Account."
|
633 |
|
634 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
635 |
msgid "Log out of this account."
|
636 |
msgstr "Aus diesem Profil ausloggen."
|
637 |
|
638 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
639 |
msgid "Logout"
|
640 |
msgstr "Ausloggen"
|
641 |
|
642 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1169
|
643 |
msgid "An email has been sent to "
|
644 |
msgstr "An "
|
645 |
|
646 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1169
|
647 |
msgid "with information on how to activate his/her account"
|
648 |
+
msgstr ""
|
649 |
+
"wurde eine E-Mail mit der Information wie das Profil aktiviert wird gesendet."
|
650 |
|
651 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1174
|
652 |
msgid "A user account has been created for"
|
653 |
msgstr "Ein Benutzer wurde erstellt für"
|
654 |
|
655 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
656 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
657 |
+
msgid ""
|
658 |
+
"You will soon be redirected automatically. If you see this page for more "
|
659 |
+
"than 3 seconds, please click"
|
660 |
+
msgstr ""
|
661 |
+
"Sie werden umgehend weitergeleitet. Wenn Sie diesen Text länger als 3 "
|
662 |
+
"Sekunden sehen klicken Sie bitte "
|
663 |
|
664 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
665 |
+
msgid ""
|
666 |
+
"An email has been sent to you with information on how to activate your "
|
667 |
+
"account"
|
668 |
+
msgstr ""
|
669 |
+
"Eine E-Mail, mit der Information wie Ihr Profil aktiviert wird, wurde an Sie "
|
670 |
+
"gesendet"
|
671 |
|
672 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
673 |
msgid "Thank you for registering"
|
674 |
msgstr "Vielen Dank für die Registrierung."
|
675 |
|
676 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
677 |
msgid "An error occured while trying to send the notification email."
|
678 |
+
msgstr ""
|
679 |
+
"Ein Fehler ist aufgetreten beim Versuch, die Benachrichtigungs-Email zu "
|
680 |
+
"senden."
|
681 |
|
682 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
683 |
msgid "An email containing activation instructions was successfully sent."
|
684 |
+
msgstr ""
|
685 |
+
"Eine E-Mail mit Anweisungen zur Aktivierung wurde erfolgreich gesendet."
|
686 |
|
687 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
688 |
msgid "An email containing the username and password was successfully sent."
|
689 |
+
msgstr ""
|
690 |
+
"Eine E-Mail mit dem Benutzernamen und Passwort wurde erfolgreich gesendet."
|
691 |
|
692 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
693 |
msgid "Users can register themselves or you can manually create users here."
|
694 |
+
msgstr ""
|
695 |
+
"Benutzer können sich selbstständig registrieren oder manuell angelegt werden."
|
696 |
|
697 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
698 |
+
msgid ""
|
699 |
+
"Users cannot currently register themselves, but you can manually create "
|
700 |
+
"users here."
|
701 |
+
msgstr ""
|
702 |
+
"Benutzer können sich nicht selbstständig registrieren jedoch manuell "
|
703 |
+
"angelegt werden."
|
704 |
|
705 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
706 |
msgid "Only an administrator can add new users."
|
707 |
msgstr "Nur Administratoren können neue Benutze anlegen."
|
708 |
|
709 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
710 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
711 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
712 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
713 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
714 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
715 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
716 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
717 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
718 |
+
msgid ""
|
719 |
+
"This field must be filled out before registering (It was marked as required "
|
720 |
+
"by the administrator)"
|
721 |
msgstr "Dieses Feld wird zur Registrierung benötigt."
|
722 |
|
723 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
724 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
725 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
726 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
727 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
728 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
729 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
730 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
731 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
732 |
msgid "This field is marked as required by the administrator"
|
733 |
msgstr "Dieses Feld wird zur Registrierung benötigt."
|
734 |
|
735 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
736 |
msgid "Anti-Spam"
|
737 |
msgstr "Anti-Spam"
|
738 |
|
739 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
740 |
msgid "Send these credentials via email."
|
741 |
msgstr "Senden Sie diese Anmeldeinformationen per E-Mail."
|
742 |
|
743 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
744 |
msgid "Add User"
|
745 |
msgstr "Benutzer hinzufügen"
|
746 |
|
747 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
748 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
749 |
msgid "Register"
|
750 |
msgstr "Regstrieren"
|
751 |
|
752 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
|
753 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
|
754 |
+
msgid "Show/Hide the Admin Bar on Front End"
|
755 |
+
msgstr "Anzeigen/Verbergen der Admin-Leiste im Front-End"
|
756 |
|
757 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
|
758 |
+
msgid "User-group"
|
759 |
+
msgstr "Benutzergruppe"
|
760 |
|
761 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
|
762 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
|
763 |
+
msgid "Visibility"
|
764 |
+
msgstr "Sichtbarkeit"
|
765 |
|
766 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:28
|
767 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
768 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
769 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
770 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
|
771 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
|
772 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
|
773 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
|
774 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
|
775 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
|
776 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
|
777 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
|
778 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
|
779 |
+
msgid "Show"
|
780 |
+
msgstr "Anzeigen"
|
781 |
|
782 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:29
|
783 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
784 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
785 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
786 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
|
787 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
|
788 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
|
789 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
|
790 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
|
791 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
|
792 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
|
793 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
|
794 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
|
795 |
+
msgid "Hide"
|
796 |
+
msgstr "Verbergen"
|
797 |
|
798 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:40
|
799 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
800 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
801 |
+
msgid "NOTE:"
|
802 |
+
msgstr "Hinweis"
|
803 |
|
804 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:41
|
805 |
+
msgid ""
|
806 |
+
"If you added new roles (via another plugin) <u>after</u> Profile Builder was "
|
807 |
+
"activated, please reactivate it, since the roles are initialized during "
|
808 |
+
"plugin activation."
|
809 |
+
msgstr ""
|
810 |
+
"Wenn Sie neue Benutzerollen (ueber ein anderes Plugin) erstellt haben "
|
811 |
+
"<u>nachdem</u> Profile Builder aktiviert wurde, muessen Sie es reaktivieren. "
|
812 |
+
|
813 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:48
|
814 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
815 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
816 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
817 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
818 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
819 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:369
|
820 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
821 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
822 |
+
msgid "Save Changes"
|
823 |
+
msgstr "Einstellungen speichern"
|
824 |
|
825 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
|
826 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
|
827 |
+
msgid "Profile Builder"
|
828 |
+
msgstr "Profile Builder"
|
829 |
|
830 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
|
831 |
+
msgid "Welcome to Profile Builder!"
|
832 |
+
msgstr "Willkommen im Profile Builder"
|
|
|
833 |
|
834 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
|
835 |
+
msgid ""
|
836 |
+
" lets you customize your website by adding a front-end menu for all your "
|
837 |
+
"users, giving them a more flexible way to modify their user-information or "
|
838 |
+
"to register new users."
|
839 |
+
msgstr ""
|
840 |
+
" erlaubt es Ihnen, Ihre Website durch Hinzufügen eines Front-End-Menü für "
|
841 |
+
"alle Benutzer, um Ihnen eine flexible Möglichkeit zu geben, ihre Benutzer-"
|
842 |
+
"Informationen zu ändern oder neue Benutzer zu registrieren."
|
843 |
|
844 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
|
845 |
+
msgid ""
|
846 |
+
"Also, grants users with administrator rights to customize basic fields or to "
|
847 |
+
"add new ones."
|
848 |
+
msgstr ""
|
849 |
+
"Ebenso gewährt es Benutzern mit Administratorrechten grundlegende Bereichen "
|
850 |
+
"anzupassen oder neue hinzuzufügen."
|
851 |
|
852 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
|
853 |
+
msgid ""
|
854 |
+
"To achieve this, just create a new page, and give it an intuitive name(e.g. "
|
855 |
+
"Edit Profile)."
|
856 |
+
msgstr ""
|
857 |
+
"Um dies zu erreichen, erstellen Sie einfach eine neue Seite, und geben Sie "
|
858 |
+
"dieser einen intuitiven Namen (z.B. Profil bearbeiten)"
|
859 |
|
860 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
|
861 |
+
msgid ""
|
862 |
+
"Now all you need to do is add the following shortcode(for the previous "
|
863 |
+
"example): "
|
864 |
+
msgstr ""
|
865 |
+
"Alles was Sie jetzt tun müssen, ist den folgenden Shortcode (für das "
|
866 |
+
"vorherige Beispiel): "
|
867 |
|
868 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
|
869 |
+
msgid "Publish your page and you are ready to go!"
|
870 |
+
msgstr "Veröffentlichen Sie Ihre Seite und los geht´s."
|
|
|
|
|
871 |
|
872 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
|
873 |
+
msgid "You can use the following shortcodes:"
|
874 |
+
msgstr "Sie können die folgenden Shortcodes nutzen:"
|
|
|
|
|
875 |
|
876 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
|
877 |
+
msgid "for a log-in form."
|
878 |
+
msgstr "Log-In-Formular"
|
879 |
|
880 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
|
881 |
+
msgid "to add a registration form."
|
882 |
+
msgstr "Registrierungs-Formular"
|
883 |
|
884 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
|
885 |
+
msgid ""
|
886 |
+
"to grant users a front-end acces to their personal information(requires user "
|
887 |
+
"to be logged in)."
|
888 |
+
msgstr ""
|
889 |
+
"um Benutzern einen Front-End-Zugang zu ihren persönlichen Daten zu gewähren "
|
890 |
+
"(erfordert dass der Benutzer angemeldet ist)."
|
891 |
|
892 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
|
893 |
+
msgid "to add a password recovery form."
|
894 |
+
msgstr "um ein Passwort-vergessen-Formular hinzuzufügen"
|
895 |
|
896 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
|
897 |
+
#, fuzzy
|
898 |
+
msgid ""
|
899 |
+
"With the <strong>Pro</strong> version, users with administrator rights have "
|
900 |
+
"access to the following features:"
|
901 |
+
msgstr ""
|
902 |
+
"Benutzer mit Administratorrechten haben Zugriff auf die folgenden Funktionen:"
|
903 |
|
904 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
|
905 |
+
msgid ""
|
906 |
+
"add a custom stylesheet/inherit values from the current theme or use one of "
|
907 |
+
"the following built into this plugin: default, white or black."
|
908 |
+
msgstr ""
|
909 |
+
"Hinzufügen eines Standart Stylesheet oder Nutzung des Theme-Stylesheetsder "
|
910 |
+
"dargestellten. Black/White/default."
|
911 |
|
912 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
|
913 |
+
msgid ""
|
914 |
+
"select whether to display or not the admin bar in the front end for a "
|
915 |
+
"specific user-group registered to the site."
|
916 |
+
msgstr "Anzeigen der WP Admin Bar verhindern/nicht verhindern."
|
917 |
|
918 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
|
919 |
+
msgid ""
|
920 |
+
"select which information-field can users see/modify. The hidden fields' "
|
921 |
+
"values remain unmodified."
|
922 |
+
msgstr "auswählen welche Felder angezeigt werden sollen."
|
923 |
|
924 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
|
925 |
+
msgid ""
|
926 |
+
"add custom fields to the existing ones, with several types to choose from: "
|
927 |
+
"heading, text, textarea, select, checkbox, radio, and/or upload."
|
928 |
+
msgstr "hinzufügen von benutzerdefinierten Feldern."
|
929 |
|
930 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
|
931 |
+
msgid "add an avatar field."
|
932 |
+
msgstr "hinzufügen eines Avartar-Feldes."
|
933 |
|
934 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
|
935 |
+
msgid "create custom redirects."
|
936 |
+
msgstr "eigene Umleitungen erstellen"
|
937 |
|
938 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
|
939 |
+
msgid "front-end userlisting using the"
|
940 |
+
msgstr "ein User-Listing Frontend erstellen -"
|
941 |
|
942 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
|
943 |
+
msgid "shortcode."
|
944 |
+
msgstr "Shortcode"
|
945 |
|
946 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
947 |
+
msgid "this plugin only adds/removes fields in the front-end."
|
948 |
+
msgstr "dieses Plugin entfernt oder fügt die Felder nur im Frontend hinzu."
|
949 |
|
950 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
|
951 |
+
msgid ""
|
952 |
+
"The default information-fields will still be visible(and thus modifiable)"
|
953 |
+
msgstr "Die Standardinformationsfelder sind weiterhin"
|
954 |
|
955 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
|
956 |
+
msgid ""
|
957 |
+
"from the back-end, while custom fields will only be visible in the front-end."
|
958 |
+
msgstr ""
|
959 |
+
"vom Backende aus sichtbar, während Benutzerdefinierte Felder nur über das "
|
960 |
+
"Frontend sichtbar sind."
|
961 |
|
962 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
|
963 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
|
964 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
|
965 |
+
msgid "Default Profile Fields"
|
966 |
+
msgstr "Standart Profil Felder"
|
967 |
|
968 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
|
969 |
+
msgid "Input Field Name"
|
970 |
+
msgstr "Eingabe Feld Name"
|
971 |
|
972 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
|
973 |
+
msgid "Required"
|
974 |
+
msgstr "Benötigt"
|
975 |
|
976 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
|
977 |
+
msgid "Name:"
|
978 |
+
msgstr "Name"
|
|
|
979 |
|
980 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
|
981 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
|
982 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
|
983 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
|
984 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
|
985 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
|
986 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
|
987 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
|
988 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
|
989 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
|
990 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
|
991 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
992 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
993 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
994 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
995 |
+
msgid "Yes"
|
996 |
+
msgstr "Ja"
|
997 |
|
998 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
|
999 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
|
1000 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
|
1001 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
|
1002 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
|
1003 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
|
1004 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
|
1005 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
|
1006 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:148
|
1007 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:161
|
1008 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:180
|
1009 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1010 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1011 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1012 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1013 |
+
msgid "No"
|
1014 |
+
msgstr "Nein"
|
1015 |
|
1016 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
|
1017 |
+
msgid "Display name publicly as..."
|
1018 |
+
msgstr "angezeigter Name..."
|
1019 |
|
1020 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
|
1021 |
+
msgid "Contact Info:"
|
1022 |
+
msgstr "Kontakt"
|
1023 |
|
1024 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
|
1025 |
+
msgid "About Yourself:"
|
1026 |
+
msgstr "Passwort"
|
|
|
1027 |
|
1028 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
|
1029 |
#, fuzzy
|
1030 |
+
msgid "(New) Password"
|
1031 |
+
msgstr "Neues Passwort"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1032 |
|
1033 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1034 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1035 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1036 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:37
|
1037 |
+
msgid "General Settings"
|
1038 |
+
msgstr "Allgemeine Einstellungen"
|
1039 |
|
1040 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:12
|
1041 |
+
msgid "Stylesheet Used on the Front-End:"
|
1042 |
+
msgstr "Genutztes Stylesheet im Frontend"
|
1043 |
|
1044 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
1045 |
+
msgid "Default"
|
1046 |
+
msgstr "Standart"
|
1047 |
|
1048 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1049 |
+
msgid "White"
|
1050 |
+
msgstr "Weiss"
|
1051 |
|
1052 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:19
|
1053 |
+
msgid "Black"
|
1054 |
+
msgstr "Schwarz"
|
1055 |
|
1056 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:23
|
1057 |
+
msgid "None"
|
1058 |
+
msgstr "Keins"
|
1059 |
|
1060 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:29
|
1061 |
+
msgid "\"Email Confirmation\" Feature Activated:"
|
1062 |
+
msgstr "\"E-Mail Bestätigung\" aktiviert:"
|
|
|
1063 |
|
1064 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:39
|
1065 |
+
msgid "\"Admin Approval\" Feature Activated:"
|
1066 |
+
msgstr "\"Admin Bestätigung\" aktiviert:"
|
|
|
|
|
1067 |
|
1068 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:48
|
1069 |
+
msgid ""
|
1070 |
+
"The black stylesheet is intended for sites/blogs with a dark background."
|
1071 |
+
msgstr "Das schwarze Stylesheet wird bei dunklen Themes empfohlen."
|
1072 |
|
1073 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:49
|
1074 |
+
msgid ""
|
1075 |
+
"The white stylesheet is intended for a sites/blogs with a light background "
|
1076 |
+
"color."
|
1077 |
+
msgstr "Das weisse Stylesheet wird bei hellen Themes empfohlen."
|
1078 |
|
1079 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:50
|
1080 |
+
msgid ""
|
1081 |
+
"On single-site installations the \"Email Confirmation\" feature only works "
|
1082 |
+
"in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
1083 |
+
msgstr ""
|
1084 |
+
"Auf Einzelseiteninstallationen funktioniert die E-Mail-Bestätigung nur im "
|
1085 |
+
"Frontend. Stellen Sie also sicher, dass die \"Weiterleitungen\" aktiviert "
|
1086 |
+
"sind. "
|
1087 |
|
1088 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1089 |
+
msgid ""
|
1090 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1091 |
+
"Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-"
|
1092 |
+
"profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive "
|
1093 |
+
"access to automatic updates and support. Need a license key? <a href='http://"
|
1094 |
+
"www.cozmoslabs.com/wordpress-profile-builder/?"
|
1095 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' "
|
1096 |
+
"class='button-primary'>Purchase one now</a>"
|
1097 |
+
msgstr ""
|
1098 |
|
1099 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1100 |
+
msgid ""
|
1101 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please <a "
|
1102 |
+
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1103 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</"
|
1104 |
+
"a> to receive access to automatic updates and priority support. <a "
|
1105 |
+
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1106 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' "
|
1107 |
+
"class='button-primary'>Purchase one now</a>"
|
1108 |
+
msgstr ""
|
1109 |
|
1110 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1111 |
+
msgid "Basic Information"
|
1112 |
+
msgstr "Allgemeine Informationen"
|
1113 |
|
1114 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
|
1115 |
+
msgid "Show/Hide the Admin Bar on Front-end"
|
1116 |
+
msgstr "Anzeigen/Verbergen der Admin-Leiste im Front-End"
|
1117 |
|
1118 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
|
1119 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
|
1120 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
|
1121 |
+
msgid "Extra Profile Fields"
|
1122 |
+
msgstr "Extra Profil Felder"
|
1123 |
|
1124 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
|
1125 |
+
msgid "Addons"
|
1126 |
+
msgstr "Add-Ons"
|
1127 |
|
1128 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
|
1129 |
+
msgid "Register Your Version"
|
1130 |
+
msgstr "Registrieren Sie Ihre Version"
|
1131 |
|
1132 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
|
1133 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
|
1134 |
msgid "Activate/Deactivate Addons"
|
1135 |
msgstr "Aktivieren/Deaktivieren von Add-Ons"
|
1136 |
|
1137 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:14
|
1138 |
msgid "Name/Description"
|
1139 |
msgstr "Name/Beschreibung"
|
1140 |
|
1141 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:15
|
1142 |
msgid "Status"
|
1143 |
msgstr "Status"
|
1144 |
|
1145 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:20
|
1146 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:30
|
1147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:31
|
1148 |
msgid "User-Listing"
|
1149 |
msgstr "User-Listing"
|
1150 |
|
1151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:22
|
1152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
|
1153 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
|
1154 |
msgid "Active"
|
1155 |
msgstr "Aktiv"
|
1156 |
|
1157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
|
1158 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
|
1159 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
|
1160 |
msgid "Inactive"
|
1161 |
msgstr "Inaktiv"
|
1162 |
|
1163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1164 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
|
|
1165 |
msgid "Custom Redirects"
|
1166 |
msgstr "Weiterleitungen"
|
1167 |
|
1168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:34
|
1169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:255
|
1170 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:256
|
1171 |
msgid "reCAPTCHA"
|
1172 |
msgstr "reCAPTCHA"
|
1173 |
|
1174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1175 |
+
msgid "Redirects on custom page requests:"
|
1176 |
+
msgstr "Weiterleitung auf benutzerdefinierte Seiten:"
|
1177 |
+
|
1178 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1179 |
+
msgid "Action"
|
1180 |
+
msgstr "Aktion"
|
1181 |
+
|
1182 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1183 |
+
msgid "Redirect"
|
1184 |
+
msgstr "Weiterleiten"
|
1185 |
+
|
1186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1187 |
+
msgid "URL"
|
1188 |
+
msgstr "URL"
|
1189 |
+
|
1190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1191 |
+
msgid "After Registration:"
|
1192 |
+
msgstr "Nach Registrierung"
|
1193 |
+
|
1194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1195 |
+
#, fuzzy
|
1196 |
+
msgid "After Login:"
|
1197 |
+
msgstr "Nach Login"
|
1198 |
+
|
1199 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1200 |
+
#, fuzzy
|
1201 |
+
msgid "Recover Password (*)"
|
1202 |
+
msgstr "Passowrt wiederherstellen"
|
1203 |
+
|
1204 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1205 |
+
msgid ""
|
1206 |
+
"When activated this feature will redirect the user on both the default "
|
1207 |
+
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1208 |
+
"Profile Builder on the front-end login page."
|
1209 |
+
msgstr ""
|
1210 |
+
"Wenn dieses Feature aktiviert ist, wird der Benutzer bei den Seiten /"
|
1211 |
+
"\"Wordpress Passwort wiederherstellen/\"und /\"Passwort vergessen/\" auf die "
|
1212 |
+
"im Front-End eingestellte Seite weitergeleitet."
|
1213 |
|
1214 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1215 |
+
msgid "Redirects on default WordPress page requests:"
|
1216 |
+
msgstr "Weiterleitung der Standart-Wordpress-Seite"
|
1217 |
|
1218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1219 |
+
msgid "Requested WP Page"
|
1220 |
+
msgstr "Angefragte WP Seite"
|
1221 |
+
|
1222 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1223 |
+
msgid "Default WP Login Page(*)"
|
1224 |
+
msgstr "Standart WP Login Seite(*)"
|
1225 |
+
|
1226 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1227 |
+
msgid "Default WP Logout Page(**)"
|
1228 |
+
msgstr "Standart WP Logout Seite (**)"
|
1229 |
+
|
1230 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1231 |
+
msgid "Default WP Register Page"
|
1232 |
+
msgstr "Standart WP Registrierung"
|
1233 |
+
|
1234 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1235 |
+
msgid "Default WP Dashboard (***)"
|
1236 |
+
msgstr "Standart WP Dashboard (***)"
|
1237 |
+
|
1238 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1239 |
+
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1240 |
+
msgstr ""
|
1241 |
+
"Vor dem Login. Arbeitet am besten wenn es mit dem \"Nach dem Logout\" "
|
1242 |
+
"zusammen eingestellt ist."
|
1243 |
+
|
1244 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1245 |
+
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1246 |
+
msgstr ""
|
1247 |
+
"Nach dem Logout. Arbeitet am besten wenn es mit dem \"Vor dem Login\" "
|
1248 |
+
"zusammen eingestellt ist."
|
1249 |
+
|
1250 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1251 |
+
msgid ""
|
1252 |
+
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1253 |
+
"manage options)."
|
1254 |
+
msgstr "Leitet jeden Berechtigungstufe weiter, ausser dem Admin."
|
1255 |
+
|
1256 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:49
|
1257 |
+
msgid "Could not open socket!"
|
1258 |
+
msgstr "Sockel kann nicht geöffnet werden"
|
1259 |
+
|
1260 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
1261 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:120
|
1262 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
1263 |
+
msgstr "Um den reCAPTCHA zu nutzen benötigen Sie einen Schlüssel von"
|
1264 |
+
|
1265 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:123
|
1266 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
1267 |
+
msgstr "Aus Sicherheitsgründen müssen Sie die Remote-IP von reCAPTCHA nutzen."
|
1268 |
+
|
1269 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:180
|
1270 |
+
msgid ""
|
1271 |
+
"To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
|
1272 |
+
msgstr ""
|
1273 |
+
"Um reCAPTCHA Mailhide zu nutzen, muss das \"MCRYPT PHP Modul\" installiert "
|
1274 |
+
"sein."
|
1275 |
+
|
1276 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:196
|
1277 |
+
msgid ""
|
1278 |
+
"To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
|
1279 |
+
"you can do so at"
|
1280 |
+
msgstr ""
|
1281 |
+
"Um reCAPTCHA Mailhide nutzen zu können, müssen Sie sich für einen "
|
1282 |
+
"öffentlichen und privaten Schlüssel registrieren. Hier:"
|
1283 |
+
|
1284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:260
|
1285 |
+
msgid ""
|
1286 |
+
"Adds a reCAPTCHA form on the registration page created in the front-end "
|
1287 |
+
"(only)."
|
1288 |
+
msgstr "Fügt einen reCAPTCHA auf der Registrierungsseite hinzu"
|
1289 |
+
|
1290 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:261
|
1291 |
+
msgid "For this you must get a public and private key from Google:"
|
1292 |
+
msgstr ""
|
1293 |
+
"Hierfür benötigen Sie einen privaten und öffentlichen Schlüssel von Google."
|
1294 |
+
|
1295 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:267
|
1296 |
+
msgid "Key"
|
1297 |
+
msgstr "Schlüssel"
|
1298 |
+
|
1299 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:268
|
1300 |
+
msgid "Code"
|
1301 |
+
msgstr "Code"
|
1302 |
+
|
1303 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:272
|
1304 |
+
msgid "Public Key:"
|
1305 |
+
msgstr "Öffentlicher Schlüssel"
|
1306 |
+
|
1307 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:276
|
1308 |
+
msgid "Private Key:"
|
1309 |
+
msgstr "Privater Schlüssel"
|
1310 |
+
|
1311 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:311
|
1312 |
+
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1313 |
+
msgstr ""
|
1314 |
+
"Das reCaptcha wurde nicht erfolgreich eingegeben. Bitte gehen Sie zurück und "
|
1315 |
+
"probieren Sie es erneut."
|
1316 |
+
|
1317 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:33
|
1318 |
+
msgid ""
|
1319 |
+
"To create a page containing the users registered to this current site/blog, "
|
1320 |
+
"insert the following shortcode in a (blank) page: "
|
1321 |
+
msgstr ""
|
1322 |
+
"Um eine Seite mit dem User-Listing zu erstellen, fügend Sie den folgenden "
|
1323 |
+
"Code in aine leere Seite ein."
|
1324 |
+
|
1325 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:34
|
1326 |
+
msgid ""
|
1327 |
+
"For instance, to create a userlisting shortcode listing only the editors and "
|
1328 |
+
"authors, visible to only the users currently logged in, you would use:"
|
1329 |
+
msgstr ""
|
1330 |
+
"Wenn Sie das User-Listing nur eingeloggten Benutzern anzeigen wollen, fügen "
|
1331 |
+
"Sie bitte folgenden Code ein:"
|
1332 |
+
|
1333 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:39
|
1334 |
msgid "These settings are applied to the front-end userlisting."
|
1335 |
msgstr "Diese Einstellungen werden im Front End des User-Listings angezeigt."
|
1336 |
|
1337 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:45
|
1338 |
msgid "Number of Users/Page: "
|
1339 |
msgstr "Anzahl Benutzer/Seite"
|
1340 |
|
1341 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:62
|
1342 |
msgid "Default Sorting Order: "
|
1343 |
msgstr "Standart Sortierfolge"
|
1344 |
|
1345 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:73
|
1346 |
msgid "\"All-Userlisting\" Template"
|
1347 |
msgstr "\"All-Userlisting\" Template"
|
1348 |
|
1349 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:75
|
1350 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:217
|
1351 |
+
msgid ""
|
1352 |
+
"With the userlisting templates you can customize the look, feel and "
|
1353 |
+
"information listed by the shortcode."
|
1354 |
+
msgstr ""
|
1355 |
+
"Mit dem User-Listing Template können Sie das Aussehen und die Informationen "
|
1356 |
+
"per Shortcode anzeigen lassen."
|
1357 |
|
1358 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1359 |
+
msgid ""
|
1360 |
+
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1361 |
+
"on each page access where the shortcode is present."
|
1362 |
+
msgstr ""
|
1363 |
+
"Das \"All User Listing\"-Template zeigt die Liste aller Benutzer an. Es wird "
|
1364 |
+
"überall angezeigt wo der Shortcode implementiert ist"
|
1365 |
|
1366 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:80
|
1367 |
msgid "Avatar size: "
|
1368 |
msgstr "Avatar Größe"
|
1369 |
|
1370 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:96
|
1371 |
msgid "Insert \"Sort By\" Field:"
|
1372 |
msgstr "\"Sortieren nach\" Feld einfügen"
|
1373 |
|
1374 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:124
|
1375 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:223
|
1376 |
msgid "Insert \"User-Meta\" Field:"
|
1377 |
msgstr "\"User Meta\" Feld einfügen"
|
1378 |
|
1379 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:155
|
1380 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:261
|
1381 |
msgid "Insert Extra Functions:"
|
1382 |
msgstr "Extra Funktionen einfügen"
|
1383 |
|
1384 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:170
|
1385 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1386 |
msgstr "Zeige/Verberge Standart-\"All-User-Listing\"-Code"
|
1387 |
|
1388 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:172
|
1389 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:275
|
1390 |
+
msgid ""
|
1391 |
+
"If you wish to use a default userlisting, just copy the following code and "
|
1392 |
+
"paste it in the textarea below:"
|
1393 |
+
msgstr ""
|
1394 |
+
"Wenn Sie das Standart Userlisting nutzen möchten, kopieren Sie den Code in "
|
1395 |
+
"die untere Textfläche:"
|
1396 |
|
1397 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:215
|
1398 |
msgid "\"Single-Userlisting\" Template"
|
1399 |
msgstr "\"Single-Userlisting\"-Template"
|
1400 |
|
1401 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1402 |
+
msgid ""
|
1403 |
+
"The \"Single User Listing\" template is used to list an individual user. "
|
1404 |
+
"It's displayed when clickin on the \"more info\" link."
|
1405 |
+
msgstr ""
|
1406 |
+
"Das \"Single-User-List\"-Template zeigt die Daten eines einzelnen Benutzers "
|
1407 |
+
"an. Es wird angezeigt sobald man auf \"Mehr Infos\" klickt."
|
1408 |
|
1409 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:273
|
1410 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1411 |
msgstr "Zeige/Verberge Standart-\"Single-User-Listing\"-Code"
|
1412 |
|
1413 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:379
|
1414 |
+
msgid ""
|
1415 |
+
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1416 |
+
msgstr "Sie müssen das User-Listing im \"Addons\" aktivieren!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1417 |
|
1418 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:379
|
1419 |
+
msgid "You can find it in Profile Builder's menu."
|
1420 |
+
msgstr "Sie finden es im Profile Builder Menü."
|
1421 |
|
1422 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:404
|
1423 |
+
msgid "You need to be logged in to view the userlisting!"
|
1424 |
+
msgstr "Sie müssen eingeloggt sein um die User-Listings sehen zu können."
|
1425 |
|
1426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:442
|
1427 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:468
|
1428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:486
|
1429 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1327
|
1430 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1413
|
1431 |
+
msgid "Search Users by All Fields"
|
1432 |
+
msgstr "Suche Benutzer nach alle Felder"
|
1433 |
|
1434 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:486
|
1435 |
+
msgid "Leave Blank and Press Search to List All Users"
|
1436 |
+
msgstr "Lassen Sie dieses Feld frei um nach allen Benutzern zu suchen."
|
1437 |
|
1438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:490
|
1439 |
+
msgid "Search"
|
1440 |
+
msgstr "Suche"
|
1441 |
|
1442 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:503
|
1443 |
+
msgid "First/Lastname"
|
1444 |
+
msgstr "Vor/Nachname"
|
1445 |
|
1446 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:509
|
1447 |
+
msgid "Email"
|
1448 |
+
msgstr "E-Mail"
|
1449 |
|
1450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:515
|
1451 |
+
msgid "Sign-up Date"
|
1452 |
+
msgstr "Registrierungsdatum"
|
1453 |
|
1454 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:521
|
1455 |
+
msgid "Firstname"
|
1456 |
+
msgstr "Vorname"
|
1457 |
|
1458 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:527
|
1459 |
+
msgid "Lastname"
|
1460 |
+
msgstr "Nachname"
|
1461 |
|
1462 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:533
|
1463 |
+
msgid "Display Name"
|
1464 |
+
msgstr "Angezeigter Name"
|
1465 |
|
1466 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:551
|
1467 |
+
msgid "Posts"
|
1468 |
+
msgstr "Posts"
|
1469 |
|
1470 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:593
|
1471 |
+
msgid "Click here to see more information about this user"
|
1472 |
+
msgstr "Klicken Sie hie rum weitere Informationen über den Benutzer zu sehen"
|
1473 |
|
1474 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:593
|
1475 |
+
msgid "More..."
|
1476 |
+
msgstr "Mehr..."
|
1477 |
|
1478 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:794
|
1479 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1101
|
1480 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1481 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1482 |
+
msgid "No uploaded attachment"
|
1483 |
+
msgstr "Keine hochgeladenen Anhänge"
|
1484 |
|
1485 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:796
|
1486 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1103
|
1487 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1159
|
1488 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1489 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1490 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1491 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
1492 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
1493 |
+
msgid "Click to see the current attachment"
|
1494 |
+
msgstr "Klicken um Anhänge zu sehen"
|
1495 |
|
1496 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:922
|
1497 |
+
msgid "Click here to go back"
|
1498 |
+
msgstr "Hier klicken um zurück zu gehen"
|
1499 |
|
1500 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:922
|
1501 |
+
msgid "Back"
|
1502 |
+
msgstr "Zurück"
|
1503 |
|
1504 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1101
|
1505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1103
|
1506 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1507 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1508 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1509 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1510 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1511 |
+
msgid "Current file"
|
1512 |
+
msgstr "Aktuelle Datei"
|
1513 |
|
1514 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1157
|
1515 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1517 |
+
msgid "Avatar"
|
1518 |
+
msgstr "Avatar"
|
1519 |
|
1520 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1214
|
1521 |
+
msgid "No results found!"
|
1522 |
+
msgstr "Keine Ergebnisse gefunden"
|
1523 |
|
1524 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1310
|
1525 |
+
msgid "«« First"
|
1526 |
+
msgstr "«« Erster"
|
|
|
1527 |
|
1528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1529 |
+
msgid "« Prev"
|
1530 |
+
msgstr "Letzter"
|
1531 |
|
1532 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1533 |
+
msgid "Next » "
|
1534 |
+
msgstr "Nächster » "
|
1535 |
|
1536 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1537 |
+
msgid "Last »»"
|
1538 |
+
msgstr "Letzter »»"
|
1539 |
|
1540 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:284
|
1541 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:427
|
1542 |
msgid "You must give your option a title."
|
1543 |
msgstr "Sie müssen der Option einen Titel geben."
|
1544 |
|
1545 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:288
|
1546 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:431
|
1547 |
msgid "You have entered an invalid meta-key format!"
|
1548 |
msgstr "Sie haben ein ungültiges Format des Meta-Keys eingegeben."
|
1549 |
|
1550 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:292
|
1551 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:435
|
1552 |
msgid "You must enter a valid meta-key."
|
1553 |
msgstr "Geben Sie einen gültigen Meta-Key ein."
|
1554 |
|
1555 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:298
|
1556 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:308
|
1557 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:445
|
1558 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:457
|
1559 |
msgid "That meta-key is already in use."
|
1560 |
msgstr "Der Meta-Key wird bereits verwendet."
|
1561 |
|
1562 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:315
|
1563 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:465
|
1564 |
+
msgid ""
|
1565 |
+
"There is already an avatar input-type. You can only have one avatar present."
|
1566 |
msgstr "Es ist bereits ein Avatar vorhanden."
|
1567 |
|
1568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1569 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1570 |
+
msgid ""
|
1571 |
+
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1572 |
+
"have one present."
|
1573 |
msgstr "Es existiert bereits eine \"Agree to Terms and Conditions\"-Checkbox."
|
1574 |
|
1575 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:327
|
1576 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:477
|
1577 |
msgid "The textarea row value must be numeric."
|
1578 |
msgstr "Der Wert der Zeilenanzahl muss numerisch sein."
|
1579 |
|
1580 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:331
|
1581 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:481
|
1582 |
msgid "The maxlength attribute must be numeric."
|
1583 |
msgstr "Das \"maxlength\"-Attribut muss numerisch sein."
|
1584 |
|
1585 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1586 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1587 |
msgid "The value must be between 20 and 200!"
|
1588 |
msgstr "Der Wert muss zwischen 20 und 200 liegen."
|
1589 |
|
1590 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:343
|
1591 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
|
1592 |
msgid "The width component of the entered value must be numeric!"
|
1593 |
msgstr "Der Wert \"Breite\" muss numerisch sein."
|
1594 |
|
1595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1596 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1597 |
msgid "The height component of the entered value must be numeric!"
|
1598 |
msgstr "Der Wert \"Höhe\" muss numerisch sein."
|
1599 |
|
1600 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1601 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1602 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1603 |
msgstr "Der Wert \"Breite\" muss zwischen 20 und 200 liegen."
|
1604 |
|
1605 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1606 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1607 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1608 |
msgstr "Der Wert \"Höhe\" muss zwischen 20 und 200 liegen."
|
1609 |
|
1610 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1611 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1612 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1613 |
msgstr "Die eingegebenen Werte haben nicht das richtige Format (Breite/Höhe)"
|
1614 |
|
1615 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:354
|
1616 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:504
|
1617 |
msgid "The entered avatar size must be numeric!"
|
1618 |
msgstr "Die eingegebene Größe des Avatars muss numerisch sein"
|
1619 |
|
1620 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:388
|
1621 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:564
|
1622 |
msgid "There was an error, please try again."
|
1623 |
msgstr "Fehler, bitte versuchen Sie es erneut."
|
1624 |
|
1625 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:18
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1626 |
msgid "Do you want to"
|
1627 |
msgstr "Wollen Sie"
|
1628 |
|
1629 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:18
|
1630 |
msgid "the current user?"
|
1631 |
msgstr "den aktuellen Benutzer?"
|
1632 |
|
1633 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1634 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1635 |
msgid "Your account on"
|
1636 |
msgstr "Ihr Profil auf"
|
1637 |
|
1638 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1639 |
msgid "has been approved!"
|
1640 |
msgstr "wurde genehmigt"
|
1641 |
|
1642 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1643 |
msgid "An administrator has just approved your account on"
|
1644 |
msgstr "Ein Administrator hat Ihr Profil soeben genehmigt."
|
1645 |
|
1646 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1647 |
msgid "has been unapproved!"
|
1648 |
msgstr "wurde nicht genehmigt."
|
1649 |
|
1650 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1651 |
msgid "An administrator has just unapproved your account on"
|
1652 |
msgstr "Ein Administrator hat Ihr Profil nicht genehmigt auf"
|
1653 |
|
1654 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1655 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:172
|
1656 |
msgid "Approve"
|
1657 |
msgstr "Genehmigt"
|
1658 |
|
1659 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:127
|
1660 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:217
|
1661 |
msgid "Unapproved"
|
1662 |
msgstr "Nicht genehmigt"
|
1663 |
|
1664 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:138
|
1665 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:168
|
1666 |
msgid "Unapprove"
|
1667 |
msgstr "Nicht genehmigt"
|
1668 |
|
1669 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:139
|
1670 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:214
|
1671 |
msgid "Approved"
|
1672 |
msgstr "Genehmigt"
|
1673 |
|
1674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:167
|
1675 |
msgid "unapprove"
|
1676 |
msgstr "nicht genehmigt"
|
1677 |
|
1678 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:171
|
1679 |
msgid "approve"
|
1680 |
msgstr "genehmigt"
|
1681 |
|
1682 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1683 |
msgid "Are you sure you want to"
|
1684 |
msgstr "Sind Sie sicher dass Sie"
|
1685 |
|
1686 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1687 |
msgid "this user?"
|
1688 |
msgstr "diesen Benutzer"
|
1689 |
|
1690 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1691 |
+
msgid ""
|
1692 |
+
"<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
|
1693 |
+
"before you can log in."
|
1694 |
+
msgstr ""
|
1695 |
+
"<strong>FEHLER</strong>: Das Profil muss durch einen Administrator genehmigt "
|
1696 |
+
"werden bevor Sie sich einloggen können."
|
1697 |
+
|
1698 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1699 |
+
msgid ""
|
1700 |
+
"You can create as many extra fields as your project requires. To break your "
|
1701 |
+
"custom fields into sections (on the front-end), add a \""
|
1702 |
+
msgstr ""
|
1703 |
+
"Sie können so viele zusätzliche Felder erstellen, wie Ihr Projekt erfordert. "
|
1704 |
+
"Um Ihre benutzerdefinierte Felder in Abschnitte (auf dem Front-End) zu "
|
1705 |
+
"unterteilen, fügen Sie ein \""
|
1706 |
+
|
1707 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1708 |
+
msgid "heading"
|
1709 |
+
msgstr "Überschrift"
|
1710 |
+
|
1711 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1712 |
+
msgid "\" custom field."
|
1713 |
+
msgstr "\" benutzerdefiniertes Feld ein."
|
1714 |
+
|
1715 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1716 |
+
msgid "All of the fields can be sorted and rearranged to your liking with"
|
1717 |
+
msgstr ""
|
1718 |
+
"Alle Felder können sortiert und nach Ihren Wünschen umgestaltet werden mit"
|
1719 |
+
|
1720 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1721 |
+
msgid "Drag"
|
1722 |
+
msgstr "Drag"
|
1723 |
+
|
1724 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1725 |
+
msgid "Drop"
|
1726 |
+
msgstr "Drop"
|
1727 |
+
|
1728 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1729 |
+
msgid ""
|
1730 |
+
"Don't worry about the order in which you create your custom fields, you can "
|
1731 |
+
"always reorder them."
|
1732 |
+
msgstr ""
|
1733 |
+
"Keine Sorge über die Reihenfolge der Felder. Sie können Sie jederzeit "
|
1734 |
+
"umsortieren."
|
1735 |
+
|
1736 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
|
1737 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
|
1738 |
+
msgid "Title"
|
1739 |
+
msgstr "Titel"
|
1740 |
+
|
1741 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
|
1742 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
|
1743 |
+
msgid "Type"
|
1744 |
+
msgstr "Typ"
|
1745 |
+
|
1746 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
|
1747 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
|
1748 |
+
msgid "Meta-Key"
|
1749 |
+
msgstr "Meta-Key"
|
1750 |
+
|
1751 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
|
1752 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
|
1753 |
+
msgid "ID"
|
1754 |
+
msgstr "ID"
|
1755 |
+
|
1756 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
|
1757 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
|
1758 |
+
msgid "Req'd"
|
1759 |
+
msgstr "Erforderlich"
|
1760 |
+
|
1761 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
|
1762 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
|
1763 |
+
msgid "Add Option"
|
1764 |
+
msgstr "Option Hinzufügen"
|
1765 |
+
|
1766 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
|
1767 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
|
1768 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
|
1769 |
+
msgid "Edit"
|
1770 |
+
msgstr "Bearbeiten"
|
1771 |
+
|
1772 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
|
1773 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
|
1774 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
|
1775 |
+
msgid "Delete"
|
1776 |
+
msgstr "Löschen"
|
1777 |
+
|
1778 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
|
1779 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:84
|
1780 |
+
msgid "Title:"
|
1781 |
+
msgstr "Titel:"
|
1782 |
+
|
1783 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
|
1784 |
+
msgid "The title of the item."
|
1785 |
+
msgstr "Titel des Artikels"
|
1786 |
+
|
1787 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
|
1788 |
+
msgid "Meta-Key:"
|
1789 |
+
msgstr "Meta-Key:"
|
1790 |
+
|
1791 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
|
1792 |
+
msgid ""
|
1793 |
+
"Use this in conjuction with WordPress functions to display the value in the "
|
1794 |
+
"page of your choosing. Auto-completed but editable - in this case it must be "
|
1795 |
+
"uniqe.<br/>Changing this might take long in case of a very big user-count."
|
1796 |
+
msgstr ""
|
1797 |
+
"Verwenden Sie diese Verbindung mit Wordpress Funktionen um den Wert in der "
|
1798 |
+
"Seite Ihrer Wahl anzuzeigen. Auto-Vervollständigung ist editierbar. In "
|
1799 |
+
"diesem Fall muss die Angabe einmalig sein.<br/> Änderungen können bei hoher "
|
1800 |
+
"Benutzerzahl eine lange Zeit in Anspruch nehmen."
|
1801 |
+
|
1802 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
|
1803 |
+
msgid "Option Type:"
|
1804 |
+
msgstr "Option-Typ"
|
1805 |
+
|
1806 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
|
1807 |
+
msgid "Choose one of the supported option types."
|
1808 |
+
msgstr "Wählen Sie eine der gewählten Optionen"
|
1809 |
+
|
1810 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
|
1811 |
+
msgid "Description:"
|
1812 |
+
msgstr "Beschreibung"
|
1813 |
+
|
1814 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
|
1815 |
+
msgid ""
|
1816 |
+
"Enter a detailed description of the option for end users to read(optional)."
|
1817 |
+
msgstr ""
|
1818 |
+
"Geben Sie eine detailierte Beschreibung ein (Benutzer sehen diese (optional)"
|
1819 |
+
|
1820 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1821 |
+
msgid "You can only insert links using standard HTML syntax:"
|
1822 |
+
msgstr "Sie können Links nur mit dem Standart-HTML-Syntax einfügen:"
|
1823 |
+
|
1824 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1825 |
+
msgid "address"
|
1826 |
+
msgstr "Adresse"
|
1827 |
+
|
1828 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1829 |
+
msgid "name"
|
1830 |
+
msgstr "Name"
|
1831 |
+
|
1832 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
|
1833 |
+
msgid "Options:"
|
1834 |
+
msgstr "Optionen:"
|
1835 |
+
|
1836 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
|
1837 |
+
msgid ""
|
1838 |
+
"Enter a comma separated list of options. For example, you could have \"One,"
|
1839 |
+
"Two,Three\" or just a single value like \"Yes\" for a checkbox."
|
1840 |
+
msgstr "Geben Sie eine kommagetrennte Liste der Optionen ein."
|
1841 |
+
|
1842 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
|
1843 |
+
msgid "ID:"
|
1844 |
+
msgstr "ID:"
|
1845 |
+
|
1846 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
|
1847 |
+
msgid ""
|
1848 |
+
"This is the internal ID for this input. You can use this in conjuction with "
|
1849 |
+
"filters to target this element if needed.<br/>Can't be edited."
|
1850 |
+
msgstr "Dies ist die interne ID für dieses Feld."
|
1851 |
+
|
1852 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
|
1853 |
+
msgid "Required:"
|
1854 |
+
msgstr "Benötigt:"
|
1855 |
+
|
1856 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
|
1857 |
+
msgid "Check this box to make this field required."
|
1858 |
+
msgstr "Anhaken um dieses Feld als erforderlich zu markieren."
|
1859 |
+
|
1860 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:193
|
1861 |
+
msgid "Cancel"
|
1862 |
+
msgstr "Abbrechen"
|
1863 |
+
|
1864 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:194
|
1865 |
+
msgid "Save"
|
1866 |
+
msgstr "Speichern"
|
1867 |
+
|
1868 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
|
1869 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
|
1870 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
|
1871 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
|
1872 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
|
1873 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
|
1874 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
|
1875 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
|
1876 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
|
1877 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
|
1878 |
+
msgid ""
|
1879 |
+
"This field wasn't updated because you entered and empty string (It was "
|
1880 |
+
"marked as required by the administrator)"
|
1881 |
+
msgstr "Das Feld konnte nicht aktualisiert werden da es leer ist."
|
1882 |
+
|
1883 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
|
1884 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
|
1885 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
|
1886 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
|
1887 |
+
msgid "max upload size"
|
1888 |
+
msgstr "Maximale Upload Größe"
|
1889 |
+
|
1890 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
|
1891 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
|
1892 |
+
msgid "Are you sure you want to delete this attachment?"
|
1893 |
+
msgstr "Sind Sie sicher dass Sie den Anhang löschen möchten?"
|
1894 |
+
|
1895 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1896 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1897 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
1898 |
+
msgid "Click to delete the current attachment"
|
1899 |
+
msgstr "Klicken Sie um den Anhang zu löschen."
|
1900 |
+
|
1901 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1902 |
+
msgid ""
|
1903 |
+
"The attachment can't be deleted (It was marked as required by the "
|
1904 |
+
"administrator)"
|
1905 |
+
msgstr "Der Anhang kann nicht gelöscht werden."
|
1906 |
+
|
1907 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1908 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1909 |
+
msgid "Current avatar"
|
1910 |
+
msgstr "Derzeitiger Avatar"
|
1911 |
+
|
1912 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1913 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1914 |
+
msgid "No uploaded avatar"
|
1915 |
+
msgstr "Kein hochgeladener Avatar"
|
1916 |
+
|
1917 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
|
1918 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
|
1919 |
+
msgid "Are you sure you want to delete this avatar?"
|
1920 |
+
msgstr "Sind Sie sicher dass Sie den Avatar löschen möchten?"
|
1921 |
+
|
1922 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
1923 |
+
msgid ""
|
1924 |
+
"The avatar image can't be deleted (It was marked as required by the "
|
1925 |
+
"administrator)."
|
1926 |
+
msgstr "Der Avatar kann nicht gelöscht werden."
|
1927 |
+
|
1928 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1929 |
+
msgid "Click to see the current avatar"
|
1930 |
+
msgstr "Klicken Sie um den aktuellen Avatar zu sehen."
|
1931 |
+
|
1932 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1933 |
+
msgid "Click to delete the avatar"
|
1934 |
+
msgstr "Klicken Sie um den Avatar zu löschen."
|
1935 |
|
1936 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
|
1937 |
msgid "This login widget lets you add a login form in the sidebar."
|
1938 |
msgstr "Dieses Widget lässt ein Login-Formular in die Sidebar erscheinen."
|
1939 |
|
1940 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
|
1941 |
msgid "Profile Builder Login Widget"
|
1942 |
msgstr "Profile Login Builder Widget"
|
1943 |
|
1944 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:44
|
1945 |
msgid "Don't have an account?"
|
1946 |
msgstr "Sie haben noch kein Profil?"
|
1947 |
|
1948 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1949 |
msgid "Lost Your Password?"
|
1950 |
msgstr "Sie haben Ihr Passwort vergessen?"
|
1951 |
|
1952 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:80
|
1953 |
msgid "Login"
|
1954 |
msgstr "Einloggen"
|
1955 |
|
1956 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1957 |
msgid "After login redirect URL:"
|
1958 |
msgstr "Weiterleitungs-URL nach dem Einloggen:"
|
1959 |
|
1960 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1961 |
msgid "Register page URL (optional)"
|
1962 |
msgstr "URL zur Registrierungsseite:"
|
1963 |
|
1964 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1965 |
msgid "Password Recovery page URL (optional)"
|
1966 |
msgstr "URL zur \"Passwort vergessen\"-Seite"
|
1967 |
|
1968 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1969 |
+
msgid "The user-validation has failed - the avatar was not deleted!"
|
1970 |
+
msgstr ""
|
1971 |
+
"Die Benutzervalidierung ist fehlgeschlagen. Der Avatar wurde nicht gelöscht."
|
1972 |
+
|
1973 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:25
|
1974 |
+
msgid "The user-validation has failed - the attachment was not deleted!"
|
1975 |
+
msgstr ""
|
1976 |
+
"Die Benutzervalidierung ist fehlgeschlagen. Der Avatar wurde nicht gelöscht."
|
1977 |
+
|
1978 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:473
|
1979 |
#, php-format
|
1980 |
+
msgid ""
|
1981 |
+
"Your <strong>Profile Builder Pro</strong> serial number is invalid or "
|
1982 |
+
"missing. Please %sregister your copy%s of Profile Builder to receive access "
|
1983 |
+
"to automatic updates and support. Need a license key? %sPurchase one now%s "
|
1984 |
+
"%sDismiss%s"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:477
|
1988 |
#, php-format
|
1989 |
+
msgid ""
|
1990 |
+
"Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please "
|
1991 |
+
"%sRenew Your Licence%s to receive access to automatic updates and priority "
|
1992 |
+
"support. %sPurchase one now%s %sDismiss%s"
|
1993 |
+
msgstr ""
|
1994 |
+
|
1995 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
1996 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:10
|
1997 |
+
msgid "Register your version of Profile Builder Pro"
|
1998 |
+
msgstr "Registrieren Sie Ihre Version."
|
1999 |
+
|
2000 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:11
|
2001 |
+
msgid ""
|
2002 |
+
"Now that you acquired a copy of Profile Builder Pro, you should take the "
|
2003 |
+
"time and register it with the serial number you received in the e-mail."
|
2004 |
+
msgstr ""
|
2005 |
+
"Geben Sie den Registrierungsschlüssel ein der Ihnen mit der Bestätigungsmail "
|
2006 |
+
"zugesandt wurde."
|
2007 |
+
|
2008 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:12
|
2009 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:53
|
2010 |
+
msgid ""
|
2011 |
+
"If you register this version of Profile Builder, you'll receive information "
|
2012 |
+
"regarding eventual upgrades, patches, and - if needed - technical support."
|
2013 |
+
msgstr ""
|
2014 |
+
"Wenn Sie sich registrieren, erhalten Sie Informationen über Upgrades, "
|
2015 |
+
"Patches und technischen Support."
|
2016 |
+
|
2017 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:13
|
2018 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:54
|
2019 |
+
msgid "Serial Number:"
|
2020 |
+
msgstr "Seriennummer:"
|
2021 |
+
|
2022 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
|
2023 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
|
2024 |
+
msgid "The serial number was successfully validated!"
|
2025 |
+
msgstr "Die Seriennummer wurde bestätigt."
|
2026 |
+
|
2027 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
|
2028 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
|
2029 |
+
#, fuzzy
|
2030 |
+
msgid "The serial number entered couldn't be validated!"
|
2031 |
+
msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
|
2032 |
+
|
2033 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
|
2034 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
|
2035 |
+
#, fuzzy
|
2036 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
2037 |
+
msgstr "Die Seriennummer wurde nicht bestätigt oder ist ungültig."
|
2038 |
+
|
2039 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:23
|
2040 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:64
|
2041 |
+
msgid ""
|
2042 |
+
"The serial number couldn't be validated because process timed out. This is "
|
2043 |
+
"possible due to the server being down. Please try again later!"
|
2044 |
+
msgstr ""
|
2045 |
+
"Die Seriennummer wurde nicht bestätigt weil ein Problem mit dem Server "
|
2046 |
+
"besteht. Bitte versuchen Sie es später noch einmal. "
|
2047 |
+
|
2048 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:29
|
2049 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2050 |
+
msgstr "(Bsp.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2051 |
+
|
2052 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:50
|
2053 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:51
|
2054 |
+
#, fuzzy
|
2055 |
+
msgid "Register your version of Profile Builder Hobbyist"
|
2056 |
+
msgstr "Registrieren Sie Ihre Version."
|
2057 |
+
|
2058 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:52
|
2059 |
+
#, fuzzy
|
2060 |
+
msgid ""
|
2061 |
+
"Now that you acquired a copy of Profile Builder Hobbyist, you should take "
|
2062 |
+
"the time and register it with the serial number you received in the e-mail."
|
2063 |
msgstr ""
|
2064 |
+
"Geben Sie den Registrierungsschlüssel ein der Ihnen mit der Bestätigungsmail "
|
2065 |
+
"zugesandt wurde."
|
2066 |
+
|
2067 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
|
2068 |
+
#, fuzzy
|
2069 |
+
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2070 |
+
msgstr "(Bsp.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2071 |
|
2072 |
+
#~ msgid "Does not."
|
2073 |
+
#~ msgstr "Nicht"
|
translation/profilebuilder-en_US.mo
CHANGED
Binary file
|
translation/profilebuilder-en_US.po
CHANGED
@@ -1,1793 +1,1952 @@
|
|
1 |
-
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"
|
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-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
#: C:\Users\
|
30 |
-
msgid "
|
31 |
-
msgstr ""
|
32 |
-
|
33 |
-
#: C:\Users\
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
#: C:\Users\
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
#: C:\Users\
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
#: C:\Users\
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
#: C:\Users\
|
98 |
-
msgid "
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: C:\Users\
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
#: C:\Users\
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
#: C:\Users\
|
135 |
-
msgid "
|
136 |
-
msgstr ""
|
137 |
-
|
138 |
-
#: C:\Users\
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
#: C:\Users\
|
153 |
-
#: C:\Users\
|
154 |
-
#: C:\Users\
|
155 |
-
#: C:\Users\
|
156 |
-
#: C:\Users\
|
157 |
-
#: C:\Users\
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
#: C:\Users\
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
#: C:\Users\
|
166 |
-
#: C:\Users\
|
167 |
-
#: C:\Users\
|
168 |
-
#: C:\Users\
|
169 |
-
#: C:\Users\
|
170 |
-
#: C:\Users\
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
#: C:\Users\
|
175 |
-
#: C:\Users\
|
176 |
-
#: C:\Users\
|
177 |
-
#: C:\Users\
|
178 |
-
#: C:\Users\
|
179 |
-
#: C:\Users\
|
180 |
-
#: C:\Users\
|
181 |
-
#: C:\Users\
|
182 |
-
#: C:\Users\
|
183 |
-
#: C:\Users\
|
184 |
-
#: C:\Users\
|
185 |
-
#: C:\Users\
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
#: C:\Users\
|
190 |
-
#: C:\Users\
|
191 |
-
#: C:\Users\
|
192 |
-
#: C:\Users\
|
193 |
-
#: C:\Users\
|
194 |
-
#: C:\Users\
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
#: C:\Users\
|
199 |
-
msgid "
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
#: C:\Users\
|
207 |
-
msgid "
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: C:\Users\
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
#: C:\Users\
|
217 |
-
#: C:\Users\
|
218 |
-
#: C:\Users\
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
#: C:\Users\
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
#: C:\Users\
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
#: C:\Users\
|
243 |
-
#: C:\Users\
|
244 |
-
#: C:\Users\
|
245 |
-
#: C:\Users\
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
#: C:\Users\
|
250 |
-
#: C:\Users\
|
251 |
-
#: C:\Users\
|
252 |
-
msgid "
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
#: C:\Users\
|
256 |
-
#: C:\Users\
|
257 |
-
#: C:\Users\
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
#: C:\Users\
|
262 |
-
#: C:\Users\
|
263 |
-
#: C:\Users\
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
#: C:\Users\
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
#: C:\Users\
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
#: C:\Users\
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
#: C:\Users\
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
#: C:\Users\
|
299 |
-
msgid "
|
300 |
-
msgstr ""
|
301 |
-
|
302 |
-
#: C:\Users\
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
#: C:\Users\
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
#: C:\Users\
|
321 |
-
msgid "
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#: C:\Users\
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
#: C:\Users\
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
#: C:\Users\
|
336 |
-
#: C:\Users\
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
#: C:\Users\
|
345 |
-
msgid "
|
346 |
-
msgstr ""
|
347 |
-
|
348 |
-
#: C:\Users\
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
#: C:\Users\
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
#: C:\Users\
|
366 |
-
#: C:\Users\
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
#: C:\Users\
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
#: C:\Users\
|
377 |
-
msgid "
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
#: C:\Users\
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
#: C:\Users\
|
418 |
-
msgid "
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: C:\Users\
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
#: C:\Users\
|
427 |
-
msgid "
|
428 |
-
msgstr ""
|
429 |
-
|
430 |
-
#: C:\Users\
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
#: C:\Users\
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
#: C:\Users\
|
462 |
-
msgid "
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: C:\Users\
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
#: C:\Users\
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
#: C:\Users\
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
#: C:\Users\
|
536 |
-
msgid "
|
537 |
-
msgstr ""
|
538 |
-
|
539 |
-
#: C:\Users\
|
540 |
-
msgid "
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
-
#: C:\Users\
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
#: C:\Users\
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
#: C:\Users\
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
#: C:\Users\
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
#: C:\Users\
|
566 |
-
msgid "
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: C:\Users\
|
570 |
-
msgid "
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: C:\Users\
|
574 |
-
#: C:\Users\
|
575 |
-
msgid "
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: C:\Users\
|
579 |
-
msgid "
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#: C:\Users\
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
#: C:\Users\
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
#: C:\Users\
|
616 |
-
msgid "
|
617 |
-
msgstr ""
|
618 |
-
|
619 |
-
#: C:\Users\
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
#: C:\Users\
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
#: C:\Users\
|
657 |
-
msgid "
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: C:\Users\
|
661 |
-
msgid "
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
#: C:\Users\
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
#: C:\Users\
|
675 |
-
#: C:\Users\
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
-
#: C:\Users\
|
685 |
-
#: C:\Users\
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
#: C:\Users\
|
690 |
-
#: C:\Users\
|
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 |
-
#: C:\Users\
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
#: C:\Users\
|
729 |
-
#: C:\Users\
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
#: C:\Users\
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
#: C:\Users\
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
#: C:\Users\
|
747 |
-
#: C:\Users\
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
#: C:\Users\
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
#: C:\Users\
|
756 |
-
msgid "
|
757 |
-
msgstr ""
|
758 |
-
|
759 |
-
#: C:\Users\
|
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 |
-
#: C:\Users\
|
869 |
-
msgid "
|
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 |
-
#: C:\Users\
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
#: C:\Users\
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
#: C:\Users\
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
#: C:\Users\
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
#: C:\Users\
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
#: C:\Users\
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
#: C:\Users\
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
#: C:\Users\
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
#: C:\Users\
|
955 |
-
msgid "
|
956 |
-
msgstr ""
|
957 |
-
|
958 |
-
#: C:\Users\
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
#: C:\Users\
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
#: C:\Users\
|
967 |
-
msgid "
|
968 |
-
msgstr ""
|
969 |
-
|
970 |
-
#: C:\Users\
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
#: C:\Users\
|
975 |
-
#: C:\Users\
|
976 |
-
#: C:\Users\
|
977 |
-
#: C:\Users\
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
msgstr ""
|
1013 |
-
|
1014 |
-
#: C:\Users\
|
1015 |
-
msgid "
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
msgstr ""
|
1025 |
-
|
1026 |
-
#: C:\Users\
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
#: C:\Users\
|
1038 |
-
msgid "
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
#: C:\Users\
|
1053 |
-
msgid "
|
1054 |
-
msgstr ""
|
1055 |
-
|
1056 |
-
#: C:\Users\
|
1057 |
-
#: C:\Users\
|
1058 |
-
#: C:\Users\
|
1059 |
-
msgid "
|
1060 |
-
msgstr ""
|
1061 |
-
|
1062 |
-
#: C:\Users\
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
#: C:\Users\
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
#: C:\Users\
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
#: C:\Users\
|
1109 |
-
msgid "
|
1110 |
-
msgstr ""
|
1111 |
-
|
1112 |
-
#: C:\Users\
|
1113 |
-
msgid "
|
1114 |
-
msgstr ""
|
1115 |
-
|
1116 |
-
#: C:\Users\
|
1117 |
-
msgid "
|
1118 |
-
msgstr ""
|
1119 |
-
|
1120 |
-
#: C:\Users\
|
1121 |
-
msgid "
|
1122 |
-
msgstr ""
|
1123 |
-
|
1124 |
-
#: C:\Users\
|
1125 |
-
msgid "
|
1126 |
-
msgstr ""
|
1127 |
-
|
1128 |
-
#: C:\Users\
|
1129 |
-
msgid "
|
1130 |
-
msgstr ""
|
1131 |
-
|
1132 |
-
#: C:\Users\
|
1133 |
-
msgid "
|
1134 |
-
msgstr ""
|
1135 |
-
|
1136 |
-
#: C:\Users\
|
1137 |
-
msgid "
|
1138 |
-
msgstr ""
|
1139 |
-
|
1140 |
-
#: C:\Users\
|
1141 |
-
msgid "
|
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 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
msgstr ""
|
1184 |
-
|
1185 |
-
#: C:\Users\
|
1186 |
-
msgid "
|
1187 |
-
msgstr ""
|
1188 |
-
|
1189 |
-
#: C:\Users\
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
#: C:\Users\
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
msgstr ""
|
1208 |
-
|
1209 |
-
#: C:\Users\
|
1210 |
-
msgid "
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: C:\Users\
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
#: C:\Users\
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
#: C:\Users\
|
1290 |
-
msgid "
|
1291 |
-
msgstr ""
|
1292 |
-
|
1293 |
-
#: C:\Users\
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
#: C:\Users\
|
1299 |
-
msgid "
|
1300 |
-
msgstr ""
|
1301 |
-
|
1302 |
-
#: C:\Users\
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
#: C:\Users\
|
1324 |
-
|
1325 |
-
|
1326 |
-
msgstr ""
|
1327 |
-
|
1328 |
-
#: C:\Users\
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
#: C:\Users\
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
#: C:\Users\
|
1341 |
-
msgid "
|
1342 |
-
msgstr ""
|
1343 |
-
|
1344 |
-
#: C:\Users\
|
1345 |
-
msgid "
|
1346 |
-
msgstr ""
|
1347 |
-
|
1348 |
-
#: C:\Users\
|
1349 |
-
msgid "
|
1350 |
-
msgstr ""
|
1351 |
-
|
1352 |
-
#: C:\Users\
|
1353 |
-
msgid "
|
1354 |
-
msgstr ""
|
1355 |
-
|
1356 |
-
#: C:\Users\
|
1357 |
-
msgid "
|
1358 |
-
msgstr ""
|
1359 |
-
|
1360 |
-
#: C:\Users\
|
1361 |
-
msgid "
|
1362 |
-
msgstr ""
|
1363 |
-
|
1364 |
-
#: C:\Users\
|
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 |
-
#: C:\Users\
|
1392 |
-
msgid "
|
1393 |
-
msgstr ""
|
1394 |
-
|
1395 |
-
#: C:\Users\
|
1396 |
-
#: C:\Users\
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
#: C:\Users\
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
#: C:\Users\
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
#: C:\Users\
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
#: C:\Users\
|
1426 |
-
#: C:\Users\
|
1427 |
-
msgid "
|
1428 |
-
msgstr ""
|
1429 |
-
|
1430 |
-
#: C:\Users\
|
1431 |
-
msgid "
|
1432 |
-
msgstr ""
|
1433 |
-
|
1434 |
-
#: C:\Users\
|
1435 |
-
msgid "
|
1436 |
-
msgstr ""
|
1437 |
-
|
1438 |
-
#: C:\Users\
|
1439 |
-
msgid "
|
1440 |
-
msgstr ""
|
1441 |
-
|
1442 |
-
#: C:\Users\
|
1443 |
-
msgid "
|
1444 |
-
msgstr ""
|
1445 |
-
|
1446 |
-
#: C:\Users\
|
1447 |
-
msgid "
|
1448 |
-
msgstr ""
|
1449 |
-
|
1450 |
-
#: C:\Users\
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
#: C:\Users\
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
msgstr ""
|
1477 |
-
|
1478 |
-
#: C:\Users\
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
#: C:\Users\
|
1487 |
-
msgid "
|
1488 |
-
msgstr ""
|
1489 |
-
|
1490 |
-
#: C:\Users\
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
#: C:\Users\
|
1507 |
-
msgid "
|
1508 |
-
msgstr ""
|
1509 |
-
|
1510 |
-
#: C:\Users\
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
#: C:\Users\
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
#: C:\Users\
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
#: C:\Users\
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
#: C:\Users\
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
#: C:\Users\
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
#: C:\Users\
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
#: C:\Users\
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
#: C:\Users\
|
1585 |
-
msgid "
|
1586 |
-
msgstr ""
|
1587 |
-
|
1588 |
-
#: C:\Users\
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
#: C:\Users\
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
#: C:\Users\
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
#: C:\Users\
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
#: C:\Users\
|
1639 |
-
#: C:\Users\
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
#: C:\Users\
|
1645 |
-
msgid "
|
1646 |
-
msgstr ""
|
1647 |
-
|
1648 |
-
#: C:\Users\
|
1649 |
-
#: C:\Users\
|
1650 |
-
msgid "
|
1651 |
-
msgstr ""
|
1652 |
-
|
1653 |
-
#: C:\Users\
|
1654 |
-
#: C:\Users\
|
1655 |
-
msgid "
|
1656 |
-
msgstr ""
|
1657 |
-
|
1658 |
-
#: C:\Users\
|
1659 |
-
#: C:\Users\
|
1660 |
-
msgid "
|
1661 |
-
msgstr ""
|
1662 |
-
|
1663 |
-
#: C:\Users\
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
#: C:\Users\
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
msgstr ""
|
1699 |
-
|
1700 |
-
#: C:\Users\
|
1701 |
-
msgid "
|
1702 |
-
msgstr ""
|
1703 |
-
|
1704 |
-
#: C:\Users\
|
1705 |
-
msgid "
|
1706 |
-
msgstr ""
|
1707 |
-
|
1708 |
-
#: C:\Users\
|
1709 |
-
msgid "
|
1710 |
-
msgstr ""
|
1711 |
-
|
1712 |
-
#: C:\Users\
|
1713 |
-
|
1714 |
-
|
1715 |
-
msgstr ""
|
1716 |
-
|
1717 |
-
#: C:\Users\
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
|
1767 |
-
|
1768 |
-
#: C:\Users\
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
#: C:\Users\
|
1773 |
-
|
1774 |
-
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
msgstr ""
|
1779 |
-
|
1780 |
-
#: C:\Users\
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-12-11 15:08+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-12-11 15:08+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.4\n"
|
15 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
|
16 |
+
"pro\n"
|
17 |
+
|
18 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
20 |
+
msgid "The information size you were trying to submit was larger than"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
24 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
25 |
+
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
29 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
30 |
+
msgid "Since it was also larger than"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
34 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
35 |
+
msgid "no additional information is available."
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
|
39 |
+
msgid "You must be logged in to edit your profile."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
|
43 |
+
msgid "The avatar was successfully deleted."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
47 |
+
msgid "The attachment"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
51 |
+
msgid "was successfully deleted."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
|
55 |
+
msgid "The changes have been successfully saved."
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
59 |
+
msgid ""
|
60 |
+
"The email address you entered is already registered to a different user."
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
64 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
65 |
+
msgid "The email address was"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
69 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
70 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
71 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
72 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
73 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
74 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
75 |
+
msgid "NOT"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
79 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
80 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
81 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
82 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
83 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
84 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
85 |
+
msgid "updated along with the rest of the information."
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
89 |
+
msgid "The email address you entered is invalid."
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
93 |
+
msgid "The passwords you entered do not match."
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
97 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
98 |
+
msgid "The password was"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
102 |
+
msgid "You didn't complete both password fields."
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
106 |
+
msgid "Your profile was NOT updated!"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
|
110 |
+
msgid "There was an error while trying to upload the following attachments:"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
114 |
+
msgid "Possible cause: the size was bigger than"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
118 |
+
msgid "The listed attachements were"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
122 |
+
msgid "There was an error while trying to upload your avatar picture."
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
126 |
+
msgid "Possible cause: size/incorrect file-type."
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
130 |
+
msgid "The avatar was"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
134 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
135 |
+
msgid "There was an error while trying to upload the following attachment(s)"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
139 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
140 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
144 |
+
msgid "This file was"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
148 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
149 |
+
msgid "Name"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
153 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:150
|
154 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
155 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:497
|
158 |
+
msgid "Username"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
|
162 |
+
msgid "Usernames cannot be changed."
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
|
166 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
|
167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
|
168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
|
169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
|
170 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
|
171 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
|
172 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
|
173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
|
174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
|
175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
176 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
177 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
178 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:297
|
179 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:362
|
180 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:428
|
181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:482
|
182 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:530
|
183 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:593
|
184 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:702
|
185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
|
186 |
+
msgid "This field is marked as required by the administrator."
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
|
190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
|
191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
|
192 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
|
193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
|
194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
|
195 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
|
197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
|
198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
|
199 |
+
msgid ""
|
200 |
+
"This field wasn't updated because you entered and empty string (It was "
|
201 |
+
"marked as required by the administrator."
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
205 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
207 |
+
msgid "First Name"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
211 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
212 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
213 |
+
msgid "Last Name"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
219 |
+
msgid "Nickname"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
|
223 |
+
msgid "Display name publicly as"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
227 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
228 |
+
msgid "Contact Info"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
232 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
234 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
235 |
+
msgid "E-mail"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
|
239 |
+
msgid "(required)"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
243 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
244 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
245 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:539
|
246 |
+
msgid "Website"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
250 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
251 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
252 |
+
msgid "AIM"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
256 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
257 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
258 |
+
msgid "Yahoo IM"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
263 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
264 |
+
msgid "Jabber / Google Talk"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
268 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
269 |
+
msgid "About Yourself"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
273 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
274 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
275 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:545
|
276 |
+
msgid "Biographical Info"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
280 |
+
msgid "New Password"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
285 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
286 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
287 |
+
msgid "Repeat Password"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
|
291 |
+
msgid "Update"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:45
|
295 |
+
msgid "You are currently logged in as"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:46
|
299 |
+
msgid "Log out of this account"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:46
|
303 |
+
msgid "Log out"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:64
|
307 |
+
msgid "You have successfully logged in as"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:91
|
311 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:105
|
312 |
+
msgid ""
|
313 |
+
"You will soon be redirected automatically. If you see this page for more "
|
314 |
+
"than 1 second, please click"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:91
|
318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:105
|
319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
320 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
321 |
+
msgid "here"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:123
|
325 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
326 |
+
msgid "ERROR:"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:123
|
330 |
+
msgid "The username field is empty"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
|
334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
335 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
336 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
337 |
+
msgid "Password"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:166
|
341 |
+
msgid "Log in"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
|
345 |
+
msgid "Remember me"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
349 |
+
msgid "Lost password?"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
353 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
354 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
355 |
+
msgid "ERROR"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
359 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
360 |
+
msgid ""
|
361 |
+
"Your account has to be confirmed by an administrator before you can use the "
|
362 |
+
"\"Password Reset\" feature."
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
366 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
367 |
+
msgid "A password reset email has been sent to "
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
371 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
372 |
+
msgid "Following the link sent in the email address will reset the password."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
376 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
377 |
+
msgid ""
|
378 |
+
"Someone requested that the password be reset for the following account: "
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
383 |
+
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
387 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
388 |
+
msgid "To reset your password, visit the following link:"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
392 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
393 |
+
msgid "Password Reset Feature from"
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
397 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
398 |
+
msgid "There was an error while trying to send the activation link to "
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
402 |
+
msgid "The email address entered wasn't found in the database!"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
406 |
+
msgid "Please check that you entered the correct email address."
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
410 |
+
msgid "The username entered wasn't found in the database!"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
414 |
+
msgid "Please check that you entered the correct username."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
418 |
+
msgid "Your password has been successfully changed!"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
422 |
+
msgid "You have successfully reset your password to:"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
427 |
+
msgid "Password Successfully Reset for"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
431 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
432 |
+
msgid "from"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
436 |
+
msgid "has requested a password change via the password reset feature."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
440 |
+
msgid "His/her new password is:"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
444 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
445 |
+
msgid "The entered passwords don't match!"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
449 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
450 |
+
msgid "Reset Password"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
454 |
+
msgid "Invalid key!"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
458 |
+
msgid "Please enter your username or email address."
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
462 |
+
msgid "You will receive a link to create a new password via email."
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
466 |
+
msgid "Username or E-mail"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
470 |
+
msgid "Get New Password"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
474 |
+
#, php-format
|
475 |
+
msgid ""
|
476 |
+
"To activate your user, please click the following link:\n"
|
477 |
+
"\n"
|
478 |
+
"%s%s%s\n"
|
479 |
+
"\n"
|
480 |
+
"After you activate, you will receive *another email* with your login.\n"
|
481 |
+
"\n"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
485 |
+
#, php-format
|
486 |
+
msgid "[%1$s] Activate %2$s"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
490 |
+
msgid "Invalid activation key!"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
494 |
+
msgid "The user is already active!"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
498 |
+
msgid "Could not create user!"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
502 |
+
msgid "That username is already activated!"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
506 |
+
msgid "The user was successfully activated."
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
510 |
+
msgid "There was an error while trying to activate the user."
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
514 |
+
msgid "New subscriber on"
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
518 |
+
msgid ""
|
519 |
+
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
520 |
+
"please remember that you need to approve this user before he/she can log in!"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
524 |
+
msgid "A new subscriber has (been) registered!"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
528 |
+
msgid "A new account has been created for you."
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
532 |
+
msgid "Welcome to"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
536 |
+
msgid "Your username is:"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
540 |
+
msgid "and password:"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
544 |
+
msgid ""
|
545 |
+
"Before you can access your account, an administrator needs to approve it. "
|
546 |
+
"You will be notified via email."
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
550 |
+
msgid "The user was NOT created!"
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
554 |
+
msgid "A username is required for registration."
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
558 |
+
msgid "Sorry, that username already exists!"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
562 |
+
msgid "You must enter a valid email address."
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
566 |
+
msgid "Sorry, that email address is already used!"
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
570 |
+
msgid "You didn't complete one of the password-fields!"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
574 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
575 |
+
msgid "The account was NOT created!"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
579 |
+
msgid "You must agree to the terms and conditions before registering!"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
583 |
+
msgid "(Several required fields were left uncompleted)"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
587 |
+
msgid "This username is already reserved to be used soon."
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
591 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
592 |
+
msgid "Please try a different one!"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
596 |
+
msgid "This email address is already reserved to be used soon."
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
600 |
+
msgid "You are logged in as"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
604 |
+
msgid "You don't need another account."
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
608 |
+
msgid "Log out of this account."
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
612 |
+
msgid "Logout"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1169
|
616 |
+
msgid "An email has been sent to "
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1169
|
620 |
+
msgid "with information on how to activate his/her account"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1174
|
624 |
+
msgid "A user account has been created for"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
628 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
629 |
+
msgid ""
|
630 |
+
"You will soon be redirected automatically. If you see this page for more "
|
631 |
+
"than 3 seconds, please click"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
635 |
+
msgid ""
|
636 |
+
"An email has been sent to you with information on how to activate your "
|
637 |
+
"account"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
641 |
+
msgid "Thank you for registering"
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
645 |
+
msgid "An error occured while trying to send the notification email."
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
649 |
+
msgid "An email containing activation instructions was successfully sent."
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
653 |
+
msgid "An email containing the username and password was successfully sent."
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
657 |
+
msgid "Users can register themselves or you can manually create users here."
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
661 |
+
msgid ""
|
662 |
+
"Users cannot currently register themselves, but you can manually create "
|
663 |
+
"users here."
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
667 |
+
msgid "Only an administrator can add new users."
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
671 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
672 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
673 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
675 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
676 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
677 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
678 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
679 |
+
msgid ""
|
680 |
+
"This field must be filled out before registering (It was marked as required "
|
681 |
+
"by the administrator)"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
685 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
686 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
687 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
688 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
689 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
690 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
691 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
692 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
693 |
+
msgid "This field is marked as required by the administrator"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
697 |
+
msgid "Anti-Spam"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
701 |
+
msgid "Send these credentials via email."
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
705 |
+
msgid "Add User"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
709 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
710 |
+
msgid "Register"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
|
714 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
|
715 |
+
msgid "Show/Hide the Admin Bar on Front End"
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
|
719 |
+
msgid "User-group"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
|
723 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
|
724 |
+
msgid "Visibility"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:28
|
728 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
729 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
730 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
731 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
|
732 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
|
733 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
|
734 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
|
735 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
|
736 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
|
737 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
|
738 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
|
739 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
|
740 |
+
msgid "Show"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:29
|
744 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
745 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
746 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
747 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
|
748 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
|
749 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
|
750 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
|
751 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
|
752 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
|
753 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
|
754 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
|
755 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
|
756 |
+
msgid "Hide"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:40
|
760 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
761 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
762 |
+
msgid "NOTE:"
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:41
|
766 |
+
msgid ""
|
767 |
+
"If you added new roles (via another plugin) <u>after</u> Profile Builder was "
|
768 |
+
"activated, please reactivate it, since the roles are initialized during "
|
769 |
+
"plugin activation."
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:48
|
773 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
774 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
775 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
776 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
777 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
778 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:369
|
779 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
780 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
781 |
+
msgid "Save Changes"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
|
785 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
|
786 |
+
msgid "Profile Builder"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
|
790 |
+
msgid "Welcome to Profile Builder!"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
|
794 |
+
msgid ""
|
795 |
+
" lets you customize your website by adding a front-end menu for all your "
|
796 |
+
"users, giving them a more flexible way to modify their user-information or "
|
797 |
+
"to register new users."
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
|
801 |
+
msgid ""
|
802 |
+
"Also, grants users with administrator rights to customize basic fields or to "
|
803 |
+
"add new ones."
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
|
807 |
+
msgid ""
|
808 |
+
"To achieve this, just create a new page, and give it an intuitive name(e.g. "
|
809 |
+
"Edit Profile)."
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
|
813 |
+
msgid ""
|
814 |
+
"Now all you need to do is add the following shortcode(for the previous "
|
815 |
+
"example): "
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
|
819 |
+
msgid "Publish your page and you are ready to go!"
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
|
823 |
+
msgid "You can use the following shortcodes:"
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
|
827 |
+
msgid "for a log-in form."
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
|
831 |
+
msgid "to add a registration form."
|
832 |
+
msgstr ""
|
833 |
+
|
834 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
|
835 |
+
msgid ""
|
836 |
+
"to grant users a front-end acces to their personal information(requires user "
|
837 |
+
"to be logged in)."
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
|
841 |
+
msgid "to add a password recovery form."
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
|
845 |
+
msgid ""
|
846 |
+
"With the <strong>Pro</strong> version, users with administrator rights have "
|
847 |
+
"access to the following features:"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
|
851 |
+
msgid ""
|
852 |
+
"add a custom stylesheet/inherit values from the current theme or use one of "
|
853 |
+
"the following built into this plugin: default, white or black."
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
|
857 |
+
msgid ""
|
858 |
+
"select whether to display or not the admin bar in the front end for a "
|
859 |
+
"specific user-group registered to the site."
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
|
863 |
+
msgid ""
|
864 |
+
"select which information-field can users see/modify. The hidden fields' "
|
865 |
+
"values remain unmodified."
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
|
869 |
+
msgid ""
|
870 |
+
"add custom fields to the existing ones, with several types to choose from: "
|
871 |
+
"heading, text, textarea, select, checkbox, radio, and/or upload."
|
872 |
+
msgstr ""
|
873 |
+
|
874 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
|
875 |
+
msgid "add an avatar field."
|
876 |
+
msgstr ""
|
877 |
+
|
878 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
|
879 |
+
msgid "create custom redirects."
|
880 |
+
msgstr ""
|
881 |
+
|
882 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
|
883 |
+
msgid "front-end userlisting using the"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
|
887 |
+
msgid "shortcode."
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
891 |
+
msgid "this plugin only adds/removes fields in the front-end."
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
|
895 |
+
msgid ""
|
896 |
+
"The default information-fields will still be visible(and thus modifiable)"
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
|
900 |
+
msgid ""
|
901 |
+
"from the back-end, while custom fields will only be visible in the front-end."
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
|
905 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
|
906 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
|
907 |
+
msgid "Default Profile Fields"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
|
911 |
+
msgid "Input Field Name"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
|
915 |
+
msgid "Required"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
|
919 |
+
msgid "Name:"
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
|
923 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
|
924 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
|
925 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
|
926 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
|
927 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
|
928 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
|
929 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
|
930 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
|
931 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
|
932 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
|
933 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
934 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
935 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
936 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
937 |
+
msgid "Yes"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
|
941 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
|
942 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
|
943 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
|
944 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
|
945 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
|
946 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
|
947 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
|
948 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:148
|
949 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:161
|
950 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:180
|
951 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
952 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
953 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
954 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
955 |
+
msgid "No"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
|
959 |
+
msgid "Display name publicly as..."
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
|
963 |
+
msgid "Contact Info:"
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
|
967 |
+
msgid "About Yourself:"
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
|
971 |
+
msgid "(New) Password"
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
975 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
976 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
977 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:37
|
978 |
+
msgid "General Settings"
|
979 |
+
msgstr ""
|
980 |
+
|
981 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:12
|
982 |
+
msgid "Stylesheet Used on the Front-End:"
|
983 |
+
msgstr ""
|
984 |
+
|
985 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
986 |
+
msgid "Default"
|
987 |
+
msgstr ""
|
988 |
+
|
989 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
990 |
+
msgid "White"
|
991 |
+
msgstr ""
|
992 |
+
|
993 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:19
|
994 |
+
msgid "Black"
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:23
|
998 |
+
msgid "None"
|
999 |
+
msgstr ""
|
1000 |
+
|
1001 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:29
|
1002 |
+
msgid "\"Email Confirmation\" Feature Activated:"
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:39
|
1006 |
+
msgid "\"Admin Approval\" Feature Activated:"
|
1007 |
+
msgstr ""
|
1008 |
+
|
1009 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:48
|
1010 |
+
msgid ""
|
1011 |
+
"The black stylesheet is intended for sites/blogs with a dark background."
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:49
|
1015 |
+
msgid ""
|
1016 |
+
"The white stylesheet is intended for a sites/blogs with a light background "
|
1017 |
+
"color."
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:50
|
1021 |
+
msgid ""
|
1022 |
+
"On single-site installations the \"Email Confirmation\" feature only works "
|
1023 |
+
"in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1027 |
+
msgid ""
|
1028 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1029 |
+
"Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-"
|
1030 |
+
"profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive "
|
1031 |
+
"access to automatic updates and support. Need a license key? <a href='http://"
|
1032 |
+
"www.cozmoslabs.com/wordpress-profile-builder/?"
|
1033 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' "
|
1034 |
+
"class='button-primary'>Purchase one now</a>"
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1038 |
+
msgid ""
|
1039 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please <a "
|
1040 |
+
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1041 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</"
|
1042 |
+
"a> to receive access to automatic updates and priority support. <a "
|
1043 |
+
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1044 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' "
|
1045 |
+
"class='button-primary'>Purchase one now</a>"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1049 |
+
msgid "Basic Information"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
|
1053 |
+
msgid "Show/Hide the Admin Bar on Front-end"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
|
1057 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
|
1058 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
|
1059 |
+
msgid "Extra Profile Fields"
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
|
1063 |
+
msgid "Addons"
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
|
1067 |
+
msgid "Register Your Version"
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
|
1071 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
|
1072 |
+
msgid "Activate/Deactivate Addons"
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:14
|
1076 |
+
msgid "Name/Description"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:15
|
1080 |
+
msgid "Status"
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:20
|
1084 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:30
|
1085 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:31
|
1086 |
+
msgid "User-Listing"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:22
|
1090 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
|
1091 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
|
1092 |
+
msgid "Active"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
|
1096 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
|
1097 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
|
1098 |
+
msgid "Inactive"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1102 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1103 |
+
msgid "Custom Redirects"
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:34
|
1107 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:255
|
1108 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:256
|
1109 |
+
msgid "reCAPTCHA"
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1113 |
+
msgid "Redirects on custom page requests:"
|
1114 |
+
msgstr ""
|
1115 |
+
|
1116 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1117 |
+
msgid "Action"
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1121 |
+
msgid "Redirect"
|
1122 |
+
msgstr ""
|
1123 |
+
|
1124 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1125 |
+
msgid "URL"
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1129 |
+
msgid "After Registration:"
|
1130 |
+
msgstr ""
|
1131 |
+
|
1132 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1133 |
+
msgid "After Login:"
|
1134 |
+
msgstr ""
|
1135 |
+
|
1136 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1137 |
+
msgid "Recover Password (*)"
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1141 |
+
msgid ""
|
1142 |
+
"When activated this feature will redirect the user on both the default "
|
1143 |
+
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1144 |
+
"Profile Builder on the front-end login page."
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1148 |
+
msgid "Redirects on default WordPress page requests:"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1152 |
+
msgid "Requested WP Page"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1156 |
+
msgid "Default WP Login Page(*)"
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1160 |
+
msgid "Default WP Logout Page(**)"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1164 |
+
msgid "Default WP Register Page"
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1168 |
+
msgid "Default WP Dashboard (***)"
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1172 |
+
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1176 |
+
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1180 |
+
msgid ""
|
1181 |
+
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1182 |
+
"manage options)."
|
1183 |
+
msgstr ""
|
1184 |
+
|
1185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:49
|
1186 |
+
msgid "Could not open socket!"
|
1187 |
+
msgstr ""
|
1188 |
+
|
1189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
1190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:120
|
1191 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:123
|
1195 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:180
|
1199 |
+
msgid ""
|
1200 |
+
"To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:196
|
1204 |
+
msgid ""
|
1205 |
+
"To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
|
1206 |
+
"you can do so at"
|
1207 |
+
msgstr ""
|
1208 |
+
|
1209 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:260
|
1210 |
+
msgid ""
|
1211 |
+
"Adds a reCAPTCHA form on the registration page created in the front-end "
|
1212 |
+
"(only)."
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:261
|
1216 |
+
msgid "For this you must get a public and private key from Google:"
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:267
|
1220 |
+
msgid "Key"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:268
|
1224 |
+
msgid "Code"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:272
|
1228 |
+
msgid "Public Key:"
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:276
|
1232 |
+
msgid "Private Key:"
|
1233 |
+
msgstr ""
|
1234 |
+
|
1235 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:311
|
1236 |
+
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:33
|
1240 |
+
msgid ""
|
1241 |
+
"To create a page containing the users registered to this current site/blog, "
|
1242 |
+
"insert the following shortcode in a (blank) page: "
|
1243 |
+
msgstr ""
|
1244 |
+
|
1245 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:34
|
1246 |
+
msgid ""
|
1247 |
+
"For instance, to create a userlisting shortcode listing only the editors and "
|
1248 |
+
"authors, visible to only the users currently logged in, you would use:"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:39
|
1252 |
+
msgid "These settings are applied to the front-end userlisting."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:45
|
1256 |
+
msgid "Number of Users/Page: "
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:62
|
1260 |
+
msgid "Default Sorting Order: "
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:73
|
1264 |
+
msgid "\"All-Userlisting\" Template"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:75
|
1268 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:217
|
1269 |
+
msgid ""
|
1270 |
+
"With the userlisting templates you can customize the look, feel and "
|
1271 |
+
"information listed by the shortcode."
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1275 |
+
msgid ""
|
1276 |
+
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1277 |
+
"on each page access where the shortcode is present."
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:80
|
1281 |
+
msgid "Avatar size: "
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:96
|
1285 |
+
msgid "Insert \"Sort By\" Field:"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:124
|
1289 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:223
|
1290 |
+
msgid "Insert \"User-Meta\" Field:"
|
1291 |
+
msgstr ""
|
1292 |
+
|
1293 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:155
|
1294 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:261
|
1295 |
+
msgid "Insert Extra Functions:"
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:170
|
1299 |
+
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:172
|
1303 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:275
|
1304 |
+
msgid ""
|
1305 |
+
"If you wish to use a default userlisting, just copy the following code and "
|
1306 |
+
"paste it in the textarea below:"
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:215
|
1310 |
+
msgid "\"Single-Userlisting\" Template"
|
1311 |
+
msgstr ""
|
1312 |
+
|
1313 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1314 |
+
msgid ""
|
1315 |
+
"The \"Single User Listing\" template is used to list an individual user. "
|
1316 |
+
"It's displayed when clickin on the \"more info\" link."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:273
|
1320 |
+
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:379
|
1324 |
+
msgid ""
|
1325 |
+
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:379
|
1329 |
+
msgid "You can find it in Profile Builder's menu."
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:404
|
1333 |
+
msgid "You need to be logged in to view the userlisting!"
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:442
|
1337 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:468
|
1338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:486
|
1339 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1327
|
1340 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1413
|
1341 |
+
msgid "Search Users by All Fields"
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:486
|
1345 |
+
msgid "Leave Blank and Press Search to List All Users"
|
1346 |
+
msgstr ""
|
1347 |
+
|
1348 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:490
|
1349 |
+
msgid "Search"
|
1350 |
+
msgstr ""
|
1351 |
+
|
1352 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:503
|
1353 |
+
msgid "First/Lastname"
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:509
|
1357 |
+
msgid "Email"
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:515
|
1361 |
+
msgid "Sign-up Date"
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:521
|
1365 |
+
msgid "Firstname"
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:527
|
1369 |
+
msgid "Lastname"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:533
|
1373 |
+
msgid "Display Name"
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:551
|
1377 |
+
msgid "Posts"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:593
|
1381 |
+
msgid "Click here to see more information about this user"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:593
|
1385 |
+
msgid "More..."
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:794
|
1389 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1101
|
1390 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1391 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1392 |
+
msgid "No uploaded attachment"
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:796
|
1396 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1103
|
1397 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1159
|
1398 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1399 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1400 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1401 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
1402 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
1403 |
+
msgid "Click to see the current attachment"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:922
|
1407 |
+
msgid "Click here to go back"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:922
|
1411 |
+
msgid "Back"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1101
|
1415 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1103
|
1416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1417 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1418 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1419 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1420 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1421 |
+
msgid "Current file"
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1157
|
1425 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1427 |
+
msgid "Avatar"
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1214
|
1431 |
+
msgid "No results found!"
|
1432 |
+
msgstr ""
|
1433 |
+
|
1434 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1310
|
1435 |
+
msgid "«« First"
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1439 |
+
msgid "« Prev"
|
1440 |
+
msgstr ""
|
1441 |
+
|
1442 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1443 |
+
msgid "Next » "
|
1444 |
+
msgstr ""
|
1445 |
+
|
1446 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1447 |
+
msgid "Last »»"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:284
|
1451 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:427
|
1452 |
+
msgid "You must give your option a title."
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:288
|
1456 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:431
|
1457 |
+
msgid "You have entered an invalid meta-key format!"
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:292
|
1461 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:435
|
1462 |
+
msgid "You must enter a valid meta-key."
|
1463 |
+
msgstr ""
|
1464 |
+
|
1465 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:298
|
1466 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:308
|
1467 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:445
|
1468 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:457
|
1469 |
+
msgid "That meta-key is already in use."
|
1470 |
+
msgstr ""
|
1471 |
+
|
1472 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:315
|
1473 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:465
|
1474 |
+
msgid ""
|
1475 |
+
"There is already an avatar input-type. You can only have one avatar present."
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1479 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1480 |
+
msgid ""
|
1481 |
+
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1482 |
+
"have one present."
|
1483 |
+
msgstr ""
|
1484 |
+
|
1485 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:327
|
1486 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:477
|
1487 |
+
msgid "The textarea row value must be numeric."
|
1488 |
+
msgstr ""
|
1489 |
+
|
1490 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:331
|
1491 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:481
|
1492 |
+
msgid "The maxlength attribute must be numeric."
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1496 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1497 |
+
msgid "The value must be between 20 and 200!"
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:343
|
1501 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
|
1502 |
+
msgid "The width component of the entered value must be numeric!"
|
1503 |
+
msgstr ""
|
1504 |
+
|
1505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1506 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1507 |
+
msgid "The height component of the entered value must be numeric!"
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1511 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1512 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1513 |
+
msgstr ""
|
1514 |
+
|
1515 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1517 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1521 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1522 |
+
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1523 |
+
msgstr ""
|
1524 |
+
|
1525 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:354
|
1526 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:504
|
1527 |
+
msgid "The entered avatar size must be numeric!"
|
1528 |
+
msgstr ""
|
1529 |
+
|
1530 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:388
|
1531 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:564
|
1532 |
+
msgid "There was an error, please try again."
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:18
|
1536 |
+
msgid "Do you want to"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:18
|
1540 |
+
msgid "the current user?"
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1544 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1545 |
+
msgid "Your account on"
|
1546 |
+
msgstr ""
|
1547 |
+
|
1548 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1549 |
+
msgid "has been approved!"
|
1550 |
+
msgstr ""
|
1551 |
+
|
1552 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1553 |
+
msgid "An administrator has just approved your account on"
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1557 |
+
msgid "has been unapproved!"
|
1558 |
+
msgstr ""
|
1559 |
+
|
1560 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1561 |
+
msgid "An administrator has just unapproved your account on"
|
1562 |
+
msgstr ""
|
1563 |
+
|
1564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1565 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:172
|
1566 |
+
msgid "Approve"
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:127
|
1570 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:217
|
1571 |
+
msgid "Unapproved"
|
1572 |
+
msgstr ""
|
1573 |
+
|
1574 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:138
|
1575 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:168
|
1576 |
+
msgid "Unapprove"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:139
|
1580 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:214
|
1581 |
+
msgid "Approved"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:167
|
1585 |
+
msgid "unapprove"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:171
|
1589 |
+
msgid "approve"
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1593 |
+
msgid "Are you sure you want to"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1597 |
+
msgid "this user?"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1601 |
+
msgid ""
|
1602 |
+
"<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
|
1603 |
+
"before you can log in."
|
1604 |
+
msgstr ""
|
1605 |
+
|
1606 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1607 |
+
msgid ""
|
1608 |
+
"You can create as many extra fields as your project requires. To break your "
|
1609 |
+
"custom fields into sections (on the front-end), add a \""
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1613 |
+
msgid "heading"
|
1614 |
+
msgstr ""
|
1615 |
+
|
1616 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1617 |
+
msgid "\" custom field."
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1621 |
+
msgid "All of the fields can be sorted and rearranged to your liking with"
|
1622 |
+
msgstr ""
|
1623 |
+
|
1624 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1625 |
+
msgid "Drag"
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1629 |
+
msgid "Drop"
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1633 |
+
msgid ""
|
1634 |
+
"Don't worry about the order in which you create your custom fields, you can "
|
1635 |
+
"always reorder them."
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
|
1639 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
|
1640 |
+
msgid "Title"
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
|
1644 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
|
1645 |
+
msgid "Type"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
|
1649 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
|
1650 |
+
msgid "Meta-Key"
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
|
1654 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
|
1655 |
+
msgid "ID"
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
|
1659 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
|
1660 |
+
msgid "Req'd"
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
|
1664 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
|
1665 |
+
msgid "Add Option"
|
1666 |
+
msgstr ""
|
1667 |
+
|
1668 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
|
1669 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
|
1670 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
|
1671 |
+
msgid "Edit"
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
|
1675 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
|
1676 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
|
1677 |
+
msgid "Delete"
|
1678 |
+
msgstr ""
|
1679 |
+
|
1680 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
|
1681 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:84
|
1682 |
+
msgid "Title:"
|
1683 |
+
msgstr ""
|
1684 |
+
|
1685 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
|
1686 |
+
msgid "The title of the item."
|
1687 |
+
msgstr ""
|
1688 |
+
|
1689 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
|
1690 |
+
msgid "Meta-Key:"
|
1691 |
+
msgstr ""
|
1692 |
+
|
1693 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
|
1694 |
+
msgid ""
|
1695 |
+
"Use this in conjuction with WordPress functions to display the value in the "
|
1696 |
+
"page of your choosing. Auto-completed but editable - in this case it must be "
|
1697 |
+
"uniqe.<br/>Changing this might take long in case of a very big user-count."
|
1698 |
+
msgstr ""
|
1699 |
+
|
1700 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
|
1701 |
+
msgid "Option Type:"
|
1702 |
+
msgstr ""
|
1703 |
+
|
1704 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
|
1705 |
+
msgid "Choose one of the supported option types."
|
1706 |
+
msgstr ""
|
1707 |
+
|
1708 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
|
1709 |
+
msgid "Description:"
|
1710 |
+
msgstr ""
|
1711 |
+
|
1712 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
|
1713 |
+
msgid ""
|
1714 |
+
"Enter a detailed description of the option for end users to read(optional)."
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1718 |
+
msgid "You can only insert links using standard HTML syntax:"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1722 |
+
msgid "address"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1726 |
+
msgid "name"
|
1727 |
+
msgstr ""
|
1728 |
+
|
1729 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
|
1730 |
+
msgid "Options:"
|
1731 |
+
msgstr ""
|
1732 |
+
|
1733 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
|
1734 |
+
msgid ""
|
1735 |
+
"Enter a comma separated list of options. For example, you could have \"One,"
|
1736 |
+
"Two,Three\" or just a single value like \"Yes\" for a checkbox."
|
1737 |
+
msgstr ""
|
1738 |
+
|
1739 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
|
1740 |
+
msgid "ID:"
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
|
1744 |
+
msgid ""
|
1745 |
+
"This is the internal ID for this input. You can use this in conjuction with "
|
1746 |
+
"filters to target this element if needed.<br/>Can't be edited."
|
1747 |
+
msgstr ""
|
1748 |
+
|
1749 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
|
1750 |
+
msgid "Required:"
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
|
1754 |
+
msgid "Check this box to make this field required."
|
1755 |
+
msgstr ""
|
1756 |
+
|
1757 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:193
|
1758 |
+
msgid "Cancel"
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:194
|
1762 |
+
msgid "Save"
|
1763 |
+
msgstr ""
|
1764 |
+
|
1765 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
|
1766 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
|
1767 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
|
1768 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
|
1769 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
|
1770 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
|
1771 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
|
1772 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
|
1773 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
|
1774 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
|
1775 |
+
msgid ""
|
1776 |
+
"This field wasn't updated because you entered and empty string (It was "
|
1777 |
+
"marked as required by the administrator)"
|
1778 |
+
msgstr ""
|
1779 |
+
|
1780 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
|
1781 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
|
1782 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
|
1783 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
|
1784 |
+
msgid "max upload size"
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
|
1788 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
|
1789 |
+
msgid "Are you sure you want to delete this attachment?"
|
1790 |
+
msgstr ""
|
1791 |
+
|
1792 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1793 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1794 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
1795 |
+
msgid "Click to delete the current attachment"
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1799 |
+
msgid ""
|
1800 |
+
"The attachment can't be deleted (It was marked as required by the "
|
1801 |
+
"administrator)"
|
1802 |
+
msgstr ""
|
1803 |
+
|
1804 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1805 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1806 |
+
msgid "Current avatar"
|
1807 |
+
msgstr ""
|
1808 |
+
|
1809 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1810 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1811 |
+
msgid "No uploaded avatar"
|
1812 |
+
msgstr ""
|
1813 |
+
|
1814 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
|
1815 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
|
1816 |
+
msgid "Are you sure you want to delete this avatar?"
|
1817 |
+
msgstr ""
|
1818 |
+
|
1819 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
1820 |
+
msgid ""
|
1821 |
+
"The avatar image can't be deleted (It was marked as required by the "
|
1822 |
+
"administrator)."
|
1823 |
+
msgstr ""
|
1824 |
+
|
1825 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1826 |
+
msgid "Click to see the current avatar"
|
1827 |
+
msgstr ""
|
1828 |
+
|
1829 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1830 |
+
msgid "Click to delete the avatar"
|
1831 |
+
msgstr ""
|
1832 |
+
|
1833 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
|
1834 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1835 |
+
msgstr ""
|
1836 |
+
|
1837 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
|
1838 |
+
msgid "Profile Builder Login Widget"
|
1839 |
+
msgstr ""
|
1840 |
+
|
1841 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:44
|
1842 |
+
msgid "Don't have an account?"
|
1843 |
+
msgstr ""
|
1844 |
+
|
1845 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1846 |
+
msgid "Lost Your Password?"
|
1847 |
+
msgstr ""
|
1848 |
+
|
1849 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:80
|
1850 |
+
msgid "Login"
|
1851 |
+
msgstr ""
|
1852 |
+
|
1853 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1854 |
+
msgid "After login redirect URL:"
|
1855 |
+
msgstr ""
|
1856 |
+
|
1857 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1858 |
+
msgid "Register page URL (optional)"
|
1859 |
+
msgstr ""
|
1860 |
+
|
1861 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1862 |
+
msgid "Password Recovery page URL (optional)"
|
1863 |
+
msgstr ""
|
1864 |
+
|
1865 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1866 |
+
msgid "The user-validation has failed - the avatar was not deleted!"
|
1867 |
+
msgstr ""
|
1868 |
+
|
1869 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:25
|
1870 |
+
msgid "The user-validation has failed - the attachment was not deleted!"
|
1871 |
+
msgstr ""
|
1872 |
+
|
1873 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:473
|
1874 |
+
#, php-format
|
1875 |
+
msgid ""
|
1876 |
+
"Your <strong>Profile Builder Pro</strong> serial number is invalid or "
|
1877 |
+
"missing. Please %sregister your copy%s of Profile Builder to receive access "
|
1878 |
+
"to automatic updates and support. Need a license key? %sPurchase one now%s "
|
1879 |
+
"%sDismiss%s"
|
1880 |
+
msgstr ""
|
1881 |
+
|
1882 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:477
|
1883 |
+
#, php-format
|
1884 |
+
msgid ""
|
1885 |
+
"Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please "
|
1886 |
+
"%sRenew Your Licence%s to receive access to automatic updates and priority "
|
1887 |
+
"support. %sPurchase one now%s %sDismiss%s"
|
1888 |
+
msgstr ""
|
1889 |
+
|
1890 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
1891 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:10
|
1892 |
+
msgid "Register your version of Profile Builder Pro"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:11
|
1896 |
+
msgid ""
|
1897 |
+
"Now that you acquired a copy of Profile Builder Pro, you should take the "
|
1898 |
+
"time and register it with the serial number you received in the e-mail."
|
1899 |
+
msgstr ""
|
1900 |
+
|
1901 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:12
|
1902 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:53
|
1903 |
+
msgid ""
|
1904 |
+
"If you register this version of Profile Builder, you'll receive information "
|
1905 |
+
"regarding eventual upgrades, patches, and - if needed - technical support."
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:13
|
1909 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:54
|
1910 |
+
msgid "Serial Number:"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
|
1914 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
|
1915 |
+
msgid "The serial number was successfully validated!"
|
1916 |
+
msgstr ""
|
1917 |
+
|
1918 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
|
1919 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
|
1920 |
+
msgid "The serial number entered couldn't be validated!"
|
1921 |
+
msgstr ""
|
1922 |
+
|
1923 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
|
1924 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
|
1925 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
1926 |
+
msgstr ""
|
1927 |
+
|
1928 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:23
|
1929 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:64
|
1930 |
+
msgid ""
|
1931 |
+
"The serial number couldn't be validated because process timed out. This is "
|
1932 |
+
"possible due to the server being down. Please try again later!"
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:29
|
1936 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1937 |
+
msgstr ""
|
1938 |
+
|
1939 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:50
|
1940 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:51
|
1941 |
+
msgid "Register your version of Profile Builder Hobbyist"
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:52
|
1945 |
+
msgid ""
|
1946 |
+
"Now that you acquired a copy of Profile Builder Hobbyist, you should take "
|
1947 |
+
"the time and register it with the serial number you received in the e-mail."
|
1948 |
+
msgstr ""
|
1949 |
+
|
1950 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
|
1951 |
+
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
1952 |
+
msgstr ""
|
translation/profilebuilder-es_ES.mo
CHANGED
Binary file
|
translation/profilebuilder-es_ES.po
CHANGED
@@ -1,1877 +1,2078 @@
|
|
1 |
-
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"
|
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-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
#: C:\Users\
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
-
|
33 |
-
#: C:\Users\
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
msgstr "
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
#: C:\Users\
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
#: C:\Users\
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
#: C:\Users\
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
msgid "
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: C:\Users\
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
msgid "
|
114 |
-
msgstr "
|
115 |
-
|
116 |
-
#: C:\Users\
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
119 |
-
|
120 |
-
#: C:\Users\
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
msgid "
|
134 |
-
msgstr "
|
135 |
-
|
136 |
-
#: C:\Users\
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
#: C:\Users\
|
158 |
-
#: C:\Users\
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
#: C:\Users\
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
#: C:\Users\
|
167 |
-
#: C:\Users\
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
#: C:\Users\
|
172 |
-
#: C:\Users\
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
#: C:\Users\
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
#: C:\Users\
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
#: C:\Users\
|
186 |
-
#: C:\Users\
|
187 |
-
#: C:\Users\
|
188 |
-
#: C:\Users\
|
189 |
-
#: C:\Users\
|
190 |
-
#: C:\Users\
|
191 |
-
#: C:\Users\
|
192 |
-
#: C:\Users\
|
193 |
-
#: C:\Users\
|
194 |
-
#: C:\Users\
|
195 |
-
#: C:\Users\
|
196 |
-
#: C:\Users\
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
#: C:\Users\
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
#: C:\Users\
|
206 |
-
msgid "
|
207 |
-
msgstr ""
|
208 |
-
|
209 |
-
#: C:\Users\
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
#: C:\Users\
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
#: C:\Users\
|
218 |
-
#: C:\Users\
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
#: C:\Users\
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
#: C:\Users\
|
238 |
-
#: C:\Users\
|
239 |
-
msgid "
|
240 |
-
msgstr "
|
241 |
-
|
242 |
-
#: C:\Users\
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
#: C:\Users\
|
247 |
-
#: C:\Users\
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
#: C:\Users\
|
252 |
-
#: C:\Users\
|
253 |
-
#: C:\Users\
|
254 |
-
#: C:\Users\
|
255 |
-
msgid "
|
256 |
-
msgstr "
|
257 |
-
|
258 |
-
#: C:\Users\
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
#: C:\Users\
|
263 |
-
#: C:\Users\
|
264 |
-
#: C:\Users\
|
265 |
-
#: C:\Users\
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
#: C:\Users\
|
270 |
-
#: C:\Users\
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
#: C:\Users\
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
#: C:\Users\
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
#: C:\Users\
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
#: C:\Users\
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
#: C:\Users\
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
#: C:\Users\
|
321 |
-
msgid "
|
322 |
-
msgstr "
|
323 |
-
|
324 |
-
#: C:\Users\
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
#: C:\Users\
|
335 |
-
#: C:\Users\
|
336 |
-
msgid "
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
#: C:\Users\
|
342 |
-
#: C:\Users\
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
#: C:\Users\
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
#: C:\Users\
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
#: C:\Users\
|
359 |
-
#: C:\Users\
|
360 |
-
#: C:\Users\
|
361 |
-
msgid "
|
362 |
-
msgstr "
|
363 |
-
|
364 |
-
#: C:\Users\
|
365 |
-
msgid "
|
366 |
-
msgstr "
|
367 |
-
|
368 |
-
#: C:\Users\
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
#: C:\Users\
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
#: C:\Users\
|
407 |
-
msgid "
|
408 |
-
msgstr "
|
409 |
-
|
410 |
-
#: C:\Users\
|
411 |
-
#: C:\Users\
|
412 |
-
msgid "
|
413 |
-
msgstr ""
|
414 |
-
|
415 |
-
#: C:\Users\
|
416 |
-
#: C:\Users\
|
417 |
-
msgid "
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: C:\Users\
|
421 |
-
#: C:\Users\
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
#: C:\Users\
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
#: C:\Users\
|
469 |
-
msgid "
|
470 |
-
msgstr "
|
471 |
-
|
472 |
-
#: C:\Users\
|
473 |
-
#: C:\Users\
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
#: C:\Users\
|
478 |
-
#: C:\Users\
|
479 |
-
#, fuzzy
|
480 |
-
msgid "
|
481 |
-
msgstr "
|
482 |
-
|
483 |
-
#: C:\Users\
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
#: C:\Users\
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
#: C:\Users\
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
#: C:\Users\
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
#: C:\Users\
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
#: C:\Users\
|
593 |
-
msgid "
|
594 |
-
msgstr "
|
595 |
-
|
596 |
-
#: C:\Users\
|
597 |
-
msgid "
|
598 |
-
msgstr "
|
599 |
-
|
600 |
-
#: C:\Users\
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
#: C:\Users\
|
609 |
-
msgid "
|
610 |
-
msgstr "
|
611 |
-
|
612 |
-
#: C:\Users\
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
msgid "
|
628 |
-
msgstr "
|
629 |
-
|
630 |
-
#: C:\Users\
|
631 |
-
|
632 |
-
msgid "
|
633 |
-
msgstr "
|
634 |
-
|
635 |
-
#: C:\Users\
|
636 |
-
|
637 |
-
msgid "
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: C:\Users\
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
#: C:\Users\
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
#: C:\Users\
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
msgid "
|
669 |
-
msgstr "
|
670 |
-
|
671 |
-
#: C:\Users\
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
#: C:\Users\
|
702 |
-
msgid "
|
703 |
-
msgstr ""
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
#: C:\Users\
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
#: C:\Users\
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
#: C:\Users\
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
#: C:\Users\
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
#: C:\Users\
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
#: C:\Users\
|
755 |
-
msgid "
|
756 |
-
msgstr ""
|
757 |
-
|
758 |
-
#: C:\Users\
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
#: C:\Users\
|
773 |
-
|
774 |
-
msgid "
|
775 |
-
msgstr "
|
776 |
-
|
777 |
-
#: C:\Users\
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
#: C:\Users\
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
#: C:\Users\
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
#: C:\Users\
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
#: C:\Users\
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
"
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
#: C:\Users\
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
#: C:\Users\
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
#: C:\Users\
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
msgid "
|
841 |
-
msgstr "
|
842 |
-
|
843 |
-
#: C:\Users\
|
844 |
-
msgid "
|
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 |
-
msgid "
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
#: C:\Users\
|
878 |
-
msgid "
|
879 |
-
msgstr ""
|
880 |
-
|
881 |
-
#: C:\Users\
|
882 |
-
msgid "
|
883 |
-
msgstr "
|
884 |
-
|
885 |
-
#: C:\Users\
|
886 |
-
msgid "
|
887 |
-
msgstr "
|
888 |
-
|
889 |
-
#: C:\Users\
|
890 |
-
msgid "
|
891 |
-
msgstr "
|
892 |
-
|
893 |
-
#: C:\Users\
|
894 |
-
msgid "
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
#: C:\Users\
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
msgid "
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
#: C:\Users\
|
916 |
-
msgid "
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
#: C:\Users\
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
msgid "
|
958 |
-
msgstr "
|
959 |
-
|
960 |
-
#: C:\Users\
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
#: C:\Users\
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
#: C:\Users\
|
1002 |
-
#: C:\Users\
|
1003 |
-
#: C:\Users\
|
1004 |
-
#: C:\Users\
|
1005 |
-
#: C:\Users\
|
1006 |
-
#: C:\Users\
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
#: C:\Users\
|
1011 |
-
#: C:\Users\
|
1012 |
-
#: C:\Users\
|
1013 |
-
#: C:\Users\
|
1014 |
-
#: C:\Users\
|
1015 |
-
#: C:\Users\
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
#: C:\Users\
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
#: C:\Users\
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
#: C:\Users\
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
msgid "
|
1053 |
-
msgstr ""
|
1054 |
-
|
1055 |
-
#: C:\Users\
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
msgid "
|
1065 |
-
msgstr ""
|
1066 |
-
|
1067 |
-
#: C:\Users\
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
#: C:\Users\
|
1080 |
-
msgid "
|
1081 |
-
msgstr ""
|
1082 |
-
|
1083 |
-
#: C:\Users\
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
msgstr ""
|
1118 |
-
|
1119 |
-
#: C:\Users\
|
1120 |
-
msgid "
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
#: C:\Users\
|
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 |
-
#: C:\Users\
|
1173 |
-
|
1174 |
-
msgid "
|
1175 |
-
msgstr "
|
1176 |
-
|
1177 |
-
#: C:\Users\
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
#: C:\Users\
|
1190 |
-
#: C:\Users\
|
1191 |
-
msgid "
|
1192 |
-
msgstr ""
|
1193 |
-
|
1194 |
-
#: C:\Users\
|
1195 |
-
msgid "
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
-
#: C:\Users\
|
1199 |
-
msgid "
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: C:\Users\
|
1203 |
-
msgid "
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: C:\Users\
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
#: C:\Users\
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
msgid "
|
1260 |
-
msgstr "
|
1261 |
-
|
1262 |
-
#: C:\Users\
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
msgid "
|
1279 |
-
msgstr "
|
1280 |
-
|
1281 |
-
#: C:\Users\
|
1282 |
-
|
1283 |
-
|
1284 |
-
msgstr "
|
1285 |
-
|
1286 |
-
#: C:\Users\
|
1287 |
-
msgid "
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
msgstr ""
|
1297 |
-
|
1298 |
-
#: C:\Users\
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
#: C:\Users\
|
1307 |
-
msgid "
|
1308 |
-
msgstr ""
|
1309 |
-
|
1310 |
-
#: C:\Users\
|
1311 |
-
msgid "
|
1312 |
-
msgstr ""
|
1313 |
-
|
1314 |
-
#: C:\Users\
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
msgstr ""
|
1327 |
-
|
1328 |
-
#: C:\Users\
|
1329 |
-
msgid "
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
msgid "
|
1348 |
-
msgstr "
|
1349 |
-
|
1350 |
-
#: C:\Users\
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
msgstr ""
|
1362 |
-
|
1363 |
-
#: C:\Users\
|
1364 |
-
msgid "
|
1365 |
-
msgstr ""
|
1366 |
-
|
1367 |
-
#: C:\Users\
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
#: C:\Users\
|
1382 |
-
msgid "
|
1383 |
-
msgstr ""
|
1384 |
-
|
1385 |
-
#: C:\Users\
|
1386 |
-
#: C:\Users\
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
#: C:\Users\
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
#: C:\Users\
|
1422 |
-
#: C:\Users\
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
msgid "
|
1463 |
-
msgstr ""
|
1464 |
-
|
1465 |
-
#: C:\Users\
|
1466 |
-
msgid "
|
1467 |
-
msgstr ""
|
1468 |
-
|
1469 |
-
#: C:\Users\
|
1470 |
-
msgid "
|
1471 |
-
msgstr ""
|
1472 |
-
|
1473 |
-
#: C:\Users\
|
1474 |
-
msgid "
|
1475 |
-
msgstr ""
|
1476 |
-
|
1477 |
-
#: C:\Users\
|
1478 |
-
#: C:\Users\
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
#: C:\Users\
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
#: C:\Users\
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
msgid "
|
1498 |
-
msgstr "
|
1499 |
-
|
1500 |
-
#: C:\Users\
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
#: C:\Users\
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
#: C:\Users\
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
#: C:\Users\
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
msgid "
|
1558 |
-
msgstr ""
|
1559 |
-
|
1560 |
-
#: C:\Users\
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
#: C:\Users\
|
1569 |
-
msgid "
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
#: C:\Users\
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
#: C:\Users\
|
1582 |
-
msgid "
|
1583 |
-
msgstr ""
|
1584 |
-
|
1585 |
-
#: C:\Users\
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
#: C:\Users\
|
1591 |
-
|
1592 |
-
msgid "
|
1593 |
-
msgstr "
|
1594 |
-
|
1595 |
-
#: C:\Users\
|
1596 |
-
#: C:\Users\
|
1597 |
-
msgid "
|
1598 |
-
msgstr ""
|
1599 |
-
|
1600 |
-
#: C:\Users\
|
1601 |
-
#: C:\Users\
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
#: C:\Users\
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
#: C:\Users\
|
1635 |
-
msgid "
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
#: C:\Users\
|
1639 |
-
#: C:\Users\
|
1640 |
-
msgid "
|
1641 |
-
msgstr ""
|
1642 |
-
|
1643 |
-
#: C:\Users\
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
#: C:\Users\
|
1660 |
-
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
#: C:\Users\
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
#: C:\Users\
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
#: C:\Users\
|
1675 |
-
#: C:\Users\
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
#: C:\Users\
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
#: C:\Users\
|
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 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
#: C:\Users\
|
1720 |
-
msgid "
|
1721 |
-
msgstr ""
|
1722 |
-
|
1723 |
-
#: C:\Users\
|
1724 |
-
msgid "
|
1725 |
-
msgstr ""
|
1726 |
-
|
1727 |
-
#: C:\Users\
|
1728 |
-
msgid "
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
msgid "
|
1737 |
-
msgstr ""
|
1738 |
-
|
1739 |
-
#: C:\Users\
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
#: C:\Users\
|
1761 |
-
msgid "
|
1762 |
-
msgstr ""
|
1763 |
-
|
1764 |
-
#: C:\Users\
|
1765 |
-
|
1766 |
-
|
1767 |
-
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
#: C:\Users\
|
1773 |
-
|
1774 |
-
msgid "
|
1775 |
-
msgstr ""
|
1776 |
-
|
1777 |
-
#: C:\Users\
|
1778 |
-
#: C:\Users\
|
1779 |
-
msgid "
|
1780 |
-
msgstr ""
|
1781 |
-
|
1782 |
-
#: C:\Users\
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
|
1809 |
-
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
|
1831 |
-
|
1832 |
-
msgid "
|
1833 |
-
|
1834 |
-
|
1835 |
-
|
1836 |
-
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
msgstr ""
|
1846 |
-
|
1847 |
-
#: C:\Users\
|
1848 |
-
#,
|
1849 |
-
msgid "
|
1850 |
-
msgstr ""
|
1851 |
-
|
1852 |
-
#: C:\Users\
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
|
1860 |
-
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-12-11 15:09+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-12-11 15:09+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.4\n"
|
15 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
|
16 |
+
"pro\n"
|
17 |
+
|
18 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
20 |
+
msgid "The information size you were trying to submit was larger than"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
24 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
25 |
+
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
29 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
30 |
+
msgid "Since it was also larger than"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
34 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
35 |
+
msgid "no additional information is available."
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
|
39 |
+
msgid "You must be logged in to edit your profile."
|
40 |
+
msgstr "Debes estar conectado para editar tu perfil."
|
41 |
+
|
42 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
|
43 |
+
msgid "The avatar was successfully deleted."
|
44 |
+
msgstr "El avatar ha sido eliminado."
|
45 |
+
|
46 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
47 |
+
#, fuzzy
|
48 |
+
msgid "The attachment"
|
49 |
+
msgstr "El archivo adjunto \""
|
50 |
+
|
51 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
52 |
+
#, fuzzy
|
53 |
+
msgid "was successfully deleted."
|
54 |
+
msgstr "\" ha sido eliminado."
|
55 |
+
|
56 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
|
57 |
+
msgid "The changes have been successfully saved."
|
58 |
+
msgstr "Los cambios se han guardado correctamente."
|
59 |
+
|
60 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
61 |
+
#, fuzzy
|
62 |
+
msgid ""
|
63 |
+
"The email address you entered is already registered to a different user."
|
64 |
+
msgstr ""
|
65 |
+
"La dirección de correo electrónico que ha introducido ya está siendo usada "
|
66 |
+
"por un usuario diferente.<br/>La dirección de email era"
|
67 |
+
|
68 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
69 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
70 |
+
msgid "The email address was"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
74 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
76 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
77 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
78 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
79 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
80 |
+
msgid "NOT"
|
81 |
+
msgstr "NO"
|
82 |
+
|
83 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
84 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
85 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
86 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
87 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
88 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
89 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
90 |
+
#, fuzzy
|
91 |
+
msgid "updated along with the rest of the information."
|
92 |
+
msgstr " actualizado junto con el resto de la información."
|
93 |
+
|
94 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
95 |
+
#, fuzzy
|
96 |
+
msgid "The email address you entered is invalid."
|
97 |
+
msgstr "La dirección de email no es válida.<br/>La dirección de email era"
|
98 |
+
|
99 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
100 |
+
#, fuzzy
|
101 |
+
msgid "The passwords you entered do not match."
|
102 |
+
msgstr ""
|
103 |
+
"Las contraseñas introducidas no coinciden.<br/>La dirección de email era"
|
104 |
+
|
105 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
106 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
107 |
+
#, fuzzy
|
108 |
+
msgid "The password was"
|
109 |
+
msgstr "Nueva contraseña"
|
110 |
+
|
111 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
112 |
+
#, fuzzy
|
113 |
+
msgid "You didn't complete both password fields."
|
114 |
+
msgstr "No has completado una de los campos de contraseña"
|
115 |
+
|
116 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
117 |
+
msgid "Your profile was NOT updated!"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
|
121 |
+
#, fuzzy
|
122 |
+
msgid "There was an error while trying to upload the following attachments:"
|
123 |
+
msgstr ""
|
124 |
+
"Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
125 |
+
|
126 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
127 |
+
#, fuzzy
|
128 |
+
msgid "Possible cause: the size was bigger than"
|
129 |
+
msgstr "<br/>Causa posible: el tamaño era más grande que "
|
130 |
+
|
131 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
132 |
+
#, fuzzy
|
133 |
+
msgid "The listed attachements were"
|
134 |
+
msgstr "b.<br/>Los archivos adjuntos listados eran"
|
135 |
+
|
136 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
137 |
+
#, fuzzy
|
138 |
+
msgid "There was an error while trying to upload your avatar picture."
|
139 |
+
msgstr ""
|
140 |
+
"Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
141 |
+
|
142 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
143 |
+
msgid "Possible cause: size/incorrect file-type."
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
147 |
+
msgid "The avatar was"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
152 |
+
#, fuzzy
|
153 |
+
msgid "There was an error while trying to upload the following attachment(s)"
|
154 |
+
msgstr ""
|
155 |
+
"Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
156 |
+
|
157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
158 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
159 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
163 |
+
msgid "This file was"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
168 |
+
msgid "Name"
|
169 |
+
msgstr "Nombre"
|
170 |
+
|
171 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
172 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:150
|
173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
176 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:497
|
177 |
+
msgid "Username"
|
178 |
+
msgstr "Nombre de usuario"
|
179 |
+
|
180 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
|
181 |
+
#, fuzzy
|
182 |
+
msgid "Usernames cannot be changed."
|
183 |
+
msgstr "Los nombres de usuario no pueden ser cambiados."
|
184 |
+
|
185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
|
186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
|
187 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
|
188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
|
189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
|
190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
|
191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
|
192 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
|
193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
|
194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
|
195 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:297
|
199 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:362
|
200 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:428
|
201 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:482
|
202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:530
|
203 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:593
|
204 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:702
|
205 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
|
206 |
+
msgid "This field is marked as required by the administrator."
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
|
210 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
|
211 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
|
212 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
|
213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
|
214 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
|
215 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
|
216 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
|
217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
|
218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
|
219 |
+
msgid ""
|
220 |
+
"This field wasn't updated because you entered and empty string (It was "
|
221 |
+
"marked as required by the administrator."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
225 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
226 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
227 |
+
msgid "First Name"
|
228 |
+
msgstr "Nombre:"
|
229 |
+
|
230 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
231 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
232 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
233 |
+
msgid "Last Name"
|
234 |
+
msgstr "Apellidos"
|
235 |
+
|
236 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
237 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
238 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
239 |
+
msgid "Nickname"
|
240 |
+
msgstr "Alias"
|
241 |
+
|
242 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
|
243 |
+
msgid "Display name publicly as"
|
244 |
+
msgstr "Mostrar nombre públicamente como"
|
245 |
+
|
246 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
247 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
248 |
+
msgid "Contact Info"
|
249 |
+
msgstr "Información de contacto"
|
250 |
+
|
251 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
252 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
253 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
254 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
255 |
+
msgid "E-mail"
|
256 |
+
msgstr "Email"
|
257 |
+
|
258 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
|
259 |
+
msgid "(required)"
|
260 |
+
msgstr "(obligatorio)"
|
261 |
+
|
262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
263 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
264 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
265 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:539
|
266 |
+
msgid "Website"
|
267 |
+
msgstr "Sitio web"
|
268 |
+
|
269 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
270 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
271 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
272 |
+
msgid "AIM"
|
273 |
+
msgstr "AIM"
|
274 |
+
|
275 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
276 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
277 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
278 |
+
msgid "Yahoo IM"
|
279 |
+
msgstr "Yahoo IM"
|
280 |
+
|
281 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
282 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
283 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
284 |
+
msgid "Jabber / Google Talk"
|
285 |
+
msgstr "Jabber / Google Talk"
|
286 |
+
|
287 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
288 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
289 |
+
msgid "About Yourself"
|
290 |
+
msgstr "Acerca de ti"
|
291 |
+
|
292 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
293 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
294 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
295 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:545
|
296 |
+
msgid "Biographical Info"
|
297 |
+
msgstr "Información biográfica"
|
298 |
+
|
299 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
300 |
+
msgid "New Password"
|
301 |
+
msgstr "Nueva contraseña"
|
302 |
+
|
303 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
304 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
305 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
306 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
307 |
+
msgid "Repeat Password"
|
308 |
+
msgstr "Repetir contraseña"
|
309 |
+
|
310 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
|
311 |
+
msgid "Update"
|
312 |
+
msgstr "Actualizar"
|
313 |
+
|
314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:45
|
315 |
+
#, fuzzy
|
316 |
+
msgid "You are currently logged in as"
|
317 |
+
msgstr ""
|
318 |
+
"Actualmente estás conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
319 |
+
|
320 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:46
|
321 |
+
msgid "Log out of this account"
|
322 |
+
msgstr "Cerrar sesión"
|
323 |
+
|
324 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:46
|
325 |
+
#, fuzzy
|
326 |
+
msgid "Log out"
|
327 |
+
msgstr "Salir »"
|
328 |
+
|
329 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:64
|
330 |
+
#, fuzzy
|
331 |
+
msgid "You have successfully logged in as"
|
332 |
+
msgstr "Te has conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
333 |
+
|
334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:91
|
335 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:105
|
336 |
+
msgid ""
|
337 |
+
"You will soon be redirected automatically. If you see this page for more "
|
338 |
+
"than 1 second, please click"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:91
|
342 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:105
|
343 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
344 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
345 |
+
msgid "here"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:123
|
349 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
350 |
+
msgid "ERROR:"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:123
|
354 |
+
msgid "The username field is empty"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
|
358 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
359 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
360 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
361 |
+
msgid "Password"
|
362 |
+
msgstr "Contraseña"
|
363 |
+
|
364 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:166
|
365 |
+
msgid "Log in"
|
366 |
+
msgstr "Acceder"
|
367 |
+
|
368 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
|
369 |
+
msgid "Remember me"
|
370 |
+
msgstr "Recordarme"
|
371 |
+
|
372 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
373 |
+
msgid "Lost password?"
|
374 |
+
msgstr "¿has olvidado la contraseña?"
|
375 |
+
|
376 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
378 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
379 |
+
msgid "ERROR"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
383 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
384 |
+
msgid ""
|
385 |
+
"Your account has to be confirmed by an administrator before you can use the "
|
386 |
+
"\"Password Reset\" feature."
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
390 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
391 |
+
msgid "A password reset email has been sent to "
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
395 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
396 |
+
msgid "Following the link sent in the email address will reset the password."
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
400 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
401 |
+
msgid ""
|
402 |
+
"Someone requested that the password be reset for the following account: "
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
406 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
407 |
+
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
411 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
412 |
+
msgid "To reset your password, visit the following link:"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
417 |
+
msgid "Password Reset Feature from"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
421 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
422 |
+
#, fuzzy
|
423 |
+
msgid "There was an error while trying to send the activation link to "
|
424 |
+
msgstr ""
|
425 |
+
"Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
426 |
+
|
427 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
428 |
+
#, fuzzy
|
429 |
+
msgid "The email address entered wasn't found in the database!"
|
430 |
+
msgstr "La dirección de email no es válida.<br/>La dirección de email era"
|
431 |
+
|
432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
433 |
+
msgid "Please check that you entered the correct email address."
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
437 |
+
msgid "The username entered wasn't found in the database!"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
441 |
+
msgid "Please check that you entered the correct username."
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
445 |
+
#, fuzzy
|
446 |
+
msgid "Your password has been successfully changed!"
|
447 |
+
msgstr "Los cambios se han guardado correctamente."
|
448 |
+
|
449 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
450 |
+
msgid "You have successfully reset your password to:"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
454 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
455 |
+
#, fuzzy
|
456 |
+
msgid "Password Successfully Reset for"
|
457 |
+
msgstr "\" ha sido eliminado."
|
458 |
+
|
459 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
460 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
461 |
+
msgid "from"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
465 |
+
msgid "has requested a password change via the password reset feature."
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
469 |
+
msgid "His/her new password is:"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
473 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
474 |
+
msgid "The entered passwords don't match!"
|
475 |
+
msgstr "Las contraseñas introducidas no coinciden"
|
476 |
+
|
477 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
478 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
479 |
+
#, fuzzy
|
480 |
+
msgid "Reset Password"
|
481 |
+
msgstr "Repetir contraseña"
|
482 |
+
|
483 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
484 |
+
msgid "Invalid key!"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
488 |
+
#, fuzzy
|
489 |
+
msgid "Please enter your username or email address."
|
490 |
+
msgstr "Has de introducir una dirección de Email válida."
|
491 |
+
|
492 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
493 |
+
msgid "You will receive a link to create a new password via email."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
497 |
+
#, fuzzy
|
498 |
+
msgid "Username or E-mail"
|
499 |
+
msgstr "Nombre de usuario"
|
500 |
+
|
501 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
502 |
+
#, fuzzy
|
503 |
+
msgid "Get New Password"
|
504 |
+
msgstr "Nueva contraseña"
|
505 |
+
|
506 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
507 |
+
#, php-format
|
508 |
+
msgid ""
|
509 |
+
"To activate your user, please click the following link:\n"
|
510 |
+
"\n"
|
511 |
+
"%s%s%s\n"
|
512 |
+
"\n"
|
513 |
+
"After you activate, you will receive *another email* with your login.\n"
|
514 |
+
"\n"
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
518 |
+
#, php-format
|
519 |
+
msgid "[%1$s] Activate %2$s"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
523 |
+
msgid "Invalid activation key!"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
527 |
+
msgid "The user is already active!"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
531 |
+
msgid "Could not create user!"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
535 |
+
#, fuzzy
|
536 |
+
msgid "That username is already activated!"
|
537 |
+
msgstr "Lo sentimos, ese nombre de usuario ya existe"
|
538 |
+
|
539 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
540 |
+
#, fuzzy
|
541 |
+
msgid "The user was successfully activated."
|
542 |
+
msgstr "El avatar ha sido eliminado."
|
543 |
+
|
544 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
545 |
+
#, fuzzy
|
546 |
+
msgid "There was an error while trying to activate the user."
|
547 |
+
msgstr ""
|
548 |
+
"Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
549 |
+
|
550 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
551 |
+
msgid "New subscriber on"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
555 |
+
msgid ""
|
556 |
+
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
557 |
+
"please remember that you need to approve this user before he/she can log in!"
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
561 |
+
msgid "A new subscriber has (been) registered!"
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
565 |
+
#, fuzzy
|
566 |
+
msgid "A new account has been created for you."
|
567 |
+
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
568 |
+
|
569 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
570 |
+
msgid "Welcome to"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
574 |
+
msgid "Your username is:"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
578 |
+
#, fuzzy
|
579 |
+
msgid "and password:"
|
580 |
+
msgstr "Contraseña"
|
581 |
+
|
582 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
583 |
+
msgid ""
|
584 |
+
"Before you can access your account, an administrator needs to approve it. "
|
585 |
+
"You will be notified via email."
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
589 |
+
msgid "The user was NOT created!"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
593 |
+
msgid "A username is required for registration."
|
594 |
+
msgstr "Es obligatorio un nombre de usuario para la inscripción."
|
595 |
+
|
596 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
597 |
+
msgid "Sorry, that username already exists!"
|
598 |
+
msgstr "Lo sentimos, ese nombre de usuario ya existe"
|
599 |
+
|
600 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
601 |
+
msgid "You must enter a valid email address."
|
602 |
+
msgstr "Has de introducir una dirección de Email válida."
|
603 |
+
|
604 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
605 |
+
msgid "Sorry, that email address is already used!"
|
606 |
+
msgstr "Lo sentimos, esa dirección ya está en uso"
|
607 |
+
|
608 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
609 |
+
msgid "You didn't complete one of the password-fields!"
|
610 |
+
msgstr "No has completado una de los campos de contraseña"
|
611 |
+
|
612 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
613 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
614 |
+
#, fuzzy
|
615 |
+
msgid "The account was NOT created!"
|
616 |
+
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
617 |
+
|
618 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
619 |
+
msgid "You must agree to the terms and conditions before registering!"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
623 |
+
msgid "(Several required fields were left uncompleted)"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
627 |
+
msgid "This username is already reserved to be used soon."
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
631 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
632 |
+
msgid "Please try a different one!"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
636 |
+
#, fuzzy
|
637 |
+
msgid "This email address is already reserved to be used soon."
|
638 |
+
msgstr "Lo sentimos, esa dirección ya está en uso"
|
639 |
+
|
640 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
641 |
+
msgid "You are logged in as"
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
645 |
+
msgid "You don't need another account."
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
649 |
+
#, fuzzy
|
650 |
+
msgid "Log out of this account."
|
651 |
+
msgstr "Cerrar sesión"
|
652 |
+
|
653 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
654 |
+
#, fuzzy
|
655 |
+
msgid "Logout"
|
656 |
+
msgstr "Salir »"
|
657 |
+
|
658 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1169
|
659 |
+
msgid "An email has been sent to "
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1169
|
663 |
+
msgid "with information on how to activate his/her account"
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1174
|
667 |
+
#, fuzzy
|
668 |
+
msgid "A user account has been created for"
|
669 |
+
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
670 |
+
|
671 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
672 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
673 |
+
msgid ""
|
674 |
+
"You will soon be redirected automatically. If you see this page for more "
|
675 |
+
"than 3 seconds, please click"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
679 |
+
msgid ""
|
680 |
+
"An email has been sent to you with information on how to activate your "
|
681 |
+
"account"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
685 |
+
#, fuzzy
|
686 |
+
msgid "Thank you for registering"
|
687 |
+
msgstr "Gracias por registrarte, %1$s."
|
688 |
+
|
689 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
690 |
+
msgid "An error occured while trying to send the notification email."
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
694 |
+
msgid "An email containing activation instructions was successfully sent."
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
698 |
+
msgid "An email containing the username and password was successfully sent."
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
702 |
+
msgid "Users can register themselves or you can manually create users here."
|
703 |
+
msgstr ""
|
704 |
+
"Los usuarios pueden registrarse ellos mismos o puedes crear manualmente los "
|
705 |
+
"usuarios desde aquí."
|
706 |
+
|
707 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
708 |
+
msgid ""
|
709 |
+
"Users cannot currently register themselves, but you can manually create "
|
710 |
+
"users here."
|
711 |
+
msgstr ""
|
712 |
+
"Los usuarios no pueden registrarse ellos mismos, pero puedes crear "
|
713 |
+
"manualmente los usuarios desde aquí."
|
714 |
+
|
715 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
716 |
+
msgid "Only an administrator can add new users."
|
717 |
+
msgstr "Sólo el administrador puede añadir nuevos usuarios."
|
718 |
+
|
719 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
720 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
721 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
722 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
723 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
724 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
725 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
726 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
727 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
728 |
+
msgid ""
|
729 |
+
"This field must be filled out before registering (It was marked as required "
|
730 |
+
"by the administrator)"
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
734 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
735 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
736 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
737 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
738 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
739 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
740 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
741 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
742 |
+
msgid "This field is marked as required by the administrator"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
746 |
+
msgid "Anti-Spam"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
750 |
+
#, fuzzy
|
751 |
+
msgid "Send these credentials via email."
|
752 |
+
msgstr "Enviar las credenciales por correo electrónico."
|
753 |
+
|
754 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
755 |
+
msgid "Add User"
|
756 |
+
msgstr "Añadir usuario"
|
757 |
+
|
758 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
759 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
760 |
+
msgid "Register"
|
761 |
+
msgstr "Registrar"
|
762 |
+
|
763 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
|
764 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
|
765 |
+
msgid "Show/Hide the Admin Bar on Front End"
|
766 |
+
msgstr "Mostrar/Ocultar la bbara de administración en la parte pública"
|
767 |
+
|
768 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
|
769 |
+
msgid "User-group"
|
770 |
+
msgstr "Perfiles"
|
771 |
+
|
772 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
|
773 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
|
774 |
+
msgid "Visibility"
|
775 |
+
msgstr "Visibilidad"
|
776 |
+
|
777 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:28
|
778 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
779 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
780 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
781 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
|
782 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
|
783 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
|
784 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
|
785 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
|
786 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
|
787 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
|
788 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
|
789 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
|
790 |
+
msgid "Show"
|
791 |
+
msgstr "Mostrar"
|
792 |
+
|
793 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:29
|
794 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
795 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
796 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
797 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
|
798 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
|
799 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
|
800 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
|
801 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
|
802 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
|
803 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
|
804 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
|
805 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
|
806 |
+
msgid "Hide"
|
807 |
+
msgstr "Ocultar"
|
808 |
+
|
809 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:40
|
810 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
811 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
812 |
+
msgid "NOTE:"
|
813 |
+
msgstr "OBSERVACION:"
|
814 |
+
|
815 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:41
|
816 |
+
msgid ""
|
817 |
+
"If you added new roles (via another plugin) <u>after</u> Profile Builder was "
|
818 |
+
"activated, please reactivate it, since the roles are initialized during "
|
819 |
+
"plugin activation."
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:48
|
823 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
824 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
825 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
826 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
827 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
828 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:369
|
829 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
830 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
831 |
+
msgid "Save Changes"
|
832 |
+
msgstr "Guardar cambios"
|
833 |
+
|
834 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
|
835 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
|
836 |
+
msgid "Profile Builder"
|
837 |
+
msgstr "Generador de perfiles"
|
838 |
+
|
839 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
|
840 |
+
msgid "Welcome to Profile Builder!"
|
841 |
+
msgstr "Bienvenido al Generador de perfiles"
|
842 |
+
|
843 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
|
844 |
+
msgid ""
|
845 |
+
" lets you customize your website by adding a front-end menu for all your "
|
846 |
+
"users, giving them a more flexible way to modify their user-information or "
|
847 |
+
"to register new users."
|
848 |
+
msgstr ""
|
849 |
+
"te permite personalizar tu sitio web añadiendo un menú en el front-end para "
|
850 |
+
"todos sus usuarios, dándoles una forma más flexible para modificar su "
|
851 |
+
"información de usuario o para registrar nuevos usuarios."
|
852 |
+
|
853 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
|
854 |
+
msgid ""
|
855 |
+
"Also, grants users with administrator rights to customize basic fields or to "
|
856 |
+
"add new ones."
|
857 |
+
msgstr ""
|
858 |
+
"Además, otorga a los usuarios con derechos de administrador personalizar los "
|
859 |
+
"campos básicos o añadir otros nuevos."
|
860 |
+
|
861 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
|
862 |
+
msgid ""
|
863 |
+
"To achieve this, just create a new page, and give it an intuitive name(e.g. "
|
864 |
+
"Edit Profile)."
|
865 |
+
msgstr ""
|
866 |
+
"Para lograr esto, basta con crear una nueva página, y darle un nombre "
|
867 |
+
"intuitivo (por ejemplo, Editar perfil)."
|
868 |
+
|
869 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
|
870 |
+
msgid ""
|
871 |
+
"Now all you need to do is add the following shortcode(for the previous "
|
872 |
+
"example): "
|
873 |
+
msgstr ""
|
874 |
+
"Ahora todo lo que necesitas hacer es añadir el shortcode siguiente (para el "
|
875 |
+
"ejemplo anterior):"
|
876 |
+
|
877 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
|
878 |
+
msgid "Publish your page and you are ready to go!"
|
879 |
+
msgstr "Publica tu página y ya está listo para usar"
|
880 |
+
|
881 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
|
882 |
+
msgid "You can use the following shortcodes:"
|
883 |
+
msgstr "Puedes utilizar los shortcodes siguientes:"
|
884 |
+
|
885 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
|
886 |
+
msgid "for a log-in form."
|
887 |
+
msgstr "para un formulario de acceso."
|
888 |
+
|
889 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
|
890 |
+
msgid "to add a registration form."
|
891 |
+
msgstr "para añadir un formulario de inscripción."
|
892 |
+
|
893 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
|
894 |
+
msgid ""
|
895 |
+
"to grant users a front-end acces to their personal information(requires user "
|
896 |
+
"to be logged in)."
|
897 |
+
msgstr ""
|
898 |
+
"para otorgar a los usuarios un acceso desde el front-end a su información "
|
899 |
+
"personal (requiere que el usuario esté conectado)."
|
900 |
+
|
901 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
|
902 |
+
#, fuzzy
|
903 |
+
msgid "to add a password recovery form."
|
904 |
+
msgstr "para añadir un formulario de inscripción."
|
905 |
+
|
906 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
|
907 |
+
#, fuzzy
|
908 |
+
msgid ""
|
909 |
+
"With the <strong>Pro</strong> version, users with administrator rights have "
|
910 |
+
"access to the following features:"
|
911 |
+
msgstr ""
|
912 |
+
"Los usuarios con derechos de administrador tienen acceso a las siguientes "
|
913 |
+
"características:"
|
914 |
+
|
915 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
|
916 |
+
msgid ""
|
917 |
+
"add a custom stylesheet/inherit values from the current theme or use one of "
|
918 |
+
"the following built into this plugin: default, white or black."
|
919 |
+
msgstr ""
|
920 |
+
"añadir una hoja de estilo personalizada/heredar los valores del tema actual "
|
921 |
+
"o utilizar una de las siguientes integradas en este plugin: por defecto, "
|
922 |
+
"blanco o negro."
|
923 |
+
|
924 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
|
925 |
+
msgid ""
|
926 |
+
"select whether to display or not the admin bar in the front end for a "
|
927 |
+
"specific user-group registered to the site."
|
928 |
+
msgstr ""
|
929 |
+
"seleccionar si se desea mostrar o no la barra de administración en la parte "
|
930 |
+
"delantera para un determinado grupo de usuarios registrados en el sitio."
|
931 |
+
|
932 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
|
933 |
+
msgid ""
|
934 |
+
"select which information-field can users see/modify. The hidden fields' "
|
935 |
+
"values remain unmodified."
|
936 |
+
msgstr ""
|
937 |
+
"seleccionar qué información de campo pueden ver/modificar los usuarios. Los "
|
938 |
+
"valores de los campos ocultos no se modificarán."
|
939 |
+
|
940 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
|
941 |
+
msgid ""
|
942 |
+
"add custom fields to the existing ones, with several types to choose from: "
|
943 |
+
"heading, text, textarea, select, checkbox, radio, and/or upload."
|
944 |
+
msgstr ""
|
945 |
+
"añadir campos personalizados a los ya existentes, con varios tipos a elegir: "
|
946 |
+
"título, texto, textarea, select, checkbox, radio, y/o subir."
|
947 |
+
|
948 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
|
949 |
+
msgid "add an avatar field."
|
950 |
+
msgstr "agregar un campo de avatar."
|
951 |
+
|
952 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
|
953 |
+
msgid "create custom redirects."
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
|
957 |
+
msgid "front-end userlisting using the"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
|
961 |
+
msgid "shortcode."
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
965 |
+
msgid "this plugin only adds/removes fields in the front-end."
|
966 |
+
msgstr "este plugin sólo añade/elimina campos en la parte pública."
|
967 |
+
|
968 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
|
969 |
+
msgid ""
|
970 |
+
"The default information-fields will still be visible(and thus modifiable)"
|
971 |
+
msgstr ""
|
972 |
+
"Los campos de información por defecto seguirán siendo visibles (y por lo "
|
973 |
+
"tanto modificables)"
|
974 |
+
|
975 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
|
976 |
+
msgid ""
|
977 |
+
"from the back-end, while custom fields will only be visible in the front-end."
|
978 |
+
msgstr ""
|
979 |
+
"desde la administración, mientras los campos personalizados sólo serán "
|
980 |
+
"visibles en la parte pública."
|
981 |
+
|
982 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
|
983 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
|
984 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
|
985 |
+
msgid "Default Profile Fields"
|
986 |
+
msgstr "Campos de perfil predeterminado"
|
987 |
+
|
988 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
|
989 |
+
msgid "Input Field Name"
|
990 |
+
msgstr "Etiqueta de campo"
|
991 |
+
|
992 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
|
993 |
+
#, fuzzy
|
994 |
+
msgid "Required"
|
995 |
+
msgstr "(obligatorio)"
|
996 |
+
|
997 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
|
998 |
+
msgid "Name:"
|
999 |
+
msgstr "Nombre:"
|
1000 |
+
|
1001 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
|
1002 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
|
1003 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
|
1004 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
|
1005 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
|
1006 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
|
1007 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
|
1008 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
|
1009 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
|
1010 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
|
1011 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
|
1012 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
1013 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
1014 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
1015 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1016 |
+
msgid "Yes"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
|
1020 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
|
1021 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
|
1022 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
|
1023 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
|
1024 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
|
1025 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
|
1026 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
|
1027 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:148
|
1028 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:161
|
1029 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:180
|
1030 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1031 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1032 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1033 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1034 |
+
#, fuzzy
|
1035 |
+
msgid "No"
|
1036 |
+
msgstr "Ninguna"
|
1037 |
+
|
1038 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
|
1039 |
+
msgid "Display name publicly as..."
|
1040 |
+
msgstr "Mostrar publicamente como..."
|
1041 |
+
|
1042 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
|
1043 |
+
msgid "Contact Info:"
|
1044 |
+
msgstr "Información de contacto:"
|
1045 |
+
|
1046 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
|
1047 |
+
msgid "About Yourself:"
|
1048 |
+
msgstr "Acerca de ti:"
|
1049 |
+
|
1050 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
|
1051 |
+
#, fuzzy
|
1052 |
+
msgid "(New) Password"
|
1053 |
+
msgstr "Nueva contraseña"
|
1054 |
+
|
1055 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1056 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1057 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1058 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:37
|
1059 |
+
msgid "General Settings"
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:12
|
1063 |
+
#, fuzzy
|
1064 |
+
msgid "Stylesheet Used on the Front-End:"
|
1065 |
+
msgstr "Hoja de estilos usada:"
|
1066 |
+
|
1067 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
1068 |
+
msgid "Default"
|
1069 |
+
msgstr "Predeterminada"
|
1070 |
+
|
1071 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1072 |
+
msgid "White"
|
1073 |
+
msgstr "Blanco"
|
1074 |
+
|
1075 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:19
|
1076 |
+
msgid "Black"
|
1077 |
+
msgstr "Negro"
|
1078 |
+
|
1079 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:23
|
1080 |
+
msgid "None"
|
1081 |
+
msgstr "Ninguna"
|
1082 |
+
|
1083 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:29
|
1084 |
+
msgid "\"Email Confirmation\" Feature Activated:"
|
1085 |
+
msgstr ""
|
1086 |
+
|
1087 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:39
|
1088 |
+
msgid "\"Admin Approval\" Feature Activated:"
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:48
|
1092 |
+
msgid ""
|
1093 |
+
"The black stylesheet is intended for sites/blogs with a dark background."
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:49
|
1097 |
+
msgid ""
|
1098 |
+
"The white stylesheet is intended for a sites/blogs with a light background "
|
1099 |
+
"color."
|
1100 |
+
msgstr ""
|
1101 |
+
|
1102 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:50
|
1103 |
+
msgid ""
|
1104 |
+
"On single-site installations the \"Email Confirmation\" feature only works "
|
1105 |
+
"in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1109 |
+
msgid ""
|
1110 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1111 |
+
"Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-"
|
1112 |
+
"profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive "
|
1113 |
+
"access to automatic updates and support. Need a license key? <a href='http://"
|
1114 |
+
"www.cozmoslabs.com/wordpress-profile-builder/?"
|
1115 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' "
|
1116 |
+
"class='button-primary'>Purchase one now</a>"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1120 |
+
msgid ""
|
1121 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please <a "
|
1122 |
+
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1123 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</"
|
1124 |
+
"a> to receive access to automatic updates and priority support. <a "
|
1125 |
+
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1126 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' "
|
1127 |
+
"class='button-primary'>Purchase one now</a>"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1131 |
+
msgid "Basic Information"
|
1132 |
+
msgstr "Información básica"
|
1133 |
+
|
1134 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
|
1135 |
+
msgid "Show/Hide the Admin Bar on Front-end"
|
1136 |
+
msgstr "Mostrar/ocultar la barra de administración en el Front-end"
|
1137 |
+
|
1138 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
|
1139 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
|
1140 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
|
1141 |
+
msgid "Extra Profile Fields"
|
1142 |
+
msgstr "Campos extra de perfil"
|
1143 |
+
|
1144 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
|
1145 |
+
msgid "Addons"
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
|
1149 |
+
msgid "Register Your Version"
|
1150 |
+
msgstr "Registra tu versión"
|
1151 |
+
|
1152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
|
1153 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
|
1154 |
+
msgid "Activate/Deactivate Addons"
|
1155 |
+
msgstr ""
|
1156 |
+
|
1157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:14
|
1158 |
+
msgid "Name/Description"
|
1159 |
+
msgstr ""
|
1160 |
+
|
1161 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:15
|
1162 |
+
msgid "Status"
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:20
|
1166 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:30
|
1167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:31
|
1168 |
+
msgid "User-Listing"
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:22
|
1172 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
|
1173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
|
1174 |
+
msgid "Active"
|
1175 |
+
msgstr ""
|
1176 |
+
|
1177 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
|
1178 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
|
1179 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
|
1180 |
+
msgid "Inactive"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1184 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1185 |
+
msgid "Custom Redirects"
|
1186 |
+
msgstr ""
|
1187 |
+
|
1188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:34
|
1189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:255
|
1190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:256
|
1191 |
+
msgid "reCAPTCHA"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1195 |
+
msgid "Redirects on custom page requests:"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1199 |
+
msgid "Action"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1203 |
+
msgid "Redirect"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1207 |
+
msgid "URL"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1211 |
+
msgid "After Registration:"
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1215 |
+
msgid "After Login:"
|
1216 |
+
msgstr ""
|
1217 |
+
|
1218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1219 |
+
#, fuzzy
|
1220 |
+
msgid "Recover Password (*)"
|
1221 |
+
msgstr "Repetir contraseña"
|
1222 |
+
|
1223 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1224 |
+
msgid ""
|
1225 |
+
"When activated this feature will redirect the user on both the default "
|
1226 |
+
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1227 |
+
"Profile Builder on the front-end login page."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1231 |
+
msgid "Redirects on default WordPress page requests:"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1235 |
+
msgid "Requested WP Page"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1239 |
+
msgid "Default WP Login Page(*)"
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1243 |
+
msgid "Default WP Logout Page(**)"
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1247 |
+
msgid "Default WP Register Page"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1251 |
+
msgid "Default WP Dashboard (***)"
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1255 |
+
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1259 |
+
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1263 |
+
msgid ""
|
1264 |
+
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1265 |
+
"manage options)."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:49
|
1269 |
+
msgid "Could not open socket!"
|
1270 |
+
msgstr ""
|
1271 |
+
|
1272 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
1273 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:120
|
1274 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:123
|
1278 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:180
|
1282 |
+
msgid ""
|
1283 |
+
"To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:196
|
1287 |
+
msgid ""
|
1288 |
+
"To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
|
1289 |
+
"you can do so at"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:260
|
1293 |
+
msgid ""
|
1294 |
+
"Adds a reCAPTCHA form on the registration page created in the front-end "
|
1295 |
+
"(only)."
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:261
|
1299 |
+
msgid "For this you must get a public and private key from Google:"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:267
|
1303 |
+
msgid "Key"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:268
|
1307 |
+
msgid "Code"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:272
|
1311 |
+
msgid "Public Key:"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:276
|
1315 |
+
msgid "Private Key:"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:311
|
1319 |
+
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:33
|
1323 |
+
msgid ""
|
1324 |
+
"To create a page containing the users registered to this current site/blog, "
|
1325 |
+
"insert the following shortcode in a (blank) page: "
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:34
|
1329 |
+
msgid ""
|
1330 |
+
"For instance, to create a userlisting shortcode listing only the editors and "
|
1331 |
+
"authors, visible to only the users currently logged in, you would use:"
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:39
|
1335 |
+
msgid "These settings are applied to the front-end userlisting."
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:45
|
1339 |
+
msgid "Number of Users/Page: "
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:62
|
1343 |
+
msgid "Default Sorting Order: "
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:73
|
1347 |
+
msgid "\"All-Userlisting\" Template"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:75
|
1351 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:217
|
1352 |
+
msgid ""
|
1353 |
+
"With the userlisting templates you can customize the look, feel and "
|
1354 |
+
"information listed by the shortcode."
|
1355 |
+
msgstr ""
|
1356 |
+
|
1357 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1358 |
+
msgid ""
|
1359 |
+
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1360 |
+
"on each page access where the shortcode is present."
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:80
|
1364 |
+
msgid "Avatar size: "
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:96
|
1368 |
+
msgid "Insert \"Sort By\" Field:"
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:124
|
1372 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:223
|
1373 |
+
msgid "Insert \"User-Meta\" Field:"
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:155
|
1377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:261
|
1378 |
+
msgid "Insert Extra Functions:"
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:170
|
1382 |
+
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:172
|
1386 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:275
|
1387 |
+
msgid ""
|
1388 |
+
"If you wish to use a default userlisting, just copy the following code and "
|
1389 |
+
"paste it in the textarea below:"
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:215
|
1393 |
+
msgid "\"Single-Userlisting\" Template"
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1397 |
+
msgid ""
|
1398 |
+
"The \"Single User Listing\" template is used to list an individual user. "
|
1399 |
+
"It's displayed when clickin on the \"more info\" link."
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:273
|
1403 |
+
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:379
|
1407 |
+
msgid ""
|
1408 |
+
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:379
|
1412 |
+
msgid "You can find it in Profile Builder's menu."
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:404
|
1416 |
+
#, fuzzy
|
1417 |
+
msgid "You need to be logged in to view the userlisting!"
|
1418 |
+
msgstr "Debes estar conectado para editar tu perfil."
|
1419 |
+
|
1420 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:442
|
1421 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:468
|
1422 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:486
|
1423 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1327
|
1424 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1413
|
1425 |
+
msgid "Search Users by All Fields"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:486
|
1429 |
+
msgid "Leave Blank and Press Search to List All Users"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:490
|
1433 |
+
msgid "Search"
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:503
|
1437 |
+
#, fuzzy
|
1438 |
+
msgid "First/Lastname"
|
1439 |
+
msgstr "Nombre:"
|
1440 |
+
|
1441 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:509
|
1442 |
+
#, fuzzy
|
1443 |
+
msgid "Email"
|
1444 |
+
msgstr "Email"
|
1445 |
+
|
1446 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:515
|
1447 |
+
msgid "Sign-up Date"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:521
|
1451 |
+
#, fuzzy
|
1452 |
+
msgid "Firstname"
|
1453 |
+
msgstr "Nombre:"
|
1454 |
+
|
1455 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:527
|
1456 |
+
#, fuzzy
|
1457 |
+
msgid "Lastname"
|
1458 |
+
msgstr "Apellidos"
|
1459 |
+
|
1460 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:533
|
1461 |
+
#, fuzzy
|
1462 |
+
msgid "Display Name"
|
1463 |
+
msgstr "Nombre:"
|
1464 |
+
|
1465 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:551
|
1466 |
+
msgid "Posts"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:593
|
1470 |
+
msgid "Click here to see more information about this user"
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:593
|
1474 |
+
msgid "More..."
|
1475 |
+
msgstr ""
|
1476 |
+
|
1477 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:794
|
1478 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1101
|
1479 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1480 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1481 |
+
#, fuzzy
|
1482 |
+
msgid "No uploaded attachment"
|
1483 |
+
msgstr "El archivo adjunto \""
|
1484 |
+
|
1485 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:796
|
1486 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1103
|
1487 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1159
|
1488 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1489 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1490 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1491 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
1492 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
1493 |
+
msgid "Click to see the current attachment"
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:922
|
1497 |
+
msgid "Click here to go back"
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:922
|
1501 |
+
#, fuzzy
|
1502 |
+
msgid "Back"
|
1503 |
+
msgstr "Negro"
|
1504 |
+
|
1505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1101
|
1506 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1103
|
1507 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1508 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1509 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1510 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1511 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1512 |
+
msgid "Current file"
|
1513 |
+
msgstr ""
|
1514 |
+
|
1515 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1157
|
1516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1517 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1518 |
+
msgid "Avatar"
|
1519 |
+
msgstr ""
|
1520 |
+
|
1521 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1214
|
1522 |
+
msgid "No results found!"
|
1523 |
+
msgstr ""
|
1524 |
+
|
1525 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1310
|
1526 |
+
msgid "«« First"
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1530 |
+
msgid "« Prev"
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1534 |
+
#, fuzzy
|
1535 |
+
msgid "Next » "
|
1536 |
+
msgstr "Salir »"
|
1537 |
+
|
1538 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1539 |
+
#, fuzzy
|
1540 |
+
msgid "Last »»"
|
1541 |
+
msgstr "Salir »"
|
1542 |
+
|
1543 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:284
|
1544 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:427
|
1545 |
+
#, fuzzy
|
1546 |
+
msgid "You must give your option a title."
|
1547 |
+
msgstr "Debes estar conectado para editar tu perfil."
|
1548 |
+
|
1549 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:288
|
1550 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:431
|
1551 |
+
msgid "You have entered an invalid meta-key format!"
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:292
|
1555 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:435
|
1556 |
+
#, fuzzy
|
1557 |
+
msgid "You must enter a valid meta-key."
|
1558 |
+
msgstr "Has de introducir una dirección de Email válida."
|
1559 |
+
|
1560 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:298
|
1561 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:308
|
1562 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:445
|
1563 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:457
|
1564 |
+
msgid "That meta-key is already in use."
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:315
|
1568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:465
|
1569 |
+
msgid ""
|
1570 |
+
"There is already an avatar input-type. You can only have one avatar present."
|
1571 |
+
msgstr ""
|
1572 |
+
|
1573 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1574 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1575 |
+
msgid ""
|
1576 |
+
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1577 |
+
"have one present."
|
1578 |
+
msgstr ""
|
1579 |
+
|
1580 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:327
|
1581 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:477
|
1582 |
+
msgid "The textarea row value must be numeric."
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:331
|
1586 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:481
|
1587 |
+
msgid "The maxlength attribute must be numeric."
|
1588 |
+
msgstr ""
|
1589 |
+
|
1590 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1591 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1592 |
+
msgid "The value must be between 20 and 200!"
|
1593 |
+
msgstr ""
|
1594 |
+
|
1595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:343
|
1596 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
|
1597 |
+
msgid "The width component of the entered value must be numeric!"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1601 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1602 |
+
msgid "The height component of the entered value must be numeric!"
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1606 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1607 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1611 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1612 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1616 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1617 |
+
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:354
|
1621 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:504
|
1622 |
+
msgid "The entered avatar size must be numeric!"
|
1623 |
+
msgstr ""
|
1624 |
+
|
1625 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:388
|
1626 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:564
|
1627 |
+
msgid "There was an error, please try again."
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:18
|
1631 |
+
msgid "Do you want to"
|
1632 |
+
msgstr ""
|
1633 |
+
|
1634 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:18
|
1635 |
+
msgid "the current user?"
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1639 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1640 |
+
msgid "Your account on"
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1644 |
+
msgid "has been approved!"
|
1645 |
+
msgstr ""
|
1646 |
+
|
1647 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1648 |
+
msgid "An administrator has just approved your account on"
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1652 |
+
msgid "has been unapproved!"
|
1653 |
+
msgstr ""
|
1654 |
+
|
1655 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1656 |
+
msgid "An administrator has just unapproved your account on"
|
1657 |
+
msgstr ""
|
1658 |
+
|
1659 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1660 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:172
|
1661 |
+
msgid "Approve"
|
1662 |
+
msgstr ""
|
1663 |
+
|
1664 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:127
|
1665 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:217
|
1666 |
+
msgid "Unapproved"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:138
|
1670 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:168
|
1671 |
+
msgid "Unapprove"
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:139
|
1675 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:214
|
1676 |
+
msgid "Approved"
|
1677 |
+
msgstr ""
|
1678 |
+
|
1679 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:167
|
1680 |
+
msgid "unapprove"
|
1681 |
+
msgstr ""
|
1682 |
+
|
1683 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:171
|
1684 |
+
msgid "approve"
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1688 |
+
msgid "Are you sure you want to"
|
1689 |
+
msgstr ""
|
1690 |
+
|
1691 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1692 |
+
msgid "this user?"
|
1693 |
+
msgstr ""
|
1694 |
+
|
1695 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1696 |
+
msgid ""
|
1697 |
+
"<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
|
1698 |
+
"before you can log in."
|
1699 |
+
msgstr ""
|
1700 |
+
|
1701 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1702 |
+
msgid ""
|
1703 |
+
"You can create as many extra fields as your project requires. To break your "
|
1704 |
+
"custom fields into sections (on the front-end), add a \""
|
1705 |
+
msgstr ""
|
1706 |
+
|
1707 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1708 |
+
msgid "heading"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1712 |
+
msgid "\" custom field."
|
1713 |
+
msgstr ""
|
1714 |
+
|
1715 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1716 |
+
msgid "All of the fields can be sorted and rearranged to your liking with"
|
1717 |
+
msgstr ""
|
1718 |
+
|
1719 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1720 |
+
msgid "Drag"
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1724 |
+
msgid "Drop"
|
1725 |
+
msgstr ""
|
1726 |
+
|
1727 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1728 |
+
msgid ""
|
1729 |
+
"Don't worry about the order in which you create your custom fields, you can "
|
1730 |
+
"always reorder them."
|
1731 |
+
msgstr ""
|
1732 |
+
|
1733 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
|
1734 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
|
1735 |
+
#, fuzzy
|
1736 |
+
msgid "Title"
|
1737 |
+
msgstr "Blanco"
|
1738 |
+
|
1739 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
|
1740 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
|
1741 |
+
msgid "Type"
|
1742 |
+
msgstr ""
|
1743 |
+
|
1744 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
|
1745 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
|
1746 |
+
msgid "Meta-Key"
|
1747 |
+
msgstr ""
|
1748 |
+
|
1749 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
|
1750 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
|
1751 |
+
msgid "ID"
|
1752 |
+
msgstr ""
|
1753 |
+
|
1754 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
|
1755 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
|
1756 |
+
msgid "Req'd"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
|
1760 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
|
1761 |
+
msgid "Add Option"
|
1762 |
+
msgstr ""
|
1763 |
+
|
1764 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
|
1765 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
|
1766 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
|
1767 |
+
msgid "Edit"
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
|
1771 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
|
1772 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
|
1773 |
+
#, fuzzy
|
1774 |
+
msgid "Delete"
|
1775 |
+
msgstr "Predeterminada"
|
1776 |
+
|
1777 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
|
1778 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:84
|
1779 |
+
msgid "Title:"
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
|
1783 |
+
msgid "The title of the item."
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
|
1787 |
+
msgid "Meta-Key:"
|
1788 |
+
msgstr ""
|
1789 |
+
|
1790 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
|
1791 |
+
msgid ""
|
1792 |
+
"Use this in conjuction with WordPress functions to display the value in the "
|
1793 |
+
"page of your choosing. Auto-completed but editable - in this case it must be "
|
1794 |
+
"uniqe.<br/>Changing this might take long in case of a very big user-count."
|
1795 |
+
msgstr ""
|
1796 |
+
|
1797 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
|
1798 |
+
msgid "Option Type:"
|
1799 |
+
msgstr ""
|
1800 |
+
|
1801 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
|
1802 |
+
msgid "Choose one of the supported option types."
|
1803 |
+
msgstr ""
|
1804 |
+
|
1805 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
|
1806 |
+
msgid "Description:"
|
1807 |
+
msgstr ""
|
1808 |
+
|
1809 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
|
1810 |
+
msgid ""
|
1811 |
+
"Enter a detailed description of the option for end users to read(optional)."
|
1812 |
+
msgstr ""
|
1813 |
+
|
1814 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1815 |
+
msgid "You can only insert links using standard HTML syntax:"
|
1816 |
+
msgstr ""
|
1817 |
+
|
1818 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1819 |
+
msgid "address"
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1823 |
+
#, fuzzy
|
1824 |
+
msgid "name"
|
1825 |
+
msgstr "Nombre"
|
1826 |
+
|
1827 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
|
1828 |
+
msgid "Options:"
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
|
1832 |
+
msgid ""
|
1833 |
+
"Enter a comma separated list of options. For example, you could have \"One,"
|
1834 |
+
"Two,Three\" or just a single value like \"Yes\" for a checkbox."
|
1835 |
+
msgstr ""
|
1836 |
+
|
1837 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
|
1838 |
+
msgid "ID:"
|
1839 |
+
msgstr ""
|
1840 |
+
|
1841 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
|
1842 |
+
msgid ""
|
1843 |
+
"This is the internal ID for this input. You can use this in conjuction with "
|
1844 |
+
"filters to target this element if needed.<br/>Can't be edited."
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
|
1848 |
+
#, fuzzy
|
1849 |
+
msgid "Required:"
|
1850 |
+
msgstr "(obligatorio)"
|
1851 |
+
|
1852 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
|
1853 |
+
msgid "Check this box to make this field required."
|
1854 |
+
msgstr ""
|
1855 |
+
|
1856 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:193
|
1857 |
+
msgid "Cancel"
|
1858 |
+
msgstr ""
|
1859 |
+
|
1860 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:194
|
1861 |
+
msgid "Save"
|
1862 |
+
msgstr ""
|
1863 |
+
|
1864 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
|
1865 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
|
1866 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
|
1867 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
|
1868 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
|
1869 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
|
1870 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
|
1871 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
|
1872 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
|
1873 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
|
1874 |
+
msgid ""
|
1875 |
+
"This field wasn't updated because you entered and empty string (It was "
|
1876 |
+
"marked as required by the administrator)"
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
|
1880 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
|
1881 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
|
1882 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
|
1883 |
+
msgid "max upload size"
|
1884 |
+
msgstr ""
|
1885 |
+
|
1886 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
|
1887 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
|
1888 |
+
msgid "Are you sure you want to delete this attachment?"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1892 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1893 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
1894 |
+
msgid "Click to delete the current attachment"
|
1895 |
+
msgstr ""
|
1896 |
+
|
1897 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1898 |
+
msgid ""
|
1899 |
+
"The attachment can't be deleted (It was marked as required by the "
|
1900 |
+
"administrator)"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1904 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1905 |
+
msgid "Current avatar"
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1909 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1910 |
+
msgid "No uploaded avatar"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
|
1914 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
|
1915 |
+
msgid "Are you sure you want to delete this avatar?"
|
1916 |
+
msgstr ""
|
1917 |
+
|
1918 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
1919 |
+
msgid ""
|
1920 |
+
"The avatar image can't be deleted (It was marked as required by the "
|
1921 |
+
"administrator)."
|
1922 |
+
msgstr ""
|
1923 |
+
|
1924 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1925 |
+
msgid "Click to see the current avatar"
|
1926 |
+
msgstr ""
|
1927 |
+
|
1928 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1929 |
+
msgid "Click to delete the avatar"
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
|
1933 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
|
1937 |
+
#, fuzzy
|
1938 |
+
msgid "Profile Builder Login Widget"
|
1939 |
+
msgstr "Generador de perfiles"
|
1940 |
+
|
1941 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:44
|
1942 |
+
msgid "Don't have an account?"
|
1943 |
+
msgstr ""
|
1944 |
+
|
1945 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1946 |
+
#, fuzzy
|
1947 |
+
msgid "Lost Your Password?"
|
1948 |
+
msgstr "¿has olvidado la contraseña?"
|
1949 |
+
|
1950 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:80
|
1951 |
+
#, fuzzy
|
1952 |
+
msgid "Login"
|
1953 |
+
msgstr "Acceder"
|
1954 |
+
|
1955 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1956 |
+
msgid "After login redirect URL:"
|
1957 |
+
msgstr ""
|
1958 |
+
|
1959 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1960 |
+
msgid "Register page URL (optional)"
|
1961 |
+
msgstr ""
|
1962 |
+
|
1963 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1964 |
+
msgid "Password Recovery page URL (optional)"
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1968 |
+
msgid "The user-validation has failed - the avatar was not deleted!"
|
1969 |
+
msgstr ""
|
1970 |
+
|
1971 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:25
|
1972 |
+
msgid "The user-validation has failed - the attachment was not deleted!"
|
1973 |
+
msgstr ""
|
1974 |
+
|
1975 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:473
|
1976 |
+
#, php-format
|
1977 |
+
msgid ""
|
1978 |
+
"Your <strong>Profile Builder Pro</strong> serial number is invalid or "
|
1979 |
+
"missing. Please %sregister your copy%s of Profile Builder to receive access "
|
1980 |
+
"to automatic updates and support. Need a license key? %sPurchase one now%s "
|
1981 |
+
"%sDismiss%s"
|
1982 |
+
msgstr ""
|
1983 |
+
|
1984 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:477
|
1985 |
+
#, php-format
|
1986 |
+
msgid ""
|
1987 |
+
"Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please "
|
1988 |
+
"%sRenew Your Licence%s to receive access to automatic updates and priority "
|
1989 |
+
"support. %sPurchase one now%s %sDismiss%s"
|
1990 |
+
msgstr ""
|
1991 |
+
|
1992 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
1993 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:10
|
1994 |
+
msgid "Register your version of Profile Builder Pro"
|
1995 |
+
msgstr ""
|
1996 |
+
|
1997 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:11
|
1998 |
+
msgid ""
|
1999 |
+
"Now that you acquired a copy of Profile Builder Pro, you should take the "
|
2000 |
+
"time and register it with the serial number you received in the e-mail."
|
2001 |
+
msgstr ""
|
2002 |
+
|
2003 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:12
|
2004 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:53
|
2005 |
+
msgid ""
|
2006 |
+
"If you register this version of Profile Builder, you'll receive information "
|
2007 |
+
"regarding eventual upgrades, patches, and - if needed - technical support."
|
2008 |
+
msgstr ""
|
2009 |
+
|
2010 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:13
|
2011 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:54
|
2012 |
+
msgid "Serial Number:"
|
2013 |
+
msgstr ""
|
2014 |
+
|
2015 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
|
2016 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
|
2017 |
+
#, fuzzy
|
2018 |
+
msgid "The serial number was successfully validated!"
|
2019 |
+
msgstr "El avatar ha sido eliminado."
|
2020 |
+
|
2021 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
|
2022 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
|
2023 |
+
#, fuzzy
|
2024 |
+
msgid "The serial number entered couldn't be validated!"
|
2025 |
+
msgstr "El avatar ha sido eliminado."
|
2026 |
+
|
2027 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
|
2028 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
|
2029 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
2030 |
+
msgstr ""
|
2031 |
+
|
2032 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:23
|
2033 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:64
|
2034 |
+
msgid ""
|
2035 |
+
"The serial number couldn't be validated because process timed out. This is "
|
2036 |
+
"possible due to the server being down. Please try again later!"
|
2037 |
+
msgstr ""
|
2038 |
+
|
2039 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:29
|
2040 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:50
|
2044 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:51
|
2045 |
+
msgid "Register your version of Profile Builder Hobbyist"
|
2046 |
+
msgstr ""
|
2047 |
+
|
2048 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:52
|
2049 |
+
msgid ""
|
2050 |
+
"Now that you acquired a copy of Profile Builder Hobbyist, you should take "
|
2051 |
+
"the time and register it with the serial number you received in the e-mail."
|
2052 |
+
msgstr ""
|
2053 |
+
|
2054 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
|
2055 |
+
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#~ msgid "Plugin Layout"
|
2059 |
+
#~ msgstr "Diseño del Plugin"
|
2060 |
+
|
2061 |
+
#~ msgid "You didn't complete both password fields. <br/> The password was "
|
2062 |
+
#~ msgstr ""
|
2063 |
+
#~ "No has completado ambos campos de contraseña.<br/>La dirección de email "
|
2064 |
+
#~ "era"
|
2065 |
+
|
2066 |
+
#~ msgid ""
|
2067 |
+
#~ "There was an error while trying to upload your avatar picture.<br/"
|
2068 |
+
#~ ">Possible cause: size/incorrect file-type.<br/>The avatar was "
|
2069 |
+
#~ msgstr ""
|
2070 |
+
#~ "Se ha producido un error al intentar subir la imagen del avatar.<br/"
|
2071 |
+
#~ ">Causa posible: tamaño/tipo de archivo incorrecto.<br/>El avatar era"
|
2072 |
+
|
2073 |
+
#~ msgid ""
|
2074 |
+
#~ "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't "
|
2075 |
+
#~ "need another account."
|
2076 |
+
#~ msgstr ""
|
2077 |
+
#~ "Estás conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. No "
|
2078 |
+
#~ "necesitas otra cuenta."
|
translation/profilebuilder-fr_FR.mo
CHANGED
Binary file
|
translation/profilebuilder-fr_FR.po
CHANGED
@@ -1,1877 +1,2082 @@
|
|
1 |
-
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"
|
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-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
#: C:\Users\
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
-
|
33 |
-
#: C:\Users\
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
msgstr "
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
#: C:\Users\
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
#: C:\Users\
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
#: C:\Users\
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
msgid "
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: C:\Users\
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
msgid "
|
110 |
-
msgstr "
|
111 |
-
|
112 |
-
#: C:\Users\
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
#: C:\Users\
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
#: C:\Users\
|
128 |
-
#, fuzzy
|
129 |
-
msgid "
|
130 |
-
msgstr "
|
131 |
-
|
132 |
-
#: C:\Users\
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
#: C:\Users\
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
#: C:\Users\
|
159 |
-
#: C:\Users\
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
#: C:\Users\
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
#: C:\Users\
|
168 |
-
#: C:\Users\
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
#: C:\Users\
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
#: C:\Users\
|
177 |
-
#: C:\Users\
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
#: C:\Users\
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
#: C:\Users\
|
187 |
-
#: C:\Users\
|
188 |
-
#: C:\Users\
|
189 |
-
#: C:\Users\
|
190 |
-
#: C:\Users\
|
191 |
-
#: C:\Users\
|
192 |
-
#: C:\Users\
|
193 |
-
#: C:\Users\
|
194 |
-
#: C:\Users\
|
195 |
-
#: C:\Users\
|
196 |
-
#: C:\Users\
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
#: C:\Users\
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
#: C:\Users\
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
#: C:\Users\
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
#: C:\Users\
|
218 |
-
#: C:\Users\
|
219 |
-
#: C:\Users\
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
#: C:\Users\
|
234 |
-
msgid "
|
235 |
-
msgstr "
|
236 |
-
|
237 |
-
#: C:\Users\
|
238 |
-
#: C:\Users\
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
#: C:\Users\
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
#: C:\Users\
|
248 |
-
#: C:\Users\
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
#: C:\Users\
|
253 |
-
#: C:\Users\
|
254 |
-
#: C:\Users\
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
#: C:\Users\
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
#: C:\Users\
|
264 |
-
#: C:\Users\
|
265 |
-
#: C:\Users\
|
266 |
-
#: C:\Users\
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
#: C:\Users\
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
#: C:\Users\
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
#: C:\Users\
|
285 |
-
msgid "
|
286 |
-
msgstr "
|
287 |
-
|
288 |
-
#: C:\Users\
|
289 |
-
|
290 |
-
msgid "
|
291 |
-
msgstr "
|
292 |
-
|
293 |
-
#: C:\Users\
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
#: C:\Users\
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
#: C:\Users\
|
307 |
-
#: C:\Users\
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
#: C:\Users\
|
347 |
-
#: C:\Users\
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
#: C:\Users\
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
#: C:\Users\
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
#: C:\Users\
|
372 |
-
msgid "
|
373 |
-
msgstr "
|
374 |
-
|
375 |
-
#: C:\Users\
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
#: C:\Users\
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
msgstr "
|
391 |
-
|
392 |
-
#: C:\Users\
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
#: C:\Users\
|
398 |
-
#: C:\Users\
|
399 |
-
msgid "
|
400 |
-
msgstr "
|
401 |
-
|
402 |
-
#: C:\Users\
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
#: C:\Users\
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
msgid "
|
446 |
-
msgstr "
|
447 |
-
|
448 |
-
#: C:\Users\
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
msgid "
|
455 |
-
msgstr "
|
456 |
-
|
457 |
-
#: C:\Users\
|
458 |
-
#: C:\Users\
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
#: C:\Users\
|
464 |
-
#: C:\Users\
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
#: C:\Users\
|
469 |
-
msgid "
|
470 |
-
msgstr "
|
471 |
-
|
472 |
-
#: C:\Users\
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
#: C:\Users\
|
477 |
-
#: C:\Users\
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
#: C:\Users\
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
#: C:\Users\
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
#: C:\Users\
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
#: C:\Users\
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
#: C:\Users\
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
#: C:\Users\
|
593 |
-
msgid "
|
594 |
-
msgstr "
|
595 |
-
|
596 |
-
#: C:\Users\
|
597 |
-
msgid "
|
598 |
-
msgstr "
|
599 |
-
|
600 |
-
#: C:\Users\
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
#: C:\Users\
|
609 |
-
msgid "
|
610 |
-
msgstr "
|
611 |
-
|
612 |
-
#: C:\Users\
|
613 |
-
msgid "
|
614 |
-
msgstr "
|
615 |
-
|
616 |
-
#: C:\Users\
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
msgid "
|
628 |
-
msgstr "
|
629 |
-
|
630 |
-
#: C:\Users\
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
#: C:\Users\
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
#: C:\Users\
|
649 |
-
msgid "
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#: C:\Users\
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
#: C:\Users\
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
msgid "
|
673 |
-
msgstr "
|
674 |
-
|
675 |
-
#: C:\Users\
|
676 |
-
#: C:\Users\
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
#: C:\Users\
|
702 |
-
msgid "
|
703 |
-
msgstr ""
|
704 |
-
|
705 |
-
#: C:\Users\
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
#: C:\Users\
|
712 |
-
msgid "
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
#: C:\Users\
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
#: C:\Users\
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
#: C:\Users\
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
#: C:\Users\
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
msgid "
|
751 |
-
msgstr "
|
752 |
-
|
753 |
-
#: C:\Users\
|
754 |
-
|
755 |
-
msgid "
|
756 |
-
msgstr ""
|
757 |
-
|
758 |
-
#: C:\Users\
|
759 |
-
msgid "
|
760 |
-
msgstr ""
|
761 |
-
|
762 |
-
#: C:\Users\
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
#: C:\Users\
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
#: C:\Users\
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
#: C:\Users\
|
778 |
-
msgid "
|
779 |
-
msgstr ""
|
780 |
-
|
781 |
-
#: C:\Users\
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
#: C:\Users\
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
#: C:\Users\
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
#: C:\Users\
|
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 |
-
#: C:\Users\
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
#: C:\Users\
|
834 |
-
|
835 |
-
msgid "
|
836 |
-
msgstr "
|
837 |
-
|
838 |
-
#: C:\Users\
|
839 |
-
|
840 |
-
msgid "
|
841 |
-
msgstr "
|
842 |
-
|
843 |
-
#: C:\Users\
|
844 |
-
msgid "
|
845 |
-
msgstr ""
|
846 |
-
|
847 |
-
#: C:\Users\
|
848 |
-
msgid "
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
msgstr ""
|
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 |
-
msgid "
|
909 |
-
msgstr ""
|
910 |
-
|
911 |
-
#: C:\Users\
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
#: C:\Users\
|
921 |
-
msgid "
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
msgstr "
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
msgid "
|
958 |
-
msgstr "
|
959 |
-
|
960 |
-
#: C:\Users\
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
#: C:\Users\
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
#: C:\Users\
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
#: C:\Users\
|
1006 |
-
#: C:\Users\
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
#: C:\Users\
|
1011 |
-
#: C:\Users\
|
1012 |
-
#: C:\Users\
|
1013 |
-
#: C:\Users\
|
1014 |
-
#: C:\Users\
|
1015 |
-
#: C:\Users\
|
1016 |
-
#: C:\Users\
|
1017 |
-
#: C:\Users\
|
1018 |
-
#: C:\Users\
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
#: C:\Users\
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
#: C:\Users\
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
#: C:\Users\
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
msgid "
|
1057 |
-
msgstr ""
|
1058 |
-
|
1059 |
-
#: C:\Users\
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
#: C:\Users\
|
1080 |
-
msgid "
|
1081 |
-
msgstr ""
|
1082 |
-
|
1083 |
-
#: C:\Users\
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
#: C:\Users\
|
1101 |
-
msgid "
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
#: C:\Users\
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
msgstr ""
|
1122 |
-
|
1123 |
-
#: C:\Users\
|
1124 |
-
msgid "
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
#: C:\Users\
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
msgid "
|
1154 |
-
msgstr "
|
1155 |
-
|
1156 |
-
#: C:\Users\
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
#: C:\Users\
|
1178 |
-
msgid "
|
1179 |
-
msgstr ""
|
1180 |
-
|
1181 |
-
#: C:\Users\
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
#: C:\Users\
|
1195 |
-
msgid "
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
-
#: C:\Users\
|
1199 |
-
msgid "
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: C:\Users\
|
1203 |
-
msgid "
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: C:\Users\
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
#: C:\Users\
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
msgid "
|
1260 |
-
msgstr "
|
1261 |
-
|
1262 |
-
#: C:\Users\
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
msgid "
|
1274 |
-
msgstr "
|
1275 |
-
|
1276 |
-
#: C:\Users\
|
1277 |
-
|
1278 |
-
msgid "
|
1279 |
-
msgstr "
|
1280 |
-
|
1281 |
-
#: C:\Users\
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
msgstr ""
|
1289 |
-
|
1290 |
-
#: C:\Users\
|
1291 |
-
msgid "
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
#: C:\Users\
|
1307 |
-
msgid "
|
1308 |
-
msgstr ""
|
1309 |
-
|
1310 |
-
#: C:\Users\
|
1311 |
-
msgid "
|
1312 |
-
msgstr ""
|
1313 |
-
|
1314 |
-
#: C:\Users\
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
msgstr ""
|
1331 |
-
|
1332 |
-
#: C:\Users\
|
1333 |
-
msgid "
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
msgid "
|
1348 |
-
msgstr "
|
1349 |
-
|
1350 |
-
#: C:\Users\
|
1351 |
-
msgid "
|
1352 |
-
msgstr ""
|
1353 |
-
|
1354 |
-
#: C:\Users\
|
1355 |
-
#: C:\Users\
|
1356 |
-
msgid "
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
msgstr ""
|
1366 |
-
|
1367 |
-
#: C:\Users\
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
#: C:\Users\
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
#: C:\Users\
|
1381 |
-
#: C:\Users\
|
1382 |
-
msgid "
|
1383 |
-
msgstr ""
|
1384 |
-
|
1385 |
-
#: C:\Users\
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
#: C:\Users\
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
msgid "
|
1467 |
-
msgstr ""
|
1468 |
-
|
1469 |
-
#: C:\Users\
|
1470 |
-
msgid "
|
1471 |
-
msgstr ""
|
1472 |
-
|
1473 |
-
#: C:\Users\
|
1474 |
-
msgid "
|
1475 |
-
msgstr ""
|
1476 |
-
|
1477 |
-
#: C:\Users\
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
#: C:\Users\
|
1483 |
-
#: C:\Users\
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
#: C:\Users\
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
#: C:\Users\
|
1496 |
-
|
1497 |
-
msgid "
|
1498 |
-
msgstr "
|
1499 |
-
|
1500 |
-
#: C:\Users\
|
1501 |
-
msgid "
|
1502 |
-
msgstr ""
|
1503 |
-
|
1504 |
-
#: C:\Users\
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
#: C:\Users\
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
#: C:\Users\
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
#: C:\Users\
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
msgid "
|
1562 |
-
msgstr ""
|
1563 |
-
|
1564 |
-
#: C:\Users\
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
#: C:\Users\
|
1573 |
-
|
1574 |
-
|
1575 |
-
msgstr ""
|
1576 |
-
|
1577 |
-
#: C:\Users\
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
#: C:\Users\
|
1586 |
-
msgid "
|
1587 |
-
msgstr ""
|
1588 |
-
|
1589 |
-
#: C:\Users\
|
1590 |
-
#: C:\Users\
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
#: C:\Users\
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
#: C:\Users\
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
#: C:\Users\
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
#: C:\Users\
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
#: C:\Users\
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
#: C:\Users\
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
#: C:\Users\
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
#: C:\Users\
|
1635 |
-
msgid "
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
#: C:\Users\
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
#: C:\Users\
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
#: C:\Users\
|
1660 |
-
msgid "
|
1661 |
-
msgstr ""
|
1662 |
-
|
1663 |
-
#: C:\Users\
|
1664 |
-
#: C:\Users\
|
1665 |
-
msgid "
|
1666 |
-
msgstr ""
|
1667 |
-
|
1668 |
-
#: C:\Users\
|
1669 |
-
#: C:\Users\
|
1670 |
-
msgid "
|
1671 |
-
msgstr ""
|
1672 |
-
|
1673 |
-
#: C:\Users\
|
1674 |
-
#: C:\Users\
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
#: C:\Users\
|
1679 |
-
#: C:\Users\
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
#: C:\Users\
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
#: C:\Users\
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
#: C:\Users\
|
1720 |
-
msgid "
|
1721 |
-
msgstr ""
|
1722 |
-
|
1723 |
-
#: C:\Users\
|
1724 |
-
msgid "
|
1725 |
-
msgstr ""
|
1726 |
-
|
1727 |
-
#: C:\Users\
|
1728 |
-
msgid "
|
1729 |
-
msgstr ""
|
1730 |
-
|
1731 |
-
#: C:\Users\
|
1732 |
-
msgid "
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
msgid "
|
1741 |
-
msgstr ""
|
1742 |
-
|
1743 |
-
#: C:\Users\
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
#: C:\Users\
|
1765 |
-
msgid "
|
1766 |
-
msgstr ""
|
1767 |
-
|
1768 |
-
#: C:\Users\
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
#: C:\Users\
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
|
1809 |
-
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
|
1831 |
-
|
1832 |
-
msgid "
|
1833 |
-
msgstr "
|
1834 |
-
|
1835 |
-
#: C:\Users\
|
1836 |
-
msgid "
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
|
1860 |
-
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: ProfileBuilder\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-12-11 15:10+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-12-11 15:10+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.4\n"
|
15 |
+
"X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
|
16 |
+
"pro\n"
|
17 |
+
|
18 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:85
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:590
|
20 |
+
msgid "The information size you were trying to submit was larger than"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:86
|
24 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:591
|
25 |
+
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
29 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
30 |
+
msgid "Since it was also larger than"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
34 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
35 |
+
msgid "no additional information is available."
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
|
39 |
+
msgid "You must be logged in to edit your profile."
|
40 |
+
msgstr "Vous devez être connecté(e) pour modifier votre profil."
|
41 |
+
|
42 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
|
43 |
+
msgid "The avatar was successfully deleted."
|
44 |
+
msgstr "L'avatar a bien été supprimé."
|
45 |
+
|
46 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
47 |
+
#, fuzzy
|
48 |
+
msgid "The attachment"
|
49 |
+
msgstr "La pièce jointe \""
|
50 |
+
|
51 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
52 |
+
#, fuzzy
|
53 |
+
msgid "was successfully deleted."
|
54 |
+
msgstr "\" a bien été supprimée."
|
55 |
+
|
56 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
|
57 |
+
msgid "The changes have been successfully saved."
|
58 |
+
msgstr "Les modifications ont bien été sauvegardées."
|
59 |
+
|
60 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
61 |
+
#, fuzzy
|
62 |
+
msgid ""
|
63 |
+
"The email address you entered is already registered to a different user."
|
64 |
+
msgstr ""
|
65 |
+
"L'adresse de courriel indiquée appartient déjà à un autre utilisateur.<br/"
|
66 |
+
">L'adresse de courriel était "
|
67 |
+
|
68 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
69 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
70 |
+
msgid "The email address was"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
74 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
76 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
77 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
78 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
79 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
80 |
+
msgid "NOT"
|
81 |
+
msgstr "PAS"
|
82 |
+
|
83 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
84 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
85 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
86 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
87 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
88 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
89 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
90 |
+
#, fuzzy
|
91 |
+
msgid "updated along with the rest of the information."
|
92 |
+
msgstr " mis à jour avec le reste des informations."
|
93 |
+
|
94 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
95 |
+
#, fuzzy
|
96 |
+
msgid "The email address you entered is invalid."
|
97 |
+
msgstr ""
|
98 |
+
"L'adresse de courriel n'est pas valide. <br/> L'adresse de courriel était "
|
99 |
+
|
100 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
101 |
+
#, fuzzy
|
102 |
+
msgid "The passwords you entered do not match."
|
103 |
+
msgstr ""
|
104 |
+
"Les mots de passe ne correspondent pas. <br/> Les mots de passe étaient "
|
105 |
+
|
106 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
107 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
108 |
+
#, fuzzy
|
109 |
+
msgid "The password was"
|
110 |
+
msgstr "Nouveau Mot de Passe"
|
111 |
+
|
112 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
113 |
+
#, fuzzy
|
114 |
+
msgid "You didn't complete both password fields."
|
115 |
+
msgstr "Vous n'avez pas renseigné un des champs de mot de passe !"
|
116 |
+
|
117 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
118 |
+
msgid "Your profile was NOT updated!"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
|
122 |
+
#, fuzzy
|
123 |
+
msgid "There was an error while trying to upload the following attachments:"
|
124 |
+
msgstr ""
|
125 |
+
"Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
126 |
+
|
127 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
128 |
+
#, fuzzy
|
129 |
+
msgid "Possible cause: the size was bigger than"
|
130 |
+
msgstr "<br/>Cause possible: la taille est supérieur à "
|
131 |
+
|
132 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
133 |
+
#, fuzzy
|
134 |
+
msgid "The listed attachements were"
|
135 |
+
msgstr "b.<br/>les fichiers étaient "
|
136 |
+
|
137 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
138 |
+
#, fuzzy
|
139 |
+
msgid "There was an error while trying to upload your avatar picture."
|
140 |
+
msgstr ""
|
141 |
+
"Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
142 |
+
|
143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
144 |
+
msgid "Possible cause: size/incorrect file-type."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
148 |
+
msgid "The avatar was"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:668
|
152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:898
|
153 |
+
#, fuzzy
|
154 |
+
msgid "There was an error while trying to upload the following attachment(s)"
|
155 |
+
msgstr ""
|
156 |
+
"Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
157 |
+
|
158 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
159 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
160 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
164 |
+
msgid "This file was"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:692
|
168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1282
|
169 |
+
msgid "Name"
|
170 |
+
msgstr "Nom"
|
171 |
+
|
172 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:698
|
173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:150
|
174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
176 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
177 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:497
|
178 |
+
msgid "Username"
|
179 |
+
msgstr "Nom d'Utilisateur"
|
180 |
+
|
181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
|
182 |
+
#, fuzzy
|
183 |
+
msgid "Usernames cannot be changed."
|
184 |
+
msgstr " Les noms d'utilisateurs ne peuvent être modifiés."
|
185 |
+
|
186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
|
187 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
|
188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
|
189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
|
190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
|
191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
|
192 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
|
193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
|
194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
|
195 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
199 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:297
|
200 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:362
|
201 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:428
|
202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:482
|
203 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:530
|
204 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:593
|
205 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:702
|
206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
|
207 |
+
msgid "This field is marked as required by the administrator."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
|
211 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
|
212 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
|
213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
|
214 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
|
215 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
|
216 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
|
217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
|
218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
|
219 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
|
220 |
+
msgid ""
|
221 |
+
"This field wasn't updated because you entered and empty string (It was "
|
222 |
+
"marked as required by the administrator."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:718
|
226 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1327
|
227 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
228 |
+
msgid "First Name"
|
229 |
+
msgstr "Prénom"
|
230 |
+
|
231 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:738
|
232 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1351
|
233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
234 |
+
msgid "Last Name"
|
235 |
+
msgstr "Nom"
|
236 |
+
|
237 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:758
|
238 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1375
|
239 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
240 |
+
msgid "Nickname"
|
241 |
+
msgstr "Pseudo"
|
242 |
+
|
243 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
|
244 |
+
msgid "Display name publicly as"
|
245 |
+
msgstr "Apparaître publiquement en tant que"
|
246 |
+
|
247 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:811
|
248 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1381
|
249 |
+
msgid "Contact Info"
|
250 |
+
msgstr "Infos de Contact"
|
251 |
+
|
252 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:828
|
253 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:502
|
254 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
255 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
256 |
+
msgid "E-mail"
|
257 |
+
msgstr "Courriel"
|
258 |
+
|
259 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
|
260 |
+
msgid "(required)"
|
261 |
+
msgstr "(requis)"
|
262 |
+
|
263 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:847
|
264 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1426
|
265 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
266 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:539
|
267 |
+
msgid "Website"
|
268 |
+
msgstr "Site Web"
|
269 |
+
|
270 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:865
|
271 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1450
|
272 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
273 |
+
msgid "AIM"
|
274 |
+
msgstr "AIM"
|
275 |
+
|
276 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:883
|
277 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1474
|
278 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
279 |
+
msgid "Yahoo IM"
|
280 |
+
msgstr "Yahoo IM"
|
281 |
+
|
282 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:901
|
283 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1498
|
284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
285 |
+
msgid "Jabber / Google Talk"
|
286 |
+
msgstr "Jabber / Google Talk"
|
287 |
+
|
288 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:907
|
289 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1504
|
290 |
+
msgid "About Yourself"
|
291 |
+
msgstr "À Propos de Vous"
|
292 |
+
|
293 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:922
|
294 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1525
|
295 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
296 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:545
|
297 |
+
msgid "Biographical Info"
|
298 |
+
msgstr "Infos Biographiques"
|
299 |
+
|
300 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:932
|
301 |
+
msgid "New Password"
|
302 |
+
msgstr "Nouveau Mot de Passe"
|
303 |
+
|
304 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:937
|
305 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:336
|
306 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:366
|
307 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1563
|
308 |
+
msgid "Repeat Password"
|
309 |
+
msgstr "Répéter le Mot de Passe"
|
310 |
+
|
311 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
|
312 |
+
msgid "Update"
|
313 |
+
msgstr "Mettre à Jour"
|
314 |
+
|
315 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:45
|
316 |
+
#, fuzzy
|
317 |
+
msgid "You are currently logged in as"
|
318 |
+
msgstr ""
|
319 |
+
"Vous êtes actuellement connecté(e) en tant que <a href=\"%1$s\" title=\"%2$s"
|
320 |
+
"\">%2$s</a>."
|
321 |
+
|
322 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:46
|
323 |
+
msgid "Log out of this account"
|
324 |
+
msgstr "Se déconnecter de ce compte"
|
325 |
+
|
326 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:46
|
327 |
+
#, fuzzy
|
328 |
+
msgid "Log out"
|
329 |
+
msgstr "Déconnexion »"
|
330 |
+
|
331 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:64
|
332 |
+
#, fuzzy
|
333 |
+
msgid "You have successfully logged in as"
|
334 |
+
msgstr ""
|
335 |
+
"Vous vous êtes connecté en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
336 |
+
|
337 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:91
|
338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:105
|
339 |
+
msgid ""
|
340 |
+
"You will soon be redirected automatically. If you see this page for more "
|
341 |
+
"than 1 second, please click"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:91
|
345 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:105
|
346 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
348 |
+
msgid "here"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:123
|
352 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
353 |
+
msgid "ERROR:"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:123
|
357 |
+
msgid "The username field is empty"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:158
|
361 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:331
|
362 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:361
|
363 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
364 |
+
msgid "Password"
|
365 |
+
msgstr "Mot de Passe"
|
366 |
+
|
367 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:166
|
368 |
+
msgid "Log in"
|
369 |
+
msgstr "Connexion"
|
370 |
+
|
371 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:170
|
372 |
+
msgid "Remember me"
|
373 |
+
msgstr "Se souvenir de moi"
|
374 |
+
|
375 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:185
|
376 |
+
msgid "Lost password?"
|
377 |
+
msgstr "Mot de passe oublié ?"
|
378 |
+
|
379 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
380 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
381 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
382 |
+
msgid "ERROR"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:111
|
386 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
387 |
+
msgid ""
|
388 |
+
"Your account has to be confirmed by an administrator before you can use the "
|
389 |
+
"\"Password Reset\" feature."
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
393 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
394 |
+
msgid "A password reset email has been sent to "
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
398 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
399 |
+
msgid "Following the link sent in the email address will reset the password."
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
403 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
404 |
+
msgid ""
|
405 |
+
"Someone requested that the password be reset for the following account: "
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
409 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
410 |
+
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
414 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
415 |
+
msgid "To reset your password, visit the following link:"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:170
|
419 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:221
|
420 |
+
msgid "Password Reset Feature from"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:179
|
424 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:230
|
425 |
+
#, fuzzy
|
426 |
+
msgid "There was an error while trying to send the activation link to "
|
427 |
+
msgstr ""
|
428 |
+
"Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
429 |
+
|
430 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
431 |
+
#, fuzzy
|
432 |
+
msgid "The email address entered wasn't found in the database!"
|
433 |
+
msgstr ""
|
434 |
+
"L'adresse de courriel n'est pas valide. <br/> L'adresse de courriel était "
|
435 |
+
|
436 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:189
|
437 |
+
msgid "Please check that you entered the correct email address."
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
441 |
+
msgid "The username entered wasn't found in the database!"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:238
|
445 |
+
msgid "Please check that you entered the correct username."
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:249
|
449 |
+
#, fuzzy
|
450 |
+
msgid "Your password has been successfully changed!"
|
451 |
+
msgstr "Les modifications ont bien été sauvegardées."
|
452 |
+
|
453 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:263
|
454 |
+
msgid "You have successfully reset your password to:"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
458 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
459 |
+
#, fuzzy
|
460 |
+
msgid "Password Successfully Reset for"
|
461 |
+
msgstr "\" a bien été supprimée."
|
462 |
+
|
463 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:267
|
464 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:281
|
465 |
+
msgid "from"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
469 |
+
msgid "has requested a password change via the password reset feature."
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
473 |
+
msgid "His/her new password is:"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
477 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
478 |
+
msgid "The entered passwords don't match!"
|
479 |
+
msgstr "Les mots de passe ne correspondent pas !"
|
480 |
+
|
481 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:343
|
482 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:373
|
483 |
+
#, fuzzy
|
484 |
+
msgid "Reset Password"
|
485 |
+
msgstr "Répéter le Mot de Passe"
|
486 |
+
|
487 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:390
|
488 |
+
msgid "Invalid key!"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
492 |
+
#, fuzzy
|
493 |
+
msgid "Please enter your username or email address."
|
494 |
+
msgstr "Vous devez entrer une adresse de courriel valide."
|
495 |
+
|
496 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
497 |
+
msgid "You will receive a link to create a new password via email."
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
501 |
+
#, fuzzy
|
502 |
+
msgid "Username or E-mail"
|
503 |
+
msgstr "Nom d'Utilisateur"
|
504 |
+
|
505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:423
|
506 |
+
#, fuzzy
|
507 |
+
msgid "Get New Password"
|
508 |
+
msgstr "Nouveau Mot de Passe"
|
509 |
+
|
510 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
|
511 |
+
#, php-format
|
512 |
+
msgid ""
|
513 |
+
"To activate your user, please click the following link:\n"
|
514 |
+
"\n"
|
515 |
+
"%s%s%s\n"
|
516 |
+
"\n"
|
517 |
+
"After you activate, you will receive *another email* with your login.\n"
|
518 |
+
"\n"
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
|
522 |
+
#, php-format
|
523 |
+
msgid "[%1$s] Activate %2$s"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
|
527 |
+
msgid "Invalid activation key!"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
|
531 |
+
msgid "The user is already active!"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
|
535 |
+
msgid "Could not create user!"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
|
539 |
+
#, fuzzy
|
540 |
+
msgid "That username is already activated!"
|
541 |
+
msgstr "Désolé, ce nom d'utilisateur existe déjà !"
|
542 |
+
|
543 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
|
544 |
+
#, fuzzy
|
545 |
+
msgid "The user was successfully activated."
|
546 |
+
msgstr "L'avatar a bien été supprimé."
|
547 |
+
|
548 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
|
549 |
+
#, fuzzy
|
550 |
+
msgid "There was an error while trying to activate the user."
|
551 |
+
msgstr ""
|
552 |
+
"Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
553 |
+
|
554 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:500
|
555 |
+
msgid "New subscriber on"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
559 |
+
msgid ""
|
560 |
+
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
561 |
+
"please remember that you need to approve this user before he/she can log in!"
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:507
|
565 |
+
msgid "A new subscriber has (been) registered!"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
569 |
+
#, fuzzy
|
570 |
+
msgid "A new account has been created for you."
|
571 |
+
msgstr "Un compte utilisateur pour %1$s a été créé."
|
572 |
+
|
573 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
574 |
+
msgid "Welcome to"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
578 |
+
msgid "Your username is:"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
582 |
+
#, fuzzy
|
583 |
+
msgid "and password:"
|
584 |
+
msgstr "Mot de Passe"
|
585 |
+
|
586 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
587 |
+
msgid ""
|
588 |
+
"Before you can access your account, an administrator needs to approve it. "
|
589 |
+
"You will be notified via email."
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:593
|
593 |
+
msgid "The user was NOT created!"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
597 |
+
msgid "A username is required for registration."
|
598 |
+
msgstr "Un nom d'utilisateur est requis pour l'enregistrement."
|
599 |
+
|
600 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:886
|
601 |
+
msgid "Sorry, that username already exists!"
|
602 |
+
msgstr "Désolé, ce nom d'utilisateur existe déjà !"
|
603 |
+
|
604 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
|
605 |
+
msgid "You must enter a valid email address."
|
606 |
+
msgstr "Vous devez entrer une adresse de courriel valide."
|
607 |
+
|
608 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:890
|
609 |
+
msgid "Sorry, that email address is already used!"
|
610 |
+
msgstr "Désolé, cette adresse de courriel est déjà utilisée !"
|
611 |
+
|
612 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:893
|
613 |
+
msgid "You didn't complete one of the password-fields!"
|
614 |
+
msgstr "Vous n'avez pas renseigné un des champs de mot de passe !"
|
615 |
+
|
616 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:905
|
617 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
618 |
+
#, fuzzy
|
619 |
+
msgid "The account was NOT created!"
|
620 |
+
msgstr "Un compte utilisateur pour %1$s a été créé."
|
621 |
+
|
622 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:909
|
623 |
+
msgid "You must agree to the terms and conditions before registering!"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:911
|
627 |
+
msgid "(Several required fields were left uncompleted)"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
631 |
+
msgid "This username is already reserved to be used soon."
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:929
|
635 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
636 |
+
msgid "Please try a different one!"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:933
|
640 |
+
#, fuzzy
|
641 |
+
msgid "This email address is already reserved to be used soon."
|
642 |
+
msgstr "Désolé, cette adresse de courriel est déjà utilisée !"
|
643 |
+
|
644 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
645 |
+
msgid "You are logged in as"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
649 |
+
msgid "You don't need another account."
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
653 |
+
#, fuzzy
|
654 |
+
msgid "Log out of this account."
|
655 |
+
msgstr "Se déconnecter de ce compte"
|
656 |
+
|
657 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1161
|
658 |
+
#, fuzzy
|
659 |
+
msgid "Logout"
|
660 |
+
msgstr "Déconnexion »"
|
661 |
+
|
662 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1169
|
663 |
+
msgid "An email has been sent to "
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1169
|
667 |
+
msgid "with information on how to activate his/her account"
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1174
|
671 |
+
#, fuzzy
|
672 |
+
msgid "A user account has been created for"
|
673 |
+
msgstr "Un compte utilisateur pour %1$s a été créé."
|
674 |
+
|
675 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1193
|
676 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1225
|
677 |
+
msgid ""
|
678 |
+
"You will soon be redirected automatically. If you see this page for more "
|
679 |
+
"than 3 seconds, please click"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1200
|
683 |
+
msgid ""
|
684 |
+
"An email has been sent to you with information on how to activate your "
|
685 |
+
"account"
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1205
|
689 |
+
#, fuzzy
|
690 |
+
msgid "Thank you for registering"
|
691 |
+
msgstr "Merci de vous être enregistré, %1$s."
|
692 |
+
|
693 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
694 |
+
msgid "An error occured while trying to send the notification email."
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
698 |
+
msgid "An email containing activation instructions was successfully sent."
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1243
|
702 |
+
msgid "An email containing the username and password was successfully sent."
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
706 |
+
msgid "Users can register themselves or you can manually create users here."
|
707 |
+
msgstr ""
|
708 |
+
"Les utilisateurs peuvent s'enregistrer ou bien vous pouvez les créer "
|
709 |
+
"manuellement ici."
|
710 |
+
|
711 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
712 |
+
msgid ""
|
713 |
+
"Users cannot currently register themselves, but you can manually create "
|
714 |
+
"users here."
|
715 |
+
msgstr ""
|
716 |
+
"Les utilisateurs ne peuvent actuellement pas s'enregistrer eux-même, mais "
|
717 |
+
"vous pouvez les créer manuellement ici."
|
718 |
+
|
719 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1269
|
720 |
+
msgid "Only an administrator can add new users."
|
721 |
+
msgstr "Seul un administrateur peut ajouter de nouveaux utilisateurs."
|
722 |
+
|
723 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1292
|
724 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1316
|
725 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1340
|
726 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1364
|
727 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1415
|
728 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1439
|
729 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1463
|
730 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1487
|
731 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1514
|
732 |
+
msgid ""
|
733 |
+
"This field must be filled out before registering (It was marked as required "
|
734 |
+
"by the administrator)"
|
735 |
+
msgstr ""
|
736 |
+
|
737 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
|
738 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
|
739 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
|
740 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
|
741 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
|
742 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
|
743 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
|
744 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
|
745 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
|
746 |
+
msgid "This field is marked as required by the administrator"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1586
|
750 |
+
msgid "Anti-Spam"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
|
754 |
+
#, fuzzy
|
755 |
+
msgid "Send these credentials via email."
|
756 |
+
msgstr " Envoyer ces données par courriel."
|
757 |
+
|
758 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
759 |
+
msgid "Add User"
|
760 |
+
msgstr "Ajouter un Utilisateur"
|
761 |
+
|
762 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1621
|
763 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
764 |
+
msgid "Register"
|
765 |
+
msgstr "Enregistrement"
|
766 |
+
|
767 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
|
768 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
|
769 |
+
msgid "Show/Hide the Admin Bar on Front End"
|
770 |
+
msgstr "Afficher/Masquer la Barre d'Administration sur le Front-End"
|
771 |
+
|
772 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
|
773 |
+
msgid "User-group"
|
774 |
+
msgstr "Groupe d'Utilisateurs"
|
775 |
+
|
776 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
|
777 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
|
778 |
+
msgid "Visibility"
|
779 |
+
msgstr "Visibilité"
|
780 |
+
|
781 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:28
|
782 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
783 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
784 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
785 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:69
|
786 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:82
|
787 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:101
|
788 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:114
|
789 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:130
|
790 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:143
|
791 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:156
|
792 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
|
793 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
|
794 |
+
msgid "Show"
|
795 |
+
msgstr "Afficher"
|
796 |
+
|
797 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:29
|
798 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
799 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
800 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
801 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:70
|
802 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:83
|
803 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:102
|
804 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:115
|
805 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:131
|
806 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:144
|
807 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:157
|
808 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
|
809 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
|
810 |
+
msgid "Hide"
|
811 |
+
msgstr "Masquer"
|
812 |
+
|
813 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:40
|
814 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
815 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
816 |
+
msgid "NOTE:"
|
817 |
+
msgstr "NOTE:"
|
818 |
+
|
819 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:41
|
820 |
+
msgid ""
|
821 |
+
"If you added new roles (via another plugin) <u>after</u> Profile Builder was "
|
822 |
+
"activated, please reactivate it, since the roles are initialized during "
|
823 |
+
"plugin activation."
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:48
|
827 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
828 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
829 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
830 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
831 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
832 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:369
|
833 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
834 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
835 |
+
msgid "Save Changes"
|
836 |
+
msgstr "Sauvegarder les modifications"
|
837 |
+
|
838 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
|
839 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
|
840 |
+
msgid "Profile Builder"
|
841 |
+
msgstr "Profile Builder"
|
842 |
+
|
843 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
|
844 |
+
msgid "Welcome to Profile Builder!"
|
845 |
+
msgstr "Bienvenue dans Profile Builder !"
|
846 |
+
|
847 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
|
848 |
+
msgid ""
|
849 |
+
" lets you customize your website by adding a front-end menu for all your "
|
850 |
+
"users, giving them a more flexible way to modify their user-information or "
|
851 |
+
"to register new users."
|
852 |
+
msgstr ""
|
853 |
+
" vous permet de personnaliser votre site en y ajoutant un menu visible par "
|
854 |
+
"les utilisateurs, leur permettant de modifier de manière plus flexible les "
|
855 |
+
"informations les concernant ou encore, de permettre l'enregistrement de "
|
856 |
+
"nouveaux utilisateurs."
|
857 |
+
|
858 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
|
859 |
+
msgid ""
|
860 |
+
"Also, grants users with administrator rights to customize basic fields or to "
|
861 |
+
"add new ones."
|
862 |
+
msgstr ""
|
863 |
+
"Il permet également aux utilisateurs dotés de droits d'administrateurs de "
|
864 |
+
"personnaliser les champs de base ou d'en ajouter d'autre à leur guise."
|
865 |
+
|
866 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
|
867 |
+
msgid ""
|
868 |
+
"To achieve this, just create a new page, and give it an intuitive name(e.g. "
|
869 |
+
"Edit Profile)."
|
870 |
+
msgstr ""
|
871 |
+
"Pour mettre en place le dispositif, créez simplement une nouvelle page et "
|
872 |
+
"donnez-lui un nom évocateur (par exemple, \"Modifier le Profil\")."
|
873 |
+
|
874 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
|
875 |
+
msgid ""
|
876 |
+
"Now all you need to do is add the following shortcode(for the previous "
|
877 |
+
"example): "
|
878 |
+
msgstr ""
|
879 |
+
"Tout ce qu'il vous reste à faire ensuite est d'ajouter le shortcode suivant "
|
880 |
+
"(pour l'exemple précédent): [wppb-edit-profile]."
|
881 |
+
|
882 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
|
883 |
+
msgid "Publish your page and you are ready to go!"
|
884 |
+
msgstr "Publiez votre page et le tour est joué !"
|
885 |
+
|
886 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
|
887 |
+
msgid "You can use the following shortcodes:"
|
888 |
+
msgstr "Vous pouvez utiliser les shortcodes suivant:"
|
889 |
+
|
890 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
|
891 |
+
msgid "for a log-in form."
|
892 |
+
msgstr "pour un formulaire de connexion."
|
893 |
+
|
894 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
|
895 |
+
msgid "to add a registration form."
|
896 |
+
msgstr "pour ajouter un formulaire d'enregistrement."
|
897 |
+
|
898 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
|
899 |
+
msgid ""
|
900 |
+
"to grant users a front-end acces to their personal information(requires user "
|
901 |
+
"to be logged in)."
|
902 |
+
msgstr ""
|
903 |
+
"pour permettre aux utilisateurs d'accéder à leurs données personnelles "
|
904 |
+
"(l'utilisateur doit être connecté)."
|
905 |
+
|
906 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
|
907 |
+
#, fuzzy
|
908 |
+
msgid "to add a password recovery form."
|
909 |
+
msgstr "pour ajouter un formulaire d'enregistrement."
|
910 |
+
|
911 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
|
912 |
+
#, fuzzy
|
913 |
+
msgid ""
|
914 |
+
"With the <strong>Pro</strong> version, users with administrator rights have "
|
915 |
+
"access to the following features:"
|
916 |
+
msgstr ""
|
917 |
+
"Les utilisateurs possédant des droits d'administrateurs ont accés aux "
|
918 |
+
"fonctions suivantes:"
|
919 |
+
|
920 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
|
921 |
+
msgid ""
|
922 |
+
"add a custom stylesheet/inherit values from the current theme or use one of "
|
923 |
+
"the following built into this plugin: default, white or black."
|
924 |
+
msgstr ""
|
925 |
+
"ajout de feuilles de styles personnalisées/héritées du thème courant ou "
|
926 |
+
"incluses par défaut dans le plugin: défaut, blanc ou noir."
|
927 |
+
|
928 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
|
929 |
+
msgid ""
|
930 |
+
"select whether to display or not the admin bar in the front end for a "
|
931 |
+
"specific user-group registered to the site."
|
932 |
+
msgstr ""
|
933 |
+
"possibilité d'afficher ou non la Barre d'Administration sur le Front-End "
|
934 |
+
"pour un groupe d'utilisateurs spécifique enregistré sur le site."
|
935 |
+
|
936 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
|
937 |
+
msgid ""
|
938 |
+
"select which information-field can users see/modify. The hidden fields' "
|
939 |
+
"values remain unmodified."
|
940 |
+
msgstr ""
|
941 |
+
"choix du type de champ pouvant être affiché ou modifié. Les valeurs entrées "
|
942 |
+
"dans les champs masqués demeurent non modifiées."
|
943 |
+
|
944 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
|
945 |
+
msgid ""
|
946 |
+
"add custom fields to the existing ones, with several types to choose from: "
|
947 |
+
"heading, text, textarea, select, checkbox, radio, and/or upload."
|
948 |
+
msgstr ""
|
949 |
+
"ajout de champs personnalisés, avec le choix entre différents types: titre, "
|
950 |
+
"texte, zone de texte, sélection, case à cocher, bouton, et/ou téléversement."
|
951 |
+
|
952 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
|
953 |
+
msgid "add an avatar field."
|
954 |
+
msgstr "ajout d'un champ d'avatar"
|
955 |
+
|
956 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
|
957 |
+
msgid "create custom redirects."
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
|
961 |
+
msgid "front-end userlisting using the"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:26
|
965 |
+
msgid "shortcode."
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
969 |
+
msgid "this plugin only adds/removes fields in the front-end."
|
970 |
+
msgstr "ce plugin ajoute/retire des champs uniquement sur le Front-End."
|
971 |
+
|
972 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
|
973 |
+
msgid ""
|
974 |
+
"The default information-fields will still be visible(and thus modifiable)"
|
975 |
+
msgstr ""
|
976 |
+
"Les champs d'informations par défaut seront encore visibles (donc "
|
977 |
+
"modifiables)"
|
978 |
+
|
979 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
|
980 |
+
msgid ""
|
981 |
+
"from the back-end, while custom fields will only be visible in the front-end."
|
982 |
+
msgstr ""
|
983 |
+
"depuis le Back-End, alors que les champs personnalisés ne seront visibles "
|
984 |
+
"que sur le Front-End. "
|
985 |
+
|
986 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
|
987 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
|
988 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
|
989 |
+
msgid "Default Profile Fields"
|
990 |
+
msgstr "Champs de Profil par Défaut"
|
991 |
+
|
992 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
|
993 |
+
msgid "Input Field Name"
|
994 |
+
msgstr "Nom du Champ de Saisie"
|
995 |
+
|
996 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
|
997 |
+
#, fuzzy
|
998 |
+
msgid "Required"
|
999 |
+
msgstr "(requis)"
|
1000 |
+
|
1001 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
|
1002 |
+
msgid "Name:"
|
1003 |
+
msgstr "Nom:"
|
1004 |
+
|
1005 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
|
1006 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
|
1007 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:60
|
1008 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:73
|
1009 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:86
|
1010 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:105
|
1011 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:118
|
1012 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:134
|
1013 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:147
|
1014 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:160
|
1015 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:179
|
1016 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
1017 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
1018 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
1019 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1020 |
+
msgid "Yes"
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
|
1024 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
|
1025 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:61
|
1026 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:74
|
1027 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:87
|
1028 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:106
|
1029 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:119
|
1030 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:135
|
1031 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:148
|
1032 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:161
|
1033 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:180
|
1034 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1035 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1036 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1037 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1038 |
+
#, fuzzy
|
1039 |
+
msgid "No"
|
1040 |
+
msgstr "Aucune"
|
1041 |
+
|
1042 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
|
1043 |
+
msgid "Display name publicly as..."
|
1044 |
+
msgstr "Apparaître publiquement en tant que..."
|
1045 |
+
|
1046 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
|
1047 |
+
msgid "Contact Info:"
|
1048 |
+
msgstr "Infos de Contact"
|
1049 |
+
|
1050 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
|
1051 |
+
msgid "About Yourself:"
|
1052 |
+
msgstr "À propos de vous:"
|
1053 |
+
|
1054 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
|
1055 |
+
#, fuzzy
|
1056 |
+
msgid "(New) Password"
|
1057 |
+
msgstr "Nouveau Mot de Passe"
|
1058 |
+
|
1059 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1060 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1061 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1062 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:37
|
1063 |
+
msgid "General Settings"
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:12
|
1067 |
+
#, fuzzy
|
1068 |
+
msgid "Stylesheet Used on the Front-End:"
|
1069 |
+
msgstr "Feuille de style utilisée"
|
1070 |
+
|
1071 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
1072 |
+
msgid "Default"
|
1073 |
+
msgstr "Défaut"
|
1074 |
+
|
1075 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1076 |
+
msgid "White"
|
1077 |
+
msgstr "Blanc"
|
1078 |
+
|
1079 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:19
|
1080 |
+
msgid "Black"
|
1081 |
+
msgstr "Noir"
|
1082 |
+
|
1083 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:23
|
1084 |
+
msgid "None"
|
1085 |
+
msgstr "Aucune"
|
1086 |
+
|
1087 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:29
|
1088 |
+
msgid "\"Email Confirmation\" Feature Activated:"
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:39
|
1092 |
+
msgid "\"Admin Approval\" Feature Activated:"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:48
|
1096 |
+
msgid ""
|
1097 |
+
"The black stylesheet is intended for sites/blogs with a dark background."
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:49
|
1101 |
+
msgid ""
|
1102 |
+
"The white stylesheet is intended for a sites/blogs with a light background "
|
1103 |
+
"color."
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:50
|
1107 |
+
msgid ""
|
1108 |
+
"On single-site installations the \"Email Confirmation\" feature only works "
|
1109 |
+
"in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1113 |
+
msgid ""
|
1114 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1115 |
+
"Please <a href='admin.php?page=ProfileBuilderOptionsAndSettings#register-"
|
1116 |
+
"profile-builder'>register your copy</a> of <b>Profile Builder</b> to receive "
|
1117 |
+
"access to automatic updates and support. Need a license key? <a href='http://"
|
1118 |
+
"www.cozmoslabs.com/wordpress-profile-builder/?"
|
1119 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' "
|
1120 |
+
"class='button-primary'>Purchase one now</a>"
|
1121 |
+
msgstr ""
|
1122 |
+
|
1123 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1124 |
+
msgid ""
|
1125 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please <a "
|
1126 |
+
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1127 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal'>Renew Your Licence</"
|
1128 |
+
"a> to receive access to automatic updates and priority support. <a "
|
1129 |
+
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1130 |
+
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' "
|
1131 |
+
"class='button-primary'>Purchase one now</a>"
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1135 |
+
msgid "Basic Information"
|
1136 |
+
msgstr "Informations de Base"
|
1137 |
+
|
1138 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
|
1139 |
+
msgid "Show/Hide the Admin Bar on Front-end"
|
1140 |
+
msgstr "Afficher/Masquer la Barre d'Administration sur le Front-End"
|
1141 |
+
|
1142 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
|
1143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
|
1144 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
|
1145 |
+
msgid "Extra Profile Fields"
|
1146 |
+
msgstr "Champs de Profile Supplémentaires"
|
1147 |
+
|
1148 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
|
1149 |
+
msgid "Addons"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
|
1153 |
+
msgid "Register Your Version"
|
1154 |
+
msgstr "Enregistrer Votre Version"
|
1155 |
+
|
1156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
|
1157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
|
1158 |
+
msgid "Activate/Deactivate Addons"
|
1159 |
+
msgstr ""
|
1160 |
+
|
1161 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:14
|
1162 |
+
msgid "Name/Description"
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:15
|
1166 |
+
msgid "Status"
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:20
|
1170 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:30
|
1171 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:31
|
1172 |
+
msgid "User-Listing"
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:22
|
1176 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
|
1177 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
|
1178 |
+
msgid "Active"
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
|
1182 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
|
1183 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
|
1184 |
+
msgid "Inactive"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1189 |
+
msgid "Custom Redirects"
|
1190 |
+
msgstr ""
|
1191 |
+
|
1192 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:34
|
1193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:255
|
1194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:256
|
1195 |
+
msgid "reCAPTCHA"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1199 |
+
msgid "Redirects on custom page requests:"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1203 |
+
msgid "Action"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1207 |
+
msgid "Redirect"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1211 |
+
msgid "URL"
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1215 |
+
msgid "After Registration:"
|
1216 |
+
msgstr ""
|
1217 |
+
|
1218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1219 |
+
msgid "After Login:"
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1223 |
+
#, fuzzy
|
1224 |
+
msgid "Recover Password (*)"
|
1225 |
+
msgstr "Répéter le Mot de Passe"
|
1226 |
+
|
1227 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1228 |
+
msgid ""
|
1229 |
+
"When activated this feature will redirect the user on both the default "
|
1230 |
+
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1231 |
+
"Profile Builder on the front-end login page."
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1235 |
+
msgid "Redirects on default WordPress page requests:"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1239 |
+
msgid "Requested WP Page"
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1243 |
+
msgid "Default WP Login Page(*)"
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1247 |
+
msgid "Default WP Logout Page(**)"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1251 |
+
msgid "Default WP Register Page"
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1255 |
+
msgid "Default WP Dashboard (***)"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1259 |
+
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1263 |
+
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1264 |
+
msgstr ""
|
1265 |
+
|
1266 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
1267 |
+
msgid ""
|
1268 |
+
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1269 |
+
"manage options)."
|
1270 |
+
msgstr ""
|
1271 |
+
|
1272 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:49
|
1273 |
+
msgid "Could not open socket!"
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
1277 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:120
|
1278 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:123
|
1282 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:180
|
1286 |
+
msgid ""
|
1287 |
+
"To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:196
|
1291 |
+
msgid ""
|
1292 |
+
"To use reCAPTCHA Mailhide, you have to sign up for a public and private key; "
|
1293 |
+
"you can do so at"
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:260
|
1297 |
+
msgid ""
|
1298 |
+
"Adds a reCAPTCHA form on the registration page created in the front-end "
|
1299 |
+
"(only)."
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:261
|
1303 |
+
msgid "For this you must get a public and private key from Google:"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:267
|
1307 |
+
msgid "Key"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:268
|
1311 |
+
msgid "Code"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:272
|
1315 |
+
msgid "Public Key:"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:276
|
1319 |
+
msgid "Private Key:"
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:311
|
1323 |
+
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:33
|
1327 |
+
msgid ""
|
1328 |
+
"To create a page containing the users registered to this current site/blog, "
|
1329 |
+
"insert the following shortcode in a (blank) page: "
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:34
|
1333 |
+
msgid ""
|
1334 |
+
"For instance, to create a userlisting shortcode listing only the editors and "
|
1335 |
+
"authors, visible to only the users currently logged in, you would use:"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:39
|
1339 |
+
msgid "These settings are applied to the front-end userlisting."
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:45
|
1343 |
+
msgid "Number of Users/Page: "
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:62
|
1347 |
+
msgid "Default Sorting Order: "
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:73
|
1351 |
+
msgid "\"All-Userlisting\" Template"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:75
|
1355 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:217
|
1356 |
+
msgid ""
|
1357 |
+
"With the userlisting templates you can customize the look, feel and "
|
1358 |
+
"information listed by the shortcode."
|
1359 |
+
msgstr ""
|
1360 |
+
|
1361 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1362 |
+
msgid ""
|
1363 |
+
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1364 |
+
"on each page access where the shortcode is present."
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:80
|
1368 |
+
msgid "Avatar size: "
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:96
|
1372 |
+
msgid "Insert \"Sort By\" Field:"
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:124
|
1376 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:223
|
1377 |
+
msgid "Insert \"User-Meta\" Field:"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:155
|
1381 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:261
|
1382 |
+
msgid "Insert Extra Functions:"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:170
|
1386 |
+
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:172
|
1390 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:275
|
1391 |
+
msgid ""
|
1392 |
+
"If you wish to use a default userlisting, just copy the following code and "
|
1393 |
+
"paste it in the textarea below:"
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:215
|
1397 |
+
msgid "\"Single-Userlisting\" Template"
|
1398 |
+
msgstr ""
|
1399 |
+
|
1400 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1401 |
+
msgid ""
|
1402 |
+
"The \"Single User Listing\" template is used to list an individual user. "
|
1403 |
+
"It's displayed when clickin on the \"more info\" link."
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:273
|
1407 |
+
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:379
|
1411 |
+
msgid ""
|
1412 |
+
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:379
|
1416 |
+
msgid "You can find it in Profile Builder's menu."
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:404
|
1420 |
+
#, fuzzy
|
1421 |
+
msgid "You need to be logged in to view the userlisting!"
|
1422 |
+
msgstr "Vous devez être connecté(e) pour modifier votre profil."
|
1423 |
+
|
1424 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:442
|
1425 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:468
|
1426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:486
|
1427 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1327
|
1428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1413
|
1429 |
+
msgid "Search Users by All Fields"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:486
|
1433 |
+
msgid "Leave Blank and Press Search to List All Users"
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:490
|
1437 |
+
msgid "Search"
|
1438 |
+
msgstr ""
|
1439 |
+
|
1440 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:503
|
1441 |
+
#, fuzzy
|
1442 |
+
msgid "First/Lastname"
|
1443 |
+
msgstr "Prénom"
|
1444 |
+
|
1445 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:509
|
1446 |
+
#, fuzzy
|
1447 |
+
msgid "Email"
|
1448 |
+
msgstr "Courriel"
|
1449 |
+
|
1450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:515
|
1451 |
+
msgid "Sign-up Date"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:521
|
1455 |
+
#, fuzzy
|
1456 |
+
msgid "Firstname"
|
1457 |
+
msgstr "Prénom"
|
1458 |
+
|
1459 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:527
|
1460 |
+
#, fuzzy
|
1461 |
+
msgid "Lastname"
|
1462 |
+
msgstr "Nom"
|
1463 |
+
|
1464 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:533
|
1465 |
+
#, fuzzy
|
1466 |
+
msgid "Display Name"
|
1467 |
+
msgstr "Prénom"
|
1468 |
+
|
1469 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:551
|
1470 |
+
msgid "Posts"
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:593
|
1474 |
+
msgid "Click here to see more information about this user"
|
1475 |
+
msgstr ""
|
1476 |
+
|
1477 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:593
|
1478 |
+
msgid "More..."
|
1479 |
+
msgstr ""
|
1480 |
+
|
1481 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:794
|
1482 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1101
|
1483 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1484 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1485 |
+
#, fuzzy
|
1486 |
+
msgid "No uploaded attachment"
|
1487 |
+
msgstr "La pièce jointe \""
|
1488 |
+
|
1489 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:796
|
1490 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1103
|
1491 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1159
|
1492 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1493 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1494 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1495 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
1496 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
1497 |
+
msgid "Click to see the current attachment"
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:922
|
1501 |
+
msgid "Click here to go back"
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:922
|
1505 |
+
#, fuzzy
|
1506 |
+
msgid "Back"
|
1507 |
+
msgstr "Noir"
|
1508 |
+
|
1509 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1101
|
1510 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1103
|
1511 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1512 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1513 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1514 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1515 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1516 |
+
msgid "Current file"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1157
|
1520 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1521 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1522 |
+
msgid "Avatar"
|
1523 |
+
msgstr ""
|
1524 |
+
|
1525 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1214
|
1526 |
+
msgid "No results found!"
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1310
|
1530 |
+
msgid "«« First"
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1534 |
+
msgid "« Prev"
|
1535 |
+
msgstr ""
|
1536 |
+
|
1537 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1538 |
+
#, fuzzy
|
1539 |
+
msgid "Next » "
|
1540 |
+
msgstr "Déconnexion »"
|
1541 |
+
|
1542 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1543 |
+
#, fuzzy
|
1544 |
+
msgid "Last »»"
|
1545 |
+
msgstr "Déconnexion »"
|
1546 |
+
|
1547 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:284
|
1548 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:427
|
1549 |
+
#, fuzzy
|
1550 |
+
msgid "You must give your option a title."
|
1551 |
+
msgstr "Vous devez être connecté(e) pour modifier votre profil."
|
1552 |
+
|
1553 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:288
|
1554 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:431
|
1555 |
+
msgid "You have entered an invalid meta-key format!"
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:292
|
1559 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:435
|
1560 |
+
#, fuzzy
|
1561 |
+
msgid "You must enter a valid meta-key."
|
1562 |
+
msgstr "Vous devez entrer une adresse de courriel valide."
|
1563 |
+
|
1564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:298
|
1565 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:308
|
1566 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:445
|
1567 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:457
|
1568 |
+
msgid "That meta-key is already in use."
|
1569 |
+
msgstr ""
|
1570 |
+
|
1571 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:315
|
1572 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:465
|
1573 |
+
msgid ""
|
1574 |
+
"There is already an avatar input-type. You can only have one avatar present."
|
1575 |
+
msgstr ""
|
1576 |
+
|
1577 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:322
|
1578 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:472
|
1579 |
+
msgid ""
|
1580 |
+
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1581 |
+
"have one present."
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:327
|
1585 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:477
|
1586 |
+
msgid "The textarea row value must be numeric."
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:331
|
1590 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:481
|
1591 |
+
msgid "The maxlength attribute must be numeric."
|
1592 |
+
msgstr ""
|
1593 |
+
|
1594 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:338
|
1595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:488
|
1596 |
+
msgid "The value must be between 20 and 200!"
|
1597 |
+
msgstr ""
|
1598 |
+
|
1599 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:343
|
1600 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
|
1601 |
+
msgid "The width component of the entered value must be numeric!"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1605 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1606 |
+
msgid "The height component of the entered value must be numeric!"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1610 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1611 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1615 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1616 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1620 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1621 |
+
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1622 |
+
msgstr ""
|
1623 |
+
|
1624 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:354
|
1625 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:504
|
1626 |
+
msgid "The entered avatar size must be numeric!"
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:388
|
1630 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:564
|
1631 |
+
msgid "There was an error, please try again."
|
1632 |
+
msgstr ""
|
1633 |
+
|
1634 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:18
|
1635 |
+
msgid "Do you want to"
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:18
|
1639 |
+
msgid "the current user?"
|
1640 |
+
msgstr ""
|
1641 |
+
|
1642 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1643 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1644 |
+
msgid "Your account on"
|
1645 |
+
msgstr ""
|
1646 |
+
|
1647 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1648 |
+
msgid "has been approved!"
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1652 |
+
msgid "An administrator has just approved your account on"
|
1653 |
+
msgstr ""
|
1654 |
+
|
1655 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1656 |
+
msgid "has been unapproved!"
|
1657 |
+
msgstr ""
|
1658 |
+
|
1659 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1660 |
+
msgid "An administrator has just unapproved your account on"
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1664 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:172
|
1665 |
+
msgid "Approve"
|
1666 |
+
msgstr ""
|
1667 |
+
|
1668 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:127
|
1669 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:217
|
1670 |
+
msgid "Unapproved"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:138
|
1674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:168
|
1675 |
+
msgid "Unapprove"
|
1676 |
+
msgstr ""
|
1677 |
+
|
1678 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:139
|
1679 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:214
|
1680 |
+
msgid "Approved"
|
1681 |
+
msgstr ""
|
1682 |
+
|
1683 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:167
|
1684 |
+
msgid "unapprove"
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:171
|
1688 |
+
msgid "approve"
|
1689 |
+
msgstr ""
|
1690 |
+
|
1691 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1692 |
+
msgid "Are you sure you want to"
|
1693 |
+
msgstr ""
|
1694 |
+
|
1695 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1696 |
+
msgid "this user?"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1700 |
+
msgid ""
|
1701 |
+
"<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
|
1702 |
+
"before you can log in."
|
1703 |
+
msgstr ""
|
1704 |
+
|
1705 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1706 |
+
msgid ""
|
1707 |
+
"You can create as many extra fields as your project requires. To break your "
|
1708 |
+
"custom fields into sections (on the front-end), add a \""
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1712 |
+
msgid "heading"
|
1713 |
+
msgstr ""
|
1714 |
+
|
1715 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
|
1716 |
+
msgid "\" custom field."
|
1717 |
+
msgstr ""
|
1718 |
+
|
1719 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1720 |
+
msgid "All of the fields can be sorted and rearranged to your liking with"
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1724 |
+
msgid "Drag"
|
1725 |
+
msgstr ""
|
1726 |
+
|
1727 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1728 |
+
msgid "Drop"
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:8
|
1732 |
+
msgid ""
|
1733 |
+
"Don't worry about the order in which you create your custom fields, you can "
|
1734 |
+
"always reorder them."
|
1735 |
+
msgstr ""
|
1736 |
+
|
1737 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
|
1738 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
|
1739 |
+
#, fuzzy
|
1740 |
+
msgid "Title"
|
1741 |
+
msgstr "Blanc"
|
1742 |
+
|
1743 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
|
1744 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
|
1745 |
+
msgid "Type"
|
1746 |
+
msgstr ""
|
1747 |
+
|
1748 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
|
1749 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
|
1750 |
+
msgid "Meta-Key"
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
|
1754 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
|
1755 |
+
msgid "ID"
|
1756 |
+
msgstr ""
|
1757 |
+
|
1758 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
|
1759 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
|
1760 |
+
msgid "Req'd"
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
|
1764 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
|
1765 |
+
msgid "Add Option"
|
1766 |
+
msgstr ""
|
1767 |
+
|
1768 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
|
1769 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
|
1770 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
|
1771 |
+
msgid "Edit"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
|
1775 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
|
1776 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
|
1777 |
+
#, fuzzy
|
1778 |
+
msgid "Delete"
|
1779 |
+
msgstr "Défaut"
|
1780 |
+
|
1781 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
|
1782 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:84
|
1783 |
+
msgid "Title:"
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
|
1787 |
+
msgid "The title of the item."
|
1788 |
+
msgstr ""
|
1789 |
+
|
1790 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
|
1791 |
+
msgid "Meta-Key:"
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:110
|
1795 |
+
msgid ""
|
1796 |
+
"Use this in conjuction with WordPress functions to display the value in the "
|
1797 |
+
"page of your choosing. Auto-completed but editable - in this case it must be "
|
1798 |
+
"uniqe.<br/>Changing this might take long in case of a very big user-count."
|
1799 |
+
msgstr ""
|
1800 |
+
|
1801 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
|
1802 |
+
msgid "Option Type:"
|
1803 |
+
msgstr ""
|
1804 |
+
|
1805 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
|
1806 |
+
msgid "Choose one of the supported option types."
|
1807 |
+
msgstr ""
|
1808 |
+
|
1809 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
|
1810 |
+
msgid "Description:"
|
1811 |
+
msgstr ""
|
1812 |
+
|
1813 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:153
|
1814 |
+
msgid ""
|
1815 |
+
"Enter a detailed description of the option for end users to read(optional)."
|
1816 |
+
msgstr ""
|
1817 |
+
|
1818 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1819 |
+
msgid "You can only insert links using standard HTML syntax:"
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1823 |
+
msgid "address"
|
1824 |
+
msgstr ""
|
1825 |
+
|
1826 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
|
1827 |
+
#, fuzzy
|
1828 |
+
msgid "name"
|
1829 |
+
msgstr "Nom"
|
1830 |
+
|
1831 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
|
1832 |
+
msgid "Options:"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
|
1836 |
+
msgid ""
|
1837 |
+
"Enter a comma separated list of options. For example, you could have \"One,"
|
1838 |
+
"Two,Three\" or just a single value like \"Yes\" for a checkbox."
|
1839 |
+
msgstr ""
|
1840 |
+
|
1841 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
|
1842 |
+
msgid "ID:"
|
1843 |
+
msgstr ""
|
1844 |
+
|
1845 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
|
1846 |
+
msgid ""
|
1847 |
+
"This is the internal ID for this input. You can use this in conjuction with "
|
1848 |
+
"filters to target this element if needed.<br/>Can't be edited."
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
|
1852 |
+
#, fuzzy
|
1853 |
+
msgid "Required:"
|
1854 |
+
msgstr "(requis)"
|
1855 |
+
|
1856 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
|
1857 |
+
msgid "Check this box to make this field required."
|
1858 |
+
msgstr ""
|
1859 |
+
|
1860 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:193
|
1861 |
+
msgid "Cancel"
|
1862 |
+
msgstr ""
|
1863 |
+
|
1864 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:194
|
1865 |
+
msgid "Save"
|
1866 |
+
msgstr ""
|
1867 |
+
|
1868 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
|
1869 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
|
1870 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:235
|
1871 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:300
|
1872 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:365
|
1873 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:431
|
1874 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:485
|
1875 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:533
|
1876 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:596
|
1877 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:705
|
1878 |
+
msgid ""
|
1879 |
+
"This field wasn't updated because you entered and empty string (It was "
|
1880 |
+
"marked as required by the administrator)"
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:574
|
1884 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:606
|
1885 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:680
|
1886 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:711
|
1887 |
+
msgid "max upload size"
|
1888 |
+
msgstr ""
|
1889 |
+
|
1890 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:580
|
1891 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:616
|
1892 |
+
msgid "Are you sure you want to delete this attachment?"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1896 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1897 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:690
|
1898 |
+
msgid "Click to delete the current attachment"
|
1899 |
+
msgstr ""
|
1900 |
+
|
1901 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1902 |
+
msgid ""
|
1903 |
+
"The attachment can't be deleted (It was marked as required by the "
|
1904 |
+
"administrator)"
|
1905 |
+
msgstr ""
|
1906 |
+
|
1907 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1908 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1909 |
+
msgid "Current avatar"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
|
1913 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
|
1914 |
+
msgid "No uploaded avatar"
|
1915 |
+
msgstr ""
|
1916 |
+
|
1917 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
|
1918 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
|
1919 |
+
msgid "Are you sure you want to delete this avatar?"
|
1920 |
+
msgstr ""
|
1921 |
+
|
1922 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
|
1923 |
+
msgid ""
|
1924 |
+
"The avatar image can't be deleted (It was marked as required by the "
|
1925 |
+
"administrator)."
|
1926 |
+
msgstr ""
|
1927 |
+
|
1928 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1929 |
+
msgid "Click to see the current avatar"
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
|
1933 |
+
msgid "Click to delete the avatar"
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
|
1937 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
|
1941 |
+
#, fuzzy
|
1942 |
+
msgid "Profile Builder Login Widget"
|
1943 |
+
msgstr "Profile Builder"
|
1944 |
+
|
1945 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:44
|
1946 |
+
msgid "Don't have an account?"
|
1947 |
+
msgstr ""
|
1948 |
+
|
1949 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1950 |
+
#, fuzzy
|
1951 |
+
msgid "Lost Your Password?"
|
1952 |
+
msgstr "Mot de passe oublié ?"
|
1953 |
+
|
1954 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:80
|
1955 |
+
#, fuzzy
|
1956 |
+
msgid "Login"
|
1957 |
+
msgstr "Connexion"
|
1958 |
+
|
1959 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1960 |
+
msgid "After login redirect URL:"
|
1961 |
+
msgstr ""
|
1962 |
+
|
1963 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1964 |
+
msgid "Register page URL (optional)"
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1968 |
+
msgid "Password Recovery page URL (optional)"
|
1969 |
+
msgstr ""
|
1970 |
+
|
1971 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1972 |
+
msgid "The user-validation has failed - the avatar was not deleted!"
|
1973 |
+
msgstr ""
|
1974 |
+
|
1975 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:25
|
1976 |
+
msgid "The user-validation has failed - the attachment was not deleted!"
|
1977 |
+
msgstr ""
|
1978 |
+
|
1979 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:473
|
1980 |
+
#, php-format
|
1981 |
+
msgid ""
|
1982 |
+
"Your <strong>Profile Builder Pro</strong> serial number is invalid or "
|
1983 |
+
"missing. Please %sregister your copy%s of Profile Builder to receive access "
|
1984 |
+
"to automatic updates and support. Need a license key? %sPurchase one now%s "
|
1985 |
+
"%sDismiss%s"
|
1986 |
+
msgstr ""
|
1987 |
+
|
1988 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:477
|
1989 |
+
#, php-format
|
1990 |
+
msgid ""
|
1991 |
+
"Your <strong>Profile Builder Pro</strong> 1 year licence has expired. Please "
|
1992 |
+
"%sRenew Your Licence%s to receive access to automatic updates and priority "
|
1993 |
+
"support. %sPurchase one now%s %sDismiss%s"
|
1994 |
+
msgstr ""
|
1995 |
+
|
1996 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
1997 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:10
|
1998 |
+
msgid "Register your version of Profile Builder Pro"
|
1999 |
+
msgstr ""
|
2000 |
+
|
2001 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:11
|
2002 |
+
msgid ""
|
2003 |
+
"Now that you acquired a copy of Profile Builder Pro, you should take the "
|
2004 |
+
"time and register it with the serial number you received in the e-mail."
|
2005 |
+
msgstr ""
|
2006 |
+
|
2007 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:12
|
2008 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:53
|
2009 |
+
msgid ""
|
2010 |
+
"If you register this version of Profile Builder, you'll receive information "
|
2011 |
+
"regarding eventual upgrades, patches, and - if needed - technical support."
|
2012 |
+
msgstr ""
|
2013 |
+
|
2014 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:13
|
2015 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:54
|
2016 |
+
msgid "Serial Number:"
|
2017 |
+
msgstr ""
|
2018 |
+
|
2019 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
|
2020 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
|
2021 |
+
#, fuzzy
|
2022 |
+
msgid "The serial number was successfully validated!"
|
2023 |
+
msgstr "L'avatar a bien été supprimé."
|
2024 |
+
|
2025 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
|
2026 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
|
2027 |
+
#, fuzzy
|
2028 |
+
msgid "The serial number entered couldn't be validated!"
|
2029 |
+
msgstr "L'avatar a bien été supprimé."
|
2030 |
+
|
2031 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
|
2032 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
|
2033 |
+
msgid "The serial number couldn't be validated because it is no longer valid!"
|
2034 |
+
msgstr ""
|
2035 |
+
|
2036 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:23
|
2037 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:64
|
2038 |
+
msgid ""
|
2039 |
+
"The serial number couldn't be validated because process timed out. This is "
|
2040 |
+
"possible due to the server being down. Please try again later!"
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:29
|
2044 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2045 |
+
msgstr ""
|
2046 |
+
|
2047 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:50
|
2048 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:51
|
2049 |
+
msgid "Register your version of Profile Builder Hobbyist"
|
2050 |
+
msgstr ""
|
2051 |
+
|
2052 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:52
|
2053 |
+
msgid ""
|
2054 |
+
"Now that you acquired a copy of Profile Builder Hobbyist, you should take "
|
2055 |
+
"the time and register it with the serial number you received in the e-mail."
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
|
2059 |
+
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2060 |
+
msgstr ""
|
2061 |
+
|
2062 |
+
#~ msgid "Plugin Layout"
|
2063 |
+
#~ msgstr "Apparence du Plugin"
|
2064 |
+
|
2065 |
+
#~ msgid "You didn't complete both password fields. <br/> The password was "
|
2066 |
+
#~ msgstr ""
|
2067 |
+
#~ "Vous n'avez pas renseigné les champs de mots de passe. <br/> Les mots de "
|
2068 |
+
#~ "passe étaient "
|
2069 |
+
|
2070 |
+
#~ msgid ""
|
2071 |
+
#~ "There was an error while trying to upload your avatar picture.<br/"
|
2072 |
+
#~ ">Possible cause: size/incorrect file-type.<br/>The avatar was "
|
2073 |
+
#~ msgstr ""
|
2074 |
+
#~ "Une erreur est survenue durant le téléversement de l'image.<br/>Cause "
|
2075 |
+
#~ "possible: taille/type de fichier incorrect.<br/>L'avatar était "
|
2076 |
+
|
2077 |
+
#~ msgid ""
|
2078 |
+
#~ "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't "
|
2079 |
+
#~ "need another account."
|
2080 |
+
#~ msgstr ""
|
2081 |
+
#~ "Vous êtes connecté(e) en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</"
|
2082 |
+
#~ "a>. Vous n'avez pas besoin de créer un autre compte."
|
translation/profilebuilder-hu_HU.mo
CHANGED
Binary file
|
translation/profilebuilder-hu_HU.po
CHANGED
@@ -1,1875 +1,2064 @@
|
|
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
|
18 |
-
msgid "Profile Builder"
|
19 |
-
msgstr "Profile Builder"
|
20 |
-
|
21 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:26
|
22 |
-
msgid "Welcome to Profile Builder!"
|
23 |
-
msgstr "Üdv.a Profile Buliderben!"
|
24 |
-
|
25 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:28
|
26 |
-
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."
|
27 |
-
msgstr "testreszabhatod a weboldaladat egy új menü létrehozásával, amely minden felhasználónak biztosítja az adatai rugalmasabb szerkesztését."
|
28 |
-
|
29 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:29
|
30 |
-
msgid "Also, grants users with administrator rights to customize basic fields or to add new ones."
|
31 |
-
msgstr "Az adminisztrátor jogú felhasználók testreszabhatják az alap mezőket, vagy újakat adhatnak hozzá"
|
32 |
-
|
33 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:30
|
34 |
-
msgid "To achieve this, just create a new page, and give it an intuitive name(e.g. Edit Profile)."
|
35 |
-
msgstr "Ennek elérése érdekében hozz létre egy új oldalt, és adj neki egy nevet (pl. Profil szerkesztése)"
|
36 |
-
|
37 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:31
|
38 |
-
msgid "Now all you need to do is add the following shortcode(for the previous example): "
|
39 |
-
msgstr "Most mindössze annyit kell tennie, hogy a következő rövidkódot beilleszti (az előző példában):"
|
40 |
-
|
41 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:32
|
42 |
-
msgid "Publish your page and you are ready to go!"
|
43 |
-
msgstr "Az oldal közzététele és már mehet is!"
|
44 |
-
|
45 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:33
|
46 |
-
msgid "You can use the following shortcodes:"
|
47 |
-
msgstr "A következő rövidkódokat használhatod:"
|
48 |
-
|
49 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:34
|
50 |
-
msgid "for a log-in form."
|
51 |
-
msgstr "bejelentkezési űrlaphoz."
|
52 |
-
|
53 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:35
|
54 |
-
msgid "to add a registration form."
|
55 |
-
msgstr "regisztrációs űrlap hozzáadásához."
|
56 |
-
|
57 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:36
|
58 |
-
msgid "to grant users a front-end acces to their personal information(requires user to be logged in)."
|
59 |
-
msgstr "a felhasználóknak lehetőséget biztosít a személyes adataik eléréséhez (bejelentkezés szükséges)."
|
60 |
-
|
61 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:37
|
62 |
-
#, fuzzy
|
63 |
-
msgid "to add a password recovery form."
|
64 |
-
msgstr "regisztrációs űrlap hozzáadásához."
|
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 "Az adminisztrátor jogú felhasználók ezeket a funkciókat is elérhetik:"
|
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 "Saját stíluslap használata a jelenlegi témából, vagy a következő bővítménybe épített stíluslapok: szokásos, fehér, vagy fekete."
|
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 "Válaszd ki, hogy az admin sáv megjelenjen-e egy adott felhasználói csoportnak amely regisztrált az oldalra. "
|
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 "Válaszd ki, mely információs mezőket láthat/módosíthat a felhasználó. A rejtett mezők értéke változatlan marad."
|
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 "Egyéni mezők hozzáadása a meglévőkhöz, amit a következők közül lehet kiválasztani: heading, text, textarea, select, checkbox, radio, and/or upload."
|
85 |
-
|
86 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:44
|
87 |
-
msgid "add an avatar field."
|
88 |
-
msgstr "Avatar mező hozzáadása."
|
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:105
|
104 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/menu.file.php:161
|
105 |
-
msgid "NOTE:"
|
106 |
-
msgstr "MEGJEGYZÉS:"
|
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 "Ez a bővítmény csak hozzáad/eltávolít mezőket a felhasználó elől. "
|
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 "Az alap információs mezők továbbra is láthatóak (és módosíthatóak)"
|
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 "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 |
-
|
430 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:559
|
431 |
-
msgid "You must be logged in to edit your profile."
|
432 |
-
msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
|
433 |
-
|
434 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:569
|
435 |
-
msgid "The avatar was successfully deleted."
|
436 |
-
msgstr "Az avatar sikeresen törölve."
|
437 |
-
|
438 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
439 |
-
#, fuzzy
|
440 |
-
msgid "The attachment"
|
441 |
-
msgstr "A csatolmány \""
|
442 |
-
|
443 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
444 |
-
#, fuzzy
|
445 |
-
msgid "was successfully deleted."
|
446 |
-
msgstr "\" sikeresen törölve."
|
447 |
-
|
448 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:591
|
449 |
-
msgid "The changes have been successfully saved."
|
450 |
-
msgstr "A változások sikeresen mentve."
|
451 |
-
|
452 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
453 |
-
#, fuzzy
|
454 |
-
msgid "The email address you entered is already registered to a different user."
|
455 |
-
msgstr "Az email címmel, amit megadtál már egy másik felhasználó regisztrált. <br/> Az email cím"
|
456 |
-
|
457 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
458 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
459 |
-
msgid "The email address was"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
463 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
464 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
465 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
466 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
467 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
468 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
469 |
-
msgid "NOT"
|
470 |
-
msgstr "NEM"
|
471 |
-
|
472 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:598
|
473 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
474 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
475 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
476 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
477 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
478 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
479 |
-
#, fuzzy
|
480 |
-
msgid "updated along with the rest of the information."
|
481 |
-
msgstr "lett a többi információval együtt frissítve."
|
482 |
-
|
483 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:608
|
484 |
-
#, fuzzy
|
485 |
-
msgid "The email address you entered is invalid."
|
486 |
-
msgstr "Az email cím, amit megadtál érvénytelen. <br/> Ez az email cím"
|
487 |
-
|
488 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
489 |
-
#, fuzzy
|
490 |
-
msgid "The passwords you entered do not match."
|
491 |
-
msgstr "Az általad megadott jelszavak nem egyeznek <br/> A jelszó"
|
492 |
-
|
493 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:617
|
494 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
495 |
-
#, fuzzy
|
496 |
-
msgid "The password was"
|
497 |
-
msgstr "Új jelszó"
|
498 |
-
|
499 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:626
|
500 |
-
#, fuzzy
|
501 |
-
msgid "You didn't complete both password fields."
|
502 |
-
msgstr "Nem töltötted ki az egyik jelszó mezőt!"
|
503 |
-
|
504 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
505 |
-
msgid "Your profile was NOT updated!"
|
506 |
-
msgstr ""
|
507 |
-
|
508 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:642
|
509 |
-
#, fuzzy
|
510 |
-
msgid "There was an error while trying to upload the following attachments:"
|
511 |
-
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
512 |
-
|
513 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
514 |
-
#, fuzzy
|
515 |
-
msgid "Possible cause: the size was bigger than"
|
516 |
-
msgstr "<br/>Lehetséges okok: A mérete nagyobb volt, mint"
|
517 |
-
|
518 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
519 |
-
#, fuzzy
|
520 |
-
msgid "The listed attachements were"
|
521 |
-
msgstr "b.<br/>A felsorolt csatolmányok"
|
522 |
-
|
523 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
524 |
-
#, fuzzy
|
525 |
-
msgid "There was an error while trying to upload your avatar picture."
|
526 |
-
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
527 |
-
|
528 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
529 |
-
msgid "Possible cause: size/incorrect file-type."
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
533 |
-
msgid "The avatar was"
|
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 |
-
|
547 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
548 |
-
msgid "This file was"
|
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 |
-
|
556 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:699
|
557 |
-
#, fuzzy
|
558 |
-
msgid "Usernames cannot be changed."
|
559 |
-
msgstr "A Felhasználónév nem változtatható."
|
560 |
-
|
561 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:708
|
562 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:728
|
563 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:748
|
564 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:768
|
565 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:818
|
566 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:839
|
567 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:857
|
568 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:875
|
569 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:893
|
570 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:914
|
571 |
-
msgid "This field is marked as required by the administrator."
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:711
|
575 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:731
|
576 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:751
|
577 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:771
|
578 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:821
|
579 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:841
|
580 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:859
|
581 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:877
|
582 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:895
|
583 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:916
|
584 |
-
msgid "This field wasn't updated because you entered and empty string (It was marked as required by the administrator."
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:779
|
588 |
-
msgid "Display name publicly as"
|
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 |
-
|
596 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:830
|
597 |
-
msgid "(required)"
|
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 |
-
|
612 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:968
|
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"
|
804 |
-
"\n"
|
805 |
-
"%s\n"
|
806 |
-
"\n"
|
807 |
-
"After you activate, you will receive *another email* with your login.\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 |
-
|
1039 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
|
1040 |
-
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 \""
|
1041 |
-
msgstr ""
|
1042 |
-
|
1043 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
|
1044 |
-
msgid "heading"
|
1045 |
-
msgstr ""
|
1046 |
-
|
1047 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:8
|
1048 |
-
msgid "\" custom field."
|
1049 |
-
msgstr ""
|
1050 |
-
|
1051 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1052 |
-
msgid "All of the fields can be sorted and rearranged to your liking with"
|
1053 |
-
msgstr ""
|
1054 |
-
|
1055 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1056 |
-
msgid "Drag"
|
1057 |
-
msgstr ""
|
1058 |
-
|
1059 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1060 |
-
msgid "Drop"
|
1061 |
-
msgstr ""
|
1062 |
-
|
1063 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:9
|
1064 |
-
msgid "Don't worry about the order in which you create your custom fields, you can always reorder them."
|
1065 |
-
msgstr ""
|
1066 |
-
|
1067 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:13
|
1068 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:23
|
1069 |
-
#, fuzzy
|
1070 |
-
msgid "Title"
|
1071 |
-
msgstr "Fehér"
|
1072 |
-
|
1073 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:14
|
1074 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:24
|
1075 |
-
msgid "Type"
|
1076 |
-
msgstr ""
|
1077 |
-
|
1078 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:15
|
1079 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:25
|
1080 |
-
msgid "Meta-Key"
|
1081 |
-
msgstr ""
|
1082 |
-
|
1083 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:16
|
1084 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:26
|
1085 |
-
msgid "ID"
|
1086 |
-
msgstr ""
|
1087 |
-
|
1088 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:17
|
1089 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:27
|
1090 |
-
msgid "Req'd"
|
1091 |
-
msgstr ""
|
1092 |
-
|
1093 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:18
|
1094 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:28
|
1095 |
-
msgid "Add Option"
|
1096 |
-
msgstr ""
|
1097 |
-
|
1098 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:40
|
1099 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:73
|
1100 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:206
|
1101 |
-
msgid "Edit"
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:41
|
1105 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:74
|
1106 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:207
|
1107 |
-
#, fuzzy
|
1108 |
-
msgid "Delete"
|
1109 |
-
msgstr "Szokásos"
|
1110 |
-
|
1111 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
|
1112 |
-
msgid "Title:"
|
1113 |
-
msgstr ""
|
1114 |
-
|
1115 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:101
|
1116 |
-
msgid "The title of the item."
|
1117 |
-
msgstr ""
|
1118 |
-
|
1119 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
|
1120 |
-
msgid "Meta-Key:"
|
1121 |
-
msgstr ""
|
1122 |
-
|
1123 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:111
|
1124 |
-
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."
|
1125 |
-
msgstr ""
|
1126 |
-
|
1127 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
|
1128 |
-
msgid "Option Type:"
|
1129 |
-
msgstr ""
|
1130 |
-
|
1131 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:144
|
1132 |
-
msgid "Choose one of the supported option types."
|
1133 |
-
msgstr ""
|
1134 |
-
|
1135 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
|
1136 |
-
msgid "Description:"
|
1137 |
-
msgstr ""
|
1138 |
-
|
1139 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:154
|
1140 |
-
msgid "Enter a detailed description of the option for end users to read(optional)."
|
1141 |
-
msgstr ""
|
1142 |
-
|
1143 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
|
1144 |
-
msgid "You can only insert links using standard HTML syntax:"
|
1145 |
-
msgstr ""
|
1146 |
-
|
1147 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
|
1148 |
-
msgid "address"
|
1149 |
-
msgstr ""
|
1150 |
-
|
1151 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:155
|
1152 |
-
#, fuzzy
|
1153 |
-
msgid "name"
|
1154 |
-
msgstr "Név"
|
1155 |
-
|
1156 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
|
1157 |
-
msgid "Options:"
|
1158 |
-
msgstr ""
|
1159 |
-
|
1160 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:165
|
1161 |
-
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."
|
1162 |
-
msgstr ""
|
1163 |
-
|
1164 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
|
1165 |
-
msgid "ID:"
|
1166 |
-
msgstr ""
|
1167 |
-
|
1168 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:176
|
1169 |
-
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."
|
1170 |
-
msgstr ""
|
1171 |
-
|
1172 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
|
1173 |
-
#, fuzzy
|
1174 |
-
msgid "Required:"
|
1175 |
-
msgstr "(kötelező)"
|
1176 |
-
|
1177 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:187
|
1178 |
-
msgid "Check this box to make this field required."
|
1179 |
-
msgstr ""
|
1180 |
-
|
1181 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:194
|
1182 |
-
msgid "Cancel"
|
1183 |
-
msgstr ""
|
1184 |
-
|
1185 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/premium.php:195
|
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 |
-
|
1228 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
|
1229 |
-
msgid "You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1230 |
-
msgstr ""
|
1231 |
-
|
1232 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:4
|
1233 |
-
msgid "You can find it in Profile Builder's menu."
|
1234 |
-
msgstr ""
|
1235 |
-
|
1236 |
-
#: C:\Users\Gabi\Desktop\test\profile-builder-pro/premium/addon/addon.functions.php:29
|
1237 |
-
#, fuzzy
|
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:\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|