Version Description
Added a fix (suggested by http://wordpress.org/support/profile/maximinime) regarding the admin bar not displaying properly in some instances.
Download this release
Release Info
Developer | barinagabriel |
Plugin | User registration & user profile – Profile Builder |
Version | 1.1.38 |
Comparing to | |
See all releases |
Code changes from version 1.1.37 to 1.1.38
- functions/admin.bar.php +10 -15
- functions/functions.load.php +15 -16
- index.php +2 -2
- readme.txt +4 -1
- translation/profilebuilder-cs_CZ.mo +0 -0
- translation/profilebuilder-cs_CZ.po +487 -488
- translation/profilebuilder-de_DE.mo +0 -0
- translation/profilebuilder-de_DE.po +560 -484
- translation/profilebuilder-en_US.mo +0 -0
- translation/profilebuilder-en_US.po +448 -466
- translation/profilebuilder-es_ES.mo +0 -0
- translation/profilebuilder-es_ES.po +476 -482
- translation/profilebuilder-fr_FR.mo +0 -0
- translation/profilebuilder-fr_FR.po +476 -481
- translation/profilebuilder-hu_HU.mo +0 -0
- translation/profilebuilder-hu_HU.po +475 -481
- translation/profilebuilder-it_IT.mo +0 -0
- translation/profilebuilder-it_IT.po +478 -481
- translation/profilebuilder-nb_NO.mo +0 -0
- translation/profilebuilder-nb_NO.po +475 -482
- translation/profilebuilder-nl_NL.mo +0 -0
- translation/profilebuilder-nl_NL.po +540 -498
- translation/profilebuilder-pl_PL.mo +0 -0
- translation/profilebuilder-pl_PL.po +475 -482
- translation/profilebuilder-pt_BR.mo +0 -0
- translation/profilebuilder-pt_BR.po +715 -578
functions/admin.bar.php
CHANGED
@@ -21,27 +21,22 @@ function wppb_display_admin_settings(){
|
|
21 |
</thead>
|
22 |
<tbody>
|
23 |
<?php
|
24 |
-
foreach($
|
25 |
-
|
26 |
-
|
|
|
|
|
27 |
<td id="manage-columnCell">
|
28 |
-
<input type="radio" name="wppb_display_admin_settings['.$key.']" value="
|
29 |
-
<input type="radio" name="wppb_display_admin_settings['.$key.']" value="
|
30 |
-
|
|
|
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">
|
21 |
</thead>
|
22 |
<tbody>
|
23 |
<?php
|
24 |
+
foreach ($wp_roles->roles as $role) {
|
25 |
+
$key = $role['name'];
|
26 |
+
$setting_exists = !empty($wppb_showAdminBar[$key]);
|
27 |
+
echo'<tr>
|
28 |
+
<td id="manage-columnCell">'.$key.'</td>
|
29 |
<td id="manage-columnCell">
|
30 |
+
<input type="radio" name="wppb_display_admin_settings['.$key.']" value="default" ';if (!$setting_exists || $wppb_showAdminBar[$key] == 'default') echo ' checked';echo'/><font size="1">'; _e('Default', 'profilebuilder'); echo'</font><span style="padding-left:20px"></span>
|
31 |
+
<input type="radio" name="wppb_display_admin_settings['.$key.']" value="show"';if ($setting_exists && $wppb_showAdminBar[$key] == 'show') echo ' checked';echo'/><font size="1">'; _e('Show', 'profilebuilder'); echo'</font><span style="padding-left:20px"></span>
|
32 |
+
<input type="radio" name="wppb_display_admin_settings['.$key.']" value="hide"';if ($setting_exists && $wppb_showAdminBar[$key] == 'hide') echo ' checked';echo'/><font size="1">'; _e('Hide', 'profilebuilder'); echo'</font>
|
33 |
+
</td>
|
34 |
</tr>';
|
35 |
}
|
36 |
?>
|
37 |
|
38 |
</table>
|
39 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
<div align="right">
|
41 |
<input type="hidden" name="action" value="update" />
|
42 |
<p class="submit">
|
functions/functions.load.php
CHANGED
@@ -89,33 +89,32 @@ function wppb_add_plugin_stylesheet() {
|
|
89 |
|
90 |
function wppb_show_admin_bar($content){
|
91 |
global $current_user;
|
92 |
-
|
93 |
-
|
94 |
-
$userRole = '';
|
95 |
$admintSettingsPresent = get_option('wppb_display_admin_settings','not_found');
|
|
|
|
|
96 |
|
97 |
-
|
98 |
-
|
|
|
|
|
99 |
|
100 |
-
$
|
|
|
|
|
101 |
|
102 |
-
|
103 |
-
$getSettings = $admintSettingsPresent[$userRole];
|
104 |
-
if ($getSettings == 'show')
|
105 |
return true;
|
106 |
|
107 |
-
|
108 |
return false;
|
109 |
-
|
110 |
-
}else
|
111 |
-
return true;
|
112 |
}
|
113 |
|
114 |
-
|
115 |
-
return true;
|
116 |
-
|
117 |
}
|
118 |
|
|
|
119 |
if(!function_exists('wppb_curpageurl')){
|
120 |
function wppb_curpageurl() {
|
121 |
$pageURL = 'http';
|
89 |
|
90 |
function wppb_show_admin_bar($content){
|
91 |
global $current_user;
|
92 |
+
|
|
|
|
|
93 |
$admintSettingsPresent = get_option('wppb_display_admin_settings','not_found');
|
94 |
+
|
95 |
+
if ($admintSettingsPresent != 'not_found' && $current_user->ID)
|
96 |
|
97 |
+
foreach ($current_user->roles as $role_key) {
|
98 |
+
|
99 |
+
if (empty($GLOBALS['wp_roles']->roles[$role_key]))
|
100 |
+
continue;
|
101 |
|
102 |
+
$role = $GLOBALS['wp_roles']->roles[$role_key];
|
103 |
+
|
104 |
+
if (isset($admintSettingsPresent[$role['name']])) {
|
105 |
|
106 |
+
if ($admintSettingsPresent[$role['name']] == 'show')
|
|
|
|
|
107 |
return true;
|
108 |
|
109 |
+
if ($admintSettingsPresent[$role['name']] == 'hide')
|
110 |
return false;
|
111 |
+
}
|
|
|
|
|
112 |
}
|
113 |
|
114 |
+
return $content;
|
|
|
|
|
115 |
}
|
116 |
|
117 |
+
|
118 |
if(!function_exists('wppb_curpageurl')){
|
119 |
function wppb_curpageurl() {
|
120 |
$pageURL = 'http';
|
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.38
|
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.38' );
|
58 |
define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
59 |
define( 'WPPB_PLUGIN_URL', WP_PLUGIN_URL . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
60 |
define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', return_bytes( ini_get( 'upload_max_filesize') ) );
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ custom registration, custom registration form, custom registration page, extra u
|
|
7 |
front-end register, front-end registration, frontend edit profile, edit profile
|
8 |
Requires at least: 3.1
|
9 |
Tested up to: 3.5
|
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,9 @@ 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.37 =
|
97 |
Minor changes to the readme file.
|
98 |
|
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.38
|
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.38 =
|
97 |
+
Added a fix (suggested by http://wordpress.org/support/profile/maximinime) regarding the admin bar not displaying properly in some instances.
|
98 |
+
|
99 |
= 1.1.37 =
|
100 |
Minor changes to the readme file.
|
101 |
|
translation/profilebuilder-cs_CZ.mo
CHANGED
Binary file
|
translation/profilebuilder-cs_CZ.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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,198 +15,170 @@ msgstr ""
|
|
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:
|
19 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
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:
|
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:
|
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:
|
50 |
-
#, fuzzy
|
51 |
-
msgid "The attachment"
|
52 |
-
msgstr "
|
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:
|
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:
|
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:
|
74 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
80 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
81 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
82 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
83 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
91 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
92 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
93 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
94 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
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:
|
115 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
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:
|
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 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
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:
|
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:
|
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:
|
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:
|
164 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
170 |
-
|
171 |
-
msgid "
|
172 |
-
|
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:
|
180 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
186 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
187 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
201 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
202 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
203 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
204 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
205 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
206 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
207 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
208 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
209 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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
|
@@ -221,330 +193,323 @@ msgstr "Uživatelská jména nelze měnit."
|
|
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:
|
225 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
226 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
227 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
228 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
229 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
230 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
231 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
232 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
233 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
241 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
248 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
255 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
267 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
273 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
286 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
289 |
msgid "Website"
|
290 |
msgstr "Web"
|
291 |
|
292 |
# @ profilebuilder
|
293 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
294 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
301 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
308 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
315 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
321 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
334 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
335 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
336 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
342 |
msgid "Update"
|
343 |
msgstr "Aktualizovat"
|
344 |
|
345 |
# @ profilebuilder
|
346 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
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:
|
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:
|
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:
|
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:
|
369 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
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:
|
376 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
377 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
378 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
379 |
msgid "here"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
383 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
384 |
msgid "ERROR:"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
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:
|
393 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
394 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
395 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
396 |
msgid "Password"
|
397 |
msgstr "Heslo"
|
398 |
|
399 |
# @ profilebuilder
|
400 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
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:
|
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:
|
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:
|
415 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
416 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
417 |
msgid "ERROR"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
428 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
429 |
-
|
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 |
-
"
|
|
|
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:
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
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:
|
454 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
455 |
-
|
|
|
456 |
msgstr ""
|
457 |
|
458 |
# @ profilebuilder
|
459 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
460 |
-
|
461 |
-
|
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:
|
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:
|
472 |
msgid "Please check that you entered the correct email address."
|
473 |
msgstr ""
|
474 |
|
475 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
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:
|
485 |
#, fuzzy
|
486 |
msgid "Your password has been successfully changed!"
|
487 |
msgstr "Změny byly úspěšně uloženy."
|
488 |
|
489 |
-
|
490 |
-
|
491 |
-
|
|
|
|
|
492 |
|
493 |
# @ profilebuilder
|
494 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
495 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
501 |
-
|
502 |
-
msgid "
|
503 |
-
|
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:
|
515 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
521 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
527 |
msgid "Invalid key!"
|
528 |
msgstr ""
|
529 |
|
530 |
# @ profilebuilder
|
531 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
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:
|
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:
|
548 |
#, fuzzy
|
549 |
msgid "Get New Password"
|
550 |
msgstr "Nové heslo"
|
@@ -595,179 +560,171 @@ msgstr "Sériové číslo bylo úspěšně ověřeno! Děkujeme."
|
|
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:
|
599 |
-
|
|
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
619 |
-
|
620 |
-
|
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 |
-
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
669 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
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:
|
687 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
698 |
msgid "You are logged in as"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
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:
|
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:
|
732 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
771 |
msgid ""
|
772 |
"Users cannot currently register themselves, but you can manually create "
|
773 |
"users here."
|
@@ -775,53 +732,53 @@ 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:
|
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:
|
783 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
784 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
785 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
786 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
787 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
788 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
789 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
790 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
797 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
798 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
799 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
800 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
801 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
802 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
803 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
804 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
809 |
msgid "Anti-Spam"
|
810 |
msgstr ""
|
811 |
|
812 |
# @ profilebuilder
|
813 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
825 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
826 |
msgid "Register"
|
827 |
msgstr "Registrovat"
|
@@ -844,7 +801,13 @@ msgid "Visibility"
|
|
844 |
msgstr "Viditelnost"
|
845 |
|
846 |
# @ profilebuilder
|
847 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
@@ -861,7 +824,7 @@ msgid "Show"
|
|
861 |
msgstr "Zobrazit"
|
862 |
|
863 |
# @ profilebuilder
|
864 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
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
|
@@ -877,28 +840,14 @@ msgstr "Zobrazit"
|
|
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:
|
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:
|
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:
|
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"
|
@@ -1046,6 +995,12 @@ msgstr ""
|
|
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."
|
@@ -1100,7 +1055,13 @@ msgstr "Jméno:"
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
1104 |
msgid "Yes"
|
1105 |
msgstr ""
|
1106 |
|
@@ -1119,7 +1080,13 @@ msgstr ""
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
1123 |
#, fuzzy
|
1124 |
msgid "No"
|
1125 |
msgstr "Žádný"
|
@@ -1148,7 +1115,7 @@ msgstr "Nové heslo"
|
|
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:
|
1152 |
msgid "General Settings"
|
1153 |
msgstr ""
|
1154 |
|
@@ -1158,11 +1125,6 @@ msgstr ""
|
|
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"
|
@@ -1204,25 +1166,20 @@ msgid ""
|
|
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 <
|
1210 |
-
"
|
1211 |
-
"
|
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
|
1220 |
-
"
|
1221 |
-
"
|
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
|
@@ -1287,7 +1244,8 @@ 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:
|
|
|
1291 |
msgid "Custom Redirects"
|
1292 |
msgstr ""
|
1293 |
|
@@ -1297,78 +1255,80 @@ msgstr ""
|
|
1297 |
msgid "reCAPTCHA"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
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:
|
|
|
1311 |
msgid "Redirect"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1315 |
msgid "URL"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1319 |
msgid "After Registration:"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1323 |
msgid "After Login:"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
# @ profilebuilder
|
1327 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
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:
|
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:
|
1344 |
msgid "Requested WP Page"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1348 |
-
msgid "Default WP Login Page(*)"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1352 |
-
msgid "Default WP Logout Page(**)"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1356 |
msgid "Default WP Register Page"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1360 |
msgid "Default WP Dashboard (***)"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
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:
|
1372 |
msgid ""
|
1373 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1374 |
"manage options)."
|
@@ -1379,7 +1339,6 @@ 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 |
|
@@ -1425,7 +1384,7 @@ msgstr ""
|
|
1425 |
msgid "Private Key:"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:
|
1429 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1430 |
msgstr ""
|
1431 |
|
@@ -1441,167 +1400,178 @@ msgid ""
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
1449 |
msgid "Number of Users/Page: "
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1453 |
msgid "Default Sorting Order: "
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1457 |
msgid "\"All-Userlisting\" Template"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1461 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
1474 |
msgid "Avatar size: "
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1478 |
msgid "Insert \"Sort By\" Field:"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1482 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1483 |
msgid "Insert \"User-Meta\" Field:"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1487 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1488 |
msgid "Insert Extra Functions:"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1492 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1496 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1503 |
msgid "\"Single-Userlisting\" Template"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1513 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
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:
|
1532 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1533 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1534 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1535 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1536 |
msgid "Search Users by All Fields"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1544 |
msgid "Search"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
# @ profilebuilder
|
1548 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1555 |
#, fuzzy
|
1556 |
msgid "Email"
|
1557 |
msgstr "E-mail"
|
1558 |
|
1559 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1560 |
msgid "Sign-up Date"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
# @ profilebuilder
|
1564 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
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:
|
1582 |
msgid "Posts"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1590 |
msgid "More..."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
# @ profilebuilder
|
1594 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1595 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1603 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1604 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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
|
@@ -1610,19 +1580,19 @@ msgstr "Příloha \""
|
|
1610 |
msgid "Click to see the current attachment"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1619 |
#, fuzzy
|
1620 |
msgid "Back"
|
1621 |
msgstr "Černý"
|
1622 |
|
1623 |
# @ profilebuilder
|
1624 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1625 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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
|
@@ -1631,122 +1601,122 @@ msgstr "Černý"
|
|
1631 |
msgid "Current file"
|
1632 |
msgstr "Aktuální soubor"
|
1633 |
|
1634 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1641 |
msgid "No results found!"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1645 |
msgid "«« First"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1649 |
msgid "« Prev"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
# @ profilebuilder
|
1653 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
1666 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1672 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1678 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1684 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1685 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1686 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1691 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1697 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1704 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1709 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1714 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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
|
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
|
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
|
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:
|
1744 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1749 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1750 |
msgid "There was an error, please try again."
|
1751 |
msgstr ""
|
1752 |
|
@@ -1758,25 +1728,26 @@ msgstr ""
|
|
1758 |
msgid "the current user?"
|
1759 |
msgstr ""
|
1760 |
|
|
|
1761 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1762 |
-
|
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 |
-
|
|
|
1772 |
msgstr ""
|
1773 |
|
|
|
1774 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1775 |
-
|
1776 |
-
|
|
|
1777 |
|
1778 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1779 |
-
|
|
|
1780 |
msgstr ""
|
1781 |
|
1782 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
@@ -1808,11 +1779,8 @@ msgid "approve"
|
|
1808 |
msgstr ""
|
1809 |
|
1810 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1811 |
-
|
1812 |
-
|
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
|
@@ -2099,6 +2067,12 @@ msgstr "Profile Builder"
|
|
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
|
@@ -2112,15 +2086,15 @@ 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
|
@@ -2131,21 +2105,21 @@ msgstr ""
|
|
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:
|
2135 |
#, php-format
|
2136 |
msgid ""
|
2137 |
-
"Your <strong>Profile Builder
|
2138 |
-
"
|
2139 |
-
"
|
2140 |
-
"%sDismiss%s"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
2144 |
#, php-format
|
2145 |
msgid ""
|
2146 |
-
"Your <strong>Profile Builder
|
2147 |
-
"%sRenew Your Licence%s to receive access to automatic updates and
|
2148 |
-
"support. %sPurchase one now%s %sDismiss%s"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
# @ profilebuilder
|
@@ -2234,3 +2208,28 @@ msgstr ""
|
|
2234 |
#, fuzzy
|
2235 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2236 |
msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-10 11:29+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-10 11:29+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"
|
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:83
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"The information size you were trying to submit was larger than %1$sb!<br/"
|
23 |
+
">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
|
24 |
+
"it was also larger than %2$sb no additional information is available.<br/"
|
25 |
+
">The user was NOT created!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
# @ profilebuilder
|
29 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
|
30 |
msgid "You must be logged in to edit your profile."
|
31 |
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
32 |
|
33 |
# @ profilebuilder
|
34 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
|
35 |
msgid "The avatar was successfully deleted."
|
36 |
msgstr "Avatar byl úspěšně odstraněn."
|
37 |
|
38 |
# @ profilebuilder
|
39 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
|
40 |
+
#, fuzzy, php-format
|
41 |
+
msgid "The attachment \"%1$s\" was successfully deleted."
|
42 |
+
msgstr "Avatar byl úspěšně odstraněn."
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
# @ profilebuilder
|
45 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
|
46 |
msgid "The changes have been successfully saved."
|
47 |
msgstr "Změny byly úspěšně uloženy."
|
48 |
|
49 |
# @ profilebuilder
|
50 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
51 |
#, fuzzy
|
52 |
msgid ""
|
53 |
"The email address you entered is already registered to a different user."
|
54 |
msgstr ""
|
55 |
"Zadaný e-mail má již zaregistrován jiný uživatel. <br/> E-mailová adresa"
|
56 |
|
57 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
58 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
59 |
msgid "The email address was"
|
60 |
msgstr ""
|
61 |
|
62 |
# @ profilebuilder
|
63 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
64 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
65 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
67 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
68 |
msgid "NOT"
|
69 |
msgstr "NEBYLA"
|
70 |
|
71 |
# @ profilebuilder
|
72 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
73 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
74 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
76 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
77 |
#, fuzzy
|
78 |
msgid "updated along with the rest of the information."
|
79 |
msgstr " aktualizována spolu s ostatními informacemi."
|
80 |
|
81 |
# @ profilebuilder
|
82 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
83 |
#, fuzzy
|
84 |
msgid "The email address you entered is invalid."
|
85 |
msgstr "Zadaný e-mail není platný. <br/> Adresa "
|
86 |
|
87 |
# @ profilebuilder
|
88 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
89 |
#, fuzzy
|
90 |
msgid "The passwords you entered do not match."
|
91 |
msgstr "Zadaná hesla se neshodují. <br/> Zadané heslo "
|
92 |
|
93 |
# @ profilebuilder
|
94 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
95 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
96 |
#, fuzzy
|
97 |
msgid "The password was"
|
98 |
msgstr "Nové heslo"
|
99 |
|
100 |
# @ profilebuilder
|
101 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
102 |
#, fuzzy
|
103 |
msgid "You didn't complete both password fields."
|
104 |
msgstr "Nebyla vyplněna obě pole hesla."
|
105 |
|
106 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
|
107 |
msgid "Your profile was NOT updated!"
|
108 |
msgstr ""
|
109 |
|
110 |
# @ profilebuilder
|
111 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
|
112 |
#, fuzzy
|
113 |
msgid "There was an error while trying to upload the following attachments:"
|
114 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
115 |
|
116 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
117 |
+
#, php-format
|
118 |
+
msgid ""
|
119 |
+
"Possible cause: the size was bigger than %1$sb. The listed attachements were "
|
120 |
+
"%2$sNOT%3$s updated along with the rest of the information."
|
121 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
122 |
|
123 |
# @ profilebuilder
|
124 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
125 |
#, fuzzy
|
126 |
msgid "There was an error while trying to upload your avatar picture."
|
127 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
128 |
|
129 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
130 |
msgid "Possible cause: size/incorrect file-type."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
134 |
msgid "The avatar was"
|
135 |
msgstr ""
|
136 |
|
137 |
# @ profilebuilder
|
138 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
|
139 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:897
|
140 |
#, fuzzy
|
141 |
msgid "There was an error while trying to upload the following attachment(s)"
|
142 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
143 |
|
144 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
|
145 |
+
#, php-format
|
146 |
+
msgid ""
|
147 |
+
"Only files with the following extension(s) can be uploaded: %1$s<br/>This "
|
148 |
+
"file was %2$sNOT%3$s updated along with the rest of the information."
|
|
|
|
|
149 |
msgstr ""
|
150 |
|
151 |
# @ profilebuilder
|
152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
|
153 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1277
|
154 |
msgid "Name"
|
155 |
msgstr "Jméno"
|
156 |
|
157 |
# @ profilebuilder
|
158 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
|
159 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
|
160 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1298
|
|
|
161 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
162 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
|
163 |
msgid "Username"
|
164 |
msgstr "Uživatelské jméno"
|
165 |
|
166 |
# @ default
|
167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
|
168 |
#, fuzzy
|
169 |
msgid "Usernames cannot be changed."
|
170 |
msgstr "Uživatelská jména nelze měnit."
|
171 |
|
172 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
|
173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
|
174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:726
|
175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:746
|
176 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:796
|
177 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:817
|
178 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:835
|
179 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:853
|
180 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:871
|
181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:892
|
182 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
183 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
184 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
193 |
msgid "This field is marked as required by the administrator."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
|
197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
|
198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:729
|
199 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:749
|
200 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
|
201 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
|
202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
|
203 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:855
|
204 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
|
205 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
|
206 |
msgid ""
|
207 |
"This field wasn't updated because you entered and empty string (It was "
|
208 |
"marked as required by the administrator."
|
209 |
msgstr ""
|
210 |
|
211 |
# @ profilebuilder
|
212 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
|
213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1322
|
214 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
215 |
msgid "First Name"
|
216 |
msgstr "Křestní jméno"
|
217 |
|
218 |
# @ profilebuilder
|
219 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
|
220 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1346
|
221 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
222 |
msgid "Last Name"
|
223 |
msgstr "Příjmení"
|
224 |
|
225 |
# @ profilebuilder
|
226 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
|
227 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1370
|
228 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
229 |
msgid "Nickname"
|
230 |
msgstr "Přezdívka"
|
231 |
|
232 |
# @ profilebuilder
|
233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:757
|
234 |
msgid "Display name publicly as"
|
235 |
msgstr "Veřejně zobrazovat jako"
|
236 |
|
237 |
# @ profilebuilder
|
238 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
|
239 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1376
|
240 |
msgid "Contact Info"
|
241 |
msgstr "Kontaktní informace"
|
242 |
|
243 |
# @ profilebuilder
|
244 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
|
245 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1397
|
|
|
246 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
247 |
msgid "E-mail"
|
248 |
msgstr "E-mail"
|
249 |
|
250 |
# @ profilebuilder
|
251 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
|
252 |
msgid "(required)"
|
253 |
msgstr "(vyžadováno)"
|
254 |
|
255 |
# @ profilebuilder
|
256 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
|
257 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1421
|
258 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
259 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
|
260 |
msgid "Website"
|
261 |
msgstr "Web"
|
262 |
|
263 |
# @ profilebuilder
|
264 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
|
265 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1445
|
266 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
267 |
msgid "AIM"
|
268 |
msgstr "AIM (AOL Instant Messenger)"
|
269 |
|
270 |
# @ profilebuilder
|
271 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
|
272 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1469
|
273 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
274 |
msgid "Yahoo IM"
|
275 |
msgstr "Yahoo IM"
|
276 |
|
277 |
# @ profilebuilder
|
278 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
|
279 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1493
|
280 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
281 |
msgid "Jabber / Google Talk"
|
282 |
msgstr "Jabber / Google Talk"
|
283 |
|
284 |
# @ profilebuilder
|
285 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
|
286 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1499
|
287 |
msgid "About Yourself"
|
288 |
msgstr "O vás"
|
289 |
|
290 |
# @ profilebuilder
|
291 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
|
292 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1520
|
293 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
294 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
|
295 |
msgid "Biographical Info"
|
296 |
msgstr "Osobní informace"
|
297 |
|
298 |
# @ profilebuilder
|
299 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
|
300 |
msgid "New Password"
|
301 |
msgstr "Nové heslo"
|
302 |
|
303 |
# @ profilebuilder
|
304 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
|
305 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
|
306 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
|
307 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
308 |
msgid "Repeat Password"
|
309 |
msgstr "Heslo ještě jednou"
|
310 |
|
311 |
# @ profilebuilder
|
312 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
|
313 |
msgid "Update"
|
314 |
msgstr "Aktualizovat"
|
315 |
|
316 |
# @ profilebuilder
|
317 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
318 |
+
#, fuzzy, php-format
|
319 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
320 |
msgstr "Jste přihlášeni jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
321 |
|
322 |
# @ profilebuilder
|
323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
324 |
msgid "Log out of this account"
|
325 |
msgstr "Odhlásit se"
|
326 |
|
327 |
# @ profilebuilder
|
328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
329 |
#, fuzzy
|
330 |
msgid "Log out"
|
331 |
msgstr "Odhlásit se »"
|
332 |
|
333 |
# @ profilebuilder
|
334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
|
335 |
+
#, fuzzy, php-format
|
336 |
+
msgid "You have successfully logged in as %1$s"
|
337 |
msgstr "Úspěšné přihlášení jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
338 |
|
339 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
340 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
341 |
+
#, php-format
|
342 |
msgid ""
|
343 |
"You will soon be redirected automatically. If you see this page for more "
|
344 |
+
"than 1 second, please click %1$s"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
348 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
349 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
350 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
351 |
msgid "here"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
355 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
356 |
msgid "ERROR:"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
360 |
msgid "The username field is empty"
|
361 |
msgstr ""
|
362 |
|
363 |
# @ profilebuilder
|
364 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
|
365 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
|
366 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
|
367 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1553
|
368 |
msgid "Password"
|
369 |
msgstr "Heslo"
|
370 |
|
371 |
# @ profilebuilder
|
372 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
|
373 |
msgid "Log in"
|
374 |
msgstr "Přihlásit se"
|
375 |
|
376 |
# @ profilebuilder
|
377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
378 |
msgid "Remember me"
|
379 |
msgstr "Pamatovat si mě"
|
380 |
|
381 |
# @ profilebuilder
|
382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:157
|
383 |
msgid "Lost password?"
|
384 |
msgstr "Zapomněli jste heslo?"
|
385 |
|
386 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
387 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
388 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
389 |
msgid "ERROR"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
393 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
394 |
msgid ""
|
395 |
"Your account has to be confirmed by an administrator before you can use the "
|
396 |
"\"Password Reset\" feature."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
|
400 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
|
401 |
+
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
msgid ""
|
403 |
+
"A password reset email has been sent to %1$s.<br/>Following the link sent in "
|
404 |
+
"the email address will reset the password."
|
405 |
msgstr ""
|
406 |
|
407 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
408 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
|
409 |
+
#, php-format
|
410 |
+
msgid ""
|
411 |
+
"Someone requested that the password be reset for the following account: <b>"
|
412 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
413 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
|
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
|
417 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
|
418 |
+
#, php-format
|
419 |
+
msgid "Password Reset Feature from \"%1$s\""
|
420 |
msgstr ""
|
421 |
|
422 |
# @ profilebuilder
|
423 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
424 |
+
#, fuzzy, php-format
|
425 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
|
|
426 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
427 |
|
428 |
# @ profilebuilder
|
429 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
430 |
#, fuzzy
|
431 |
msgid "The email address entered wasn't found in the database!"
|
432 |
msgstr "Zadaný e-mail není platný. <br/> Adresa "
|
433 |
|
434 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
435 |
msgid "Please check that you entered the correct email address."
|
436 |
msgstr ""
|
437 |
|
438 |
+
# @ profilebuilder
|
439 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
440 |
+
#, fuzzy
|
441 |
+
msgid "There was an error while trying to send the activation link to "
|
442 |
+
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
443 |
+
|
444 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
445 |
msgid "The username entered wasn't found in the database!"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
449 |
msgid "Please check that you entered the correct username."
|
450 |
msgstr ""
|
451 |
|
452 |
# @ profilebuilder
|
453 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
|
454 |
#, fuzzy
|
455 |
msgid "Your password has been successfully changed!"
|
456 |
msgstr "Změny byly úspěšně uloženy."
|
457 |
|
458 |
+
# @ profilebuilder
|
459 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
|
460 |
+
#, fuzzy, php-format
|
461 |
+
msgid "You have successfully reset your password to: %1$s"
|
462 |
+
msgstr "Úspěšné přihlášení jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
463 |
|
464 |
# @ profilebuilder
|
465 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
|
466 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
|
467 |
+
#, fuzzy, php-format
|
468 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
469 |
msgstr "\" byla úspěšně odstraněna."
|
470 |
|
471 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
|
472 |
+
#, php-format
|
473 |
+
msgid ""
|
474 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
475 |
+
"her new password is:%2$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
msgstr ""
|
477 |
|
478 |
# @ profilebuilder
|
479 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
|
480 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:894
|
481 |
msgid "The entered passwords don't match!"
|
482 |
msgstr "Zadaná hesla se neshodují."
|
483 |
|
484 |
# @ profilebuilder
|
485 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
|
486 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
|
487 |
#, fuzzy
|
488 |
msgid "Reset Password"
|
489 |
msgstr "Heslo ještě jednou"
|
490 |
|
491 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
492 |
msgid "Invalid key!"
|
493 |
msgstr ""
|
494 |
|
495 |
# @ profilebuilder
|
496 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
497 |
#, fuzzy
|
498 |
msgid "Please enter your username or email address."
|
499 |
msgstr "Musíte zadat platnou e-mailovou adresu."
|
500 |
|
501 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
502 |
msgid "You will receive a link to create a new password via email."
|
503 |
msgstr ""
|
504 |
|
505 |
# @ profilebuilder
|
506 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
507 |
#, fuzzy
|
508 |
msgid "Username or E-mail"
|
509 |
msgstr "Uživatelské jméno"
|
510 |
|
511 |
# @ profilebuilder
|
512 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
513 |
#, fuzzy
|
514 |
msgid "Get New Password"
|
515 |
msgstr "Nové heslo"
|
560 |
msgid "There was an error while trying to activate the user."
|
561 |
msgstr "Došlo k chybě při pokusu nahrát tyto přílohy: <br/>"
|
562 |
|
563 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
|
564 |
+
#, php-format
|
565 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
569 |
msgid ""
|
570 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
571 |
"please remember that you need to approve this user before he/she can log in!"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
575 |
msgid "A new subscriber has (been) registered!"
|
576 |
msgstr ""
|
577 |
|
578 |
# @ profilebuilder
|
579 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:522
|
580 |
#, fuzzy
|
581 |
msgid "A new account has been created for you."
|
582 |
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
583 |
|
584 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
585 |
+
#, php-format
|
586 |
+
msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
|
|
|
|
|
|
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
|
|
|
|
|
|
|
|
|
|
|
|
|
590 |
msgid ""
|
591 |
"Before you can access your account, an administrator needs to approve it. "
|
592 |
"You will be notified via email."
|
593 |
msgstr ""
|
594 |
|
|
|
|
|
|
|
|
|
595 |
# @ profilebuilder
|
596 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
|
597 |
msgid "A username is required for registration."
|
598 |
msgstr "Uživatelské jméno je nutné pro registraci."
|
599 |
|
600 |
# @ profilebuilder
|
601 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
|
602 |
msgid "Sorry, that username already exists!"
|
603 |
msgstr "Omlouváme se, ale toto uživatelské jméno již existuje."
|
604 |
|
605 |
# @ profilebuilder
|
606 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:887
|
607 |
msgid "You must enter a valid email address."
|
608 |
msgstr "Musíte zadat platnou e-mailovou adresu."
|
609 |
|
610 |
# @ profilebuilder
|
611 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:889
|
612 |
msgid "Sorry, that email address is already used!"
|
613 |
msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
|
614 |
|
615 |
# @ profilebuilder
|
616 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
|
617 |
msgid "You didn't complete one of the password-fields!"
|
618 |
msgstr "Nebyla vyplněna obě pole hesla."
|
619 |
|
620 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
621 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
# @ profilebuilder
|
625 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
626 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
627 |
#, fuzzy
|
628 |
msgid "The account was NOT created!"
|
629 |
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
630 |
|
631 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:908
|
632 |
msgid "You must agree to the terms and conditions before registering!"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
636 |
msgid "(Several required fields were left uncompleted)"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
640 |
msgid "This username is already reserved to be used soon."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
644 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
645 |
msgid "Please try a different one!"
|
646 |
msgstr ""
|
647 |
|
648 |
# @ profilebuilder
|
649 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
650 |
#, fuzzy
|
651 |
msgid "This email address is already reserved to be used soon."
|
652 |
msgstr "Omlouváme se, ale tato e-mailová adresa je již zaregistrována."
|
653 |
|
654 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
655 |
msgid "You are logged in as"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
659 |
msgid "You don't need another account."
|
660 |
msgstr ""
|
661 |
|
662 |
# @ profilebuilder
|
663 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
664 |
#, fuzzy
|
665 |
msgid "Log out of this account."
|
666 |
msgstr "Odhlásit se"
|
667 |
|
668 |
# @ profilebuilder
|
669 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
670 |
#, fuzzy
|
671 |
msgid "Logout"
|
672 |
msgstr "Odhlásit se »"
|
673 |
|
674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
675 |
+
#, php-format
|
676 |
+
msgid ""
|
677 |
+
"An email has been sent to %1$s with information on how to activate his/her "
|
678 |
+
"account."
|
|
|
679 |
msgstr ""
|
680 |
|
681 |
# @ profilebuilder
|
682 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1172
|
683 |
+
#, fuzzy, php-format
|
684 |
+
msgid "A user account has been created for %1$s."
|
685 |
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
686 |
|
687 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
688 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
689 |
+
#, php-format
|
690 |
msgid ""
|
691 |
"You will soon be redirected automatically. If you see this page for more "
|
692 |
+
"than 3 seconds, please click %1$s.%2$s"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1197
|
696 |
msgid ""
|
697 |
"An email has been sent to you with information on how to activate your "
|
698 |
+
"account."
|
699 |
msgstr ""
|
700 |
|
701 |
# @ profilebuilder
|
702 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1201
|
703 |
+
#, fuzzy, php-format
|
704 |
+
msgid "Thank you for registering %1$s."
|
705 |
msgstr "Děkujeme za registraci, %1$s."
|
706 |
|
707 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1228
|
708 |
msgid "An error occured while trying to send the notification email."
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
712 |
msgid "An email containing activation instructions was successfully sent."
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
716 |
msgid "An email containing the username and password was successfully sent."
|
717 |
msgstr ""
|
718 |
|
719 |
# @ profilebuilder
|
720 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1254
|
721 |
msgid "Users can register themselves or you can manually create users here."
|
722 |
msgstr ""
|
723 |
"Uživatelé se mohou zaregistrovat sami, případně můžete manuálně vytvářet "
|
724 |
"uživatele zde."
|
725 |
|
726 |
# @ profilebuilder
|
727 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
728 |
msgid ""
|
729 |
"Users cannot currently register themselves, but you can manually create "
|
730 |
"users here."
|
732 |
"Uživatelé se nemohou sami zaregistrovat, ale můžete je ručně vytvářet zde."
|
733 |
|
734 |
# @ profilebuilder
|
735 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
736 |
msgid "Only an administrator can add new users."
|
737 |
msgstr "Pouze administrátor může přidávat nové uživatele."
|
738 |
|
739 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1287
|
740 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1311
|
741 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1335
|
742 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1359
|
743 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1410
|
744 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1434
|
745 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1458
|
746 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1482
|
747 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1509
|
748 |
msgid ""
|
749 |
"This field must be filled out before registering (It was marked as required "
|
750 |
"by the administrator)"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1308
|
754 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1332
|
755 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1356
|
756 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1383
|
757 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1407
|
758 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1431
|
759 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1455
|
760 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1479
|
761 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1506
|
762 |
msgid "This field is marked as required by the administrator"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1581
|
766 |
msgid "Anti-Spam"
|
767 |
msgstr ""
|
768 |
|
769 |
# @ profilebuilder
|
770 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1602
|
771 |
#, fuzzy
|
772 |
msgid "Send these credentials via email."
|
773 |
msgstr "Odeslat tyto přihlašovací údaje e-mailem."
|
774 |
|
775 |
# @ profilebuilder
|
776 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
777 |
msgid "Add User"
|
778 |
msgstr "Přidat uživatele"
|
779 |
|
780 |
# @ profilebuilder
|
781 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
782 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
783 |
msgid "Register"
|
784 |
msgstr "Registrovat"
|
801 |
msgstr "Viditelnost"
|
802 |
|
803 |
# @ profilebuilder
|
804 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
|
805 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
806 |
+
msgid "Default"
|
807 |
+
msgstr "Výchozí"
|
808 |
+
|
809 |
+
# @ profilebuilder
|
810 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
|
811 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
812 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
813 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
824 |
msgstr "Zobrazit"
|
825 |
|
826 |
# @ profilebuilder
|
827 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
|
828 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
829 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
830 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
840 |
msgid "Hide"
|
841 |
msgstr "Skrýt"
|
842 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
843 |
# @ default
|
844 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
|
845 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
846 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
847 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
848 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
|
849 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
850 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
|
851 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
852 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
853 |
msgid "Save Changes"
|
995 |
msgid "shortcode."
|
996 |
msgstr ""
|
997 |
|
998 |
+
# @ profilebuilder
|
999 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
1000 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
1001 |
+
msgid "NOTE:"
|
1002 |
+
msgstr "POZNÁMKA:"
|
1003 |
+
|
1004 |
# @ profilebuilder
|
1005 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
1006 |
msgid "this plugin only adds/removes fields in the front-end."
|
1055 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
1056 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
1057 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
1058 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
|
1059 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
|
1060 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
|
1061 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
|
1062 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
|
1063 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
|
1064 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
|
1065 |
msgid "Yes"
|
1066 |
msgstr ""
|
1067 |
|
1080 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1081 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1082 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1083 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
|
1084 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
|
1085 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
|
1086 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
|
1087 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
|
1088 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
|
1089 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
|
1090 |
#, fuzzy
|
1091 |
msgid "No"
|
1092 |
msgstr "Žádný"
|
1115 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1116 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1117 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1118 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
|
1119 |
msgid "General Settings"
|
1120 |
msgstr ""
|
1121 |
|
1125 |
msgid "Stylesheet Used on the Front-End:"
|
1126 |
msgstr "CSS styl:"
|
1127 |
|
|
|
|
|
|
|
|
|
|
|
1128 |
# @ profilebuilder
|
1129 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1130 |
msgid "White"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1169 |
+
#, php-format
|
1170 |
msgid ""
|
1171 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1172 |
+
"Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
|
1173 |
+
"access to automatic updates and support. Need a license key? %3$sPurchase "
|
1174 |
+
"one now%4$s"
|
|
|
|
|
|
|
1175 |
msgstr ""
|
1176 |
|
1177 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1178 |
+
#, php-format
|
1179 |
msgid ""
|
1180 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1181 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1182 |
+
"priority support. %3$sPurchase one now%4$s"
|
|
|
|
|
|
|
|
|
1183 |
msgstr ""
|
1184 |
|
1185 |
# @ profilebuilder
|
1244 |
msgstr ""
|
1245 |
|
1246 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1247 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
|
1248 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
|
1249 |
msgid "Custom Redirects"
|
1250 |
msgstr ""
|
1251 |
|
1255 |
msgid "reCAPTCHA"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
|
1259 |
msgid "Redirects on custom page requests:"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
# @ profilebuilder
|
1263 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
|
1264 |
#, fuzzy
|
1265 |
msgid "Action"
|
1266 |
msgstr "Přidat volbu"
|
1267 |
|
1268 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
|
1269 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
|
1270 |
msgid "Redirect"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
|
1274 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
|
1275 |
msgid "URL"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
|
1279 |
msgid "After Registration:"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
|
1283 |
msgid "After Login:"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
# @ profilebuilder
|
1287 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
|
1288 |
#, fuzzy
|
1289 |
msgid "Recover Password (*)"
|
1290 |
msgstr "Heslo ještě jednou"
|
1291 |
|
1292 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
|
1293 |
msgid ""
|
1294 |
"When activated this feature will redirect the user on both the default "
|
1295 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1296 |
"Profile Builder on the front-end login page."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
|
1300 |
msgid "Redirects on default WordPress page requests:"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
|
1304 |
msgid "Requested WP Page"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
|
1308 |
+
msgid "Default WP Login Page (*)"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
|
1312 |
+
msgid "Default WP Logout Page (**)"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
|
1316 |
msgid "Default WP Register Page"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
|
1320 |
msgid "Default WP Dashboard (***)"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
|
1324 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
|
1328 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
|
1332 |
msgid ""
|
1333 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1334 |
"manage options)."
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
|
|
1342 |
msgid "To use reCAPTCHA you must get an API key from"
|
1343 |
msgstr ""
|
1344 |
|
1384 |
msgid "Private Key:"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
|
1388 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1389 |
msgstr ""
|
1390 |
|
1400 |
"authors, visible to only the users currently logged in, you would use:"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1404 |
+
msgid ""
|
1405 |
+
"You can also create a userlisting page that displays users having a certain "
|
1406 |
+
"meta-value within a certain (extra) meta-field like so:"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1410 |
+
msgid ""
|
1411 |
+
"Remember though, that the field-value combination must exist in the database."
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
|
1415 |
msgid "These settings are applied to the front-end userlisting."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:46
|
1419 |
msgid "Number of Users/Page: "
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:63
|
1423 |
msgid "Default Sorting Order: "
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
|
1427 |
msgid "\"All-Userlisting\" Template"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1431 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1432 |
msgid ""
|
1433 |
"With the userlisting templates you can customize the look, feel and "
|
1434 |
"information listed by the shortcode."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
|
1438 |
msgid ""
|
1439 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1440 |
"on each page access where the shortcode is present."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
|
1444 |
msgid "Avatar size: "
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:97
|
1448 |
msgid "Insert \"Sort By\" Field:"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:125
|
1452 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
|
1453 |
msgid "Insert \"User-Meta\" Field:"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:156
|
1457 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:262
|
1458 |
msgid "Insert Extra Functions:"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:171
|
1462 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:173
|
1466 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:276
|
1467 |
msgid ""
|
1468 |
"If you wish to use a default userlisting, just copy the following code and "
|
1469 |
"paste it in the textarea below:"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
|
1473 |
msgid "\"Single-Userlisting\" Template"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:219
|
1477 |
msgid ""
|
1478 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1479 |
"It's displayed when clickin on the \"more info\" link."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:274
|
1483 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1487 |
msgid ""
|
1488 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1492 |
msgid "You can find it in Profile Builder's menu."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
# @ profilebuilder
|
1496 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
|
1497 |
#, fuzzy
|
1498 |
msgid "You need to be logged in to view the userlisting!"
|
1499 |
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
1500 |
|
1501 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
|
1502 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
|
1503 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1504 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1328
|
1505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1414
|
1506 |
msgid "Search Users by All Fields"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1510 |
msgid "Leave Blank and Press Search to List All Users"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
|
1514 |
msgid "Search"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
# @ profilebuilder
|
1518 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
|
1519 |
#, fuzzy
|
1520 |
msgid "First/Lastname"
|
1521 |
msgstr "Křestní jméno"
|
1522 |
|
1523 |
# @ profilebuilder
|
1524 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
|
1525 |
#, fuzzy
|
1526 |
msgid "Email"
|
1527 |
msgstr "E-mail"
|
1528 |
|
1529 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
|
1530 |
msgid "Sign-up Date"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
# @ profilebuilder
|
1534 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
|
1535 |
#, fuzzy
|
1536 |
msgid "Firstname"
|
1537 |
msgstr "Křestní jméno"
|
1538 |
|
1539 |
# @ profilebuilder
|
1540 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
|
1541 |
#, fuzzy
|
1542 |
msgid "Lastname"
|
1543 |
msgstr "Příjmení"
|
1544 |
|
1545 |
# @ profilebuilder
|
1546 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
|
1547 |
#, fuzzy
|
1548 |
msgid "Display Name"
|
1549 |
msgstr "Křestní jméno"
|
1550 |
|
1551 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
|
1552 |
msgid "Posts"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1556 |
msgid "Click here to see more information about this user"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1560 |
msgid "More..."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
# @ profilebuilder
|
1564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
|
1565 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1566 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1567 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1568 |
#, fuzzy
|
1569 |
msgid "No uploaded attachment"
|
1570 |
msgstr "Příloha \""
|
1571 |
|
1572 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
|
1573 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1574 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1160
|
1575 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1576 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1577 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1580 |
msgid "Click to see the current attachment"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1584 |
msgid "Click here to go back"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
# @ profilebuilder
|
1588 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1589 |
#, fuzzy
|
1590 |
msgid "Back"
|
1591 |
msgstr "Černý"
|
1592 |
|
1593 |
# @ profilebuilder
|
1594 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
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:581
|
1598 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1601 |
msgid "Current file"
|
1602 |
msgstr "Aktuální soubor"
|
1603 |
|
1604 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
|
1605 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1606 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1607 |
msgid "Avatar"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1215
|
1611 |
msgid "No results found!"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1615 |
msgid "«« First"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1619 |
msgid "« Prev"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
# @ profilebuilder
|
1623 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1624 |
#, fuzzy
|
1625 |
msgid "Next » "
|
1626 |
msgstr "Odhlásit se »"
|
1627 |
|
1628 |
# @ profilebuilder
|
1629 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
|
1630 |
#, fuzzy
|
1631 |
msgid "Last »»"
|
1632 |
msgstr "Odhlásit se »"
|
1633 |
|
1634 |
# @ profilebuilder
|
1635 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
|
1636 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
|
1637 |
#, fuzzy
|
1638 |
msgid "You must give your option a title."
|
1639 |
msgstr "Pro úpravu profilu je nutné se přihlásit."
|
1640 |
|
1641 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
|
1642 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
|
1643 |
msgid "You have entered an invalid meta-key format!"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
# @ profilebuilder
|
1647 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
|
1648 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
|
1649 |
#, fuzzy
|
1650 |
msgid "You must enter a valid meta-key."
|
1651 |
msgstr "Musíte zadat platnou e-mailovou adresu."
|
1652 |
|
1653 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
|
1654 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1655 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:447
|
1656 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
|
1657 |
msgid "That meta-key is already in use."
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1661 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1662 |
msgid ""
|
1663 |
"There is already an avatar input-type. You can only have one avatar present."
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:324
|
1667 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:474
|
1668 |
msgid ""
|
1669 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1670 |
"have one present."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:329
|
1674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:479
|
1675 |
msgid "The textarea row value must be numeric."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1679 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1680 |
msgid "The maxlength attribute must be numeric."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1684 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1685 |
msgid "The value must be between 20 and 200!"
|
1686 |
msgstr ""
|
1687 |
|
|
|
|
|
|
|
|
|
|
|
1688 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1689 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1690 |
+
msgid "The width component of the entered value must be numeric!"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1694 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1695 |
+
msgid "The height component of the entered value must be numeric!"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1699 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1700 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1704 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1705 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1706 |
+
msgstr ""
|
1707 |
+
|
1708 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
|
1709 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
|
1710 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
|
1714 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:506
|
1715 |
msgid "The entered avatar size must be numeric!"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:390
|
1719 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:566
|
1720 |
msgid "There was an error, please try again."
|
1721 |
msgstr ""
|
1722 |
|
1728 |
msgid "the current user?"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
# @ profilebuilder
|
1732 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1733 |
+
#, fuzzy, php-format
|
1734 |
+
msgid "Your account on %1$s has been approved!"
|
1735 |
+
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
|
|
|
|
|
|
|
|
1736 |
|
1737 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1738 |
+
#, php-format
|
1739 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
# @ profilebuilder
|
1743 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1744 |
+
#, fuzzy, php-format
|
1745 |
+
msgid "Your account on %1$s has been unapproved!"
|
1746 |
+
msgstr "Uživatelský účet pro %1$s byl vytvořen."
|
1747 |
|
1748 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1749 |
+
#, php-format
|
1750 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1751 |
msgstr ""
|
1752 |
|
1753 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1779 |
msgstr ""
|
1780 |
|
1781 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1782 |
+
#, php-format
|
1783 |
+
msgid "Are you sure you want to %1$s this user?"
|
|
|
|
|
|
|
1784 |
msgstr ""
|
1785 |
|
1786 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
2067 |
msgid "Don't have an account?"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
# @ profilebuilder
|
2071 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
2072 |
+
#, fuzzy
|
2073 |
+
msgid "Lost Password"
|
2074 |
+
msgstr "Zapomněli jste heslo?"
|
2075 |
+
|
2076 |
# @ profilebuilder
|
2077 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
2078 |
#, fuzzy
|
2086 |
msgstr "Přihlásit se"
|
2087 |
|
2088 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
2089 |
+
msgid "After login redirect URL (optional):"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
2093 |
+
msgid "Register page URL (optional):"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
2097 |
+
msgid "Password Recovery page URL (optional):"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
2105 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
|
2109 |
#, php-format
|
2110 |
msgid ""
|
2111 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
2112 |
+
"Please %1$sregister your copy%2$s of Profile Builder to receive access to "
|
2113 |
+
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
|
2114 |
+
"%5$sDismiss%6$s"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
|
2118 |
#, php-format
|
2119 |
msgid ""
|
2120 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
2121 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
2122 |
+
"priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
# @ profilebuilder
|
2208 |
#, fuzzy
|
2209 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2210 |
msgstr "(například RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2211 |
+
|
2212 |
+
# @ profilebuilder
|
2213 |
+
#, fuzzy
|
2214 |
+
#~ msgid "The attachment"
|
2215 |
+
#~ msgstr "Příloha \""
|
2216 |
+
|
2217 |
+
# @ profilebuilder
|
2218 |
+
#, fuzzy
|
2219 |
+
#~ msgid "was successfully deleted."
|
2220 |
+
#~ msgstr "\" byla úspěšně odstraněna."
|
2221 |
+
|
2222 |
+
# @ profilebuilder
|
2223 |
+
#, fuzzy
|
2224 |
+
#~ msgid "Possible cause: the size was bigger than"
|
2225 |
+
#~ msgstr "<br/> Možná příčina: velikost byla větší než "
|
2226 |
+
|
2227 |
+
# @ profilebuilder
|
2228 |
+
#, fuzzy
|
2229 |
+
#~ msgid "The listed attachements were"
|
2230 |
+
#~ msgstr "B. <br/> Příloha (přílohy) "
|
2231 |
+
|
2232 |
+
# @ profilebuilder
|
2233 |
+
#, fuzzy
|
2234 |
+
#~ msgid "and password:"
|
2235 |
+
#~ msgstr "Heslo"
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,165 +15,142 @@ msgstr ""
|
|
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:
|
19 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
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:
|
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:
|
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:
|
49 |
-
|
50 |
-
|
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:
|
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:
|
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:
|
66 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
71 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
72 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
73 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
74 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
81 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
82 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
83 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
84 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
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:
|
99 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
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:
|
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:
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
msgstr "Die augelisteten Anhänger sind"
|
122 |
|
123 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
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:
|
136 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
141 |
-
|
142 |
-
msgid "
|
143 |
-
|
144 |
-
|
145 |
-
|
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:
|
150 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
151 |
msgid "Name"
|
152 |
msgstr "Name"
|
153 |
|
154 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
155 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
156 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
160 |
msgid "Username"
|
161 |
msgstr "Benutzername"
|
162 |
|
163 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
168 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
169 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
170 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
171 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
172 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
173 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
174 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
175 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
176 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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
|
@@ -188,179 +165,181 @@ msgstr "Benutzernamen können nicht geändert werden"
|
|
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:
|
192 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
193 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
194 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
195 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
196 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
197 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
198 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
199 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
200 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
208 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
214 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
220 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
230 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
231 |
msgid "Contact Info"
|
232 |
msgstr "E-Mail"
|
233 |
|
234 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
235 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
242 |
msgid "(required)"
|
243 |
msgstr "erforderlich"
|
244 |
|
245 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
246 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
249 |
msgid "Website"
|
250 |
msgstr "Website"
|
251 |
|
252 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
253 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
259 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
265 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
271 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
272 |
msgid "About Yourself"
|
273 |
msgstr "Über Sie"
|
274 |
|
275 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
276 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
279 |
msgid "Biographical Info"
|
280 |
msgstr "Sonstige Angaben"
|
281 |
|
282 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
283 |
msgid "New Password"
|
284 |
msgstr "Neues Passwort"
|
285 |
|
286 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
287 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
288 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
289 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
290 |
msgid "Repeat Password"
|
291 |
msgstr "Passwort wiederholen"
|
292 |
|
293 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
294 |
msgid "Update"
|
295 |
msgstr "Aktualisieren"
|
296 |
|
297 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
298 |
-
|
|
|
299 |
msgstr "Sie sind eingeloggt als"
|
300 |
|
301 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
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:
|
306 |
msgid "Log out"
|
307 |
msgstr "Ausloggen"
|
308 |
|
309 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
310 |
-
|
|
|
311 |
msgstr "Sie sind eingeloggt als"
|
312 |
|
313 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
314 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
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:
|
323 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
324 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
325 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
326 |
msgid "here"
|
327 |
msgstr "hier"
|
328 |
|
329 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
330 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
331 |
msgid "ERROR:"
|
332 |
msgstr "FEHLER"
|
333 |
|
334 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
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:
|
339 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
340 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
341 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
342 |
msgid "Password"
|
343 |
msgstr "Passwort"
|
344 |
|
345 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
346 |
msgid "Log in"
|
347 |
msgstr "Einloggen"
|
348 |
|
349 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
350 |
msgid "Remember me"
|
351 |
msgstr "Daten merken"
|
352 |
|
353 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
354 |
msgid "Lost password?"
|
355 |
msgstr "Passwort vergessen"
|
356 |
|
357 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
358 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
359 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
360 |
msgid "ERROR"
|
361 |
msgstr "FEHLER"
|
362 |
|
363 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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 "
|
@@ -369,122 +348,110 @@ 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:
|
373 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
374 |
-
|
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 |
-
"
|
386 |
-
|
387 |
-
"
|
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:
|
392 |
-
|
|
|
|
|
|
|
|
|
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:
|
403 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
404 |
-
|
|
|
405 |
msgstr "Passwort zurücksetzen von"
|
406 |
|
407 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
408 |
-
|
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:
|
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:
|
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:
|
|
|
|
|
|
|
|
|
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:
|
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:
|
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:
|
437 |
-
|
|
|
438 |
msgstr "Ihr neues Passwort lautet:"
|
439 |
|
440 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
441 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
442 |
-
|
|
|
443 |
msgstr "Passwort zurückgesetzt für:"
|
444 |
|
445 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
446 |
-
|
447 |
-
msgid "
|
448 |
-
|
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:
|
455 |
-
|
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:
|
464 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
488 |
msgid "Get New Password"
|
489 |
msgstr "Neues Passwort anfordern"
|
490 |
|
@@ -533,11 +500,12 @@ msgstr "Der Benutzer wurde erfolgreich aktiviert"
|
|
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:
|
537 |
-
|
538 |
-
|
|
|
539 |
|
540 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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!"
|
@@ -545,27 +513,20 @@ 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:
|
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:
|
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:
|
557 |
-
|
558 |
-
|
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:
|
569 |
msgid ""
|
570 |
"Before you can access your account, an administrator needs to approve it. "
|
571 |
"You will be notified via email."
|
@@ -573,128 +534,132 @@ 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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
601 |
-
|
|
|
|
|
|
|
|
|
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:
|
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:
|
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:
|
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:
|
618 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
639 |
msgid "Logout"
|
640 |
msgstr "Ausloggen"
|
641 |
|
642 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
msgid "with information on how to activate his/her account"
|
648 |
msgstr ""
|
649 |
-
"
|
|
|
650 |
|
651 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
652 |
-
|
|
|
653 |
msgstr "Ein Benutzer wurde erstellt für"
|
654 |
|
655 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
656 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
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:
|
|
|
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:
|
673 |
-
|
|
|
674 |
msgstr "Vielen Dank für die Registrierung."
|
675 |
|
676 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
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:
|
698 |
msgid ""
|
699 |
"Users cannot currently register themselves, but you can manually create "
|
700 |
"users here."
|
@@ -702,49 +667,49 @@ 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:
|
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:
|
710 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
711 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
712 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
713 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
714 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
715 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
716 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
717 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
724 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
725 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
726 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
727 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
728 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
729 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
730 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
731 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
736 |
msgid "Anti-Spam"
|
737 |
msgstr "Anti-Spam"
|
738 |
|
739 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
744 |
msgid "Add User"
|
745 |
msgstr "Benutzer hinzufügen"
|
746 |
|
747 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
748 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
749 |
msgid "Register"
|
750 |
msgstr "Regstrieren"
|
@@ -763,7 +728,12 @@ msgstr "Benutzergruppe"
|
|
763 |
msgid "Visibility"
|
764 |
msgstr "Sichtbarkeit"
|
765 |
|
766 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
|
|
|
|
|
|
|
|
|
|
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
|
@@ -779,7 +749,7 @@ msgstr "Sichtbarkeit"
|
|
779 |
msgid "Show"
|
780 |
msgstr "Anzeigen"
|
781 |
|
782 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
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
|
@@ -795,28 +765,13 @@ msgstr "Anzeigen"
|
|
795 |
msgid "Hide"
|
796 |
msgstr "Verbergen"
|
797 |
|
798 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
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:
|
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:
|
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"
|
@@ -943,6 +898,11 @@ msgstr "ein User-Listing Frontend erstellen -"
|
|
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."
|
@@ -991,7 +951,13 @@ msgstr "Name"
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
995 |
msgid "Yes"
|
996 |
msgstr "Ja"
|
997 |
|
@@ -1009,7 +975,13 @@ msgstr "Ja"
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
1013 |
msgid "No"
|
1014 |
msgstr "Nein"
|
1015 |
|
@@ -1033,7 +1005,7 @@ msgstr "Neues Passwort"
|
|
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:
|
1037 |
msgid "General Settings"
|
1038 |
msgstr "Allgemeine Einstellungen"
|
1039 |
|
@@ -1041,10 +1013,6 @@ msgstr "Allgemeine Einstellungen"
|
|
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"
|
@@ -1086,25 +1054,20 @@ msgstr ""
|
|
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 <
|
1092 |
-
"
|
1093 |
-
"
|
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
|
1102 |
-
"
|
1103 |
-
"
|
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
|
@@ -1161,7 +1124,8 @@ 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:
|
|
|
1165 |
msgid "Custom Redirects"
|
1166 |
msgstr "Weiterleitungen"
|
1167 |
|
@@ -1171,37 +1135,39 @@ msgstr "Weiterleitungen"
|
|
1171 |
msgid "reCAPTCHA"
|
1172 |
msgstr "reCAPTCHA"
|
1173 |
|
1174 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
1179 |
msgid "Action"
|
1180 |
msgstr "Aktion"
|
1181 |
|
1182 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1183 |
msgid "Redirect"
|
1184 |
msgstr "Weiterleiten"
|
1185 |
|
1186 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1187 |
msgid "URL"
|
1188 |
msgstr "URL"
|
1189 |
|
1190 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1191 |
msgid "After Registration:"
|
1192 |
msgstr "Nach Registrierung"
|
1193 |
|
1194 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
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:
|
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 "
|
@@ -1211,43 +1177,45 @@ msgstr ""
|
|
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:
|
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:
|
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:
|
1223 |
-
|
|
|
1224 |
msgstr "Standart WP Login Seite(*)"
|
1225 |
|
1226 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1227 |
-
|
|
|
1228 |
msgstr "Standart WP Logout Seite (**)"
|
1229 |
|
1230 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
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:
|
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:
|
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:
|
1251 |
msgid ""
|
1252 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1253 |
"manage options)."
|
@@ -1258,7 +1226,6 @@ 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 |
|
@@ -1308,7 +1275,7 @@ msgstr "Öffentlicher Schlüssel"
|
|
1308 |
msgid "Private Key:"
|
1309 |
msgstr "Privater Schlüssel"
|
1310 |
|
1311 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:
|
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 "
|
@@ -1330,24 +1297,35 @@ 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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
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:
|
1342 |
msgid "Default Sorting Order: "
|
1343 |
msgstr "Standart Sortierfolge"
|
1344 |
|
1345 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1346 |
msgid "\"All-Userlisting\" Template"
|
1347 |
msgstr "\"All-Userlisting\" Template"
|
1348 |
|
1349 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1350 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1351 |
msgid ""
|
1352 |
"With the userlisting templates you can customize the look, feel and "
|
1353 |
"information listed by the shortcode."
|
@@ -1355,7 +1333,7 @@ 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:
|
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."
|
@@ -1363,30 +1341,30 @@ 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:
|
1367 |
msgid "Avatar size: "
|
1368 |
msgstr "Avatar Größe"
|
1369 |
|
1370 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1375 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1380 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
1389 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1390 |
msgid ""
|
1391 |
"If you wish to use a default userlisting, just copy the following code and "
|
1392 |
"paste it in the textarea below:"
|
@@ -1394,11 +1372,11 @@ 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:
|
1398 |
msgid "\"Single-Userlisting\" Template"
|
1399 |
msgstr "\"Single-Userlisting\"-Template"
|
1400 |
|
1401 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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."
|
@@ -1406,85 +1384,85 @@ 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:
|
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:
|
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:
|
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:
|
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:
|
1427 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1428 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1429 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1430 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
1439 |
msgid "Search"
|
1440 |
msgstr "Suche"
|
1441 |
|
1442 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1443 |
msgid "First/Lastname"
|
1444 |
msgstr "Vor/Nachname"
|
1445 |
|
1446 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1447 |
msgid "Email"
|
1448 |
msgstr "E-Mail"
|
1449 |
|
1450 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1451 |
msgid "Sign-up Date"
|
1452 |
msgstr "Registrierungsdatum"
|
1453 |
|
1454 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1455 |
msgid "Firstname"
|
1456 |
msgstr "Vorname"
|
1457 |
|
1458 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1459 |
msgid "Lastname"
|
1460 |
msgstr "Nachname"
|
1461 |
|
1462 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1463 |
msgid "Display Name"
|
1464 |
msgstr "Angezeigter Name"
|
1465 |
|
1466 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1467 |
msgid "Posts"
|
1468 |
msgstr "Posts"
|
1469 |
|
1470 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1475 |
msgid "More..."
|
1476 |
msgstr "Mehr..."
|
1477 |
|
1478 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1479 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1486 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1487 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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
|
@@ -1493,16 +1471,16 @@ msgstr "Keine hochgeladenen Anhänge"
|
|
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:
|
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:
|
1501 |
msgid "Back"
|
1502 |
msgstr "Zurück"
|
1503 |
|
1504 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1505 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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
|
@@ -1511,114 +1489,114 @@ msgstr "Zurück"
|
|
1511 |
msgid "Current file"
|
1512 |
msgstr "Aktuelle Datei"
|
1513 |
|
1514 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1521 |
msgid "No results found!"
|
1522 |
msgstr "Keine Ergebnisse gefunden"
|
1523 |
|
1524 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1525 |
msgid "«« First"
|
1526 |
msgstr "«« Erster"
|
1527 |
|
1528 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1529 |
msgid "« Prev"
|
1530 |
msgstr "Letzter"
|
1531 |
|
1532 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1533 |
msgid "Next » "
|
1534 |
msgstr "Nächster » "
|
1535 |
|
1536 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1537 |
msgid "Last »»"
|
1538 |
msgstr "Letzter »»"
|
1539 |
|
1540 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1541 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1546 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1551 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1556 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1557 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1558 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1563 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1569 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1576 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1581 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1586 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1591 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1596 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1601 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1606 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1611 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1616 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1621 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1622 |
msgid "There was an error, please try again."
|
1623 |
msgstr "Fehler, bitte versuchen Sie es erneut."
|
1624 |
|
@@ -1631,24 +1609,23 @@ 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 |
-
|
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 |
-
|
|
|
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 |
-
|
|
|
1648 |
msgstr "wurde nicht genehmigt."
|
1649 |
|
1650 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1651 |
-
|
|
|
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
|
@@ -1680,12 +1657,9 @@ msgid "approve"
|
|
1680 |
msgstr "genehmigt"
|
1681 |
|
1682 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1683 |
-
|
1684 |
-
|
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 ""
|
@@ -1945,6 +1919,11 @@ msgstr "Profile Login Builder Widget"
|
|
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?"
|
@@ -1954,15 +1933,18 @@ msgid "Login"
|
|
1954 |
msgstr "Einloggen"
|
1955 |
|
1956 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1957 |
-
|
|
|
1958 |
msgstr "Weiterleitungs-URL nach dem Einloggen:"
|
1959 |
|
1960 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1961 |
-
|
|
|
1962 |
msgstr "URL zur Registrierungsseite:"
|
1963 |
|
1964 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1965 |
-
|
|
|
1966 |
msgstr "URL zur \"Passwort vergessen\"-Seite"
|
1967 |
|
1968 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
@@ -1975,21 +1957,21 @@ 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:
|
1979 |
#, php-format
|
1980 |
msgid ""
|
1981 |
-
"Your <strong>Profile Builder
|
1982 |
-
"
|
1983 |
-
"
|
1984 |
-
"%sDismiss%s"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1988 |
#, php-format
|
1989 |
msgid ""
|
1990 |
-
"Your <strong>Profile Builder
|
1991 |
-
"%sRenew Your Licence%s to receive access to automatic updates and
|
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
|
@@ -2069,5 +2051,99 @@ msgstr ""
|
|
2069 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2070 |
msgstr "(Bsp.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2071 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2072 |
#~ msgid "Does not."
|
2073 |
#~ msgstr "Nicht"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-10 11:29+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-10 11:29+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"
|
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:83
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"The information size you were trying to submit was larger than %1$sb!<br/"
|
23 |
+
">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
|
24 |
+
"it was also larger than %2$sb no additional information is available.<br/"
|
25 |
+
">The user was NOT created!"
|
26 |
msgstr ""
|
|
|
|
|
27 |
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
msgid "You must be logged in to edit your profile."
|
30 |
msgstr "Sie müssen angemeldet sein um Ihr Profil zu ändern"
|
31 |
|
32 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
|
33 |
msgid "The avatar was successfully deleted."
|
34 |
msgstr "Der Avatar wurde gelöscht"
|
35 |
|
36 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
|
37 |
+
#, fuzzy, php-format
|
38 |
+
msgid "The attachment \"%1$s\" was successfully deleted."
|
39 |
+
msgstr "Der Avatar wurde gelöscht"
|
|
|
|
|
|
|
40 |
|
41 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
|
42 |
msgid "The changes have been successfully saved."
|
43 |
msgstr "Die Änderungen wurden gespeichert"
|
44 |
|
45 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
46 |
msgid ""
|
47 |
"The email address you entered is already registered to a different user."
|
48 |
msgstr "Die eingegebene E-Mail Adresse ist bereits registriert"
|
49 |
|
50 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
51 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
52 |
msgid "The email address was"
|
53 |
msgstr "Diese E-Mail wurde"
|
54 |
|
55 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
56 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
57 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
58 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
59 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
60 |
msgid "NOT"
|
61 |
msgstr "NICHT"
|
62 |
|
63 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
64 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
65 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
67 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
68 |
msgid "updated along with the rest of the information."
|
69 |
msgstr "mit den restlichen Informationen aktualisiert."
|
70 |
|
71 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
72 |
msgid "The email address you entered is invalid."
|
73 |
msgstr "Die eingegebene E-Mail Adresse ist ungültig!"
|
74 |
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
76 |
msgid "The passwords you entered do not match."
|
77 |
msgstr "Die eingegebenen Passwörter stimmen nicht überein"
|
78 |
|
79 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
80 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
81 |
msgid "The password was"
|
82 |
msgstr "Das Passwort ist"
|
83 |
|
84 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
85 |
msgid "You didn't complete both password fields."
|
86 |
msgstr "Sie haben die beiden Passwort Felder nicht ausgefüllt"
|
87 |
|
88 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
|
89 |
msgid "Your profile was NOT updated!"
|
90 |
msgstr "Ihr Profil wurde NICHT aktualisiert"
|
91 |
|
92 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
|
93 |
msgid "There was an error while trying to upload the following attachments:"
|
94 |
msgstr "Es gab einen Fehler beim hochladen der folgenden Datei:"
|
95 |
|
96 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
97 |
+
#, php-format
|
98 |
+
msgid ""
|
99 |
+
"Possible cause: the size was bigger than %1$sb. The listed attachements were "
|
100 |
+
"%2$sNOT%3$s updated along with the rest of the information."
|
101 |
+
msgstr ""
|
|
|
102 |
|
103 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
104 |
msgid "There was an error while trying to upload your avatar picture."
|
105 |
msgstr "Es gab einen Fehler beim Hochladen des Avartars."
|
106 |
|
107 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
108 |
msgid "Possible cause: size/incorrect file-type."
|
109 |
msgstr "Möglicher Grund: Größe oder falscher Dateityp."
|
110 |
|
111 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
112 |
msgid "The avatar was"
|
113 |
msgstr "Der Avatar ist"
|
114 |
|
115 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
|
116 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:897
|
117 |
msgid "There was an error while trying to upload the following attachment(s)"
|
118 |
msgstr "Es gab einen Fehler beim Hochladen der/des folgenden Anhang/e:"
|
119 |
|
120 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
|
121 |
+
#, php-format
|
122 |
+
msgid ""
|
123 |
+
"Only files with the following extension(s) can be uploaded: %1$s<br/>This "
|
124 |
+
"file was %2$sNOT%3$s updated along with the rest of the information."
|
125 |
+
msgstr ""
|
|
|
|
|
126 |
|
127 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
|
128 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1277
|
129 |
msgid "Name"
|
130 |
msgstr "Name"
|
131 |
|
132 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
|
133 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
|
134 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1298
|
|
|
135 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
136 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
|
137 |
msgid "Username"
|
138 |
msgstr "Benutzername"
|
139 |
|
140 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
|
141 |
msgid "Usernames cannot be changed."
|
142 |
msgstr "Benutzernamen können nicht geändert werden"
|
143 |
|
144 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
|
145 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
|
146 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:726
|
147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:746
|
148 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:796
|
149 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:817
|
150 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:835
|
151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:853
|
152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:871
|
153 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:892
|
154 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
155 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
156 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
165 |
msgid "This field is marked as required by the administrator."
|
166 |
msgstr "Dieses Feld wird benötigt."
|
167 |
|
168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
|
169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
|
170 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:729
|
171 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:749
|
172 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
|
173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
|
174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
|
175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:855
|
176 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
|
177 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
|
178 |
msgid ""
|
179 |
"This field wasn't updated because you entered and empty string (It was "
|
180 |
"marked as required by the administrator."
|
181 |
msgstr ""
|
182 |
"Das Feld wurde nicht aktualisiert da es leer ist, jedoch benötigt wird."
|
183 |
|
184 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
|
185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1322
|
186 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
187 |
msgid "First Name"
|
188 |
msgstr "Vorname"
|
189 |
|
190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
|
191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1346
|
192 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
193 |
msgid "Last Name"
|
194 |
msgstr "Nachname"
|
195 |
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
|
197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1370
|
198 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
199 |
msgid "Nickname"
|
200 |
msgstr "Nickname"
|
201 |
|
202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:757
|
203 |
msgid "Display name publicly as"
|
204 |
msgstr "angezeigter Name..."
|
205 |
|
206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
|
207 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1376
|
208 |
msgid "Contact Info"
|
209 |
msgstr "E-Mail"
|
210 |
|
211 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
|
212 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1397
|
|
|
213 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
214 |
msgid "E-mail"
|
215 |
msgstr "E-Mail"
|
216 |
|
217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
|
218 |
msgid "(required)"
|
219 |
msgstr "erforderlich"
|
220 |
|
221 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
|
222 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1421
|
223 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
224 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
|
225 |
msgid "Website"
|
226 |
msgstr "Website"
|
227 |
|
228 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
|
229 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1445
|
230 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
231 |
msgid "AIM"
|
232 |
msgstr "AIM"
|
233 |
|
234 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
|
235 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1469
|
236 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
237 |
msgid "Yahoo IM"
|
238 |
msgstr "Yahoo IM"
|
239 |
|
240 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
|
241 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1493
|
242 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
243 |
msgid "Jabber / Google Talk"
|
244 |
msgstr "Jabber / Google Talk"
|
245 |
|
246 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
|
247 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1499
|
248 |
msgid "About Yourself"
|
249 |
msgstr "Über Sie"
|
250 |
|
251 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
|
252 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1520
|
253 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
254 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
|
255 |
msgid "Biographical Info"
|
256 |
msgstr "Sonstige Angaben"
|
257 |
|
258 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
|
259 |
msgid "New Password"
|
260 |
msgstr "Neues Passwort"
|
261 |
|
262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
|
263 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
|
264 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
|
265 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
266 |
msgid "Repeat Password"
|
267 |
msgstr "Passwort wiederholen"
|
268 |
|
269 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
|
270 |
msgid "Update"
|
271 |
msgstr "Aktualisieren"
|
272 |
|
273 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
274 |
+
#, fuzzy, php-format
|
275 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
276 |
msgstr "Sie sind eingeloggt als"
|
277 |
|
278 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
279 |
msgid "Log out of this account"
|
280 |
msgstr "Aus diesem Profil ausloggen"
|
281 |
|
282 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
283 |
msgid "Log out"
|
284 |
msgstr "Ausloggen"
|
285 |
|
286 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
|
287 |
+
#, fuzzy, php-format
|
288 |
+
msgid "You have successfully logged in as %1$s"
|
289 |
msgstr "Sie sind eingeloggt als"
|
290 |
|
291 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
292 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
293 |
+
#, fuzzy, php-format
|
294 |
msgid ""
|
295 |
"You will soon be redirected automatically. If you see this page for more "
|
296 |
+
"than 1 second, please click %1$s"
|
297 |
msgstr ""
|
298 |
"Sie werden umgehend weitergeleitet. Wenn Sie diesen Text länger als 3 "
|
299 |
"Sekunden sehen klicken Sie bitte "
|
300 |
|
301 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
302 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
303 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
304 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
305 |
msgid "here"
|
306 |
msgstr "hier"
|
307 |
|
308 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
309 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
310 |
msgid "ERROR:"
|
311 |
msgstr "FEHLER"
|
312 |
|
313 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
314 |
msgid "The username field is empty"
|
315 |
msgstr "Das Feld Benutzername ist leer"
|
316 |
|
317 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
|
318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
|
319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
|
320 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1553
|
321 |
msgid "Password"
|
322 |
msgstr "Passwort"
|
323 |
|
324 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
|
325 |
msgid "Log in"
|
326 |
msgstr "Einloggen"
|
327 |
|
328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
329 |
msgid "Remember me"
|
330 |
msgstr "Daten merken"
|
331 |
|
332 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:157
|
333 |
msgid "Lost password?"
|
334 |
msgstr "Passwort vergessen"
|
335 |
|
336 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
337 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
339 |
msgid "ERROR"
|
340 |
msgstr "FEHLER"
|
341 |
|
342 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
343 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
344 |
msgid ""
|
345 |
"Your account has to be confirmed by an administrator before you can use the "
|
348 |
"Ihr Account muss erst durch den Administrator freigegeben werden bevor Sie "
|
349 |
"das Passwort ändern können."
|
350 |
|
351 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
|
352 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
|
353 |
+
#, fuzzy, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
msgid ""
|
355 |
+
"A password reset email has been sent to %1$s.<br/>Following the link sent in "
|
356 |
+
"the email address will reset the password."
|
357 |
+
msgstr "Folgen Sie dem Link in der E-Mail um Ihr Passwort zurückzusetzen."
|
|
|
358 |
|
359 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
360 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
|
361 |
+
#, php-format
|
362 |
+
msgid ""
|
363 |
+
"Someone requested that the password be reset for the following account: <b>"
|
364 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
365 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
366 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
|
368 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
|
369 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
|
370 |
+
#, fuzzy, php-format
|
371 |
+
msgid "Password Reset Feature from \"%1$s\""
|
372 |
msgstr "Passwort zurücksetzen von"
|
373 |
|
374 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
375 |
+
#, fuzzy, php-format
|
376 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
377 |
msgstr "Es gab einen Fehler beim Senden des Aktivierungslinks an "
|
378 |
|
379 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
380 |
msgid "The email address entered wasn't found in the database!"
|
381 |
msgstr ""
|
382 |
"Die angegebene E-Mail-Adresse konnte nicht in unserer Datenbank gefunden "
|
383 |
"werden!"
|
384 |
|
385 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
386 |
msgid "Please check that you entered the correct email address."
|
387 |
msgstr "Bitte überprüfen Sie die eingegebene E-Mail-Adresse."
|
388 |
|
389 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
390 |
+
msgid "There was an error while trying to send the activation link to "
|
391 |
+
msgstr "Es gab einen Fehler beim Senden des Aktivierungslinks an "
|
392 |
+
|
393 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
394 |
msgid "The username entered wasn't found in the database!"
|
395 |
msgstr ""
|
396 |
"Der angegebene Benutzername konnte nicht in unserer Datenbank gefunden "
|
397 |
"werden!"
|
398 |
|
399 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
400 |
msgid "Please check that you entered the correct username."
|
401 |
msgstr "Bitte überprüfen Sie den eingegebenen Benutzernamen."
|
402 |
|
403 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
|
404 |
msgid "Your password has been successfully changed!"
|
405 |
msgstr "Ihr Passwort wurde erfolgreich geändert!"
|
406 |
|
407 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
|
408 |
+
#, fuzzy, php-format
|
409 |
+
msgid "You have successfully reset your password to: %1$s"
|
410 |
msgstr "Ihr neues Passwort lautet:"
|
411 |
|
412 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
|
413 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
|
414 |
+
#, fuzzy, php-format
|
415 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
416 |
msgstr "Passwort zurückgesetzt für:"
|
417 |
|
418 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
|
419 |
+
#, fuzzy, php-format
|
420 |
+
msgid ""
|
421 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
422 |
+
"her new password is:%2$s"
|
|
|
|
|
423 |
msgstr "hat eine Anfrage zum Zurücksetzen des Passwortes gesendet."
|
424 |
|
425 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
|
426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:894
|
|
|
|
|
|
|
|
|
427 |
msgid "The entered passwords don't match!"
|
428 |
msgstr "Die eingegebenen Passwörter stimmen nicht überein!"
|
429 |
|
430 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
|
431 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
|
432 |
msgid "Reset Password"
|
433 |
msgstr "Passwort zurücksetzen"
|
434 |
|
435 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
436 |
msgid "Invalid key!"
|
437 |
msgstr "Ungültige Eingabe"
|
438 |
|
439 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
440 |
msgid "Please enter your username or email address."
|
441 |
msgstr ""
|
442 |
"Bitte geben Sie Ihren Benutzernamen oder Ihre E-Mail-Adresse ein mit der Sie "
|
443 |
"sich registriert haben."
|
444 |
|
445 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
446 |
msgid "You will receive a link to create a new password via email."
|
447 |
msgstr ""
|
448 |
"Sie erhalten eine E-Mail mit einem Link zum Zurücksetzen des Passwortes."
|
449 |
|
450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
451 |
msgid "Username or E-mail"
|
452 |
msgstr "Benutzername oder E-Mail"
|
453 |
|
454 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
455 |
msgid "Get New Password"
|
456 |
msgstr "Neues Passwort anfordern"
|
457 |
|
500 |
msgid "There was an error while trying to activate the user."
|
501 |
msgstr "Es gab einen Fehler bei der Aktivierung des Benutzers."
|
502 |
|
503 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
|
504 |
+
#, php-format
|
505 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
506 |
+
msgstr ""
|
507 |
|
508 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
509 |
msgid ""
|
510 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
511 |
"please remember that you need to approve this user before he/she can log in!"
|
513 |
"Die \"Zustimmung des Administrators\" ist zur Aktivierung des Benutzers "
|
514 |
"erforderlich."
|
515 |
|
516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
517 |
msgid "A new subscriber has (been) registered!"
|
518 |
msgstr "Ein neuer Benutzer hat sich angemeldet!"
|
519 |
|
520 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:522
|
521 |
msgid "A new account has been created for you."
|
522 |
msgstr "Ein neues Benutzerprofil wurde für Sie erstellt."
|
523 |
|
524 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
525 |
+
#, php-format
|
526 |
+
msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
|
527 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
528 |
|
529 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
|
530 |
msgid ""
|
531 |
"Before you can access your account, an administrator needs to approve it. "
|
532 |
"You will be notified via email."
|
534 |
"Bevor Sie auf Ihr Benutzerprofil zugreifen können ist die Zustimmung eines "
|
535 |
"Administrators nötig. Sie werden per E-Mail über die Zustimmung informiert."
|
536 |
|
537 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
|
|
|
|
|
|
|
|
|
538 |
msgid "A username is required for registration."
|
539 |
msgstr "Ein Benutzername ist zur Registrierung notwendig."
|
540 |
|
541 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
|
542 |
msgid "Sorry, that username already exists!"
|
543 |
msgstr "Der Benutzername ist bereits registriert."
|
544 |
|
545 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:887
|
546 |
msgid "You must enter a valid email address."
|
547 |
msgstr "Sie müssen eine gültige E-Mail-Adresse eingeben."
|
548 |
|
549 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:889
|
550 |
msgid "Sorry, that email address is already used!"
|
551 |
msgstr "Diese E-Mail-Adresse ist bereits registriert."
|
552 |
|
553 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
|
554 |
msgid "You didn't complete one of the password-fields!"
|
555 |
msgstr "Eines der Passwortfelder wurde nicht ausgefüllt."
|
556 |
|
557 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
558 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
559 |
+
msgstr "Nur Dateien mit den folgenden Anhängen sind verwendbar:"
|
560 |
+
|
561 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
562 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
563 |
msgid "The account was NOT created!"
|
564 |
msgstr "Der Benutzer wurde nicht erstellt."
|
565 |
|
566 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:908
|
567 |
msgid "You must agree to the terms and conditions before registering!"
|
568 |
msgstr "Sie müssen den AGB zustimmen!"
|
569 |
|
570 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
571 |
msgid "(Several required fields were left uncompleted)"
|
572 |
msgstr "Einige zur Registrierung notwendige Felder wurde nicht ausgefüllt."
|
573 |
|
574 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
575 |
msgid "This username is already reserved to be used soon."
|
576 |
msgstr "Dieser Benutzername ist reserviert."
|
577 |
|
578 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
579 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
580 |
msgid "Please try a different one!"
|
581 |
msgstr "Bitte wählen Sie einen anderen."
|
582 |
|
583 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
584 |
msgid "This email address is already reserved to be used soon."
|
585 |
msgstr "Dieser E-Mail-Adresse ist reserviert."
|
586 |
|
587 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
588 |
msgid "You are logged in as"
|
589 |
msgstr "Sie sind eingeloggt als "
|
590 |
|
591 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
592 |
msgid "You don't need another account."
|
593 |
msgstr "Sie benötigen keinen weiteren Account."
|
594 |
|
595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
596 |
msgid "Log out of this account."
|
597 |
msgstr "Aus diesem Profil ausloggen."
|
598 |
|
599 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
600 |
msgid "Logout"
|
601 |
msgstr "Ausloggen"
|
602 |
|
603 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
604 |
+
#, fuzzy, php-format
|
605 |
+
msgid ""
|
606 |
+
"An email has been sent to %1$s with information on how to activate his/her "
|
607 |
+
"account."
|
|
|
608 |
msgstr ""
|
609 |
+
"Eine E-Mail, mit der Information wie Ihr Profil aktiviert wird, wurde an Sie "
|
610 |
+
"gesendet"
|
611 |
|
612 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1172
|
613 |
+
#, fuzzy, php-format
|
614 |
+
msgid "A user account has been created for %1$s."
|
615 |
msgstr "Ein Benutzer wurde erstellt für"
|
616 |
|
617 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
618 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
619 |
+
#, fuzzy, php-format
|
620 |
msgid ""
|
621 |
"You will soon be redirected automatically. If you see this page for more "
|
622 |
+
"than 3 seconds, please click %1$s.%2$s"
|
623 |
msgstr ""
|
624 |
"Sie werden umgehend weitergeleitet. Wenn Sie diesen Text länger als 3 "
|
625 |
"Sekunden sehen klicken Sie bitte "
|
626 |
|
627 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1197
|
628 |
+
#, fuzzy
|
629 |
msgid ""
|
630 |
"An email has been sent to you with information on how to activate your "
|
631 |
+
"account."
|
632 |
msgstr ""
|
633 |
"Eine E-Mail, mit der Information wie Ihr Profil aktiviert wird, wurde an Sie "
|
634 |
"gesendet"
|
635 |
|
636 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1201
|
637 |
+
#, fuzzy, php-format
|
638 |
+
msgid "Thank you for registering %1$s."
|
639 |
msgstr "Vielen Dank für die Registrierung."
|
640 |
|
641 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1228
|
642 |
msgid "An error occured while trying to send the notification email."
|
643 |
msgstr ""
|
644 |
"Ein Fehler ist aufgetreten beim Versuch, die Benachrichtigungs-Email zu "
|
645 |
"senden."
|
646 |
|
647 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
648 |
msgid "An email containing activation instructions was successfully sent."
|
649 |
msgstr ""
|
650 |
"Eine E-Mail mit Anweisungen zur Aktivierung wurde erfolgreich gesendet."
|
651 |
|
652 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
653 |
msgid "An email containing the username and password was successfully sent."
|
654 |
msgstr ""
|
655 |
"Eine E-Mail mit dem Benutzernamen und Passwort wurde erfolgreich gesendet."
|
656 |
|
657 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1254
|
658 |
msgid "Users can register themselves or you can manually create users here."
|
659 |
msgstr ""
|
660 |
"Benutzer können sich selbstständig registrieren oder manuell angelegt werden."
|
661 |
|
662 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
663 |
msgid ""
|
664 |
"Users cannot currently register themselves, but you can manually create "
|
665 |
"users here."
|
667 |
"Benutzer können sich nicht selbstständig registrieren jedoch manuell "
|
668 |
"angelegt werden."
|
669 |
|
670 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
671 |
msgid "Only an administrator can add new users."
|
672 |
msgstr "Nur Administratoren können neue Benutze anlegen."
|
673 |
|
674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1287
|
675 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1311
|
676 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1335
|
677 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1359
|
678 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1410
|
679 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1434
|
680 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1458
|
681 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1482
|
682 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1509
|
683 |
msgid ""
|
684 |
"This field must be filled out before registering (It was marked as required "
|
685 |
"by the administrator)"
|
686 |
msgstr "Dieses Feld wird zur Registrierung benötigt."
|
687 |
|
688 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1308
|
689 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1332
|
690 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1356
|
691 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1383
|
692 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1407
|
693 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1431
|
694 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1455
|
695 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1479
|
696 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1506
|
697 |
msgid "This field is marked as required by the administrator"
|
698 |
msgstr "Dieses Feld wird zur Registrierung benötigt."
|
699 |
|
700 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1581
|
701 |
msgid "Anti-Spam"
|
702 |
msgstr "Anti-Spam"
|
703 |
|
704 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1602
|
705 |
msgid "Send these credentials via email."
|
706 |
msgstr "Senden Sie diese Anmeldeinformationen per E-Mail."
|
707 |
|
708 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
709 |
msgid "Add User"
|
710 |
msgstr "Benutzer hinzufügen"
|
711 |
|
712 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
713 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
714 |
msgid "Register"
|
715 |
msgstr "Regstrieren"
|
728 |
msgid "Visibility"
|
729 |
msgstr "Sichtbarkeit"
|
730 |
|
731 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
|
732 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
733 |
+
msgid "Default"
|
734 |
+
msgstr "Standart"
|
735 |
+
|
736 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
|
737 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
738 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
739 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
749 |
msgid "Show"
|
750 |
msgstr "Anzeigen"
|
751 |
|
752 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
|
753 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
754 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
755 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
765 |
msgid "Hide"
|
766 |
msgstr "Verbergen"
|
767 |
|
768 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
769 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
770 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
771 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
772 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
|
773 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
774 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
|
775 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
776 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
777 |
msgid "Save Changes"
|
898 |
msgid "shortcode."
|
899 |
msgstr "Shortcode"
|
900 |
|
901 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
902 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
903 |
+
msgid "NOTE:"
|
904 |
+
msgstr "Hinweis"
|
905 |
+
|
906 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
907 |
msgid "this plugin only adds/removes fields in the front-end."
|
908 |
msgstr "dieses Plugin entfernt oder fügt die Felder nur im Frontend hinzu."
|
951 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
952 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
953 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
954 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
|
955 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
|
956 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
|
957 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
|
958 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
|
959 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
|
960 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
|
961 |
msgid "Yes"
|
962 |
msgstr "Ja"
|
963 |
|
975 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
976 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
977 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
978 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
|
979 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
|
980 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
|
981 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
|
982 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
|
983 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
|
984 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
|
985 |
msgid "No"
|
986 |
msgstr "Nein"
|
987 |
|
1005 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1006 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1007 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1008 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
|
1009 |
msgid "General Settings"
|
1010 |
msgstr "Allgemeine Einstellungen"
|
1011 |
|
1013 |
msgid "Stylesheet Used on the Front-End:"
|
1014 |
msgstr "Genutztes Stylesheet im Frontend"
|
1015 |
|
|
|
|
|
|
|
|
|
1016 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1017 |
msgid "White"
|
1018 |
msgstr "Weiss"
|
1054 |
"sind. "
|
1055 |
|
1056 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1057 |
+
#, php-format
|
1058 |
msgid ""
|
1059 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1060 |
+
"Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
|
1061 |
+
"access to automatic updates and support. Need a license key? %3$sPurchase "
|
1062 |
+
"one now%4$s"
|
|
|
|
|
|
|
1063 |
msgstr ""
|
1064 |
|
1065 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1066 |
+
#, php-format
|
1067 |
msgid ""
|
1068 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1069 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1070 |
+
"priority support. %3$sPurchase one now%4$s"
|
|
|
|
|
|
|
|
|
1071 |
msgstr ""
|
1072 |
|
1073 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1124 |
msgstr "Inaktiv"
|
1125 |
|
1126 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1127 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
|
1128 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
|
1129 |
msgid "Custom Redirects"
|
1130 |
msgstr "Weiterleitungen"
|
1131 |
|
1135 |
msgid "reCAPTCHA"
|
1136 |
msgstr "reCAPTCHA"
|
1137 |
|
1138 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
|
1139 |
msgid "Redirects on custom page requests:"
|
1140 |
msgstr "Weiterleitung auf benutzerdefinierte Seiten:"
|
1141 |
|
1142 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
|
1143 |
msgid "Action"
|
1144 |
msgstr "Aktion"
|
1145 |
|
1146 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
|
1147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
|
1148 |
msgid "Redirect"
|
1149 |
msgstr "Weiterleiten"
|
1150 |
|
1151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
|
1152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
|
1153 |
msgid "URL"
|
1154 |
msgstr "URL"
|
1155 |
|
1156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
|
1157 |
msgid "After Registration:"
|
1158 |
msgstr "Nach Registrierung"
|
1159 |
|
1160 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
|
1161 |
#, fuzzy
|
1162 |
msgid "After Login:"
|
1163 |
msgstr "Nach Login"
|
1164 |
|
1165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
|
1166 |
#, fuzzy
|
1167 |
msgid "Recover Password (*)"
|
1168 |
msgstr "Passowrt wiederherstellen"
|
1169 |
|
1170 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
|
1171 |
msgid ""
|
1172 |
"When activated this feature will redirect the user on both the default "
|
1173 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1177 |
"\"Wordpress Passwort wiederherstellen/\"und /\"Passwort vergessen/\" auf die "
|
1178 |
"im Front-End eingestellte Seite weitergeleitet."
|
1179 |
|
1180 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
|
1181 |
msgid "Redirects on default WordPress page requests:"
|
1182 |
msgstr "Weiterleitung der Standart-Wordpress-Seite"
|
1183 |
|
1184 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
|
1185 |
msgid "Requested WP Page"
|
1186 |
msgstr "Angefragte WP Seite"
|
1187 |
|
1188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
|
1189 |
+
#, fuzzy
|
1190 |
+
msgid "Default WP Login Page (*)"
|
1191 |
msgstr "Standart WP Login Seite(*)"
|
1192 |
|
1193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
|
1194 |
+
#, fuzzy
|
1195 |
+
msgid "Default WP Logout Page (**)"
|
1196 |
msgstr "Standart WP Logout Seite (**)"
|
1197 |
|
1198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
|
1199 |
msgid "Default WP Register Page"
|
1200 |
msgstr "Standart WP Registrierung"
|
1201 |
|
1202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
|
1203 |
msgid "Default WP Dashboard (***)"
|
1204 |
msgstr "Standart WP Dashboard (***)"
|
1205 |
|
1206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
|
1207 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1208 |
msgstr ""
|
1209 |
"Vor dem Login. Arbeitet am besten wenn es mit dem \"Nach dem Logout\" "
|
1210 |
"zusammen eingestellt ist."
|
1211 |
|
1212 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
|
1213 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1214 |
msgstr ""
|
1215 |
"Nach dem Logout. Arbeitet am besten wenn es mit dem \"Vor dem Login\" "
|
1216 |
"zusammen eingestellt ist."
|
1217 |
|
1218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
|
1219 |
msgid ""
|
1220 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1221 |
"manage options)."
|
1226 |
msgstr "Sockel kann nicht geöffnet werden"
|
1227 |
|
1228 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
|
|
1229 |
msgid "To use reCAPTCHA you must get an API key from"
|
1230 |
msgstr "Um den reCAPTCHA zu nutzen benötigen Sie einen Schlüssel von"
|
1231 |
|
1275 |
msgid "Private Key:"
|
1276 |
msgstr "Privater Schlüssel"
|
1277 |
|
1278 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
|
1279 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1280 |
msgstr ""
|
1281 |
"Das reCaptcha wurde nicht erfolgreich eingegeben. Bitte gehen Sie zurück und "
|
1297 |
"Wenn Sie das User-Listing nur eingeloggten Benutzern anzeigen wollen, fügen "
|
1298 |
"Sie bitte folgenden Code ein:"
|
1299 |
|
1300 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1301 |
+
msgid ""
|
1302 |
+
"You can also create a userlisting page that displays users having a certain "
|
1303 |
+
"meta-value within a certain (extra) meta-field like so:"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1307 |
+
msgid ""
|
1308 |
+
"Remember though, that the field-value combination must exist in the database."
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
|
1312 |
msgid "These settings are applied to the front-end userlisting."
|
1313 |
msgstr "Diese Einstellungen werden im Front End des User-Listings angezeigt."
|
1314 |
|
1315 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:46
|
1316 |
msgid "Number of Users/Page: "
|
1317 |
msgstr "Anzahl Benutzer/Seite"
|
1318 |
|
1319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:63
|
1320 |
msgid "Default Sorting Order: "
|
1321 |
msgstr "Standart Sortierfolge"
|
1322 |
|
1323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
|
1324 |
msgid "\"All-Userlisting\" Template"
|
1325 |
msgstr "\"All-Userlisting\" Template"
|
1326 |
|
1327 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1329 |
msgid ""
|
1330 |
"With the userlisting templates you can customize the look, feel and "
|
1331 |
"information listed by the shortcode."
|
1333 |
"Mit dem User-Listing Template können Sie das Aussehen und die Informationen "
|
1334 |
"per Shortcode anzeigen lassen."
|
1335 |
|
1336 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
|
1337 |
msgid ""
|
1338 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1339 |
"on each page access where the shortcode is present."
|
1341 |
"Das \"All User Listing\"-Template zeigt die Liste aller Benutzer an. Es wird "
|
1342 |
"überall angezeigt wo der Shortcode implementiert ist"
|
1343 |
|
1344 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
|
1345 |
msgid "Avatar size: "
|
1346 |
msgstr "Avatar Größe"
|
1347 |
|
1348 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:97
|
1349 |
msgid "Insert \"Sort By\" Field:"
|
1350 |
msgstr "\"Sortieren nach\" Feld einfügen"
|
1351 |
|
1352 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:125
|
1353 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
|
1354 |
msgid "Insert \"User-Meta\" Field:"
|
1355 |
msgstr "\"User Meta\" Feld einfügen"
|
1356 |
|
1357 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:156
|
1358 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:262
|
1359 |
msgid "Insert Extra Functions:"
|
1360 |
msgstr "Extra Funktionen einfügen"
|
1361 |
|
1362 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:171
|
1363 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1364 |
msgstr "Zeige/Verberge Standart-\"All-User-Listing\"-Code"
|
1365 |
|
1366 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:173
|
1367 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:276
|
1368 |
msgid ""
|
1369 |
"If you wish to use a default userlisting, just copy the following code and "
|
1370 |
"paste it in the textarea below:"
|
1372 |
"Wenn Sie das Standart Userlisting nutzen möchten, kopieren Sie den Code in "
|
1373 |
"die untere Textfläche:"
|
1374 |
|
1375 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
|
1376 |
msgid "\"Single-Userlisting\" Template"
|
1377 |
msgstr "\"Single-Userlisting\"-Template"
|
1378 |
|
1379 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:219
|
1380 |
msgid ""
|
1381 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1382 |
"It's displayed when clickin on the \"more info\" link."
|
1384 |
"Das \"Single-User-List\"-Template zeigt die Daten eines einzelnen Benutzers "
|
1385 |
"an. Es wird angezeigt sobald man auf \"Mehr Infos\" klickt."
|
1386 |
|
1387 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:274
|
1388 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1389 |
msgstr "Zeige/Verberge Standart-\"Single-User-Listing\"-Code"
|
1390 |
|
1391 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1392 |
msgid ""
|
1393 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1394 |
msgstr "Sie müssen das User-Listing im \"Addons\" aktivieren!"
|
1395 |
|
1396 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1397 |
msgid "You can find it in Profile Builder's menu."
|
1398 |
msgstr "Sie finden es im Profile Builder Menü."
|
1399 |
|
1400 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
|
1401 |
msgid "You need to be logged in to view the userlisting!"
|
1402 |
msgstr "Sie müssen eingeloggt sein um die User-Listings sehen zu können."
|
1403 |
|
1404 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
|
1405 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
|
1406 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1407 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1328
|
1408 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1414
|
1409 |
msgid "Search Users by All Fields"
|
1410 |
msgstr "Suche Benutzer nach alle Felder"
|
1411 |
|
1412 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1413 |
msgid "Leave Blank and Press Search to List All Users"
|
1414 |
msgstr "Lassen Sie dieses Feld frei um nach allen Benutzern zu suchen."
|
1415 |
|
1416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
|
1417 |
msgid "Search"
|
1418 |
msgstr "Suche"
|
1419 |
|
1420 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
|
1421 |
msgid "First/Lastname"
|
1422 |
msgstr "Vor/Nachname"
|
1423 |
|
1424 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
|
1425 |
msgid "Email"
|
1426 |
msgstr "E-Mail"
|
1427 |
|
1428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
|
1429 |
msgid "Sign-up Date"
|
1430 |
msgstr "Registrierungsdatum"
|
1431 |
|
1432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
|
1433 |
msgid "Firstname"
|
1434 |
msgstr "Vorname"
|
1435 |
|
1436 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
|
1437 |
msgid "Lastname"
|
1438 |
msgstr "Nachname"
|
1439 |
|
1440 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
|
1441 |
msgid "Display Name"
|
1442 |
msgstr "Angezeigter Name"
|
1443 |
|
1444 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
|
1445 |
msgid "Posts"
|
1446 |
msgstr "Posts"
|
1447 |
|
1448 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1449 |
msgid "Click here to see more information about this user"
|
1450 |
msgstr "Klicken Sie hie rum weitere Informationen über den Benutzer zu sehen"
|
1451 |
|
1452 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1453 |
msgid "More..."
|
1454 |
msgstr "Mehr..."
|
1455 |
|
1456 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
|
1457 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1458 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1459 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1460 |
msgid "No uploaded attachment"
|
1461 |
msgstr "Keine hochgeladenen Anhänge"
|
1462 |
|
1463 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
|
1464 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1465 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1160
|
1466 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1467 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1468 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1471 |
msgid "Click to see the current attachment"
|
1472 |
msgstr "Klicken um Anhänge zu sehen"
|
1473 |
|
1474 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1475 |
msgid "Click here to go back"
|
1476 |
msgstr "Hier klicken um zurück zu gehen"
|
1477 |
|
1478 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1479 |
msgid "Back"
|
1480 |
msgstr "Zurück"
|
1481 |
|
1482 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1483 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1484 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1485 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1486 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1489 |
msgid "Current file"
|
1490 |
msgstr "Aktuelle Datei"
|
1491 |
|
1492 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
|
1493 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1494 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1495 |
msgid "Avatar"
|
1496 |
msgstr "Avatar"
|
1497 |
|
1498 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1215
|
1499 |
msgid "No results found!"
|
1500 |
msgstr "Keine Ergebnisse gefunden"
|
1501 |
|
1502 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1503 |
msgid "«« First"
|
1504 |
msgstr "«« Erster"
|
1505 |
|
1506 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1507 |
msgid "« Prev"
|
1508 |
msgstr "Letzter"
|
1509 |
|
1510 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1511 |
msgid "Next » "
|
1512 |
msgstr "Nächster » "
|
1513 |
|
1514 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
|
1515 |
msgid "Last »»"
|
1516 |
msgstr "Letzter »»"
|
1517 |
|
1518 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
|
1519 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
|
1520 |
msgid "You must give your option a title."
|
1521 |
msgstr "Sie müssen der Option einen Titel geben."
|
1522 |
|
1523 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
|
1524 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
|
1525 |
msgid "You have entered an invalid meta-key format!"
|
1526 |
msgstr "Sie haben ein ungültiges Format des Meta-Keys eingegeben."
|
1527 |
|
1528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
|
1529 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
|
1530 |
msgid "You must enter a valid meta-key."
|
1531 |
msgstr "Geben Sie einen gültigen Meta-Key ein."
|
1532 |
|
1533 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
|
1534 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1535 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:447
|
1536 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
|
1537 |
msgid "That meta-key is already in use."
|
1538 |
msgstr "Der Meta-Key wird bereits verwendet."
|
1539 |
|
1540 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1541 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1542 |
msgid ""
|
1543 |
"There is already an avatar input-type. You can only have one avatar present."
|
1544 |
msgstr "Es ist bereits ein Avatar vorhanden."
|
1545 |
|
1546 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:324
|
1547 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:474
|
1548 |
msgid ""
|
1549 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1550 |
"have one present."
|
1551 |
msgstr "Es existiert bereits eine \"Agree to Terms and Conditions\"-Checkbox."
|
1552 |
|
1553 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:329
|
1554 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:479
|
1555 |
msgid "The textarea row value must be numeric."
|
1556 |
msgstr "Der Wert der Zeilenanzahl muss numerisch sein."
|
1557 |
|
1558 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1559 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1560 |
msgid "The maxlength attribute must be numeric."
|
1561 |
msgstr "Das \"maxlength\"-Attribut muss numerisch sein."
|
1562 |
|
1563 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1565 |
msgid "The value must be between 20 and 200!"
|
1566 |
msgstr "Der Wert muss zwischen 20 und 200 liegen."
|
1567 |
|
1568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1569 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1570 |
msgid "The width component of the entered value must be numeric!"
|
1571 |
msgstr "Der Wert \"Breite\" muss numerisch sein."
|
1572 |
|
1573 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1574 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1575 |
msgid "The height component of the entered value must be numeric!"
|
1576 |
msgstr "Der Wert \"Höhe\" muss numerisch sein."
|
1577 |
|
1578 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1579 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1580 |
msgid "The width component of the entered value must be between 20 and 200!"
|
1581 |
msgstr "Der Wert \"Breite\" muss zwischen 20 und 200 liegen."
|
1582 |
|
1583 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1584 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1585 |
msgid "The height component of the entered value must be between 20 and 200!"
|
1586 |
msgstr "Der Wert \"Höhe\" muss zwischen 20 und 200 liegen."
|
1587 |
|
1588 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
|
1589 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
|
1590 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1591 |
msgstr "Die eingegebenen Werte haben nicht das richtige Format (Breite/Höhe)"
|
1592 |
|
1593 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
|
1594 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:506
|
1595 |
msgid "The entered avatar size must be numeric!"
|
1596 |
msgstr "Die eingegebene Größe des Avatars muss numerisch sein"
|
1597 |
|
1598 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:390
|
1599 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:566
|
1600 |
msgid "There was an error, please try again."
|
1601 |
msgstr "Fehler, bitte versuchen Sie es erneut."
|
1602 |
|
1609 |
msgstr "den aktuellen Benutzer?"
|
1610 |
|
1611 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1612 |
+
#, fuzzy, php-format
|
1613 |
+
msgid "Your account on %1$s has been approved!"
|
|
|
|
|
|
|
|
|
1614 |
msgstr "wurde genehmigt"
|
1615 |
|
1616 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1617 |
+
#, fuzzy, php-format
|
1618 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1619 |
msgstr "Ein Administrator hat Ihr Profil soeben genehmigt."
|
1620 |
|
1621 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1622 |
+
#, fuzzy, php-format
|
1623 |
+
msgid "Your account on %1$s has been unapproved!"
|
1624 |
msgstr "wurde nicht genehmigt."
|
1625 |
|
1626 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1627 |
+
#, fuzzy, php-format
|
1628 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1629 |
msgstr "Ein Administrator hat Ihr Profil nicht genehmigt auf"
|
1630 |
|
1631 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1657 |
msgstr "genehmigt"
|
1658 |
|
1659 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1660 |
+
#, fuzzy, php-format
|
1661 |
+
msgid "Are you sure you want to %1$s this user?"
|
1662 |
+
msgstr "Sind Sie sicher dass Sie den Avatar löschen möchten?"
|
|
|
|
|
|
|
1663 |
|
1664 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1665 |
msgid ""
|
1919 |
msgid "Don't have an account?"
|
1920 |
msgstr "Sie haben noch kein Profil?"
|
1921 |
|
1922 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1923 |
+
#, fuzzy
|
1924 |
+
msgid "Lost Password"
|
1925 |
+
msgstr "Passwort vergessen"
|
1926 |
+
|
1927 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1928 |
msgid "Lost Your Password?"
|
1929 |
msgstr "Sie haben Ihr Passwort vergessen?"
|
1933 |
msgstr "Einloggen"
|
1934 |
|
1935 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1936 |
+
#, fuzzy
|
1937 |
+
msgid "After login redirect URL (optional):"
|
1938 |
msgstr "Weiterleitungs-URL nach dem Einloggen:"
|
1939 |
|
1940 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1941 |
+
#, fuzzy
|
1942 |
+
msgid "Register page URL (optional):"
|
1943 |
msgstr "URL zur Registrierungsseite:"
|
1944 |
|
1945 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1946 |
+
#, fuzzy
|
1947 |
+
msgid "Password Recovery page URL (optional):"
|
1948 |
msgstr "URL zur \"Passwort vergessen\"-Seite"
|
1949 |
|
1950 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1957 |
msgstr ""
|
1958 |
"Die Benutzervalidierung ist fehlgeschlagen. Der Avatar wurde nicht gelöscht."
|
1959 |
|
1960 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
|
1961 |
#, php-format
|
1962 |
msgid ""
|
1963 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1964 |
+
"Please %1$sregister your copy%2$s of Profile Builder to receive access to "
|
1965 |
+
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
|
1966 |
+
"%5$sDismiss%6$s"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
|
1970 |
#, php-format
|
1971 |
msgid ""
|
1972 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1973 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1974 |
+
"priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
2051 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2052 |
msgstr "(Bsp.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2053 |
|
2054 |
+
#~ msgid ""
|
2055 |
+
#~ "If you added new roles (via another plugin) <u>after</u> Profile Builder "
|
2056 |
+
#~ "was activated, please reactivate it, since the roles are initialized "
|
2057 |
+
#~ "during plugin activation."
|
2058 |
+
#~ msgstr ""
|
2059 |
+
#~ "Wenn Sie neue Benutzerollen (ueber ein anderes Plugin) erstellt haben "
|
2060 |
+
#~ "<u>nachdem</u> Profile Builder aktiviert wurde, muessen Sie es "
|
2061 |
+
#~ "reaktivieren. "
|
2062 |
+
|
2063 |
+
#~ msgid "The information size you were trying to submit was larger than"
|
2064 |
+
#~ msgstr "Die Information die Sie übertragen wollen ist größer als"
|
2065 |
+
|
2066 |
+
#~ msgid "This is usually caused by a large file(s) trying to be uploaded."
|
2067 |
+
#~ msgstr ""
|
2068 |
+
#~ "Dies wird für gewöhnlich verursacht wenn große Dateien hochgeladen werden "
|
2069 |
+
#~ "sollen."
|
2070 |
+
|
2071 |
+
#~ msgid "Since it was also larger than"
|
2072 |
+
#~ msgstr "Es war größer als:"
|
2073 |
+
|
2074 |
+
#~ msgid "no additional information is available."
|
2075 |
+
#~ msgstr "keine weiteren Informationen verfügbar."
|
2076 |
+
|
2077 |
+
#~ msgid "The attachment"
|
2078 |
+
#~ msgstr "Der Anhang"
|
2079 |
+
|
2080 |
+
#~ msgid "was successfully deleted."
|
2081 |
+
#~ msgstr "wurde erfolgreich gelöscht"
|
2082 |
+
|
2083 |
+
#~ msgid "Possible cause: the size was bigger than"
|
2084 |
+
#~ msgstr "Möglicher Grund: die Datei war größer als"
|
2085 |
+
|
2086 |
+
#~ msgid "The listed attachements were"
|
2087 |
+
#~ msgstr "Die augelisteten Anhänger sind"
|
2088 |
+
|
2089 |
+
#~ msgid "This file was"
|
2090 |
+
#~ msgstr "Der Anhang ist"
|
2091 |
+
|
2092 |
+
#~ msgid "A password reset email has been sent to "
|
2093 |
+
#~ msgstr "Eine E-Mail zum zurücsetzen Ihres Passwortes wurde gesendet an:"
|
2094 |
+
|
2095 |
+
#~ msgid ""
|
2096 |
+
#~ "Someone requested that the password be reset for the following account: "
|
2097 |
+
#~ msgstr ""
|
2098 |
+
#~ "Es wurde ein Anfrage zum Zurücksetzen Ihres Passwortes gestellt. Die "
|
2099 |
+
#~ "Anfrage bezieht sich auf folgenden Account:"
|
2100 |
+
|
2101 |
+
#~ msgid ""
|
2102 |
+
#~ "If this was a mistake, just ignore this email and nothing will happen."
|
2103 |
+
#~ msgstr ""
|
2104 |
+
#~ "Wenn Sie diese Anfrage nicht gesendet haben, ignorieren Sie bitte diese E-"
|
2105 |
+
#~ "Mail!"
|
2106 |
+
|
2107 |
+
#~ msgid "To reset your password, visit the following link:"
|
2108 |
+
#~ msgstr "Um Ihr Passwort zurückzusetzen folgen Sie bitte dem folgenden Link:"
|
2109 |
+
|
2110 |
+
#~ msgid "from"
|
2111 |
+
#~ msgstr "von"
|
2112 |
+
|
2113 |
+
#~ msgid "His/her new password is:"
|
2114 |
+
#~ msgstr "Ihr neues Passwort lautet:"
|
2115 |
+
|
2116 |
+
#~ msgid "New subscriber on"
|
2117 |
+
#~ msgstr "Neue Registreirung bei:"
|
2118 |
+
|
2119 |
+
#~ msgid "Welcome to"
|
2120 |
+
#~ msgstr "Willkommen bei"
|
2121 |
+
|
2122 |
+
#~ msgid "Your username is:"
|
2123 |
+
#~ msgstr "Ihr Benutzername ist:"
|
2124 |
+
|
2125 |
+
#~ msgid "and password:"
|
2126 |
+
#~ msgstr "und das Passwort:"
|
2127 |
+
|
2128 |
+
#~ msgid "The user was NOT created!"
|
2129 |
+
#~ msgstr "Der Benutzer wurde nicht erstellt."
|
2130 |
+
|
2131 |
+
#~ msgid "An email has been sent to "
|
2132 |
+
#~ msgstr "An "
|
2133 |
+
|
2134 |
+
#~ msgid "with information on how to activate his/her account"
|
2135 |
+
#~ msgstr ""
|
2136 |
+
#~ "wurde eine E-Mail mit der Information wie das Profil aktiviert wird "
|
2137 |
+
#~ "gesendet."
|
2138 |
+
|
2139 |
+
#~ msgid "Your account on"
|
2140 |
+
#~ msgstr "Ihr Profil auf"
|
2141 |
+
|
2142 |
+
#~ msgid "Are you sure you want to"
|
2143 |
+
#~ msgstr "Sind Sie sicher dass Sie"
|
2144 |
+
|
2145 |
+
#~ msgid "this user?"
|
2146 |
+
#~ msgstr "diesen Benutzer"
|
2147 |
+
|
2148 |
#~ msgid "Does not."
|
2149 |
#~ msgstr "Nicht"
|
translation/profilebuilder-en_US.mo
CHANGED
Binary file
|
translation/profilebuilder-en_US.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,163 +15,142 @@ msgstr ""
|
|
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:
|
19 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
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:
|
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:
|
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:
|
47 |
-
|
48 |
-
|
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:
|
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:
|
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:
|
64 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
65 |
msgid "The email address was"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
69 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
70 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
71 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
72 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
79 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
80 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
81 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
82 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
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:
|
97 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
98 |
msgid "The password was"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
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:
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
msgid "The listed attachements were"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
130 |
msgid "The avatar was"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
134 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
139 |
-
|
140 |
-
msgid "
|
141 |
-
|
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:
|
148 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
149 |
msgid "Name"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
153 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
154 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
158 |
msgid "Username"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
162 |
msgid "Usernames cannot be changed."
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
166 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
167 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
168 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
169 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
170 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
171 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
172 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
173 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
174 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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
|
@@ -186,287 +165,281 @@ msgstr ""
|
|
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:
|
190 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
191 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
192 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
193 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
194 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
195 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
196 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
197 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
198 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
205 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
211 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
217 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
223 |
msgid "Display name publicly as"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
227 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
228 |
msgid "Contact Info"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
232 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
239 |
msgid "(required)"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
243 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
246 |
msgid "Website"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
250 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
256 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
262 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
268 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
269 |
msgid "About Yourself"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
273 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
276 |
msgid "Biographical Info"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
280 |
msgid "New Password"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
284 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
285 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
286 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
287 |
msgid "Repeat Password"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
291 |
msgid "Update"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
295 |
-
|
|
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
299 |
msgid "Log out of this account"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
303 |
msgid "Log out"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
307 |
-
|
|
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
311 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
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:
|
318 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
319 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
320 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
321 |
msgid "here"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
325 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
326 |
msgid "ERROR:"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
330 |
msgid "The username field is empty"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
334 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
335 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
336 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
337 |
msgid "Password"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
341 |
msgid "Log in"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
345 |
msgid "Remember me"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
349 |
msgid "Lost password?"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
353 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
354 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
355 |
msgid "ERROR"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
366 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
367 |
-
|
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 |
-
"
|
|
|
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:
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
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:
|
392 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
393 |
-
|
|
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
397 |
-
|
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:
|
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:
|
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:
|
|
|
|
|
|
|
|
|
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:
|
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:
|
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:
|
422 |
-
|
423 |
-
|
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:
|
436 |
-
|
|
|
|
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
440 |
-
|
|
|
|
|
|
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
444 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
449 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
450 |
msgid "Reset Password"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
454 |
msgid "Invalid key!"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
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:
|
466 |
msgid "Username or E-mail"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
470 |
msgid "Get New Password"
|
471 |
msgstr ""
|
472 |
|
@@ -510,202 +483,198 @@ msgstr ""
|
|
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:
|
514 |
-
|
|
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
532 |
-
|
533 |
-
|
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:
|
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:
|
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:
|
558 |
msgid "Sorry, that username already exists!"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
574 |
-
|
|
|
|
|
|
|
|
|
575 |
msgid "The account was NOT created!"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
591 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
592 |
msgid "Please try a different one!"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
600 |
msgid "You are logged in as"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
608 |
msgid "Log out of this account."
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
612 |
msgid "Logout"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
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:
|
624 |
-
|
|
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
628 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
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:
|
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:
|
641 |
-
|
|
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
671 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
672 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
673 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
674 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
675 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
676 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
677 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
678 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
685 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
686 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
687 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
688 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
689 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
690 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
691 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
692 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
697 |
msgid "Anti-Spam"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
701 |
msgid "Send these credentials via email."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
705 |
msgid "Add User"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
709 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
710 |
msgid "Register"
|
711 |
msgstr ""
|
@@ -724,7 +693,12 @@ msgstr ""
|
|
724 |
msgid "Visibility"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
|
|
|
|
|
|
|
|
|
|
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
|
@@ -740,7 +714,7 @@ msgstr ""
|
|
740 |
msgid "Show"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
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
|
@@ -756,26 +730,13 @@ msgstr ""
|
|
756 |
msgid "Hide"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
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:
|
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:
|
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"
|
@@ -887,6 +848,11 @@ msgstr ""
|
|
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 ""
|
@@ -933,7 +899,13 @@ msgstr ""
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
937 |
msgid "Yes"
|
938 |
msgstr ""
|
939 |
|
@@ -951,7 +923,13 @@ msgstr ""
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
955 |
msgid "No"
|
956 |
msgstr ""
|
957 |
|
@@ -974,7 +952,7 @@ msgstr ""
|
|
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:
|
978 |
msgid "General Settings"
|
979 |
msgstr ""
|
980 |
|
@@ -982,10 +960,6 @@ msgstr ""
|
|
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 ""
|
@@ -1024,25 +998,20 @@ msgid ""
|
|
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 <
|
1030 |
-
"
|
1031 |
-
"
|
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
|
1040 |
-
"
|
1041 |
-
"
|
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
|
@@ -1099,7 +1068,8 @@ 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:
|
|
|
1103 |
msgid "Custom Redirects"
|
1104 |
msgstr ""
|
1105 |
|
@@ -1109,74 +1079,76 @@ msgstr ""
|
|
1109 |
msgid "reCAPTCHA"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1113 |
msgid "Redirects on custom page requests:"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1117 |
msgid "Action"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1121 |
msgid "Redirect"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1125 |
msgid "URL"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1129 |
msgid "After Registration:"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1133 |
msgid "After Login:"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1137 |
msgid "Recover Password (*)"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
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:
|
1152 |
msgid "Requested WP Page"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1156 |
-
msgid "Default WP Login Page(*)"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1160 |
-
msgid "Default WP Logout Page(**)"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1164 |
msgid "Default WP Register Page"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1168 |
msgid "Default WP Dashboard (***)"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
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:
|
1180 |
msgid ""
|
1181 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1182 |
"manage options)."
|
@@ -1187,7 +1159,6 @@ 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 |
|
@@ -1232,7 +1203,7 @@ msgstr ""
|
|
1232 |
msgid "Private Key:"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:
|
1236 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1237 |
msgstr ""
|
1238 |
|
@@ -1248,153 +1219,164 @@ msgid ""
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
1256 |
msgid "Number of Users/Page: "
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1260 |
msgid "Default Sorting Order: "
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1264 |
msgid "\"All-Userlisting\" Template"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1268 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
1281 |
msgid "Avatar size: "
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1285 |
msgid "Insert \"Sort By\" Field:"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1289 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1290 |
msgid "Insert \"User-Meta\" Field:"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1294 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1295 |
msgid "Insert Extra Functions:"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1299 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1303 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1310 |
msgid "\"Single-Userlisting\" Template"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1320 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
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:
|
1337 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1338 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1339 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1340 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1341 |
msgid "Search Users by All Fields"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1349 |
msgid "Search"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1353 |
msgid "First/Lastname"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1357 |
msgid "Email"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1361 |
msgid "Sign-up Date"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1365 |
msgid "Firstname"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1369 |
msgid "Lastname"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1373 |
msgid "Display Name"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1377 |
msgid "Posts"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1385 |
msgid "More..."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1389 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1396 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1397 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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
|
@@ -1403,16 +1385,16 @@ msgstr ""
|
|
1403 |
msgid "Click to see the current attachment"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1407 |
msgid "Click here to go back"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1411 |
msgid "Back"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1415 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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
|
@@ -1421,114 +1403,114 @@ msgstr ""
|
|
1421 |
msgid "Current file"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1431 |
msgid "No results found!"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1435 |
msgid "«« First"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1439 |
msgid "« Prev"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1443 |
msgid "Next » "
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1447 |
msgid "Last »»"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1451 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1456 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1461 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1466 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1467 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1468 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1473 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1479 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1486 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1491 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1496 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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
|
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
|
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
|
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:
|
1526 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1531 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1532 |
msgid "There was an error, please try again."
|
1533 |
msgstr ""
|
1534 |
|
@@ -1541,24 +1523,23 @@ msgid "the current user?"
|
|
1541 |
msgstr ""
|
1542 |
|
1543 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1544 |
-
|
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 |
-
|
|
|
1554 |
msgstr ""
|
1555 |
|
1556 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1557 |
-
|
|
|
1558 |
msgstr ""
|
1559 |
|
1560 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1561 |
-
|
|
|
1562 |
msgstr ""
|
1563 |
|
1564 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
@@ -1590,11 +1571,8 @@ msgid "approve"
|
|
1590 |
msgstr ""
|
1591 |
|
1592 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1593 |
-
|
1594 |
-
|
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
|
@@ -1842,6 +1820,10 @@ msgstr ""
|
|
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 ""
|
@@ -1851,15 +1833,15 @@ 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
|
@@ -1870,21 +1852,21 @@ msgstr ""
|
|
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:
|
1874 |
#, php-format
|
1875 |
msgid ""
|
1876 |
-
"Your <strong>Profile Builder
|
1877 |
-
"
|
1878 |
-
"
|
1879 |
-
"%sDismiss%s"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1883 |
#, php-format
|
1884 |
msgid ""
|
1885 |
-
"Your <strong>Profile Builder
|
1886 |
-
"%sRenew Your Licence%s to receive access to automatic updates and
|
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
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-10 11:29+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-10 11:29+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"
|
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:83
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"The information size you were trying to submit was larger than %1$sb!<br/"
|
23 |
+
">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
|
24 |
+
"it was also larger than %2$sb no additional information is available.<br/"
|
25 |
+
">The user was NOT created!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
|
29 |
msgid "You must be logged in to edit your profile."
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
|
33 |
msgid "The avatar was successfully deleted."
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
|
37 |
+
#, php-format
|
38 |
+
msgid "The attachment \"%1$s\" was successfully deleted."
|
|
|
|
|
|
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
|
42 |
msgid "The changes have been successfully saved."
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
46 |
msgid ""
|
47 |
"The email address you entered is already registered to a different user."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
51 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
52 |
msgid "The email address was"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
56 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
57 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
58 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
59 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
60 |
msgid "NOT"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
64 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
65 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
67 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
68 |
msgid "updated along with the rest of the information."
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
72 |
msgid "The email address you entered is invalid."
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
76 |
msgid "The passwords you entered do not match."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
80 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
81 |
msgid "The password was"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
85 |
msgid "You didn't complete both password fields."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
|
89 |
msgid "Your profile was NOT updated!"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
|
93 |
msgid "There was an error while trying to upload the following attachments:"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
97 |
+
#, php-format
|
98 |
+
msgid ""
|
99 |
+
"Possible cause: the size was bigger than %1$sb. The listed attachements were "
|
100 |
+
"%2$sNOT%3$s updated along with the rest of the information."
|
|
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
104 |
msgid "There was an error while trying to upload your avatar picture."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
108 |
msgid "Possible cause: size/incorrect file-type."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
112 |
msgid "The avatar was"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
|
116 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:897
|
117 |
msgid "There was an error while trying to upload the following attachment(s)"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
|
121 |
+
#, php-format
|
122 |
+
msgid ""
|
123 |
+
"Only files with the following extension(s) can be uploaded: %1$s<br/>This "
|
124 |
+
"file was %2$sNOT%3$s updated along with the rest of the information."
|
|
|
|
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
|
128 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1277
|
129 |
msgid "Name"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
|
133 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
|
134 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1298
|
|
|
135 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
136 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
|
137 |
msgid "Username"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
|
141 |
msgid "Usernames cannot be changed."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
|
145 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
|
146 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:726
|
147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:746
|
148 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:796
|
149 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:817
|
150 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:835
|
151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:853
|
152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:871
|
153 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:892
|
154 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
155 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
156 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
165 |
msgid "This field is marked as required by the administrator."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
|
169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
|
170 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:729
|
171 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:749
|
172 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
|
173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
|
174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
|
175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:855
|
176 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
|
177 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
|
178 |
msgid ""
|
179 |
"This field wasn't updated because you entered and empty string (It was "
|
180 |
"marked as required by the administrator."
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
|
184 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1322
|
185 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
186 |
msgid "First Name"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
|
190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1346
|
191 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
192 |
msgid "Last Name"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1370
|
197 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
198 |
msgid "Nickname"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:757
|
202 |
msgid "Display name publicly as"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
|
206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1376
|
207 |
msgid "Contact Info"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
|
211 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1397
|
|
|
212 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
213 |
msgid "E-mail"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
|
217 |
msgid "(required)"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
|
221 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1421
|
222 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
223 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
|
224 |
msgid "Website"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
|
228 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1445
|
229 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
230 |
msgid "AIM"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
|
234 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1469
|
235 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
236 |
msgid "Yahoo IM"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
|
240 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1493
|
241 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
242 |
msgid "Jabber / Google Talk"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
|
246 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1499
|
247 |
msgid "About Yourself"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
|
251 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1520
|
252 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
253 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
|
254 |
msgid "Biographical Info"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
|
258 |
msgid "New Password"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
|
262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
|
263 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
|
264 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
265 |
msgid "Repeat Password"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
|
269 |
msgid "Update"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
273 |
+
#, php-format
|
274 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
278 |
msgid "Log out of this account"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
282 |
msgid "Log out"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
|
286 |
+
#, php-format
|
287 |
+
msgid "You have successfully logged in as %1$s"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
291 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
292 |
+
#, php-format
|
293 |
msgid ""
|
294 |
"You will soon be redirected automatically. If you see this page for more "
|
295 |
+
"than 1 second, please click %1$s"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
299 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
300 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
301 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
302 |
msgid "here"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
306 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
307 |
msgid "ERROR:"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
311 |
msgid "The username field is empty"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
|
315 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
|
316 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
|
317 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1553
|
318 |
msgid "Password"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
|
322 |
msgid "Log in"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
326 |
msgid "Remember me"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:157
|
330 |
msgid "Lost password?"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
335 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
336 |
msgid "ERROR"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
340 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
341 |
msgid ""
|
342 |
"Your account has to be confirmed by an administrator before you can use the "
|
343 |
"\"Password Reset\" feature."
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
|
347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
|
348 |
+
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
msgid ""
|
350 |
+
"A password reset email has been sent to %1$s.<br/>Following the link sent in "
|
351 |
+
"the email address will reset the password."
|
352 |
msgstr ""
|
353 |
|
354 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
355 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
|
356 |
+
#, php-format
|
357 |
+
msgid ""
|
358 |
+
"Someone requested that the password be reset for the following account: <b>"
|
359 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
360 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
|
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
|
364 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
|
365 |
+
#, php-format
|
366 |
+
msgid "Password Reset Feature from \"%1$s\""
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
370 |
+
#, php-format
|
371 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
375 |
msgid "The email address entered wasn't found in the database!"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
379 |
msgid "Please check that you entered the correct email address."
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
383 |
+
msgid "There was an error while trying to send the activation link to "
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
387 |
msgid "The username entered wasn't found in the database!"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
391 |
msgid "Please check that you entered the correct username."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
|
395 |
msgid "Your password has been successfully changed!"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
|
399 |
+
#, php-format
|
400 |
+
msgid "You have successfully reset your password to: %1$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
|
404 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
|
405 |
+
#, php-format
|
406 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
|
410 |
+
#, php-format
|
411 |
+
msgid ""
|
412 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
413 |
+
"her new password is:%2$s"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
|
417 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:894
|
418 |
msgid "The entered passwords don't match!"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
|
422 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
|
423 |
msgid "Reset Password"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
427 |
msgid "Invalid key!"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
431 |
msgid "Please enter your username or email address."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
435 |
msgid "You will receive a link to create a new password via email."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
439 |
msgid "Username or E-mail"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
443 |
msgid "Get New Password"
|
444 |
msgstr ""
|
445 |
|
483 |
msgid "There was an error while trying to activate the user."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
|
487 |
+
#, php-format
|
488 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
492 |
msgid ""
|
493 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
494 |
"please remember that you need to approve this user before he/she can log in!"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
498 |
msgid "A new subscriber has (been) registered!"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:522
|
502 |
msgid "A new account has been created for you."
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
506 |
+
#, php-format
|
507 |
+
msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
|
511 |
msgid ""
|
512 |
"Before you can access your account, an administrator needs to approve it. "
|
513 |
"You will be notified via email."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
|
|
|
|
|
|
|
|
|
517 |
msgid "A username is required for registration."
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
|
521 |
msgid "Sorry, that username already exists!"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:887
|
525 |
msgid "You must enter a valid email address."
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:889
|
529 |
msgid "Sorry, that email address is already used!"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
|
533 |
msgid "You didn't complete one of the password-fields!"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
537 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
541 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
542 |
msgid "The account was NOT created!"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:908
|
546 |
msgid "You must agree to the terms and conditions before registering!"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
550 |
msgid "(Several required fields were left uncompleted)"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
554 |
msgid "This username is already reserved to be used soon."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
558 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
559 |
msgid "Please try a different one!"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
563 |
msgid "This email address is already reserved to be used soon."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
567 |
msgid "You are logged in as"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
571 |
msgid "You don't need another account."
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
575 |
msgid "Log out of this account."
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
579 |
msgid "Logout"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
583 |
+
#, php-format
|
584 |
+
msgid ""
|
585 |
+
"An email has been sent to %1$s with information on how to activate his/her "
|
586 |
+
"account."
|
|
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1172
|
590 |
+
#, php-format
|
591 |
+
msgid "A user account has been created for %1$s."
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
596 |
+
#, php-format
|
597 |
msgid ""
|
598 |
"You will soon be redirected automatically. If you see this page for more "
|
599 |
+
"than 3 seconds, please click %1$s.%2$s"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1197
|
603 |
msgid ""
|
604 |
"An email has been sent to you with information on how to activate your "
|
605 |
+
"account."
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1201
|
609 |
+
#, php-format
|
610 |
+
msgid "Thank you for registering %1$s."
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1228
|
614 |
msgid "An error occured while trying to send the notification email."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
618 |
msgid "An email containing activation instructions was successfully sent."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
622 |
msgid "An email containing the username and password was successfully sent."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1254
|
626 |
msgid "Users can register themselves or you can manually create users here."
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
630 |
msgid ""
|
631 |
"Users cannot currently register themselves, but you can manually create "
|
632 |
"users here."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
636 |
msgid "Only an administrator can add new users."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1287
|
640 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1311
|
641 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1335
|
642 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1359
|
643 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1410
|
644 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1434
|
645 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1458
|
646 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1482
|
647 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1509
|
648 |
msgid ""
|
649 |
"This field must be filled out before registering (It was marked as required "
|
650 |
"by the administrator)"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1308
|
654 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1332
|
655 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1356
|
656 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1383
|
657 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1407
|
658 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1431
|
659 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1455
|
660 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1479
|
661 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1506
|
662 |
msgid "This field is marked as required by the administrator"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1581
|
666 |
msgid "Anti-Spam"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1602
|
670 |
msgid "Send these credentials via email."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
674 |
msgid "Add User"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
678 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
679 |
msgid "Register"
|
680 |
msgstr ""
|
693 |
msgid "Visibility"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
|
697 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
698 |
+
msgid "Default"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
|
702 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
703 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
704 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
714 |
msgid "Show"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
|
718 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
719 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
720 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
730 |
msgid "Hide"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
734 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
735 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
736 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
737 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
|
738 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
739 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
|
740 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
741 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
742 |
msgid "Save Changes"
|
848 |
msgid "shortcode."
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
852 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
853 |
+
msgid "NOTE:"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
857 |
msgid "this plugin only adds/removes fields in the front-end."
|
858 |
msgstr ""
|
899 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
900 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
901 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
902 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
|
903 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
|
904 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
|
905 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
|
906 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
|
907 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
|
908 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
|
909 |
msgid "Yes"
|
910 |
msgstr ""
|
911 |
|
923 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
924 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
925 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
926 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
|
927 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
|
928 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
|
929 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
|
930 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
|
931 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
|
932 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
|
933 |
msgid "No"
|
934 |
msgstr ""
|
935 |
|
952 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
953 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
954 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
955 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
|
956 |
msgid "General Settings"
|
957 |
msgstr ""
|
958 |
|
960 |
msgid "Stylesheet Used on the Front-End:"
|
961 |
msgstr ""
|
962 |
|
|
|
|
|
|
|
|
|
963 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
964 |
msgid "White"
|
965 |
msgstr ""
|
998 |
msgstr ""
|
999 |
|
1000 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1001 |
+
#, php-format
|
1002 |
msgid ""
|
1003 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1004 |
+
"Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
|
1005 |
+
"access to automatic updates and support. Need a license key? %3$sPurchase "
|
1006 |
+
"one now%4$s"
|
|
|
|
|
|
|
1007 |
msgstr ""
|
1008 |
|
1009 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1010 |
+
#, php-format
|
1011 |
msgid ""
|
1012 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1013 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1014 |
+
"priority support. %3$sPurchase one now%4$s"
|
|
|
|
|
|
|
|
|
1015 |
msgstr ""
|
1016 |
|
1017 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1068 |
msgstr ""
|
1069 |
|
1070 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1071 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
|
1072 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
|
1073 |
msgid "Custom Redirects"
|
1074 |
msgstr ""
|
1075 |
|
1079 |
msgid "reCAPTCHA"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
|
1083 |
msgid "Redirects on custom page requests:"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
|
1087 |
msgid "Action"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
|
1091 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
|
1092 |
msgid "Redirect"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
|
1096 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
|
1097 |
msgid "URL"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
|
1101 |
msgid "After Registration:"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
|
1105 |
msgid "After Login:"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
|
1109 |
msgid "Recover Password (*)"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
|
1113 |
msgid ""
|
1114 |
"When activated this feature will redirect the user on both the default "
|
1115 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1116 |
"Profile Builder on the front-end login page."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
|
1120 |
msgid "Redirects on default WordPress page requests:"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
|
1124 |
msgid "Requested WP Page"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
|
1128 |
+
msgid "Default WP Login Page (*)"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
|
1132 |
+
msgid "Default WP Logout Page (**)"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
|
1136 |
msgid "Default WP Register Page"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
|
1140 |
msgid "Default WP Dashboard (***)"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
|
1144 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
|
1148 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
|
1152 |
msgid ""
|
1153 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1154 |
"manage options)."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
|
|
1162 |
msgid "To use reCAPTCHA you must get an API key from"
|
1163 |
msgstr ""
|
1164 |
|
1203 |
msgid "Private Key:"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
|
1207 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1208 |
msgstr ""
|
1209 |
|
1219 |
"authors, visible to only the users currently logged in, you would use:"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1223 |
+
msgid ""
|
1224 |
+
"You can also create a userlisting page that displays users having a certain "
|
1225 |
+
"meta-value within a certain (extra) meta-field like so:"
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1229 |
+
msgid ""
|
1230 |
+
"Remember though, that the field-value combination must exist in the database."
|
1231 |
+
msgstr ""
|
1232 |
+
|
1233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
|
1234 |
msgid "These settings are applied to the front-end userlisting."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:46
|
1238 |
msgid "Number of Users/Page: "
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:63
|
1242 |
msgid "Default Sorting Order: "
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
|
1246 |
msgid "\"All-Userlisting\" Template"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1250 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1251 |
msgid ""
|
1252 |
"With the userlisting templates you can customize the look, feel and "
|
1253 |
"information listed by the shortcode."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
|
1257 |
msgid ""
|
1258 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1259 |
"on each page access where the shortcode is present."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
|
1263 |
msgid "Avatar size: "
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:97
|
1267 |
msgid "Insert \"Sort By\" Field:"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:125
|
1271 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
|
1272 |
msgid "Insert \"User-Meta\" Field:"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:156
|
1276 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:262
|
1277 |
msgid "Insert Extra Functions:"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:171
|
1281 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:173
|
1285 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:276
|
1286 |
msgid ""
|
1287 |
"If you wish to use a default userlisting, just copy the following code and "
|
1288 |
"paste it in the textarea below:"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
|
1292 |
msgid "\"Single-Userlisting\" Template"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:219
|
1296 |
msgid ""
|
1297 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1298 |
"It's displayed when clickin on the \"more info\" link."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:274
|
1302 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1306 |
msgid ""
|
1307 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1311 |
msgid "You can find it in Profile Builder's menu."
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
|
1315 |
msgid "You need to be logged in to view the userlisting!"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
|
1319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
|
1320 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1321 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1328
|
1322 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1414
|
1323 |
msgid "Search Users by All Fields"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1327 |
msgid "Leave Blank and Press Search to List All Users"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
|
1331 |
msgid "Search"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
|
1335 |
msgid "First/Lastname"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
|
1339 |
msgid "Email"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
|
1343 |
msgid "Sign-up Date"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
|
1347 |
msgid "Firstname"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
|
1351 |
msgid "Lastname"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
|
1355 |
msgid "Display Name"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
|
1359 |
msgid "Posts"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1363 |
msgid "Click here to see more information about this user"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1367 |
msgid "More..."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
|
1371 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1372 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1373 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1374 |
msgid "No uploaded attachment"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
|
1378 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1379 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1160
|
1380 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1381 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1382 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1385 |
msgid "Click to see the current attachment"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1389 |
msgid "Click here to go back"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1393 |
msgid "Back"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1397 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1398 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1399 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1400 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1403 |
msgid "Current file"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
|
1407 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1408 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1409 |
msgid "Avatar"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1215
|
1413 |
msgid "No results found!"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1417 |
msgid "«« First"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1421 |
msgid "« Prev"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1425 |
msgid "Next » "
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
|
1429 |
msgid "Last »»"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
|
1433 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
|
1434 |
msgid "You must give your option a title."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
|
1438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
|
1439 |
msgid "You have entered an invalid meta-key format!"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
|
1443 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
|
1444 |
msgid "You must enter a valid meta-key."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
|
1448 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1449 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:447
|
1450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
|
1451 |
msgid "That meta-key is already in use."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1455 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1456 |
msgid ""
|
1457 |
"There is already an avatar input-type. You can only have one avatar present."
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:324
|
1461 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:474
|
1462 |
msgid ""
|
1463 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1464 |
"have one present."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:329
|
1468 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:479
|
1469 |
msgid "The textarea row value must be numeric."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1473 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1474 |
msgid "The maxlength attribute must be numeric."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1478 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1479 |
msgid "The value must be between 20 and 200!"
|
1480 |
msgstr ""
|
1481 |
|
|
|
|
|
|
|
|
|
|
|
1482 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1483 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1484 |
+
msgid "The width component of the entered value must be numeric!"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1488 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1489 |
+
msgid "The height component of the entered value must be numeric!"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1493 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1494 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1498 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1499 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
|
1503 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
|
1504 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
|
1508 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:506
|
1509 |
msgid "The entered avatar size must be numeric!"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:390
|
1513 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:566
|
1514 |
msgid "There was an error, please try again."
|
1515 |
msgstr ""
|
1516 |
|
1523 |
msgstr ""
|
1524 |
|
1525 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1526 |
+
#, php-format
|
1527 |
+
msgid "Your account on %1$s has been approved!"
|
|
|
|
|
|
|
|
|
1528 |
msgstr ""
|
1529 |
|
1530 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1531 |
+
#, php-format
|
1532 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1536 |
+
#, php-format
|
1537 |
+
msgid "Your account on %1$s has been unapproved!"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1541 |
+
#, php-format
|
1542 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1571 |
msgstr ""
|
1572 |
|
1573 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1574 |
+
#, php-format
|
1575 |
+
msgid "Are you sure you want to %1$s this user?"
|
|
|
|
|
|
|
1576 |
msgstr ""
|
1577 |
|
1578 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1820 |
msgid "Don't have an account?"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1824 |
+
msgid "Lost Password"
|
1825 |
+
msgstr ""
|
1826 |
+
|
1827 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1828 |
msgid "Lost Your Password?"
|
1829 |
msgstr ""
|
1833 |
msgstr ""
|
1834 |
|
1835 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1836 |
+
msgid "After login redirect URL (optional):"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1840 |
+
msgid "Register page URL (optional):"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1844 |
+
msgid "Password Recovery page URL (optional):"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1852 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
|
1856 |
#, php-format
|
1857 |
msgid ""
|
1858 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1859 |
+
"Please %1$sregister your copy%2$s of Profile Builder to receive access to "
|
1860 |
+
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
|
1861 |
+
"%5$sDismiss%6$s"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
|
1865 |
#, php-format
|
1866 |
msgid ""
|
1867 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1868 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1869 |
+
"priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
translation/profilebuilder-es_ES.mo
CHANGED
Binary file
|
translation/profilebuilder-es_ES.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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,49 +15,34 @@ msgstr ""
|
|
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:
|
19 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
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:
|
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:
|
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:
|
47 |
-
#, fuzzy
|
48 |
-
msgid "The attachment"
|
49 |
-
msgstr "El
|
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:
|
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:
|
61 |
#, fuzzy
|
62 |
msgid ""
|
63 |
"The email address you entered is already registered to a different user."
|
@@ -65,133 +50,123 @@ 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:
|
69 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
70 |
msgid "The email address was"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
74 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
75 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
76 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
77 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
84 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
85 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
86 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
87 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
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:
|
106 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
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:
|
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:
|
127 |
-
#,
|
128 |
-
msgid "
|
129 |
-
|
130 |
-
|
131 |
-
|
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:
|
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:
|
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:
|
147 |
msgid "The avatar was"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
151 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
158 |
-
|
159 |
-
msgid "
|
160 |
-
|
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:
|
167 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
168 |
msgid "Name"
|
169 |
msgstr "Nombre"
|
170 |
|
171 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
172 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
173 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
177 |
msgid "Username"
|
178 |
msgstr "Nombre de usuario"
|
179 |
|
180 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
186 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
187 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
188 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
189 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
190 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
191 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
192 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
193 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
194 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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
|
@@ -206,299 +181,291 @@ msgstr "Los nombres de usuario no pueden ser cambiados."
|
|
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:
|
210 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
211 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
212 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
213 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
214 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
215 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
216 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
217 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
218 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
225 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
231 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
237 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
247 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
252 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
259 |
msgid "(required)"
|
260 |
msgstr "(obligatorio)"
|
261 |
|
262 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
263 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
266 |
msgid "Website"
|
267 |
msgstr "Sitio web"
|
268 |
|
269 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
270 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
276 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
282 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
288 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
293 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
304 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
305 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
306 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
311 |
msgid "Update"
|
312 |
msgstr "Actualizar"
|
313 |
|
314 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
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:
|
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:
|
325 |
#, fuzzy
|
326 |
msgid "Log out"
|
327 |
msgstr "Salir »"
|
328 |
|
329 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
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:
|
335 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
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:
|
342 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
343 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
344 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
345 |
msgid "here"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
349 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
350 |
msgid "ERROR:"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
354 |
msgid "The username field is empty"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
358 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
359 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
360 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
361 |
msgid "Password"
|
362 |
msgstr "Contraseña"
|
363 |
|
364 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
365 |
msgid "Log in"
|
366 |
msgstr "Acceder"
|
367 |
|
368 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
369 |
msgid "Remember me"
|
370 |
msgstr "Recordarme"
|
371 |
|
372 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
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:
|
377 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
378 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
379 |
msgid "ERROR"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
390 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
391 |
-
|
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 |
-
"
|
|
|
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:
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
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:
|
416 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
417 |
-
|
|
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
421 |
-
|
422 |
-
|
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:
|
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:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
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:
|
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:
|
450 |
-
|
451 |
-
|
|
|
452 |
|
453 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
454 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
460 |
-
|
461 |
-
msgid "
|
462 |
-
|
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:
|
473 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
478 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
484 |
msgid "Invalid key!"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
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:
|
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:
|
502 |
#, fuzzy
|
503 |
msgid "Get New Password"
|
504 |
msgstr "Nueva contraseña"
|
@@ -547,164 +514,157 @@ 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:
|
551 |
-
|
|
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
570 |
-
|
571 |
-
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
613 |
-
|
|
|
|
|
|
|
|
|
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:
|
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:
|
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:
|
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:
|
631 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
632 |
msgid "Please try a different one!"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
641 |
msgid "You are logged in as"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
654 |
#, fuzzy
|
655 |
msgid "Logout"
|
656 |
msgstr "Salir »"
|
657 |
|
658 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
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:
|
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:
|
672 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
708 |
msgid ""
|
709 |
"Users cannot currently register themselves, but you can manually create "
|
710 |
"users here."
|
@@ -712,50 +672,50 @@ 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:
|
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:
|
720 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
721 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
722 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
723 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
724 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
725 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
726 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
727 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
734 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
735 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
736 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
737 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
738 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
739 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
740 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
741 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
746 |
msgid "Anti-Spam"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
755 |
msgid "Add User"
|
756 |
msgstr "Añadir usuario"
|
757 |
|
758 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
759 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
760 |
msgid "Register"
|
761 |
msgstr "Registrar"
|
@@ -774,7 +734,12 @@ msgstr "Perfiles"
|
|
774 |
msgid "Visibility"
|
775 |
msgstr "Visibilidad"
|
776 |
|
777 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
|
|
|
|
|
|
|
|
|
|
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
|
@@ -790,7 +755,7 @@ msgstr "Visibilidad"
|
|
790 |
msgid "Show"
|
791 |
msgstr "Mostrar"
|
792 |
|
793 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
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
|
@@ -806,26 +771,13 @@ msgstr "Mostrar"
|
|
806 |
msgid "Hide"
|
807 |
msgstr "Ocultar"
|
808 |
|
809 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
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:
|
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:
|
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"
|
@@ -961,6 +913,11 @@ msgstr ""
|
|
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."
|
@@ -1012,7 +969,13 @@ msgstr "Nombre:"
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
1016 |
msgid "Yes"
|
1017 |
msgstr ""
|
1018 |
|
@@ -1030,7 +993,13 @@ msgstr ""
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
1034 |
#, fuzzy
|
1035 |
msgid "No"
|
1036 |
msgstr "Ninguna"
|
@@ -1055,7 +1024,7 @@ msgstr "Nueva contraseña"
|
|
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:
|
1059 |
msgid "General Settings"
|
1060 |
msgstr ""
|
1061 |
|
@@ -1064,10 +1033,6 @@ msgstr ""
|
|
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"
|
@@ -1106,25 +1071,20 @@ msgid ""
|
|
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 <
|
1112 |
-
"
|
1113 |
-
"
|
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
|
1122 |
-
"
|
1123 |
-
"
|
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
|
@@ -1181,7 +1141,8 @@ 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:
|
|
|
1185 |
msgid "Custom Redirects"
|
1186 |
msgstr ""
|
1187 |
|
@@ -1191,75 +1152,77 @@ msgstr ""
|
|
1191 |
msgid "reCAPTCHA"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1195 |
msgid "Redirects on custom page requests:"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1199 |
msgid "Action"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1203 |
msgid "Redirect"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1207 |
msgid "URL"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1211 |
msgid "After Registration:"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1215 |
msgid "After Login:"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
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:
|
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:
|
1235 |
msgid "Requested WP Page"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1239 |
-
msgid "Default WP Login Page(*)"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1243 |
-
msgid "Default WP Logout Page(**)"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1247 |
msgid "Default WP Register Page"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1251 |
msgid "Default WP Dashboard (***)"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
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:
|
1263 |
msgid ""
|
1264 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1265 |
"manage options)."
|
@@ -1270,7 +1233,6 @@ 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 |
|
@@ -1315,7 +1277,7 @@ msgstr ""
|
|
1315 |
msgid "Private Key:"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:
|
1319 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1320 |
msgstr ""
|
1321 |
|
@@ -1331,160 +1293,171 @@ msgid ""
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
1339 |
msgid "Number of Users/Page: "
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1343 |
msgid "Default Sorting Order: "
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1347 |
msgid "\"All-Userlisting\" Template"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1351 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
1364 |
msgid "Avatar size: "
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1368 |
msgid "Insert \"Sort By\" Field:"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1372 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1373 |
msgid "Insert \"User-Meta\" Field:"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1377 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1378 |
msgid "Insert Extra Functions:"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1382 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1386 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1393 |
msgid "\"Single-Userlisting\" Template"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1403 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
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:
|
1421 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1422 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1423 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1424 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1425 |
msgid "Search Users by All Fields"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1433 |
msgid "Search"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1437 |
#, fuzzy
|
1438 |
msgid "First/Lastname"
|
1439 |
msgstr "Nombre:"
|
1440 |
|
1441 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1442 |
#, fuzzy
|
1443 |
msgid "Email"
|
1444 |
msgstr "Email"
|
1445 |
|
1446 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1447 |
msgid "Sign-up Date"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1451 |
#, fuzzy
|
1452 |
msgid "Firstname"
|
1453 |
msgstr "Nombre:"
|
1454 |
|
1455 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1456 |
#, fuzzy
|
1457 |
msgid "Lastname"
|
1458 |
msgstr "Apellidos"
|
1459 |
|
1460 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1461 |
#, fuzzy
|
1462 |
msgid "Display Name"
|
1463 |
msgstr "Nombre:"
|
1464 |
|
1465 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1466 |
msgid "Posts"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1474 |
msgid "More..."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1478 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1486 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1487 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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
|
@@ -1493,17 +1466,17 @@ msgstr "El archivo adjunto \""
|
|
1493 |
msgid "Click to see the current attachment"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1497 |
msgid "Click here to go back"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1501 |
#, fuzzy
|
1502 |
msgid "Back"
|
1503 |
msgstr "Negro"
|
1504 |
|
1505 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1506 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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
|
@@ -1512,118 +1485,118 @@ msgstr "Negro"
|
|
1512 |
msgid "Current file"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1522 |
msgid "No results found!"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1526 |
msgid "«« First"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1530 |
msgid "« Prev"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1534 |
#, fuzzy
|
1535 |
msgid "Next » "
|
1536 |
msgstr "Salir »"
|
1537 |
|
1538 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1539 |
#, fuzzy
|
1540 |
msgid "Last »»"
|
1541 |
msgstr "Salir »"
|
1542 |
|
1543 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1544 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1550 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1555 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1561 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1562 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1563 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1568 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1574 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1581 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1586 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1591 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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
|
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
|
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
|
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:
|
1621 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1626 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1627 |
msgid "There was an error, please try again."
|
1628 |
msgstr ""
|
1629 |
|
@@ -1636,24 +1609,23 @@ msgid "the current user?"
|
|
1636 |
msgstr ""
|
1637 |
|
1638 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1639 |
-
|
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 |
-
|
|
|
1649 |
msgstr ""
|
1650 |
|
1651 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1652 |
-
|
1653 |
-
|
|
|
1654 |
|
1655 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1656 |
-
|
|
|
1657 |
msgstr ""
|
1658 |
|
1659 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
@@ -1685,11 +1657,8 @@ msgid "approve"
|
|
1685 |
msgstr ""
|
1686 |
|
1687 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1688 |
-
|
1689 |
-
|
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
|
@@ -1942,6 +1911,11 @@ msgstr "Generador de perfiles"
|
|
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?"
|
@@ -1953,15 +1927,15 @@ 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
|
@@ -1972,21 +1946,21 @@ msgstr ""
|
|
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:
|
1976 |
#, php-format
|
1977 |
msgid ""
|
1978 |
-
"Your <strong>Profile Builder
|
1979 |
-
"
|
1980 |
-
"
|
1981 |
-
"%sDismiss%s"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1985 |
#, php-format
|
1986 |
msgid ""
|
1987 |
-
"Your <strong>Profile Builder
|
1988 |
-
"%sRenew Your Licence%s to receive access to automatic updates and
|
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
|
@@ -2055,6 +2029,26 @@ msgstr ""
|
|
2055 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2056 |
msgstr ""
|
2057 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2058 |
#~ msgid "Plugin Layout"
|
2059 |
#~ msgstr "Diseño del Plugin"
|
2060 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-10 11:29+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-10 11:29+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"
|
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:83
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"The information size you were trying to submit was larger than %1$sb!<br/"
|
23 |
+
">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
|
24 |
+
"it was also larger than %2$sb no additional information is available.<br/"
|
25 |
+
">The user was NOT created!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
|
29 |
msgid "You must be logged in to edit your profile."
|
30 |
msgstr "Debes estar conectado para editar tu perfil."
|
31 |
|
32 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
|
33 |
msgid "The avatar was successfully deleted."
|
34 |
msgstr "El avatar ha sido eliminado."
|
35 |
|
36 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
|
37 |
+
#, fuzzy, php-format
|
38 |
+
msgid "The attachment \"%1$s\" was successfully deleted."
|
39 |
+
msgstr "El avatar ha sido eliminado."
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
|
42 |
msgid "The changes have been successfully saved."
|
43 |
msgstr "Los cambios se han guardado correctamente."
|
44 |
|
45 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
46 |
#, fuzzy
|
47 |
msgid ""
|
48 |
"The email address you entered is already registered to a different user."
|
50 |
"La dirección de correo electrónico que ha introducido ya está siendo usada "
|
51 |
"por un usuario diferente.<br/>La dirección de email era"
|
52 |
|
53 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
54 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
55 |
msgid "The email address was"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
59 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
60 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
61 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
62 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
63 |
msgid "NOT"
|
64 |
msgstr "NO"
|
65 |
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
67 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
68 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
69 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
70 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
71 |
#, fuzzy
|
72 |
msgid "updated along with the rest of the information."
|
73 |
msgstr " actualizado junto con el resto de la información."
|
74 |
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
76 |
#, fuzzy
|
77 |
msgid "The email address you entered is invalid."
|
78 |
msgstr "La dirección de email no es válida.<br/>La dirección de email era"
|
79 |
|
80 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
81 |
#, fuzzy
|
82 |
msgid "The passwords you entered do not match."
|
83 |
msgstr ""
|
84 |
"Las contraseñas introducidas no coinciden.<br/>La dirección de email era"
|
85 |
|
86 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
87 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
88 |
#, fuzzy
|
89 |
msgid "The password was"
|
90 |
msgstr "Nueva contraseña"
|
91 |
|
92 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
93 |
#, fuzzy
|
94 |
msgid "You didn't complete both password fields."
|
95 |
msgstr "No has completado una de los campos de contraseña"
|
96 |
|
97 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
|
98 |
msgid "Your profile was NOT updated!"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
|
102 |
#, fuzzy
|
103 |
msgid "There was an error while trying to upload the following attachments:"
|
104 |
msgstr ""
|
105 |
"Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
106 |
|
107 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
108 |
+
#, php-format
|
109 |
+
msgid ""
|
110 |
+
"Possible cause: the size was bigger than %1$sb. The listed attachements were "
|
111 |
+
"%2$sNOT%3$s updated along with the rest of the information."
|
112 |
+
msgstr ""
|
|
|
|
|
|
|
113 |
|
114 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
115 |
#, fuzzy
|
116 |
msgid "There was an error while trying to upload your avatar picture."
|
117 |
msgstr ""
|
118 |
"Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
119 |
|
120 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
121 |
msgid "Possible cause: size/incorrect file-type."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
125 |
msgid "The avatar was"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
|
129 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:897
|
130 |
#, fuzzy
|
131 |
msgid "There was an error while trying to upload the following attachment(s)"
|
132 |
msgstr ""
|
133 |
"Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
134 |
|
135 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
|
136 |
+
#, php-format
|
137 |
+
msgid ""
|
138 |
+
"Only files with the following extension(s) can be uploaded: %1$s<br/>This "
|
139 |
+
"file was %2$sNOT%3$s updated along with the rest of the information."
|
|
|
|
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
|
143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1277
|
144 |
msgid "Name"
|
145 |
msgstr "Nombre"
|
146 |
|
147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
|
148 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
|
149 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1298
|
|
|
150 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
|
152 |
msgid "Username"
|
153 |
msgstr "Nombre de usuario"
|
154 |
|
155 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
|
156 |
#, fuzzy
|
157 |
msgid "Usernames cannot be changed."
|
158 |
msgstr "Los nombres de usuario no pueden ser cambiados."
|
159 |
|
160 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
|
161 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
|
162 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:726
|
163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:746
|
164 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:796
|
165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:817
|
166 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:835
|
167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:853
|
168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:871
|
169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:892
|
170 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
171 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
172 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
181 |
msgid "This field is marked as required by the administrator."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
|
185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
|
186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:729
|
187 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:749
|
188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
|
189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
|
190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
|
191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:855
|
192 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
|
193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
|
194 |
msgid ""
|
195 |
"This field wasn't updated because you entered and empty string (It was "
|
196 |
"marked as required by the administrator."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
|
200 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1322
|
201 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
202 |
msgid "First Name"
|
203 |
msgstr "Nombre:"
|
204 |
|
205 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
|
206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1346
|
207 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
208 |
msgid "Last Name"
|
209 |
msgstr "Apellidos"
|
210 |
|
211 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
|
212 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1370
|
213 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
214 |
msgid "Nickname"
|
215 |
msgstr "Alias"
|
216 |
|
217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:757
|
218 |
msgid "Display name publicly as"
|
219 |
msgstr "Mostrar nombre públicamente como"
|
220 |
|
221 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
|
222 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1376
|
223 |
msgid "Contact Info"
|
224 |
msgstr "Información de contacto"
|
225 |
|
226 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
|
227 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1397
|
|
|
228 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
229 |
msgid "E-mail"
|
230 |
msgstr "Email"
|
231 |
|
232 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
|
233 |
msgid "(required)"
|
234 |
msgstr "(obligatorio)"
|
235 |
|
236 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
|
237 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1421
|
238 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
239 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
|
240 |
msgid "Website"
|
241 |
msgstr "Sitio web"
|
242 |
|
243 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
|
244 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1445
|
245 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
246 |
msgid "AIM"
|
247 |
msgstr "AIM"
|
248 |
|
249 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
|
250 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1469
|
251 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
252 |
msgid "Yahoo IM"
|
253 |
msgstr "Yahoo IM"
|
254 |
|
255 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
|
256 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1493
|
257 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
258 |
msgid "Jabber / Google Talk"
|
259 |
msgstr "Jabber / Google Talk"
|
260 |
|
261 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
|
262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1499
|
263 |
msgid "About Yourself"
|
264 |
msgstr "Acerca de ti"
|
265 |
|
266 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
|
267 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1520
|
268 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
269 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
|
270 |
msgid "Biographical Info"
|
271 |
msgstr "Información biográfica"
|
272 |
|
273 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
|
274 |
msgid "New Password"
|
275 |
msgstr "Nueva contraseña"
|
276 |
|
277 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
|
278 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
|
279 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
|
280 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
281 |
msgid "Repeat Password"
|
282 |
msgstr "Repetir contraseña"
|
283 |
|
284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
|
285 |
msgid "Update"
|
286 |
msgstr "Actualizar"
|
287 |
|
288 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
289 |
+
#, fuzzy, php-format
|
290 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
291 |
msgstr ""
|
292 |
"Actualmente estás conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
293 |
|
294 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
295 |
msgid "Log out of this account"
|
296 |
msgstr "Cerrar sesión"
|
297 |
|
298 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
299 |
#, fuzzy
|
300 |
msgid "Log out"
|
301 |
msgstr "Salir »"
|
302 |
|
303 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
|
304 |
+
#, fuzzy, php-format
|
305 |
+
msgid "You have successfully logged in as %1$s"
|
306 |
msgstr "Te has conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
307 |
|
308 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
309 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
310 |
+
#, php-format
|
311 |
msgid ""
|
312 |
"You will soon be redirected automatically. If you see this page for more "
|
313 |
+
"than 1 second, please click %1$s"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
317 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
320 |
msgid "here"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
324 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
325 |
msgid "ERROR:"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
329 |
msgid "The username field is empty"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
|
333 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
|
334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
|
335 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1553
|
336 |
msgid "Password"
|
337 |
msgstr "Contraseña"
|
338 |
|
339 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
|
340 |
msgid "Log in"
|
341 |
msgstr "Acceder"
|
342 |
|
343 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
344 |
msgid "Remember me"
|
345 |
msgstr "Recordarme"
|
346 |
|
347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:157
|
348 |
msgid "Lost password?"
|
349 |
msgstr "¿has olvidado la contraseña?"
|
350 |
|
351 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
352 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
353 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
354 |
msgid "ERROR"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
358 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
359 |
msgid ""
|
360 |
"Your account has to be confirmed by an administrator before you can use the "
|
361 |
"\"Password Reset\" feature."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
|
365 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
|
366 |
+
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
msgid ""
|
368 |
+
"A password reset email has been sent to %1$s.<br/>Following the link sent in "
|
369 |
+
"the email address will reset the password."
|
370 |
msgstr ""
|
371 |
|
372 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
373 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
|
374 |
+
#, php-format
|
375 |
+
msgid ""
|
376 |
+
"Someone requested that the password be reset for the following account: <b>"
|
377 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
378 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
|
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
|
382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
|
383 |
+
#, php-format
|
384 |
+
msgid "Password Reset Feature from \"%1$s\""
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
388 |
+
#, fuzzy, php-format
|
389 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
|
|
390 |
msgstr ""
|
391 |
"Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
392 |
|
393 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
394 |
#, fuzzy
|
395 |
msgid "The email address entered wasn't found in the database!"
|
396 |
msgstr "La dirección de email no es válida.<br/>La dirección de email era"
|
397 |
|
398 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
399 |
msgid "Please check that you entered the correct email address."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
403 |
+
#, fuzzy
|
404 |
+
msgid "There was an error while trying to send the activation link to "
|
405 |
+
msgstr ""
|
406 |
+
"Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
407 |
+
|
408 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
409 |
msgid "The username entered wasn't found in the database!"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
413 |
msgid "Please check that you entered the correct username."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
|
417 |
#, fuzzy
|
418 |
msgid "Your password has been successfully changed!"
|
419 |
msgstr "Los cambios se han guardado correctamente."
|
420 |
|
421 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
|
422 |
+
#, fuzzy, php-format
|
423 |
+
msgid "You have successfully reset your password to: %1$s"
|
424 |
+
msgstr "Te has conectado como <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
425 |
|
426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
|
427 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
|
428 |
+
#, fuzzy, php-format
|
429 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
430 |
msgstr "\" ha sido eliminado."
|
431 |
|
432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
|
433 |
+
#, php-format
|
434 |
+
msgid ""
|
435 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
436 |
+
"her new password is:%2$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
|
440 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:894
|
441 |
msgid "The entered passwords don't match!"
|
442 |
msgstr "Las contraseñas introducidas no coinciden"
|
443 |
|
444 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
|
445 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
|
446 |
#, fuzzy
|
447 |
msgid "Reset Password"
|
448 |
msgstr "Repetir contraseña"
|
449 |
|
450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
451 |
msgid "Invalid key!"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
455 |
#, fuzzy
|
456 |
msgid "Please enter your username or email address."
|
457 |
msgstr "Has de introducir una dirección de Email válida."
|
458 |
|
459 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
460 |
msgid "You will receive a link to create a new password via email."
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
464 |
#, fuzzy
|
465 |
msgid "Username or E-mail"
|
466 |
msgstr "Nombre de usuario"
|
467 |
|
468 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
469 |
#, fuzzy
|
470 |
msgid "Get New Password"
|
471 |
msgstr "Nueva contraseña"
|
514 |
msgstr ""
|
515 |
"Se ha producido un error al intentar subir los siguientes documentos:<br/>"
|
516 |
|
517 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
|
518 |
+
#, php-format
|
519 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
523 |
msgid ""
|
524 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
525 |
"please remember that you need to approve this user before he/she can log in!"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
529 |
msgid "A new subscriber has (been) registered!"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:522
|
533 |
#, fuzzy
|
534 |
msgid "A new account has been created for you."
|
535 |
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
536 |
|
537 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
538 |
+
#, php-format
|
539 |
+
msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
|
|
|
|
|
|
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
|
|
|
|
|
|
|
|
|
|
|
543 |
msgid ""
|
544 |
"Before you can access your account, an administrator needs to approve it. "
|
545 |
"You will be notified via email."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
|
|
|
|
|
|
|
|
|
549 |
msgid "A username is required for registration."
|
550 |
msgstr "Es obligatorio un nombre de usuario para la inscripción."
|
551 |
|
552 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
|
553 |
msgid "Sorry, that username already exists!"
|
554 |
msgstr "Lo sentimos, ese nombre de usuario ya existe"
|
555 |
|
556 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:887
|
557 |
msgid "You must enter a valid email address."
|
558 |
msgstr "Has de introducir una dirección de Email válida."
|
559 |
|
560 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:889
|
561 |
msgid "Sorry, that email address is already used!"
|
562 |
msgstr "Lo sentimos, esa dirección ya está en uso"
|
563 |
|
564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
|
565 |
msgid "You didn't complete one of the password-fields!"
|
566 |
msgstr "No has completado una de los campos de contraseña"
|
567 |
|
568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
569 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
573 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
574 |
#, fuzzy
|
575 |
msgid "The account was NOT created!"
|
576 |
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
577 |
|
578 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:908
|
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:910
|
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:928
|
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:928
|
591 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
592 |
msgid "Please try a different one!"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
596 |
#, fuzzy
|
597 |
msgid "This email address is already reserved to be used soon."
|
598 |
msgstr "Lo sentimos, esa dirección ya está en uso"
|
599 |
|
600 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
601 |
msgid "You are logged in as"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
605 |
msgid "You don't need another account."
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
609 |
#, fuzzy
|
610 |
msgid "Log out of this account."
|
611 |
msgstr "Cerrar sesión"
|
612 |
|
613 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
614 |
#, fuzzy
|
615 |
msgid "Logout"
|
616 |
msgstr "Salir »"
|
617 |
|
618 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
619 |
+
#, php-format
|
620 |
+
msgid ""
|
621 |
+
"An email has been sent to %1$s with information on how to activate his/her "
|
622 |
+
"account."
|
|
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1172
|
626 |
+
#, fuzzy, php-format
|
627 |
+
msgid "A user account has been created for %1$s."
|
628 |
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
629 |
|
630 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
631 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
632 |
+
#, php-format
|
633 |
msgid ""
|
634 |
"You will soon be redirected automatically. If you see this page for more "
|
635 |
+
"than 3 seconds, please click %1$s.%2$s"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1197
|
639 |
msgid ""
|
640 |
"An email has been sent to you with information on how to activate your "
|
641 |
+
"account."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1201
|
645 |
+
#, fuzzy, php-format
|
646 |
+
msgid "Thank you for registering %1$s."
|
647 |
msgstr "Gracias por registrarte, %1$s."
|
648 |
|
649 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1228
|
650 |
msgid "An error occured while trying to send the notification email."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
654 |
msgid "An email containing activation instructions was successfully sent."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
658 |
msgid "An email containing the username and password was successfully sent."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1254
|
662 |
msgid "Users can register themselves or you can manually create users here."
|
663 |
msgstr ""
|
664 |
"Los usuarios pueden registrarse ellos mismos o puedes crear manualmente los "
|
665 |
"usuarios desde aquí."
|
666 |
|
667 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
668 |
msgid ""
|
669 |
"Users cannot currently register themselves, but you can manually create "
|
670 |
"users here."
|
672 |
"Los usuarios no pueden registrarse ellos mismos, pero puedes crear "
|
673 |
"manualmente los usuarios desde aquí."
|
674 |
|
675 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
676 |
msgid "Only an administrator can add new users."
|
677 |
msgstr "Sólo el administrador puede añadir nuevos usuarios."
|
678 |
|
679 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1287
|
680 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1311
|
681 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1335
|
682 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1359
|
683 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1410
|
684 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1434
|
685 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1458
|
686 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1482
|
687 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1509
|
688 |
msgid ""
|
689 |
"This field must be filled out before registering (It was marked as required "
|
690 |
"by the administrator)"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1308
|
694 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1332
|
695 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1356
|
696 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1383
|
697 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1407
|
698 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1431
|
699 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1455
|
700 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1479
|
701 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1506
|
702 |
msgid "This field is marked as required by the administrator"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1581
|
706 |
msgid "Anti-Spam"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1602
|
710 |
#, fuzzy
|
711 |
msgid "Send these credentials via email."
|
712 |
msgstr "Enviar las credenciales por correo electrónico."
|
713 |
|
714 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
715 |
msgid "Add User"
|
716 |
msgstr "Añadir usuario"
|
717 |
|
718 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
719 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
720 |
msgid "Register"
|
721 |
msgstr "Registrar"
|
734 |
msgid "Visibility"
|
735 |
msgstr "Visibilidad"
|
736 |
|
737 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
|
738 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
739 |
+
msgid "Default"
|
740 |
+
msgstr "Predeterminada"
|
741 |
+
|
742 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
|
743 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
744 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
745 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
755 |
msgid "Show"
|
756 |
msgstr "Mostrar"
|
757 |
|
758 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
|
759 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
760 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
761 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
771 |
msgid "Hide"
|
772 |
msgstr "Ocultar"
|
773 |
|
774 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
776 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
777 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
778 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
|
779 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
780 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
|
781 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
782 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
783 |
msgid "Save Changes"
|
913 |
msgid "shortcode."
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
917 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
918 |
+
msgid "NOTE:"
|
919 |
+
msgstr "OBSERVACION:"
|
920 |
+
|
921 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
922 |
msgid "this plugin only adds/removes fields in the front-end."
|
923 |
msgstr "este plugin sólo añade/elimina campos en la parte pública."
|
969 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
970 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
971 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
972 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
|
973 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
|
974 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
|
975 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
|
976 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
|
977 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
|
978 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
|
979 |
msgid "Yes"
|
980 |
msgstr ""
|
981 |
|
993 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
994 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
995 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
996 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
|
997 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
|
998 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
|
999 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
|
1000 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
|
1001 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
|
1002 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
|
1003 |
#, fuzzy
|
1004 |
msgid "No"
|
1005 |
msgstr "Ninguna"
|
1024 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1025 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1026 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1027 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
|
1028 |
msgid "General Settings"
|
1029 |
msgstr ""
|
1030 |
|
1033 |
msgid "Stylesheet Used on the Front-End:"
|
1034 |
msgstr "Hoja de estilos usada:"
|
1035 |
|
|
|
|
|
|
|
|
|
1036 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1037 |
msgid "White"
|
1038 |
msgstr "Blanco"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1074 |
+
#, php-format
|
1075 |
msgid ""
|
1076 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1077 |
+
"Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
|
1078 |
+
"access to automatic updates and support. Need a license key? %3$sPurchase "
|
1079 |
+
"one now%4$s"
|
|
|
|
|
|
|
1080 |
msgstr ""
|
1081 |
|
1082 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1083 |
+
#, php-format
|
1084 |
msgid ""
|
1085 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1086 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1087 |
+
"priority support. %3$sPurchase one now%4$s"
|
|
|
|
|
|
|
|
|
1088 |
msgstr ""
|
1089 |
|
1090 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1141 |
msgstr ""
|
1142 |
|
1143 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1144 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
|
1145 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
|
1146 |
msgid "Custom Redirects"
|
1147 |
msgstr ""
|
1148 |
|
1152 |
msgid "reCAPTCHA"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
|
1156 |
msgid "Redirects on custom page requests:"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
|
1160 |
msgid "Action"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
|
1164 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
|
1165 |
msgid "Redirect"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
|
1169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
|
1170 |
msgid "URL"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
|
1174 |
msgid "After Registration:"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
|
1178 |
msgid "After Login:"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
|
1182 |
#, fuzzy
|
1183 |
msgid "Recover Password (*)"
|
1184 |
msgstr "Repetir contraseña"
|
1185 |
|
1186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
|
1187 |
msgid ""
|
1188 |
"When activated this feature will redirect the user on both the default "
|
1189 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1190 |
"Profile Builder on the front-end login page."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
|
1194 |
msgid "Redirects on default WordPress page requests:"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
|
1198 |
msgid "Requested WP Page"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
|
1202 |
+
msgid "Default WP Login Page (*)"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
|
1206 |
+
msgid "Default WP Logout Page (**)"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
|
1210 |
msgid "Default WP Register Page"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
|
1214 |
msgid "Default WP Dashboard (***)"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
|
1218 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
|
1222 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
|
1226 |
msgid ""
|
1227 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1228 |
"manage options)."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
|
|
1236 |
msgid "To use reCAPTCHA you must get an API key from"
|
1237 |
msgstr ""
|
1238 |
|
1277 |
msgid "Private Key:"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
|
1281 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1282 |
msgstr ""
|
1283 |
|
1293 |
"authors, visible to only the users currently logged in, you would use:"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1297 |
+
msgid ""
|
1298 |
+
"You can also create a userlisting page that displays users having a certain "
|
1299 |
+
"meta-value within a certain (extra) meta-field like so:"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1303 |
+
msgid ""
|
1304 |
+
"Remember though, that the field-value combination must exist in the database."
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
|
1308 |
msgid "These settings are applied to the front-end userlisting."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:46
|
1312 |
msgid "Number of Users/Page: "
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:63
|
1316 |
msgid "Default Sorting Order: "
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
|
1320 |
msgid "\"All-Userlisting\" Template"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1324 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1325 |
msgid ""
|
1326 |
"With the userlisting templates you can customize the look, feel and "
|
1327 |
"information listed by the shortcode."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
|
1331 |
msgid ""
|
1332 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1333 |
"on each page access where the shortcode is present."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
|
1337 |
msgid "Avatar size: "
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:97
|
1341 |
msgid "Insert \"Sort By\" Field:"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:125
|
1345 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
|
1346 |
msgid "Insert \"User-Meta\" Field:"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:156
|
1350 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:262
|
1351 |
msgid "Insert Extra Functions:"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:171
|
1355 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:173
|
1359 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:276
|
1360 |
msgid ""
|
1361 |
"If you wish to use a default userlisting, just copy the following code and "
|
1362 |
"paste it in the textarea below:"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
|
1366 |
msgid "\"Single-Userlisting\" Template"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:219
|
1370 |
msgid ""
|
1371 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1372 |
"It's displayed when clickin on the \"more info\" link."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:274
|
1376 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1380 |
msgid ""
|
1381 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1385 |
msgid "You can find it in Profile Builder's menu."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
|
1389 |
#, fuzzy
|
1390 |
msgid "You need to be logged in to view the userlisting!"
|
1391 |
msgstr "Debes estar conectado para editar tu perfil."
|
1392 |
|
1393 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
|
1394 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
|
1395 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1396 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1328
|
1397 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1414
|
1398 |
msgid "Search Users by All Fields"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1402 |
msgid "Leave Blank and Press Search to List All Users"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
|
1406 |
msgid "Search"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
|
1410 |
#, fuzzy
|
1411 |
msgid "First/Lastname"
|
1412 |
msgstr "Nombre:"
|
1413 |
|
1414 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
|
1415 |
#, fuzzy
|
1416 |
msgid "Email"
|
1417 |
msgstr "Email"
|
1418 |
|
1419 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
|
1420 |
msgid "Sign-up Date"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
|
1424 |
#, fuzzy
|
1425 |
msgid "Firstname"
|
1426 |
msgstr "Nombre:"
|
1427 |
|
1428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
|
1429 |
#, fuzzy
|
1430 |
msgid "Lastname"
|
1431 |
msgstr "Apellidos"
|
1432 |
|
1433 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
|
1434 |
#, fuzzy
|
1435 |
msgid "Display Name"
|
1436 |
msgstr "Nombre:"
|
1437 |
|
1438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
|
1439 |
msgid "Posts"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1443 |
msgid "Click here to see more information about this user"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1447 |
msgid "More..."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
|
1451 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1452 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1453 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1454 |
#, fuzzy
|
1455 |
msgid "No uploaded attachment"
|
1456 |
msgstr "El archivo adjunto \""
|
1457 |
|
1458 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
|
1459 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1460 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1160
|
1461 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1462 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1463 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1466 |
msgid "Click to see the current attachment"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1470 |
msgid "Click here to go back"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1474 |
#, fuzzy
|
1475 |
msgid "Back"
|
1476 |
msgstr "Negro"
|
1477 |
|
1478 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1479 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
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:581
|
1482 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1485 |
msgid "Current file"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
|
1489 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1490 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1491 |
msgid "Avatar"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1215
|
1495 |
msgid "No results found!"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1499 |
msgid "«« First"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1503 |
msgid "« Prev"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1507 |
#, fuzzy
|
1508 |
msgid "Next » "
|
1509 |
msgstr "Salir »"
|
1510 |
|
1511 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
|
1512 |
#, fuzzy
|
1513 |
msgid "Last »»"
|
1514 |
msgstr "Salir »"
|
1515 |
|
1516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
|
1517 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
|
1518 |
#, fuzzy
|
1519 |
msgid "You must give your option a title."
|
1520 |
msgstr "Debes estar conectado para editar tu perfil."
|
1521 |
|
1522 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
|
1523 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
|
1524 |
msgid "You have entered an invalid meta-key format!"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
|
1528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
|
1529 |
#, fuzzy
|
1530 |
msgid "You must enter a valid meta-key."
|
1531 |
msgstr "Has de introducir una dirección de Email válida."
|
1532 |
|
1533 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
|
1534 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1535 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:447
|
1536 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
|
1537 |
msgid "That meta-key is already in use."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1541 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1542 |
msgid ""
|
1543 |
"There is already an avatar input-type. You can only have one avatar present."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:324
|
1547 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:474
|
1548 |
msgid ""
|
1549 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1550 |
"have one present."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:329
|
1554 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:479
|
1555 |
msgid "The textarea row value must be numeric."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1559 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1560 |
msgid "The maxlength attribute must be numeric."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1565 |
msgid "The value must be between 20 and 200!"
|
1566 |
msgstr ""
|
1567 |
|
|
|
|
|
|
|
|
|
|
|
1568 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1569 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1570 |
+
msgid "The width component of the entered value must be numeric!"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1574 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1575 |
+
msgid "The height component of the entered value must be numeric!"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1579 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1580 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1584 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1585 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
|
1589 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
|
1590 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
|
1594 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:506
|
1595 |
msgid "The entered avatar size must be numeric!"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:390
|
1599 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:566
|
1600 |
msgid "There was an error, please try again."
|
1601 |
msgstr ""
|
1602 |
|
1609 |
msgstr ""
|
1610 |
|
1611 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1612 |
+
#, fuzzy, php-format
|
1613 |
+
msgid "Your account on %1$s has been approved!"
|
1614 |
+
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
|
|
|
|
|
|
|
|
1615 |
|
1616 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1617 |
+
#, php-format
|
1618 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1622 |
+
#, fuzzy, php-format
|
1623 |
+
msgid "Your account on %1$s has been unapproved!"
|
1624 |
+
msgstr "Se ha creado la cuenta de usuario para %1$s."
|
1625 |
|
1626 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1627 |
+
#, php-format
|
1628 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1629 |
msgstr ""
|
1630 |
|
1631 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1657 |
msgstr ""
|
1658 |
|
1659 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1660 |
+
#, php-format
|
1661 |
+
msgid "Are you sure you want to %1$s this user?"
|
|
|
|
|
|
|
1662 |
msgstr ""
|
1663 |
|
1664 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1911 |
msgid "Don't have an account?"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1915 |
+
#, fuzzy
|
1916 |
+
msgid "Lost Password"
|
1917 |
+
msgstr "¿has olvidado la contraseña?"
|
1918 |
+
|
1919 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1920 |
#, fuzzy
|
1921 |
msgid "Lost Your Password?"
|
1927 |
msgstr "Acceder"
|
1928 |
|
1929 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1930 |
+
msgid "After login redirect URL (optional):"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1934 |
+
msgid "Register page URL (optional):"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1938 |
+
msgid "Password Recovery page URL (optional):"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1946 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
|
1950 |
#, php-format
|
1951 |
msgid ""
|
1952 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1953 |
+
"Please %1$sregister your copy%2$s of Profile Builder to receive access to "
|
1954 |
+
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
|
1955 |
+
"%5$sDismiss%6$s"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
|
1959 |
#, php-format
|
1960 |
msgid ""
|
1961 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1962 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1963 |
+
"priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
2029 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#, fuzzy
|
2033 |
+
#~ msgid "The attachment"
|
2034 |
+
#~ msgstr "El archivo adjunto \""
|
2035 |
+
|
2036 |
+
#, fuzzy
|
2037 |
+
#~ msgid "was successfully deleted."
|
2038 |
+
#~ msgstr "\" ha sido eliminado."
|
2039 |
+
|
2040 |
+
#, fuzzy
|
2041 |
+
#~ msgid "Possible cause: the size was bigger than"
|
2042 |
+
#~ msgstr "<br/>Causa posible: el tamaño era más grande que "
|
2043 |
+
|
2044 |
+
#, fuzzy
|
2045 |
+
#~ msgid "The listed attachements were"
|
2046 |
+
#~ msgstr "b.<br/>Los archivos adjuntos listados eran"
|
2047 |
+
|
2048 |
+
#, fuzzy
|
2049 |
+
#~ msgid "and password:"
|
2050 |
+
#~ msgstr "Contraseña"
|
2051 |
+
|
2052 |
#~ msgid "Plugin Layout"
|
2053 |
#~ msgstr "Diseño del Plugin"
|
2054 |
|
translation/profilebuilder-fr_FR.mo
CHANGED
Binary file
|
translation/profilebuilder-fr_FR.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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,49 +15,34 @@ msgstr ""
|
|
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:
|
19 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
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:
|
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:
|
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:
|
47 |
-
#, fuzzy
|
48 |
-
msgid "The attachment"
|
49 |
-
msgstr "
|
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:
|
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:
|
61 |
#, fuzzy
|
62 |
msgid ""
|
63 |
"The email address you entered is already registered to a different user."
|
@@ -65,134 +50,124 @@ 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:
|
69 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
70 |
msgid "The email address was"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
74 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
75 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
76 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
77 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
84 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
85 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
86 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
87 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
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:
|
107 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
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:
|
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:
|
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:
|
128 |
-
#,
|
129 |
-
msgid "
|
130 |
-
|
131 |
-
|
132 |
-
|
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:
|
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:
|
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:
|
148 |
msgid "The avatar was"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
152 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
159 |
-
|
160 |
-
msgid "
|
161 |
-
|
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:
|
168 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
169 |
msgid "Name"
|
170 |
msgstr "Nom"
|
171 |
|
172 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
173 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
174 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
178 |
msgid "Username"
|
179 |
msgstr "Nom d'Utilisateur"
|
180 |
|
181 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
187 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
188 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
189 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
190 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
191 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
192 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
193 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
194 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
195 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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
|
@@ -207,302 +182,295 @@ msgstr " Les noms d'utilisateurs ne peuvent être modifiés."
|
|
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:
|
211 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
212 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
213 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
214 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
215 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
216 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
217 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
218 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
219 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
226 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
232 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
238 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
248 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
253 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
260 |
msgid "(required)"
|
261 |
msgstr "(requis)"
|
262 |
|
263 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
264 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
267 |
msgid "Website"
|
268 |
msgstr "Site Web"
|
269 |
|
270 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
271 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
277 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
283 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
289 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
294 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
297 |
msgid "Biographical Info"
|
298 |
msgstr "Infos Biographiques"
|
299 |
|
300 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
305 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
306 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
307 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
312 |
msgid "Update"
|
313 |
msgstr "Mettre à Jour"
|
314 |
|
315 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
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:
|
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:
|
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:
|
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:
|
338 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
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:
|
345 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
346 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
347 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
348 |
msgid "here"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
352 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
353 |
msgid "ERROR:"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
357 |
msgid "The username field is empty"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
361 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
362 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
363 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
364 |
msgid "Password"
|
365 |
msgstr "Mot de Passe"
|
366 |
|
367 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
368 |
msgid "Log in"
|
369 |
msgstr "Connexion"
|
370 |
|
371 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
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:
|
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:
|
380 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
381 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
382 |
msgid "ERROR"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
393 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
394 |
-
|
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 |
-
"
|
|
|
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:
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
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:
|
419 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
420 |
-
|
|
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
424 |
-
|
425 |
-
|
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:
|
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:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
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:
|
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:
|
454 |
-
|
|
|
455 |
msgstr ""
|
|
|
456 |
|
457 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
458 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
464 |
-
|
465 |
-
msgid "
|
466 |
-
|
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:
|
477 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
482 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
488 |
msgid "Invalid key!"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
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:
|
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:
|
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:
|
506 |
#, fuzzy
|
507 |
msgid "Get New Password"
|
508 |
msgstr "Nouveau Mot de Passe"
|
@@ -551,164 +519,157 @@ 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:
|
555 |
-
|
|
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
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:
|
574 |
-
|
575 |
-
|
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:
|
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 |
-
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:
|
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:
|
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:
|
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:
|
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:
|
617 |
-
|
|
|
|
|
|
|
|
|
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:
|
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:
|
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:
|
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:
|
635 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
636 |
msgid "Please try a different one!"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
645 |
msgid "You are logged in as"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
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:
|
658 |
#, fuzzy
|
659 |
msgid "Logout"
|
660 |
msgstr "Déconnexion »"
|
661 |
|
662 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
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:
|
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:
|
676 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
712 |
msgid ""
|
713 |
"Users cannot currently register themselves, but you can manually create "
|
714 |
"users here."
|
@@ -716,50 +677,50 @@ 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:
|
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:
|
724 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
725 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
726 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
727 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
728 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
729 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
730 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
731 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
738 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
739 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
740 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
741 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
742 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
743 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
744 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
745 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
750 |
msgid "Anti-Spam"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
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:
|
759 |
msgid "Add User"
|
760 |
msgstr "Ajouter un Utilisateur"
|
761 |
|
762 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
763 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
764 |
msgid "Register"
|
765 |
msgstr "Enregistrement"
|
@@ -778,7 +739,12 @@ msgstr "Groupe d'Utilisateurs"
|
|
778 |
msgid "Visibility"
|
779 |
msgstr "Visibilité"
|
780 |
|
781 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
|
|
|
|
|
|
|
|
|
|
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
|
@@ -794,7 +760,7 @@ msgstr "Visibilité"
|
|
794 |
msgid "Show"
|
795 |
msgstr "Afficher"
|
796 |
|
797 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
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
|
@@ -810,26 +776,13 @@ msgstr "Afficher"
|
|
810 |
msgid "Hide"
|
811 |
msgstr "Masquer"
|
812 |
|
813 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
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:
|
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:
|
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"
|
@@ -965,6 +918,11 @@ msgstr ""
|
|
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."
|
@@ -1016,7 +974,13 @@ msgstr "Nom:"
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
1020 |
msgid "Yes"
|
1021 |
msgstr ""
|
1022 |
|
@@ -1034,7 +998,13 @@ msgstr ""
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
1038 |
#, fuzzy
|
1039 |
msgid "No"
|
1040 |
msgstr "Aucune"
|
@@ -1059,7 +1029,7 @@ msgstr "Nouveau Mot de Passe"
|
|
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:
|
1063 |
msgid "General Settings"
|
1064 |
msgstr ""
|
1065 |
|
@@ -1068,10 +1038,6 @@ msgstr ""
|
|
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"
|
@@ -1110,25 +1076,20 @@ msgid ""
|
|
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 <
|
1116 |
-
"
|
1117 |
-
"
|
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
|
1126 |
-
"
|
1127 |
-
"
|
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
|
@@ -1185,7 +1146,8 @@ 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:
|
|
|
1189 |
msgid "Custom Redirects"
|
1190 |
msgstr ""
|
1191 |
|
@@ -1195,75 +1157,77 @@ msgstr ""
|
|
1195 |
msgid "reCAPTCHA"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1199 |
msgid "Redirects on custom page requests:"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1203 |
msgid "Action"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1207 |
msgid "Redirect"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1211 |
msgid "URL"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1215 |
msgid "After Registration:"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1219 |
msgid "After Login:"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
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:
|
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:
|
1239 |
msgid "Requested WP Page"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1243 |
-
msgid "Default WP Login Page(*)"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1247 |
-
msgid "Default WP Logout Page(**)"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1251 |
msgid "Default WP Register Page"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1255 |
msgid "Default WP Dashboard (***)"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
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:
|
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:
|
1267 |
msgid ""
|
1268 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1269 |
"manage options)."
|
@@ -1274,7 +1238,6 @@ 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 |
|
@@ -1319,7 +1282,7 @@ msgstr ""
|
|
1319 |
msgid "Private Key:"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:
|
1323 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1324 |
msgstr ""
|
1325 |
|
@@ -1335,160 +1298,171 @@ msgid ""
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
1343 |
msgid "Number of Users/Page: "
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1347 |
msgid "Default Sorting Order: "
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1351 |
msgid "\"All-Userlisting\" Template"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1355 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
1368 |
msgid "Avatar size: "
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1372 |
msgid "Insert \"Sort By\" Field:"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1376 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1377 |
msgid "Insert \"User-Meta\" Field:"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1381 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1382 |
msgid "Insert Extra Functions:"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1386 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1390 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1397 |
msgid "\"Single-Userlisting\" Template"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1407 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
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:
|
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:
|
1425 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1426 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1427 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1428 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1429 |
msgid "Search Users by All Fields"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1437 |
msgid "Search"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1441 |
#, fuzzy
|
1442 |
msgid "First/Lastname"
|
1443 |
msgstr "Prénom"
|
1444 |
|
1445 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1446 |
#, fuzzy
|
1447 |
msgid "Email"
|
1448 |
msgstr "Courriel"
|
1449 |
|
1450 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1451 |
msgid "Sign-up Date"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1455 |
#, fuzzy
|
1456 |
msgid "Firstname"
|
1457 |
msgstr "Prénom"
|
1458 |
|
1459 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1460 |
#, fuzzy
|
1461 |
msgid "Lastname"
|
1462 |
msgstr "Nom"
|
1463 |
|
1464 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1465 |
#, fuzzy
|
1466 |
msgid "Display Name"
|
1467 |
msgstr "Prénom"
|
1468 |
|
1469 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1470 |
msgid "Posts"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1478 |
msgid "More..."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1482 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1490 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1491 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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
|
@@ -1497,17 +1471,17 @@ msgstr "La pièce jointe \""
|
|
1497 |
msgid "Click to see the current attachment"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1501 |
msgid "Click here to go back"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1505 |
#, fuzzy
|
1506 |
msgid "Back"
|
1507 |
msgstr "Noir"
|
1508 |
|
1509 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1510 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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
|
@@ -1516,118 +1490,118 @@ msgstr "Noir"
|
|
1516 |
msgid "Current file"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1526 |
msgid "No results found!"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1530 |
msgid "«« First"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1534 |
msgid "« Prev"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1538 |
#, fuzzy
|
1539 |
msgid "Next » "
|
1540 |
msgstr "Déconnexion »"
|
1541 |
|
1542 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
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:
|
1548 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1554 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1559 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1565 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1566 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1567 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1572 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1578 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1585 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1590 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1595 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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
|
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
|
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
|
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:
|
1625 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
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:
|
1630 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1631 |
msgid "There was an error, please try again."
|
1632 |
msgstr ""
|
1633 |
|
@@ -1640,24 +1614,23 @@ msgid "the current user?"
|
|
1640 |
msgstr ""
|
1641 |
|
1642 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1643 |
-
|
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 |
-
|
|
|
1653 |
msgstr ""
|
1654 |
|
1655 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1656 |
-
|
1657 |
-
|
|
|
1658 |
|
1659 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1660 |
-
|
|
|
1661 |
msgstr ""
|
1662 |
|
1663 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
@@ -1689,11 +1662,8 @@ msgid "approve"
|
|
1689 |
msgstr ""
|
1690 |
|
1691 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1692 |
-
|
1693 |
-
|
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
|
@@ -1946,6 +1916,11 @@ msgstr "Profile Builder"
|
|
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?"
|
@@ -1957,15 +1932,15 @@ 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
|
@@ -1976,21 +1951,21 @@ msgstr ""
|
|
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:
|
1980 |
#, php-format
|
1981 |
msgid ""
|
1982 |
-
"Your <strong>Profile Builder
|
1983 |
-
"
|
1984 |
-
"
|
1985 |
-
"%sDismiss%s"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1989 |
#, php-format
|
1990 |
msgid ""
|
1991 |
-
"Your <strong>Profile Builder
|
1992 |
-
"%sRenew Your Licence%s to receive access to automatic updates and
|
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
|
@@ -2059,6 +2034,26 @@ msgstr ""
|
|
2059 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2060 |
msgstr ""
|
2061 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2062 |
#~ msgid "Plugin Layout"
|
2063 |
#~ msgstr "Apparence du Plugin"
|
2064 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-10 11:27+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-10 11:27+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"
|
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:83
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"The information size you were trying to submit was larger than %1$sb!<br/"
|
23 |
+
">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
|
24 |
+
"it was also larger than %2$sb no additional information is available.<br/"
|
25 |
+
">The user was NOT created!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
|
29 |
msgid "You must be logged in to edit your profile."
|
30 |
msgstr "Vous devez être connecté(e) pour modifier votre profil."
|
31 |
|
32 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
|
33 |
msgid "The avatar was successfully deleted."
|
34 |
msgstr "L'avatar a bien été supprimé."
|
35 |
|
36 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
|
37 |
+
#, fuzzy, php-format
|
38 |
+
msgid "The attachment \"%1$s\" was successfully deleted."
|
39 |
+
msgstr "L'avatar a bien été supprimé."
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
|
42 |
msgid "The changes have been successfully saved."
|
43 |
msgstr "Les modifications ont bien été sauvegardées."
|
44 |
|
45 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
46 |
#, fuzzy
|
47 |
msgid ""
|
48 |
"The email address you entered is already registered to a different user."
|
50 |
"L'adresse de courriel indiquée appartient déjà à un autre utilisateur.<br/"
|
51 |
">L'adresse de courriel était "
|
52 |
|
53 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
54 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
55 |
msgid "The email address was"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
59 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
60 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
61 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
62 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
63 |
msgid "NOT"
|
64 |
msgstr "PAS"
|
65 |
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
67 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
68 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
69 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
70 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
71 |
#, fuzzy
|
72 |
msgid "updated along with the rest of the information."
|
73 |
msgstr " mis à jour avec le reste des informations."
|
74 |
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
76 |
#, fuzzy
|
77 |
msgid "The email address you entered is invalid."
|
78 |
msgstr ""
|
79 |
"L'adresse de courriel n'est pas valide. <br/> L'adresse de courriel était "
|
80 |
|
81 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
82 |
#, fuzzy
|
83 |
msgid "The passwords you entered do not match."
|
84 |
msgstr ""
|
85 |
"Les mots de passe ne correspondent pas. <br/> Les mots de passe étaient "
|
86 |
|
87 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
88 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
89 |
#, fuzzy
|
90 |
msgid "The password was"
|
91 |
msgstr "Nouveau Mot de Passe"
|
92 |
|
93 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
94 |
#, fuzzy
|
95 |
msgid "You didn't complete both password fields."
|
96 |
msgstr "Vous n'avez pas renseigné un des champs de mot de passe !"
|
97 |
|
98 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
|
99 |
msgid "Your profile was NOT updated!"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
|
103 |
#, fuzzy
|
104 |
msgid "There was an error while trying to upload the following attachments:"
|
105 |
msgstr ""
|
106 |
"Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
107 |
|
108 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
109 |
+
#, php-format
|
110 |
+
msgid ""
|
111 |
+
"Possible cause: the size was bigger than %1$sb. The listed attachements were "
|
112 |
+
"%2$sNOT%3$s updated along with the rest of the information."
|
113 |
+
msgstr ""
|
|
|
|
|
|
|
114 |
|
115 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
116 |
#, fuzzy
|
117 |
msgid "There was an error while trying to upload your avatar picture."
|
118 |
msgstr ""
|
119 |
"Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
120 |
|
121 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
122 |
msgid "Possible cause: size/incorrect file-type."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
126 |
msgid "The avatar was"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
|
130 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:897
|
131 |
#, fuzzy
|
132 |
msgid "There was an error while trying to upload the following attachment(s)"
|
133 |
msgstr ""
|
134 |
"Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
135 |
|
136 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
|
137 |
+
#, php-format
|
138 |
+
msgid ""
|
139 |
+
"Only files with the following extension(s) can be uploaded: %1$s<br/>This "
|
140 |
+
"file was %2$sNOT%3$s updated along with the rest of the information."
|
|
|
|
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
|
144 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1277
|
145 |
msgid "Name"
|
146 |
msgstr "Nom"
|
147 |
|
148 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
|
149 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
|
150 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1298
|
|
|
151 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
|
153 |
msgid "Username"
|
154 |
msgstr "Nom d'Utilisateur"
|
155 |
|
156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
|
157 |
#, fuzzy
|
158 |
msgid "Usernames cannot be changed."
|
159 |
msgstr " Les noms d'utilisateurs ne peuvent être modifiés."
|
160 |
|
161 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
|
162 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
|
163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:726
|
164 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:746
|
165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:796
|
166 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:817
|
167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:835
|
168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:853
|
169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:871
|
170 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:892
|
171 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
172 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
173 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
182 |
msgid "This field is marked as required by the administrator."
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
|
186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
|
187 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:729
|
188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:749
|
189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
|
190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
|
191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
|
192 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:855
|
193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
|
194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
|
195 |
msgid ""
|
196 |
"This field wasn't updated because you entered and empty string (It was "
|
197 |
"marked as required by the administrator."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
|
201 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1322
|
202 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
203 |
msgid "First Name"
|
204 |
msgstr "Prénom"
|
205 |
|
206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
|
207 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1346
|
208 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
209 |
msgid "Last Name"
|
210 |
msgstr "Nom"
|
211 |
|
212 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
|
213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1370
|
214 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
215 |
msgid "Nickname"
|
216 |
msgstr "Pseudo"
|
217 |
|
218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:757
|
219 |
msgid "Display name publicly as"
|
220 |
msgstr "Apparaître publiquement en tant que"
|
221 |
|
222 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
|
223 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1376
|
224 |
msgid "Contact Info"
|
225 |
msgstr "Infos de Contact"
|
226 |
|
227 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
|
228 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1397
|
|
|
229 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
230 |
msgid "E-mail"
|
231 |
msgstr "Courriel"
|
232 |
|
233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
|
234 |
msgid "(required)"
|
235 |
msgstr "(requis)"
|
236 |
|
237 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
|
238 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1421
|
239 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
240 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
|
241 |
msgid "Website"
|
242 |
msgstr "Site Web"
|
243 |
|
244 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
|
245 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1445
|
246 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
247 |
msgid "AIM"
|
248 |
msgstr "AIM"
|
249 |
|
250 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
|
251 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1469
|
252 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
253 |
msgid "Yahoo IM"
|
254 |
msgstr "Yahoo IM"
|
255 |
|
256 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
|
257 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1493
|
258 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
259 |
msgid "Jabber / Google Talk"
|
260 |
msgstr "Jabber / Google Talk"
|
261 |
|
262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
|
263 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1499
|
264 |
msgid "About Yourself"
|
265 |
msgstr "À Propos de Vous"
|
266 |
|
267 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
|
268 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1520
|
269 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
270 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
|
271 |
msgid "Biographical Info"
|
272 |
msgstr "Infos Biographiques"
|
273 |
|
274 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
|
275 |
msgid "New Password"
|
276 |
msgstr "Nouveau Mot de Passe"
|
277 |
|
278 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
|
279 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
|
280 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
|
281 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
282 |
msgid "Repeat Password"
|
283 |
msgstr "Répéter le Mot de Passe"
|
284 |
|
285 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
|
286 |
msgid "Update"
|
287 |
msgstr "Mettre à Jour"
|
288 |
|
289 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
290 |
+
#, fuzzy, php-format
|
291 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
292 |
msgstr ""
|
293 |
"Vous êtes actuellement connecté(e) en tant que <a href=\"%1$s\" title=\"%2$s"
|
294 |
"\">%2$s</a>."
|
295 |
|
296 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
297 |
msgid "Log out of this account"
|
298 |
msgstr "Se déconnecter de ce compte"
|
299 |
|
300 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
301 |
#, fuzzy
|
302 |
msgid "Log out"
|
303 |
msgstr "Déconnexion »"
|
304 |
|
305 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
|
306 |
+
#, fuzzy, php-format
|
307 |
+
msgid "You have successfully logged in as %1$s"
|
308 |
msgstr ""
|
309 |
"Vous vous êtes connecté en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
310 |
|
311 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
312 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
313 |
+
#, php-format
|
314 |
msgid ""
|
315 |
"You will soon be redirected automatically. If you see this page for more "
|
316 |
+
"than 1 second, please click %1$s"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
320 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
321 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
322 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
323 |
msgid "here"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
327 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
328 |
msgid "ERROR:"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
332 |
msgid "The username field is empty"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
|
336 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
|
337 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
|
338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1553
|
339 |
msgid "Password"
|
340 |
msgstr "Mot de Passe"
|
341 |
|
342 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
|
343 |
msgid "Log in"
|
344 |
msgstr "Connexion"
|
345 |
|
346 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
347 |
msgid "Remember me"
|
348 |
msgstr "Se souvenir de moi"
|
349 |
|
350 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:157
|
351 |
msgid "Lost password?"
|
352 |
msgstr "Mot de passe oublié ?"
|
353 |
|
354 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
355 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
356 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
357 |
msgid "ERROR"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
361 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
362 |
msgid ""
|
363 |
"Your account has to be confirmed by an administrator before you can use the "
|
364 |
"\"Password Reset\" feature."
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
|
368 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
|
369 |
+
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
msgid ""
|
371 |
+
"A password reset email has been sent to %1$s.<br/>Following the link sent in "
|
372 |
+
"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:165
|
376 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
|
377 |
+
#, php-format
|
378 |
+
msgid ""
|
379 |
+
"Someone requested that the password be reset for the following account: <b>"
|
380 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
381 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
|
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
|
385 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
|
386 |
+
#, php-format
|
387 |
+
msgid "Password Reset Feature from \"%1$s\""
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
391 |
+
#, fuzzy, php-format
|
392 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
|
|
393 |
msgstr ""
|
394 |
"Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
395 |
|
396 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
397 |
#, fuzzy
|
398 |
msgid "The email address entered wasn't found in the database!"
|
399 |
msgstr ""
|
400 |
"L'adresse de courriel n'est pas valide. <br/> L'adresse de courriel était "
|
401 |
|
402 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
403 |
msgid "Please check that you entered the correct email address."
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
407 |
+
#, fuzzy
|
408 |
+
msgid "There was an error while trying to send the activation link to "
|
409 |
+
msgstr ""
|
410 |
+
"Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
411 |
+
|
412 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
413 |
msgid "The username entered wasn't found in the database!"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
417 |
msgid "Please check that you entered the correct username."
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
|
421 |
#, fuzzy
|
422 |
msgid "Your password has been successfully changed!"
|
423 |
msgstr "Les modifications ont bien été sauvegardées."
|
424 |
|
425 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
|
426 |
+
#, fuzzy, php-format
|
427 |
+
msgid "You have successfully reset your password to: %1$s"
|
428 |
msgstr ""
|
429 |
+
"Vous vous êtes connecté en tant que <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
430 |
|
431 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
|
432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
|
433 |
+
#, fuzzy, php-format
|
434 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
435 |
msgstr "\" a bien été supprimée."
|
436 |
|
437 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
|
438 |
+
#, php-format
|
439 |
+
msgid ""
|
440 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
441 |
+
"her new password is:%2$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
|
445 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:894
|
446 |
msgid "The entered passwords don't match!"
|
447 |
msgstr "Les mots de passe ne correspondent pas !"
|
448 |
|
449 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
|
450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
|
451 |
#, fuzzy
|
452 |
msgid "Reset Password"
|
453 |
msgstr "Répéter le Mot de Passe"
|
454 |
|
455 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
456 |
msgid "Invalid key!"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
460 |
#, fuzzy
|
461 |
msgid "Please enter your username or email address."
|
462 |
msgstr "Vous devez entrer une adresse de courriel valide."
|
463 |
|
464 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
465 |
msgid "You will receive a link to create a new password via email."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
469 |
#, fuzzy
|
470 |
msgid "Username or E-mail"
|
471 |
msgstr "Nom d'Utilisateur"
|
472 |
|
473 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
474 |
#, fuzzy
|
475 |
msgid "Get New Password"
|
476 |
msgstr "Nouveau Mot de Passe"
|
519 |
msgstr ""
|
520 |
"Une erreur est survenue durant le téléversement des fichiers suivante:<br/>"
|
521 |
|
522 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
|
523 |
+
#, php-format
|
524 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
528 |
msgid ""
|
529 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
530 |
"please remember that you need to approve this user before he/she can log in!"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
534 |
msgid "A new subscriber has (been) registered!"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:522
|
538 |
#, fuzzy
|
539 |
msgid "A new account has been created for you."
|
540 |
msgstr "Un compte utilisateur pour %1$s a été créé."
|
541 |
|
542 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
543 |
+
#, php-format
|
544 |
+
msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
|
|
|
|
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
|
|
|
|
|
|
|
|
|
|
|
548 |
msgid ""
|
549 |
"Before you can access your account, an administrator needs to approve it. "
|
550 |
"You will be notified via email."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
|
|
|
|
|
|
|
|
|
554 |
msgid "A username is required for registration."
|
555 |
msgstr "Un nom d'utilisateur est requis pour l'enregistrement."
|
556 |
|
557 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
|
558 |
msgid "Sorry, that username already exists!"
|
559 |
msgstr "Désolé, ce nom d'utilisateur existe déjà !"
|
560 |
|
561 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:887
|
562 |
msgid "You must enter a valid email address."
|
563 |
msgstr "Vous devez entrer une adresse de courriel valide."
|
564 |
|
565 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:889
|
566 |
msgid "Sorry, that email address is already used!"
|
567 |
msgstr "Désolé, cette adresse de courriel est déjà utilisée !"
|
568 |
|
569 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
|
570 |
msgid "You didn't complete one of the password-fields!"
|
571 |
msgstr "Vous n'avez pas renseigné un des champs de mot de passe !"
|
572 |
|
573 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
574 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
578 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
579 |
#, fuzzy
|
580 |
msgid "The account was NOT created!"
|
581 |
msgstr "Un compte utilisateur pour %1$s a été créé."
|
582 |
|
583 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:908
|
584 |
msgid "You must agree to the terms and conditions before registering!"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
588 |
msgid "(Several required fields were left uncompleted)"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
592 |
msgid "This username is already reserved to be used soon."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
596 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
597 |
msgid "Please try a different one!"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
601 |
#, fuzzy
|
602 |
msgid "This email address is already reserved to be used soon."
|
603 |
msgstr "Désolé, cette adresse de courriel est déjà utilisée !"
|
604 |
|
605 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
606 |
msgid "You are logged in as"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
610 |
msgid "You don't need another account."
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
614 |
#, fuzzy
|
615 |
msgid "Log out of this account."
|
616 |
msgstr "Se déconnecter de ce compte"
|
617 |
|
618 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
619 |
#, fuzzy
|
620 |
msgid "Logout"
|
621 |
msgstr "Déconnexion »"
|
622 |
|
623 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
624 |
+
#, php-format
|
625 |
+
msgid ""
|
626 |
+
"An email has been sent to %1$s with information on how to activate his/her "
|
627 |
+
"account."
|
|
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1172
|
631 |
+
#, fuzzy, php-format
|
632 |
+
msgid "A user account has been created for %1$s."
|
633 |
msgstr "Un compte utilisateur pour %1$s a été créé."
|
634 |
|
635 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
636 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
637 |
+
#, php-format
|
638 |
msgid ""
|
639 |
"You will soon be redirected automatically. If you see this page for more "
|
640 |
+
"than 3 seconds, please click %1$s.%2$s"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1197
|
644 |
msgid ""
|
645 |
"An email has been sent to you with information on how to activate your "
|
646 |
+
"account."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1201
|
650 |
+
#, fuzzy, php-format
|
651 |
+
msgid "Thank you for registering %1$s."
|
652 |
msgstr "Merci de vous être enregistré, %1$s."
|
653 |
|
654 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1228
|
655 |
msgid "An error occured while trying to send the notification email."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
659 |
msgid "An email containing activation instructions was successfully sent."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
663 |
msgid "An email containing the username and password was successfully sent."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1254
|
667 |
msgid "Users can register themselves or you can manually create users here."
|
668 |
msgstr ""
|
669 |
"Les utilisateurs peuvent s'enregistrer ou bien vous pouvez les créer "
|
670 |
"manuellement ici."
|
671 |
|
672 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
673 |
msgid ""
|
674 |
"Users cannot currently register themselves, but you can manually create "
|
675 |
"users here."
|
677 |
"Les utilisateurs ne peuvent actuellement pas s'enregistrer eux-même, mais "
|
678 |
"vous pouvez les créer manuellement ici."
|
679 |
|
680 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
681 |
msgid "Only an administrator can add new users."
|
682 |
msgstr "Seul un administrateur peut ajouter de nouveaux utilisateurs."
|
683 |
|
684 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1287
|
685 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1311
|
686 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1335
|
687 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1359
|
688 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1410
|
689 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1434
|
690 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1458
|
691 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1482
|
692 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1509
|
693 |
msgid ""
|
694 |
"This field must be filled out before registering (It was marked as required "
|
695 |
"by the administrator)"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1308
|
699 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1332
|
700 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1356
|
701 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1383
|
702 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1407
|
703 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1431
|
704 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1455
|
705 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1479
|
706 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1506
|
707 |
msgid "This field is marked as required by the administrator"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1581
|
711 |
msgid "Anti-Spam"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1602
|
715 |
#, fuzzy
|
716 |
msgid "Send these credentials via email."
|
717 |
msgstr " Envoyer ces données par courriel."
|
718 |
|
719 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
720 |
msgid "Add User"
|
721 |
msgstr "Ajouter un Utilisateur"
|
722 |
|
723 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
724 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
725 |
msgid "Register"
|
726 |
msgstr "Enregistrement"
|
739 |
msgid "Visibility"
|
740 |
msgstr "Visibilité"
|
741 |
|
742 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
|
743 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
744 |
+
msgid "Default"
|
745 |
+
msgstr "Défaut"
|
746 |
+
|
747 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
|
748 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
749 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
750 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
760 |
msgid "Show"
|
761 |
msgstr "Afficher"
|
762 |
|
763 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
|
764 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
765 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
766 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
776 |
msgid "Hide"
|
777 |
msgstr "Masquer"
|
778 |
|
779 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
780 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
781 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
782 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
783 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
|
784 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
785 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
|
786 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
787 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
788 |
msgid "Save Changes"
|
918 |
msgid "shortcode."
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
922 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
923 |
+
msgid "NOTE:"
|
924 |
+
msgstr "NOTE:"
|
925 |
+
|
926 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
927 |
msgid "this plugin only adds/removes fields in the front-end."
|
928 |
msgstr "ce plugin ajoute/retire des champs uniquement sur le Front-End."
|
974 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
975 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
976 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
977 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
|
978 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
|
979 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
|
980 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
|
981 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
|
982 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
|
983 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
|
984 |
msgid "Yes"
|
985 |
msgstr ""
|
986 |
|
998 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
999 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1000 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1001 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
|
1002 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
|
1003 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
|
1004 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
|
1005 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
|
1006 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
|
1007 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
|
1008 |
#, fuzzy
|
1009 |
msgid "No"
|
1010 |
msgstr "Aucune"
|
1029 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1030 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1031 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1032 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
|
1033 |
msgid "General Settings"
|
1034 |
msgstr ""
|
1035 |
|
1038 |
msgid "Stylesheet Used on the Front-End:"
|
1039 |
msgstr "Feuille de style utilisée"
|
1040 |
|
|
|
|
|
|
|
|
|
1041 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1042 |
msgid "White"
|
1043 |
msgstr "Blanc"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1079 |
+
#, php-format
|
1080 |
msgid ""
|
1081 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1082 |
+
"Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
|
1083 |
+
"access to automatic updates and support. Need a license key? %3$sPurchase "
|
1084 |
+
"one now%4$s"
|
|
|
|
|
|
|
1085 |
msgstr ""
|
1086 |
|
1087 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1088 |
+
#, php-format
|
1089 |
msgid ""
|
1090 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1091 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1092 |
+
"priority support. %3$sPurchase one now%4$s"
|
|
|
|
|
|
|
|
|
1093 |
msgstr ""
|
1094 |
|
1095 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1146 |
msgstr ""
|
1147 |
|
1148 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1149 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
|
1150 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
|
1151 |
msgid "Custom Redirects"
|
1152 |
msgstr ""
|
1153 |
|
1157 |
msgid "reCAPTCHA"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
|
1161 |
msgid "Redirects on custom page requests:"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
|
1165 |
msgid "Action"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
|
1169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
|
1170 |
msgid "Redirect"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
|
1174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
|
1175 |
msgid "URL"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
|
1179 |
msgid "After Registration:"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
|
1183 |
msgid "After Login:"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
|
1187 |
#, fuzzy
|
1188 |
msgid "Recover Password (*)"
|
1189 |
msgstr "Répéter le Mot de Passe"
|
1190 |
|
1191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
|
1192 |
msgid ""
|
1193 |
"When activated this feature will redirect the user on both the default "
|
1194 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1195 |
"Profile Builder on the front-end login page."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
|
1199 |
msgid "Redirects on default WordPress page requests:"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
|
1203 |
msgid "Requested WP Page"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
|
1207 |
+
msgid "Default WP Login Page (*)"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
|
1211 |
+
msgid "Default WP Logout Page (**)"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
|
1215 |
msgid "Default WP Register Page"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
|
1219 |
msgid "Default WP Dashboard (***)"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
|
1223 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
|
1227 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
|
1231 |
msgid ""
|
1232 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1233 |
"manage options)."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
|
|
1241 |
msgid "To use reCAPTCHA you must get an API key from"
|
1242 |
msgstr ""
|
1243 |
|
1282 |
msgid "Private Key:"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
|
1286 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1287 |
msgstr ""
|
1288 |
|
1298 |
"authors, visible to only the users currently logged in, you would use:"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1302 |
+
msgid ""
|
1303 |
+
"You can also create a userlisting page that displays users having a certain "
|
1304 |
+
"meta-value within a certain (extra) meta-field like so:"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1308 |
+
msgid ""
|
1309 |
+
"Remember though, that the field-value combination must exist in the database."
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
|
1313 |
msgid "These settings are applied to the front-end userlisting."
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:46
|
1317 |
msgid "Number of Users/Page: "
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:63
|
1321 |
msgid "Default Sorting Order: "
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
|
1325 |
msgid "\"All-Userlisting\" Template"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1329 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1330 |
msgid ""
|
1331 |
"With the userlisting templates you can customize the look, feel and "
|
1332 |
"information listed by the shortcode."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
|
1336 |
msgid ""
|
1337 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1338 |
"on each page access where the shortcode is present."
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
|
1342 |
msgid "Avatar size: "
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:97
|
1346 |
msgid "Insert \"Sort By\" Field:"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:125
|
1350 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
|
1351 |
msgid "Insert \"User-Meta\" Field:"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:156
|
1355 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:262
|
1356 |
msgid "Insert Extra Functions:"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:171
|
1360 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:173
|
1364 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:276
|
1365 |
msgid ""
|
1366 |
"If you wish to use a default userlisting, just copy the following code and "
|
1367 |
"paste it in the textarea below:"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
|
1371 |
msgid "\"Single-Userlisting\" Template"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:219
|
1375 |
msgid ""
|
1376 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1377 |
"It's displayed when clickin on the \"more info\" link."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:274
|
1381 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1385 |
msgid ""
|
1386 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1390 |
msgid "You can find it in Profile Builder's menu."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
|
1394 |
#, fuzzy
|
1395 |
msgid "You need to be logged in to view the userlisting!"
|
1396 |
msgstr "Vous devez être connecté(e) pour modifier votre profil."
|
1397 |
|
1398 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
|
1399 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
|
1400 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1401 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1328
|
1402 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1414
|
1403 |
msgid "Search Users by All Fields"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1407 |
msgid "Leave Blank and Press Search to List All Users"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
|
1411 |
msgid "Search"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
|
1415 |
#, fuzzy
|
1416 |
msgid "First/Lastname"
|
1417 |
msgstr "Prénom"
|
1418 |
|
1419 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
|
1420 |
#, fuzzy
|
1421 |
msgid "Email"
|
1422 |
msgstr "Courriel"
|
1423 |
|
1424 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
|
1425 |
msgid "Sign-up Date"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
|
1429 |
#, fuzzy
|
1430 |
msgid "Firstname"
|
1431 |
msgstr "Prénom"
|
1432 |
|
1433 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
|
1434 |
#, fuzzy
|
1435 |
msgid "Lastname"
|
1436 |
msgstr "Nom"
|
1437 |
|
1438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
|
1439 |
#, fuzzy
|
1440 |
msgid "Display Name"
|
1441 |
msgstr "Prénom"
|
1442 |
|
1443 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
|
1444 |
msgid "Posts"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1448 |
msgid "Click here to see more information about this user"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1452 |
msgid "More..."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
|
1456 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1457 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1458 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1459 |
#, fuzzy
|
1460 |
msgid "No uploaded attachment"
|
1461 |
msgstr "La pièce jointe \""
|
1462 |
|
1463 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
|
1464 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1465 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1160
|
1466 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1467 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1468 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1471 |
msgid "Click to see the current attachment"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1475 |
msgid "Click here to go back"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1479 |
#, fuzzy
|
1480 |
msgid "Back"
|
1481 |
msgstr "Noir"
|
1482 |
|
1483 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1484 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1485 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1486 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1487 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1490 |
msgid "Current file"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
|
1494 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1495 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1496 |
msgid "Avatar"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1215
|
1500 |
msgid "No results found!"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1504 |
msgid "«« First"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1508 |
msgid "« Prev"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1512 |
#, fuzzy
|
1513 |
msgid "Next » "
|
1514 |
msgstr "Déconnexion »"
|
1515 |
|
1516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
|
1517 |
#, fuzzy
|
1518 |
msgid "Last »»"
|
1519 |
msgstr "Déconnexion »"
|
1520 |
|
1521 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
|
1522 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
|
1523 |
#, fuzzy
|
1524 |
msgid "You must give your option a title."
|
1525 |
msgstr "Vous devez être connecté(e) pour modifier votre profil."
|
1526 |
|
1527 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
|
1528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
|
1529 |
msgid "You have entered an invalid meta-key format!"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
|
1533 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
|
1534 |
#, fuzzy
|
1535 |
msgid "You must enter a valid meta-key."
|
1536 |
msgstr "Vous devez entrer une adresse de courriel valide."
|
1537 |
|
1538 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
|
1539 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1540 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:447
|
1541 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
|
1542 |
msgid "That meta-key is already in use."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1546 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1547 |
msgid ""
|
1548 |
"There is already an avatar input-type. You can only have one avatar present."
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:324
|
1552 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:474
|
1553 |
msgid ""
|
1554 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1555 |
"have one present."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:329
|
1559 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:479
|
1560 |
msgid "The textarea row value must be numeric."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1565 |
msgid "The maxlength attribute must be numeric."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1569 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1570 |
msgid "The value must be between 20 and 200!"
|
1571 |
msgstr ""
|
1572 |
|
|
|
|
|
|
|
|
|
|
|
1573 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1574 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1575 |
+
msgid "The width component of the entered value must be numeric!"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1579 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1580 |
+
msgid "The height component of the entered value must be numeric!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1584 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1585 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1589 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1590 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
|
1594 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
|
1595 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
|
1599 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:506
|
1600 |
msgid "The entered avatar size must be numeric!"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:390
|
1604 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:566
|
1605 |
msgid "There was an error, please try again."
|
1606 |
msgstr ""
|
1607 |
|
1614 |
msgstr ""
|
1615 |
|
1616 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1617 |
+
#, fuzzy, php-format
|
1618 |
+
msgid "Your account on %1$s has been approved!"
|
1619 |
+
msgstr "Un compte utilisateur pour %1$s a été créé."
|
|
|
|
|
|
|
|
|
1620 |
|
1621 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1622 |
+
#, php-format
|
1623 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1627 |
+
#, fuzzy, php-format
|
1628 |
+
msgid "Your account on %1$s has been unapproved!"
|
1629 |
+
msgstr "Un compte utilisateur pour %1$s a été créé."
|
1630 |
|
1631 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1632 |
+
#, php-format
|
1633 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1634 |
msgstr ""
|
1635 |
|
1636 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1662 |
msgstr ""
|
1663 |
|
1664 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1665 |
+
#, php-format
|
1666 |
+
msgid "Are you sure you want to %1$s this user?"
|
|
|
|
|
|
|
1667 |
msgstr ""
|
1668 |
|
1669 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1916 |
msgid "Don't have an account?"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1920 |
+
#, fuzzy
|
1921 |
+
msgid "Lost Password"
|
1922 |
+
msgstr "Mot de passe oublié ?"
|
1923 |
+
|
1924 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1925 |
#, fuzzy
|
1926 |
msgid "Lost Your Password?"
|
1932 |
msgstr "Connexion"
|
1933 |
|
1934 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1935 |
+
msgid "After login redirect URL (optional):"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1939 |
+
msgid "Register page URL (optional):"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1943 |
+
msgid "Password Recovery page URL (optional):"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1951 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
|
1955 |
#, php-format
|
1956 |
msgid ""
|
1957 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1958 |
+
"Please %1$sregister your copy%2$s of Profile Builder to receive access to "
|
1959 |
+
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
|
1960 |
+
"%5$sDismiss%6$s"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
|
1964 |
#, php-format
|
1965 |
msgid ""
|
1966 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1967 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1968 |
+
"priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
2034 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#, fuzzy
|
2038 |
+
#~ msgid "The attachment"
|
2039 |
+
#~ msgstr "La pièce jointe \""
|
2040 |
+
|
2041 |
+
#, fuzzy
|
2042 |
+
#~ msgid "was successfully deleted."
|
2043 |
+
#~ msgstr "\" a bien été supprimée."
|
2044 |
+
|
2045 |
+
#, fuzzy
|
2046 |
+
#~ msgid "Possible cause: the size was bigger than"
|
2047 |
+
#~ msgstr "<br/>Cause possible: la taille est supérieur à "
|
2048 |
+
|
2049 |
+
#, fuzzy
|
2050 |
+
#~ msgid "The listed attachements were"
|
2051 |
+
#~ msgstr "b.<br/>les fichiers étaient "
|
2052 |
+
|
2053 |
+
#, fuzzy
|
2054 |
+
#~ msgid "and password:"
|
2055 |
+
#~ msgstr "Mot de Passe"
|
2056 |
+
|
2057 |
#~ msgid "Plugin Layout"
|
2058 |
#~ msgstr "Apparence du Plugin"
|
2059 |
|
translation/profilebuilder-hu_HU.mo
CHANGED
Binary file
|
translation/profilebuilder-hu_HU.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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,49 +15,34 @@ msgstr ""
|
|
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:
|
19 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
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:
|
39 |
msgid "You must be logged in to edit your profile."
|
40 |
msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
|
41 |
|
42 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
43 |
msgid "The avatar was successfully deleted."
|
44 |
msgstr "Az avatar sikeresen törölve."
|
45 |
|
46 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
47 |
-
#, fuzzy
|
48 |
-
msgid "The attachment"
|
49 |
-
msgstr "
|
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 "\" sikeresen törölve."
|
55 |
|
56 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
57 |
msgid "The changes have been successfully saved."
|
58 |
msgstr "A változások sikeresen mentve."
|
59 |
|
60 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
61 |
#, fuzzy
|
62 |
msgid ""
|
63 |
"The email address you entered is already registered to a different user."
|
@@ -65,129 +50,119 @@ msgstr ""
|
|
65 |
"Az email címmel, amit megadtál már egy másik felhasználó regisztrált. <br/> "
|
66 |
"Az email cím"
|
67 |
|
68 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
69 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
70 |
msgid "The email address was"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
74 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
75 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
76 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
77 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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 "NEM"
|
82 |
|
83 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
84 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
85 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
86 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
87 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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 "lett a többi információval együtt frissítve."
|
93 |
|
94 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
95 |
#, fuzzy
|
96 |
msgid "The email address you entered is invalid."
|
97 |
msgstr "Az email cím, amit megadtál érvénytelen. <br/> Ez az email cím"
|
98 |
|
99 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
100 |
#, fuzzy
|
101 |
msgid "The passwords you entered do not match."
|
102 |
msgstr "Az általad megadott jelszavak nem egyeznek <br/> A jelszó"
|
103 |
|
104 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
105 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
106 |
#, fuzzy
|
107 |
msgid "The password was"
|
108 |
msgstr "Új jelszó"
|
109 |
|
110 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
111 |
#, fuzzy
|
112 |
msgid "You didn't complete both password fields."
|
113 |
msgstr "Nem töltötted ki az egyik jelszó mezőt!"
|
114 |
|
115 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
116 |
msgid "Your profile was NOT updated!"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
120 |
#, fuzzy
|
121 |
msgid "There was an error while trying to upload the following attachments:"
|
122 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
123 |
|
124 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
125 |
-
#,
|
126 |
-
msgid "
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
#, fuzzy
|
131 |
-
msgid "The listed attachements were"
|
132 |
-
msgstr "b.<br/>A felsorolt csatolmányok"
|
133 |
|
134 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
135 |
#, fuzzy
|
136 |
msgid "There was an error while trying to upload your avatar picture."
|
137 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
138 |
|
139 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
140 |
msgid "Possible cause: size/incorrect file-type."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
144 |
msgid "The avatar was"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
148 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
149 |
#, fuzzy
|
150 |
msgid "There was an error while trying to upload the following attachment(s)"
|
151 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
152 |
|
153 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
154 |
-
|
155 |
-
msgid "
|
156 |
-
|
157 |
-
|
158 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
159 |
-
msgid "This file was"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
163 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
164 |
msgid "Name"
|
165 |
msgstr "Név"
|
166 |
|
167 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
168 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
169 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
170 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
171 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
172 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
173 |
msgid "Username"
|
174 |
msgstr "Felhasználónév"
|
175 |
|
176 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
177 |
#, fuzzy
|
178 |
msgid "Usernames cannot be changed."
|
179 |
msgstr "A Felhasználónév nem változtatható."
|
180 |
|
181 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
182 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
183 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
184 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
185 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
186 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
187 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
188 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
189 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
190 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
191 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
192 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
193 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
@@ -202,299 +177,291 @@ msgstr "A Felhasználónév nem változtatható."
|
|
202 |
msgid "This field is marked as required by the administrator."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
206 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
207 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
208 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
209 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
210 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
211 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
212 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
213 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
214 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
215 |
msgid ""
|
216 |
"This field wasn't updated because you entered and empty string (It was "
|
217 |
"marked as required by the administrator."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
221 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
222 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
223 |
msgid "First Name"
|
224 |
msgstr "Keresztnév"
|
225 |
|
226 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
227 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
228 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
229 |
msgid "Last Name"
|
230 |
msgstr "Vezetéknév"
|
231 |
|
232 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
233 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
234 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
235 |
msgid "Nickname"
|
236 |
msgstr "Loginnév"
|
237 |
|
238 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
239 |
msgid "Display name publicly as"
|
240 |
msgstr "Név megjelenítése publikusan, mint"
|
241 |
|
242 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
243 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
244 |
msgid "Contact Info"
|
245 |
msgstr "Kapcsolati információ"
|
246 |
|
247 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
248 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
249 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
250 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
251 |
msgid "E-mail"
|
252 |
msgstr "E-mail"
|
253 |
|
254 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
255 |
msgid "(required)"
|
256 |
msgstr "(kötelező)"
|
257 |
|
258 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
259 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
260 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
261 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
262 |
msgid "Website"
|
263 |
msgstr "Weboldal"
|
264 |
|
265 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
266 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
267 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
268 |
msgid "AIM"
|
269 |
msgstr "AIM"
|
270 |
|
271 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
272 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
273 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
274 |
msgid "Yahoo IM"
|
275 |
msgstr "Yahoo IM"
|
276 |
|
277 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
278 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
279 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
280 |
msgid "Jabber / Google Talk"
|
281 |
msgstr "Jabber / Google Talk"
|
282 |
|
283 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
284 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
285 |
msgid "About Yourself"
|
286 |
msgstr "Magadról"
|
287 |
|
288 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
289 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
290 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
291 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
292 |
msgid "Biographical Info"
|
293 |
msgstr "Életrajzi információk"
|
294 |
|
295 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
296 |
msgid "New Password"
|
297 |
msgstr "Új jelszó"
|
298 |
|
299 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
300 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
301 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
302 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
303 |
msgid "Repeat Password"
|
304 |
msgstr "Jelszó, mégegyszer"
|
305 |
|
306 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
307 |
msgid "Update"
|
308 |
msgstr "Frissítés"
|
309 |
|
310 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
311 |
-
#, fuzzy
|
312 |
-
msgid "You are currently logged in as"
|
313 |
msgstr ""
|
314 |
"Jelenleg be vagy jelentkezve, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
315 |
|
316 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
317 |
msgid "Log out of this account"
|
318 |
msgstr "Kijelentkezés ebből a fiókból"
|
319 |
|
320 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
321 |
#, fuzzy
|
322 |
msgid "Log out"
|
323 |
msgstr "Kijelentkezés »"
|
324 |
|
325 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
326 |
-
#, fuzzy
|
327 |
-
msgid "You have successfully logged in as"
|
328 |
msgstr ""
|
329 |
"Sikeresen bejelentkeztél, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
330 |
|
331 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
332 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
333 |
msgid ""
|
334 |
"You will soon be redirected automatically. If you see this page for more "
|
335 |
-
"than 1 second, please click"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
339 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
340 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
341 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
342 |
msgid "here"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
346 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
347 |
msgid "ERROR:"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
351 |
msgid "The username field is empty"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
355 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
356 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
357 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
358 |
msgid "Password"
|
359 |
msgstr "Jelszó"
|
360 |
|
361 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
362 |
msgid "Log in"
|
363 |
msgstr "Bejelentkezés"
|
364 |
|
365 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
366 |
msgid "Remember me"
|
367 |
msgstr "Emlékezz rám!"
|
368 |
|
369 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
370 |
msgid "Lost password?"
|
371 |
msgstr "Elvesztett jelszó?"
|
372 |
|
373 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
374 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
375 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
376 |
msgid "ERROR"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
380 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
381 |
msgid ""
|
382 |
"Your account has to be confirmed by an administrator before you can use the "
|
383 |
"\"Password Reset\" feature."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
387 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
388 |
-
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
392 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
393 |
-
msgid "Following the link sent in the email address will reset the password."
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
397 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
398 |
msgid ""
|
399 |
-
"
|
|
|
400 |
msgstr ""
|
401 |
|
402 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
403 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
msgid "To reset your password, visit the following link:"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
413 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
414 |
-
|
|
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
418 |
-
|
419 |
-
|
420 |
-
msgid "There was an error while trying to send the activation link to "
|
421 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
422 |
|
423 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
424 |
#, fuzzy
|
425 |
msgid "The email address entered wasn't found in the database!"
|
426 |
msgstr "Az email cím, amit megadtál érvénytelen. <br/> Ez az email cím"
|
427 |
|
428 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
429 |
msgid "Please check that you entered the correct email address."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
|
|
|
|
|
|
|
|
|
|
433 |
msgid "The username entered wasn't found in the database!"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
437 |
msgid "Please check that you entered the correct username."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
441 |
#, fuzzy
|
442 |
msgid "Your password has been successfully changed!"
|
443 |
msgstr "A változások sikeresen mentve."
|
444 |
|
445 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
446 |
-
|
|
|
447 |
msgstr ""
|
|
|
448 |
|
449 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
450 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
451 |
-
#, fuzzy
|
452 |
-
msgid "Password Successfully Reset for"
|
453 |
msgstr "\" sikeresen törölve."
|
454 |
|
455 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
456 |
-
|
457 |
-
msgid "
|
458 |
-
|
459 |
-
|
460 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
461 |
-
msgid "has requested a password change via the password reset feature."
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
465 |
-
msgid "His/her new password is:"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
469 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
470 |
msgid "The entered passwords don't match!"
|
471 |
msgstr "A beírt jelszavak nem egyeznek!"
|
472 |
|
473 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
474 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
475 |
#, fuzzy
|
476 |
msgid "Reset Password"
|
477 |
msgstr "Jelszó, mégegyszer"
|
478 |
|
479 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
480 |
msgid "Invalid key!"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
484 |
#, fuzzy
|
485 |
msgid "Please enter your username or email address."
|
486 |
msgstr "Valós email címet kell beírnod!"
|
487 |
|
488 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
489 |
msgid "You will receive a link to create a new password via email."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
493 |
#, fuzzy
|
494 |
msgid "Username or E-mail"
|
495 |
msgstr "Felhasználónév"
|
496 |
|
497 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
498 |
#, fuzzy
|
499 |
msgid "Get New Password"
|
500 |
msgstr "Új jelszó"
|
@@ -542,164 +509,157 @@ msgstr "Az avatar sikeresen törölve."
|
|
542 |
msgid "There was an error while trying to activate the user."
|
543 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
544 |
|
545 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
546 |
-
|
|
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
550 |
msgid ""
|
551 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
552 |
"please remember that you need to approve this user before he/she can log in!"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
556 |
msgid "A new subscriber has (been) registered!"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
560 |
#, fuzzy
|
561 |
msgid "A new account has been created for you."
|
562 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
563 |
|
564 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
569 |
-
msgid "Your username is:"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
573 |
-
#, fuzzy
|
574 |
-
msgid "and password:"
|
575 |
-
msgstr "Jelszó"
|
576 |
-
|
577 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
578 |
msgid ""
|
579 |
"Before you can access your account, an administrator needs to approve it. "
|
580 |
"You will be notified via email."
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
584 |
-
msgid "The user was NOT created!"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
588 |
msgid "A username is required for registration."
|
589 |
msgstr "Felhasználónév megadása kötelező a regisztrációhoz."
|
590 |
|
591 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
592 |
msgid "Sorry, that username already exists!"
|
593 |
msgstr "Bocs, de ez a felhasználónév foglalt!"
|
594 |
|
595 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
596 |
msgid "You must enter a valid email address."
|
597 |
msgstr "Valós email címet kell beírnod!"
|
598 |
|
599 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
600 |
msgid "Sorry, that email address is already used!"
|
601 |
msgstr "Bocs, de ez az email cím már használatban van!"
|
602 |
|
603 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
604 |
msgid "You didn't complete one of the password-fields!"
|
605 |
msgstr "Nem töltötted ki az egyik jelszó mezőt!"
|
606 |
|
607 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
608 |
-
|
|
|
|
|
|
|
|
|
609 |
#, fuzzy
|
610 |
msgid "The account was NOT created!"
|
611 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
612 |
|
613 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
614 |
msgid "You must agree to the terms and conditions before registering!"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
618 |
msgid "(Several required fields were left uncompleted)"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
622 |
msgid "This username is already reserved to be used soon."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
626 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
627 |
msgid "Please try a different one!"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
631 |
#, fuzzy
|
632 |
msgid "This email address is already reserved to be used soon."
|
633 |
msgstr "Bocs, de ez az email cím már használatban van!"
|
634 |
|
635 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
636 |
msgid "You are logged in as"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
640 |
msgid "You don't need another account."
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
644 |
#, fuzzy
|
645 |
msgid "Log out of this account."
|
646 |
msgstr "Kijelentkezés ebből a fiókból"
|
647 |
|
648 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
649 |
#, fuzzy
|
650 |
msgid "Logout"
|
651 |
msgstr "Kijelentkezés »"
|
652 |
|
653 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
msgid "with information on how to activate his/her account"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
662 |
-
#, fuzzy
|
663 |
-
msgid "A user account has been created for"
|
664 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
665 |
|
666 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
667 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
668 |
msgid ""
|
669 |
"You will soon be redirected automatically. If you see this page for more "
|
670 |
-
"than 3 seconds, please click"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
674 |
msgid ""
|
675 |
"An email has been sent to you with information on how to activate your "
|
676 |
-
"account"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
680 |
-
#, fuzzy
|
681 |
-
msgid "Thank you for registering"
|
682 |
msgstr "Kösz a regisztrációt, %1$s!"
|
683 |
|
684 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
685 |
msgid "An error occured while trying to send the notification email."
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
689 |
msgid "An email containing activation instructions was successfully sent."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
693 |
msgid "An email containing the username and password was successfully sent."
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
697 |
msgid "Users can register themselves or you can manually create users here."
|
698 |
msgstr ""
|
699 |
"A felhasználók önmagukat tudják regisztrálni, vagy sajátkezűleg készíthetsz "
|
700 |
"felhasználókat itt."
|
701 |
|
702 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
703 |
msgid ""
|
704 |
"Users cannot currently register themselves, but you can manually create "
|
705 |
"users here."
|
@@ -707,50 +667,50 @@ msgstr ""
|
|
707 |
"A felhasználók jelenleg nem tudják magukat regisztrálni, de te tudsz itt "
|
708 |
"létrehozni új felhasználót."
|
709 |
|
710 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
711 |
msgid "Only an administrator can add new users."
|
712 |
msgstr "Csak egy adminisztrátor tud felhasználót hozzáadni."
|
713 |
|
714 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
715 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
716 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
717 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
718 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
719 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
720 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
721 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
722 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
723 |
msgid ""
|
724 |
"This field must be filled out before registering (It was marked as required "
|
725 |
"by the administrator)"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
729 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
730 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
731 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
732 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
733 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
734 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
735 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
736 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
737 |
msgid "This field is marked as required by the administrator"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
741 |
msgid "Anti-Spam"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
745 |
#, fuzzy
|
746 |
msgid "Send these credentials via email."
|
747 |
msgstr "Hitelesítő adatok küldése emailben. "
|
748 |
|
749 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
750 |
msgid "Add User"
|
751 |
msgstr "Felhasználó hozzáadása"
|
752 |
|
753 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
754 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
755 |
msgid "Register"
|
756 |
msgstr "Regisztráció"
|
@@ -769,7 +729,12 @@ msgstr "Felhasználói csoport"
|
|
769 |
msgid "Visibility"
|
770 |
msgstr "Láthatóság"
|
771 |
|
772 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
|
|
|
|
|
|
|
|
|
|
773 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
774 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
775 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
@@ -785,7 +750,7 @@ msgstr "Láthatóság"
|
|
785 |
msgid "Show"
|
786 |
msgstr "Mutat"
|
787 |
|
788 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
789 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
790 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
791 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
@@ -801,26 +766,13 @@ msgstr "Mutat"
|
|
801 |
msgid "Hide"
|
802 |
msgstr "Elrejt"
|
803 |
|
804 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
805 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
806 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
807 |
-
msgid "NOTE:"
|
808 |
-
msgstr "MEGJEGYZÉS:"
|
809 |
-
|
810 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:41
|
811 |
-
msgid ""
|
812 |
-
"If you added new roles (via another plugin) <u>after</u> Profile Builder was "
|
813 |
-
"activated, please reactivate it, since the roles are initialized during "
|
814 |
-
"plugin activation."
|
815 |
-
msgstr ""
|
816 |
-
|
817 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:48
|
818 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
819 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
820 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
821 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
822 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
823 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
824 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
825 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
826 |
msgid "Save Changes"
|
@@ -953,6 +905,11 @@ msgstr ""
|
|
953 |
msgid "shortcode."
|
954 |
msgstr ""
|
955 |
|
|
|
|
|
|
|
|
|
|
|
956 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
957 |
msgid "this plugin only adds/removes fields in the front-end."
|
958 |
msgstr "Ez a bővítmény csak hozzáad/eltávolít mezőket a felhasználó elől. "
|
@@ -1000,7 +957,13 @@ msgstr "Név:"
|
|
1000 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
1001 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
1002 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
1003 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1004 |
msgid "Yes"
|
1005 |
msgstr ""
|
1006 |
|
@@ -1018,7 +981,13 @@ msgstr ""
|
|
1018 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1019 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1020 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1021 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1022 |
#, fuzzy
|
1023 |
msgid "No"
|
1024 |
msgstr "Nincs"
|
@@ -1043,7 +1012,7 @@ msgstr "Új jelszó"
|
|
1043 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1044 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1045 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1046 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1047 |
msgid "General Settings"
|
1048 |
msgstr ""
|
1049 |
|
@@ -1052,10 +1021,6 @@ msgstr ""
|
|
1052 |
msgid "Stylesheet Used on the Front-End:"
|
1053 |
msgstr "Stíluslap használata:"
|
1054 |
|
1055 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
1056 |
-
msgid "Default"
|
1057 |
-
msgstr "Szokásos"
|
1058 |
-
|
1059 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1060 |
msgid "White"
|
1061 |
msgstr "Fehér"
|
@@ -1094,25 +1059,20 @@ msgid ""
|
|
1094 |
msgstr ""
|
1095 |
|
1096 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
|
|
1097 |
msgid ""
|
1098 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1099 |
-
"Please <
|
1100 |
-
"
|
1101 |
-
"
|
1102 |
-
"www.cozmoslabs.com/wordpress-profile-builder/?"
|
1103 |
-
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' "
|
1104 |
-
"class='button-primary'>Purchase one now</a>"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
|
|
1108 |
msgid ""
|
1109 |
-
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please
|
1110 |
-
"
|
1111 |
-
"
|
1112 |
-
"a> to receive access to automatic updates and priority support. <a "
|
1113 |
-
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1114 |
-
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' "
|
1115 |
-
"class='button-primary'>Purchase one now</a>"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
@@ -1169,7 +1129,8 @@ msgid "Inactive"
|
|
1169 |
msgstr ""
|
1170 |
|
1171 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1172 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1173 |
msgid "Custom Redirects"
|
1174 |
msgstr ""
|
1175 |
|
@@ -1179,75 +1140,77 @@ msgstr ""
|
|
1179 |
msgid "reCAPTCHA"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1183 |
msgid "Redirects on custom page requests:"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1187 |
msgid "Action"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1191 |
msgid "Redirect"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1195 |
msgid "URL"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1199 |
msgid "After Registration:"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1203 |
msgid "After Login:"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1207 |
#, fuzzy
|
1208 |
msgid "Recover Password (*)"
|
1209 |
msgstr "Jelszó, mégegyszer"
|
1210 |
|
1211 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1212 |
msgid ""
|
1213 |
"When activated this feature will redirect the user on both the default "
|
1214 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1215 |
"Profile Builder on the front-end login page."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1219 |
msgid "Redirects on default WordPress page requests:"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1223 |
msgid "Requested WP Page"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1227 |
-
msgid "Default WP Login Page(*)"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1231 |
-
msgid "Default WP Logout Page(**)"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1235 |
msgid "Default WP Register Page"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1239 |
msgid "Default WP Dashboard (***)"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1243 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1247 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1251 |
msgid ""
|
1252 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1253 |
"manage options)."
|
@@ -1258,7 +1221,6 @@ msgid "Could not open socket!"
|
|
1258 |
msgstr ""
|
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 ""
|
1264 |
|
@@ -1303,7 +1265,7 @@ msgstr ""
|
|
1303 |
msgid "Private Key:"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:
|
1307 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1308 |
msgstr ""
|
1309 |
|
@@ -1319,160 +1281,171 @@ msgid ""
|
|
1319 |
"authors, visible to only the users currently logged in, you would use:"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1323 |
msgid "These settings are applied to the front-end userlisting."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1327 |
msgid "Number of Users/Page: "
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1331 |
msgid "Default Sorting Order: "
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1335 |
msgid "\"All-Userlisting\" Template"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1339 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1340 |
msgid ""
|
1341 |
"With the userlisting templates you can customize the look, feel and "
|
1342 |
"information listed by the shortcode."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1346 |
msgid ""
|
1347 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1348 |
"on each page access where the shortcode is present."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1352 |
msgid "Avatar size: "
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1356 |
msgid "Insert \"Sort By\" Field:"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1360 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1361 |
msgid "Insert \"User-Meta\" Field:"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1365 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1366 |
msgid "Insert Extra Functions:"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1370 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1374 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1375 |
msgid ""
|
1376 |
"If you wish to use a default userlisting, just copy the following code and "
|
1377 |
"paste it in the textarea below:"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1381 |
msgid "\"Single-Userlisting\" Template"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1385 |
msgid ""
|
1386 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1387 |
"It's displayed when clickin on the \"more info\" link."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1391 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1395 |
msgid ""
|
1396 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1400 |
msgid "You can find it in Profile Builder's menu."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1404 |
#, fuzzy
|
1405 |
msgid "You need to be logged in to view the userlisting!"
|
1406 |
msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
|
1407 |
|
1408 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1409 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1410 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1411 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1412 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1413 |
msgid "Search Users by All Fields"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1417 |
msgid "Leave Blank and Press Search to List All Users"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1421 |
msgid "Search"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1425 |
#, fuzzy
|
1426 |
msgid "First/Lastname"
|
1427 |
msgstr "Keresztnév"
|
1428 |
|
1429 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1430 |
#, fuzzy
|
1431 |
msgid "Email"
|
1432 |
msgstr "E-mail"
|
1433 |
|
1434 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1435 |
msgid "Sign-up Date"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1439 |
#, fuzzy
|
1440 |
msgid "Firstname"
|
1441 |
msgstr "Keresztnév"
|
1442 |
|
1443 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1444 |
#, fuzzy
|
1445 |
msgid "Lastname"
|
1446 |
msgstr "Vezetéknév"
|
1447 |
|
1448 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1449 |
#, fuzzy
|
1450 |
msgid "Display Name"
|
1451 |
msgstr "Keresztnév"
|
1452 |
|
1453 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1454 |
msgid "Posts"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1458 |
msgid "Click here to see more information about this user"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1462 |
msgid "More..."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1466 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1467 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1468 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1469 |
#, fuzzy
|
1470 |
msgid "No uploaded attachment"
|
1471 |
msgstr "A csatolmány \""
|
1472 |
|
1473 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1474 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1475 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1476 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1477 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1478 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
@@ -1481,17 +1454,17 @@ msgstr "A csatolmány \""
|
|
1481 |
msgid "Click to see the current attachment"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1485 |
msgid "Click here to go back"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1489 |
#, fuzzy
|
1490 |
msgid "Back"
|
1491 |
msgstr "Fekete"
|
1492 |
|
1493 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1494 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1495 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1496 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1497 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
@@ -1500,118 +1473,118 @@ msgstr "Fekete"
|
|
1500 |
msgid "Current file"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1504 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1505 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1506 |
msgid "Avatar"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1510 |
msgid "No results found!"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1514 |
msgid "«« First"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1518 |
msgid "« Prev"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1522 |
#, fuzzy
|
1523 |
msgid "Next » "
|
1524 |
msgstr "Kijelentkezés »"
|
1525 |
|
1526 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1527 |
#, fuzzy
|
1528 |
msgid "Last »»"
|
1529 |
msgstr "Kijelentkezés »"
|
1530 |
|
1531 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1532 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1533 |
#, fuzzy
|
1534 |
msgid "You must give your option a title."
|
1535 |
msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
|
1536 |
|
1537 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1538 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1539 |
msgid "You have entered an invalid meta-key format!"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1543 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1544 |
#, fuzzy
|
1545 |
msgid "You must enter a valid meta-key."
|
1546 |
msgstr "Valós email címet kell beírnod!"
|
1547 |
|
1548 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1549 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1550 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1551 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1552 |
msgid "That meta-key is already in use."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1556 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1557 |
msgid ""
|
1558 |
"There is already an avatar input-type. You can only have one avatar present."
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1562 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1563 |
msgid ""
|
1564 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1565 |
"have one present."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1569 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1570 |
msgid "The textarea row value must be numeric."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1574 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1575 |
msgid "The maxlength attribute must be numeric."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1579 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1580 |
msgid "The value must be between 20 and 200!"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:343
|
1584 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
|
1585 |
-
msgid "The width component of the entered value must be numeric!"
|
1586 |
-
msgstr ""
|
1587 |
-
|
1588 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1589 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1590 |
-
msgid "The
|
1591 |
msgstr ""
|
1592 |
|
1593 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1594 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1595 |
-
msgid "The
|
1596 |
msgstr ""
|
1597 |
|
1598 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1599 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1600 |
-
msgid "The
|
1601 |
msgstr ""
|
1602 |
|
1603 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1604 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
|
|
|
|
|
|
|
|
|
|
1605 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1609 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1610 |
msgid "The entered avatar size must be numeric!"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1614 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1615 |
msgid "There was an error, please try again."
|
1616 |
msgstr ""
|
1617 |
|
@@ -1624,24 +1597,23 @@ msgid "the current user?"
|
|
1624 |
msgstr ""
|
1625 |
|
1626 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1627 |
-
|
1628 |
-
msgid "Your account on"
|
1629 |
-
msgstr ""
|
1630 |
-
|
1631 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1632 |
-
msgid "has been approved!"
|
1633 |
-
msgstr ""
|
1634 |
|
1635 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1636 |
-
|
|
|
1637 |
msgstr ""
|
1638 |
|
1639 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1640 |
-
|
1641 |
-
|
|
|
1642 |
|
1643 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1644 |
-
|
|
|
1645 |
msgstr ""
|
1646 |
|
1647 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
@@ -1673,11 +1645,8 @@ msgid "approve"
|
|
1673 |
msgstr ""
|
1674 |
|
1675 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1680 |
-
msgid "this user?"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
@@ -1930,6 +1899,11 @@ msgstr "Profile Builder"
|
|
1930 |
msgid "Don't have an account?"
|
1931 |
msgstr ""
|
1932 |
|
|
|
|
|
|
|
|
|
|
|
1933 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1934 |
#, fuzzy
|
1935 |
msgid "Lost Your Password?"
|
@@ -1941,15 +1915,15 @@ msgid "Login"
|
|
1941 |
msgstr "Bejelentkezés"
|
1942 |
|
1943 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1944 |
-
msgid "After login redirect URL:"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1948 |
-
msgid "Register page URL (optional)"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1952 |
-
msgid "Password Recovery page URL (optional)"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
@@ -1960,21 +1934,21 @@ msgstr ""
|
|
1960 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1964 |
#, php-format
|
1965 |
msgid ""
|
1966 |
-
"Your <strong>Profile Builder
|
1967 |
-
"
|
1968 |
-
"
|
1969 |
-
"%sDismiss%s"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1973 |
#, php-format
|
1974 |
msgid ""
|
1975 |
-
"Your <strong>Profile Builder
|
1976 |
-
"%sRenew Your Licence%s to receive access to automatic updates and
|
1977 |
-
"support. %sPurchase one now%s %sDismiss%s"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
@@ -2043,6 +2017,26 @@ msgstr ""
|
|
2043 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2044 |
msgstr ""
|
2045 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2046 |
#~ msgid "Plugin Layout"
|
2047 |
#~ msgstr "Bővítény megjelenítés"
|
2048 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-10 11:28+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-10 11:28+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"
|
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:83
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"The information size you were trying to submit was larger than %1$sb!<br/"
|
23 |
+
">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
|
24 |
+
"it was also larger than %2$sb no additional information is available.<br/"
|
25 |
+
">The user was NOT created!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
|
29 |
msgid "You must be logged in to edit your profile."
|
30 |
msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
|
31 |
|
32 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
|
33 |
msgid "The avatar was successfully deleted."
|
34 |
msgstr "Az avatar sikeresen törölve."
|
35 |
|
36 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
|
37 |
+
#, fuzzy, php-format
|
38 |
+
msgid "The attachment \"%1$s\" was successfully deleted."
|
39 |
+
msgstr "Az avatar sikeresen törölve."
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
|
42 |
msgid "The changes have been successfully saved."
|
43 |
msgstr "A változások sikeresen mentve."
|
44 |
|
45 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
46 |
#, fuzzy
|
47 |
msgid ""
|
48 |
"The email address you entered is already registered to a different user."
|
50 |
"Az email címmel, amit megadtál már egy másik felhasználó regisztrált. <br/> "
|
51 |
"Az email cím"
|
52 |
|
53 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
54 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
55 |
msgid "The email address was"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
59 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
60 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
61 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
62 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
63 |
msgid "NOT"
|
64 |
msgstr "NEM"
|
65 |
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
67 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
68 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
69 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
70 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
71 |
#, fuzzy
|
72 |
msgid "updated along with the rest of the information."
|
73 |
msgstr "lett a többi információval együtt frissítve."
|
74 |
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
76 |
#, fuzzy
|
77 |
msgid "The email address you entered is invalid."
|
78 |
msgstr "Az email cím, amit megadtál érvénytelen. <br/> Ez az email cím"
|
79 |
|
80 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
81 |
#, fuzzy
|
82 |
msgid "The passwords you entered do not match."
|
83 |
msgstr "Az általad megadott jelszavak nem egyeznek <br/> A jelszó"
|
84 |
|
85 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
86 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
87 |
#, fuzzy
|
88 |
msgid "The password was"
|
89 |
msgstr "Új jelszó"
|
90 |
|
91 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
92 |
#, fuzzy
|
93 |
msgid "You didn't complete both password fields."
|
94 |
msgstr "Nem töltötted ki az egyik jelszó mezőt!"
|
95 |
|
96 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
|
97 |
msgid "Your profile was NOT updated!"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
|
101 |
#, fuzzy
|
102 |
msgid "There was an error while trying to upload the following attachments:"
|
103 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
104 |
|
105 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
106 |
+
#, php-format
|
107 |
+
msgid ""
|
108 |
+
"Possible cause: the size was bigger than %1$sb. The listed attachements were "
|
109 |
+
"%2$sNOT%3$s updated along with the rest of the information."
|
110 |
+
msgstr ""
|
|
|
|
|
|
|
111 |
|
112 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
113 |
#, fuzzy
|
114 |
msgid "There was an error while trying to upload your avatar picture."
|
115 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
116 |
|
117 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
118 |
msgid "Possible cause: size/incorrect file-type."
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
122 |
msgid "The avatar was"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
|
126 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:897
|
127 |
#, fuzzy
|
128 |
msgid "There was an error while trying to upload the following attachment(s)"
|
129 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
130 |
|
131 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
|
132 |
+
#, php-format
|
133 |
+
msgid ""
|
134 |
+
"Only files with the following extension(s) can be uploaded: %1$s<br/>This "
|
135 |
+
"file was %2$sNOT%3$s updated along with the rest of the information."
|
|
|
|
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
|
139 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1277
|
140 |
msgid "Name"
|
141 |
msgstr "Név"
|
142 |
|
143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
|
144 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
|
145 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1298
|
|
|
146 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
|
148 |
msgid "Username"
|
149 |
msgstr "Felhasználónév"
|
150 |
|
151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
|
152 |
#, fuzzy
|
153 |
msgid "Usernames cannot be changed."
|
154 |
msgstr "A Felhasználónév nem változtatható."
|
155 |
|
156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
|
157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
|
158 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:726
|
159 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:746
|
160 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:796
|
161 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:817
|
162 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:835
|
163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:853
|
164 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:871
|
165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:892
|
166 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
167 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
168 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
177 |
msgid "This field is marked as required by the administrator."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
|
181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
|
182 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:729
|
183 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:749
|
184 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
|
185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
|
186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
|
187 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:855
|
188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
|
189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
|
190 |
msgid ""
|
191 |
"This field wasn't updated because you entered and empty string (It was "
|
192 |
"marked as required by the administrator."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1322
|
197 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
198 |
msgid "First Name"
|
199 |
msgstr "Keresztnév"
|
200 |
|
201 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
|
202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1346
|
203 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
204 |
msgid "Last Name"
|
205 |
msgstr "Vezetéknév"
|
206 |
|
207 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
|
208 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1370
|
209 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
210 |
msgid "Nickname"
|
211 |
msgstr "Loginnév"
|
212 |
|
213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:757
|
214 |
msgid "Display name publicly as"
|
215 |
msgstr "Név megjelenítése publikusan, mint"
|
216 |
|
217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
|
218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1376
|
219 |
msgid "Contact Info"
|
220 |
msgstr "Kapcsolati információ"
|
221 |
|
222 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
|
223 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1397
|
|
|
224 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
225 |
msgid "E-mail"
|
226 |
msgstr "E-mail"
|
227 |
|
228 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
|
229 |
msgid "(required)"
|
230 |
msgstr "(kötelező)"
|
231 |
|
232 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
|
233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1421
|
234 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
235 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
|
236 |
msgid "Website"
|
237 |
msgstr "Weboldal"
|
238 |
|
239 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
|
240 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1445
|
241 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
242 |
msgid "AIM"
|
243 |
msgstr "AIM"
|
244 |
|
245 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
|
246 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1469
|
247 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
248 |
msgid "Yahoo IM"
|
249 |
msgstr "Yahoo IM"
|
250 |
|
251 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
|
252 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1493
|
253 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
254 |
msgid "Jabber / Google Talk"
|
255 |
msgstr "Jabber / Google Talk"
|
256 |
|
257 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
|
258 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1499
|
259 |
msgid "About Yourself"
|
260 |
msgstr "Magadról"
|
261 |
|
262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
|
263 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1520
|
264 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
265 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
|
266 |
msgid "Biographical Info"
|
267 |
msgstr "Életrajzi információk"
|
268 |
|
269 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
|
270 |
msgid "New Password"
|
271 |
msgstr "Új jelszó"
|
272 |
|
273 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
|
274 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
|
275 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
|
276 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
277 |
msgid "Repeat Password"
|
278 |
msgstr "Jelszó, mégegyszer"
|
279 |
|
280 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
|
281 |
msgid "Update"
|
282 |
msgstr "Frissítés"
|
283 |
|
284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
285 |
+
#, fuzzy, php-format
|
286 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
287 |
msgstr ""
|
288 |
"Jelenleg be vagy jelentkezve, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
289 |
|
290 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
291 |
msgid "Log out of this account"
|
292 |
msgstr "Kijelentkezés ebből a fiókból"
|
293 |
|
294 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
295 |
#, fuzzy
|
296 |
msgid "Log out"
|
297 |
msgstr "Kijelentkezés »"
|
298 |
|
299 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
|
300 |
+
#, fuzzy, php-format
|
301 |
+
msgid "You have successfully logged in as %1$s"
|
302 |
msgstr ""
|
303 |
"Sikeresen bejelentkeztél, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
304 |
|
305 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
306 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
307 |
+
#, php-format
|
308 |
msgid ""
|
309 |
"You will soon be redirected automatically. If you see this page for more "
|
310 |
+
"than 1 second, please click %1$s"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
315 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
316 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
317 |
msgid "here"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
321 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
322 |
msgid "ERROR:"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
326 |
msgid "The username field is empty"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
|
330 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
|
331 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
|
332 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1553
|
333 |
msgid "Password"
|
334 |
msgstr "Jelszó"
|
335 |
|
336 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
|
337 |
msgid "Log in"
|
338 |
msgstr "Bejelentkezés"
|
339 |
|
340 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
341 |
msgid "Remember me"
|
342 |
msgstr "Emlékezz rám!"
|
343 |
|
344 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:157
|
345 |
msgid "Lost password?"
|
346 |
msgstr "Elvesztett jelszó?"
|
347 |
|
348 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
349 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
350 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
351 |
msgid "ERROR"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
355 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
356 |
msgid ""
|
357 |
"Your account has to be confirmed by an administrator before you can use the "
|
358 |
"\"Password Reset\" feature."
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
|
362 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
|
363 |
+
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
364 |
msgid ""
|
365 |
+
"A password reset email has been sent to %1$s.<br/>Following the link sent in "
|
366 |
+
"the email address will reset the password."
|
367 |
msgstr ""
|
368 |
|
369 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
370 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
|
371 |
+
#, php-format
|
372 |
+
msgid ""
|
373 |
+
"Someone requested that the password be reset for the following account: <b>"
|
374 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
375 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
|
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
|
379 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
|
380 |
+
#, php-format
|
381 |
+
msgid "Password Reset Feature from \"%1$s\""
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
385 |
+
#, fuzzy, php-format
|
386 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
|
|
387 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
388 |
|
389 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
390 |
#, fuzzy
|
391 |
msgid "The email address entered wasn't found in the database!"
|
392 |
msgstr "Az email cím, amit megadtál érvénytelen. <br/> Ez az email cím"
|
393 |
|
394 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
395 |
msgid "Please check that you entered the correct email address."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
399 |
+
#, fuzzy
|
400 |
+
msgid "There was an error while trying to send the activation link to "
|
401 |
+
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
402 |
+
|
403 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
404 |
msgid "The username entered wasn't found in the database!"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
408 |
msgid "Please check that you entered the correct username."
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
|
412 |
#, fuzzy
|
413 |
msgid "Your password has been successfully changed!"
|
414 |
msgstr "A változások sikeresen mentve."
|
415 |
|
416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
|
417 |
+
#, fuzzy, php-format
|
418 |
+
msgid "You have successfully reset your password to: %1$s"
|
419 |
msgstr ""
|
420 |
+
"Sikeresen bejelentkeztél, mint <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
421 |
|
422 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
|
423 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
|
424 |
+
#, fuzzy, php-format
|
425 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
426 |
msgstr "\" sikeresen törölve."
|
427 |
|
428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
|
429 |
+
#, php-format
|
430 |
+
msgid ""
|
431 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
432 |
+
"her new password is:%2$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
|
436 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:894
|
437 |
msgid "The entered passwords don't match!"
|
438 |
msgstr "A beírt jelszavak nem egyeznek!"
|
439 |
|
440 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
|
441 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
|
442 |
#, fuzzy
|
443 |
msgid "Reset Password"
|
444 |
msgstr "Jelszó, mégegyszer"
|
445 |
|
446 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
447 |
msgid "Invalid key!"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
451 |
#, fuzzy
|
452 |
msgid "Please enter your username or email address."
|
453 |
msgstr "Valós email címet kell beírnod!"
|
454 |
|
455 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
456 |
msgid "You will receive a link to create a new password via email."
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
460 |
#, fuzzy
|
461 |
msgid "Username or E-mail"
|
462 |
msgstr "Felhasználónév"
|
463 |
|
464 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
465 |
#, fuzzy
|
466 |
msgid "Get New Password"
|
467 |
msgstr "Új jelszó"
|
509 |
msgid "There was an error while trying to activate the user."
|
510 |
msgstr "Hiba történt a következő csatolmányok feltöltésekor: <br/>"
|
511 |
|
512 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
|
513 |
+
#, php-format
|
514 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
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:504
|
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:522
|
528 |
#, fuzzy
|
529 |
msgid "A new account has been created for you."
|
530 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
531 |
|
532 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
533 |
+
#, php-format
|
534 |
+
msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
|
|
|
|
|
|
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
|
|
|
|
|
|
|
|
|
|
|
538 |
msgid ""
|
539 |
"Before you can access your account, an administrator needs to approve it. "
|
540 |
"You will be notified via email."
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
|
|
|
|
|
|
|
|
|
544 |
msgid "A username is required for registration."
|
545 |
msgstr "Felhasználónév megadása kötelező a regisztrációhoz."
|
546 |
|
547 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
|
548 |
msgid "Sorry, that username already exists!"
|
549 |
msgstr "Bocs, de ez a felhasználónév foglalt!"
|
550 |
|
551 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:887
|
552 |
msgid "You must enter a valid email address."
|
553 |
msgstr "Valós email címet kell beírnod!"
|
554 |
|
555 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:889
|
556 |
msgid "Sorry, that email address is already used!"
|
557 |
msgstr "Bocs, de ez az email cím már használatban van!"
|
558 |
|
559 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
|
560 |
msgid "You didn't complete one of the password-fields!"
|
561 |
msgstr "Nem töltötted ki az egyik jelszó mezőt!"
|
562 |
|
563 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
564 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
569 |
#, fuzzy
|
570 |
msgid "The account was NOT created!"
|
571 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
572 |
|
573 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:908
|
574 |
msgid "You must agree to the terms and conditions before registering!"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
578 |
msgid "(Several required fields were left uncompleted)"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
582 |
msgid "This username is already reserved to be used soon."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
586 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
587 |
msgid "Please try a different one!"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
591 |
#, fuzzy
|
592 |
msgid "This email address is already reserved to be used soon."
|
593 |
msgstr "Bocs, de ez az email cím már használatban van!"
|
594 |
|
595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
596 |
msgid "You are logged in as"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
600 |
msgid "You don't need another account."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
604 |
#, fuzzy
|
605 |
msgid "Log out of this account."
|
606 |
msgstr "Kijelentkezés ebből a fiókból"
|
607 |
|
608 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
609 |
#, fuzzy
|
610 |
msgid "Logout"
|
611 |
msgstr "Kijelentkezés »"
|
612 |
|
613 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
614 |
+
#, php-format
|
615 |
+
msgid ""
|
616 |
+
"An email has been sent to %1$s with information on how to activate his/her "
|
617 |
+
"account."
|
|
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1172
|
621 |
+
#, fuzzy, php-format
|
622 |
+
msgid "A user account has been created for %1$s."
|
623 |
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
624 |
|
625 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
626 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
627 |
+
#, php-format
|
628 |
msgid ""
|
629 |
"You will soon be redirected automatically. If you see this page for more "
|
630 |
+
"than 3 seconds, please click %1$s.%2$s"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1197
|
634 |
msgid ""
|
635 |
"An email has been sent to you with information on how to activate your "
|
636 |
+
"account."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1201
|
640 |
+
#, fuzzy, php-format
|
641 |
+
msgid "Thank you for registering %1$s."
|
642 |
msgstr "Kösz a regisztrációt, %1$s!"
|
643 |
|
644 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1228
|
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:1233
|
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:1238
|
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:1254
|
657 |
msgid "Users can register themselves or you can manually create users here."
|
658 |
msgstr ""
|
659 |
"A felhasználók önmagukat tudják regisztrálni, vagy sajátkezűleg készíthetsz "
|
660 |
"felhasználókat itt."
|
661 |
|
662 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
663 |
msgid ""
|
664 |
"Users cannot currently register themselves, but you can manually create "
|
665 |
"users here."
|
667 |
"A felhasználók jelenleg nem tudják magukat regisztrálni, de te tudsz itt "
|
668 |
"létrehozni új felhasználót."
|
669 |
|
670 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
671 |
msgid "Only an administrator can add new users."
|
672 |
msgstr "Csak egy adminisztrátor tud felhasználót hozzáadni."
|
673 |
|
674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1287
|
675 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1311
|
676 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1335
|
677 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1359
|
678 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1410
|
679 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1434
|
680 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1458
|
681 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1482
|
682 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1509
|
683 |
msgid ""
|
684 |
"This field must be filled out before registering (It was marked as required "
|
685 |
"by the administrator)"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1308
|
689 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1332
|
690 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1356
|
691 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1383
|
692 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1407
|
693 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1431
|
694 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1455
|
695 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1479
|
696 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1506
|
697 |
msgid "This field is marked as required by the administrator"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1581
|
701 |
msgid "Anti-Spam"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1602
|
705 |
#, fuzzy
|
706 |
msgid "Send these credentials via email."
|
707 |
msgstr "Hitelesítő adatok küldése emailben. "
|
708 |
|
709 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
710 |
msgid "Add User"
|
711 |
msgstr "Felhasználó hozzáadása"
|
712 |
|
713 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
714 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
715 |
msgid "Register"
|
716 |
msgstr "Regisztráció"
|
729 |
msgid "Visibility"
|
730 |
msgstr "Láthatóság"
|
731 |
|
732 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
|
733 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
734 |
+
msgid "Default"
|
735 |
+
msgstr "Szokásos"
|
736 |
+
|
737 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
|
738 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
739 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
740 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
750 |
msgid "Show"
|
751 |
msgstr "Mutat"
|
752 |
|
753 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
|
754 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
755 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
756 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
766 |
msgid "Hide"
|
767 |
msgstr "Elrejt"
|
768 |
|
769 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
770 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
771 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
772 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
773 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
|
774 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
775 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
|
776 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
777 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
778 |
msgid "Save Changes"
|
905 |
msgid "shortcode."
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
909 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
910 |
+
msgid "NOTE:"
|
911 |
+
msgstr "MEGJEGYZÉS:"
|
912 |
+
|
913 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
914 |
msgid "this plugin only adds/removes fields in the front-end."
|
915 |
msgstr "Ez a bővítmény csak hozzáad/eltávolít mezőket a felhasználó elől. "
|
957 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
958 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
959 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
960 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
|
961 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
|
962 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
|
963 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
|
964 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
|
965 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
|
966 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
|
967 |
msgid "Yes"
|
968 |
msgstr ""
|
969 |
|
981 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
982 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
983 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
984 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
|
985 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
|
986 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
|
987 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
|
988 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
|
989 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
|
990 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
|
991 |
#, fuzzy
|
992 |
msgid "No"
|
993 |
msgstr "Nincs"
|
1012 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1013 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1014 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1015 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
|
1016 |
msgid "General Settings"
|
1017 |
msgstr ""
|
1018 |
|
1021 |
msgid "Stylesheet Used on the Front-End:"
|
1022 |
msgstr "Stíluslap használata:"
|
1023 |
|
|
|
|
|
|
|
|
|
1024 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1025 |
msgid "White"
|
1026 |
msgstr "Fehér"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1062 |
+
#, php-format
|
1063 |
msgid ""
|
1064 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1065 |
+
"Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
|
1066 |
+
"access to automatic updates and support. Need a license key? %3$sPurchase "
|
1067 |
+
"one now%4$s"
|
|
|
|
|
|
|
1068 |
msgstr ""
|
1069 |
|
1070 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1071 |
+
#, php-format
|
1072 |
msgid ""
|
1073 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1074 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1075 |
+
"priority support. %3$sPurchase one now%4$s"
|
|
|
|
|
|
|
|
|
1076 |
msgstr ""
|
1077 |
|
1078 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1129 |
msgstr ""
|
1130 |
|
1131 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1132 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
|
1133 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
|
1134 |
msgid "Custom Redirects"
|
1135 |
msgstr ""
|
1136 |
|
1140 |
msgid "reCAPTCHA"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
|
1144 |
msgid "Redirects on custom page requests:"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
|
1148 |
msgid "Action"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
|
1152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
|
1153 |
msgid "Redirect"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
|
1157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
|
1158 |
msgid "URL"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
|
1162 |
msgid "After Registration:"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
|
1166 |
msgid "After Login:"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
|
1170 |
#, fuzzy
|
1171 |
msgid "Recover Password (*)"
|
1172 |
msgstr "Jelszó, mégegyszer"
|
1173 |
|
1174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
|
1175 |
msgid ""
|
1176 |
"When activated this feature will redirect the user on both the default "
|
1177 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1178 |
"Profile Builder on the front-end login page."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
|
1182 |
msgid "Redirects on default WordPress page requests:"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
|
1186 |
msgid "Requested WP Page"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
|
1190 |
+
msgid "Default WP Login Page (*)"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
|
1194 |
+
msgid "Default WP Logout Page (**)"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
|
1198 |
msgid "Default WP Register Page"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
|
1202 |
msgid "Default WP Dashboard (***)"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
|
1206 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
|
1210 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
|
1214 |
msgid ""
|
1215 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1216 |
"manage options)."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
|
|
1224 |
msgid "To use reCAPTCHA you must get an API key from"
|
1225 |
msgstr ""
|
1226 |
|
1265 |
msgid "Private Key:"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
|
1269 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1270 |
msgstr ""
|
1271 |
|
1281 |
"authors, visible to only the users currently logged in, you would use:"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1285 |
+
msgid ""
|
1286 |
+
"You can also create a userlisting page that displays users having a certain "
|
1287 |
+
"meta-value within a certain (extra) meta-field like so:"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1291 |
+
msgid ""
|
1292 |
+
"Remember though, that the field-value combination must exist in the database."
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
|
1296 |
msgid "These settings are applied to the front-end userlisting."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:46
|
1300 |
msgid "Number of Users/Page: "
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:63
|
1304 |
msgid "Default Sorting Order: "
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
|
1308 |
msgid "\"All-Userlisting\" Template"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1312 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1313 |
msgid ""
|
1314 |
"With the userlisting templates you can customize the look, feel and "
|
1315 |
"information listed by the shortcode."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
|
1319 |
msgid ""
|
1320 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1321 |
"on each page access where the shortcode is present."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
|
1325 |
msgid "Avatar size: "
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:97
|
1329 |
msgid "Insert \"Sort By\" Field:"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:125
|
1333 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
|
1334 |
msgid "Insert \"User-Meta\" Field:"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:156
|
1338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:262
|
1339 |
msgid "Insert Extra Functions:"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:171
|
1343 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:173
|
1347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:276
|
1348 |
msgid ""
|
1349 |
"If you wish to use a default userlisting, just copy the following code and "
|
1350 |
"paste it in the textarea below:"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
|
1354 |
msgid "\"Single-Userlisting\" Template"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:219
|
1358 |
msgid ""
|
1359 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1360 |
"It's displayed when clickin on the \"more info\" link."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:274
|
1364 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1368 |
msgid ""
|
1369 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1373 |
msgid "You can find it in Profile Builder's menu."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
|
1377 |
#, fuzzy
|
1378 |
msgid "You need to be logged in to view the userlisting!"
|
1379 |
msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
|
1380 |
|
1381 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
|
1382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
|
1383 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1384 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1328
|
1385 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1414
|
1386 |
msgid "Search Users by All Fields"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1390 |
msgid "Leave Blank and Press Search to List All Users"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
|
1394 |
msgid "Search"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
|
1398 |
#, fuzzy
|
1399 |
msgid "First/Lastname"
|
1400 |
msgstr "Keresztnév"
|
1401 |
|
1402 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
|
1403 |
#, fuzzy
|
1404 |
msgid "Email"
|
1405 |
msgstr "E-mail"
|
1406 |
|
1407 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
|
1408 |
msgid "Sign-up Date"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
|
1412 |
#, fuzzy
|
1413 |
msgid "Firstname"
|
1414 |
msgstr "Keresztnév"
|
1415 |
|
1416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
|
1417 |
#, fuzzy
|
1418 |
msgid "Lastname"
|
1419 |
msgstr "Vezetéknév"
|
1420 |
|
1421 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
|
1422 |
#, fuzzy
|
1423 |
msgid "Display Name"
|
1424 |
msgstr "Keresztnév"
|
1425 |
|
1426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
|
1427 |
msgid "Posts"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1431 |
msgid "Click here to see more information about this user"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1435 |
msgid "More..."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
|
1439 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1440 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1441 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1442 |
#, fuzzy
|
1443 |
msgid "No uploaded attachment"
|
1444 |
msgstr "A csatolmány \""
|
1445 |
|
1446 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
|
1447 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1448 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1160
|
1449 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1450 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1451 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1454 |
msgid "Click to see the current attachment"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1458 |
msgid "Click here to go back"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1462 |
#, fuzzy
|
1463 |
msgid "Back"
|
1464 |
msgstr "Fekete"
|
1465 |
|
1466 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1467 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1468 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1469 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1470 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1473 |
msgid "Current file"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
|
1477 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1478 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1479 |
msgid "Avatar"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1215
|
1483 |
msgid "No results found!"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1487 |
msgid "«« First"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1491 |
msgid "« Prev"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1495 |
#, fuzzy
|
1496 |
msgid "Next » "
|
1497 |
msgstr "Kijelentkezés »"
|
1498 |
|
1499 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
|
1500 |
#, fuzzy
|
1501 |
msgid "Last »»"
|
1502 |
msgstr "Kijelentkezés »"
|
1503 |
|
1504 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
|
1505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
|
1506 |
#, fuzzy
|
1507 |
msgid "You must give your option a title."
|
1508 |
msgstr "Be kell jelentkezned a profilod szerkesztéséhez!"
|
1509 |
|
1510 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
|
1511 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
|
1512 |
msgid "You have entered an invalid meta-key format!"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
|
1516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
|
1517 |
#, fuzzy
|
1518 |
msgid "You must enter a valid meta-key."
|
1519 |
msgstr "Valós email címet kell beírnod!"
|
1520 |
|
1521 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
|
1522 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1523 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:447
|
1524 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
|
1525 |
msgid "That meta-key is already in use."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1529 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1530 |
msgid ""
|
1531 |
"There is already an avatar input-type. You can only have one avatar present."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:324
|
1535 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:474
|
1536 |
msgid ""
|
1537 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1538 |
"have one present."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:329
|
1542 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:479
|
1543 |
msgid "The textarea row value must be numeric."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1547 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1548 |
msgid "The maxlength attribute must be numeric."
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1552 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1553 |
msgid "The value must be between 20 and 200!"
|
1554 |
msgstr ""
|
1555 |
|
|
|
|
|
|
|
|
|
|
|
1556 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1557 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1558 |
+
msgid "The width component of the entered value must be numeric!"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1562 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1563 |
+
msgid "The height component of the entered value must be numeric!"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1567 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1568 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1572 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1573 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
|
1577 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
|
1578 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
|
1582 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:506
|
1583 |
msgid "The entered avatar size must be numeric!"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:390
|
1587 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:566
|
1588 |
msgid "There was an error, please try again."
|
1589 |
msgstr ""
|
1590 |
|
1597 |
msgstr ""
|
1598 |
|
1599 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1600 |
+
#, fuzzy, php-format
|
1601 |
+
msgid "Your account on %1$s has been approved!"
|
1602 |
+
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
|
|
|
|
|
|
|
|
1603 |
|
1604 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1605 |
+
#, php-format
|
1606 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1610 |
+
#, fuzzy, php-format
|
1611 |
+
msgid "Your account on %1$s has been unapproved!"
|
1612 |
+
msgstr "Felhasználói fiók a következőnek: %1$s elkészült. "
|
1613 |
|
1614 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1615 |
+
#, php-format
|
1616 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1645 |
msgstr ""
|
1646 |
|
1647 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1648 |
+
#, php-format
|
1649 |
+
msgid "Are you sure you want to %1$s this user?"
|
|
|
|
|
|
|
1650 |
msgstr ""
|
1651 |
|
1652 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1899 |
msgid "Don't have an account?"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1903 |
+
#, fuzzy
|
1904 |
+
msgid "Lost Password"
|
1905 |
+
msgstr "Elvesztett jelszó?"
|
1906 |
+
|
1907 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1908 |
#, fuzzy
|
1909 |
msgid "Lost Your Password?"
|
1915 |
msgstr "Bejelentkezés"
|
1916 |
|
1917 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1918 |
+
msgid "After login redirect URL (optional):"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1922 |
+
msgid "Register page URL (optional):"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1926 |
+
msgid "Password Recovery page URL (optional):"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1934 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
|
1938 |
#, php-format
|
1939 |
msgid ""
|
1940 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1941 |
+
"Please %1$sregister your copy%2$s of Profile Builder to receive access to "
|
1942 |
+
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
|
1943 |
+
"%5$sDismiss%6$s"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
|
1947 |
#, php-format
|
1948 |
msgid ""
|
1949 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1950 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1951 |
+
"priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
2017 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#, fuzzy
|
2021 |
+
#~ msgid "The attachment"
|
2022 |
+
#~ msgstr "A csatolmány \""
|
2023 |
+
|
2024 |
+
#, fuzzy
|
2025 |
+
#~ msgid "was successfully deleted."
|
2026 |
+
#~ msgstr "\" sikeresen törölve."
|
2027 |
+
|
2028 |
+
#, fuzzy
|
2029 |
+
#~ msgid "Possible cause: the size was bigger than"
|
2030 |
+
#~ msgstr "<br/>Lehetséges okok: A mérete nagyobb volt, mint"
|
2031 |
+
|
2032 |
+
#, fuzzy
|
2033 |
+
#~ msgid "The listed attachements were"
|
2034 |
+
#~ msgstr "b.<br/>A felsorolt csatolmányok"
|
2035 |
+
|
2036 |
+
#, fuzzy
|
2037 |
+
#~ msgid "and password:"
|
2038 |
+
#~ msgstr "Jelszó"
|
2039 |
+
|
2040 |
#~ msgid "Plugin Layout"
|
2041 |
#~ msgstr "Bővítény megjelenítés"
|
2042 |
|
translation/profilebuilder-it_IT.mo
CHANGED
Binary file
|
translation/profilebuilder-it_IT.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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,49 +15,34 @@ msgstr ""
|
|
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:
|
19 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
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:
|
39 |
msgid "You must be logged in to edit your profile."
|
40 |
msgstr "Devi essere registrato per modificare il tuo profilo."
|
41 |
|
42 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
43 |
msgid "The avatar was successfully deleted."
|
44 |
msgstr "L'avatar è stato cancellato con successo."
|
45 |
|
46 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
47 |
-
#, fuzzy
|
48 |
-
msgid "The attachment"
|
49 |
-
msgstr "L'
|
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 "\" è stato cancellato con successo."
|
55 |
|
56 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
57 |
msgid "The changes have been successfully saved."
|
58 |
msgstr "Le modifiche sono state salvate con successo."
|
59 |
|
60 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
61 |
#, fuzzy
|
62 |
msgid ""
|
63 |
"The email address you entered is already registered to a different user."
|
@@ -65,137 +50,127 @@ msgstr ""
|
|
65 |
"L'indirizzo e-mail che hai inserito è già registrato per un altro utente. "
|
66 |
"<br/> L'indirizzo e-mail è stato"
|
67 |
|
68 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
69 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
70 |
msgid "The email address was"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
74 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
75 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
76 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
77 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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 "NON"
|
82 |
|
83 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
84 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
85 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
86 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
87 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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 "aggiornato insieme al resto delle informazioni."
|
93 |
|
94 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
95 |
#, fuzzy
|
96 |
msgid "The email address you entered is invalid."
|
97 |
msgstr ""
|
98 |
"L'indirizzo email inserito non è valido. <br/> L'indirizzo e-mail è stato"
|
99 |
|
100 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
101 |
#, fuzzy
|
102 |
msgid "The passwords you entered do not match."
|
103 |
msgstr ""
|
104 |
"Le password che hai inserito non corrispondono. <br/> La password è stata"
|
105 |
|
106 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
107 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
108 |
#, fuzzy
|
109 |
msgid "The password was"
|
110 |
msgstr "Nuova Password"
|
111 |
|
112 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
113 |
#, fuzzy
|
114 |
msgid "You didn't complete both password fields."
|
115 |
msgstr "Non ha completato uno dei campi password!"
|
116 |
|
117 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
122 |
#, fuzzy
|
123 |
msgid "There was an error while trying to upload the following attachments:"
|
124 |
msgstr ""
|
125 |
"Si è verificato un errore durante il tentativo di caricare i seguenti "
|
126 |
"allegati: <br/>"
|
127 |
|
128 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
129 |
-
#,
|
130 |
-
msgid "
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
#, fuzzy
|
135 |
-
msgid "The listed attachements were"
|
136 |
-
msgstr "b.<br/> Gli allegati elencate sono stati"
|
137 |
|
138 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
139 |
#, fuzzy
|
140 |
msgid "There was an error while trying to upload your avatar picture."
|
141 |
msgstr ""
|
142 |
"Si è verificato un errore durante il tentativo di caricare i seguenti "
|
143 |
"allegati: <br/>"
|
144 |
|
145 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
146 |
msgid "Possible cause: size/incorrect file-type."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
150 |
msgid "The avatar was"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
154 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
155 |
#, fuzzy
|
156 |
msgid "There was an error while trying to upload the following attachment(s)"
|
157 |
msgstr ""
|
158 |
"Si è verificato un errore durante il tentativo di caricare i seguenti "
|
159 |
"allegati: <br/>"
|
160 |
|
161 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
162 |
-
|
163 |
-
msgid "
|
164 |
-
|
165 |
-
|
166 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
167 |
-
msgid "This file was"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
171 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
172 |
msgid "Name"
|
173 |
msgstr "Nome"
|
174 |
|
175 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
176 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
177 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
178 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
179 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
180 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
181 |
msgid "Username"
|
182 |
msgstr "Username"
|
183 |
|
184 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
185 |
#, fuzzy
|
186 |
msgid "Usernames cannot be changed."
|
187 |
msgstr "I nomi utente non possono essere cambiati."
|
188 |
|
189 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
190 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
191 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
192 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
193 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
194 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
195 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
196 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
197 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
198 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
199 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
200 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
201 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
@@ -210,303 +185,298 @@ msgstr "I nomi utente non possono essere cambiati."
|
|
210 |
msgid "This field is marked as required by the administrator."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
214 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
215 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
216 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
217 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
218 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
219 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
220 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
221 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
222 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
223 |
msgid ""
|
224 |
"This field wasn't updated because you entered and empty string (It was "
|
225 |
"marked as required by the administrator."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
229 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
230 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
231 |
msgid "First Name"
|
232 |
msgstr "Nome"
|
233 |
|
234 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
235 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
236 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
237 |
msgid "Last Name"
|
238 |
msgstr "Cognome"
|
239 |
|
240 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
241 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
242 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
243 |
msgid "Nickname"
|
244 |
msgstr "Nickname"
|
245 |
|
246 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
247 |
msgid "Display name publicly as"
|
248 |
msgstr "Nome visualizzato pubblicamente come"
|
249 |
|
250 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
251 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
252 |
msgid "Contact Info"
|
253 |
msgstr "Informazioni di contatto"
|
254 |
|
255 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
256 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
257 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
258 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
259 |
msgid "E-mail"
|
260 |
msgstr "E-mail:"
|
261 |
|
262 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
263 |
msgid "(required)"
|
264 |
msgstr "(richiesto)"
|
265 |
|
266 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
267 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
268 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
269 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
270 |
msgid "Website"
|
271 |
msgstr "Sito web:"
|
272 |
|
273 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
274 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
275 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
276 |
msgid "AIM"
|
277 |
msgstr "AIM"
|
278 |
|
279 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
280 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
281 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
282 |
msgid "Yahoo IM"
|
283 |
msgstr "Yahoo IM"
|
284 |
|
285 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
286 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
287 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
288 |
msgid "Jabber / Google Talk"
|
289 |
msgstr "Google Talk"
|
290 |
|
291 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
292 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
293 |
msgid "About Yourself"
|
294 |
msgstr "Su di te"
|
295 |
|
296 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
297 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
298 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
299 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
300 |
msgid "Biographical Info"
|
301 |
msgstr "Informazioni biografiche"
|
302 |
|
303 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
304 |
msgid "New Password"
|
305 |
msgstr "Nuova Password"
|
306 |
|
307 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
308 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
309 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
310 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
311 |
msgid "Repeat Password"
|
312 |
msgstr "Ripeti Password"
|
313 |
|
314 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
315 |
msgid "Update"
|
316 |
msgstr "Aggiorna"
|
317 |
|
318 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
319 |
-
#, fuzzy
|
320 |
-
msgid "You are currently logged in as"
|
321 |
msgstr ""
|
322 |
"Sei attualmente connesso come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
323 |
|
324 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
325 |
msgid "Log out of this account"
|
326 |
msgstr "Esci da questo account"
|
327 |
|
328 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
329 |
#, fuzzy
|
330 |
msgid "Log out"
|
331 |
msgstr "Log out »"
|
332 |
|
333 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
334 |
-
#, fuzzy
|
335 |
-
msgid "You have successfully logged in as"
|
336 |
msgstr ""
|
337 |
"Hai effettuato il login correttamente come <a href=\"%1$s\" title=\"%2$s\">"
|
338 |
"%2$s</a>."
|
339 |
|
340 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
341 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
342 |
msgid ""
|
343 |
"You will soon be redirected automatically. If you see this page for more "
|
344 |
-
"than 1 second, please click"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
348 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
349 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
350 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
351 |
msgid "here"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
355 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
356 |
msgid "ERROR:"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
360 |
msgid "The username field is empty"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
364 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
365 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
366 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
367 |
msgid "Password"
|
368 |
msgstr "Password"
|
369 |
|
370 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
371 |
msgid "Log in"
|
372 |
msgstr "Log in"
|
373 |
|
374 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
375 |
msgid "Remember me"
|
376 |
msgstr "Ricordati di me"
|
377 |
|
378 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
379 |
msgid "Lost password?"
|
380 |
msgstr "Password persa?"
|
381 |
|
382 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
383 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
384 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
385 |
msgid "ERROR"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
389 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
390 |
msgid ""
|
391 |
"Your account has to be confirmed by an administrator before you can use the "
|
392 |
"\"Password Reset\" feature."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
396 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
397 |
-
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
401 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
402 |
-
msgid "Following the link sent in the email address will reset the password."
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
406 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
407 |
msgid ""
|
408 |
-
"
|
|
|
409 |
msgstr ""
|
410 |
|
411 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
412 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
msgid "To reset your password, visit the following link:"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
422 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
423 |
-
|
|
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
427 |
-
|
428 |
-
|
429 |
-
msgid "There was an error while trying to send the activation link to "
|
430 |
msgstr ""
|
431 |
"Si è verificato un errore durante il tentativo di caricare i seguenti "
|
432 |
"allegati: <br/>"
|
433 |
|
434 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
435 |
#, fuzzy
|
436 |
msgid "The email address entered wasn't found in the database!"
|
437 |
msgstr ""
|
438 |
"L'indirizzo email inserito non è valido. <br/> L'indirizzo e-mail è stato"
|
439 |
|
440 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
441 |
msgid "Please check that you entered the correct email address."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
msgid "The username entered wasn't found in the database!"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
449 |
msgid "Please check that you entered the correct username."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
453 |
#, fuzzy
|
454 |
msgid "Your password has been successfully changed!"
|
455 |
msgstr "Le modifiche sono state salvate con successo."
|
456 |
|
457 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
458 |
-
|
|
|
459 |
msgstr ""
|
|
|
|
|
460 |
|
461 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
462 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
463 |
-
#, fuzzy
|
464 |
-
msgid "Password Successfully Reset for"
|
465 |
msgstr "\" è stato cancellato con successo."
|
466 |
|
467 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
468 |
-
|
469 |
-
msgid "
|
470 |
-
|
471 |
-
|
472 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
473 |
-
msgid "has requested a password change via the password reset feature."
|
474 |
-
msgstr ""
|
475 |
-
|
476 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
477 |
-
msgid "His/her new password is:"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
481 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
482 |
msgid "The entered passwords don't match!"
|
483 |
msgstr "Le password inserite non corrispondono!"
|
484 |
|
485 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
486 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
487 |
#, fuzzy
|
488 |
msgid "Reset Password"
|
489 |
msgstr "Ripeti Password"
|
490 |
|
491 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
492 |
msgid "Invalid key!"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
496 |
#, fuzzy
|
497 |
msgid "Please enter your username or email address."
|
498 |
msgstr "Devi inserire un indirizzo email valido."
|
499 |
|
500 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
501 |
msgid "You will receive a link to create a new password via email."
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
505 |
#, fuzzy
|
506 |
msgid "Username or E-mail"
|
507 |
msgstr "Username"
|
508 |
|
509 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
510 |
#, fuzzy
|
511 |
msgid "Get New Password"
|
512 |
msgstr "Nuova Password"
|
@@ -556,164 +526,157 @@ msgstr ""
|
|
556 |
"Si è verificato un errore durante il tentativo di caricare i seguenti "
|
557 |
"allegati: <br/>"
|
558 |
|
559 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
560 |
-
|
|
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
564 |
msgid ""
|
565 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
566 |
"please remember that you need to approve this user before he/she can log in!"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
570 |
msgid "A new subscriber has (been) registered!"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
574 |
#, fuzzy
|
575 |
msgid "A new account has been created for you."
|
576 |
msgstr "Un account utente come %1$s è stato creato."
|
577 |
|
578 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
583 |
-
msgid "Your username is:"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
587 |
-
#, fuzzy
|
588 |
-
msgid "and password:"
|
589 |
-
msgstr "Password"
|
590 |
-
|
591 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
592 |
msgid ""
|
593 |
"Before you can access your account, an administrator needs to approve it. "
|
594 |
"You will be notified via email."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
598 |
-
msgid "The user was NOT created!"
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
602 |
msgid "A username is required for registration."
|
603 |
msgstr "E' richiesto un nome utente per la registrazione."
|
604 |
|
605 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
606 |
msgid "Sorry, that username already exists!"
|
607 |
msgstr "Ci dispiace, questo nome utente esiste già!"
|
608 |
|
609 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
610 |
msgid "You must enter a valid email address."
|
611 |
msgstr "Devi inserire un indirizzo email valido."
|
612 |
|
613 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
614 |
msgid "Sorry, that email address is already used!"
|
615 |
msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
|
616 |
|
617 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
618 |
msgid "You didn't complete one of the password-fields!"
|
619 |
msgstr "Non ha completato uno dei campi password!"
|
620 |
|
621 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
622 |
-
|
|
|
|
|
|
|
|
|
623 |
#, fuzzy
|
624 |
msgid "The account was NOT created!"
|
625 |
msgstr "Un account utente come %1$s è stato creato."
|
626 |
|
627 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
628 |
msgid "You must agree to the terms and conditions before registering!"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
632 |
msgid "(Several required fields were left uncompleted)"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
636 |
msgid "This username is already reserved to be used soon."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
640 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
641 |
msgid "Please try a different one!"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
645 |
#, fuzzy
|
646 |
msgid "This email address is already reserved to be used soon."
|
647 |
msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
|
648 |
|
649 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
650 |
msgid "You are logged in as"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
654 |
msgid "You don't need another account."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
658 |
#, fuzzy
|
659 |
msgid "Log out of this account."
|
660 |
msgstr "Esci da questo account"
|
661 |
|
662 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
663 |
#, fuzzy
|
664 |
msgid "Logout"
|
665 |
msgstr "Logout »"
|
666 |
|
667 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
msgid "with information on how to activate his/her account"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
676 |
-
#, fuzzy
|
677 |
-
msgid "A user account has been created for"
|
678 |
msgstr "Un account utente come %1$s è stato creato."
|
679 |
|
680 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
681 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
682 |
msgid ""
|
683 |
"You will soon be redirected automatically. If you see this page for more "
|
684 |
-
"than 3 seconds, please click"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
688 |
msgid ""
|
689 |
"An email has been sent to you with information on how to activate your "
|
690 |
-
"account"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
694 |
-
#, fuzzy
|
695 |
-
msgid "Thank you for registering"
|
696 |
msgstr "Grazie per esserti registrato, %1$s."
|
697 |
|
698 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
699 |
msgid "An error occured while trying to send the notification email."
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
703 |
msgid "An email containing activation instructions was successfully sent."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
707 |
msgid "An email containing the username and password was successfully sent."
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
711 |
msgid "Users can register themselves or you can manually create users here."
|
712 |
msgstr ""
|
713 |
"Gli utenti possono registrarsi oppure è possibile creare manualmente gli "
|
714 |
"utenti qui."
|
715 |
|
716 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
717 |
msgid ""
|
718 |
"Users cannot currently register themselves, but you can manually create "
|
719 |
"users here."
|
@@ -721,50 +684,50 @@ msgstr ""
|
|
721 |
"Gli utenti non possono al momento registrarsi, ma è possibile creare "
|
722 |
"manualmente gli utenti qui."
|
723 |
|
724 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
725 |
msgid "Only an administrator can add new users."
|
726 |
msgstr "Solo gli amministratori possono inserire nuovi utenti."
|
727 |
|
728 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
729 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
730 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
731 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
732 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
733 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
734 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
735 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
736 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
737 |
msgid ""
|
738 |
"This field must be filled out before registering (It was marked as required "
|
739 |
"by the administrator)"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
743 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
744 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
745 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
746 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
747 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
748 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
749 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
750 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
751 |
msgid "This field is marked as required by the administrator"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
755 |
msgid "Anti-Spam"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
759 |
#, fuzzy
|
760 |
msgid "Send these credentials via email."
|
761 |
msgstr "Invia le mie credenziali via email."
|
762 |
|
763 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
764 |
msgid "Add User"
|
765 |
msgstr "Inserisci utente"
|
766 |
|
767 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
768 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
769 |
msgid "Register"
|
770 |
msgstr "Registrati"
|
@@ -783,7 +746,12 @@ msgstr "Gruppi di utenti"
|
|
783 |
msgid "Visibility"
|
784 |
msgstr "Visibilità"
|
785 |
|
786 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
|
|
|
|
|
|
|
|
|
|
787 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
788 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
789 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
@@ -799,7 +767,7 @@ msgstr "Visibilità"
|
|
799 |
msgid "Show"
|
800 |
msgstr "Mostra"
|
801 |
|
802 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
803 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
804 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
805 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
@@ -815,26 +783,13 @@ msgstr "Mostra"
|
|
815 |
msgid "Hide"
|
816 |
msgstr "Nascondi"
|
817 |
|
818 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
819 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
820 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
821 |
-
msgid "NOTE:"
|
822 |
-
msgstr "NOTA:"
|
823 |
-
|
824 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:41
|
825 |
-
msgid ""
|
826 |
-
"If you added new roles (via another plugin) <u>after</u> Profile Builder was "
|
827 |
-
"activated, please reactivate it, since the roles are initialized during "
|
828 |
-
"plugin activation."
|
829 |
-
msgstr ""
|
830 |
-
|
831 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:48
|
832 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
833 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
834 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
835 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
836 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
837 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
838 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
839 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
840 |
msgid "Save Changes"
|
@@ -970,6 +925,11 @@ msgstr ""
|
|
970 |
msgid "shortcode."
|
971 |
msgstr ""
|
972 |
|
|
|
|
|
|
|
|
|
|
|
973 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
974 |
msgid "this plugin only adds/removes fields in the front-end."
|
975 |
msgstr "Questo plugin aggiunge / rimuove i campi del front-end."
|
@@ -1021,7 +981,13 @@ msgstr "Nome:"
|
|
1021 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
1022 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
1023 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
1024 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1025 |
msgid "Yes"
|
1026 |
msgstr ""
|
1027 |
|
@@ -1039,7 +1005,13 @@ msgstr ""
|
|
1039 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1040 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1041 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1042 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1043 |
#, fuzzy
|
1044 |
msgid "No"
|
1045 |
msgstr "Nessuno"
|
@@ -1064,7 +1036,7 @@ msgstr "Nuova Password"
|
|
1064 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1065 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1066 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1067 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1068 |
msgid "General Settings"
|
1069 |
msgstr ""
|
1070 |
|
@@ -1073,10 +1045,6 @@ msgstr ""
|
|
1073 |
msgid "Stylesheet Used on the Front-End:"
|
1074 |
msgstr "Stylesheet usato:"
|
1075 |
|
1076 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
1077 |
-
msgid "Default"
|
1078 |
-
msgstr "Default"
|
1079 |
-
|
1080 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1081 |
msgid "White"
|
1082 |
msgstr "Bianco"
|
@@ -1115,25 +1083,20 @@ msgid ""
|
|
1115 |
msgstr ""
|
1116 |
|
1117 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
|
|
1118 |
msgid ""
|
1119 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1120 |
-
"Please <
|
1121 |
-
"
|
1122 |
-
"
|
1123 |
-
"www.cozmoslabs.com/wordpress-profile-builder/?"
|
1124 |
-
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' "
|
1125 |
-
"class='button-primary'>Purchase one now</a>"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
|
|
1129 |
msgid ""
|
1130 |
-
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please
|
1131 |
-
"
|
1132 |
-
"
|
1133 |
-
"a> to receive access to automatic updates and priority support. <a "
|
1134 |
-
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1135 |
-
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' "
|
1136 |
-
"class='button-primary'>Purchase one now</a>"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
@@ -1190,7 +1153,8 @@ msgid "Inactive"
|
|
1190 |
msgstr ""
|
1191 |
|
1192 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1193 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1194 |
msgid "Custom Redirects"
|
1195 |
msgstr ""
|
1196 |
|
@@ -1200,75 +1164,77 @@ msgstr ""
|
|
1200 |
msgid "reCAPTCHA"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1204 |
msgid "Redirects on custom page requests:"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1208 |
msgid "Action"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1212 |
msgid "Redirect"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1216 |
msgid "URL"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1220 |
msgid "After Registration:"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1224 |
msgid "After Login:"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1228 |
#, fuzzy
|
1229 |
msgid "Recover Password (*)"
|
1230 |
msgstr "Ripeti Password"
|
1231 |
|
1232 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1233 |
msgid ""
|
1234 |
"When activated this feature will redirect the user on both the default "
|
1235 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1236 |
"Profile Builder on the front-end login page."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1240 |
msgid "Redirects on default WordPress page requests:"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1244 |
msgid "Requested WP Page"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1248 |
-
msgid "Default WP Login Page(*)"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1252 |
-
msgid "Default WP Logout Page(**)"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1256 |
msgid "Default WP Register Page"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1260 |
msgid "Default WP Dashboard (***)"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1264 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1268 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1272 |
msgid ""
|
1273 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1274 |
"manage options)."
|
@@ -1279,7 +1245,6 @@ msgid "Could not open socket!"
|
|
1279 |
msgstr ""
|
1280 |
|
1281 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
1282 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:120
|
1283 |
msgid "To use reCAPTCHA you must get an API key from"
|
1284 |
msgstr ""
|
1285 |
|
@@ -1324,7 +1289,7 @@ msgstr ""
|
|
1324 |
msgid "Private Key:"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:
|
1328 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1329 |
msgstr ""
|
1330 |
|
@@ -1340,160 +1305,171 @@ msgid ""
|
|
1340 |
"authors, visible to only the users currently logged in, you would use:"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1344 |
msgid "These settings are applied to the front-end userlisting."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1348 |
msgid "Number of Users/Page: "
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1352 |
msgid "Default Sorting Order: "
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1356 |
msgid "\"All-Userlisting\" Template"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1360 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1361 |
msgid ""
|
1362 |
"With the userlisting templates you can customize the look, feel and "
|
1363 |
"information listed by the shortcode."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1367 |
msgid ""
|
1368 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1369 |
"on each page access where the shortcode is present."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1373 |
msgid "Avatar size: "
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1377 |
msgid "Insert \"Sort By\" Field:"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1381 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1382 |
msgid "Insert \"User-Meta\" Field:"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1386 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1387 |
msgid "Insert Extra Functions:"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1391 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1395 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1396 |
msgid ""
|
1397 |
"If you wish to use a default userlisting, just copy the following code and "
|
1398 |
"paste it in the textarea below:"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1402 |
msgid "\"Single-Userlisting\" Template"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1406 |
msgid ""
|
1407 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1408 |
"It's displayed when clickin on the \"more info\" link."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1412 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1416 |
msgid ""
|
1417 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1421 |
msgid "You can find it in Profile Builder's menu."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1425 |
#, fuzzy
|
1426 |
msgid "You need to be logged in to view the userlisting!"
|
1427 |
msgstr "Devi essere registrato per modificare il tuo profilo."
|
1428 |
|
1429 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1430 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1431 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1432 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1433 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1434 |
msgid "Search Users by All Fields"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1438 |
msgid "Leave Blank and Press Search to List All Users"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1442 |
msgid "Search"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1446 |
#, fuzzy
|
1447 |
msgid "First/Lastname"
|
1448 |
msgstr "Nome"
|
1449 |
|
1450 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1451 |
#, fuzzy
|
1452 |
msgid "Email"
|
1453 |
msgstr "E-mail:"
|
1454 |
|
1455 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1456 |
msgid "Sign-up Date"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1460 |
#, fuzzy
|
1461 |
msgid "Firstname"
|
1462 |
msgstr "Nome"
|
1463 |
|
1464 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1465 |
#, fuzzy
|
1466 |
msgid "Lastname"
|
1467 |
msgstr "Cognome"
|
1468 |
|
1469 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1470 |
#, fuzzy
|
1471 |
msgid "Display Name"
|
1472 |
msgstr "Nome"
|
1473 |
|
1474 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1475 |
msgid "Posts"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1479 |
msgid "Click here to see more information about this user"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1483 |
msgid "More..."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1487 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1488 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1489 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1490 |
#, fuzzy
|
1491 |
msgid "No uploaded attachment"
|
1492 |
msgstr "L'allegato \""
|
1493 |
|
1494 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1495 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1496 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1497 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1498 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1499 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
@@ -1502,17 +1478,17 @@ msgstr "L'allegato \""
|
|
1502 |
msgid "Click to see the current attachment"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1506 |
msgid "Click here to go back"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1510 |
#, fuzzy
|
1511 |
msgid "Back"
|
1512 |
msgstr "Nero"
|
1513 |
|
1514 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1515 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1516 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1517 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1518 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
@@ -1521,118 +1497,118 @@ msgstr "Nero"
|
|
1521 |
msgid "Current file"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1525 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1526 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1527 |
msgid "Avatar"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1531 |
msgid "No results found!"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1535 |
msgid "«« First"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1539 |
msgid "« Prev"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1543 |
#, fuzzy
|
1544 |
msgid "Next » "
|
1545 |
msgstr "Logout »"
|
1546 |
|
1547 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1548 |
#, fuzzy
|
1549 |
msgid "Last »»"
|
1550 |
msgstr "Logout »"
|
1551 |
|
1552 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1553 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1554 |
#, fuzzy
|
1555 |
msgid "You must give your option a title."
|
1556 |
msgstr "Devi essere registrato per modificare il tuo profilo."
|
1557 |
|
1558 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1559 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1560 |
msgid "You have entered an invalid meta-key format!"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1564 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1565 |
#, fuzzy
|
1566 |
msgid "You must enter a valid meta-key."
|
1567 |
msgstr "Devi inserire un indirizzo email valido."
|
1568 |
|
1569 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1570 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1571 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1572 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1573 |
msgid "That meta-key is already in use."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1577 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1578 |
msgid ""
|
1579 |
"There is already an avatar input-type. You can only have one avatar present."
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1583 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1584 |
msgid ""
|
1585 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1586 |
"have one present."
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1590 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1591 |
msgid "The textarea row value must be numeric."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1595 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1596 |
msgid "The maxlength attribute must be numeric."
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1600 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1601 |
msgid "The value must be between 20 and 200!"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:343
|
1605 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
|
1606 |
-
msgid "The width 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:345
|
1610 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1611 |
-
msgid "The
|
1612 |
msgstr ""
|
1613 |
|
1614 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1615 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1616 |
-
msgid "The
|
1617 |
msgstr ""
|
1618 |
|
1619 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1620 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1621 |
-
msgid "The
|
1622 |
msgstr ""
|
1623 |
|
1624 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1625 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
|
|
|
|
|
|
|
|
|
|
1626 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1630 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1631 |
msgid "The entered avatar size must be numeric!"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1635 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1636 |
msgid "There was an error, please try again."
|
1637 |
msgstr ""
|
1638 |
|
@@ -1645,24 +1621,23 @@ msgid "the current user?"
|
|
1645 |
msgstr ""
|
1646 |
|
1647 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1648 |
-
|
1649 |
-
msgid "Your account on"
|
1650 |
-
msgstr ""
|
1651 |
-
|
1652 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1653 |
-
msgid "has been approved!"
|
1654 |
-
msgstr ""
|
1655 |
|
1656 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1657 |
-
|
|
|
1658 |
msgstr ""
|
1659 |
|
1660 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1661 |
-
|
1662 |
-
|
|
|
1663 |
|
1664 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1665 |
-
|
|
|
1666 |
msgstr ""
|
1667 |
|
1668 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
@@ -1694,11 +1669,8 @@ msgid "approve"
|
|
1694 |
msgstr ""
|
1695 |
|
1696 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1701 |
-
msgid "this user?"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
@@ -1951,6 +1923,11 @@ msgstr "Profile Builder"
|
|
1951 |
msgid "Don't have an account?"
|
1952 |
msgstr ""
|
1953 |
|
|
|
|
|
|
|
|
|
|
|
1954 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1955 |
#, fuzzy
|
1956 |
msgid "Lost Your Password?"
|
@@ -1962,15 +1939,15 @@ msgid "Login"
|
|
1962 |
msgstr "Log in"
|
1963 |
|
1964 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1965 |
-
msgid "After login redirect URL:"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1969 |
-
msgid "Register page URL (optional)"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1973 |
-
msgid "Password Recovery page URL (optional)"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
@@ -1981,21 +1958,21 @@ msgstr ""
|
|
1981 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1985 |
#, php-format
|
1986 |
msgid ""
|
1987 |
-
"Your <strong>Profile Builder
|
1988 |
-
"
|
1989 |
-
"
|
1990 |
-
"%sDismiss%s"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1994 |
#, php-format
|
1995 |
msgid ""
|
1996 |
-
"Your <strong>Profile Builder
|
1997 |
-
"%sRenew Your Licence%s to receive access to automatic updates and
|
1998 |
-
"support. %sPurchase one now%s %sDismiss%s"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
@@ -2064,6 +2041,26 @@ msgstr ""
|
|
2064 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2065 |
msgstr ""
|
2066 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2067 |
#~ msgid "Plugin Layout"
|
2068 |
#~ msgstr "Plugin Layout"
|
2069 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-10 11:28+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-10 11:28+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"
|
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:83
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"The information size you were trying to submit was larger than %1$sb!<br/"
|
23 |
+
">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
|
24 |
+
"it was also larger than %2$sb no additional information is available.<br/"
|
25 |
+
">The user was NOT created!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
|
29 |
msgid "You must be logged in to edit your profile."
|
30 |
msgstr "Devi essere registrato per modificare il tuo profilo."
|
31 |
|
32 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
|
33 |
msgid "The avatar was successfully deleted."
|
34 |
msgstr "L'avatar è stato cancellato con successo."
|
35 |
|
36 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
|
37 |
+
#, fuzzy, php-format
|
38 |
+
msgid "The attachment \"%1$s\" was successfully deleted."
|
39 |
+
msgstr "L'avatar è stato cancellato con successo."
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
|
42 |
msgid "The changes have been successfully saved."
|
43 |
msgstr "Le modifiche sono state salvate con successo."
|
44 |
|
45 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
46 |
#, fuzzy
|
47 |
msgid ""
|
48 |
"The email address you entered is already registered to a different user."
|
50 |
"L'indirizzo e-mail che hai inserito è già registrato per un altro utente. "
|
51 |
"<br/> L'indirizzo e-mail è stato"
|
52 |
|
53 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
54 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
55 |
msgid "The email address was"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
59 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
60 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
61 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
62 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
63 |
msgid "NOT"
|
64 |
msgstr "NON"
|
65 |
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
67 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
68 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
69 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
70 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
71 |
#, fuzzy
|
72 |
msgid "updated along with the rest of the information."
|
73 |
msgstr "aggiornato insieme al resto delle informazioni."
|
74 |
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
76 |
#, fuzzy
|
77 |
msgid "The email address you entered is invalid."
|
78 |
msgstr ""
|
79 |
"L'indirizzo email inserito non è valido. <br/> L'indirizzo e-mail è stato"
|
80 |
|
81 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
82 |
#, fuzzy
|
83 |
msgid "The passwords you entered do not match."
|
84 |
msgstr ""
|
85 |
"Le password che hai inserito non corrispondono. <br/> La password è stata"
|
86 |
|
87 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
88 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
89 |
#, fuzzy
|
90 |
msgid "The password was"
|
91 |
msgstr "Nuova Password"
|
92 |
|
93 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
94 |
#, fuzzy
|
95 |
msgid "You didn't complete both password fields."
|
96 |
msgstr "Non ha completato uno dei campi password!"
|
97 |
|
98 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
|
99 |
msgid "Your profile was NOT updated!"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
|
103 |
#, fuzzy
|
104 |
msgid "There was an error while trying to upload the following attachments:"
|
105 |
msgstr ""
|
106 |
"Si è verificato un errore durante il tentativo di caricare i seguenti "
|
107 |
"allegati: <br/>"
|
108 |
|
109 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
110 |
+
#, php-format
|
111 |
+
msgid ""
|
112 |
+
"Possible cause: the size was bigger than %1$sb. The listed attachements were "
|
113 |
+
"%2$sNOT%3$s updated along with the rest of the information."
|
114 |
+
msgstr ""
|
|
|
|
|
|
|
115 |
|
116 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
117 |
#, fuzzy
|
118 |
msgid "There was an error while trying to upload your avatar picture."
|
119 |
msgstr ""
|
120 |
"Si è verificato un errore durante il tentativo di caricare i seguenti "
|
121 |
"allegati: <br/>"
|
122 |
|
123 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
124 |
msgid "Possible cause: size/incorrect file-type."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
128 |
msgid "The avatar was"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
|
132 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:897
|
133 |
#, fuzzy
|
134 |
msgid "There was an error while trying to upload the following attachment(s)"
|
135 |
msgstr ""
|
136 |
"Si è verificato un errore durante il tentativo di caricare i seguenti "
|
137 |
"allegati: <br/>"
|
138 |
|
139 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
|
140 |
+
#, php-format
|
141 |
+
msgid ""
|
142 |
+
"Only files with the following extension(s) can be uploaded: %1$s<br/>This "
|
143 |
+
"file was %2$sNOT%3$s updated along with the rest of the information."
|
|
|
|
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
|
147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1277
|
148 |
msgid "Name"
|
149 |
msgstr "Nome"
|
150 |
|
151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
|
152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
|
153 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1298
|
|
|
154 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
155 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
|
156 |
msgid "Username"
|
157 |
msgstr "Username"
|
158 |
|
159 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
|
160 |
#, fuzzy
|
161 |
msgid "Usernames cannot be changed."
|
162 |
msgstr "I nomi utente non possono essere cambiati."
|
163 |
|
164 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
|
165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
|
166 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:726
|
167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:746
|
168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:796
|
169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:817
|
170 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:835
|
171 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:853
|
172 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:871
|
173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:892
|
174 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
175 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
176 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
185 |
msgid "This field is marked as required by the administrator."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
|
189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
|
190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:729
|
191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:749
|
192 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
|
193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
|
194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
|
195 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:855
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
|
197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
|
198 |
msgid ""
|
199 |
"This field wasn't updated because you entered and empty string (It was "
|
200 |
"marked as required by the administrator."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
|
204 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1322
|
205 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
206 |
msgid "First Name"
|
207 |
msgstr "Nome"
|
208 |
|
209 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
|
210 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1346
|
211 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
212 |
msgid "Last Name"
|
213 |
msgstr "Cognome"
|
214 |
|
215 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
|
216 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1370
|
217 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
218 |
msgid "Nickname"
|
219 |
msgstr "Nickname"
|
220 |
|
221 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:757
|
222 |
msgid "Display name publicly as"
|
223 |
msgstr "Nome visualizzato pubblicamente come"
|
224 |
|
225 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
|
226 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1376
|
227 |
msgid "Contact Info"
|
228 |
msgstr "Informazioni di contatto"
|
229 |
|
230 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
|
231 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1397
|
|
|
232 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
233 |
msgid "E-mail"
|
234 |
msgstr "E-mail:"
|
235 |
|
236 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
|
237 |
msgid "(required)"
|
238 |
msgstr "(richiesto)"
|
239 |
|
240 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
|
241 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1421
|
242 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
243 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
|
244 |
msgid "Website"
|
245 |
msgstr "Sito web:"
|
246 |
|
247 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
|
248 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1445
|
249 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
250 |
msgid "AIM"
|
251 |
msgstr "AIM"
|
252 |
|
253 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
|
254 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1469
|
255 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
256 |
msgid "Yahoo IM"
|
257 |
msgstr "Yahoo IM"
|
258 |
|
259 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
|
260 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1493
|
261 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
262 |
msgid "Jabber / Google Talk"
|
263 |
msgstr "Google Talk"
|
264 |
|
265 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
|
266 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1499
|
267 |
msgid "About Yourself"
|
268 |
msgstr "Su di te"
|
269 |
|
270 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
|
271 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1520
|
272 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
273 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
|
274 |
msgid "Biographical Info"
|
275 |
msgstr "Informazioni biografiche"
|
276 |
|
277 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
|
278 |
msgid "New Password"
|
279 |
msgstr "Nuova Password"
|
280 |
|
281 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
|
282 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
|
283 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
|
284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
285 |
msgid "Repeat Password"
|
286 |
msgstr "Ripeti Password"
|
287 |
|
288 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
|
289 |
msgid "Update"
|
290 |
msgstr "Aggiorna"
|
291 |
|
292 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
293 |
+
#, fuzzy, php-format
|
294 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
295 |
msgstr ""
|
296 |
"Sei attualmente connesso come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
297 |
|
298 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
299 |
msgid "Log out of this account"
|
300 |
msgstr "Esci da questo account"
|
301 |
|
302 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
303 |
#, fuzzy
|
304 |
msgid "Log out"
|
305 |
msgstr "Log out »"
|
306 |
|
307 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
|
308 |
+
#, fuzzy, php-format
|
309 |
+
msgid "You have successfully logged in as %1$s"
|
310 |
msgstr ""
|
311 |
"Hai effettuato il login correttamente come <a href=\"%1$s\" title=\"%2$s\">"
|
312 |
"%2$s</a>."
|
313 |
|
314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
315 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
316 |
+
#, php-format
|
317 |
msgid ""
|
318 |
"You will soon be redirected automatically. If you see this page for more "
|
319 |
+
"than 1 second, please click %1$s"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
324 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
325 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
326 |
msgid "here"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
330 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
331 |
msgid "ERROR:"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
335 |
msgid "The username field is empty"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
|
339 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
|
340 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
|
341 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1553
|
342 |
msgid "Password"
|
343 |
msgstr "Password"
|
344 |
|
345 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
|
346 |
msgid "Log in"
|
347 |
msgstr "Log in"
|
348 |
|
349 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
350 |
msgid "Remember me"
|
351 |
msgstr "Ricordati di me"
|
352 |
|
353 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:157
|
354 |
msgid "Lost password?"
|
355 |
msgstr "Password persa?"
|
356 |
|
357 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
358 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
359 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
360 |
msgid "ERROR"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
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 |
|
370 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
|
371 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
|
372 |
+
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
msgid ""
|
374 |
+
"A password reset email has been sent to %1$s.<br/>Following the link sent in "
|
375 |
+
"the email address will reset the password."
|
376 |
msgstr ""
|
377 |
|
378 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
379 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
|
380 |
+
#, php-format
|
381 |
+
msgid ""
|
382 |
+
"Someone requested that the password be reset for the following account: <b>"
|
383 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
384 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
|
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
|
388 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
|
389 |
+
#, php-format
|
390 |
+
msgid "Password Reset Feature from \"%1$s\""
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
394 |
+
#, fuzzy, php-format
|
395 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
|
|
396 |
msgstr ""
|
397 |
"Si è verificato un errore durante il tentativo di caricare i seguenti "
|
398 |
"allegati: <br/>"
|
399 |
|
400 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
401 |
#, fuzzy
|
402 |
msgid "The email address entered wasn't found in the database!"
|
403 |
msgstr ""
|
404 |
"L'indirizzo email inserito non è valido. <br/> L'indirizzo e-mail è stato"
|
405 |
|
406 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
407 |
msgid "Please check that you entered the correct email address."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
411 |
+
#, fuzzy
|
412 |
+
msgid "There was an error while trying to send the activation link to "
|
413 |
+
msgstr ""
|
414 |
+
"Si è verificato un errore durante il tentativo di caricare i seguenti "
|
415 |
+
"allegati: <br/>"
|
416 |
+
|
417 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
418 |
msgid "The username entered wasn't found in the database!"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
422 |
msgid "Please check that you entered the correct username."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
|
426 |
#, fuzzy
|
427 |
msgid "Your password has been successfully changed!"
|
428 |
msgstr "Le modifiche sono state salvate con successo."
|
429 |
|
430 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
|
431 |
+
#, fuzzy, php-format
|
432 |
+
msgid "You have successfully reset your password to: %1$s"
|
433 |
msgstr ""
|
434 |
+
"Hai effettuato il login correttamente come <a href=\"%1$s\" title=\"%2$s\">"
|
435 |
+
"%2$s</a>."
|
436 |
|
437 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
|
438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
|
439 |
+
#, fuzzy, php-format
|
440 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
441 |
msgstr "\" è stato cancellato con successo."
|
442 |
|
443 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
|
444 |
+
#, php-format
|
445 |
+
msgid ""
|
446 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
447 |
+
"her new password is:%2$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
|
451 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:894
|
452 |
msgid "The entered passwords don't match!"
|
453 |
msgstr "Le password inserite non corrispondono!"
|
454 |
|
455 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
|
456 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
|
457 |
#, fuzzy
|
458 |
msgid "Reset Password"
|
459 |
msgstr "Ripeti Password"
|
460 |
|
461 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
462 |
msgid "Invalid key!"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
466 |
#, fuzzy
|
467 |
msgid "Please enter your username or email address."
|
468 |
msgstr "Devi inserire un indirizzo email valido."
|
469 |
|
470 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
471 |
msgid "You will receive a link to create a new password via email."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
475 |
#, fuzzy
|
476 |
msgid "Username or E-mail"
|
477 |
msgstr "Username"
|
478 |
|
479 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
480 |
#, fuzzy
|
481 |
msgid "Get New Password"
|
482 |
msgstr "Nuova Password"
|
526 |
"Si è verificato un errore durante il tentativo di caricare i seguenti "
|
527 |
"allegati: <br/>"
|
528 |
|
529 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
|
530 |
+
#, php-format
|
531 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
535 |
msgid ""
|
536 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
537 |
"please remember that you need to approve this user before he/she can log in!"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
541 |
msgid "A new subscriber has (been) registered!"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:522
|
545 |
#, fuzzy
|
546 |
msgid "A new account has been created for you."
|
547 |
msgstr "Un account utente come %1$s è stato creato."
|
548 |
|
549 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
550 |
+
#, php-format
|
551 |
+
msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
|
|
|
|
|
|
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
|
|
|
|
|
|
|
|
|
|
|
555 |
msgid ""
|
556 |
"Before you can access your account, an administrator needs to approve it. "
|
557 |
"You will be notified via email."
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
|
|
|
|
|
|
|
|
|
561 |
msgid "A username is required for registration."
|
562 |
msgstr "E' richiesto un nome utente per la registrazione."
|
563 |
|
564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
|
565 |
msgid "Sorry, that username already exists!"
|
566 |
msgstr "Ci dispiace, questo nome utente esiste già!"
|
567 |
|
568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:887
|
569 |
msgid "You must enter a valid email address."
|
570 |
msgstr "Devi inserire un indirizzo email valido."
|
571 |
|
572 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:889
|
573 |
msgid "Sorry, that email address is already used!"
|
574 |
msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
|
575 |
|
576 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
|
577 |
msgid "You didn't complete one of the password-fields!"
|
578 |
msgstr "Non ha completato uno dei campi password!"
|
579 |
|
580 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
581 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
585 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
586 |
#, fuzzy
|
587 |
msgid "The account was NOT created!"
|
588 |
msgstr "Un account utente come %1$s è stato creato."
|
589 |
|
590 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:908
|
591 |
msgid "You must agree to the terms and conditions before registering!"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
595 |
msgid "(Several required fields were left uncompleted)"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
599 |
msgid "This username is already reserved to be used soon."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
603 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
604 |
msgid "Please try a different one!"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
608 |
#, fuzzy
|
609 |
msgid "This email address is already reserved to be used soon."
|
610 |
msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
|
611 |
|
612 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
613 |
msgid "You are logged in as"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
617 |
msgid "You don't need another account."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
621 |
#, fuzzy
|
622 |
msgid "Log out of this account."
|
623 |
msgstr "Esci da questo account"
|
624 |
|
625 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
626 |
#, fuzzy
|
627 |
msgid "Logout"
|
628 |
msgstr "Logout »"
|
629 |
|
630 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
631 |
+
#, php-format
|
632 |
+
msgid ""
|
633 |
+
"An email has been sent to %1$s with information on how to activate his/her "
|
634 |
+
"account."
|
|
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1172
|
638 |
+
#, fuzzy, php-format
|
639 |
+
msgid "A user account has been created for %1$s."
|
640 |
msgstr "Un account utente come %1$s è stato creato."
|
641 |
|
642 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
643 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
644 |
+
#, php-format
|
645 |
msgid ""
|
646 |
"You will soon be redirected automatically. If you see this page for more "
|
647 |
+
"than 3 seconds, please click %1$s.%2$s"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1197
|
651 |
msgid ""
|
652 |
"An email has been sent to you with information on how to activate your "
|
653 |
+
"account."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1201
|
657 |
+
#, fuzzy, php-format
|
658 |
+
msgid "Thank you for registering %1$s."
|
659 |
msgstr "Grazie per esserti registrato, %1$s."
|
660 |
|
661 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1228
|
662 |
msgid "An error occured while trying to send the notification email."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
666 |
msgid "An email containing activation instructions was successfully sent."
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
670 |
msgid "An email containing the username and password was successfully sent."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1254
|
674 |
msgid "Users can register themselves or you can manually create users here."
|
675 |
msgstr ""
|
676 |
"Gli utenti possono registrarsi oppure è possibile creare manualmente gli "
|
677 |
"utenti qui."
|
678 |
|
679 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
680 |
msgid ""
|
681 |
"Users cannot currently register themselves, but you can manually create "
|
682 |
"users here."
|
684 |
"Gli utenti non possono al momento registrarsi, ma è possibile creare "
|
685 |
"manualmente gli utenti qui."
|
686 |
|
687 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
688 |
msgid "Only an administrator can add new users."
|
689 |
msgstr "Solo gli amministratori possono inserire nuovi utenti."
|
690 |
|
691 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1287
|
692 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1311
|
693 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1335
|
694 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1359
|
695 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1410
|
696 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1434
|
697 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1458
|
698 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1482
|
699 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1509
|
700 |
msgid ""
|
701 |
"This field must be filled out before registering (It was marked as required "
|
702 |
"by the administrator)"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1308
|
706 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1332
|
707 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1356
|
708 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1383
|
709 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1407
|
710 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1431
|
711 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1455
|
712 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1479
|
713 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1506
|
714 |
msgid "This field is marked as required by the administrator"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1581
|
718 |
msgid "Anti-Spam"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1602
|
722 |
#, fuzzy
|
723 |
msgid "Send these credentials via email."
|
724 |
msgstr "Invia le mie credenziali via email."
|
725 |
|
726 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
727 |
msgid "Add User"
|
728 |
msgstr "Inserisci utente"
|
729 |
|
730 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
731 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
732 |
msgid "Register"
|
733 |
msgstr "Registrati"
|
746 |
msgid "Visibility"
|
747 |
msgstr "Visibilità"
|
748 |
|
749 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
|
750 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
751 |
+
msgid "Default"
|
752 |
+
msgstr "Default"
|
753 |
+
|
754 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
|
755 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
756 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
757 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
767 |
msgid "Show"
|
768 |
msgstr "Mostra"
|
769 |
|
770 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
|
771 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
772 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
773 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
783 |
msgid "Hide"
|
784 |
msgstr "Nascondi"
|
785 |
|
786 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
788 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
789 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
790 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
|
791 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
792 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
|
793 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
794 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
795 |
msgid "Save Changes"
|
925 |
msgid "shortcode."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
929 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
930 |
+
msgid "NOTE:"
|
931 |
+
msgstr "NOTA:"
|
932 |
+
|
933 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
934 |
msgid "this plugin only adds/removes fields in the front-end."
|
935 |
msgstr "Questo plugin aggiunge / rimuove i campi del front-end."
|
981 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
982 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
983 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
984 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
|
985 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
|
986 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
|
987 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
|
988 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
|
989 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
|
990 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
|
991 |
msgid "Yes"
|
992 |
msgstr ""
|
993 |
|
1005 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1006 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1007 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1008 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
|
1009 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
|
1010 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
|
1011 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
|
1012 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
|
1013 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
|
1014 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
|
1015 |
#, fuzzy
|
1016 |
msgid "No"
|
1017 |
msgstr "Nessuno"
|
1036 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1037 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1038 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1039 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
|
1040 |
msgid "General Settings"
|
1041 |
msgstr ""
|
1042 |
|
1045 |
msgid "Stylesheet Used on the Front-End:"
|
1046 |
msgstr "Stylesheet usato:"
|
1047 |
|
|
|
|
|
|
|
|
|
1048 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1049 |
msgid "White"
|
1050 |
msgstr "Bianco"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1086 |
+
#, php-format
|
1087 |
msgid ""
|
1088 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1089 |
+
"Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
|
1090 |
+
"access to automatic updates and support. Need a license key? %3$sPurchase "
|
1091 |
+
"one now%4$s"
|
|
|
|
|
|
|
1092 |
msgstr ""
|
1093 |
|
1094 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1095 |
+
#, php-format
|
1096 |
msgid ""
|
1097 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1098 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1099 |
+
"priority support. %3$sPurchase one now%4$s"
|
|
|
|
|
|
|
|
|
1100 |
msgstr ""
|
1101 |
|
1102 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1153 |
msgstr ""
|
1154 |
|
1155 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
|
1157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
|
1158 |
msgid "Custom Redirects"
|
1159 |
msgstr ""
|
1160 |
|
1164 |
msgid "reCAPTCHA"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
|
1168 |
msgid "Redirects on custom page requests:"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
|
1172 |
msgid "Action"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
|
1176 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
|
1177 |
msgid "Redirect"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
|
1181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
|
1182 |
msgid "URL"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
|
1186 |
msgid "After Registration:"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
|
1190 |
msgid "After Login:"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
|
1194 |
#, fuzzy
|
1195 |
msgid "Recover Password (*)"
|
1196 |
msgstr "Ripeti Password"
|
1197 |
|
1198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
|
1199 |
msgid ""
|
1200 |
"When activated this feature will redirect the user on both the default "
|
1201 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1202 |
"Profile Builder on the front-end login page."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
|
1206 |
msgid "Redirects on default WordPress page requests:"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
|
1210 |
msgid "Requested WP Page"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
|
1214 |
+
msgid "Default WP Login Page (*)"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
|
1218 |
+
msgid "Default WP Logout Page (**)"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
|
1222 |
msgid "Default WP Register Page"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
|
1226 |
msgid "Default WP Dashboard (***)"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
|
1230 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
|
1234 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
|
1238 |
msgid ""
|
1239 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1240 |
"manage options)."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
|
|
1248 |
msgid "To use reCAPTCHA you must get an API key from"
|
1249 |
msgstr ""
|
1250 |
|
1289 |
msgid "Private Key:"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
|
1293 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1294 |
msgstr ""
|
1295 |
|
1305 |
"authors, visible to only the users currently logged in, you would use:"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1309 |
+
msgid ""
|
1310 |
+
"You can also create a userlisting page that displays users having a certain "
|
1311 |
+
"meta-value within a certain (extra) meta-field like so:"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1315 |
+
msgid ""
|
1316 |
+
"Remember though, that the field-value combination must exist in the database."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
|
1320 |
msgid "These settings are applied to the front-end userlisting."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:46
|
1324 |
msgid "Number of Users/Page: "
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:63
|
1328 |
msgid "Default Sorting Order: "
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
|
1332 |
msgid "\"All-Userlisting\" Template"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1336 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1337 |
msgid ""
|
1338 |
"With the userlisting templates you can customize the look, feel and "
|
1339 |
"information listed by the shortcode."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
|
1343 |
msgid ""
|
1344 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1345 |
"on each page access where the shortcode is present."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
|
1349 |
msgid "Avatar size: "
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:97
|
1353 |
msgid "Insert \"Sort By\" Field:"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:125
|
1357 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
|
1358 |
msgid "Insert \"User-Meta\" Field:"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:156
|
1362 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:262
|
1363 |
msgid "Insert Extra Functions:"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:171
|
1367 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:173
|
1371 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:276
|
1372 |
msgid ""
|
1373 |
"If you wish to use a default userlisting, just copy the following code and "
|
1374 |
"paste it in the textarea below:"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
|
1378 |
msgid "\"Single-Userlisting\" Template"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:219
|
1382 |
msgid ""
|
1383 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1384 |
"It's displayed when clickin on the \"more info\" link."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:274
|
1388 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1392 |
msgid ""
|
1393 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1397 |
msgid "You can find it in Profile Builder's menu."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
|
1401 |
#, fuzzy
|
1402 |
msgid "You need to be logged in to view the userlisting!"
|
1403 |
msgstr "Devi essere registrato per modificare il tuo profilo."
|
1404 |
|
1405 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
|
1406 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
|
1407 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1408 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1328
|
1409 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1414
|
1410 |
msgid "Search Users by All Fields"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1414 |
msgid "Leave Blank and Press Search to List All Users"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
|
1418 |
msgid "Search"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
|
1422 |
#, fuzzy
|
1423 |
msgid "First/Lastname"
|
1424 |
msgstr "Nome"
|
1425 |
|
1426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
|
1427 |
#, fuzzy
|
1428 |
msgid "Email"
|
1429 |
msgstr "E-mail:"
|
1430 |
|
1431 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
|
1432 |
msgid "Sign-up Date"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
|
1436 |
#, fuzzy
|
1437 |
msgid "Firstname"
|
1438 |
msgstr "Nome"
|
1439 |
|
1440 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
|
1441 |
#, fuzzy
|
1442 |
msgid "Lastname"
|
1443 |
msgstr "Cognome"
|
1444 |
|
1445 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
|
1446 |
#, fuzzy
|
1447 |
msgid "Display Name"
|
1448 |
msgstr "Nome"
|
1449 |
|
1450 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
|
1451 |
msgid "Posts"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1455 |
msgid "Click here to see more information about this user"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1459 |
msgid "More..."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
|
1463 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1464 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1465 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1466 |
#, fuzzy
|
1467 |
msgid "No uploaded attachment"
|
1468 |
msgstr "L'allegato \""
|
1469 |
|
1470 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
|
1471 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1472 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1160
|
1473 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1474 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1475 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1478 |
msgid "Click to see the current attachment"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1482 |
msgid "Click here to go back"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1486 |
#, fuzzy
|
1487 |
msgid "Back"
|
1488 |
msgstr "Nero"
|
1489 |
|
1490 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1491 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1492 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1493 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1494 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1497 |
msgid "Current file"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
|
1501 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1502 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1503 |
msgid "Avatar"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1215
|
1507 |
msgid "No results found!"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1511 |
msgid "«« First"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1515 |
msgid "« Prev"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1519 |
#, fuzzy
|
1520 |
msgid "Next » "
|
1521 |
msgstr "Logout »"
|
1522 |
|
1523 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
|
1524 |
#, fuzzy
|
1525 |
msgid "Last »»"
|
1526 |
msgstr "Logout »"
|
1527 |
|
1528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
|
1529 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
|
1530 |
#, fuzzy
|
1531 |
msgid "You must give your option a title."
|
1532 |
msgstr "Devi essere registrato per modificare il tuo profilo."
|
1533 |
|
1534 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
|
1535 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
|
1536 |
msgid "You have entered an invalid meta-key format!"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
|
1540 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
|
1541 |
#, fuzzy
|
1542 |
msgid "You must enter a valid meta-key."
|
1543 |
msgstr "Devi inserire un indirizzo email valido."
|
1544 |
|
1545 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
|
1546 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1547 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:447
|
1548 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
|
1549 |
msgid "That meta-key is already in use."
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1553 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1554 |
msgid ""
|
1555 |
"There is already an avatar input-type. You can only have one avatar present."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:324
|
1559 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:474
|
1560 |
msgid ""
|
1561 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1562 |
"have one present."
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:329
|
1566 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:479
|
1567 |
msgid "The textarea row value must be numeric."
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1571 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1572 |
msgid "The maxlength attribute must be numeric."
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1576 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1577 |
msgid "The value must be between 20 and 200!"
|
1578 |
msgstr ""
|
1579 |
|
|
|
|
|
|
|
|
|
|
|
1580 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1581 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1582 |
+
msgid "The width component of the entered value must be numeric!"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1586 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1587 |
+
msgid "The height component of the entered value must be numeric!"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1591 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1592 |
+
msgid "The width component of the entered 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:351
|
1596 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1597 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
|
1601 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
|
1602 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
|
1606 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:506
|
1607 |
msgid "The entered avatar size must be numeric!"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:390
|
1611 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:566
|
1612 |
msgid "There was an error, please try again."
|
1613 |
msgstr ""
|
1614 |
|
1621 |
msgstr ""
|
1622 |
|
1623 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1624 |
+
#, fuzzy, php-format
|
1625 |
+
msgid "Your account on %1$s has been approved!"
|
1626 |
+
msgstr "Un account utente come %1$s è stato creato."
|
|
|
|
|
|
|
|
|
1627 |
|
1628 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1629 |
+
#, php-format
|
1630 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1634 |
+
#, fuzzy, php-format
|
1635 |
+
msgid "Your account on %1$s has been unapproved!"
|
1636 |
+
msgstr "Un account utente come %1$s è stato creato."
|
1637 |
|
1638 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1639 |
+
#, php-format
|
1640 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1669 |
msgstr ""
|
1670 |
|
1671 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1672 |
+
#, php-format
|
1673 |
+
msgid "Are you sure you want to %1$s this user?"
|
|
|
|
|
|
|
1674 |
msgstr ""
|
1675 |
|
1676 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1923 |
msgid "Don't have an account?"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1927 |
+
#, fuzzy
|
1928 |
+
msgid "Lost Password"
|
1929 |
+
msgstr "Password persa?"
|
1930 |
+
|
1931 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1932 |
#, fuzzy
|
1933 |
msgid "Lost Your Password?"
|
1939 |
msgstr "Log in"
|
1940 |
|
1941 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1942 |
+
msgid "After login redirect URL (optional):"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1946 |
+
msgid "Register page URL (optional):"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1950 |
+
msgid "Password Recovery page URL (optional):"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1958 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
|
1962 |
#, php-format
|
1963 |
msgid ""
|
1964 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1965 |
+
"Please %1$sregister your copy%2$s of Profile Builder to receive access to "
|
1966 |
+
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
|
1967 |
+
"%5$sDismiss%6$s"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
|
1971 |
#, php-format
|
1972 |
msgid ""
|
1973 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1974 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1975 |
+
"priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
2041 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#, fuzzy
|
2045 |
+
#~ msgid "The attachment"
|
2046 |
+
#~ msgstr "L'allegato \""
|
2047 |
+
|
2048 |
+
#, fuzzy
|
2049 |
+
#~ msgid "was successfully deleted."
|
2050 |
+
#~ msgstr "\" è stato cancellato con successo."
|
2051 |
+
|
2052 |
+
#, fuzzy
|
2053 |
+
#~ msgid "Possible cause: the size was bigger than"
|
2054 |
+
#~ msgstr "<br/> Possibile causa: la dimensione era troppo grande"
|
2055 |
+
|
2056 |
+
#, fuzzy
|
2057 |
+
#~ msgid "The listed attachements were"
|
2058 |
+
#~ msgstr "b.<br/> Gli allegati elencate sono stati"
|
2059 |
+
|
2060 |
+
#, fuzzy
|
2061 |
+
#~ msgid "and password:"
|
2062 |
+
#~ msgstr "Password"
|
2063 |
+
|
2064 |
#~ msgid "Plugin Layout"
|
2065 |
#~ msgstr "Plugin Layout"
|
2066 |
|
translation/profilebuilder-nb_NO.mo
CHANGED
Binary file
|
translation/profilebuilder-nb_NO.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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,49 +15,34 @@ msgstr ""
|
|
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:
|
19 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
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:
|
39 |
msgid "You must be logged in to edit your profile."
|
40 |
msgstr "Du må være innlogget for å redigere profilen din."
|
41 |
|
42 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
43 |
msgid "The avatar was successfully deleted."
|
44 |
msgstr "Bildet ditt er slettet."
|
45 |
|
46 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
47 |
-
#, fuzzy
|
48 |
-
msgid "The attachment"
|
49 |
-
msgstr "
|
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 "\" er slettet."
|
55 |
|
56 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
57 |
msgid "The changes have been successfully saved."
|
58 |
msgstr "Endringene er lagret"
|
59 |
|
60 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
61 |
#, fuzzy
|
62 |
msgid ""
|
63 |
"The email address you entered is already registered to a different user."
|
@@ -65,129 +50,119 @@ msgstr ""
|
|
65 |
"E-postadressen du skrev inn er allerede registrert på en annen bruker.<br/> "
|
66 |
"E-postadressen var"
|
67 |
|
68 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
69 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
70 |
msgid "The email address was"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
74 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
75 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
76 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
77 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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 "IKKE"
|
82 |
|
83 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
84 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
85 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
86 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
87 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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 "oppdatert sammen med resten av informasjonen."
|
93 |
|
94 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
95 |
#, fuzzy
|
96 |
msgid "The email address you entered is invalid."
|
97 |
msgstr "E-postadressen du tastet inn er ikke gyldig. <br/> E-postadressen var"
|
98 |
|
99 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
100 |
#, fuzzy
|
101 |
msgid "The passwords you entered do not match."
|
102 |
msgstr "Passordene du tastet inn stemmer ikke overens. <br/> Passordet var"
|
103 |
|
104 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
105 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
106 |
#, fuzzy
|
107 |
msgid "The password was"
|
108 |
msgstr "Nytt passord"
|
109 |
|
110 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
111 |
#, fuzzy
|
112 |
msgid "You didn't complete both password fields."
|
113 |
msgstr "Du fylte ut feil i et av passordfeltene!"
|
114 |
|
115 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
116 |
msgid "Your profile was NOT updated!"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
120 |
#, fuzzy
|
121 |
msgid "There was an error while trying to upload the following attachments:"
|
122 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
123 |
|
124 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
125 |
-
#,
|
126 |
-
msgid "
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
#, fuzzy
|
131 |
-
msgid "The listed attachements were"
|
132 |
-
msgstr "b.<br/>Vedleggene ble"
|
133 |
|
134 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
135 |
#, fuzzy
|
136 |
msgid "There was an error while trying to upload your avatar picture."
|
137 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
138 |
|
139 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
140 |
msgid "Possible cause: size/incorrect file-type."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
144 |
msgid "The avatar was"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
148 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
149 |
#, fuzzy
|
150 |
msgid "There was an error while trying to upload the following attachment(s)"
|
151 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
152 |
|
153 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
154 |
-
|
155 |
-
msgid "
|
156 |
-
|
157 |
-
|
158 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
159 |
-
msgid "This file was"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
163 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
164 |
msgid "Name"
|
165 |
msgstr "Navn"
|
166 |
|
167 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
168 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
169 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
170 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
171 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
172 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
173 |
msgid "Username"
|
174 |
msgstr "Brukernavn"
|
175 |
|
176 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
177 |
#, fuzzy
|
178 |
msgid "Usernames cannot be changed."
|
179 |
msgstr "Brukernavn kan ikke endres."
|
180 |
|
181 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
182 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
183 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
184 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
185 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
186 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
187 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
188 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
189 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
190 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
191 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
192 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
193 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
@@ -202,297 +177,288 @@ msgstr "Brukernavn kan ikke endres."
|
|
202 |
msgid "This field is marked as required by the administrator."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
206 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
207 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
208 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
209 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
210 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
211 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
212 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
213 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
214 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
215 |
msgid ""
|
216 |
"This field wasn't updated because you entered and empty string (It was "
|
217 |
"marked as required by the administrator."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
221 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
222 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
223 |
msgid "First Name"
|
224 |
msgstr "Fornavn"
|
225 |
|
226 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
227 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
228 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
229 |
msgid "Last Name"
|
230 |
msgstr "Etternavn"
|
231 |
|
232 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
233 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
234 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
235 |
msgid "Nickname"
|
236 |
msgstr "Kallenavn"
|
237 |
|
238 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
239 |
msgid "Display name publicly as"
|
240 |
msgstr "Vis mitt navn offentlig som"
|
241 |
|
242 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
243 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
244 |
msgid "Contact Info"
|
245 |
msgstr "Kontaktinformasjon"
|
246 |
|
247 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
248 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
249 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
250 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
251 |
msgid "E-mail"
|
252 |
msgstr "E-post"
|
253 |
|
254 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
255 |
msgid "(required)"
|
256 |
msgstr "(påkrevd)"
|
257 |
|
258 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
259 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
260 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
261 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
262 |
msgid "Website"
|
263 |
msgstr "Nettside"
|
264 |
|
265 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
266 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
267 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
268 |
msgid "AIM"
|
269 |
msgstr "AIM"
|
270 |
|
271 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
272 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
273 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
274 |
msgid "Yahoo IM"
|
275 |
msgstr "Yahoo IM"
|
276 |
|
277 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
278 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
279 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
280 |
msgid "Jabber / Google Talk"
|
281 |
msgstr "Jabber / Google Talk"
|
282 |
|
283 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
284 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
285 |
msgid "About Yourself"
|
286 |
msgstr "Om deg selv"
|
287 |
|
288 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
289 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
290 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
291 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
292 |
msgid "Biographical Info"
|
293 |
msgstr "Litt om meg selv"
|
294 |
|
295 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
296 |
msgid "New Password"
|
297 |
msgstr "Nytt passord"
|
298 |
|
299 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
300 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
301 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
302 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
303 |
msgid "Repeat Password"
|
304 |
msgstr "Gjenta passord"
|
305 |
|
306 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
307 |
msgid "Update"
|
308 |
msgstr "Oppdater"
|
309 |
|
310 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
311 |
-
#, fuzzy
|
312 |
-
msgid "You are currently logged in as"
|
313 |
msgstr "Du er logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
314 |
|
315 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
316 |
msgid "Log out of this account"
|
317 |
msgstr "Logg ut av denne kontoen"
|
318 |
|
319 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
320 |
#, fuzzy
|
321 |
msgid "Log out"
|
322 |
msgstr "Logg ut »"
|
323 |
|
324 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
325 |
-
#, fuzzy
|
326 |
-
msgid "You have successfully logged in as"
|
327 |
msgstr "Du har logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
328 |
|
329 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
330 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
331 |
msgid ""
|
332 |
"You will soon be redirected automatically. If you see this page for more "
|
333 |
-
"than 1 second, please click"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
337 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
338 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
339 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
340 |
msgid "here"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
344 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
345 |
msgid "ERROR:"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
349 |
msgid "The username field is empty"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
353 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
354 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
355 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
356 |
msgid "Password"
|
357 |
msgstr "Passord"
|
358 |
|
359 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
360 |
msgid "Log in"
|
361 |
msgstr "Logg inn"
|
362 |
|
363 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
364 |
msgid "Remember me"
|
365 |
msgstr "Husk meg"
|
366 |
|
367 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
368 |
msgid "Lost password?"
|
369 |
msgstr "Mistet passordet?"
|
370 |
|
371 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
372 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
373 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
374 |
msgid "ERROR"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
378 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
379 |
msgid ""
|
380 |
"Your account has to be confirmed by an administrator before you can use the "
|
381 |
"\"Password Reset\" feature."
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
385 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
386 |
-
|
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 "Following the link sent in the email address will reset the password."
|
392 |
-
msgstr ""
|
393 |
-
|
394 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
395 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
396 |
msgid ""
|
397 |
-
"
|
|
|
398 |
msgstr ""
|
399 |
|
400 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
401 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
msgid "To reset your password, visit the following link:"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
411 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
412 |
-
|
|
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
416 |
-
|
417 |
-
|
418 |
-
msgid "There was an error while trying to send the activation link to "
|
419 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
420 |
|
421 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
422 |
#, fuzzy
|
423 |
msgid "The email address entered wasn't found in the database!"
|
424 |
msgstr "E-postadressen du tastet inn er ikke gyldig. <br/> E-postadressen var"
|
425 |
|
426 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
427 |
msgid "Please check that you entered the correct email address."
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
|
|
|
|
|
|
|
|
|
|
431 |
msgid "The username entered wasn't found in the database!"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
435 |
msgid "Please check that you entered the correct username."
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
439 |
#, fuzzy
|
440 |
msgid "Your password has been successfully changed!"
|
441 |
msgstr "Endringene er lagret"
|
442 |
|
443 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
444 |
-
|
445 |
-
|
|
|
446 |
|
447 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
448 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
449 |
-
#, fuzzy
|
450 |
-
msgid "Password Successfully Reset for"
|
451 |
msgstr "\" er slettet."
|
452 |
|
453 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
454 |
-
|
455 |
-
msgid "
|
456 |
-
|
457 |
-
|
458 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
459 |
-
msgid "has requested a password change via the password reset feature."
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
463 |
-
msgid "His/her new password is:"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
467 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
468 |
msgid "The entered passwords don't match!"
|
469 |
msgstr "Passordene er ikke like"
|
470 |
|
471 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
472 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
473 |
#, fuzzy
|
474 |
msgid "Reset Password"
|
475 |
msgstr "Gjenta passord"
|
476 |
|
477 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
478 |
msgid "Invalid key!"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
482 |
#, fuzzy
|
483 |
msgid "Please enter your username or email address."
|
484 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
485 |
|
486 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
487 |
msgid "You will receive a link to create a new password via email."
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
491 |
#, fuzzy
|
492 |
msgid "Username or E-mail"
|
493 |
msgstr "Brukernavn"
|
494 |
|
495 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
496 |
#, fuzzy
|
497 |
msgid "Get New Password"
|
498 |
msgstr "Nytt passord"
|
@@ -540,162 +506,155 @@ msgstr "Bildet ditt er slettet."
|
|
540 |
msgid "There was an error while trying to activate the user."
|
541 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
542 |
|
543 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
544 |
-
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
548 |
msgid ""
|
549 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
550 |
"please remember that you need to approve this user before he/she can log in!"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
554 |
msgid "A new subscriber has (been) registered!"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
558 |
#, fuzzy
|
559 |
msgid "A new account has been created for you."
|
560 |
msgstr "En bruker for %1$s har blitt lagt til."
|
561 |
|
562 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
567 |
-
msgid "Your username is:"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
571 |
-
#, fuzzy
|
572 |
-
msgid "and password:"
|
573 |
-
msgstr "Passord"
|
574 |
-
|
575 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
576 |
msgid ""
|
577 |
"Before you can access your account, an administrator needs to approve it. "
|
578 |
"You will be notified via email."
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
582 |
-
msgid "The user was NOT created!"
|
583 |
-
msgstr ""
|
584 |
-
|
585 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
586 |
msgid "A username is required for registration."
|
587 |
msgstr "Et brukernavn kreves for registrering."
|
588 |
|
589 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
590 |
msgid "Sorry, that username already exists!"
|
591 |
msgstr "Brukernavnet er allerede i bruk!"
|
592 |
|
593 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
594 |
msgid "You must enter a valid email address."
|
595 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
596 |
|
597 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
598 |
msgid "Sorry, that email address is already used!"
|
599 |
msgstr "Denne e-posten er allerede i bruk!"
|
600 |
|
601 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
602 |
msgid "You didn't complete one of the password-fields!"
|
603 |
msgstr "Du fylte ut feil i et av passordfeltene!"
|
604 |
|
605 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
606 |
-
|
|
|
|
|
|
|
|
|
607 |
#, fuzzy
|
608 |
msgid "The account was NOT created!"
|
609 |
msgstr "En bruker for %1$s har blitt lagt til."
|
610 |
|
611 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
612 |
msgid "You must agree to the terms and conditions before registering!"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
616 |
msgid "(Several required fields were left uncompleted)"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
620 |
msgid "This username is already reserved to be used soon."
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
624 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
625 |
msgid "Please try a different one!"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
629 |
#, fuzzy
|
630 |
msgid "This email address is already reserved to be used soon."
|
631 |
msgstr "Denne e-posten er allerede i bruk!"
|
632 |
|
633 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
634 |
msgid "You are logged in as"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
638 |
msgid "You don't need another account."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
642 |
#, fuzzy
|
643 |
msgid "Log out of this account."
|
644 |
msgstr "Logg ut av denne kontoen"
|
645 |
|
646 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
647 |
#, fuzzy
|
648 |
msgid "Logout"
|
649 |
msgstr "Logg ut »"
|
650 |
|
651 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
msgid "with information on how to activate his/her account"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
660 |
-
#, fuzzy
|
661 |
-
msgid "A user account has been created for"
|
662 |
msgstr "En bruker for %1$s har blitt lagt til."
|
663 |
|
664 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
665 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
666 |
msgid ""
|
667 |
"You will soon be redirected automatically. If you see this page for more "
|
668 |
-
"than 3 seconds, please click"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
672 |
msgid ""
|
673 |
"An email has been sent to you with information on how to activate your "
|
674 |
-
"account"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
678 |
-
#, fuzzy
|
679 |
-
msgid "Thank you for registering"
|
680 |
msgstr "Takk for at du registrerte deg, %1$s."
|
681 |
|
682 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
683 |
msgid "An error occured while trying to send the notification email."
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
687 |
msgid "An email containing activation instructions was successfully sent."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
691 |
msgid "An email containing the username and password was successfully sent."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
695 |
msgid "Users can register themselves or you can manually create users here."
|
696 |
msgstr "Brukere kan registrere seg selv eller du kan gjøre det manuelt her."
|
697 |
|
698 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
699 |
msgid ""
|
700 |
"Users cannot currently register themselves, but you can manually create "
|
701 |
"users here."
|
@@ -703,50 +662,50 @@ msgstr ""
|
|
703 |
"Brukere kan ikke registrere seg selv, men du som har "
|
704 |
"administratorrettigheter kan manuelt legge til brukere her. "
|
705 |
|
706 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
707 |
msgid "Only an administrator can add new users."
|
708 |
msgstr "Kun en administrator kan legge til nye brukere."
|
709 |
|
710 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
711 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
712 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
713 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
714 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
715 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
716 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
717 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
718 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
719 |
msgid ""
|
720 |
"This field must be filled out before registering (It was marked as required "
|
721 |
"by the administrator)"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
725 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
726 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
727 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
728 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
729 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
730 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
731 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
732 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
733 |
msgid "This field is marked as required by the administrator"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
737 |
msgid "Anti-Spam"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
741 |
#, fuzzy
|
742 |
msgid "Send these credentials via email."
|
743 |
msgstr "Send denne informasjon om brukernavn og passord på e-post"
|
744 |
|
745 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
746 |
msgid "Add User"
|
747 |
msgstr "Legg til bruker"
|
748 |
|
749 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
750 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
751 |
msgid "Register"
|
752 |
msgstr "Registrer"
|
@@ -765,7 +724,12 @@ msgstr "Brukergruppe"
|
|
765 |
msgid "Visibility"
|
766 |
msgstr "Synlighet"
|
767 |
|
768 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
|
|
|
|
|
|
|
|
|
|
769 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
770 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
771 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
@@ -781,7 +745,7 @@ msgstr "Synlighet"
|
|
781 |
msgid "Show"
|
782 |
msgstr "Vis"
|
783 |
|
784 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
785 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
786 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
787 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
@@ -797,26 +761,13 @@ msgstr "Vis"
|
|
797 |
msgid "Hide"
|
798 |
msgstr "Skjul"
|
799 |
|
800 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
801 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
802 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
803 |
-
msgid "NOTE:"
|
804 |
-
msgstr "MERK:"
|
805 |
-
|
806 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:41
|
807 |
-
msgid ""
|
808 |
-
"If you added new roles (via another plugin) <u>after</u> Profile Builder was "
|
809 |
-
"activated, please reactivate it, since the roles are initialized during "
|
810 |
-
"plugin activation."
|
811 |
-
msgstr ""
|
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:
|
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:
|
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"
|
@@ -948,6 +899,11 @@ msgstr ""
|
|
948 |
msgid "shortcode."
|
949 |
msgstr ""
|
950 |
|
|
|
|
|
|
|
|
|
|
|
951 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
952 |
msgid "this plugin only adds/removes fields in the front-end."
|
953 |
msgstr "denne pluginen legger kun til/fjerner felter på front-end"
|
@@ -995,7 +951,13 @@ msgstr "Navn:"
|
|
995 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
996 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
997 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
998 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
999 |
msgid "Yes"
|
1000 |
msgstr ""
|
1001 |
|
@@ -1013,7 +975,13 @@ msgstr ""
|
|
1013 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1014 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1015 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1016 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1017 |
#, fuzzy
|
1018 |
msgid "No"
|
1019 |
msgstr "Ingen"
|
@@ -1038,7 +1006,7 @@ msgstr "Nytt passord"
|
|
1038 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1039 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1040 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1041 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1042 |
msgid "General Settings"
|
1043 |
msgstr ""
|
1044 |
|
@@ -1047,10 +1015,6 @@ msgstr ""
|
|
1047 |
msgid "Stylesheet Used on the Front-End:"
|
1048 |
msgstr "Styelsheet brukt:"
|
1049 |
|
1050 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
1051 |
-
msgid "Default"
|
1052 |
-
msgstr "Standard"
|
1053 |
-
|
1054 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1055 |
msgid "White"
|
1056 |
msgstr "Hvit"
|
@@ -1089,25 +1053,20 @@ msgid ""
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
|
|
1092 |
msgid ""
|
1093 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1094 |
-
"Please <
|
1095 |
-
"
|
1096 |
-
"
|
1097 |
-
"www.cozmoslabs.com/wordpress-profile-builder/?"
|
1098 |
-
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' "
|
1099 |
-
"class='button-primary'>Purchase one now</a>"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
|
|
1103 |
msgid ""
|
1104 |
-
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please
|
1105 |
-
"
|
1106 |
-
"
|
1107 |
-
"a> to receive access to automatic updates and priority support. <a "
|
1108 |
-
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1109 |
-
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' "
|
1110 |
-
"class='button-primary'>Purchase one now</a>"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
@@ -1164,7 +1123,8 @@ msgid "Inactive"
|
|
1164 |
msgstr ""
|
1165 |
|
1166 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1167 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1168 |
msgid "Custom Redirects"
|
1169 |
msgstr ""
|
1170 |
|
@@ -1174,75 +1134,77 @@ msgstr ""
|
|
1174 |
msgid "reCAPTCHA"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1178 |
msgid "Redirects on custom page requests:"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1182 |
msgid "Action"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1186 |
msgid "Redirect"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1190 |
msgid "URL"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1194 |
msgid "After Registration:"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1198 |
msgid "After Login:"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1202 |
#, fuzzy
|
1203 |
msgid "Recover Password (*)"
|
1204 |
msgstr "Gjenta passord"
|
1205 |
|
1206 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1207 |
msgid ""
|
1208 |
"When activated this feature will redirect the user on both the default "
|
1209 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1210 |
"Profile Builder on the front-end login page."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1214 |
msgid "Redirects on default WordPress page requests:"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1218 |
msgid "Requested WP Page"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1222 |
-
msgid "Default WP Login Page(*)"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1226 |
-
msgid "Default WP Logout Page(**)"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1230 |
msgid "Default WP Register Page"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1234 |
msgid "Default WP Dashboard (***)"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1238 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1242 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1246 |
msgid ""
|
1247 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1248 |
"manage options)."
|
@@ -1253,7 +1215,6 @@ msgid "Could not open socket!"
|
|
1253 |
msgstr ""
|
1254 |
|
1255 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
1256 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:120
|
1257 |
msgid "To use reCAPTCHA you must get an API key from"
|
1258 |
msgstr ""
|
1259 |
|
@@ -1298,7 +1259,7 @@ msgstr ""
|
|
1298 |
msgid "Private Key:"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:
|
1302 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1303 |
msgstr ""
|
1304 |
|
@@ -1314,160 +1275,171 @@ msgid ""
|
|
1314 |
"authors, visible to only the users currently logged in, you would use:"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1318 |
msgid "These settings are applied to the front-end userlisting."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1322 |
msgid "Number of Users/Page: "
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1326 |
msgid "Default Sorting Order: "
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1330 |
msgid "\"All-Userlisting\" Template"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1334 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1335 |
msgid ""
|
1336 |
"With the userlisting templates you can customize the look, feel and "
|
1337 |
"information listed by the shortcode."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1341 |
msgid ""
|
1342 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1343 |
"on each page access where the shortcode is present."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1347 |
msgid "Avatar size: "
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1351 |
msgid "Insert \"Sort By\" Field:"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1355 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1356 |
msgid "Insert \"User-Meta\" Field:"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1360 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1361 |
msgid "Insert Extra Functions:"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1365 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1369 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1370 |
msgid ""
|
1371 |
"If you wish to use a default userlisting, just copy the following code and "
|
1372 |
"paste it in the textarea below:"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1376 |
msgid "\"Single-Userlisting\" Template"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1380 |
msgid ""
|
1381 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1382 |
"It's displayed when clickin on the \"more info\" link."
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1386 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1390 |
msgid ""
|
1391 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1395 |
msgid "You can find it in Profile Builder's menu."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1399 |
#, fuzzy
|
1400 |
msgid "You need to be logged in to view the userlisting!"
|
1401 |
msgstr "Du må være innlogget for å redigere profilen din."
|
1402 |
|
1403 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1404 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1405 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1406 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1407 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1408 |
msgid "Search Users by All Fields"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1412 |
msgid "Leave Blank and Press Search to List All Users"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1416 |
msgid "Search"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1420 |
#, fuzzy
|
1421 |
msgid "First/Lastname"
|
1422 |
msgstr "Fornavn"
|
1423 |
|
1424 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1425 |
#, fuzzy
|
1426 |
msgid "Email"
|
1427 |
msgstr "E-post"
|
1428 |
|
1429 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1430 |
msgid "Sign-up Date"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1434 |
#, fuzzy
|
1435 |
msgid "Firstname"
|
1436 |
msgstr "Fornavn"
|
1437 |
|
1438 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1439 |
#, fuzzy
|
1440 |
msgid "Lastname"
|
1441 |
msgstr "Etternavn"
|
1442 |
|
1443 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1444 |
#, fuzzy
|
1445 |
msgid "Display Name"
|
1446 |
msgstr "Fornavn"
|
1447 |
|
1448 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1449 |
msgid "Posts"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1453 |
msgid "Click here to see more information about this user"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1457 |
msgid "More..."
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1461 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1462 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1463 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1464 |
#, fuzzy
|
1465 |
msgid "No uploaded attachment"
|
1466 |
msgstr "Vedlegget \""
|
1467 |
|
1468 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1469 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1470 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1471 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1472 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1473 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
@@ -1476,17 +1448,17 @@ msgstr "Vedlegget \""
|
|
1476 |
msgid "Click to see the current attachment"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1480 |
msgid "Click here to go back"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1484 |
#, fuzzy
|
1485 |
msgid "Back"
|
1486 |
msgstr "Svart"
|
1487 |
|
1488 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1489 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1490 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1491 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1492 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
@@ -1495,118 +1467,118 @@ msgstr "Svart"
|
|
1495 |
msgid "Current file"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1499 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1500 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1501 |
msgid "Avatar"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1505 |
msgid "No results found!"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1509 |
msgid "«« First"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1513 |
msgid "« Prev"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1517 |
#, fuzzy
|
1518 |
msgid "Next » "
|
1519 |
msgstr "Logg ut »"
|
1520 |
|
1521 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1522 |
#, fuzzy
|
1523 |
msgid "Last »»"
|
1524 |
msgstr "Logg ut »"
|
1525 |
|
1526 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1527 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1528 |
#, fuzzy
|
1529 |
msgid "You must give your option a title."
|
1530 |
msgstr "Du må være innlogget for å redigere profilen din."
|
1531 |
|
1532 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1533 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1534 |
msgid "You have entered an invalid meta-key format!"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1538 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1539 |
#, fuzzy
|
1540 |
msgid "You must enter a valid meta-key."
|
1541 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
1542 |
|
1543 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1544 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1545 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1546 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1547 |
msgid "That meta-key is already in use."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1551 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1552 |
msgid ""
|
1553 |
"There is already an avatar input-type. You can only have one avatar present."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1557 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1558 |
msgid ""
|
1559 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1560 |
"have one present."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1564 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1565 |
msgid "The textarea row value must be numeric."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1569 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1570 |
msgid "The maxlength attribute must be numeric."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1574 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1575 |
msgid "The value must be between 20 and 200!"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:343
|
1579 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
|
1580 |
-
msgid "The width component of the entered value must be numeric!"
|
1581 |
-
msgstr ""
|
1582 |
-
|
1583 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1584 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1585 |
-
msgid "The
|
1586 |
msgstr ""
|
1587 |
|
1588 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1589 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1590 |
-
msgid "The
|
1591 |
msgstr ""
|
1592 |
|
1593 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1594 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1595 |
-
msgid "The
|
1596 |
msgstr ""
|
1597 |
|
1598 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1599 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
|
|
|
|
|
|
|
|
|
|
1600 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1604 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1605 |
msgid "The entered avatar size must be numeric!"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1609 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1610 |
msgid "There was an error, please try again."
|
1611 |
msgstr ""
|
1612 |
|
@@ -1619,24 +1591,23 @@ msgid "the current user?"
|
|
1619 |
msgstr ""
|
1620 |
|
1621 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1622 |
-
|
1623 |
-
msgid "Your account on"
|
1624 |
-
msgstr ""
|
1625 |
-
|
1626 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1627 |
-
msgid "has been approved!"
|
1628 |
-
msgstr ""
|
1629 |
|
1630 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1631 |
-
|
|
|
1632 |
msgstr ""
|
1633 |
|
1634 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1635 |
-
|
1636 |
-
|
|
|
1637 |
|
1638 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1639 |
-
|
|
|
1640 |
msgstr ""
|
1641 |
|
1642 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
@@ -1668,11 +1639,8 @@ msgid "approve"
|
|
1668 |
msgstr ""
|
1669 |
|
1670 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1675 |
-
msgid "this user?"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
@@ -1925,6 +1893,11 @@ msgstr "Profile Builder"
|
|
1925 |
msgid "Don't have an account?"
|
1926 |
msgstr ""
|
1927 |
|
|
|
|
|
|
|
|
|
|
|
1928 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1929 |
#, fuzzy
|
1930 |
msgid "Lost Your Password?"
|
@@ -1936,15 +1909,15 @@ msgid "Login"
|
|
1936 |
msgstr "Logg inn"
|
1937 |
|
1938 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1939 |
-
msgid "After login redirect URL:"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1943 |
-
msgid "Register page URL (optional)"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1947 |
-
msgid "Password Recovery page URL (optional)"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
@@ -1955,21 +1928,21 @@ msgstr ""
|
|
1955 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1959 |
#, php-format
|
1960 |
msgid ""
|
1961 |
-
"Your <strong>Profile Builder
|
1962 |
-
"
|
1963 |
-
"
|
1964 |
-
"%sDismiss%s"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1968 |
#, php-format
|
1969 |
msgid ""
|
1970 |
-
"Your <strong>Profile Builder
|
1971 |
-
"%sRenew Your Licence%s to receive access to automatic updates and
|
1972 |
-
"support. %sPurchase one now%s %sDismiss%s"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
@@ -2038,6 +2011,26 @@ msgstr ""
|
|
2038 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2039 |
msgstr ""
|
2040 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2041 |
#~ msgid "Plugin Layout"
|
2042 |
#~ msgstr "Plugin layout"
|
2043 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-10 11:29+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-10 11:29+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"
|
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:83
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"The information size you were trying to submit was larger than %1$sb!<br/"
|
23 |
+
">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
|
24 |
+
"it was also larger than %2$sb no additional information is available.<br/"
|
25 |
+
">The user was NOT created!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
|
29 |
msgid "You must be logged in to edit your profile."
|
30 |
msgstr "Du må være innlogget for å redigere profilen din."
|
31 |
|
32 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
|
33 |
msgid "The avatar was successfully deleted."
|
34 |
msgstr "Bildet ditt er slettet."
|
35 |
|
36 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
|
37 |
+
#, fuzzy, php-format
|
38 |
+
msgid "The attachment \"%1$s\" was successfully deleted."
|
39 |
+
msgstr "Bildet ditt er slettet."
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
|
42 |
msgid "The changes have been successfully saved."
|
43 |
msgstr "Endringene er lagret"
|
44 |
|
45 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
46 |
#, fuzzy
|
47 |
msgid ""
|
48 |
"The email address you entered is already registered to a different user."
|
50 |
"E-postadressen du skrev inn er allerede registrert på en annen bruker.<br/> "
|
51 |
"E-postadressen var"
|
52 |
|
53 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
54 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
55 |
msgid "The email address was"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
59 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
60 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
61 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
62 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
63 |
msgid "NOT"
|
64 |
msgstr "IKKE"
|
65 |
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
67 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
68 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
69 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
70 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
71 |
#, fuzzy
|
72 |
msgid "updated along with the rest of the information."
|
73 |
msgstr "oppdatert sammen med resten av informasjonen."
|
74 |
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
76 |
#, fuzzy
|
77 |
msgid "The email address you entered is invalid."
|
78 |
msgstr "E-postadressen du tastet inn er ikke gyldig. <br/> E-postadressen var"
|
79 |
|
80 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
81 |
#, fuzzy
|
82 |
msgid "The passwords you entered do not match."
|
83 |
msgstr "Passordene du tastet inn stemmer ikke overens. <br/> Passordet var"
|
84 |
|
85 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
86 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
87 |
#, fuzzy
|
88 |
msgid "The password was"
|
89 |
msgstr "Nytt passord"
|
90 |
|
91 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
92 |
#, fuzzy
|
93 |
msgid "You didn't complete both password fields."
|
94 |
msgstr "Du fylte ut feil i et av passordfeltene!"
|
95 |
|
96 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
|
97 |
msgid "Your profile was NOT updated!"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
|
101 |
#, fuzzy
|
102 |
msgid "There was an error while trying to upload the following attachments:"
|
103 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
104 |
|
105 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
106 |
+
#, php-format
|
107 |
+
msgid ""
|
108 |
+
"Possible cause: the size was bigger than %1$sb. The listed attachements were "
|
109 |
+
"%2$sNOT%3$s updated along with the rest of the information."
|
110 |
+
msgstr ""
|
|
|
|
|
|
|
111 |
|
112 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
113 |
#, fuzzy
|
114 |
msgid "There was an error while trying to upload your avatar picture."
|
115 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
116 |
|
117 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
118 |
msgid "Possible cause: size/incorrect file-type."
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
122 |
msgid "The avatar was"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
|
126 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:897
|
127 |
#, fuzzy
|
128 |
msgid "There was an error while trying to upload the following attachment(s)"
|
129 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
130 |
|
131 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
|
132 |
+
#, php-format
|
133 |
+
msgid ""
|
134 |
+
"Only files with the following extension(s) can be uploaded: %1$s<br/>This "
|
135 |
+
"file was %2$sNOT%3$s updated along with the rest of the information."
|
|
|
|
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
|
139 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1277
|
140 |
msgid "Name"
|
141 |
msgstr "Navn"
|
142 |
|
143 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
|
144 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
|
145 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1298
|
|
|
146 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
147 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
|
148 |
msgid "Username"
|
149 |
msgstr "Brukernavn"
|
150 |
|
151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
|
152 |
#, fuzzy
|
153 |
msgid "Usernames cannot be changed."
|
154 |
msgstr "Brukernavn kan ikke endres."
|
155 |
|
156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
|
157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
|
158 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:726
|
159 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:746
|
160 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:796
|
161 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:817
|
162 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:835
|
163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:853
|
164 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:871
|
165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:892
|
166 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
167 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
168 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
177 |
msgid "This field is marked as required by the administrator."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
|
181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
|
182 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:729
|
183 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:749
|
184 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
|
185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
|
186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
|
187 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:855
|
188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
|
189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
|
190 |
msgid ""
|
191 |
"This field wasn't updated because you entered and empty string (It was "
|
192 |
"marked as required by the administrator."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1322
|
197 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
198 |
msgid "First Name"
|
199 |
msgstr "Fornavn"
|
200 |
|
201 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
|
202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1346
|
203 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
204 |
msgid "Last Name"
|
205 |
msgstr "Etternavn"
|
206 |
|
207 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
|
208 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1370
|
209 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
210 |
msgid "Nickname"
|
211 |
msgstr "Kallenavn"
|
212 |
|
213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:757
|
214 |
msgid "Display name publicly as"
|
215 |
msgstr "Vis mitt navn offentlig som"
|
216 |
|
217 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
|
218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1376
|
219 |
msgid "Contact Info"
|
220 |
msgstr "Kontaktinformasjon"
|
221 |
|
222 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
|
223 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1397
|
|
|
224 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
225 |
msgid "E-mail"
|
226 |
msgstr "E-post"
|
227 |
|
228 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
|
229 |
msgid "(required)"
|
230 |
msgstr "(påkrevd)"
|
231 |
|
232 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
|
233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1421
|
234 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
235 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
|
236 |
msgid "Website"
|
237 |
msgstr "Nettside"
|
238 |
|
239 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
|
240 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1445
|
241 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
242 |
msgid "AIM"
|
243 |
msgstr "AIM"
|
244 |
|
245 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
|
246 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1469
|
247 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
248 |
msgid "Yahoo IM"
|
249 |
msgstr "Yahoo IM"
|
250 |
|
251 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
|
252 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1493
|
253 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
254 |
msgid "Jabber / Google Talk"
|
255 |
msgstr "Jabber / Google Talk"
|
256 |
|
257 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
|
258 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1499
|
259 |
msgid "About Yourself"
|
260 |
msgstr "Om deg selv"
|
261 |
|
262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
|
263 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1520
|
264 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
265 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
|
266 |
msgid "Biographical Info"
|
267 |
msgstr "Litt om meg selv"
|
268 |
|
269 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
|
270 |
msgid "New Password"
|
271 |
msgstr "Nytt passord"
|
272 |
|
273 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
|
274 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
|
275 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
|
276 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
277 |
msgid "Repeat Password"
|
278 |
msgstr "Gjenta passord"
|
279 |
|
280 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
|
281 |
msgid "Update"
|
282 |
msgstr "Oppdater"
|
283 |
|
284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
285 |
+
#, fuzzy, php-format
|
286 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
287 |
msgstr "Du er logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
288 |
|
289 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
290 |
msgid "Log out of this account"
|
291 |
msgstr "Logg ut av denne kontoen"
|
292 |
|
293 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
294 |
#, fuzzy
|
295 |
msgid "Log out"
|
296 |
msgstr "Logg ut »"
|
297 |
|
298 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
|
299 |
+
#, fuzzy, php-format
|
300 |
+
msgid "You have successfully logged in as %1$s"
|
301 |
msgstr "Du har logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
302 |
|
303 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
304 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
305 |
+
#, php-format
|
306 |
msgid ""
|
307 |
"You will soon be redirected automatically. If you see this page for more "
|
308 |
+
"than 1 second, please click %1$s"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
312 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
313 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
315 |
msgid "here"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
320 |
msgid "ERROR:"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
324 |
msgid "The username field is empty"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
|
328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
|
329 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
|
330 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1553
|
331 |
msgid "Password"
|
332 |
msgstr "Passord"
|
333 |
|
334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
|
335 |
msgid "Log in"
|
336 |
msgstr "Logg inn"
|
337 |
|
338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
339 |
msgid "Remember me"
|
340 |
msgstr "Husk meg"
|
341 |
|
342 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:157
|
343 |
msgid "Lost password?"
|
344 |
msgstr "Mistet passordet?"
|
345 |
|
346 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
348 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
349 |
msgid "ERROR"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
353 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
354 |
msgid ""
|
355 |
"Your account has to be confirmed by an administrator before you can use the "
|
356 |
"\"Password Reset\" feature."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
|
360 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
|
361 |
+
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
msgid ""
|
363 |
+
"A password reset email has been sent to %1$s.<br/>Following the link sent in "
|
364 |
+
"the email address will reset the password."
|
365 |
msgstr ""
|
366 |
|
367 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
368 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
|
369 |
+
#, php-format
|
370 |
+
msgid ""
|
371 |
+
"Someone requested that the password be reset for the following account: <b>"
|
372 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
373 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
|
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
|
377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
|
378 |
+
#, php-format
|
379 |
+
msgid "Password Reset Feature from \"%1$s\""
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
383 |
+
#, fuzzy, php-format
|
384 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
|
|
385 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
386 |
|
387 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
388 |
#, fuzzy
|
389 |
msgid "The email address entered wasn't found in the database!"
|
390 |
msgstr "E-postadressen du tastet inn er ikke gyldig. <br/> E-postadressen var"
|
391 |
|
392 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
393 |
msgid "Please check that you entered the correct email address."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
397 |
+
#, fuzzy
|
398 |
+
msgid "There was an error while trying to send the activation link to "
|
399 |
+
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
400 |
+
|
401 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
402 |
msgid "The username 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:232
|
406 |
msgid "Please check that you entered the correct username."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
|
410 |
#, fuzzy
|
411 |
msgid "Your password has been successfully changed!"
|
412 |
msgstr "Endringene er lagret"
|
413 |
|
414 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
|
415 |
+
#, fuzzy, php-format
|
416 |
+
msgid "You have successfully reset your password to: %1$s"
|
417 |
+
msgstr "Du har logget inn som <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
418 |
|
419 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
|
420 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
|
421 |
+
#, fuzzy, php-format
|
422 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
423 |
msgstr "\" er slettet."
|
424 |
|
425 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
|
426 |
+
#, php-format
|
427 |
+
msgid ""
|
428 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
429 |
+
"her new password is:%2$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
|
433 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:894
|
434 |
msgid "The entered passwords don't match!"
|
435 |
msgstr "Passordene er ikke like"
|
436 |
|
437 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
|
438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
|
439 |
#, fuzzy
|
440 |
msgid "Reset Password"
|
441 |
msgstr "Gjenta passord"
|
442 |
|
443 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
444 |
msgid "Invalid key!"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
448 |
#, fuzzy
|
449 |
msgid "Please enter your username or email address."
|
450 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
451 |
|
452 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
453 |
msgid "You will receive a link to create a new password via email."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
457 |
#, fuzzy
|
458 |
msgid "Username or E-mail"
|
459 |
msgstr "Brukernavn"
|
460 |
|
461 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
462 |
#, fuzzy
|
463 |
msgid "Get New Password"
|
464 |
msgstr "Nytt passord"
|
506 |
msgid "There was an error while trying to activate the user."
|
507 |
msgstr "Det skjedde en feil når du prøvde å laste opp følgende vedlegg:<br/>"
|
508 |
|
509 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
|
510 |
+
#, php-format
|
511 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
515 |
msgid ""
|
516 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
517 |
"please remember that you need to approve this user before he/she can log in!"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
521 |
msgid "A new subscriber has (been) registered!"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:522
|
525 |
#, fuzzy
|
526 |
msgid "A new account has been created for you."
|
527 |
msgstr "En bruker for %1$s har blitt lagt til."
|
528 |
|
529 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
530 |
+
#, php-format
|
531 |
+
msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
|
|
|
|
|
|
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
|
|
|
|
|
|
|
|
|
|
|
535 |
msgid ""
|
536 |
"Before you can access your account, an administrator needs to approve it. "
|
537 |
"You will be notified via email."
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
|
|
|
|
|
|
|
|
|
541 |
msgid "A username is required for registration."
|
542 |
msgstr "Et brukernavn kreves for registrering."
|
543 |
|
544 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
|
545 |
msgid "Sorry, that username already exists!"
|
546 |
msgstr "Brukernavnet er allerede i bruk!"
|
547 |
|
548 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:887
|
549 |
msgid "You must enter a valid email address."
|
550 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
551 |
|
552 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:889
|
553 |
msgid "Sorry, that email address is already used!"
|
554 |
msgstr "Denne e-posten er allerede i bruk!"
|
555 |
|
556 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
|
557 |
msgid "You didn't complete one of the password-fields!"
|
558 |
msgstr "Du fylte ut feil i et av passordfeltene!"
|
559 |
|
560 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
561 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
565 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
566 |
#, fuzzy
|
567 |
msgid "The account was NOT created!"
|
568 |
msgstr "En bruker for %1$s har blitt lagt til."
|
569 |
|
570 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:908
|
571 |
msgid "You must agree to the terms and conditions before registering!"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
575 |
msgid "(Several required fields were left uncompleted)"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
579 |
msgid "This username is already reserved to be used soon."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
583 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
584 |
msgid "Please try a different one!"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
588 |
#, fuzzy
|
589 |
msgid "This email address is already reserved to be used soon."
|
590 |
msgstr "Denne e-posten er allerede i bruk!"
|
591 |
|
592 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
593 |
msgid "You are logged in as"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
597 |
msgid "You don't need another account."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
601 |
#, fuzzy
|
602 |
msgid "Log out of this account."
|
603 |
msgstr "Logg ut av denne kontoen"
|
604 |
|
605 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
606 |
#, fuzzy
|
607 |
msgid "Logout"
|
608 |
msgstr "Logg ut »"
|
609 |
|
610 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
611 |
+
#, php-format
|
612 |
+
msgid ""
|
613 |
+
"An email has been sent to %1$s with information on how to activate his/her "
|
614 |
+
"account."
|
|
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1172
|
618 |
+
#, fuzzy, php-format
|
619 |
+
msgid "A user account has been created for %1$s."
|
620 |
msgstr "En bruker for %1$s har blitt lagt til."
|
621 |
|
622 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
623 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
624 |
+
#, php-format
|
625 |
msgid ""
|
626 |
"You will soon be redirected automatically. If you see this page for more "
|
627 |
+
"than 3 seconds, please click %1$s.%2$s"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1197
|
631 |
msgid ""
|
632 |
"An email has been sent to you with information on how to activate your "
|
633 |
+
"account."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1201
|
637 |
+
#, fuzzy, php-format
|
638 |
+
msgid "Thank you for registering %1$s."
|
639 |
msgstr "Takk for at du registrerte deg, %1$s."
|
640 |
|
641 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1228
|
642 |
msgid "An error occured while trying to send the notification email."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
646 |
msgid "An email containing activation instructions was successfully sent."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
650 |
msgid "An email containing the username and password was successfully sent."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1254
|
654 |
msgid "Users can register themselves or you can manually create users here."
|
655 |
msgstr "Brukere kan registrere seg selv eller du kan gjøre det manuelt her."
|
656 |
|
657 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
658 |
msgid ""
|
659 |
"Users cannot currently register themselves, but you can manually create "
|
660 |
"users here."
|
662 |
"Brukere kan ikke registrere seg selv, men du som har "
|
663 |
"administratorrettigheter kan manuelt legge til brukere her. "
|
664 |
|
665 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
666 |
msgid "Only an administrator can add new users."
|
667 |
msgstr "Kun en administrator kan legge til nye brukere."
|
668 |
|
669 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1287
|
670 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1311
|
671 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1335
|
672 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1359
|
673 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1410
|
674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1434
|
675 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1458
|
676 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1482
|
677 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1509
|
678 |
msgid ""
|
679 |
"This field must be filled out before registering (It was marked as required "
|
680 |
"by the administrator)"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1308
|
684 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1332
|
685 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1356
|
686 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1383
|
687 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1407
|
688 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1431
|
689 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1455
|
690 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1479
|
691 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1506
|
692 |
msgid "This field is marked as required by the administrator"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1581
|
696 |
msgid "Anti-Spam"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1602
|
700 |
#, fuzzy
|
701 |
msgid "Send these credentials via email."
|
702 |
msgstr "Send denne informasjon om brukernavn og passord på e-post"
|
703 |
|
704 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
705 |
msgid "Add User"
|
706 |
msgstr "Legg til bruker"
|
707 |
|
708 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
709 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
710 |
msgid "Register"
|
711 |
msgstr "Registrer"
|
724 |
msgid "Visibility"
|
725 |
msgstr "Synlighet"
|
726 |
|
727 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
|
728 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
729 |
+
msgid "Default"
|
730 |
+
msgstr "Standard"
|
731 |
+
|
732 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
|
733 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
734 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
735 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
745 |
msgid "Show"
|
746 |
msgstr "Vis"
|
747 |
|
748 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
|
749 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
750 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
751 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
761 |
msgid "Hide"
|
762 |
msgstr "Skjul"
|
763 |
|
764 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
765 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
766 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
767 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
768 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
|
769 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
770 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
|
771 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
772 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
773 |
msgid "Save Changes"
|
899 |
msgid "shortcode."
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
903 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
904 |
+
msgid "NOTE:"
|
905 |
+
msgstr "MERK:"
|
906 |
+
|
907 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
908 |
msgid "this plugin only adds/removes fields in the front-end."
|
909 |
msgstr "denne pluginen legger kun til/fjerner felter på front-end"
|
951 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
952 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
953 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
954 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
|
955 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
|
956 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
|
957 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
|
958 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
|
959 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
|
960 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
|
961 |
msgid "Yes"
|
962 |
msgstr ""
|
963 |
|
975 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
976 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
977 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
978 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
|
979 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
|
980 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
|
981 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
|
982 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
|
983 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
|
984 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
|
985 |
#, fuzzy
|
986 |
msgid "No"
|
987 |
msgstr "Ingen"
|
1006 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1007 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1008 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1009 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
|
1010 |
msgid "General Settings"
|
1011 |
msgstr ""
|
1012 |
|
1015 |
msgid "Stylesheet Used on the Front-End:"
|
1016 |
msgstr "Styelsheet brukt:"
|
1017 |
|
|
|
|
|
|
|
|
|
1018 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1019 |
msgid "White"
|
1020 |
msgstr "Hvit"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1056 |
+
#, php-format
|
1057 |
msgid ""
|
1058 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1059 |
+
"Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
|
1060 |
+
"access to automatic updates and support. Need a license key? %3$sPurchase "
|
1061 |
+
"one now%4$s"
|
|
|
|
|
|
|
1062 |
msgstr ""
|
1063 |
|
1064 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1065 |
+
#, php-format
|
1066 |
msgid ""
|
1067 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1068 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1069 |
+
"priority support. %3$sPurchase one now%4$s"
|
|
|
|
|
|
|
|
|
1070 |
msgstr ""
|
1071 |
|
1072 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1126 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
|
1127 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
|
1128 |
msgid "Custom Redirects"
|
1129 |
msgstr ""
|
1130 |
|
1134 |
msgid "reCAPTCHA"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
|
1138 |
msgid "Redirects on custom page requests:"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
|
1142 |
msgid "Action"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
|
1146 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
|
1147 |
msgid "Redirect"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
|
1151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
|
1152 |
msgid "URL"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
|
1156 |
msgid "After Registration:"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
|
1160 |
msgid "After Login:"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
|
1164 |
#, fuzzy
|
1165 |
msgid "Recover Password (*)"
|
1166 |
msgstr "Gjenta passord"
|
1167 |
|
1168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
|
1169 |
msgid ""
|
1170 |
"When activated this feature will redirect the user on both the default "
|
1171 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1172 |
"Profile Builder on the front-end login page."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
|
1176 |
msgid "Redirects on default WordPress page requests:"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
|
1180 |
msgid "Requested WP Page"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
|
1184 |
+
msgid "Default WP Login Page (*)"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
|
1188 |
+
msgid "Default WP Logout Page (**)"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
|
1192 |
msgid "Default WP Register Page"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
|
1196 |
msgid "Default WP Dashboard (***)"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
|
1200 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
|
1204 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
|
1208 |
msgid ""
|
1209 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1210 |
"manage options)."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
|
|
1218 |
msgid "To use reCAPTCHA you must get an API key from"
|
1219 |
msgstr ""
|
1220 |
|
1259 |
msgid "Private Key:"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
|
1263 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1264 |
msgstr ""
|
1265 |
|
1275 |
"authors, visible to only the users currently logged in, you would use:"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1279 |
+
msgid ""
|
1280 |
+
"You can also create a userlisting page that displays users having a certain "
|
1281 |
+
"meta-value within a certain (extra) meta-field like so:"
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1285 |
+
msgid ""
|
1286 |
+
"Remember though, that the field-value combination must exist in the database."
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
|
1290 |
msgid "These settings are applied to the front-end userlisting."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:46
|
1294 |
msgid "Number of Users/Page: "
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:63
|
1298 |
msgid "Default Sorting Order: "
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
|
1302 |
msgid "\"All-Userlisting\" Template"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1306 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1307 |
msgid ""
|
1308 |
"With the userlisting templates you can customize the look, feel and "
|
1309 |
"information listed by the shortcode."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
|
1313 |
msgid ""
|
1314 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1315 |
"on each page access where the shortcode is present."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
|
1319 |
msgid "Avatar size: "
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:97
|
1323 |
msgid "Insert \"Sort By\" Field:"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:125
|
1327 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
|
1328 |
msgid "Insert \"User-Meta\" Field:"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:156
|
1332 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:262
|
1333 |
msgid "Insert Extra Functions:"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:171
|
1337 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:173
|
1341 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:276
|
1342 |
msgid ""
|
1343 |
"If you wish to use a default userlisting, just copy the following code and "
|
1344 |
"paste it in the textarea below:"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
|
1348 |
msgid "\"Single-Userlisting\" Template"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:219
|
1352 |
msgid ""
|
1353 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1354 |
"It's displayed when clickin on the \"more info\" link."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:274
|
1358 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1362 |
msgid ""
|
1363 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1367 |
msgid "You can find it in Profile Builder's menu."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
|
1371 |
#, fuzzy
|
1372 |
msgid "You need to be logged in to view the userlisting!"
|
1373 |
msgstr "Du må være innlogget for å redigere profilen din."
|
1374 |
|
1375 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
|
1376 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
|
1377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1378 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1328
|
1379 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1414
|
1380 |
msgid "Search Users by All Fields"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1384 |
msgid "Leave Blank and Press Search to List All Users"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
|
1388 |
msgid "Search"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
|
1392 |
#, fuzzy
|
1393 |
msgid "First/Lastname"
|
1394 |
msgstr "Fornavn"
|
1395 |
|
1396 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
|
1397 |
#, fuzzy
|
1398 |
msgid "Email"
|
1399 |
msgstr "E-post"
|
1400 |
|
1401 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
|
1402 |
msgid "Sign-up Date"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
|
1406 |
#, fuzzy
|
1407 |
msgid "Firstname"
|
1408 |
msgstr "Fornavn"
|
1409 |
|
1410 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
|
1411 |
#, fuzzy
|
1412 |
msgid "Lastname"
|
1413 |
msgstr "Etternavn"
|
1414 |
|
1415 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
|
1416 |
#, fuzzy
|
1417 |
msgid "Display Name"
|
1418 |
msgstr "Fornavn"
|
1419 |
|
1420 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
|
1421 |
msgid "Posts"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1425 |
msgid "Click here to see more information about this user"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1429 |
msgid "More..."
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
|
1433 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1434 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1435 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1436 |
#, fuzzy
|
1437 |
msgid "No uploaded attachment"
|
1438 |
msgstr "Vedlegget \""
|
1439 |
|
1440 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
|
1441 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1442 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1160
|
1443 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1444 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1445 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1448 |
msgid "Click to see the current attachment"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1452 |
msgid "Click here to go back"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1456 |
#, fuzzy
|
1457 |
msgid "Back"
|
1458 |
msgstr "Svart"
|
1459 |
|
1460 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1461 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1462 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1463 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1464 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1467 |
msgid "Current file"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
|
1471 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1472 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1473 |
msgid "Avatar"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1215
|
1477 |
msgid "No results found!"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1481 |
msgid "«« First"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1485 |
msgid "« Prev"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1489 |
#, fuzzy
|
1490 |
msgid "Next » "
|
1491 |
msgstr "Logg ut »"
|
1492 |
|
1493 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
|
1494 |
#, fuzzy
|
1495 |
msgid "Last »»"
|
1496 |
msgstr "Logg ut »"
|
1497 |
|
1498 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
|
1499 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
|
1500 |
#, fuzzy
|
1501 |
msgid "You must give your option a title."
|
1502 |
msgstr "Du må være innlogget for å redigere profilen din."
|
1503 |
|
1504 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
|
1505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
|
1506 |
msgid "You have entered an invalid meta-key format!"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
|
1510 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
|
1511 |
#, fuzzy
|
1512 |
msgid "You must enter a valid meta-key."
|
1513 |
msgstr "Du må skrive inn en gyldig e-postadresse"
|
1514 |
|
1515 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
|
1516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1517 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:447
|
1518 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
|
1519 |
msgid "That meta-key is already in use."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1523 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1524 |
msgid ""
|
1525 |
"There is already an avatar input-type. You can only have one avatar present."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:324
|
1529 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:474
|
1530 |
msgid ""
|
1531 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1532 |
"have one present."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:329
|
1536 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:479
|
1537 |
msgid "The textarea row value must be numeric."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1541 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1542 |
msgid "The maxlength attribute must be numeric."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1546 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1547 |
msgid "The value must be between 20 and 200!"
|
1548 |
msgstr ""
|
1549 |
|
|
|
|
|
|
|
|
|
|
|
1550 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1551 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1552 |
+
msgid "The width component of the entered value must be numeric!"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1556 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1557 |
+
msgid "The height component of the entered value must be numeric!"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1561 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1562 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1566 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1567 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
|
1571 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
|
1572 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
|
1576 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:506
|
1577 |
msgid "The entered avatar size must be numeric!"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:390
|
1581 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:566
|
1582 |
msgid "There was an error, please try again."
|
1583 |
msgstr ""
|
1584 |
|
1591 |
msgstr ""
|
1592 |
|
1593 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1594 |
+
#, fuzzy, php-format
|
1595 |
+
msgid "Your account on %1$s has been approved!"
|
1596 |
+
msgstr "En bruker for %1$s har blitt lagt til."
|
|
|
|
|
|
|
|
|
1597 |
|
1598 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1599 |
+
#, php-format
|
1600 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1604 |
+
#, fuzzy, php-format
|
1605 |
+
msgid "Your account on %1$s has been unapproved!"
|
1606 |
+
msgstr "En bruker for %1$s har blitt lagt til."
|
1607 |
|
1608 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1609 |
+
#, php-format
|
1610 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1639 |
msgstr ""
|
1640 |
|
1641 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1642 |
+
#, php-format
|
1643 |
+
msgid "Are you sure you want to %1$s this user?"
|
|
|
|
|
|
|
1644 |
msgstr ""
|
1645 |
|
1646 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1893 |
msgid "Don't have an account?"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1897 |
+
#, fuzzy
|
1898 |
+
msgid "Lost Password"
|
1899 |
+
msgstr "Mistet passordet?"
|
1900 |
+
|
1901 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1902 |
#, fuzzy
|
1903 |
msgid "Lost Your Password?"
|
1909 |
msgstr "Logg inn"
|
1910 |
|
1911 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1912 |
+
msgid "After login redirect URL (optional):"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1916 |
+
msgid "Register page URL (optional):"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1920 |
+
msgid "Password Recovery page URL (optional):"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1928 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
|
1932 |
#, php-format
|
1933 |
msgid ""
|
1934 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1935 |
+
"Please %1$sregister your copy%2$s of Profile Builder to receive access to "
|
1936 |
+
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
|
1937 |
+
"%5$sDismiss%6$s"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
|
1941 |
#, php-format
|
1942 |
msgid ""
|
1943 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1944 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1945 |
+
"priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
2011 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#, fuzzy
|
2015 |
+
#~ msgid "The attachment"
|
2016 |
+
#~ msgstr "Vedlegget \""
|
2017 |
+
|
2018 |
+
#, fuzzy
|
2019 |
+
#~ msgid "was successfully deleted."
|
2020 |
+
#~ msgstr "\" er slettet."
|
2021 |
+
|
2022 |
+
#, fuzzy
|
2023 |
+
#~ msgid "Possible cause: the size was bigger than"
|
2024 |
+
#~ msgstr "<br/>Sannsynlig årsak: størrelsen var større enn "
|
2025 |
+
|
2026 |
+
#, fuzzy
|
2027 |
+
#~ msgid "The listed attachements were"
|
2028 |
+
#~ msgstr "b.<br/>Vedleggene ble"
|
2029 |
+
|
2030 |
+
#, fuzzy
|
2031 |
+
#~ msgid "and password:"
|
2032 |
+
#~ msgstr "Passord"
|
2033 |
+
|
2034 |
#~ msgid "Plugin Layout"
|
2035 |
#~ msgstr "Plugin layout"
|
2036 |
|
translation/profilebuilder-nl_NL.mo
CHANGED
Binary file
|
translation/profilebuilder-nl_NL.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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,193 +15,165 @@ msgstr ""
|
|
15 |
"X-Poedit-SearchPath-0: C:\\Users\\Gabriel\\Desktop\\test\\profile-builder-"
|
16 |
"pro\n"
|
17 |
|
18 |
-
|
19 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.
|
20 |
-
|
21 |
-
msgid "
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
msgid "This is usually caused by a large file(s) trying to be uploaded."
|
28 |
-
msgstr "Dit gebeurt meestal omdat u een te groot bestand probeert te uploaden."
|
29 |
-
|
30 |
-
# @ profilebuilder
|
31 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
32 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
33 |
-
msgid "Since it was also larger than"
|
34 |
-
msgstr "Omdat het ook groter was dan"
|
35 |
-
|
36 |
-
# @ profilebuilder
|
37 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:87
|
38 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:592
|
39 |
-
msgid "no additional information is available."
|
40 |
-
msgstr "geen extra informatie beschikbaar."
|
41 |
|
42 |
# @ profilebuilder
|
43 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
44 |
msgid "You must be logged in to edit your profile."
|
45 |
msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
|
46 |
|
47 |
# @ profilebuilder
|
48 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
49 |
msgid "The avatar was successfully deleted."
|
50 |
msgstr "De avatar is succesvol verwijderd."
|
51 |
|
52 |
# @ profilebuilder
|
53 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
# @ profilebuilder
|
58 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:576
|
59 |
-
msgid "was successfully deleted."
|
60 |
-
msgstr "is succesvol verwijderd."
|
61 |
|
62 |
# @ profilebuilder
|
63 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
64 |
msgid "The changes have been successfully saved."
|
65 |
msgstr "De wijzigingen zijn succesvol opgeslagen."
|
66 |
|
67 |
# @ profilebuilder
|
68 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
69 |
msgid ""
|
70 |
"The email address you entered is already registered to a different user."
|
71 |
msgstr ""
|
72 |
"Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
|
73 |
|
74 |
# @ profilebuilder
|
75 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
76 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
77 |
msgid "The email address was"
|
78 |
msgstr "E-mail adres was"
|
79 |
|
80 |
# @ profilebuilder
|
81 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
82 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
83 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
84 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
85 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
86 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
87 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
88 |
msgid "NOT"
|
89 |
msgstr "NIET"
|
90 |
|
91 |
# @ profilebuilder
|
92 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
93 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
94 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
95 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
96 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
97 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:660
|
98 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
99 |
msgid "updated along with the rest of the information."
|
100 |
msgstr "ge-update samen met de rest van de gegevens."
|
101 |
|
102 |
# @ profilebuilder
|
103 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
104 |
msgid "The email address you entered is invalid."
|
105 |
msgstr "Het ingetoetste e-mail adres is ongeldig."
|
106 |
|
107 |
# @ profilebuilder
|
108 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
109 |
msgid "The passwords you entered do not match."
|
110 |
msgstr "De ingetoetste wachtwoorden zijn niet gelijk."
|
111 |
|
112 |
# @ profilebuilder
|
113 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
114 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
115 |
msgid "The password was"
|
116 |
msgstr "Wachtwoord was"
|
117 |
|
118 |
# @ profilebuilder
|
119 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
120 |
msgid "You didn't complete both password fields."
|
121 |
msgstr "U heeft beide wachtwoord velden niet ingevuld."
|
122 |
|
123 |
# @ profilebuilder
|
124 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
125 |
msgid "Your profile was NOT updated!"
|
126 |
msgstr "Uw profiel is NIET ge-update!"
|
127 |
|
128 |
# @ profilebuilder
|
129 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
130 |
msgid "There was an error while trying to upload the following attachments:"
|
131 |
msgstr "Foutmelding tijdens het uploaden van de volgende attachments:"
|
132 |
|
133 |
-
|
134 |
-
|
135 |
-
msgid "
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
140 |
-
msgid "The listed attachements were"
|
141 |
-
msgstr "De vermelde attachments waren"
|
142 |
|
143 |
# @ profilebuilder
|
144 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
145 |
msgid "There was an error while trying to upload your avatar picture."
|
146 |
msgstr "Foutmelding tijdens het uploaden van uw avatar afbeelding."
|
147 |
|
148 |
# @ profilebuilder
|
149 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
150 |
msgid "Possible cause: size/incorrect file-type."
|
151 |
msgstr "Mogelijke oorzaak: grootte/verkeerd bestand-type."
|
152 |
|
153 |
# @ profilebuilder
|
154 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
155 |
msgid "The avatar was"
|
156 |
msgstr "De avatar is"
|
157 |
|
158 |
# @ profilebuilder
|
159 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
160 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
161 |
#, fuzzy
|
162 |
msgid "There was an error while trying to upload the following attachment(s)"
|
163 |
msgstr "Foutmelding tijdens het uploaden van de volgende attachments:"
|
164 |
|
165 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
166 |
-
|
167 |
-
msgid "
|
168 |
-
|
169 |
-
|
170 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
171 |
-
msgid "This file was"
|
172 |
msgstr ""
|
173 |
|
174 |
# @ profilebuilder
|
175 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
176 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
177 |
msgid "Name"
|
178 |
msgstr "Naam"
|
179 |
|
180 |
# @ profilebuilder
|
181 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
182 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
183 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
184 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
185 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
186 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
187 |
msgid "Username"
|
188 |
msgstr "Gebruikersnaam"
|
189 |
|
190 |
# @ profilebuilder
|
191 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
192 |
msgid "Usernames cannot be changed."
|
193 |
msgstr "Gebruikersnaam kan niet gewijzigd worden."
|
194 |
|
195 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
196 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
197 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
198 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
199 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
200 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
201 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
202 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
203 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
204 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
205 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
206 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
207 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
@@ -216,207 +188,209 @@ msgstr "Gebruikersnaam kan niet gewijzigd worden."
|
|
216 |
msgid "This field is marked as required by the administrator."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
220 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
221 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
222 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
223 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
224 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
225 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
226 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
227 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
228 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
229 |
msgid ""
|
230 |
"This field wasn't updated because you entered and empty string (It was "
|
231 |
"marked as required by the administrator."
|
232 |
msgstr ""
|
233 |
|
234 |
# @ profilebuilder
|
235 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
236 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
237 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
238 |
msgid "First Name"
|
239 |
msgstr "Voornaam"
|
240 |
|
241 |
# @ profilebuilder
|
242 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
243 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
244 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
245 |
msgid "Last Name"
|
246 |
msgstr "Achternaam"
|
247 |
|
248 |
# @ profilebuilder
|
249 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
250 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
251 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
252 |
msgid "Nickname"
|
253 |
msgstr "Bijnaam"
|
254 |
|
255 |
# @ profilebuilder
|
256 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
257 |
msgid "Display name publicly as"
|
258 |
msgstr "Naam publiekelijk tonen als"
|
259 |
|
260 |
# @ profilebuilder
|
261 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
262 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
263 |
msgid "Contact Info"
|
264 |
msgstr "Contact Informatie"
|
265 |
|
266 |
# @ profilebuilder
|
267 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
268 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
269 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
270 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
271 |
msgid "E-mail"
|
272 |
msgstr "E-mail"
|
273 |
|
274 |
# @ profilebuilder
|
275 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
276 |
msgid "(required)"
|
277 |
msgstr "(verplicht)"
|
278 |
|
279 |
# @ profilebuilder
|
280 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
281 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
282 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
283 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
284 |
msgid "Website"
|
285 |
msgstr "Website"
|
286 |
|
287 |
# @ profilebuilder
|
288 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
289 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
290 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
291 |
msgid "AIM"
|
292 |
msgstr "AIM"
|
293 |
|
294 |
# @ profilebuilder
|
295 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
296 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
297 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
298 |
msgid "Yahoo IM"
|
299 |
msgstr "Yahoo IM"
|
300 |
|
301 |
# @ profilebuilder
|
302 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
303 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
304 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
305 |
msgid "Jabber / Google Talk"
|
306 |
msgstr "Jabber / Google Talk"
|
307 |
|
308 |
# @ profilebuilder
|
309 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
310 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
311 |
msgid "About Yourself"
|
312 |
msgstr "Over Jezelf"
|
313 |
|
314 |
# @ profilebuilder
|
315 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
316 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
317 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
318 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
319 |
msgid "Biographical Info"
|
320 |
msgstr "Biografie"
|
321 |
|
322 |
# @ profilebuilder
|
323 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
324 |
msgid "New Password"
|
325 |
msgstr "Nieuw Wachtwoord"
|
326 |
|
327 |
# @ profilebuilder
|
328 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
329 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
330 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
331 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
332 |
msgid "Repeat Password"
|
333 |
msgstr "Herhaal Wachtwoord"
|
334 |
|
335 |
# @ profilebuilder
|
336 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
337 |
msgid "Update"
|
338 |
msgstr "Bijwerken"
|
339 |
|
340 |
# @ profilebuilder
|
341 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
342 |
-
|
|
|
343 |
msgstr "U bent momenteel ingelogd als"
|
344 |
|
345 |
# @ profilebuilder
|
346 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
347 |
msgid "Log out of this account"
|
348 |
msgstr "Gebruiker uitloggen"
|
349 |
|
350 |
# @ profilebuilder
|
351 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
352 |
msgid "Log out"
|
353 |
msgstr "Uitloggen"
|
354 |
|
355 |
# @ profilebuilder
|
356 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
357 |
-
|
|
|
358 |
msgstr "U bent succesvol ingelogd als"
|
359 |
|
360 |
# @ profilebuilder
|
361 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
362 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
363 |
msgid ""
|
364 |
"You will soon be redirected automatically. If you see this page for more "
|
365 |
-
"than 1 second, please click"
|
366 |
msgstr ""
|
367 |
"U wordt automatisch doorgestuurd. Als u deze pagina meer dan 1 seconde ziet, "
|
368 |
"klik svp op"
|
369 |
|
370 |
# @ profilebuilder
|
371 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
372 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
373 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
374 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
375 |
msgid "here"
|
376 |
msgstr "hier"
|
377 |
|
378 |
# @ profilebuilder
|
379 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
380 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
381 |
msgid "ERROR:"
|
382 |
msgstr "FOUT:"
|
383 |
|
384 |
# @ profilebuilder
|
385 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
386 |
msgid "The username field is empty"
|
387 |
msgstr "Veld voor gebruikersnaam is leeg"
|
388 |
|
389 |
# @ profilebuilder
|
390 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
391 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
392 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
393 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
394 |
msgid "Password"
|
395 |
msgstr "Wachtwoord"
|
396 |
|
397 |
# @ profilebuilder
|
398 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
399 |
msgid "Log in"
|
400 |
msgstr "Inloggen"
|
401 |
|
402 |
# @ profilebuilder
|
403 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
404 |
msgid "Remember me"
|
405 |
msgstr "Onthoud gegevens"
|
406 |
|
407 |
# @ profilebuilder
|
408 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
409 |
msgid "Lost password?"
|
410 |
msgstr "Wachtwoord vergeten?"
|
411 |
|
412 |
# @ profilebuilder
|
413 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
414 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
415 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
416 |
msgid "ERROR"
|
417 |
msgstr "FOUT"
|
418 |
|
419 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
420 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
421 |
msgid ""
|
422 |
"Your account has to be confirmed by an administrator before you can use the "
|
@@ -424,136 +398,120 @@ msgid ""
|
|
424 |
msgstr ""
|
425 |
|
426 |
# @ profilebuilder
|
427 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
428 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
429 |
-
|
430 |
-
msgstr "E-mail over wachtwoord resetten is gestuurd naar"
|
431 |
-
|
432 |
-
# @ profilebuilder
|
433 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
434 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
435 |
-
msgid "Following the link sent in the email address will reset the password."
|
436 |
-
msgstr "Via de link in de gestuurde e-mail wordt uw wachtwoord ge-reset."
|
437 |
-
|
438 |
-
# @ profilebuilder
|
439 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
440 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
441 |
msgid ""
|
442 |
-
"
|
443 |
-
|
|
|
444 |
|
445 |
-
# @ profilebuilder
|
446 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
447 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
448 |
-
|
|
|
|
|
|
|
|
|
449 |
msgstr ""
|
450 |
-
"Als dit een fout was, kunt u deze e-mail negeren. Er zal niets gebeuren."
|
451 |
-
|
452 |
-
# @ profilebuilder
|
453 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:166
|
454 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:217
|
455 |
-
msgid "To reset your password, visit the following link:"
|
456 |
-
msgstr "Om uw wachtwoord te resetten, ga naar de link:"
|
457 |
|
458 |
# @ profilebuilder
|
459 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
460 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
461 |
-
|
|
|
462 |
msgstr "Functie om wachtwoord te resetten van"
|
463 |
|
464 |
# @ profilebuilder
|
465 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
466 |
-
|
467 |
-
msgid "There was an error while trying to send the activation link to "
|
468 |
msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
|
469 |
|
470 |
# @ profilebuilder
|
471 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
472 |
msgid "The email address entered wasn't found in the database!"
|
473 |
msgstr "Het ingetoetste e-mail adres is niet in de database gevonden!"
|
474 |
|
475 |
# @ profilebuilder
|
476 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
477 |
msgid "Please check that you entered the correct email address."
|
478 |
msgstr "Check svp of u het juiste e-mail adres heeft ingetoetst."
|
479 |
|
480 |
# @ profilebuilder
|
481 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
|
|
|
|
|
|
|
|
|
|
482 |
msgid "The username entered wasn't found in the database!"
|
483 |
msgstr "De ingetoetste gebruikersnaam is niet in de database gevonden!"
|
484 |
|
485 |
# @ profilebuilder
|
486 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
487 |
msgid "Please check that you entered the correct username."
|
488 |
msgstr "Check svp of u de juiste gebuikersnaam heeft ingetoetst."
|
489 |
|
490 |
# @ profilebuilder
|
491 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
492 |
msgid "Your password has been successfully changed!"
|
493 |
msgstr "Uw wachtwoord is succesvol gewijzigd!"
|
494 |
|
495 |
# @ profilebuilder
|
496 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
497 |
-
#, fuzzy
|
498 |
-
msgid "You have successfully reset your password to:"
|
499 |
msgstr "U heeft uw wachtwoord succesvol ge-reset"
|
500 |
|
501 |
# @ profilebuilder
|
502 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
503 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
504 |
-
|
|
|
505 |
msgstr "Wachtwoord is succesvol ge-reset voor"
|
506 |
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
# @ default
|
514 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
515 |
-
msgid "has requested a password change via the password reset feature."
|
516 |
msgstr ""
|
517 |
|
518 |
# @ profilebuilder
|
519 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
520 |
-
|
521 |
-
msgstr "Zijn/haar nieuwe wachtwoord is:"
|
522 |
-
|
523 |
-
# @ profilebuilder
|
524 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:296
|
525 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
|
526 |
msgid "The entered passwords don't match!"
|
527 |
msgstr "De ingevoerde wachtwoorden komen niet overeen!"
|
528 |
|
529 |
# @ profilebuilder
|
530 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
531 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
532 |
msgid "Reset Password"
|
533 |
msgstr "Reset wachtwoord"
|
534 |
|
535 |
# @ profilebuilder
|
536 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
537 |
msgid "Invalid key!"
|
538 |
msgstr "Ongeldige sleutel!"
|
539 |
|
540 |
# @ profilebuilder
|
541 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
542 |
msgid "Please enter your username or email address."
|
543 |
msgstr "Svp uw gebruikersnaam of e-mail adres intypen."
|
544 |
|
545 |
# @ profilebuilder
|
546 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
547 |
msgid "You will receive a link to create a new password via email."
|
548 |
msgstr "U zult een e-mail ontvangen om nieuw wachtwoord aan te maken."
|
549 |
|
550 |
# @ profilebuilder
|
551 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
552 |
msgid "Username or E-mail"
|
553 |
msgstr "Gebruikersnaam of e-mail adres"
|
554 |
|
555 |
# @ profilebuilder
|
556 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
557 |
msgid "Get New Password"
|
558 |
msgstr "Nieuw wachtwoord"
|
559 |
|
@@ -607,195 +565,184 @@ msgstr "De avatar is succesvol verwijderd."
|
|
607 |
msgid "There was an error while trying to activate the user."
|
608 |
msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
|
609 |
|
610 |
-
|
611 |
-
|
612 |
-
msgid "New subscriber on"
|
613 |
-
msgstr "
|
614 |
|
615 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
616 |
msgid ""
|
617 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
618 |
"please remember that you need to approve this user before he/she can log in!"
|
619 |
msgstr ""
|
620 |
|
621 |
# @ default
|
622 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
623 |
msgid "A new subscriber has (been) registered!"
|
624 |
msgstr ""
|
625 |
|
626 |
# @ profilebuilder
|
627 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
628 |
#, fuzzy
|
629 |
msgid "A new account has been created for you."
|
630 |
msgstr "Gebruikers account is gemaakt voor"
|
631 |
|
632 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
637 |
-
msgid "Your username is:"
|
638 |
msgstr ""
|
639 |
|
640 |
-
|
641 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
642 |
-
#, fuzzy
|
643 |
-
msgid "and password:"
|
644 |
-
msgstr "Wachtwoord"
|
645 |
-
|
646 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
647 |
msgid ""
|
648 |
"Before you can access your account, an administrator needs to approve it. "
|
649 |
"You will be notified via email."
|
650 |
msgstr ""
|
651 |
|
652 |
# @ profilebuilder
|
653 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
654 |
-
msgid "The user was NOT created!"
|
655 |
-
msgstr "Gebruikers is NIET aangemaakt!"
|
656 |
-
|
657 |
-
# @ profilebuilder
|
658 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
659 |
msgid "A username is required for registration."
|
660 |
msgstr "Een gebruikersnaam is vereist voor registratie."
|
661 |
|
662 |
# @ profilebuilder
|
663 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
664 |
msgid "Sorry, that username already exists!"
|
665 |
msgstr "Sorry, die gebruikersnaam bestaat al!"
|
666 |
|
667 |
# @ profilebuilder
|
668 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
669 |
msgid "You must enter a valid email address."
|
670 |
msgstr "U moet een geldig e-mail adres invullen."
|
671 |
|
672 |
# @ profilebuilder
|
673 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
674 |
msgid "Sorry, that email address is already used!"
|
675 |
msgstr "Sorry, dat e-mail adres is al in gebruik!"
|
676 |
|
677 |
# @ profilebuilder
|
678 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
679 |
msgid "You didn't complete one of the password-fields!"
|
680 |
msgstr "Je hebt een van de wachtwoord-velden niet volledig ingevuld!"
|
681 |
|
|
|
|
|
|
|
|
|
682 |
# @ profilebuilder
|
683 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
684 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
685 |
msgid "The account was NOT created!"
|
686 |
msgstr "Account is NIET aangemaakt!"
|
687 |
|
688 |
# @ profilebuilder
|
689 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
690 |
msgid "You must agree to the terms and conditions before registering!"
|
691 |
msgstr "U moet akkoord gaan met de voorwaarden voordat u registreert!"
|
692 |
|
693 |
# @ profilebuilder
|
694 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
695 |
msgid "(Several required fields were left uncompleted)"
|
696 |
msgstr "(Diverse verplichte velden zijn onvolledig ingevuld)"
|
697 |
|
698 |
# @ profilebuilder
|
699 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
700 |
#, fuzzy
|
701 |
msgid "This username is already reserved to be used soon."
|
702 |
msgstr ""
|
703 |
"Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
|
704 |
|
705 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
706 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
707 |
msgid "Please try a different one!"
|
708 |
msgstr ""
|
709 |
|
710 |
# @ profilebuilder
|
711 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
712 |
#, fuzzy
|
713 |
msgid "This email address is already reserved to be used soon."
|
714 |
msgstr ""
|
715 |
"Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
|
716 |
|
717 |
# @ profilebuilder
|
718 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
719 |
msgid "You are logged in as"
|
720 |
msgstr "U bent ingelogd als"
|
721 |
|
722 |
# @ profilebuilder
|
723 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
724 |
msgid "You don't need another account."
|
725 |
msgstr "U heeft geen ander account nodig"
|
726 |
|
727 |
# @ profilebuilder
|
728 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
729 |
msgid "Log out of this account."
|
730 |
msgstr "Uitloggen van dit account"
|
731 |
|
732 |
# @ profilebuilder
|
733 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
734 |
msgid "Logout"
|
735 |
msgstr "Uitloggen"
|
736 |
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1169
|
744 |
-
msgid "with information on how to activate his/her account"
|
745 |
msgstr ""
|
746 |
|
747 |
# @ profilebuilder
|
748 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
749 |
-
|
|
|
750 |
msgstr "Gebruikers account is gemaakt voor"
|
751 |
|
752 |
# @ profilebuilder
|
753 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
754 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
755 |
-
#, fuzzy
|
756 |
msgid ""
|
757 |
"You will soon be redirected automatically. If you see this page for more "
|
758 |
-
"than 3 seconds, please click"
|
759 |
msgstr ""
|
760 |
"U wordt automatisch doorgestuurd. Als u deze pagina meer dan 1 seconde ziet, "
|
761 |
"klik svp op"
|
762 |
|
763 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
764 |
msgid ""
|
765 |
"An email has been sent to you with information on how to activate your "
|
766 |
-
"account"
|
767 |
msgstr ""
|
768 |
|
769 |
# @ profilebuilder
|
770 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
771 |
-
|
|
|
772 |
msgstr "Bedankt voor registreren"
|
773 |
|
774 |
# @ profilebuilder
|
775 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
776 |
msgid "An error occured while trying to send the notification email."
|
777 |
msgstr "Fout opgetreden tijdens verzenden van notificatie e-mail."
|
778 |
|
779 |
# @ profilebuilder
|
780 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
781 |
#, fuzzy
|
782 |
msgid "An email containing activation instructions was successfully sent."
|
783 |
msgstr "Een e-mail met gebruikersnaam en wachtwoord is succesvol verzonden."
|
784 |
|
785 |
# @ profilebuilder
|
786 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
787 |
msgid "An email containing the username and password was successfully sent."
|
788 |
msgstr "Een e-mail met gebruikersnaam en wachtwoord is succesvol verzonden."
|
789 |
|
790 |
# @ profilebuilder
|
791 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
792 |
msgid "Users can register themselves or you can manually create users here."
|
793 |
msgstr ""
|
794 |
"Gebruikers kunnen zich registreren of je kunt hier handmatig gebruikers "
|
795 |
"aanmaken."
|
796 |
|
797 |
# @ profilebuilder
|
798 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
799 |
msgid ""
|
800 |
"Users cannot currently register themselves, but you can manually create "
|
801 |
"users here."
|
@@ -804,52 +751,52 @@ msgstr ""
|
|
804 |
"handmatig gebruikers aanmaken."
|
805 |
|
806 |
# @ profilebuilder
|
807 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
808 |
msgid "Only an administrator can add new users."
|
809 |
msgstr "Alleen een beheerder kan nieuwe gebruikers toevoegen."
|
810 |
|
811 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
812 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
813 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
814 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
815 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
816 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
817 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
818 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
819 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
820 |
msgid ""
|
821 |
"This field must be filled out before registering (It was marked as required "
|
822 |
"by the administrator)"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
826 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
827 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
828 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
829 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
830 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
831 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
832 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
833 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
834 |
msgid "This field is marked as required by the administrator"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
838 |
msgid "Anti-Spam"
|
839 |
msgstr ""
|
840 |
|
841 |
# @ profilebuilder
|
842 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
843 |
msgid "Send these credentials via email."
|
844 |
msgstr "Verstuur deze gegevens via e-mail."
|
845 |
|
846 |
# @ profilebuilder
|
847 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
848 |
msgid "Add User"
|
849 |
msgstr "Gebruiker Toevoegen"
|
850 |
|
851 |
# @ profilebuilder
|
852 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
853 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
854 |
msgid "Register"
|
855 |
msgstr "Registreren"
|
@@ -872,7 +819,13 @@ msgid "Visibility"
|
|
872 |
msgstr "Zichtbaarheid"
|
873 |
|
874 |
# @ profilebuilder
|
875 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
876 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
877 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
878 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
@@ -889,7 +842,7 @@ msgid "Show"
|
|
889 |
msgstr "Tonen"
|
890 |
|
891 |
# @ profilebuilder
|
892 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
893 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
894 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
895 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
@@ -905,28 +858,14 @@ msgstr "Tonen"
|
|
905 |
msgid "Hide"
|
906 |
msgstr "Verbergen"
|
907 |
|
908 |
-
# @ profilebuilder
|
909 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:40
|
910 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
911 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
912 |
-
msgid "NOTE:"
|
913 |
-
msgstr "LET OP:"
|
914 |
-
|
915 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:41
|
916 |
-
msgid ""
|
917 |
-
"If you added new roles (via another plugin) <u>after</u> Profile Builder was "
|
918 |
-
"activated, please reactivate it, since the roles are initialized during "
|
919 |
-
"plugin activation."
|
920 |
-
msgstr ""
|
921 |
-
|
922 |
# @ default
|
923 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
924 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
925 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
926 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
927 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
928 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
929 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
930 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
931 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
932 |
msgid "Save Changes"
|
@@ -1078,6 +1017,12 @@ msgstr ""
|
|
1078 |
msgid "shortcode."
|
1079 |
msgstr ""
|
1080 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1081 |
# @ profilebuilder
|
1082 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
1083 |
msgid "this plugin only adds/removes fields in the front-end."
|
@@ -1138,7 +1083,13 @@ msgstr "Naam:"
|
|
1138 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
1139 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
1140 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
1141 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1142 |
msgid "Yes"
|
1143 |
msgstr "Ja"
|
1144 |
|
@@ -1157,7 +1108,13 @@ msgstr "Ja"
|
|
1157 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1158 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1159 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1160 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1161 |
msgid "No"
|
1162 |
msgstr "Nee"
|
1163 |
|
@@ -1185,7 +1142,7 @@ msgstr "Nieuw Wachtwoord"
|
|
1185 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1186 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1187 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1188 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1189 |
msgid "General Settings"
|
1190 |
msgstr ""
|
1191 |
|
@@ -1195,11 +1152,6 @@ msgstr ""
|
|
1195 |
msgid "Stylesheet Used on the Front-End:"
|
1196 |
msgstr "Gebruikte stylesheet:"
|
1197 |
|
1198 |
-
# @ profilebuilder
|
1199 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
1200 |
-
msgid "Default"
|
1201 |
-
msgstr "Standaard"
|
1202 |
-
|
1203 |
# @ profilebuilder
|
1204 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1205 |
msgid "White"
|
@@ -1241,25 +1193,20 @@ msgid ""
|
|
1241 |
msgstr ""
|
1242 |
|
1243 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
|
|
1244 |
msgid ""
|
1245 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1246 |
-
"Please <
|
1247 |
-
"
|
1248 |
-
"
|
1249 |
-
"www.cozmoslabs.com/wordpress-profile-builder/?"
|
1250 |
-
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' "
|
1251 |
-
"class='button-primary'>Purchase one now</a>"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
|
|
1255 |
msgid ""
|
1256 |
-
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please
|
1257 |
-
"
|
1258 |
-
"
|
1259 |
-
"a> to receive access to automatic updates and priority support. <a "
|
1260 |
-
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1261 |
-
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' "
|
1262 |
-
"class='button-primary'>Purchase one now</a>"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
# @ profilebuilder
|
@@ -1321,7 +1268,8 @@ msgid "Inactive"
|
|
1321 |
msgstr ""
|
1322 |
|
1323 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1324 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1325 |
msgid "Custom Redirects"
|
1326 |
msgstr ""
|
1327 |
|
@@ -1331,78 +1279,80 @@ msgstr ""
|
|
1331 |
msgid "reCAPTCHA"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1335 |
msgid "Redirects on custom page requests:"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1339 |
msgid "Action"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
# @ profilebuilder
|
1343 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1344 |
#, fuzzy
|
1345 |
msgid "Redirect"
|
1346 |
msgstr "Verplicht"
|
1347 |
|
1348 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1349 |
msgid "URL"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1353 |
msgid "After Registration:"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1357 |
msgid "After Login:"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
# @ profilebuilder
|
1361 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1362 |
#, fuzzy
|
1363 |
msgid "Recover Password (*)"
|
1364 |
msgstr "Reset wachtwoord"
|
1365 |
|
1366 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1367 |
msgid ""
|
1368 |
"When activated this feature will redirect the user on both the default "
|
1369 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1370 |
"Profile Builder on the front-end login page."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1374 |
msgid "Redirects on default WordPress page requests:"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1378 |
msgid "Requested WP Page"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1382 |
-
msgid "Default WP Login Page(*)"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1386 |
-
msgid "Default WP Logout Page(**)"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1390 |
msgid "Default WP Register Page"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1394 |
msgid "Default WP Dashboard (***)"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1398 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1402 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1406 |
msgid ""
|
1407 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1408 |
"manage options)."
|
@@ -1413,7 +1363,6 @@ msgid "Could not open socket!"
|
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
1416 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:120
|
1417 |
msgid "To use reCAPTCHA you must get an API key from"
|
1418 |
msgstr ""
|
1419 |
|
@@ -1458,7 +1407,7 @@ msgstr ""
|
|
1458 |
msgid "Private Key:"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:
|
1462 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1463 |
msgstr ""
|
1464 |
|
@@ -1474,167 +1423,178 @@ msgid ""
|
|
1474 |
"authors, visible to only the users currently logged in, you would use:"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1478 |
msgid "These settings are applied to the front-end userlisting."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1482 |
msgid "Number of Users/Page: "
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1486 |
msgid "Default Sorting Order: "
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1490 |
msgid "\"All-Userlisting\" Template"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1494 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1495 |
msgid ""
|
1496 |
"With the userlisting templates you can customize the look, feel and "
|
1497 |
"information listed by the shortcode."
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1501 |
msgid ""
|
1502 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1503 |
"on each page access where the shortcode is present."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1507 |
msgid "Avatar size: "
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1511 |
msgid "Insert \"Sort By\" Field:"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1515 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1516 |
msgid "Insert \"User-Meta\" Field:"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1520 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1521 |
msgid "Insert Extra Functions:"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1525 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1529 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1530 |
msgid ""
|
1531 |
"If you wish to use a default userlisting, just copy the following code and "
|
1532 |
"paste it in the textarea below:"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1536 |
msgid "\"Single-Userlisting\" Template"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1540 |
msgid ""
|
1541 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1542 |
"It's displayed when clickin on the \"more info\" link."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1546 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1550 |
msgid ""
|
1551 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1555 |
msgid "You can find it in Profile Builder's menu."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
# @ profilebuilder
|
1559 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1560 |
#, fuzzy
|
1561 |
msgid "You need to be logged in to view the userlisting!"
|
1562 |
msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
|
1563 |
|
1564 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1565 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1566 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1567 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1568 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1569 |
msgid "Search Users by All Fields"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1573 |
msgid "Leave Blank and Press Search to List All Users"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1577 |
msgid "Search"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
# @ profilebuilder
|
1581 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1582 |
#, fuzzy
|
1583 |
msgid "First/Lastname"
|
1584 |
msgstr "Voornaam"
|
1585 |
|
1586 |
# @ profilebuilder
|
1587 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1588 |
#, fuzzy
|
1589 |
msgid "Email"
|
1590 |
msgstr "E-mail"
|
1591 |
|
1592 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1593 |
msgid "Sign-up Date"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
# @ profilebuilder
|
1597 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1598 |
#, fuzzy
|
1599 |
msgid "Firstname"
|
1600 |
msgstr "Voornaam"
|
1601 |
|
1602 |
# @ profilebuilder
|
1603 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1604 |
#, fuzzy
|
1605 |
msgid "Lastname"
|
1606 |
msgstr "Achternaam"
|
1607 |
|
1608 |
# @ profilebuilder
|
1609 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1610 |
#, fuzzy
|
1611 |
msgid "Display Name"
|
1612 |
msgstr "Voornaam"
|
1613 |
|
1614 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1615 |
msgid "Posts"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1619 |
msgid "Click here to see more information about this user"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1623 |
msgid "More..."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
# @ profilebuilder
|
1627 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1628 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1629 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1630 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1631 |
#, fuzzy
|
1632 |
msgid "No uploaded attachment"
|
1633 |
msgstr "De bijlage"
|
1634 |
|
1635 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1636 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1637 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1638 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1639 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1640 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
@@ -1643,18 +1603,18 @@ msgstr "De bijlage"
|
|
1643 |
msgid "Click to see the current attachment"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1647 |
msgid "Click here to go back"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
# @ profilebuilder
|
1651 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1652 |
#, fuzzy
|
1653 |
msgid "Back"
|
1654 |
msgstr "Zwart"
|
1655 |
|
1656 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1657 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1658 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1659 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1660 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
@@ -1663,119 +1623,119 @@ msgstr "Zwart"
|
|
1663 |
msgid "Current file"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1667 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1668 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1669 |
msgid "Avatar"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1673 |
msgid "No results found!"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1677 |
msgid "«« First"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1681 |
msgid "« Prev"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1685 |
msgid "Next » "
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1689 |
msgid "Last »»"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
# @ profilebuilder
|
1693 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1694 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1695 |
#, fuzzy
|
1696 |
msgid "You must give your option a title."
|
1697 |
msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
|
1698 |
|
1699 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1700 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1701 |
msgid "You have entered an invalid meta-key format!"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
# @ profilebuilder
|
1705 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1706 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1707 |
#, fuzzy
|
1708 |
msgid "You must enter a valid meta-key."
|
1709 |
msgstr "U moet een geldig e-mail adres invullen."
|
1710 |
|
1711 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1712 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1713 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1714 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1715 |
msgid "That meta-key is already in use."
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1719 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1720 |
msgid ""
|
1721 |
"There is already an avatar input-type. You can only have one avatar present."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1725 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1726 |
msgid ""
|
1727 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1728 |
"have one present."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1732 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1733 |
msgid "The textarea row value must be numeric."
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1737 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1738 |
msgid "The maxlength attribute must be numeric."
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1742 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1743 |
msgid "The value must be between 20 and 200!"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:343
|
1747 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
|
1748 |
-
msgid "The width component of the entered value must be numeric!"
|
1749 |
-
msgstr ""
|
1750 |
-
|
1751 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1752 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1753 |
-
msgid "The
|
1754 |
msgstr ""
|
1755 |
|
1756 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1757 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1758 |
-
msgid "The
|
1759 |
msgstr ""
|
1760 |
|
1761 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1762 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1763 |
-
msgid "The
|
1764 |
msgstr ""
|
1765 |
|
1766 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1767 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
|
|
|
|
|
|
|
|
|
|
1768 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1772 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1773 |
msgid "The entered avatar size must be numeric!"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
# @ profilebuilder
|
1777 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1778 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1779 |
#, fuzzy
|
1780 |
msgid "There was an error, please try again."
|
1781 |
msgstr "Foutmelding tijdens het uploaden van uw avatar afbeelding."
|
@@ -1788,25 +1748,26 @@ msgstr ""
|
|
1788 |
msgid "the current user?"
|
1789 |
msgstr ""
|
1790 |
|
|
|
1791 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1792 |
-
|
1793 |
-
msgid "Your account on"
|
1794 |
-
msgstr ""
|
1795 |
-
|
1796 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1797 |
-
msgid "has been approved!"
|
1798 |
-
msgstr ""
|
1799 |
|
1800 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1801 |
-
|
|
|
1802 |
msgstr ""
|
1803 |
|
|
|
1804 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1805 |
-
|
1806 |
-
|
|
|
1807 |
|
1808 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1809 |
-
|
|
|
1810 |
msgstr ""
|
1811 |
|
1812 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
@@ -1838,11 +1799,8 @@ msgid "approve"
|
|
1838 |
msgstr ""
|
1839 |
|
1840 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1845 |
-
msgid "this user?"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
@@ -2106,6 +2064,12 @@ msgstr "Profile Builder"
|
|
2106 |
msgid "Don't have an account?"
|
2107 |
msgstr "U heeft geen ander account nodig"
|
2108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2109 |
# @ profilebuilder
|
2110 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
2111 |
#, fuzzy
|
@@ -2119,15 +2083,15 @@ msgid "Login"
|
|
2119 |
msgstr "Inloggen"
|
2120 |
|
2121 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
2122 |
-
msgid "After login redirect URL:"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
2126 |
-
msgid "Register page URL (optional)"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
2130 |
-
msgid "Password Recovery page URL (optional)"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
@@ -2138,21 +2102,21 @@ msgstr ""
|
|
2138 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
2142 |
#, php-format
|
2143 |
msgid ""
|
2144 |
-
"Your <strong>Profile Builder
|
2145 |
-
"
|
2146 |
-
"
|
2147 |
-
"%sDismiss%s"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
2151 |
#, php-format
|
2152 |
msgid ""
|
2153 |
-
"Your <strong>Profile Builder
|
2154 |
-
"%sRenew Your Licence%s to receive access to automatic updates and
|
2155 |
-
"support. %sPurchase one now%s %sDismiss%s"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
@@ -2222,3 +2186,81 @@ msgstr ""
|
|
2222 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
|
2223 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2224 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-10 11:29+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-10 11:29+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"
|
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:83
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"The information size you were trying to submit was larger than %1$sb!<br/"
|
23 |
+
">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
|
24 |
+
"it was also larger than %2$sb no additional information is available.<br/"
|
25 |
+
">The user was NOT created!"
|
26 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
# @ profilebuilder
|
29 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
|
30 |
msgid "You must be logged in to edit your profile."
|
31 |
msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
|
32 |
|
33 |
# @ profilebuilder
|
34 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
|
35 |
msgid "The avatar was successfully deleted."
|
36 |
msgstr "De avatar is succesvol verwijderd."
|
37 |
|
38 |
# @ profilebuilder
|
39 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
|
40 |
+
#, fuzzy, php-format
|
41 |
+
msgid "The attachment \"%1$s\" was successfully deleted."
|
42 |
+
msgstr "De avatar is succesvol verwijderd."
|
|
|
|
|
|
|
|
|
43 |
|
44 |
# @ profilebuilder
|
45 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
|
46 |
msgid "The changes have been successfully saved."
|
47 |
msgstr "De wijzigingen zijn succesvol opgeslagen."
|
48 |
|
49 |
# @ profilebuilder
|
50 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
51 |
msgid ""
|
52 |
"The email address you entered is already registered to a different user."
|
53 |
msgstr ""
|
54 |
"Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
|
55 |
|
56 |
# @ profilebuilder
|
57 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
58 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
59 |
msgid "The email address was"
|
60 |
msgstr "E-mail adres was"
|
61 |
|
62 |
# @ profilebuilder
|
63 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
64 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
65 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
67 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
68 |
msgid "NOT"
|
69 |
msgstr "NIET"
|
70 |
|
71 |
# @ profilebuilder
|
72 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
73 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
74 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
76 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
77 |
msgid "updated along with the rest of the information."
|
78 |
msgstr "ge-update samen met de rest van de gegevens."
|
79 |
|
80 |
# @ profilebuilder
|
81 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
82 |
msgid "The email address you entered is invalid."
|
83 |
msgstr "Het ingetoetste e-mail adres is ongeldig."
|
84 |
|
85 |
# @ profilebuilder
|
86 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
87 |
msgid "The passwords you entered do not match."
|
88 |
msgstr "De ingetoetste wachtwoorden zijn niet gelijk."
|
89 |
|
90 |
# @ profilebuilder
|
91 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
92 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
93 |
msgid "The password was"
|
94 |
msgstr "Wachtwoord was"
|
95 |
|
96 |
# @ profilebuilder
|
97 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
98 |
msgid "You didn't complete both password fields."
|
99 |
msgstr "U heeft beide wachtwoord velden niet ingevuld."
|
100 |
|
101 |
# @ profilebuilder
|
102 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
|
103 |
msgid "Your profile was NOT updated!"
|
104 |
msgstr "Uw profiel is NIET ge-update!"
|
105 |
|
106 |
# @ profilebuilder
|
107 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
|
108 |
msgid "There was an error while trying to upload the following attachments:"
|
109 |
msgstr "Foutmelding tijdens het uploaden van de volgende attachments:"
|
110 |
|
111 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
112 |
+
#, php-format
|
113 |
+
msgid ""
|
114 |
+
"Possible cause: the size was bigger than %1$sb. The listed attachements were "
|
115 |
+
"%2$sNOT%3$s updated along with the rest of the information."
|
116 |
+
msgstr ""
|
|
|
|
|
|
|
117 |
|
118 |
# @ profilebuilder
|
119 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
120 |
msgid "There was an error while trying to upload your avatar picture."
|
121 |
msgstr "Foutmelding tijdens het uploaden van uw avatar afbeelding."
|
122 |
|
123 |
# @ profilebuilder
|
124 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
125 |
msgid "Possible cause: size/incorrect file-type."
|
126 |
msgstr "Mogelijke oorzaak: grootte/verkeerd bestand-type."
|
127 |
|
128 |
# @ profilebuilder
|
129 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
130 |
msgid "The avatar was"
|
131 |
msgstr "De avatar is"
|
132 |
|
133 |
# @ profilebuilder
|
134 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
|
135 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:897
|
136 |
#, fuzzy
|
137 |
msgid "There was an error while trying to upload the following attachment(s)"
|
138 |
msgstr "Foutmelding tijdens het uploaden van de volgende attachments:"
|
139 |
|
140 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
|
141 |
+
#, php-format
|
142 |
+
msgid ""
|
143 |
+
"Only files with the following extension(s) can be uploaded: %1$s<br/>This "
|
144 |
+
"file was %2$sNOT%3$s updated along with the rest of the information."
|
|
|
|
|
145 |
msgstr ""
|
146 |
|
147 |
# @ profilebuilder
|
148 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
|
149 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1277
|
150 |
msgid "Name"
|
151 |
msgstr "Naam"
|
152 |
|
153 |
# @ profilebuilder
|
154 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
|
155 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
|
156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1298
|
|
|
157 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
158 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
|
159 |
msgid "Username"
|
160 |
msgstr "Gebruikersnaam"
|
161 |
|
162 |
# @ profilebuilder
|
163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
|
164 |
msgid "Usernames cannot be changed."
|
165 |
msgstr "Gebruikersnaam kan niet gewijzigd worden."
|
166 |
|
167 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
|
168 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
|
169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:726
|
170 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:746
|
171 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:796
|
172 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:817
|
173 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:835
|
174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:853
|
175 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:871
|
176 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:892
|
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
|
188 |
msgid "This field is marked as required by the administrator."
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
|
192 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
|
193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:729
|
194 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:749
|
195 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
|
197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
|
198 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:855
|
199 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
|
200 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
|
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 |
|
206 |
# @ profilebuilder
|
207 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
|
208 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1322
|
209 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
210 |
msgid "First Name"
|
211 |
msgstr "Voornaam"
|
212 |
|
213 |
# @ profilebuilder
|
214 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
|
215 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1346
|
216 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
217 |
msgid "Last Name"
|
218 |
msgstr "Achternaam"
|
219 |
|
220 |
# @ profilebuilder
|
221 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
|
222 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1370
|
223 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
224 |
msgid "Nickname"
|
225 |
msgstr "Bijnaam"
|
226 |
|
227 |
# @ profilebuilder
|
228 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:757
|
229 |
msgid "Display name publicly as"
|
230 |
msgstr "Naam publiekelijk tonen als"
|
231 |
|
232 |
# @ profilebuilder
|
233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
|
234 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1376
|
235 |
msgid "Contact Info"
|
236 |
msgstr "Contact Informatie"
|
237 |
|
238 |
# @ profilebuilder
|
239 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
|
240 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1397
|
|
|
241 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
242 |
msgid "E-mail"
|
243 |
msgstr "E-mail"
|
244 |
|
245 |
# @ profilebuilder
|
246 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
|
247 |
msgid "(required)"
|
248 |
msgstr "(verplicht)"
|
249 |
|
250 |
# @ profilebuilder
|
251 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
|
252 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1421
|
253 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
254 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
|
255 |
msgid "Website"
|
256 |
msgstr "Website"
|
257 |
|
258 |
# @ profilebuilder
|
259 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
|
260 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1445
|
261 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
262 |
msgid "AIM"
|
263 |
msgstr "AIM"
|
264 |
|
265 |
# @ profilebuilder
|
266 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
|
267 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1469
|
268 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
269 |
msgid "Yahoo IM"
|
270 |
msgstr "Yahoo IM"
|
271 |
|
272 |
# @ profilebuilder
|
273 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
|
274 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1493
|
275 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
276 |
msgid "Jabber / Google Talk"
|
277 |
msgstr "Jabber / Google Talk"
|
278 |
|
279 |
# @ profilebuilder
|
280 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
|
281 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1499
|
282 |
msgid "About Yourself"
|
283 |
msgstr "Over Jezelf"
|
284 |
|
285 |
# @ profilebuilder
|
286 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
|
287 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1520
|
288 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
289 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
|
290 |
msgid "Biographical Info"
|
291 |
msgstr "Biografie"
|
292 |
|
293 |
# @ profilebuilder
|
294 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
|
295 |
msgid "New Password"
|
296 |
msgstr "Nieuw Wachtwoord"
|
297 |
|
298 |
# @ profilebuilder
|
299 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
|
300 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
|
301 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
|
302 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
303 |
msgid "Repeat Password"
|
304 |
msgstr "Herhaal Wachtwoord"
|
305 |
|
306 |
# @ profilebuilder
|
307 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
|
308 |
msgid "Update"
|
309 |
msgstr "Bijwerken"
|
310 |
|
311 |
# @ profilebuilder
|
312 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
313 |
+
#, fuzzy, php-format
|
314 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
315 |
msgstr "U bent momenteel ingelogd als"
|
316 |
|
317 |
# @ profilebuilder
|
318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
319 |
msgid "Log out of this account"
|
320 |
msgstr "Gebruiker uitloggen"
|
321 |
|
322 |
# @ profilebuilder
|
323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
324 |
msgid "Log out"
|
325 |
msgstr "Uitloggen"
|
326 |
|
327 |
# @ profilebuilder
|
328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
|
329 |
+
#, fuzzy, php-format
|
330 |
+
msgid "You have successfully logged in as %1$s"
|
331 |
msgstr "U bent succesvol ingelogd als"
|
332 |
|
333 |
# @ profilebuilder
|
334 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
335 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
336 |
+
#, fuzzy, php-format
|
337 |
msgid ""
|
338 |
"You will soon be redirected automatically. If you see this page for more "
|
339 |
+
"than 1 second, please click %1$s"
|
340 |
msgstr ""
|
341 |
"U wordt automatisch doorgestuurd. Als u deze pagina meer dan 1 seconde ziet, "
|
342 |
"klik svp op"
|
343 |
|
344 |
# @ profilebuilder
|
345 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
346 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
348 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
349 |
msgid "here"
|
350 |
msgstr "hier"
|
351 |
|
352 |
# @ profilebuilder
|
353 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
354 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
355 |
msgid "ERROR:"
|
356 |
msgstr "FOUT:"
|
357 |
|
358 |
# @ profilebuilder
|
359 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
360 |
msgid "The username field is empty"
|
361 |
msgstr "Veld voor gebruikersnaam is leeg"
|
362 |
|
363 |
# @ profilebuilder
|
364 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
|
365 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
|
366 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
|
367 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1553
|
368 |
msgid "Password"
|
369 |
msgstr "Wachtwoord"
|
370 |
|
371 |
# @ profilebuilder
|
372 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
|
373 |
msgid "Log in"
|
374 |
msgstr "Inloggen"
|
375 |
|
376 |
# @ profilebuilder
|
377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
378 |
msgid "Remember me"
|
379 |
msgstr "Onthoud gegevens"
|
380 |
|
381 |
# @ profilebuilder
|
382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:157
|
383 |
msgid "Lost password?"
|
384 |
msgstr "Wachtwoord vergeten?"
|
385 |
|
386 |
# @ profilebuilder
|
387 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
388 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
389 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
390 |
msgid "ERROR"
|
391 |
msgstr "FOUT"
|
392 |
|
393 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
394 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
395 |
msgid ""
|
396 |
"Your account has to be confirmed by an administrator before you can use the "
|
398 |
msgstr ""
|
399 |
|
400 |
# @ profilebuilder
|
401 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
|
402 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
|
403 |
+
#, fuzzy, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
404 |
msgid ""
|
405 |
+
"A password reset email has been sent to %1$s.<br/>Following the link sent in "
|
406 |
+
"the email address will reset the password."
|
407 |
+
msgstr "Via de link in de gestuurde e-mail wordt uw wachtwoord ge-reset."
|
408 |
|
|
|
409 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
410 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
|
411 |
+
#, php-format
|
412 |
+
msgid ""
|
413 |
+
"Someone requested that the password be reset for the following account: <b>"
|
414 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
415 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
416 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
417 |
|
418 |
# @ profilebuilder
|
419 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
|
420 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
|
421 |
+
#, fuzzy, php-format
|
422 |
+
msgid "Password Reset Feature from \"%1$s\""
|
423 |
msgstr "Functie om wachtwoord te resetten van"
|
424 |
|
425 |
# @ profilebuilder
|
426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
427 |
+
#, fuzzy, php-format
|
428 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
429 |
msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
|
430 |
|
431 |
# @ profilebuilder
|
432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
433 |
msgid "The email address entered wasn't found in the database!"
|
434 |
msgstr "Het ingetoetste e-mail adres is niet in de database gevonden!"
|
435 |
|
436 |
# @ profilebuilder
|
437 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
438 |
msgid "Please check that you entered the correct email address."
|
439 |
msgstr "Check svp of u het juiste e-mail adres heeft ingetoetst."
|
440 |
|
441 |
# @ profilebuilder
|
442 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
443 |
+
msgid "There was an error while trying to send the activation link to "
|
444 |
+
msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
|
445 |
+
|
446 |
+
# @ profilebuilder
|
447 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
448 |
msgid "The username entered wasn't found in the database!"
|
449 |
msgstr "De ingetoetste gebruikersnaam is niet in de database gevonden!"
|
450 |
|
451 |
# @ profilebuilder
|
452 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
453 |
msgid "Please check that you entered the correct username."
|
454 |
msgstr "Check svp of u de juiste gebuikersnaam heeft ingetoetst."
|
455 |
|
456 |
# @ profilebuilder
|
457 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
|
458 |
msgid "Your password has been successfully changed!"
|
459 |
msgstr "Uw wachtwoord is succesvol gewijzigd!"
|
460 |
|
461 |
# @ profilebuilder
|
462 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
|
463 |
+
#, fuzzy, php-format
|
464 |
+
msgid "You have successfully reset your password to: %1$s"
|
465 |
msgstr "U heeft uw wachtwoord succesvol ge-reset"
|
466 |
|
467 |
# @ profilebuilder
|
468 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
|
469 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
|
470 |
+
#, fuzzy, php-format
|
471 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
472 |
msgstr "Wachtwoord is succesvol ge-reset voor"
|
473 |
|
474 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
|
475 |
+
#, php-format
|
476 |
+
msgid ""
|
477 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
478 |
+
"her new password is:%2$s"
|
|
|
|
|
|
|
|
|
479 |
msgstr ""
|
480 |
|
481 |
# @ profilebuilder
|
482 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
|
483 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:894
|
|
|
|
|
|
|
|
|
|
|
484 |
msgid "The entered passwords don't match!"
|
485 |
msgstr "De ingevoerde wachtwoorden komen niet overeen!"
|
486 |
|
487 |
# @ profilebuilder
|
488 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
|
489 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
|
490 |
msgid "Reset Password"
|
491 |
msgstr "Reset wachtwoord"
|
492 |
|
493 |
# @ profilebuilder
|
494 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
495 |
msgid "Invalid key!"
|
496 |
msgstr "Ongeldige sleutel!"
|
497 |
|
498 |
# @ profilebuilder
|
499 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
500 |
msgid "Please enter your username or email address."
|
501 |
msgstr "Svp uw gebruikersnaam of e-mail adres intypen."
|
502 |
|
503 |
# @ profilebuilder
|
504 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
505 |
msgid "You will receive a link to create a new password via email."
|
506 |
msgstr "U zult een e-mail ontvangen om nieuw wachtwoord aan te maken."
|
507 |
|
508 |
# @ profilebuilder
|
509 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
510 |
msgid "Username or E-mail"
|
511 |
msgstr "Gebruikersnaam of e-mail adres"
|
512 |
|
513 |
# @ profilebuilder
|
514 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
515 |
msgid "Get New Password"
|
516 |
msgstr "Nieuw wachtwoord"
|
517 |
|
565 |
msgid "There was an error while trying to activate the user."
|
566 |
msgstr "Foutmelding opgetreden tijdens verzenden van activatie link naar "
|
567 |
|
568 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
|
569 |
+
#, php-format
|
570 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
571 |
+
msgstr ""
|
572 |
|
573 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
574 |
msgid ""
|
575 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
576 |
"please remember that you need to approve this user before he/she can log in!"
|
577 |
msgstr ""
|
578 |
|
579 |
# @ default
|
580 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
581 |
msgid "A new subscriber has (been) registered!"
|
582 |
msgstr ""
|
583 |
|
584 |
# @ profilebuilder
|
585 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:522
|
586 |
#, fuzzy
|
587 |
msgid "A new account has been created for you."
|
588 |
msgstr "Gebruikers account is gemaakt voor"
|
589 |
|
590 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
591 |
+
#, php-format
|
592 |
+
msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
|
|
|
|
|
|
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
|
|
|
|
|
|
|
|
|
|
|
|
|
596 |
msgid ""
|
597 |
"Before you can access your account, an administrator needs to approve it. "
|
598 |
"You will be notified via email."
|
599 |
msgstr ""
|
600 |
|
601 |
# @ profilebuilder
|
602 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
|
|
|
|
|
|
|
|
|
|
|
603 |
msgid "A username is required for registration."
|
604 |
msgstr "Een gebruikersnaam is vereist voor registratie."
|
605 |
|
606 |
# @ profilebuilder
|
607 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
|
608 |
msgid "Sorry, that username already exists!"
|
609 |
msgstr "Sorry, die gebruikersnaam bestaat al!"
|
610 |
|
611 |
# @ profilebuilder
|
612 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:887
|
613 |
msgid "You must enter a valid email address."
|
614 |
msgstr "U moet een geldig e-mail adres invullen."
|
615 |
|
616 |
# @ profilebuilder
|
617 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:889
|
618 |
msgid "Sorry, that email address is already used!"
|
619 |
msgstr "Sorry, dat e-mail adres is al in gebruik!"
|
620 |
|
621 |
# @ profilebuilder
|
622 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
|
623 |
msgid "You didn't complete one of the password-fields!"
|
624 |
msgstr "Je hebt een van de wachtwoord-velden niet volledig ingevuld!"
|
625 |
|
626 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
627 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
# @ profilebuilder
|
631 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
632 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
633 |
msgid "The account was NOT created!"
|
634 |
msgstr "Account is NIET aangemaakt!"
|
635 |
|
636 |
# @ profilebuilder
|
637 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:908
|
638 |
msgid "You must agree to the terms and conditions before registering!"
|
639 |
msgstr "U moet akkoord gaan met de voorwaarden voordat u registreert!"
|
640 |
|
641 |
# @ profilebuilder
|
642 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
643 |
msgid "(Several required fields were left uncompleted)"
|
644 |
msgstr "(Diverse verplichte velden zijn onvolledig ingevuld)"
|
645 |
|
646 |
# @ profilebuilder
|
647 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
648 |
#, fuzzy
|
649 |
msgid "This username is already reserved to be used soon."
|
650 |
msgstr ""
|
651 |
"Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
|
652 |
|
653 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
654 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
655 |
msgid "Please try a different one!"
|
656 |
msgstr ""
|
657 |
|
658 |
# @ profilebuilder
|
659 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
660 |
#, fuzzy
|
661 |
msgid "This email address is already reserved to be used soon."
|
662 |
msgstr ""
|
663 |
"Het ingetoetste e-mail adres is al geregistreerd bij een andere gebruiker."
|
664 |
|
665 |
# @ profilebuilder
|
666 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
667 |
msgid "You are logged in as"
|
668 |
msgstr "U bent ingelogd als"
|
669 |
|
670 |
# @ profilebuilder
|
671 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
672 |
msgid "You don't need another account."
|
673 |
msgstr "U heeft geen ander account nodig"
|
674 |
|
675 |
# @ profilebuilder
|
676 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
677 |
msgid "Log out of this account."
|
678 |
msgstr "Uitloggen van dit account"
|
679 |
|
680 |
# @ profilebuilder
|
681 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
682 |
msgid "Logout"
|
683 |
msgstr "Uitloggen"
|
684 |
|
685 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
686 |
+
#, php-format
|
687 |
+
msgid ""
|
688 |
+
"An email has been sent to %1$s with information on how to activate his/her "
|
689 |
+
"account."
|
|
|
|
|
|
|
690 |
msgstr ""
|
691 |
|
692 |
# @ profilebuilder
|
693 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1172
|
694 |
+
#, fuzzy, php-format
|
695 |
+
msgid "A user account has been created for %1$s."
|
696 |
msgstr "Gebruikers account is gemaakt voor"
|
697 |
|
698 |
# @ profilebuilder
|
699 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
700 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
701 |
+
#, fuzzy, php-format
|
702 |
msgid ""
|
703 |
"You will soon be redirected automatically. If you see this page for more "
|
704 |
+
"than 3 seconds, please click %1$s.%2$s"
|
705 |
msgstr ""
|
706 |
"U wordt automatisch doorgestuurd. Als u deze pagina meer dan 1 seconde ziet, "
|
707 |
"klik svp op"
|
708 |
|
709 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1197
|
710 |
msgid ""
|
711 |
"An email has been sent to you with information on how to activate your "
|
712 |
+
"account."
|
713 |
msgstr ""
|
714 |
|
715 |
# @ profilebuilder
|
716 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1201
|
717 |
+
#, fuzzy, php-format
|
718 |
+
msgid "Thank you for registering %1$s."
|
719 |
msgstr "Bedankt voor registreren"
|
720 |
|
721 |
# @ profilebuilder
|
722 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1228
|
723 |
msgid "An error occured while trying to send the notification email."
|
724 |
msgstr "Fout opgetreden tijdens verzenden van notificatie e-mail."
|
725 |
|
726 |
# @ profilebuilder
|
727 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
728 |
#, fuzzy
|
729 |
msgid "An email containing activation instructions was successfully sent."
|
730 |
msgstr "Een e-mail met gebruikersnaam en wachtwoord is succesvol verzonden."
|
731 |
|
732 |
# @ profilebuilder
|
733 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
734 |
msgid "An email containing the username and password was successfully sent."
|
735 |
msgstr "Een e-mail met gebruikersnaam en wachtwoord is succesvol verzonden."
|
736 |
|
737 |
# @ profilebuilder
|
738 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1254
|
739 |
msgid "Users can register themselves or you can manually create users here."
|
740 |
msgstr ""
|
741 |
"Gebruikers kunnen zich registreren of je kunt hier handmatig gebruikers "
|
742 |
"aanmaken."
|
743 |
|
744 |
# @ profilebuilder
|
745 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
746 |
msgid ""
|
747 |
"Users cannot currently register themselves, but you can manually create "
|
748 |
"users here."
|
751 |
"handmatig gebruikers aanmaken."
|
752 |
|
753 |
# @ profilebuilder
|
754 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
755 |
msgid "Only an administrator can add new users."
|
756 |
msgstr "Alleen een beheerder kan nieuwe gebruikers toevoegen."
|
757 |
|
758 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1287
|
759 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1311
|
760 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1335
|
761 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1359
|
762 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1410
|
763 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1434
|
764 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1458
|
765 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1482
|
766 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1509
|
767 |
msgid ""
|
768 |
"This field must be filled out before registering (It was marked as required "
|
769 |
"by the administrator)"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1308
|
773 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1332
|
774 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1356
|
775 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1383
|
776 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1407
|
777 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1431
|
778 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1455
|
779 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1479
|
780 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1506
|
781 |
msgid "This field is marked as required by the administrator"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1581
|
785 |
msgid "Anti-Spam"
|
786 |
msgstr ""
|
787 |
|
788 |
# @ profilebuilder
|
789 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1602
|
790 |
msgid "Send these credentials via email."
|
791 |
msgstr "Verstuur deze gegevens via e-mail."
|
792 |
|
793 |
# @ profilebuilder
|
794 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
795 |
msgid "Add User"
|
796 |
msgstr "Gebruiker Toevoegen"
|
797 |
|
798 |
# @ profilebuilder
|
799 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
800 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
801 |
msgid "Register"
|
802 |
msgstr "Registreren"
|
819 |
msgstr "Zichtbaarheid"
|
820 |
|
821 |
# @ profilebuilder
|
822 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
|
823 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
824 |
+
msgid "Default"
|
825 |
+
msgstr "Standaard"
|
826 |
+
|
827 |
+
# @ profilebuilder
|
828 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
|
829 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
830 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
831 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
842 |
msgstr "Tonen"
|
843 |
|
844 |
# @ profilebuilder
|
845 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
|
846 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
847 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
848 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
858 |
msgid "Hide"
|
859 |
msgstr "Verbergen"
|
860 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
861 |
# @ default
|
862 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
|
863 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
864 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
865 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
866 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
|
867 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
868 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
|
869 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
870 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
871 |
msgid "Save Changes"
|
1017 |
msgid "shortcode."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
# @ profilebuilder
|
1021 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
1022 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
1023 |
+
msgid "NOTE:"
|
1024 |
+
msgstr "LET OP:"
|
1025 |
+
|
1026 |
# @ profilebuilder
|
1027 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
1028 |
msgid "this plugin only adds/removes fields in the front-end."
|
1083 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
1084 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
1085 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
1086 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
|
1087 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
|
1088 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
|
1089 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
|
1090 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
|
1091 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
|
1092 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
|
1093 |
msgid "Yes"
|
1094 |
msgstr "Ja"
|
1095 |
|
1108 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1109 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1110 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1111 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
|
1112 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
|
1113 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
|
1114 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
|
1115 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
|
1116 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
|
1117 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
|
1118 |
msgid "No"
|
1119 |
msgstr "Nee"
|
1120 |
|
1142 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1143 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1144 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1145 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
|
1146 |
msgid "General Settings"
|
1147 |
msgstr ""
|
1148 |
|
1152 |
msgid "Stylesheet Used on the Front-End:"
|
1153 |
msgstr "Gebruikte stylesheet:"
|
1154 |
|
|
|
|
|
|
|
|
|
|
|
1155 |
# @ profilebuilder
|
1156 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1157 |
msgid "White"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1196 |
+
#, php-format
|
1197 |
msgid ""
|
1198 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1199 |
+
"Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
|
1200 |
+
"access to automatic updates and support. Need a license key? %3$sPurchase "
|
1201 |
+
"one now%4$s"
|
|
|
|
|
|
|
1202 |
msgstr ""
|
1203 |
|
1204 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1205 |
+
#, php-format
|
1206 |
msgid ""
|
1207 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1208 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1209 |
+
"priority support. %3$sPurchase one now%4$s"
|
|
|
|
|
|
|
|
|
1210 |
msgstr ""
|
1211 |
|
1212 |
# @ profilebuilder
|
1268 |
msgstr ""
|
1269 |
|
1270 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1271 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
|
1272 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
|
1273 |
msgid "Custom Redirects"
|
1274 |
msgstr ""
|
1275 |
|
1279 |
msgid "reCAPTCHA"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
|
1283 |
msgid "Redirects on custom page requests:"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
|
1287 |
msgid "Action"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
# @ profilebuilder
|
1291 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
|
1292 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
|
1293 |
#, fuzzy
|
1294 |
msgid "Redirect"
|
1295 |
msgstr "Verplicht"
|
1296 |
|
1297 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
|
1298 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
|
1299 |
msgid "URL"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
|
1303 |
msgid "After Registration:"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
|
1307 |
msgid "After Login:"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
# @ profilebuilder
|
1311 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
|
1312 |
#, fuzzy
|
1313 |
msgid "Recover Password (*)"
|
1314 |
msgstr "Reset wachtwoord"
|
1315 |
|
1316 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
|
1317 |
msgid ""
|
1318 |
"When activated this feature will redirect the user on both the default "
|
1319 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1320 |
"Profile Builder on the front-end login page."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
|
1324 |
msgid "Redirects on default WordPress page requests:"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
|
1328 |
msgid "Requested WP Page"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
|
1332 |
+
msgid "Default WP Login Page (*)"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
|
1336 |
+
msgid "Default WP Logout Page (**)"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
|
1340 |
msgid "Default WP Register Page"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
|
1344 |
msgid "Default WP Dashboard (***)"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
|
1348 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
|
1352 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
|
1356 |
msgid ""
|
1357 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1358 |
"manage options)."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
|
|
1366 |
msgid "To use reCAPTCHA you must get an API key from"
|
1367 |
msgstr ""
|
1368 |
|
1407 |
msgid "Private Key:"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
|
1411 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1412 |
msgstr ""
|
1413 |
|
1423 |
"authors, visible to only the users currently logged in, you would use:"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1427 |
+
msgid ""
|
1428 |
+
"You can also create a userlisting page that displays users having a certain "
|
1429 |
+
"meta-value within a certain (extra) meta-field like so:"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1433 |
+
msgid ""
|
1434 |
+
"Remember though, that the field-value combination must exist in the database."
|
1435 |
+
msgstr ""
|
1436 |
+
|
1437 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
|
1438 |
msgid "These settings are applied to the front-end userlisting."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:46
|
1442 |
msgid "Number of Users/Page: "
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:63
|
1446 |
msgid "Default Sorting Order: "
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
|
1450 |
msgid "\"All-Userlisting\" Template"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1454 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1455 |
msgid ""
|
1456 |
"With the userlisting templates you can customize the look, feel and "
|
1457 |
"information listed by the shortcode."
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
|
1461 |
msgid ""
|
1462 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1463 |
"on each page access where the shortcode is present."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
|
1467 |
msgid "Avatar size: "
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:97
|
1471 |
msgid "Insert \"Sort By\" Field:"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:125
|
1475 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
|
1476 |
msgid "Insert \"User-Meta\" Field:"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:156
|
1480 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:262
|
1481 |
msgid "Insert Extra Functions:"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:171
|
1485 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:173
|
1489 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:276
|
1490 |
msgid ""
|
1491 |
"If you wish to use a default userlisting, just copy the following code and "
|
1492 |
"paste it in the textarea below:"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
|
1496 |
msgid "\"Single-Userlisting\" Template"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:219
|
1500 |
msgid ""
|
1501 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1502 |
"It's displayed when clickin on the \"more info\" link."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:274
|
1506 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1510 |
msgid ""
|
1511 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1515 |
msgid "You can find it in Profile Builder's menu."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
# @ profilebuilder
|
1519 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
|
1520 |
#, fuzzy
|
1521 |
msgid "You need to be logged in to view the userlisting!"
|
1522 |
msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
|
1523 |
|
1524 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
|
1525 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
|
1526 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1527 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1328
|
1528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1414
|
1529 |
msgid "Search Users by All Fields"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1533 |
msgid "Leave Blank and Press Search to List All Users"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
|
1537 |
msgid "Search"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
# @ profilebuilder
|
1541 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
|
1542 |
#, fuzzy
|
1543 |
msgid "First/Lastname"
|
1544 |
msgstr "Voornaam"
|
1545 |
|
1546 |
# @ profilebuilder
|
1547 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
|
1548 |
#, fuzzy
|
1549 |
msgid "Email"
|
1550 |
msgstr "E-mail"
|
1551 |
|
1552 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
|
1553 |
msgid "Sign-up Date"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
# @ profilebuilder
|
1557 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
|
1558 |
#, fuzzy
|
1559 |
msgid "Firstname"
|
1560 |
msgstr "Voornaam"
|
1561 |
|
1562 |
# @ profilebuilder
|
1563 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
|
1564 |
#, fuzzy
|
1565 |
msgid "Lastname"
|
1566 |
msgstr "Achternaam"
|
1567 |
|
1568 |
# @ profilebuilder
|
1569 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
|
1570 |
#, fuzzy
|
1571 |
msgid "Display Name"
|
1572 |
msgstr "Voornaam"
|
1573 |
|
1574 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
|
1575 |
msgid "Posts"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1579 |
msgid "Click here to see more information about this user"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1583 |
msgid "More..."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
# @ profilebuilder
|
1587 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
|
1588 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1589 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1590 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1591 |
#, fuzzy
|
1592 |
msgid "No uploaded attachment"
|
1593 |
msgstr "De bijlage"
|
1594 |
|
1595 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
|
1596 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1597 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1160
|
1598 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1599 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1600 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1603 |
msgid "Click to see the current attachment"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1607 |
msgid "Click here to go back"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
# @ profilebuilder
|
1611 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1612 |
#, fuzzy
|
1613 |
msgid "Back"
|
1614 |
msgstr "Zwart"
|
1615 |
|
1616 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1617 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1618 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1619 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1620 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1623 |
msgid "Current file"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
|
1627 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1628 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1629 |
msgid "Avatar"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1215
|
1633 |
msgid "No results found!"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1637 |
msgid "«« First"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1641 |
msgid "« Prev"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1645 |
msgid "Next » "
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
|
1649 |
msgid "Last »»"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
# @ profilebuilder
|
1653 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
|
1654 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
|
1655 |
#, fuzzy
|
1656 |
msgid "You must give your option a title."
|
1657 |
msgstr "U moet ingelogd zijn om uw profiel te kunnen bewerken."
|
1658 |
|
1659 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
|
1660 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
|
1661 |
msgid "You have entered an invalid meta-key format!"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
# @ profilebuilder
|
1665 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
|
1666 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
|
1667 |
#, fuzzy
|
1668 |
msgid "You must enter a valid meta-key."
|
1669 |
msgstr "U moet een geldig e-mail adres invullen."
|
1670 |
|
1671 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
|
1672 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1673 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:447
|
1674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
|
1675 |
msgid "That meta-key is already in use."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1679 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1680 |
msgid ""
|
1681 |
"There is already an avatar input-type. You can only have one avatar present."
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:324
|
1685 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:474
|
1686 |
msgid ""
|
1687 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1688 |
"have one present."
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:329
|
1692 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:479
|
1693 |
msgid "The textarea row value must be numeric."
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1697 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1698 |
msgid "The maxlength attribute must be numeric."
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1702 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1703 |
msgid "The value must be between 20 and 200!"
|
1704 |
msgstr ""
|
1705 |
|
|
|
|
|
|
|
|
|
|
|
1706 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1707 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1708 |
+
msgid "The width component of the entered value must be numeric!"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1712 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1713 |
+
msgid "The height component of the entered value must be numeric!"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1717 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1718 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1722 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1723 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1724 |
+
msgstr ""
|
1725 |
+
|
1726 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
|
1727 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
|
1728 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
|
1732 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:506
|
1733 |
msgid "The entered avatar size must be numeric!"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
# @ profilebuilder
|
1737 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:390
|
1738 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:566
|
1739 |
#, fuzzy
|
1740 |
msgid "There was an error, please try again."
|
1741 |
msgstr "Foutmelding tijdens het uploaden van uw avatar afbeelding."
|
1748 |
msgid "the current user?"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
# @ profilebuilder
|
1752 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1753 |
+
#, fuzzy, php-format
|
1754 |
+
msgid "Your account on %1$s has been approved!"
|
1755 |
+
msgstr "Gebruikers account is gemaakt voor"
|
|
|
|
|
|
|
|
|
1756 |
|
1757 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1758 |
+
#, php-format
|
1759 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
# @ profilebuilder
|
1763 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1764 |
+
#, fuzzy, php-format
|
1765 |
+
msgid "Your account on %1$s has been unapproved!"
|
1766 |
+
msgstr "Gebruikers account is gemaakt voor"
|
1767 |
|
1768 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1769 |
+
#, php-format
|
1770 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1799 |
msgstr ""
|
1800 |
|
1801 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1802 |
+
#, php-format
|
1803 |
+
msgid "Are you sure you want to %1$s this user?"
|
|
|
|
|
|
|
1804 |
msgstr ""
|
1805 |
|
1806 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
2064 |
msgid "Don't have an account?"
|
2065 |
msgstr "U heeft geen ander account nodig"
|
2066 |
|
2067 |
+
# @ profilebuilder
|
2068 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
2069 |
+
#, fuzzy
|
2070 |
+
msgid "Lost Password"
|
2071 |
+
msgstr "Wachtwoord vergeten?"
|
2072 |
+
|
2073 |
# @ profilebuilder
|
2074 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
2075 |
#, fuzzy
|
2083 |
msgstr "Inloggen"
|
2084 |
|
2085 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
2086 |
+
msgid "After login redirect URL (optional):"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
2090 |
+
msgid "Register page URL (optional):"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
2094 |
+
msgid "Password Recovery page URL (optional):"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
2102 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
|
2106 |
#, php-format
|
2107 |
msgid ""
|
2108 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
2109 |
+
"Please %1$sregister your copy%2$s of Profile Builder to receive access to "
|
2110 |
+
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
|
2111 |
+
"%5$sDismiss%6$s"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
|
2115 |
#, php-format
|
2116 |
msgid ""
|
2117 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
2118 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
2119 |
+
"priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
2186 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
|
2187 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2188 |
msgstr ""
|
2189 |
+
|
2190 |
+
# @ profilebuilder
|
2191 |
+
#~ msgid "The information size you were trying to submit was larger than"
|
2192 |
+
#~ msgstr "De omvang van gegevens die u probeert te versturen was groter dan"
|
2193 |
+
|
2194 |
+
# @ profilebuilder
|
2195 |
+
#~ msgid "This is usually caused by a large file(s) trying to be uploaded."
|
2196 |
+
#~ msgstr ""
|
2197 |
+
#~ "Dit gebeurt meestal omdat u een te groot bestand probeert te uploaden."
|
2198 |
+
|
2199 |
+
# @ profilebuilder
|
2200 |
+
#~ msgid "Since it was also larger than"
|
2201 |
+
#~ msgstr "Omdat het ook groter was dan"
|
2202 |
+
|
2203 |
+
# @ profilebuilder
|
2204 |
+
#~ msgid "no additional information is available."
|
2205 |
+
#~ msgstr "geen extra informatie beschikbaar."
|
2206 |
+
|
2207 |
+
# @ profilebuilder
|
2208 |
+
#~ msgid "The attachment"
|
2209 |
+
#~ msgstr "De bijlage"
|
2210 |
+
|
2211 |
+
# @ profilebuilder
|
2212 |
+
#~ msgid "was successfully deleted."
|
2213 |
+
#~ msgstr "is succesvol verwijderd."
|
2214 |
+
|
2215 |
+
# @ profilebuilder
|
2216 |
+
#~ msgid "Possible cause: the size was bigger than"
|
2217 |
+
#~ msgstr "Mogelijke oorzaak: de grootte was groter dan"
|
2218 |
+
|
2219 |
+
# @ profilebuilder
|
2220 |
+
#~ msgid "The listed attachements were"
|
2221 |
+
#~ msgstr "De vermelde attachments waren"
|
2222 |
+
|
2223 |
+
# @ profilebuilder
|
2224 |
+
#~ msgid "A password reset email has been sent to "
|
2225 |
+
#~ msgstr "E-mail over wachtwoord resetten is gestuurd naar"
|
2226 |
+
|
2227 |
+
# @ profilebuilder
|
2228 |
+
#~ msgid ""
|
2229 |
+
#~ "Someone requested that the password be reset for the following account: "
|
2230 |
+
#~ msgstr "Iemand heeft gevraagd om wachtwoord te resetten voor account:"
|
2231 |
+
|
2232 |
+
# @ profilebuilder
|
2233 |
+
#~ msgid ""
|
2234 |
+
#~ "If this was a mistake, just ignore this email and nothing will happen."
|
2235 |
+
#~ msgstr ""
|
2236 |
+
#~ "Als dit een fout was, kunt u deze e-mail negeren. Er zal niets gebeuren."
|
2237 |
+
|
2238 |
+
# @ profilebuilder
|
2239 |
+
#~ msgid "To reset your password, visit the following link:"
|
2240 |
+
#~ msgstr "Om uw wachtwoord te resetten, ga naar de link:"
|
2241 |
+
|
2242 |
+
# @ profilebuilder
|
2243 |
+
#~ msgid "from"
|
2244 |
+
#~ msgstr "van"
|
2245 |
+
|
2246 |
+
# @ profilebuilder
|
2247 |
+
#~ msgid "His/her new password is:"
|
2248 |
+
#~ msgstr "Zijn/haar nieuwe wachtwoord is:"
|
2249 |
+
|
2250 |
+
# @ profilebuilder
|
2251 |
+
#~ msgid "New subscriber on"
|
2252 |
+
#~ msgstr "Nieuwe abonee op"
|
2253 |
+
|
2254 |
+
# @ profilebuilder
|
2255 |
+
#, fuzzy
|
2256 |
+
#~ msgid "and password:"
|
2257 |
+
#~ msgstr "Wachtwoord"
|
2258 |
+
|
2259 |
+
# @ profilebuilder
|
2260 |
+
#~ msgid "The user was NOT created!"
|
2261 |
+
#~ msgstr "Gebruikers is NIET aangemaakt!"
|
2262 |
+
|
2263 |
+
# @ profilebuilder
|
2264 |
+
#, fuzzy
|
2265 |
+
#~ msgid "An email has been sent to "
|
2266 |
+
#~ msgstr "E-mail over wachtwoord resetten is gestuurd naar"
|
translation/profilebuilder-pl_PL.mo
CHANGED
Binary file
|
translation/profilebuilder-pl_PL.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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
"Language-Team: Reflection Media, Gabriel Barina\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -15,49 +15,34 @@ msgstr ""
|
|
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:
|
19 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
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:
|
39 |
msgid "You must be logged in to edit your profile."
|
40 |
msgstr "Musisz być zalogowany żeby edytować swój profil."
|
41 |
|
42 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
43 |
msgid "The avatar was successfully deleted."
|
44 |
msgstr "Avatar został poprawnie usunięty."
|
45 |
|
46 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
47 |
-
#, fuzzy
|
48 |
-
msgid "The attachment"
|
49 |
-
msgstr "
|
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 "\" został poprawnie usunięty."
|
55 |
|
56 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
57 |
msgid "The changes have been successfully saved."
|
58 |
msgstr "Zmiany zostały zachowane"
|
59 |
|
60 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
61 |
#, fuzzy
|
62 |
msgid ""
|
63 |
"The email address you entered is already registered to a different user."
|
@@ -65,130 +50,120 @@ msgstr ""
|
|
65 |
"Podany adres email jest już wykorzystywany przez innego użytkownika.<br/"
|
66 |
">Adres email to "
|
67 |
|
68 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
69 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
70 |
msgid "The email address was"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
74 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
75 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
76 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
77 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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 "NIE "
|
82 |
|
83 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
84 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
85 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
86 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
87 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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 " zaktualizowane razem z pozostałymi informacjami."
|
93 |
|
94 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
95 |
#, fuzzy
|
96 |
msgid "The email address you entered is invalid."
|
97 |
msgstr ""
|
98 |
"Adres email, który wprowadziłeś, jest nieprawidłowy. <br/> Adres email to "
|
99 |
|
100 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
101 |
#, fuzzy
|
102 |
msgid "The passwords you entered do not match."
|
103 |
msgstr "Hasła, które wprowadziłeś, nie są jednakowe. <br/> Hasło to "
|
104 |
|
105 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
106 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
107 |
#, fuzzy
|
108 |
msgid "The password was"
|
109 |
msgstr "Nowe hasło"
|
110 |
|
111 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
112 |
#, fuzzy
|
113 |
msgid "You didn't complete both password fields."
|
114 |
msgstr "Nie wypełniłeś jednego z pól z hasłem!"
|
115 |
|
116 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
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:
|
121 |
#, fuzzy
|
122 |
msgid "There was an error while trying to upload the following attachments:"
|
123 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
124 |
|
125 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
126 |
-
#,
|
127 |
-
msgid "
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
#, fuzzy
|
132 |
-
msgid "The listed attachements were"
|
133 |
-
msgstr "b.<br/>Wskazane załaczniki zostały "
|
134 |
|
135 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
136 |
#, fuzzy
|
137 |
msgid "There was an error while trying to upload your avatar picture."
|
138 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
139 |
|
140 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
141 |
msgid "Possible cause: size/incorrect file-type."
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
145 |
msgid "The avatar was"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
149 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
150 |
#, fuzzy
|
151 |
msgid "There was an error while trying to upload the following attachment(s)"
|
152 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
153 |
|
154 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
155 |
-
|
156 |
-
msgid "
|
157 |
-
|
158 |
-
|
159 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
160 |
-
msgid "This file was"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
164 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
165 |
msgid "Name"
|
166 |
msgstr "Imię"
|
167 |
|
168 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
169 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
170 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
171 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1303
|
172 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
173 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
174 |
msgid "Username"
|
175 |
msgstr "Nazwa użytkownika"
|
176 |
|
177 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
178 |
#, fuzzy
|
179 |
msgid "Usernames cannot be changed."
|
180 |
msgstr "Nazwa użytkownika nie może zostać zmieniona."
|
181 |
|
182 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
183 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
184 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
185 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
186 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
187 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
188 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
189 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
190 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
191 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
192 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
193 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
194 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
@@ -203,298 +178,289 @@ msgstr "Nazwa użytkownika nie może zostać zmieniona."
|
|
203 |
msgid "This field is marked as required by the administrator."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
207 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
208 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
209 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
210 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
211 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
212 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
213 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
214 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
215 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
216 |
msgid ""
|
217 |
"This field wasn't updated because you entered and empty string (It was "
|
218 |
"marked as required by the administrator."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
222 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
223 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
224 |
msgid "First Name"
|
225 |
msgstr "Imię"
|
226 |
|
227 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
228 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
229 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
230 |
msgid "Last Name"
|
231 |
msgstr "Nazwisko"
|
232 |
|
233 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
234 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
235 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
236 |
msgid "Nickname"
|
237 |
msgstr "Ksywa"
|
238 |
|
239 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
240 |
msgid "Display name publicly as"
|
241 |
msgstr "Pokaż publicznie jako"
|
242 |
|
243 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
244 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
245 |
msgid "Contact Info"
|
246 |
msgstr "Dane kontaktowe"
|
247 |
|
248 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
249 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
250 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1402
|
251 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
252 |
msgid "E-mail"
|
253 |
msgstr "E-mail"
|
254 |
|
255 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
256 |
msgid "(required)"
|
257 |
msgstr "(wymagane)"
|
258 |
|
259 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
260 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
261 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
262 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
263 |
msgid "Website"
|
264 |
msgstr "Strona www"
|
265 |
|
266 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
267 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
268 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
269 |
msgid "AIM"
|
270 |
msgstr "AIM"
|
271 |
|
272 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
273 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
274 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
275 |
msgid "Yahoo IM"
|
276 |
msgstr "Komunikator Yahoo"
|
277 |
|
278 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
279 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
280 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
281 |
msgid "Jabber / Google Talk"
|
282 |
msgstr "Jabber / GTalk"
|
283 |
|
284 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
285 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
286 |
msgid "About Yourself"
|
287 |
msgstr "O sobie"
|
288 |
|
289 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
290 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
291 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
292 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
293 |
msgid "Biographical Info"
|
294 |
msgstr "Informacje biograficzne"
|
295 |
|
296 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
297 |
msgid "New Password"
|
298 |
msgstr "Nowe hasło"
|
299 |
|
300 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
301 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
302 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
303 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
304 |
msgid "Repeat Password"
|
305 |
msgstr "Powtórz hasło"
|
306 |
|
307 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:
|
308 |
msgid "Update"
|
309 |
msgstr "Aktualizuj"
|
310 |
|
311 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
312 |
-
#, fuzzy
|
313 |
-
msgid "You are currently logged in as"
|
314 |
msgstr "Jesteś zalogowany jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
315 |
|
316 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
317 |
msgid "Log out of this account"
|
318 |
msgstr "Wyloguj się z konta"
|
319 |
|
320 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
321 |
#, fuzzy
|
322 |
msgid "Log out"
|
323 |
msgstr "Wyloguj się &raguo;"
|
324 |
|
325 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
326 |
-
#, fuzzy
|
327 |
-
msgid "You have successfully logged in as"
|
328 |
msgstr "Zalogowałeś się jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
329 |
|
330 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
331 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
|
|
332 |
msgid ""
|
333 |
"You will soon be redirected automatically. If you see this page for more "
|
334 |
-
"than 1 second, please click"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
338 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
339 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
340 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
341 |
msgid "here"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
345 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
346 |
msgid "ERROR:"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
350 |
msgid "The username field is empty"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
354 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
355 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
356 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
357 |
msgid "Password"
|
358 |
msgstr "Hasło"
|
359 |
|
360 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
361 |
msgid "Log in"
|
362 |
msgstr "Zaloguj się"
|
363 |
|
364 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
365 |
msgid "Remember me"
|
366 |
msgstr "Zapamiętaj mnie"
|
367 |
|
368 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:
|
369 |
msgid "Lost password?"
|
370 |
msgstr "Zapomniałeś hasła?"
|
371 |
|
372 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
373 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
374 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
375 |
msgid "ERROR"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
379 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
380 |
msgid ""
|
381 |
"Your account has to be confirmed by an administrator before you can use the "
|
382 |
"\"Password Reset\" feature."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
386 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
387 |
-
|
388 |
-
msgstr ""
|
389 |
-
|
390 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
391 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
392 |
-
msgid "Following the link sent in the email address will reset the password."
|
393 |
-
msgstr ""
|
394 |
-
|
395 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
396 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
397 |
msgid ""
|
398 |
-
"
|
|
|
399 |
msgstr ""
|
400 |
|
401 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
402 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
msgid "To reset your password, visit the following link:"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
412 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
413 |
-
|
|
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
417 |
-
|
418 |
-
|
419 |
-
msgid "There was an error while trying to send the activation link to "
|
420 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
421 |
|
422 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
423 |
#, fuzzy
|
424 |
msgid "The email address entered wasn't found in the database!"
|
425 |
msgstr ""
|
426 |
"Adres email, który wprowadziłeś, jest nieprawidłowy. <br/> Adres email to "
|
427 |
|
428 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
429 |
msgid "Please check that you entered the correct email address."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
|
|
|
|
|
|
|
|
|
|
433 |
msgid "The username entered wasn't found in the database!"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
437 |
msgid "Please check that you entered the correct username."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
441 |
#, fuzzy
|
442 |
msgid "Your password has been successfully changed!"
|
443 |
msgstr "Zmiany zostały zachowane"
|
444 |
|
445 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
446 |
-
|
447 |
-
|
|
|
448 |
|
449 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
450 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
451 |
-
#, fuzzy
|
452 |
-
msgid "Password Successfully Reset for"
|
453 |
msgstr "\" został poprawnie usunięty."
|
454 |
|
455 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
456 |
-
|
457 |
-
msgid "
|
458 |
-
|
459 |
-
|
460 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:277
|
461 |
-
msgid "has requested a password change via the password reset feature."
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
465 |
-
msgid "His/her new password is:"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
469 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
470 |
msgid "The entered passwords don't match!"
|
471 |
msgstr "Wprowadzone hasła nie zgadzają się!"
|
472 |
|
473 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
474 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
475 |
#, fuzzy
|
476 |
msgid "Reset Password"
|
477 |
msgstr "Powtórz hasło"
|
478 |
|
479 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
480 |
msgid "Invalid key!"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
484 |
#, fuzzy
|
485 |
msgid "Please enter your username or email address."
|
486 |
msgstr "Musisz podać poprawny adres email."
|
487 |
|
488 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
489 |
msgid "You will receive a link to create a new password via email."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
493 |
#, fuzzy
|
494 |
msgid "Username or E-mail"
|
495 |
msgstr "Nazwa użytkownika"
|
496 |
|
497 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:
|
498 |
#, fuzzy
|
499 |
msgid "Get New Password"
|
500 |
msgstr "Nowe hasło"
|
@@ -542,162 +508,155 @@ msgstr "Avatar został poprawnie usunięty."
|
|
542 |
msgid "There was an error while trying to activate the user."
|
543 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
544 |
|
545 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
546 |
-
|
|
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
550 |
msgid ""
|
551 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
552 |
"please remember that you need to approve this user before he/she can log in!"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
556 |
msgid "A new subscriber has (been) registered!"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
560 |
#, fuzzy
|
561 |
msgid "A new account has been created for you."
|
562 |
msgstr "Konto dla %1$s zostało założone."
|
563 |
|
564 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
569 |
-
msgid "Your username is:"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
573 |
-
#, fuzzy
|
574 |
-
msgid "and password:"
|
575 |
-
msgstr "Hasło"
|
576 |
-
|
577 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
578 |
msgid ""
|
579 |
"Before you can access your account, an administrator needs to approve it. "
|
580 |
"You will be notified via email."
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
584 |
-
msgid "The user was NOT created!"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
588 |
msgid "A username is required for registration."
|
589 |
msgstr "Nazwa użytkownika jest wymagana do rejestracji."
|
590 |
|
591 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
592 |
msgid "Sorry, that username already exists!"
|
593 |
msgstr "Podany użytkownik już istnieje!"
|
594 |
|
595 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
596 |
msgid "You must enter a valid email address."
|
597 |
msgstr "Musisz podać poprawny adres email."
|
598 |
|
599 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
600 |
msgid "Sorry, that email address is already used!"
|
601 |
msgstr "Podany adres email został już wykorzystany!"
|
602 |
|
603 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
604 |
msgid "You didn't complete one of the password-fields!"
|
605 |
msgstr "Nie wypełniłeś jednego z pól z hasłem!"
|
606 |
|
607 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
608 |
-
|
|
|
|
|
|
|
|
|
609 |
#, fuzzy
|
610 |
msgid "The account was NOT created!"
|
611 |
msgstr "Konto dla %1$s zostało założone."
|
612 |
|
613 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
614 |
msgid "You must agree to the terms and conditions before registering!"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
618 |
msgid "(Several required fields were left uncompleted)"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
622 |
msgid "This username is already reserved to be used soon."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
626 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
627 |
msgid "Please try a different one!"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
631 |
#, fuzzy
|
632 |
msgid "This email address is already reserved to be used soon."
|
633 |
msgstr "Podany adres email został już wykorzystany!"
|
634 |
|
635 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
636 |
msgid "You are logged in as"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
640 |
msgid "You don't need another account."
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
644 |
#, fuzzy
|
645 |
msgid "Log out of this account."
|
646 |
msgstr "Wyloguj się z konta"
|
647 |
|
648 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
649 |
#, fuzzy
|
650 |
msgid "Logout"
|
651 |
msgstr "Wyloguj się »"
|
652 |
|
653 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
msgid "with information on how to activate his/her account"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
662 |
-
#, fuzzy
|
663 |
-
msgid "A user account has been created for"
|
664 |
msgstr "Konto dla %1$s zostało założone."
|
665 |
|
666 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
667 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
|
|
668 |
msgid ""
|
669 |
"You will soon be redirected automatically. If you see this page for more "
|
670 |
-
"than 3 seconds, please click"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
674 |
msgid ""
|
675 |
"An email has been sent to you with information on how to activate your "
|
676 |
-
"account"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
680 |
-
#, fuzzy
|
681 |
-
msgid "Thank you for registering"
|
682 |
msgstr "Dziękujemy za rejestrację, %1$s."
|
683 |
|
684 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
685 |
msgid "An error occured while trying to send the notification email."
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
689 |
msgid "An email containing activation instructions was successfully sent."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
693 |
msgid "An email containing the username and password was successfully sent."
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
697 |
msgid "Users can register themselves or you can manually create users here."
|
698 |
msgstr "Użytkownicy mogą zarejestrować się sami albo możesz dodać ich tutaj."
|
699 |
|
700 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
701 |
msgid ""
|
702 |
"Users cannot currently register themselves, but you can manually create "
|
703 |
"users here."
|
@@ -705,49 +664,49 @@ msgstr ""
|
|
705 |
"Aktualnie użytkownicy nie mogą zarejestrować się sami, ale możesz dodać ich "
|
706 |
"tutaj."
|
707 |
|
708 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
709 |
msgid "Only an administrator can add new users."
|
710 |
msgstr "Tylko administrator może dodać nowych użytkowników."
|
711 |
|
712 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
713 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
714 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
715 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
716 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
717 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
718 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
719 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
720 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
721 |
msgid ""
|
722 |
"This field must be filled out before registering (It was marked as required "
|
723 |
"by the administrator)"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
727 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
728 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
729 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
730 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
731 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
732 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
733 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
734 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
735 |
msgid "This field is marked as required by the administrator"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
739 |
msgid "Anti-Spam"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
743 |
msgid "Send these credentials via email."
|
744 |
msgstr "Wyślij hasło i login emailem."
|
745 |
|
746 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
747 |
msgid "Add User"
|
748 |
msgstr "Dodaj użytkownika"
|
749 |
|
750 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:
|
751 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
752 |
msgid "Register"
|
753 |
msgstr "Zarejestruj się"
|
@@ -766,7 +725,12 @@ msgstr "Grupa użytkowników"
|
|
766 |
msgid "Visibility"
|
767 |
msgstr "Widoczność"
|
768 |
|
769 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
|
|
|
|
|
|
|
|
|
|
770 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
771 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
772 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
@@ -782,7 +746,7 @@ msgstr "Widoczność"
|
|
782 |
msgid "Show"
|
783 |
msgstr "Pokaż"
|
784 |
|
785 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
786 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
787 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
788 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
@@ -798,26 +762,13 @@ msgstr "Pokaż"
|
|
798 |
msgid "Hide"
|
799 |
msgstr "Ukryj"
|
800 |
|
801 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:
|
802 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
803 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
804 |
-
msgid "NOTE:"
|
805 |
-
msgstr "UWAGA:"
|
806 |
-
|
807 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:41
|
808 |
-
msgid ""
|
809 |
-
"If you added new roles (via another plugin) <u>after</u> Profile Builder was "
|
810 |
-
"activated, please reactivate it, since the roles are initialized during "
|
811 |
-
"plugin activation."
|
812 |
-
msgstr ""
|
813 |
-
|
814 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:48
|
815 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
816 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
817 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
818 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
819 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
820 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
821 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
822 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
823 |
msgid "Save Changes"
|
@@ -953,6 +904,11 @@ msgstr ""
|
|
953 |
msgid "shortcode."
|
954 |
msgstr ""
|
955 |
|
|
|
|
|
|
|
|
|
|
|
956 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
957 |
msgid "this plugin only adds/removes fields in the front-end."
|
958 |
msgstr "ten plugin dodaje/usuwa pola wyłącznie na stronie."
|
@@ -1001,7 +957,13 @@ msgstr "Imię:"
|
|
1001 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
1002 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
1003 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
1004 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1005 |
msgid "Yes"
|
1006 |
msgstr "Tak"
|
1007 |
|
@@ -1019,7 +981,13 @@ msgstr "Tak"
|
|
1019 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
1020 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
1021 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
1022 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1023 |
msgid "No"
|
1024 |
msgstr "Nie"
|
1025 |
|
@@ -1043,7 +1011,7 @@ msgstr "Nowe hasło"
|
|
1043 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1044 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1045 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1046 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1047 |
msgid "General Settings"
|
1048 |
msgstr ""
|
1049 |
|
@@ -1052,10 +1020,6 @@ msgstr ""
|
|
1052 |
msgid "Stylesheet Used on the Front-End:"
|
1053 |
msgstr "Używane style:"
|
1054 |
|
1055 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
1056 |
-
msgid "Default"
|
1057 |
-
msgstr "Domyślny"
|
1058 |
-
|
1059 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1060 |
msgid "White"
|
1061 |
msgstr "Biały"
|
@@ -1094,25 +1058,20 @@ msgid ""
|
|
1094 |
msgstr ""
|
1095 |
|
1096 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
|
|
1097 |
msgid ""
|
1098 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1099 |
-
"Please <
|
1100 |
-
"
|
1101 |
-
"
|
1102 |
-
"www.cozmoslabs.com/wordpress-profile-builder/?"
|
1103 |
-
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Purchase' target='_blank' "
|
1104 |
-
"class='button-primary'>Purchase one now</a>"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
|
|
1108 |
msgid ""
|
1109 |
-
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please
|
1110 |
-
"
|
1111 |
-
"
|
1112 |
-
"a> to receive access to automatic updates and priority support. <a "
|
1113 |
-
"href='http://www.cozmoslabs.com/downloads/profile-builder-pro-1-year/?"
|
1114 |
-
"utm_source=PB&utm_medium=plugin&utm_campaign=PB-Renewal' target='_blank' "
|
1115 |
-
"class='button-primary'>Purchase one now</a>"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
@@ -1169,7 +1128,8 @@ msgid "Inactive"
|
|
1169 |
msgstr ""
|
1170 |
|
1171 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1172 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1173 |
msgid "Custom Redirects"
|
1174 |
msgstr ""
|
1175 |
|
@@ -1179,76 +1139,78 @@ msgstr ""
|
|
1179 |
msgid "reCAPTCHA"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1183 |
msgid "Redirects on custom page requests:"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1187 |
msgid "Action"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1191 |
#, fuzzy
|
1192 |
msgid "Redirect"
|
1193 |
msgstr "Wymagane"
|
1194 |
|
1195 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
|
|
1196 |
msgid "URL"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1200 |
msgid "After Registration:"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1204 |
msgid "After Login:"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1208 |
#, fuzzy
|
1209 |
msgid "Recover Password (*)"
|
1210 |
msgstr "Powtórz hasło"
|
1211 |
|
1212 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1213 |
msgid ""
|
1214 |
"When activated this feature will redirect the user on both the default "
|
1215 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1216 |
"Profile Builder on the front-end login page."
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1220 |
msgid "Redirects on default WordPress page requests:"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1224 |
msgid "Requested WP Page"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1228 |
-
msgid "Default WP Login Page(*)"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1232 |
-
msgid "Default WP Logout Page(**)"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1236 |
msgid "Default WP Register Page"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1240 |
msgid "Default WP Dashboard (***)"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1244 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1248 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:
|
1252 |
msgid ""
|
1253 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1254 |
"manage options)."
|
@@ -1259,7 +1221,6 @@ msgid "Could not open socket!"
|
|
1259 |
msgstr ""
|
1260 |
|
1261 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
1262 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:120
|
1263 |
msgid "To use reCAPTCHA you must get an API key from"
|
1264 |
msgstr ""
|
1265 |
|
@@ -1304,7 +1265,7 @@ msgstr ""
|
|
1304 |
msgid "Private Key:"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:
|
1308 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1309 |
msgstr ""
|
1310 |
|
@@ -1320,160 +1281,171 @@ msgid ""
|
|
1320 |
"authors, visible to only the users currently logged in, you would use:"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1324 |
msgid "These settings are applied to the front-end userlisting."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1328 |
msgid "Number of Users/Page: "
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1332 |
msgid "Default Sorting Order: "
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1336 |
msgid "\"All-Userlisting\" Template"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1340 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1341 |
msgid ""
|
1342 |
"With the userlisting templates you can customize the look, feel and "
|
1343 |
"information listed by the shortcode."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1347 |
msgid ""
|
1348 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1349 |
"on each page access where the shortcode is present."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1353 |
msgid "Avatar size: "
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1357 |
msgid "Insert \"Sort By\" Field:"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1361 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1362 |
msgid "Insert \"User-Meta\" Field:"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1366 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1367 |
msgid "Insert Extra Functions:"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1371 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1375 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1376 |
msgid ""
|
1377 |
"If you wish to use a default userlisting, just copy the following code and "
|
1378 |
"paste it in the textarea below:"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1382 |
msgid "\"Single-Userlisting\" Template"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1386 |
msgid ""
|
1387 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1388 |
"It's displayed when clickin on the \"more info\" link."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1392 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1396 |
msgid ""
|
1397 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1401 |
msgid "You can find it in Profile Builder's menu."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1405 |
#, fuzzy
|
1406 |
msgid "You need to be logged in to view the userlisting!"
|
1407 |
msgstr "Musisz być zalogowany żeby edytować swój profil."
|
1408 |
|
1409 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1410 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1411 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1412 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1413 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1414 |
msgid "Search Users by All Fields"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1418 |
msgid "Leave Blank and Press Search to List All Users"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1422 |
msgid "Search"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1426 |
#, fuzzy
|
1427 |
msgid "First/Lastname"
|
1428 |
msgstr "Imię"
|
1429 |
|
1430 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1431 |
#, fuzzy
|
1432 |
msgid "Email"
|
1433 |
msgstr "E-mail"
|
1434 |
|
1435 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1436 |
msgid "Sign-up Date"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1440 |
#, fuzzy
|
1441 |
msgid "Firstname"
|
1442 |
msgstr "Imię"
|
1443 |
|
1444 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1445 |
#, fuzzy
|
1446 |
msgid "Lastname"
|
1447 |
msgstr "Nazwisko"
|
1448 |
|
1449 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1450 |
#, fuzzy
|
1451 |
msgid "Display Name"
|
1452 |
msgstr "Imię"
|
1453 |
|
1454 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1455 |
msgid "Posts"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1459 |
msgid "Click here to see more information about this user"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1463 |
msgid "More..."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1467 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1468 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1469 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1470 |
#, fuzzy
|
1471 |
msgid "No uploaded attachment"
|
1472 |
msgstr "Załącznik \""
|
1473 |
|
1474 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1475 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1476 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1477 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1478 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1479 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
@@ -1482,17 +1454,17 @@ msgstr "Załącznik \""
|
|
1482 |
msgid "Click to see the current attachment"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1486 |
msgid "Click here to go back"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1490 |
#, fuzzy
|
1491 |
msgid "Back"
|
1492 |
msgstr "Czarny"
|
1493 |
|
1494 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1495 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1496 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1497 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1498 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
@@ -1501,118 +1473,118 @@ msgstr "Czarny"
|
|
1501 |
msgid "Current file"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1505 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1506 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1507 |
msgid "Avatar"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1511 |
msgid "No results found!"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1515 |
msgid "«« First"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1519 |
msgid "« Prev"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1523 |
#, fuzzy
|
1524 |
msgid "Next » "
|
1525 |
msgstr "Wyloguj się »"
|
1526 |
|
1527 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:
|
1528 |
#, fuzzy
|
1529 |
msgid "Last »»"
|
1530 |
msgstr "Wyloguj się »"
|
1531 |
|
1532 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1533 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1534 |
#, fuzzy
|
1535 |
msgid "You must give your option a title."
|
1536 |
msgstr "Musisz być zalogowany żeby edytować swój profil."
|
1537 |
|
1538 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1539 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1540 |
msgid "You have entered an invalid meta-key format!"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1544 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1545 |
#, fuzzy
|
1546 |
msgid "You must enter a valid meta-key."
|
1547 |
msgstr "Musisz podać poprawny adres email."
|
1548 |
|
1549 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1550 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1551 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1552 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1553 |
msgid "That meta-key is already in use."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1557 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1558 |
msgid ""
|
1559 |
"There is already an avatar input-type. You can only have one avatar present."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1563 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1564 |
msgid ""
|
1565 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1566 |
"have one present."
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1570 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1571 |
msgid "The textarea row value must be numeric."
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1575 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1576 |
msgid "The maxlength attribute must be numeric."
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1580 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1581 |
msgid "The value must be between 20 and 200!"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:343
|
1585 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:493
|
1586 |
-
msgid "The width component of the entered value must be numeric!"
|
1587 |
-
msgstr ""
|
1588 |
-
|
1589 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1590 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1591 |
-
msgid "The
|
1592 |
msgstr ""
|
1593 |
|
1594 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1595 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1596 |
-
msgid "The
|
1597 |
msgstr ""
|
1598 |
|
1599 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1600 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1601 |
-
msgid "The
|
1602 |
msgstr ""
|
1603 |
|
1604 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1605 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
|
|
|
|
|
|
|
|
|
|
1606 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1610 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1611 |
msgid "The entered avatar size must be numeric!"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1615 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:
|
1616 |
msgid "There was an error, please try again."
|
1617 |
msgstr ""
|
1618 |
|
@@ -1625,24 +1597,23 @@ msgid "the current user?"
|
|
1625 |
msgstr ""
|
1626 |
|
1627 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1628 |
-
|
1629 |
-
msgid "Your account on"
|
1630 |
-
msgstr ""
|
1631 |
-
|
1632 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1633 |
-
msgid "has been approved!"
|
1634 |
-
msgstr ""
|
1635 |
|
1636 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1637 |
-
|
|
|
1638 |
msgstr ""
|
1639 |
|
1640 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1641 |
-
|
1642 |
-
|
|
|
1643 |
|
1644 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1645 |
-
|
|
|
1646 |
msgstr ""
|
1647 |
|
1648 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
@@ -1674,11 +1645,8 @@ msgid "approve"
|
|
1674 |
msgstr ""
|
1675 |
|
1676 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1681 |
-
msgid "this user?"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
@@ -1932,6 +1900,11 @@ msgstr "Profile Builder "
|
|
1932 |
msgid "Don't have an account?"
|
1933 |
msgstr ""
|
1934 |
|
|
|
|
|
|
|
|
|
|
|
1935 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1936 |
#, fuzzy
|
1937 |
msgid "Lost Your Password?"
|
@@ -1943,15 +1916,15 @@ msgid "Login"
|
|
1943 |
msgstr "Zaloguj się"
|
1944 |
|
1945 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1946 |
-
msgid "After login redirect URL:"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1950 |
-
msgid "Register page URL (optional)"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1954 |
-
msgid "Password Recovery page URL (optional)"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
@@ -1962,21 +1935,21 @@ msgstr ""
|
|
1962 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1966 |
#, php-format
|
1967 |
msgid ""
|
1968 |
-
"Your <strong>Profile Builder
|
1969 |
-
"
|
1970 |
-
"
|
1971 |
-
"%sDismiss%s"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:
|
1975 |
#, php-format
|
1976 |
msgid ""
|
1977 |
-
"Your <strong>Profile Builder
|
1978 |
-
"%sRenew Your Licence%s to receive access to automatic updates and
|
1979 |
-
"support. %sPurchase one now%s %sDismiss%s"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
@@ -2045,6 +2018,26 @@ msgstr ""
|
|
2045 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2046 |
msgstr ""
|
2047 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2048 |
#~ msgid "Plugin Layout"
|
2049 |
#~ msgstr "Układ pluginu"
|
2050 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: ProfileBuilder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-10 11:27+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-10 11:28+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"
|
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:83
|
19 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"The information size you were trying to submit was larger than %1$sb!<br/"
|
23 |
+
">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
|
24 |
+
"it was also larger than %2$sb no additional information is available.<br/"
|
25 |
+
">The user was NOT created!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
|
29 |
msgid "You must be logged in to edit your profile."
|
30 |
msgstr "Musisz być zalogowany żeby edytować swój profil."
|
31 |
|
32 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
|
33 |
msgid "The avatar was successfully deleted."
|
34 |
msgstr "Avatar został poprawnie usunięty."
|
35 |
|
36 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
|
37 |
+
#, fuzzy, php-format
|
38 |
+
msgid "The attachment \"%1$s\" was successfully deleted."
|
39 |
+
msgstr "Avatar został poprawnie usunięty."
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
|
42 |
msgid "The changes have been successfully saved."
|
43 |
msgstr "Zmiany zostały zachowane"
|
44 |
|
45 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
46 |
#, fuzzy
|
47 |
msgid ""
|
48 |
"The email address you entered is already registered to a different user."
|
50 |
"Podany adres email jest już wykorzystywany przez innego użytkownika.<br/"
|
51 |
">Adres email to "
|
52 |
|
53 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
54 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
55 |
msgid "The email address was"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
59 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
60 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
61 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
62 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
63 |
msgid "NOT"
|
64 |
msgstr "NIE "
|
65 |
|
66 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
|
67 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
68 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
69 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
70 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
|
|
71 |
#, fuzzy
|
72 |
msgid "updated along with the rest of the information."
|
73 |
msgstr " zaktualizowane razem z pozostałymi informacjami."
|
74 |
|
75 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
|
76 |
#, fuzzy
|
77 |
msgid "The email address you entered is invalid."
|
78 |
msgstr ""
|
79 |
"Adres email, który wprowadziłeś, jest nieprawidłowy. <br/> Adres email to "
|
80 |
|
81 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
82 |
#, fuzzy
|
83 |
msgid "The passwords you entered do not match."
|
84 |
msgstr "Hasła, które wprowadziłeś, nie są jednakowe. <br/> Hasło to "
|
85 |
|
86 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
|
87 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
88 |
#, fuzzy
|
89 |
msgid "The password was"
|
90 |
msgstr "Nowe hasło"
|
91 |
|
92 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
|
93 |
#, fuzzy
|
94 |
msgid "You didn't complete both password fields."
|
95 |
msgstr "Nie wypełniłeś jednego z pól z hasłem!"
|
96 |
|
97 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
|
98 |
msgid "Your profile was NOT updated!"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
|
102 |
#, fuzzy
|
103 |
msgid "There was an error while trying to upload the following attachments:"
|
104 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
105 |
|
106 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
|
107 |
+
#, php-format
|
108 |
+
msgid ""
|
109 |
+
"Possible cause: the size was bigger than %1$sb. The listed attachements were "
|
110 |
+
"%2$sNOT%3$s updated along with the rest of the information."
|
111 |
+
msgstr ""
|
|
|
|
|
|
|
112 |
|
113 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
114 |
#, fuzzy
|
115 |
msgid "There was an error while trying to upload your avatar picture."
|
116 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
117 |
|
118 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
119 |
msgid "Possible cause: size/incorrect file-type."
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
|
123 |
msgid "The avatar was"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
|
127 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:897
|
128 |
#, fuzzy
|
129 |
msgid "There was an error while trying to upload the following attachment(s)"
|
130 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
131 |
|
132 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
|
133 |
+
#, php-format
|
134 |
+
msgid ""
|
135 |
+
"Only files with the following extension(s) can be uploaded: %1$s<br/>This "
|
136 |
+
"file was %2$sNOT%3$s updated along with the rest of the information."
|
|
|
|
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
|
140 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1277
|
141 |
msgid "Name"
|
142 |
msgstr "Imię"
|
143 |
|
144 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
|
145 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
|
146 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1298
|
|
|
147 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
|
148 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
|
149 |
msgid "Username"
|
150 |
msgstr "Nazwa użytkownika"
|
151 |
|
152 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
|
153 |
#, fuzzy
|
154 |
msgid "Usernames cannot be changed."
|
155 |
msgstr "Nazwa użytkownika nie może zostać zmieniona."
|
156 |
|
157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
|
158 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
|
159 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:726
|
160 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:746
|
161 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:796
|
162 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:817
|
163 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:835
|
164 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:853
|
165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:871
|
166 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:892
|
167 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:64
|
168 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:166
|
169 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:232
|
178 |
msgid "This field is marked as required by the administrator."
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
|
182 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
|
183 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:729
|
184 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:749
|
185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:799
|
186 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:819
|
187 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:837
|
188 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:855
|
189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:873
|
190 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:894
|
191 |
msgid ""
|
192 |
"This field wasn't updated because you entered and empty string (It was "
|
193 |
"marked as required by the administrator."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
|
197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1322
|
198 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
|
199 |
msgid "First Name"
|
200 |
msgstr "Imię"
|
201 |
|
202 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
|
203 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1346
|
204 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
|
205 |
msgid "Last Name"
|
206 |
msgstr "Nazwisko"
|
207 |
|
208 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
|
209 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1370
|
210 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
|
211 |
msgid "Nickname"
|
212 |
msgstr "Ksywa"
|
213 |
|
214 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:757
|
215 |
msgid "Display name publicly as"
|
216 |
msgstr "Pokaż publicznie jako"
|
217 |
|
218 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
|
219 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1376
|
220 |
msgid "Contact Info"
|
221 |
msgstr "Dane kontaktowe"
|
222 |
|
223 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
|
224 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1397
|
|
|
225 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
|
226 |
msgid "E-mail"
|
227 |
msgstr "E-mail"
|
228 |
|
229 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
|
230 |
msgid "(required)"
|
231 |
msgstr "(wymagane)"
|
232 |
|
233 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
|
234 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1421
|
235 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
|
236 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
|
237 |
msgid "Website"
|
238 |
msgstr "Strona www"
|
239 |
|
240 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
|
241 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1445
|
242 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
|
243 |
msgid "AIM"
|
244 |
msgstr "AIM"
|
245 |
|
246 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
|
247 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1469
|
248 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
|
249 |
msgid "Yahoo IM"
|
250 |
msgstr "Komunikator Yahoo"
|
251 |
|
252 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
|
253 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1493
|
254 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
|
255 |
msgid "Jabber / Google Talk"
|
256 |
msgstr "Jabber / GTalk"
|
257 |
|
258 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
|
259 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1499
|
260 |
msgid "About Yourself"
|
261 |
msgstr "O sobie"
|
262 |
|
263 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
|
264 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1520
|
265 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
|
266 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
|
267 |
msgid "Biographical Info"
|
268 |
msgstr "Informacje biograficzne"
|
269 |
|
270 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
|
271 |
msgid "New Password"
|
272 |
msgstr "Nowe hasło"
|
273 |
|
274 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
|
275 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
|
276 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
|
277 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
|
278 |
msgid "Repeat Password"
|
279 |
msgstr "Powtórz hasło"
|
280 |
|
281 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
|
282 |
msgid "Update"
|
283 |
msgstr "Aktualizuj"
|
284 |
|
285 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
286 |
+
#, fuzzy, php-format
|
287 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
288 |
msgstr "Jesteś zalogowany jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
289 |
|
290 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
291 |
msgid "Log out of this account"
|
292 |
msgstr "Wyloguj się z konta"
|
293 |
|
294 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
|
295 |
#, fuzzy
|
296 |
msgid "Log out"
|
297 |
msgstr "Wyloguj się &raguo;"
|
298 |
|
299 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
|
300 |
+
#, fuzzy, php-format
|
301 |
+
msgid "You have successfully logged in as %1$s"
|
302 |
msgstr "Zalogowałeś się jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
303 |
|
304 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
305 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
306 |
+
#, php-format
|
307 |
msgid ""
|
308 |
"You will soon be redirected automatically. If you see this page for more "
|
309 |
+
"than 1 second, please click %1$s"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
|
313 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
|
314 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
315 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
316 |
msgid "here"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
320 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
321 |
msgid "ERROR:"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
|
325 |
msgid "The username field is empty"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
|
329 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
|
330 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
|
331 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1553
|
332 |
msgid "Password"
|
333 |
msgstr "Hasło"
|
334 |
|
335 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:138
|
336 |
msgid "Log in"
|
337 |
msgstr "Zaloguj się"
|
338 |
|
339 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:142
|
340 |
msgid "Remember me"
|
341 |
msgstr "Zapamiętaj mnie"
|
342 |
|
343 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:157
|
344 |
msgid "Lost password?"
|
345 |
msgstr "Zapomniałeś hasła?"
|
346 |
|
347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
348 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
349 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
350 |
msgid "ERROR"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
|
354 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
|
355 |
msgid ""
|
356 |
"Your account has to be confirmed by an administrator before you can use the "
|
357 |
"\"Password Reset\" feature."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
|
361 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
|
362 |
+
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
363 |
msgid ""
|
364 |
+
"A password reset email has been sent to %1$s.<br/>Following the link sent in "
|
365 |
+
"the email address will reset the password."
|
366 |
msgstr ""
|
367 |
|
368 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
369 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
|
370 |
+
#, php-format
|
371 |
+
msgid ""
|
372 |
+
"Someone requested that the password be reset for the following account: <b>"
|
373 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
374 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
|
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
|
378 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
|
379 |
+
#, php-format
|
380 |
+
msgid "Password Reset Feature from \"%1$s\""
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
|
384 |
+
#, fuzzy, php-format
|
385 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
|
|
386 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
387 |
|
388 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
389 |
#, fuzzy
|
390 |
msgid "The email address entered wasn't found in the database!"
|
391 |
msgstr ""
|
392 |
"Adres email, który wprowadziłeś, jest nieprawidłowy. <br/> Adres email to "
|
393 |
|
394 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
|
395 |
msgid "Please check that you entered the correct email address."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
|
399 |
+
#, fuzzy
|
400 |
+
msgid "There was an error while trying to send the activation link to "
|
401 |
+
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
402 |
+
|
403 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
404 |
msgid "The username entered wasn't found in the database!"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
|
408 |
msgid "Please check that you entered the correct username."
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
|
412 |
#, fuzzy
|
413 |
msgid "Your password has been successfully changed!"
|
414 |
msgstr "Zmiany zostały zachowane"
|
415 |
|
416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
|
417 |
+
#, fuzzy, php-format
|
418 |
+
msgid "You have successfully reset your password to: %1$s"
|
419 |
+
msgstr "Zalogowałeś się jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
420 |
|
421 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
|
422 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
|
423 |
+
#, fuzzy, php-format
|
424 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
425 |
msgstr "\" został poprawnie usunięty."
|
426 |
|
427 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
|
428 |
+
#, php-format
|
429 |
+
msgid ""
|
430 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
431 |
+
"her new password is:%2$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
|
435 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:894
|
436 |
msgid "The entered passwords don't match!"
|
437 |
msgstr "Wprowadzone hasła nie zgadzają się!"
|
438 |
|
439 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
|
440 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
|
441 |
#, fuzzy
|
442 |
msgid "Reset Password"
|
443 |
msgstr "Powtórz hasło"
|
444 |
|
445 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
|
446 |
msgid "Invalid key!"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
450 |
#, fuzzy
|
451 |
msgid "Please enter your username or email address."
|
452 |
msgstr "Musisz podać poprawny adres email."
|
453 |
|
454 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
|
455 |
msgid "You will receive a link to create a new password via email."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
|
459 |
#, fuzzy
|
460 |
msgid "Username or E-mail"
|
461 |
msgstr "Nazwa użytkownika"
|
462 |
|
463 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
|
464 |
#, fuzzy
|
465 |
msgid "Get New Password"
|
466 |
msgstr "Nowe hasło"
|
508 |
msgid "There was an error while trying to activate the user."
|
509 |
msgstr "Wystąpił błąd podczas wgrywania następujących załączników:<br/>"
|
510 |
|
511 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
|
512 |
+
#, php-format
|
513 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
|
517 |
msgid ""
|
518 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
519 |
"please remember that you need to approve this user before he/she can log in!"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
|
523 |
msgid "A new subscriber has (been) registered!"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:522
|
527 |
#, fuzzy
|
528 |
msgid "A new account has been created for you."
|
529 |
msgstr "Konto dla %1$s zostało założone."
|
530 |
|
531 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
|
532 |
+
#, php-format
|
533 |
+
msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
|
|
|
|
|
|
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
|
|
|
|
|
|
|
|
|
|
|
537 |
msgid ""
|
538 |
"Before you can access your account, an administrator needs to approve it. "
|
539 |
"You will be notified via email."
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
|
|
|
|
|
|
|
|
|
543 |
msgid "A username is required for registration."
|
544 |
msgstr "Nazwa użytkownika jest wymagana do rejestracji."
|
545 |
|
546 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
|
547 |
msgid "Sorry, that username already exists!"
|
548 |
msgstr "Podany użytkownik już istnieje!"
|
549 |
|
550 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:887
|
551 |
msgid "You must enter a valid email address."
|
552 |
msgstr "Musisz podać poprawny adres email."
|
553 |
|
554 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:889
|
555 |
msgid "Sorry, that email address is already used!"
|
556 |
msgstr "Podany adres email został już wykorzystany!"
|
557 |
|
558 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
|
559 |
msgid "You didn't complete one of the password-fields!"
|
560 |
msgstr "Nie wypełniłeś jednego z pól z hasłem!"
|
561 |
|
562 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
563 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
|
567 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
568 |
#, fuzzy
|
569 |
msgid "The account was NOT created!"
|
570 |
msgstr "Konto dla %1$s zostało założone."
|
571 |
|
572 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:908
|
573 |
msgid "You must agree to the terms and conditions before registering!"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
|
577 |
msgid "(Several required fields were left uncompleted)"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
581 |
msgid "This username is already reserved to be used soon."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
|
585 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
586 |
msgid "Please try a different one!"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
|
590 |
#, fuzzy
|
591 |
msgid "This email address is already reserved to be used soon."
|
592 |
msgstr "Podany adres email został już wykorzystany!"
|
593 |
|
594 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
595 |
msgid "You are logged in as"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
599 |
msgid "You don't need another account."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
603 |
#, fuzzy
|
604 |
msgid "Log out of this account."
|
605 |
msgstr "Wyloguj się z konta"
|
606 |
|
607 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
|
608 |
#, fuzzy
|
609 |
msgid "Logout"
|
610 |
msgstr "Wyloguj się »"
|
611 |
|
612 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
|
613 |
+
#, php-format
|
614 |
+
msgid ""
|
615 |
+
"An email has been sent to %1$s with information on how to activate his/her "
|
616 |
+
"account."
|
|
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1172
|
620 |
+
#, fuzzy, php-format
|
621 |
+
msgid "A user account has been created for %1$s."
|
622 |
msgstr "Konto dla %1$s zostało założone."
|
623 |
|
624 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
|
625 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
|
626 |
+
#, php-format
|
627 |
msgid ""
|
628 |
"You will soon be redirected automatically. If you see this page for more "
|
629 |
+
"than 3 seconds, please click %1$s.%2$s"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1197
|
633 |
msgid ""
|
634 |
"An email has been sent to you with information on how to activate your "
|
635 |
+
"account."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1201
|
639 |
+
#, fuzzy, php-format
|
640 |
+
msgid "Thank you for registering %1$s."
|
641 |
msgstr "Dziękujemy za rejestrację, %1$s."
|
642 |
|
643 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1228
|
644 |
msgid "An error occured while trying to send the notification email."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
|
648 |
msgid "An email containing activation instructions was successfully sent."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
|
652 |
msgid "An email containing the username and password was successfully sent."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1254
|
656 |
msgid "Users can register themselves or you can manually create users here."
|
657 |
msgstr "Użytkownicy mogą zarejestrować się sami albo możesz dodać ich tutaj."
|
658 |
|
659 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
|
660 |
msgid ""
|
661 |
"Users cannot currently register themselves, but you can manually create "
|
662 |
"users here."
|
664 |
"Aktualnie użytkownicy nie mogą zarejestrować się sami, ale możesz dodać ich "
|
665 |
"tutaj."
|
666 |
|
667 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
|
668 |
msgid "Only an administrator can add new users."
|
669 |
msgstr "Tylko administrator może dodać nowych użytkowników."
|
670 |
|
671 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1287
|
672 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1311
|
673 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1335
|
674 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1359
|
675 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1410
|
676 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1434
|
677 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1458
|
678 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1482
|
679 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1509
|
680 |
msgid ""
|
681 |
"This field must be filled out before registering (It was marked as required "
|
682 |
"by the administrator)"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1308
|
686 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1332
|
687 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1356
|
688 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1383
|
689 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1407
|
690 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1431
|
691 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1455
|
692 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1479
|
693 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1506
|
694 |
msgid "This field is marked as required by the administrator"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1581
|
698 |
msgid "Anti-Spam"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1602
|
702 |
msgid "Send these credentials via email."
|
703 |
msgstr "Wyślij hasło i login emailem."
|
704 |
|
705 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
706 |
msgid "Add User"
|
707 |
msgstr "Dodaj użytkownika"
|
708 |
|
709 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
|
710 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
|
711 |
msgid "Register"
|
712 |
msgstr "Zarejestruj się"
|
725 |
msgid "Visibility"
|
726 |
msgstr "Widoczność"
|
727 |
|
728 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
|
729 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
|
730 |
+
msgid "Default"
|
731 |
+
msgstr "Domyślny"
|
732 |
+
|
733 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
|
734 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
|
735 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
|
736 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
|
746 |
msgid "Show"
|
747 |
msgstr "Pokaż"
|
748 |
|
749 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
|
750 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
|
751 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
|
752 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
|
762 |
msgid "Hide"
|
763 |
msgstr "Ukryj"
|
764 |
|
765 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
766 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
767 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
768 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
769 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
|
770 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
771 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
|
772 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
773 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
774 |
msgid "Save Changes"
|
904 |
msgid "shortcode."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
|
908 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
|
909 |
+
msgid "NOTE:"
|
910 |
+
msgstr "UWAGA:"
|
911 |
+
|
912 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
|
913 |
msgid "this plugin only adds/removes fields in the front-end."
|
914 |
msgstr "ten plugin dodaje/usuwa pola wyłącznie na stronie."
|
957 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
|
958 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
|
959 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
|
960 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
|
961 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
|
962 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
|
963 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
|
964 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
|
965 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
|
966 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
|
967 |
msgid "Yes"
|
968 |
msgstr "Tak"
|
969 |
|
981 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
|
982 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
|
983 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
|
984 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
|
985 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
|
986 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
|
987 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
|
988 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
|
989 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
|
990 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
|
991 |
msgid "No"
|
992 |
msgstr "Nie"
|
993 |
|
1011 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
|
1012 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
|
1013 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
|
1014 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
|
1015 |
msgid "General Settings"
|
1016 |
msgstr ""
|
1017 |
|
1020 |
msgid "Stylesheet Used on the Front-End:"
|
1021 |
msgstr "Używane style:"
|
1022 |
|
|
|
|
|
|
|
|
|
1023 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1024 |
msgid "White"
|
1025 |
msgstr "Biały"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
|
1061 |
+
#, php-format
|
1062 |
msgid ""
|
1063 |
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1064 |
+
"Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
|
1065 |
+
"access to automatic updates and support. Need a license key? %3$sPurchase "
|
1066 |
+
"one now%4$s"
|
|
|
|
|
|
|
1067 |
msgstr ""
|
1068 |
|
1069 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
|
1070 |
+
#, php-format
|
1071 |
msgid ""
|
1072 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1073 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1074 |
+
"priority support. %3$sPurchase one now%4$s"
|
|
|
|
|
|
|
|
|
1075 |
msgstr ""
|
1076 |
|
1077 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
|
1128 |
msgstr ""
|
1129 |
|
1130 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
|
1131 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
|
1132 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
|
1133 |
msgid "Custom Redirects"
|
1134 |
msgstr ""
|
1135 |
|
1139 |
msgid "reCAPTCHA"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
|
1143 |
msgid "Redirects on custom page requests:"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
|
1147 |
msgid "Action"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
|
1151 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
|
1152 |
#, fuzzy
|
1153 |
msgid "Redirect"
|
1154 |
msgstr "Wymagane"
|
1155 |
|
1156 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
|
1157 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
|
1158 |
msgid "URL"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
|
1162 |
msgid "After Registration:"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
|
1166 |
msgid "After Login:"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
|
1170 |
#, fuzzy
|
1171 |
msgid "Recover Password (*)"
|
1172 |
msgstr "Powtórz hasło"
|
1173 |
|
1174 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
|
1175 |
msgid ""
|
1176 |
"When activated this feature will redirect the user on both the default "
|
1177 |
"Wordpress password recovery page and the \"Lost password?\" link used by "
|
1178 |
"Profile Builder on the front-end login page."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
|
1182 |
msgid "Redirects on default WordPress page requests:"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
|
1186 |
msgid "Requested WP Page"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
|
1190 |
+
msgid "Default WP Login Page (*)"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
|
1194 |
+
msgid "Default WP Logout Page (**)"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
|
1198 |
msgid "Default WP Register Page"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
|
1202 |
msgid "Default WP Dashboard (***)"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
|
1206 |
msgid "Before login. Works best if used in conjuction with \"After logout\"."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
|
1210 |
msgid "After logout. Works best if used in conjuction with \"Before login\"."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
|
1214 |
msgid ""
|
1215 |
"Redirects every user-role EXCEPT the ones with administrator privilages (can "
|
1216 |
"manage options)."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
|
|
|
1224 |
msgid "To use reCAPTCHA you must get an API key from"
|
1225 |
msgstr ""
|
1226 |
|
1265 |
msgid "Private Key:"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
|
1269 |
msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
|
1270 |
msgstr ""
|
1271 |
|
1281 |
"authors, visible to only the users currently logged in, you would use:"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1285 |
+
msgid ""
|
1286 |
+
"You can also create a userlisting page that displays users having a certain "
|
1287 |
+
"meta-value within a certain (extra) meta-field like so:"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:35
|
1291 |
+
msgid ""
|
1292 |
+
"Remember though, that the field-value combination must exist in the database."
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:40
|
1296 |
msgid "These settings are applied to the front-end userlisting."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:46
|
1300 |
msgid "Number of Users/Page: "
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:63
|
1304 |
msgid "Default Sorting Order: "
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:74
|
1308 |
msgid "\"All-Userlisting\" Template"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:76
|
1312 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:218
|
1313 |
msgid ""
|
1314 |
"With the userlisting templates you can customize the look, feel and "
|
1315 |
"information listed by the shortcode."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:77
|
1319 |
msgid ""
|
1320 |
"The \"All Users Listing\" template is used to list all users. It's displayed "
|
1321 |
"on each page access where the shortcode is present."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:81
|
1325 |
msgid "Avatar size: "
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:97
|
1329 |
msgid "Insert \"Sort By\" Field:"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:125
|
1333 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:224
|
1334 |
msgid "Insert \"User-Meta\" Field:"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:156
|
1338 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:262
|
1339 |
msgid "Insert Extra Functions:"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:171
|
1343 |
msgid "Show/Hide Default \"All-Userlisting\" Code"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:173
|
1347 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:276
|
1348 |
msgid ""
|
1349 |
"If you wish to use a default userlisting, just copy the following code and "
|
1350 |
"paste it in the textarea below:"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:216
|
1354 |
msgid "\"Single-Userlisting\" Template"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:219
|
1358 |
msgid ""
|
1359 |
"The \"Single User Listing\" template is used to list an individual user. "
|
1360 |
"It's displayed when clickin on the \"more info\" link."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:274
|
1364 |
msgid "Show/Hide Default \"Single-Userlisting\" Code"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1368 |
msgid ""
|
1369 |
"You need to activate the User-Listing feature from within the \"Addons\" tab!"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:380
|
1373 |
msgid "You can find it in Profile Builder's menu."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
|
1377 |
#, fuzzy
|
1378 |
msgid "You need to be logged in to view the userlisting!"
|
1379 |
msgstr "Musisz być zalogowany żeby edytować swój profil."
|
1380 |
|
1381 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
|
1382 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
|
1383 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1384 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1328
|
1385 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1414
|
1386 |
msgid "Search Users by All Fields"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:487
|
1390 |
msgid "Leave Blank and Press Search to List All Users"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
|
1394 |
msgid "Search"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
|
1398 |
#, fuzzy
|
1399 |
msgid "First/Lastname"
|
1400 |
msgstr "Imię"
|
1401 |
|
1402 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
|
1403 |
#, fuzzy
|
1404 |
msgid "Email"
|
1405 |
msgstr "E-mail"
|
1406 |
|
1407 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
|
1408 |
msgid "Sign-up Date"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
|
1412 |
#, fuzzy
|
1413 |
msgid "Firstname"
|
1414 |
msgstr "Imię"
|
1415 |
|
1416 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
|
1417 |
#, fuzzy
|
1418 |
msgid "Lastname"
|
1419 |
msgstr "Nazwisko"
|
1420 |
|
1421 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
|
1422 |
#, fuzzy
|
1423 |
msgid "Display Name"
|
1424 |
msgstr "Imię"
|
1425 |
|
1426 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
|
1427 |
msgid "Posts"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1431 |
msgid "Click here to see more information about this user"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
|
1435 |
msgid "More..."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
|
1439 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1440 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1441 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1442 |
#, fuzzy
|
1443 |
msgid "No uploaded attachment"
|
1444 |
msgstr "Załącznik \""
|
1445 |
|
1446 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
|
1447 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1448 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1160
|
1449 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1450 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
|
1451 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
|
1454 |
msgid "Click to see the current attachment"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1458 |
msgid "Click here to go back"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
|
1462 |
#, fuzzy
|
1463 |
msgid "Back"
|
1464 |
msgstr "Czarny"
|
1465 |
|
1466 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
|
1467 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
|
1468 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
|
1469 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:581
|
1470 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
|
1473 |
msgid "Current file"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
|
1477 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
|
1478 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:719
|
1479 |
msgid "Avatar"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1215
|
1483 |
msgid "No results found!"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
|
1487 |
msgid "«« First"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
|
1491 |
msgid "« Prev"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
|
1495 |
#, fuzzy
|
1496 |
msgid "Next » "
|
1497 |
msgstr "Wyloguj się »"
|
1498 |
|
1499 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
|
1500 |
#, fuzzy
|
1501 |
msgid "Last »»"
|
1502 |
msgstr "Wyloguj się »"
|
1503 |
|
1504 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
|
1505 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
|
1506 |
#, fuzzy
|
1507 |
msgid "You must give your option a title."
|
1508 |
msgstr "Musisz być zalogowany żeby edytować swój profil."
|
1509 |
|
1510 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
|
1511 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
|
1512 |
msgid "You have entered an invalid meta-key format!"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
|
1516 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
|
1517 |
#, fuzzy
|
1518 |
msgid "You must enter a valid meta-key."
|
1519 |
msgstr "Musisz podać poprawny adres email."
|
1520 |
|
1521 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
|
1522 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
|
1523 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:447
|
1524 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:459
|
1525 |
msgid "That meta-key is already in use."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:317
|
1529 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:467
|
1530 |
msgid ""
|
1531 |
"There is already an avatar input-type. You can only have one avatar present."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:324
|
1535 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:474
|
1536 |
msgid ""
|
1537 |
"There is already an \"Agree to Terms and Conditions\" checkbox. You can only "
|
1538 |
"have one present."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:329
|
1542 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:479
|
1543 |
msgid "The textarea row value must be numeric."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:333
|
1547 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:483
|
1548 |
msgid "The maxlength attribute must be numeric."
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:340
|
1552 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:490
|
1553 |
msgid "The value must be between 20 and 200!"
|
1554 |
msgstr ""
|
1555 |
|
|
|
|
|
|
|
|
|
|
|
1556 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:345
|
1557 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:495
|
1558 |
+
msgid "The width component of the entered value must be numeric!"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:347
|
1562 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:497
|
1563 |
+
msgid "The height component of the entered value must be numeric!"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:349
|
1567 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:499
|
1568 |
+
msgid "The width component of the entered value must be between 20 and 200!"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:351
|
1572 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:501
|
1573 |
+
msgid "The height component of the entered value must be between 20 and 200!"
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:353
|
1577 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:503
|
1578 |
msgid "The pair of values entered didn't have the right format (width,height)!"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:356
|
1582 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:506
|
1583 |
msgid "The entered avatar size must be numeric!"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:390
|
1587 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:566
|
1588 |
msgid "There was an error, please try again."
|
1589 |
msgstr ""
|
1590 |
|
1597 |
msgstr ""
|
1598 |
|
1599 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
|
1600 |
+
#, fuzzy, php-format
|
1601 |
+
msgid "Your account on %1$s has been approved!"
|
1602 |
+
msgstr "Konto dla %1$s zostało założone."
|
|
|
|
|
|
|
|
|
1603 |
|
1604 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
|
1605 |
+
#, php-format
|
1606 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
|
1610 |
+
#, fuzzy, php-format
|
1611 |
+
msgid "Your account on %1$s has been unapproved!"
|
1612 |
+
msgstr "Konto dla %1$s zostało założone."
|
1613 |
|
1614 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
|
1615 |
+
#, php-format
|
1616 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
|
1645 |
msgstr ""
|
1646 |
|
1647 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
|
1648 |
+
#, php-format
|
1649 |
+
msgid "Are you sure you want to %1$s this user?"
|
|
|
|
|
|
|
1650 |
msgstr ""
|
1651 |
|
1652 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
|
1900 |
msgid "Don't have an account?"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1904 |
+
#, fuzzy
|
1905 |
+
msgid "Lost Password"
|
1906 |
+
msgstr "Zapomniałeś hasła?"
|
1907 |
+
|
1908 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
|
1909 |
#, fuzzy
|
1910 |
msgid "Lost Your Password?"
|
1916 |
msgstr "Zaloguj się"
|
1917 |
|
1918 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
|
1919 |
+
msgid "After login redirect URL (optional):"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:94
|
1923 |
+
msgid "Register page URL (optional):"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:99
|
1927 |
+
msgid "Password Recovery page URL (optional):"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:14
|
1935 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
|
1939 |
#, php-format
|
1940 |
msgid ""
|
1941 |
+
"Your <strong>Profile Builder</strong> serial number is invalid or missing. "
|
1942 |
+
"Please %1$sregister your copy%2$s of Profile Builder to receive access to "
|
1943 |
+
"automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
|
1944 |
+
"%5$sDismiss%6$s"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
|
1948 |
#, php-format
|
1949 |
msgid ""
|
1950 |
+
"Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
|
1951 |
+
"%1$sRenew Your Licence%2$s to receive access to automatic updates and "
|
1952 |
+
"priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
|
2018 |
msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#, fuzzy
|
2022 |
+
#~ msgid "The attachment"
|
2023 |
+
#~ msgstr "Załącznik \""
|
2024 |
+
|
2025 |
+
#, fuzzy
|
2026 |
+
#~ msgid "was successfully deleted."
|
2027 |
+
#~ msgstr "\" został poprawnie usunięty."
|
2028 |
+
|
2029 |
+
#, fuzzy
|
2030 |
+
#~ msgid "Possible cause: the size was bigger than"
|
2031 |
+
#~ msgstr "<br/>Prawdopodobna przyczyna: rozmiar był większy niż "
|
2032 |
+
|
2033 |
+
#, fuzzy
|
2034 |
+
#~ msgid "The listed attachements were"
|
2035 |
+
#~ msgstr "b.<br/>Wskazane załaczniki zostały "
|
2036 |
+
|
2037 |
+
#, fuzzy
|
2038 |
+
#~ msgid "and password:"
|
2039 |
+
#~ msgstr "Hasło"
|
2040 |
+
|
2041 |
#~ msgid "Plugin Layout"
|
2042 |
#~ msgstr "Układ pluginu"
|
2043 |
|
translation/profilebuilder-pt_BR.mo
CHANGED
Binary file
|
translation/profilebuilder-pt_BR.po
CHANGED
@@ -1,503 +1,541 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
-
"Language-Team: Reflection Media, Gabriel Barina
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
|
|
|
|
|
|
13 |
"X-Poedit-Basepath: .\n"
|
|
|
14 |
"X-Generator: Poedit 1.5.4\n"
|
15 |
-
"X-Poedit-SearchPath-0: C
|
16 |
-
"pro\n"
|
17 |
|
18 |
-
#: C
|
19 |
-
#: C
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
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 |
-
|
|
|
39 |
msgid "You must be logged in to edit your profile."
|
40 |
msgstr "Você deve estar conectado para editar seu perfil."
|
41 |
|
42 |
-
|
|
|
43 |
msgid "The avatar was successfully deleted."
|
44 |
-
msgstr "
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
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 "\" foi deletado com sucesso."
|
55 |
|
56 |
-
|
|
|
57 |
msgid "The changes have been successfully saved."
|
58 |
msgstr "As modificações foram salvas corretamente."
|
59 |
|
60 |
-
|
|
|
61 |
#, fuzzy
|
62 |
msgid ""
|
63 |
"The email address you entered is already registered to a different user."
|
64 |
msgstr ""
|
65 |
-
"O endereço de
|
66 |
-
"
|
67 |
|
68 |
-
|
69 |
-
#: C
|
|
|
70 |
msgid "The email address was"
|
71 |
msgstr ""
|
72 |
|
73 |
-
|
74 |
-
#: C
|
75 |
-
#: C
|
76 |
-
#: C
|
77 |
-
#: C
|
78 |
-
#: C
|
79 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
80 |
msgid "NOT"
|
81 |
msgstr "NÃO"
|
82 |
|
83 |
-
|
84 |
-
#: C
|
85 |
-
#: C
|
86 |
-
#: C
|
87 |
-
#: C
|
88 |
-
#: C
|
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 "atualizado junto com o resto da informação."
|
93 |
|
94 |
-
|
|
|
95 |
#, fuzzy
|
96 |
msgid "The email address you entered is invalid."
|
97 |
-
msgstr "O endereço de email não é válido
|
98 |
|
99 |
-
|
100 |
-
|
101 |
msgid "The passwords you entered do not match."
|
102 |
-
msgstr "As senhas
|
103 |
|
104 |
-
|
105 |
-
#: C
|
106 |
-
|
107 |
msgid "The password was"
|
108 |
-
msgstr "
|
109 |
|
110 |
-
|
111 |
-
|
112 |
msgid "You didn't complete both password fields."
|
113 |
-
msgstr "Você não completou os campos
|
114 |
|
115 |
-
|
|
|
116 |
msgid "Your profile was NOT updated!"
|
117 |
msgstr ""
|
118 |
|
119 |
-
|
120 |
-
|
121 |
msgid "There was an error while trying to upload the following attachments:"
|
122 |
-
msgstr "Ocorreu um erro ao
|
123 |
-
|
124 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:652
|
125 |
-
#, fuzzy
|
126 |
-
msgid "Possible cause: the size was bigger than"
|
127 |
-
msgstr "<br/>Causa possível: o tamanho é maior que"
|
128 |
|
129 |
-
#: C
|
130 |
-
#,
|
131 |
-
msgid "
|
132 |
-
|
|
|
|
|
133 |
|
134 |
-
|
|
|
135 |
#, fuzzy
|
136 |
msgid "There was an error while trying to upload your avatar picture."
|
137 |
-
msgstr "Ocorreu um erro ao
|
138 |
|
139 |
-
|
|
|
140 |
msgid "Possible cause: size/incorrect file-type."
|
141 |
msgstr ""
|
142 |
|
143 |
-
|
|
|
144 |
msgid "The avatar was"
|
145 |
msgstr ""
|
146 |
|
147 |
-
|
148 |
-
#: C
|
|
|
149 |
#, fuzzy
|
150 |
msgid "There was an error while trying to upload the following attachment(s)"
|
151 |
-
msgstr "Ocorreu um erro ao
|
152 |
|
153 |
-
#: C
|
154 |
-
|
155 |
-
msgid "
|
156 |
-
|
157 |
-
|
158 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:675
|
159 |
-
msgid "This file was"
|
160 |
msgstr ""
|
161 |
|
162 |
-
|
163 |
-
#: C
|
|
|
164 |
msgid "Name"
|
165 |
-
msgstr "
|
166 |
-
|
167 |
-
|
168 |
-
#: C
|
169 |
-
#: C
|
170 |
-
#: C
|
171 |
-
#: C
|
172 |
-
#: C
|
173 |
msgid "Username"
|
174 |
msgstr "Usuário"
|
175 |
|
176 |
-
|
177 |
-
|
178 |
msgid "Usernames cannot be changed."
|
179 |
-
msgstr "
|
180 |
-
|
181 |
-
|
182 |
-
#: C
|
183 |
-
#: C
|
184 |
-
#: C
|
185 |
-
#: C
|
186 |
-
#: C
|
187 |
-
#: C
|
188 |
-
#: C
|
189 |
-
#: C
|
190 |
-
#: C
|
191 |
-
#: C
|
192 |
-
#: C
|
193 |
-
#: C
|
194 |
-
#: C
|
195 |
-
#: C
|
196 |
-
#: C
|
197 |
-
#: C
|
198 |
-
#: C
|
199 |
-
#: C
|
200 |
-
#: C
|
201 |
-
#: C
|
|
|
202 |
msgid "This field is marked as required by the administrator."
|
203 |
msgstr ""
|
204 |
|
205 |
-
|
206 |
-
#: C
|
207 |
-
#: C
|
208 |
-
#: C
|
209 |
-
#: C
|
210 |
-
#: C
|
211 |
-
#: C
|
212 |
-
#: C
|
213 |
-
#: C
|
214 |
-
#: C
|
|
|
215 |
msgid ""
|
216 |
"This field wasn't updated because you entered and empty string (It was "
|
217 |
"marked as required by the administrator."
|
218 |
msgstr ""
|
219 |
|
220 |
-
|
221 |
-
#: C
|
222 |
-
#: C
|
|
|
223 |
msgid "First Name"
|
224 |
-
msgstr "Nome
|
225 |
|
226 |
-
|
227 |
-
#: C
|
228 |
-
#: C
|
|
|
229 |
msgid "Last Name"
|
230 |
msgstr "Sobrenomes"
|
231 |
|
232 |
-
|
233 |
-
#: C
|
234 |
-
#: C
|
|
|
235 |
msgid "Nickname"
|
236 |
-
msgstr "
|
237 |
|
238 |
-
|
|
|
239 |
msgid "Display name publicly as"
|
240 |
msgstr "Mostrar nome público como"
|
241 |
|
242 |
-
|
243 |
-
#: C
|
|
|
244 |
msgid "Contact Info"
|
245 |
msgstr "Informação de contato"
|
246 |
|
247 |
-
|
248 |
-
#: C
|
249 |
-
#: C
|
250 |
-
#: C
|
251 |
msgid "E-mail"
|
252 |
msgstr "Email"
|
253 |
|
254 |
-
|
|
|
255 |
msgid "(required)"
|
256 |
msgstr "(obrigatorio)"
|
257 |
|
258 |
-
|
259 |
-
#: C
|
260 |
-
#: C
|
261 |
-
#: C
|
|
|
262 |
msgid "Website"
|
263 |
msgstr "Página Web"
|
264 |
|
265 |
-
|
266 |
-
#: C
|
267 |
-
#: C
|
|
|
268 |
msgid "AIM"
|
269 |
msgstr "AIM"
|
270 |
|
271 |
-
|
272 |
-
#: C
|
273 |
-
#: C
|
|
|
274 |
msgid "Yahoo IM"
|
275 |
msgstr "Yahoo IM"
|
276 |
|
277 |
-
|
278 |
-
#: C
|
279 |
-
#: C
|
|
|
280 |
msgid "Jabber / Google Talk"
|
281 |
msgstr "Jabber/Google Talk"
|
282 |
|
283 |
-
|
284 |
-
#: C
|
|
|
285 |
msgid "About Yourself"
|
286 |
msgstr "Sobre você"
|
287 |
|
288 |
-
|
289 |
-
#: C
|
290 |
-
#: C
|
291 |
-
#: C
|
|
|
292 |
msgid "Biographical Info"
|
293 |
msgstr "Informação Biográfica"
|
294 |
|
295 |
-
|
|
|
296 |
msgid "New Password"
|
297 |
-
msgstr "Nova
|
298 |
|
299 |
-
|
300 |
-
#: C
|
301 |
-
#: C
|
302 |
-
#: C
|
|
|
303 |
msgid "Repeat Password"
|
304 |
-
msgstr "Repetir a
|
305 |
|
306 |
-
|
|
|
307 |
msgid "Update"
|
308 |
msgstr "Atualizar"
|
309 |
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
|
|
314 |
|
315 |
-
|
|
|
316 |
msgid "Log out of this account"
|
317 |
msgstr "Fechar a sessão"
|
318 |
|
319 |
-
|
320 |
-
|
321 |
msgid "Log out"
|
322 |
msgstr "Sair »"
|
323 |
|
324 |
-
|
325 |
-
|
326 |
-
|
|
|
|
|
327 |
|
328 |
-
|
329 |
-
#: C
|
|
|
|
|
330 |
msgid ""
|
331 |
"You will soon be redirected automatically. If you see this page for more "
|
332 |
-
"than 1 second, please click"
|
333 |
msgstr ""
|
|
|
|
|
334 |
|
335 |
-
|
336 |
-
#: C
|
337 |
-
#: C
|
338 |
-
#: C
|
|
|
339 |
msgid "here"
|
340 |
-
msgstr ""
|
341 |
|
342 |
-
|
343 |
-
#: C
|
|
|
344 |
msgid "ERROR:"
|
345 |
-
msgstr ""
|
346 |
|
347 |
-
|
|
|
348 |
msgid "The username field is empty"
|
349 |
-
msgstr ""
|
350 |
|
351 |
-
|
352 |
-
#: C
|
353 |
-
#: C
|
354 |
-
#: C
|
|
|
355 |
msgid "Password"
|
356 |
msgstr "Senha"
|
357 |
|
358 |
-
|
|
|
359 |
msgid "Log in"
|
360 |
-
msgstr "
|
361 |
|
362 |
-
|
|
|
363 |
msgid "Remember me"
|
364 |
msgstr "Lembrar-me"
|
365 |
|
366 |
-
|
|
|
367 |
msgid "Lost password?"
|
368 |
msgstr "Esqueceu a sua senha?"
|
369 |
|
370 |
-
|
371 |
-
#: C
|
372 |
-
#: C
|
|
|
373 |
msgid "ERROR"
|
374 |
-
msgstr ""
|
375 |
|
376 |
-
|
377 |
-
#: C
|
|
|
378 |
msgid ""
|
379 |
"Your account has to be confirmed by an administrator before you can use the "
|
380 |
"\"Password Reset\" feature."
|
381 |
msgstr ""
|
|
|
|
|
382 |
|
383 |
-
|
384 |
-
#: C
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:151
|
389 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:202
|
390 |
-
msgid "Following the link sent in the email address will reset the password."
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:163
|
394 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:214
|
395 |
msgid ""
|
396 |
-
"
|
397 |
-
|
398 |
-
|
399 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
|
400 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:216
|
401 |
-
msgid "If this was a mistake, just ignore this email and nothing will happen."
|
402 |
-
msgstr ""
|
403 |
|
404 |
-
#: C
|
405 |
-
#: C
|
406 |
-
|
|
|
|
|
|
|
|
|
407 |
msgstr ""
|
408 |
|
409 |
-
|
410 |
-
#: C
|
411 |
-
|
412 |
-
|
|
|
|
|
413 |
|
414 |
-
|
415 |
-
#: C
|
416 |
-
#, fuzzy
|
417 |
-
msgid "There was an error while trying to send the activation link to "
|
418 |
-
msgstr "
|
419 |
|
420 |
-
|
|
|
421 |
#, fuzzy
|
422 |
msgid "The email address entered wasn't found in the database!"
|
423 |
-
msgstr "O endereço de
|
424 |
|
425 |
-
|
|
|
426 |
msgid "Please check that you entered the correct email address."
|
427 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
428 |
|
429 |
-
|
|
|
430 |
msgid "The username entered wasn't found in the database!"
|
431 |
-
msgstr ""
|
432 |
|
433 |
-
|
|
|
434 |
msgid "Please check that you entered the correct username."
|
435 |
msgstr ""
|
|
|
|
|
436 |
|
437 |
-
|
438 |
-
|
439 |
msgid "Your password has been successfully changed!"
|
440 |
-
msgstr "
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
msgid "
|
459 |
-
|
460 |
-
|
461 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:278
|
462 |
-
msgid "His/her new password is:"
|
463 |
msgstr ""
|
|
|
464 |
|
465 |
-
|
466 |
-
#: C
|
|
|
467 |
msgid "The entered passwords don't match!"
|
468 |
msgstr "As senham não coincidem"
|
469 |
|
470 |
-
|
471 |
-
#: C
|
472 |
-
|
473 |
msgid "Reset Password"
|
474 |
-
msgstr "
|
475 |
|
476 |
-
|
|
|
477 |
msgid "Invalid key!"
|
478 |
msgstr ""
|
479 |
|
480 |
-
|
481 |
-
|
482 |
msgid "Please enter your username or email address."
|
483 |
-
msgstr "
|
484 |
|
485 |
-
|
|
|
486 |
msgid "You will receive a link to create a new password via email."
|
487 |
-
msgstr ""
|
488 |
|
489 |
-
|
490 |
-
|
491 |
msgid "Username or E-mail"
|
492 |
-
msgstr "Usuário"
|
493 |
|
494 |
-
|
495 |
-
|
496 |
msgid "Get New Password"
|
497 |
-
msgstr "Nova
|
498 |
|
499 |
-
|
500 |
-
|
|
|
501 |
msgid ""
|
502 |
"To activate your user, please click the following link:\n"
|
503 |
"\n"
|
@@ -506,334 +544,380 @@ msgid ""
|
|
506 |
"After you activate, you will receive *another email* with your login.\n"
|
507 |
"\n"
|
508 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
509 |
|
510 |
-
|
|
|
511 |
#, php-format
|
512 |
msgid "[%1$s] Activate %2$s"
|
513 |
-
msgstr ""
|
514 |
|
515 |
-
|
|
|
516 |
msgid "Invalid activation key!"
|
517 |
msgstr ""
|
518 |
|
519 |
-
|
|
|
520 |
msgid "The user is already active!"
|
521 |
-
msgstr ""
|
522 |
|
523 |
-
|
|
|
524 |
msgid "Could not create user!"
|
525 |
-
msgstr ""
|
526 |
|
527 |
-
|
528 |
-
|
529 |
msgid "That username is already activated!"
|
530 |
msgstr "Desculpe, este nome de usuário já existe!"
|
531 |
|
532 |
-
|
533 |
-
|
534 |
msgid "The user was successfully activated."
|
535 |
-
msgstr "
|
536 |
|
537 |
-
|
538 |
-
|
539 |
msgid "There was an error while trying to activate the user."
|
540 |
-
msgstr "
|
541 |
|
542 |
-
#: C
|
543 |
-
|
|
|
544 |
msgstr ""
|
545 |
|
546 |
-
|
|
|
547 |
msgid ""
|
548 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
549 |
"please remember that you need to approve this user before he/she can log in!"
|
550 |
msgstr ""
|
551 |
|
552 |
-
|
|
|
553 |
msgid "A new subscriber has (been) registered!"
|
554 |
-
msgstr ""
|
555 |
|
556 |
-
|
557 |
-
|
558 |
msgid "A new account has been created for you."
|
559 |
-
msgstr "
|
560 |
-
|
561 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:528
|
562 |
-
msgid "Welcome to"
|
563 |
-
msgstr ""
|
564 |
|
565 |
-
#: C
|
566 |
-
|
|
|
567 |
msgstr ""
|
568 |
|
569 |
-
|
570 |
-
|
571 |
-
msgid "and password:"
|
572 |
-
msgstr "Senha"
|
573 |
-
|
574 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:530
|
575 |
msgid ""
|
576 |
"Before you can access your account, an administrator needs to approve it. "
|
577 |
"You will be notified via email."
|
578 |
msgstr ""
|
|
|
|
|
579 |
|
580 |
-
|
581 |
-
|
582 |
-
msgstr ""
|
583 |
-
|
584 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:884
|
585 |
msgid "A username is required for registration."
|
586 |
msgstr "O nome de usuário é obrigatório para a inscrição."
|
587 |
|
588 |
-
|
|
|
589 |
msgid "Sorry, that username already exists!"
|
590 |
msgstr "Desculpe, este nome de usuário já existe!"
|
591 |
|
592 |
-
|
|
|
593 |
msgid "You must enter a valid email address."
|
594 |
-
msgstr "Você precisa
|
595 |
|
596 |
-
|
|
|
597 |
msgid "Sorry, that email address is already used!"
|
598 |
-
msgstr "Desculpe, este email já está
|
599 |
|
600 |
-
|
|
|
601 |
msgid "You didn't complete one of the password-fields!"
|
602 |
msgstr "Você não completou os campos da senha!"
|
603 |
|
604 |
-
|
605 |
-
#: C
|
606 |
-
|
|
|
|
|
|
|
|
|
|
|
607 |
msgid "The account was NOT created!"
|
608 |
-
msgstr "
|
609 |
|
610 |
-
|
|
|
611 |
msgid "You must agree to the terms and conditions before registering!"
|
612 |
msgstr ""
|
613 |
|
614 |
-
|
|
|
615 |
msgid "(Several required fields were left uncompleted)"
|
616 |
msgstr ""
|
617 |
|
618 |
-
|
|
|
619 |
msgid "This username is already reserved to be used soon."
|
620 |
msgstr ""
|
|
|
621 |
|
622 |
-
|
623 |
-
#: C
|
|
|
624 |
msgid "Please try a different one!"
|
625 |
-
msgstr ""
|
626 |
|
627 |
-
|
628 |
-
|
629 |
msgid "This email address is already reserved to be used soon."
|
630 |
-
msgstr "
|
|
|
|
|
631 |
|
632 |
-
|
|
|
633 |
msgid "You are logged in as"
|
634 |
-
msgstr ""
|
635 |
|
636 |
-
|
|
|
637 |
msgid "You don't need another account."
|
638 |
msgstr ""
|
639 |
|
640 |
-
|
641 |
-
|
642 |
msgid "Log out of this account."
|
643 |
-
msgstr "
|
644 |
|
645 |
-
|
646 |
-
|
647 |
msgid "Logout"
|
648 |
msgstr "Sair »"
|
649 |
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
msgstr ""
|
|
|
657 |
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
|
|
662 |
|
663 |
-
|
664 |
-
#: C
|
|
|
|
|
665 |
msgid ""
|
666 |
"You will soon be redirected automatically. If you see this page for more "
|
667 |
-
"than 3 seconds, please click"
|
668 |
msgstr ""
|
|
|
|
|
669 |
|
670 |
-
|
|
|
|
|
671 |
msgid ""
|
672 |
"An email has been sent to you with information on how to activate your "
|
673 |
-
"account"
|
674 |
msgstr ""
|
|
|
675 |
|
676 |
-
|
677 |
-
|
678 |
-
|
|
|
679 |
msgstr "Obrigado por registrar-se no nosso site, %1$s."
|
680 |
|
681 |
-
|
|
|
682 |
msgid "An error occured while trying to send the notification email."
|
683 |
-
msgstr ""
|
684 |
|
685 |
-
|
|
|
686 |
msgid "An email containing activation instructions was successfully sent."
|
687 |
-
msgstr ""
|
688 |
|
689 |
-
|
|
|
690 |
msgid "An email containing the username and password was successfully sent."
|
691 |
-
msgstr ""
|
692 |
|
693 |
-
|
|
|
694 |
msgid "Users can register themselves or you can manually create users here."
|
695 |
msgstr ""
|
696 |
-
"Os usuários podem se registrar
|
697 |
"aqui."
|
698 |
|
699 |
-
|
|
|
700 |
msgid ""
|
701 |
"Users cannot currently register themselves, but you can manually create "
|
702 |
"users here."
|
703 |
msgstr ""
|
704 |
-
"Os usuários não podem se registrar
|
705 |
-
"
|
706 |
|
707 |
-
|
|
|
708 |
msgid "Only an administrator can add new users."
|
709 |
msgstr "Somente o administrador pode criar novos usuários."
|
710 |
|
711 |
-
|
712 |
-
#: C
|
713 |
-
#: C
|
714 |
-
#: C
|
715 |
-
#: C
|
716 |
-
#: C
|
717 |
-
#: C
|
718 |
-
#: C
|
719 |
-
#: C
|
|
|
720 |
msgid ""
|
721 |
"This field must be filled out before registering (It was marked as required "
|
722 |
"by the administrator)"
|
723 |
msgstr ""
|
724 |
|
725 |
-
|
726 |
-
#: C
|
727 |
-
#: C
|
728 |
-
#: C
|
729 |
-
#: C
|
730 |
-
#: C
|
731 |
-
#: C
|
732 |
-
#: C
|
733 |
-
#: C
|
|
|
734 |
msgid "This field is marked as required by the administrator"
|
735 |
msgstr ""
|
736 |
|
737 |
-
|
|
|
738 |
msgid "Anti-Spam"
|
739 |
-
msgstr ""
|
740 |
|
741 |
-
|
742 |
-
|
743 |
msgid "Send these credentials via email."
|
744 |
-
msgstr "Enviar
|
745 |
|
746 |
-
|
|
|
747 |
msgid "Add User"
|
748 |
msgstr "Adicionar usuario"
|
749 |
|
750 |
-
|
751 |
-
#: C
|
|
|
752 |
msgid "Register"
|
753 |
msgstr "Registrar"
|
754 |
|
755 |
-
|
756 |
-
#: C
|
757 |
-
|
758 |
msgid "Show/Hide the Admin Bar on Front End"
|
759 |
-
msgstr "Mostrar/Ocultar a bara de admin no
|
760 |
|
761 |
-
|
|
|
762 |
msgid "User-group"
|
763 |
msgstr "Grupo do usuário"
|
764 |
|
765 |
-
|
766 |
-
#: C
|
|
|
767 |
msgid "Visibility"
|
768 |
msgstr "Visibilidade"
|
769 |
|
770 |
-
|
771 |
-
#: C
|
772 |
-
#: C
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
#: C
|
778 |
-
#: C
|
779 |
-
#: C
|
780 |
-
#: C
|
781 |
-
#: C
|
782 |
-
#: C
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
783 |
msgid "Show"
|
784 |
msgstr "Mostrar"
|
785 |
|
786 |
-
|
787 |
-
#: C
|
788 |
-
#: C
|
789 |
-
#: C
|
790 |
-
#: C
|
791 |
-
#: C
|
792 |
-
#: C
|
793 |
-
#: C
|
794 |
-
#: C
|
795 |
-
#: C
|
796 |
-
#: C
|
797 |
-
#: C
|
798 |
-
#: C
|
|
|
799 |
msgid "Hide"
|
800 |
msgstr "Ocultar"
|
801 |
|
802 |
-
|
803 |
-
#: C
|
804 |
-
#: C
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
#: C
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
"plugin activation."
|
813 |
-
msgstr ""
|
814 |
-
|
815 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:48
|
816 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
|
817 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
|
818 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
|
819 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
|
820 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
|
821 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:369
|
822 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
|
823 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
|
824 |
msgid "Save Changes"
|
825 |
-
msgstr "Salvar
|
826 |
|
827 |
-
|
828 |
-
#: C
|
|
|
829 |
msgid "Profile Builder"
|
830 |
msgstr "Gerador de Perfis"
|
831 |
|
832 |
-
|
|
|
833 |
msgid "Welcome to Profile Builder!"
|
834 |
msgstr "Seja bem vindo ao Profile Builder"
|
835 |
|
836 |
-
|
|
|
837 |
msgid ""
|
838 |
" lets you customize your website by adding a front-end menu for all your "
|
839 |
"users, giving them a more flexible way to modify their user-information or "
|
@@ -843,7 +927,8 @@ msgstr ""
|
|
843 |
"usuários do front-end. Uma forma mais flexível para registrar ou modificar "
|
844 |
"novos usuários."
|
845 |
|
846 |
-
|
|
|
847 |
msgid ""
|
848 |
"Also, grants users with administrator rights to customize basic fields or to "
|
849 |
"add new ones."
|
@@ -851,15 +936,17 @@ msgstr ""
|
|
851 |
"Além do mais, permite a usuários com direitos de administrador, a "
|
852 |
"personalização de campos básicos bem como adicionar novos campos."
|
853 |
|
854 |
-
|
|
|
855 |
msgid ""
|
856 |
"To achieve this, just create a new page, and give it an intuitive name(e.g. "
|
857 |
"Edit Profile)."
|
858 |
msgstr ""
|
859 |
"Para conseguir isso apenas crie uma nova página com um nome intuitivo (por "
|
860 |
-
"exemplo, Editar perfil)."
|
861 |
|
862 |
-
|
|
|
863 |
msgid ""
|
864 |
"Now all you need to do is add the following shortcode(for the previous "
|
865 |
"example): "
|
@@ -867,23 +954,28 @@ msgstr ""
|
|
867 |
"Agora tudo o que necessitas fazer é adicionar o shortcode seguinte (para o "
|
868 |
"exemplo anterior):"
|
869 |
|
870 |
-
|
|
|
871 |
msgid "Publish your page and you are ready to go!"
|
872 |
msgstr "Publique seu site e já estará pronto para usar"
|
873 |
|
874 |
-
|
|
|
875 |
msgid "You can use the following shortcodes:"
|
876 |
msgstr "Você poderá usar os seguintes shortcodes:"
|
877 |
|
878 |
-
|
|
|
879 |
msgid "for a log-in form."
|
880 |
msgstr "para un formulario de acceso."
|
881 |
|
882 |
-
|
|
|
883 |
msgid "to add a registration form."
|
884 |
msgstr "para adicionar um formulário de inscrição."
|
885 |
|
886 |
-
|
|
|
887 |
msgid ""
|
888 |
"to grant users a front-end acces to their personal information(requires user "
|
889 |
"to be logged in)."
|
@@ -891,12 +983,13 @@ msgstr ""
|
|
891 |
"para permitir aos usuários acesso a sua informação desde a parte pública "
|
892 |
"(front-end) do site (é necessário que o usuário esteja conectado)"
|
893 |
|
894 |
-
|
895 |
-
|
896 |
msgid "to add a password recovery form."
|
897 |
msgstr "para adicionar um formulário de inscrição."
|
898 |
|
899 |
-
|
|
|
900 |
#, fuzzy
|
901 |
msgid ""
|
902 |
"With the <strong>Pro</strong> version, users with administrator rights have "
|
@@ -905,7 +998,8 @@ msgstr ""
|
|
905 |
"Os usuários com direitos de administrador tem acesso as seguintes "
|
906 |
"características:"
|
907 |
|
908 |
-
|
|
|
909 |
msgid ""
|
910 |
"add a custom stylesheet/inherit values from the current theme or use one of "
|
911 |
"the following built into this plugin: default, white or black."
|
@@ -913,7 +1007,8 @@ msgstr ""
|
|
913 |
"adicionar uma folha de estilos (CSS) personalizada/herdar os valores do tema "
|
914 |
"atual ou usar uma das seguintes: padrão, branco ou preto."
|
915 |
|
916 |
-
|
|
|
917 |
msgid ""
|
918 |
"select whether to display or not the admin bar in the front end for a "
|
919 |
"specific user-group registered to the site."
|
@@ -921,7 +1016,8 @@ msgstr ""
|
|
921 |
"escolher se deseja ou não mostrar a barra de administração no site para um "
|
922 |
"determinado grupo de usuários registrados no site."
|
923 |
|
924 |
-
|
|
|
925 |
msgid ""
|
926 |
"select which information-field can users see/modify. The hidden fields' "
|
927 |
"values remain unmodified."
|
@@ -929,7 +1025,8 @@ msgstr ""
|
|
929 |
"selecionar quais campos podem ser vistos/modificados pelos usuários. Os "
|
930 |
"valores de campos ocultos não de modificarão."
|
931 |
|
932 |
-
|
|
|
933 |
msgid ""
|
934 |
"add custom fields to the existing ones, with several types to choose from: "
|
935 |
"heading, text, textarea, select, checkbox, radio, and/or upload."
|
@@ -938,1132 +1035,1334 @@ msgstr ""
|
|
938 |
"escolha: título, texto, textarea, select, checkbox, radio, e/ou subir "
|
939 |
"arquivo."
|
940 |
|
941 |
-
|
|
|
942 |
msgid "add an avatar field."
|
943 |
msgstr "adicionar um campo de avatar."
|
944 |
|
945 |
-
|
|
|
946 |
msgid "create custom redirects."
|
947 |
msgstr ""
|
948 |
|
949 |
-
|
|
|
950 |
msgid "front-end userlisting using the"
|
951 |
msgstr ""
|
952 |
|
953 |
-
|
|
|
954 |
msgid "shortcode."
|
955 |
msgstr ""
|
956 |
|
957 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
958 |
msgid "this plugin only adds/removes fields in the front-end."
|
959 |
msgstr "este plugin somente adiciona/elimina campos da parte pública do site."
|
960 |
|
961 |
-
|
|
|
962 |
msgid ""
|
963 |
"The default information-fields will still be visible(and thus modifiable)"
|
964 |
msgstr ""
|
965 |
"Os campos de informação por padrão seguirão sendo visíveis (e portanto "
|
966 |
"editáveis)"
|
967 |
|
968 |
-
|
|
|
969 |
msgid ""
|
970 |
"from the back-end, while custom fields will only be visible in the front-end."
|
971 |
msgstr ""
|
972 |
"através da administração, enquanto os campos personalizados somente serão "
|
973 |
"visíveis na parte pública (front end)."
|
974 |
|
975 |
-
|
976 |
-
#: C
|
977 |
-
#: C
|
|
|
978 |
msgid "Default Profile Fields"
|
979 |
-
msgstr "
|
980 |
|
981 |
-
|
|
|
982 |
msgid "Input Field Name"
|
983 |
-
msgstr "Etiqueta do
|
984 |
|
985 |
-
|
986 |
-
|
987 |
msgid "Required"
|
988 |
msgstr "(obrigatorio)"
|
989 |
|
990 |
-
|
|
|
991 |
msgid "Name:"
|
992 |
-
msgstr "Nome"
|
993 |
|
994 |
-
|
995 |
-
#: C
|
996 |
-
#: C
|
997 |
-
#: C
|
998 |
-
#: C
|
999 |
-
#: C
|
1000 |
-
#: C
|
1001 |
-
#: C
|
1002 |
-
#: C
|
1003 |
-
#: C
|
1004 |
-
#: C
|
1005 |
-
#: C
|
1006 |
-
#: C
|
1007 |
-
#: C
|
1008 |
-
#: C
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1009 |
msgid "Yes"
|
1010 |
-
msgstr ""
|
1011 |
-
|
1012 |
-
|
1013 |
-
#: C
|
1014 |
-
#: C
|
1015 |
-
#: C
|
1016 |
-
#: C
|
1017 |
-
#: C
|
1018 |
-
#: C
|
1019 |
-
#: C
|
1020 |
-
#: C
|
1021 |
-
#: C
|
1022 |
-
#: C
|
1023 |
-
#: C
|
1024 |
-
#: C
|
1025 |
-
#: C
|
1026 |
-
#: C
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1027 |
#, fuzzy
|
1028 |
msgid "No"
|
1029 |
msgstr "Nenhum"
|
1030 |
|
1031 |
-
|
|
|
1032 |
msgid "Display name publicly as..."
|
1033 |
msgstr "Mostrar publicamente como..."
|
1034 |
|
1035 |
-
|
|
|
1036 |
msgid "Contact Info:"
|
1037 |
msgstr "Informação de contato:"
|
1038 |
|
1039 |
-
|
|
|
1040 |
msgid "About Yourself:"
|
1041 |
msgstr "Sobre você:"
|
1042 |
|
1043 |
-
|
|
|
1044 |
#, fuzzy
|
1045 |
msgid "(New) Password"
|
1046 |
-
msgstr "Nova
|
1047 |
|
1048 |
-
|
1049 |
-
#: C
|
1050 |
-
#: C
|
1051 |
-
#: C
|
|
|
1052 |
msgid "General Settings"
|
1053 |
-
msgstr ""
|
1054 |
|
1055 |
-
|
|
|
1056 |
#, fuzzy
|
1057 |
msgid "Stylesheet Used on the Front-End:"
|
1058 |
msgstr "Folha de estilos usada:"
|
1059 |
|
1060 |
-
|
1061 |
-
|
1062 |
-
msgstr "Padrão"
|
1063 |
-
|
1064 |
-
#: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
|
1065 |
msgid "White"
|
1066 |
msgstr "Branco"
|
1067 |
|
1068 |
-
|
|
|
1069 |
msgid "Black"
|
1070 |
msgstr "Preto"
|
1071 |
|
1072 |
-
|
|
|
1073 |
msgid "None"
|
1074 |
msgstr "Nenhum"
|
1075 |
|
1076 |
-
|
|
|
1077 |
msgid "\"Email Confirmation\" Feature Activated:"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
|
|
|
1081 |
msgid "\"Admin Approval\" Feature Activated:"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
|
|
|
1085 |
msgid ""
|
1086 |
"The black stylesheet is intended for sites/blogs with a dark background."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
|
|
|
1090 |
msgid ""
|
1091 |
"The white stylesheet is intended for a sites/blogs with a light background "
|
1092 |
"color."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
|
|
|
1096 |
msgid ""
|
1097 |
"On single-site installations the \"Email Confirmation\" feature only works "
|
1098 |
"in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
1099 |
msgstr ""
|
1100 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Profile Builder Pro v1.1.57\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-10 11:28+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-10 11:29+0200\n"
|
7 |
"Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
|
8 |
+
"Language-Team: Reflection Media, Gabriel Barina <webmaster@>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
15 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Textdomain-Support: yes\n"
|
18 |
"X-Generator: Poedit 1.5.4\n"
|
19 |
+
"X-Poedit-SearchPath-0: C:/Users/Gabriel/Desktop/test/profile-builder-pro\n"
|
|
|
20 |
|
21 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:83
|
22 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:585
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"The information size you were trying to submit was larger than %1$sb!<br/"
|
26 |
+
">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
|
27 |
+
"it was also larger than %2$sb no additional information is available.<br/"
|
28 |
+
">The user was NOT created!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
msgstr ""
|
30 |
|
31 |
+
# @ profilebuilder
|
32 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:554
|
33 |
msgid "You must be logged in to edit your profile."
|
34 |
msgstr "Você deve estar conectado para editar seu perfil."
|
35 |
|
36 |
+
# @ profilebuilder
|
37 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:562
|
38 |
msgid "The avatar was successfully deleted."
|
39 |
+
msgstr "O seu avatar foi eliminada."
|
40 |
|
41 |
+
# @ profilebuilder
|
42 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:567
|
43 |
+
#, fuzzy, php-format
|
44 |
+
msgid "The attachment \"%1$s\" was successfully deleted."
|
45 |
+
msgstr "O seu avatar foi eliminada."
|
|
|
|
|
|
|
|
|
46 |
|
47 |
+
# @ profilebuilder
|
48 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:580
|
49 |
msgid "The changes have been successfully saved."
|
50 |
msgstr "As modificações foram salvas corretamente."
|
51 |
|
52 |
+
# @ profilebuilder
|
53 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:586
|
54 |
#, fuzzy
|
55 |
msgid ""
|
56 |
"The email address you entered is already registered to a different user."
|
57 |
msgstr ""
|
58 |
+
"O endereço de e-mail que você digitou já está registrado com um usuário "
|
59 |
+
"diferente."
|
60 |
|
61 |
+
# @ profilebuilder
|
62 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:586
|
63 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:594
|
64 |
msgid "The email address was"
|
65 |
msgstr ""
|
66 |
|
67 |
+
# @ profilebuilder
|
68 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:586
|
69 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:594
|
70 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:602
|
71 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:610
|
72 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
73 |
msgid "NOT"
|
74 |
msgstr "NÃO"
|
75 |
|
76 |
+
# @ profilebuilder
|
77 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:586
|
78 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:594
|
79 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:602
|
80 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:610
|
81 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:640
|
|
|
82 |
#, fuzzy
|
83 |
msgid "updated along with the rest of the information."
|
84 |
msgstr "atualizado junto com o resto da informação."
|
85 |
|
86 |
+
# @ profilebuilder
|
87 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:594
|
88 |
#, fuzzy
|
89 |
msgid "The email address you entered is invalid."
|
90 |
+
msgstr "O endereço de email não é válido."
|
91 |
|
92 |
+
# @ profilebuilder
|
93 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:602
|
94 |
msgid "The passwords you entered do not match."
|
95 |
+
msgstr "As senhas digitadas não coincidem."
|
96 |
|
97 |
+
# @ profilebuilder
|
98 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:602
|
99 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:610
|
100 |
msgid "The password was"
|
101 |
+
msgstr "A senha era"
|
102 |
|
103 |
+
# @ profilebuilder
|
104 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:610
|
105 |
msgid "You didn't complete both password fields."
|
106 |
+
msgstr "Você não completou os campos das duas senha!"
|
107 |
|
108 |
+
# @ profilebuilder
|
109 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:616
|
110 |
msgid "Your profile was NOT updated!"
|
111 |
msgstr ""
|
112 |
|
113 |
+
# @ profilebuilder
|
114 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:625
|
115 |
msgid "There was an error while trying to upload the following attachments:"
|
116 |
+
msgstr "Ocorreu um erro ao carregar os seguintes arquivos anexos:"
|
|
|
|
|
|
|
|
|
|
|
117 |
|
118 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:633
|
119 |
+
#, php-format
|
120 |
+
msgid ""
|
121 |
+
"Possible cause: the size was bigger than %1$sb. The listed attachements were "
|
122 |
+
"%2$sNOT%3$s updated along with the rest of the information."
|
123 |
+
msgstr ""
|
124 |
|
125 |
+
# @ profilebuilder
|
126 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:640
|
127 |
#, fuzzy
|
128 |
msgid "There was an error while trying to upload your avatar picture."
|
129 |
+
msgstr "Ocorreu um erro ao carregar a sua imagem do avatar:<br/>"
|
130 |
|
131 |
+
# @ profilebuilder
|
132 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:640
|
133 |
msgid "Possible cause: size/incorrect file-type."
|
134 |
msgstr ""
|
135 |
|
136 |
+
# @ profilebuilder
|
137 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:640
|
138 |
msgid "The avatar was"
|
139 |
msgstr ""
|
140 |
|
141 |
+
# @ profilebuilder
|
142 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:648
|
143 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:897
|
144 |
#, fuzzy
|
145 |
msgid "There was an error while trying to upload the following attachment(s)"
|
146 |
+
msgstr "Ocorreu um erro ao carregar os seguintes arquivos anexos:<br/>"
|
147 |
|
148 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:655
|
149 |
+
#, php-format
|
150 |
+
msgid ""
|
151 |
+
"Only files with the following extension(s) can be uploaded: %1$s<br/>This "
|
152 |
+
"file was %2$sNOT%3$s updated along with the rest of the information."
|
|
|
|
|
153 |
msgstr ""
|
154 |
|
155 |
+
# @ profilebuilder
|
156 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:670
|
157 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1277
|
158 |
msgid "Name"
|
159 |
+
msgstr "Informações do Usuário"
|
160 |
+
|
161 |
+
# @ profilebuilder
|
162 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:676
|
163 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:122
|
164 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1298
|
165 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:27
|
166 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/userlisting.php:498
|
167 |
msgid "Username"
|
168 |
msgstr "Usuário"
|
169 |
|
170 |
+
# @ profilebuilder
|
171 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:677
|
172 |
msgid "Usernames cannot be changed."
|
173 |
+
msgstr "Nomes de usuários não podem ser modificados."
|
174 |
+
|
175 |
+
# @ profilebuilder
|
176 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:686
|
177 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:706
|
178 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:726
|
179 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:746
|
180 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:796
|
181 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:817
|
182 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:835
|
183 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:853
|
184 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:871
|
185 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:892
|
186 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/extra.fields.php:64
|
187 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/extra.fields.php:166
|
188 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/extra.fields.php:232
|
189 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/extra.fields.php:297
|
190 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/extra.fields.php:362
|
191 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/extra.fields.php:428
|
192 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/extra.fields.php:482
|
193 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/extra.fields.php:530
|
194 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/extra.fields.php:593
|
195 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/extra.fields.php:702
|
196 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/extra.fields.php:747
|
197 |
msgid "This field is marked as required by the administrator."
|
198 |
msgstr ""
|
199 |
|
200 |
+
# @ profilebuilder
|
201 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:689
|
202 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:709
|
203 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:729
|
204 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:749
|
205 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:799
|
206 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:819
|
207 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:837
|
208 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:855
|
209 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:873
|
210 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:894
|
211 |
msgid ""
|
212 |
"This field wasn't updated because you entered and empty string (It was "
|
213 |
"marked as required by the administrator."
|
214 |
msgstr ""
|
215 |
|
216 |
+
# @ profilebuilder
|
217 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:696
|
218 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1322
|
219 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:40
|
220 |
msgid "First Name"
|
221 |
+
msgstr "Nome"
|
222 |
|
223 |
+
# @ profilebuilder
|
224 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:716
|
225 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1346
|
226 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:53
|
227 |
msgid "Last Name"
|
228 |
msgstr "Sobrenomes"
|
229 |
|
230 |
+
# @ profilebuilder
|
231 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:736
|
232 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1370
|
233 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:66
|
234 |
msgid "Nickname"
|
235 |
+
msgstr "Apelido (usuário)"
|
236 |
|
237 |
+
# @ profilebuilder
|
238 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:757
|
239 |
msgid "Display name publicly as"
|
240 |
msgstr "Mostrar nome público como"
|
241 |
|
242 |
+
# @ profilebuilder
|
243 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:789
|
244 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1376
|
245 |
msgid "Contact Info"
|
246 |
msgstr "Informação de contato"
|
247 |
|
248 |
+
# @ profilebuilder
|
249 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:806
|
250 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1397
|
251 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:98
|
252 |
msgid "E-mail"
|
253 |
msgstr "Email"
|
254 |
|
255 |
+
# @ profilebuilder
|
256 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:808
|
257 |
msgid "(required)"
|
258 |
msgstr "(obrigatorio)"
|
259 |
|
260 |
+
# @ profilebuilder
|
261 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:825
|
262 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1421
|
263 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:111
|
264 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/userlisting.php:540
|
265 |
msgid "Website"
|
266 |
msgstr "Página Web"
|
267 |
|
268 |
+
# @ profilebuilder
|
269 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:843
|
270 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1445
|
271 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:127
|
272 |
msgid "AIM"
|
273 |
msgstr "AIM"
|
274 |
|
275 |
+
# @ profilebuilder
|
276 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:861
|
277 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1469
|
278 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:140
|
279 |
msgid "Yahoo IM"
|
280 |
msgstr "Yahoo IM"
|
281 |
|
282 |
+
# @ profilebuilder
|
283 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:879
|
284 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1493
|
285 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:153
|
286 |
msgid "Jabber / Google Talk"
|
287 |
msgstr "Jabber/Google Talk"
|
288 |
|
289 |
+
# @ profilebuilder
|
290 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:885
|
291 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1499
|
292 |
msgid "About Yourself"
|
293 |
msgstr "Sobre você"
|
294 |
|
295 |
+
# @ profilebuilder
|
296 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:900
|
297 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1520
|
298 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:172
|
299 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/userlisting.php:546
|
300 |
msgid "Biographical Info"
|
301 |
msgstr "Informação Biográfica"
|
302 |
|
303 |
+
# @ profilebuilder
|
304 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:910
|
305 |
msgid "New Password"
|
306 |
+
msgstr "Nova Senha"
|
307 |
|
308 |
+
# @ profilebuilder
|
309 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:915
|
310 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:328
|
311 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:358
|
312 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1558
|
313 |
msgid "Repeat Password"
|
314 |
+
msgstr "Repetir a Senha"
|
315 |
|
316 |
+
# @ profilebuilder
|
317 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.edit.profile.php:946
|
318 |
msgid "Update"
|
319 |
msgstr "Atualizar"
|
320 |
|
321 |
+
# @ profilebuilder
|
322 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:41
|
323 |
+
#, fuzzy, php-format
|
324 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
325 |
+
msgstr "Você está conectado no momento como"
|
326 |
|
327 |
+
# @ profilebuilder
|
328 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:41
|
329 |
msgid "Log out of this account"
|
330 |
msgstr "Fechar a sessão"
|
331 |
|
332 |
+
# @ profilebuilder
|
333 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:41
|
334 |
msgid "Log out"
|
335 |
msgstr "Sair »"
|
336 |
|
337 |
+
# @ profilebuilder
|
338 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:49
|
339 |
+
#, fuzzy, php-format
|
340 |
+
msgid "You have successfully logged in as %1$s"
|
341 |
+
msgstr "Você efetuou login como sucesso como"
|
342 |
|
343 |
+
# @ profilebuilder
|
344 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:69
|
345 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:81
|
346 |
+
#, fuzzy, php-format
|
347 |
msgid ""
|
348 |
"You will soon be redirected automatically. If you see this page for more "
|
349 |
+
"than 1 second, please click %1$s"
|
350 |
msgstr ""
|
351 |
+
"Você sera redirecionado automaticamente brevemente. Se você ver esta página "
|
352 |
+
"por mais de 1 segundo, por favor clique"
|
353 |
|
354 |
+
# @ profilebuilder
|
355 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:69
|
356 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:81
|
357 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1191
|
358 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1221
|
359 |
msgid "here"
|
360 |
+
msgstr "aqui"
|
361 |
|
362 |
+
# @ profilebuilder
|
363 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:96
|
364 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:382
|
365 |
msgid "ERROR:"
|
366 |
+
msgstr "ERRO:"
|
367 |
|
368 |
+
# @ profilebuilder
|
369 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:96
|
370 |
msgid "The username field is empty"
|
371 |
+
msgstr "O campo do usuário esta vazio"
|
372 |
|
373 |
+
# @ profilebuilder
|
374 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:130
|
375 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:323
|
376 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:353
|
377 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1553
|
378 |
msgid "Password"
|
379 |
msgstr "Senha"
|
380 |
|
381 |
+
# @ profilebuilder
|
382 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:138
|
383 |
msgid "Log in"
|
384 |
+
msgstr "Conectar"
|
385 |
|
386 |
+
# @ profilebuilder
|
387 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:142
|
388 |
msgid "Remember me"
|
389 |
msgstr "Lembrar-me"
|
390 |
|
391 |
+
# @ profilebuilder
|
392 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.login.php:157
|
393 |
msgid "Lost password?"
|
394 |
msgstr "Esqueceu a sua senha?"
|
395 |
|
396 |
+
# @ profilebuilder
|
397 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:113
|
398 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:177
|
399 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:224
|
400 |
msgid "ERROR"
|
401 |
+
msgstr "ERRO"
|
402 |
|
403 |
+
# @ profilebuilder
|
404 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:113
|
405 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/admin.approval.php:248
|
406 |
msgid ""
|
407 |
"Your account has to be confirmed by an administrator before you can use the "
|
408 |
"\"Password Reset\" feature."
|
409 |
msgstr ""
|
410 |
+
"Sua conta tem que ser confirmada por um administrador antes você possa usar "
|
411 |
+
"o recurso de \"Redefinir Senha\"."
|
412 |
|
413 |
+
# @ profilebuilder
|
414 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:153
|
415 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:200
|
416 |
+
#, fuzzy, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
417 |
msgid ""
|
418 |
+
"A password reset email has been sent to %1$s.<br/>Following the link sent in "
|
419 |
+
"the email address will reset the password."
|
420 |
+
msgstr "Seguindo o link enviado no endereço de e-mail irá redefinir a senha."
|
|
|
|
|
|
|
|
|
421 |
|
422 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:165
|
423 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:212
|
424 |
+
#, php-format
|
425 |
+
msgid ""
|
426 |
+
"Someone requested that the password be reset for the following account: <b>"
|
427 |
+
"%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
|
428 |
+
"happen.<br/>To reset your password, visit the following link:%2$s"
|
429 |
msgstr ""
|
430 |
|
431 |
+
# @ profilebuilder
|
432 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:168
|
433 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:215
|
434 |
+
#, fuzzy, php-format
|
435 |
+
msgid "Password Reset Feature from \"%1$s\""
|
436 |
+
msgstr "Recurso de Redefinição de Senha do site "
|
437 |
|
438 |
+
# @ profilebuilder
|
439 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:177
|
440 |
+
#, fuzzy, php-format
|
441 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
442 |
+
msgstr "Houve um erro ao tentar enviar o link de ativação para "
|
443 |
|
444 |
+
# @ profilebuilder
|
445 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:187
|
446 |
#, fuzzy
|
447 |
msgid "The email address entered wasn't found in the database!"
|
448 |
+
msgstr "O endereço de e-mail digitado não foi encontrado no sistema!"
|
449 |
|
450 |
+
# @ profilebuilder
|
451 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:187
|
452 |
msgid "Please check that you entered the correct email address."
|
453 |
+
msgstr "Por favor, verifique que você digitou um e-mail corretamente."
|
454 |
+
|
455 |
+
# @ profilebuilder
|
456 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:224
|
457 |
+
msgid "There was an error while trying to send the activation link to "
|
458 |
+
msgstr "Houve um erro ao tentar enviar o link de ativação para "
|
459 |
|
460 |
+
# @ profilebuilder
|
461 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:232
|
462 |
msgid "The username entered wasn't found in the database!"
|
463 |
+
msgstr "O nome de usuário não foi encontrado no nosso sistema!"
|
464 |
|
465 |
+
# @ profilebuilder
|
466 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:232
|
467 |
msgid "Please check that you entered the correct username."
|
468 |
msgstr ""
|
469 |
+
"Por favor, verifique que você digitou um e-mail ou nome de usuário "
|
470 |
+
"corretamnete."
|
471 |
|
472 |
+
# @ profilebuilder
|
473 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:243
|
474 |
msgid "Your password has been successfully changed!"
|
475 |
+
msgstr "A sua senha foi redefinida com sucesso!"
|
476 |
+
|
477 |
+
# @ profilebuilder
|
478 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:257
|
479 |
+
#, fuzzy, php-format
|
480 |
+
msgid "You have successfully reset your password to: %1$s"
|
481 |
+
msgstr "Você foi bem sucedido na redefinição de sua senha para: "
|
482 |
+
|
483 |
+
# @ profilebuilder
|
484 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:260
|
485 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:273
|
486 |
+
#, fuzzy, php-format
|
487 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
488 |
+
msgstr "A senha foi redefinida com sucesso para "
|
489 |
+
|
490 |
+
# @ default
|
491 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:270
|
492 |
+
#, fuzzy, php-format
|
493 |
+
msgid ""
|
494 |
+
"%1$s has requested a password change via the password reset feature.<br/>His/"
|
495 |
+
"her new password is:%2$s"
|
|
|
|
|
496 |
msgstr ""
|
497 |
+
"solicitou uma mudança de senha por meio do recurso de redefinição de senha."
|
498 |
|
499 |
+
# @ profilebuilder
|
500 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:288
|
501 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:894
|
502 |
msgid "The entered passwords don't match!"
|
503 |
msgstr "As senham não coincidem"
|
504 |
|
505 |
+
# @ profilebuilder
|
506 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:335
|
507 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:365
|
508 |
msgid "Reset Password"
|
509 |
+
msgstr "Redefinir Senha"
|
510 |
|
511 |
+
# @ profilebuilder
|
512 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:382
|
513 |
msgid "Invalid key!"
|
514 |
msgstr ""
|
515 |
|
516 |
+
# @ profilebuilder
|
517 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:397
|
518 |
msgid "Please enter your username or email address."
|
519 |
+
msgstr "Digite seu nome de usuário ou endereço de e-mail válido."
|
520 |
|
521 |
+
# @ profilebuilder
|
522 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:397
|
523 |
msgid "You will receive a link to create a new password via email."
|
524 |
+
msgstr "Você receberá um link como criar uma nova senha por e-mail."
|
525 |
|
526 |
+
# @ profilebuilder
|
527 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:405
|
528 |
msgid "Username or E-mail"
|
529 |
+
msgstr "Usuário ou E-mail"
|
530 |
|
531 |
+
# @ profilebuilder
|
532 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.recover.password.php:414
|
533 |
msgid "Get New Password"
|
534 |
+
msgstr "Obter Nova Senha"
|
535 |
|
536 |
+
# @ profilebuilder
|
537 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:386
|
538 |
+
#, fuzzy, php-format
|
539 |
msgid ""
|
540 |
"To activate your user, please click the following link:\n"
|
541 |
"\n"
|
544 |
"After you activate, you will receive *another email* with your login.\n"
|
545 |
"\n"
|
546 |
msgstr ""
|
547 |
+
"Para ativar a sua conta de usuário, por favor clique no link abaixo:\n"
|
548 |
+
"\n"
|
549 |
+
"%s\n"
|
550 |
+
"\n"
|
551 |
+
"Após a sua ativação, você receberá * outro email * com as informações do seu "
|
552 |
+
"login.\n"
|
553 |
+
"\n"
|
554 |
|
555 |
+
# @ profilebuilder
|
556 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:388
|
557 |
#, php-format
|
558 |
msgid "[%1$s] Activate %2$s"
|
559 |
+
msgstr "O site [%1$s], quer ativar a conta do %2$s"
|
560 |
|
561 |
+
# @ profilebuilder
|
562 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:418
|
563 |
msgid "Invalid activation key!"
|
564 |
msgstr ""
|
565 |
|
566 |
+
# @ profilebuilder
|
567 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:422
|
568 |
msgid "The user is already active!"
|
569 |
+
msgstr "O usuário já esta ativado!"
|
570 |
|
571 |
+
# @ profilebuilder
|
572 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:437
|
573 |
msgid "Could not create user!"
|
574 |
+
msgstr "Não foi possível criar o usuário!"
|
575 |
|
576 |
+
# @ profilebuilder
|
577 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:447
|
578 |
msgid "That username is already activated!"
|
579 |
msgstr "Desculpe, este nome de usuário já existe!"
|
580 |
|
581 |
+
# @ profilebuilder
|
582 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:463
|
583 |
msgid "The user was successfully activated."
|
584 |
+
msgstr "A conta do usuário foi ativada com sucesso."
|
585 |
|
586 |
+
# @ profilebuilder
|
587 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:465
|
588 |
msgid "There was an error while trying to activate the user."
|
589 |
+
msgstr "Houve um erro ao tentar ativar o usuário."
|
590 |
|
591 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:499
|
592 |
+
#, php-format
|
593 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
594 |
msgstr ""
|
595 |
|
596 |
+
# @ profilebuilder
|
597 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:501
|
598 |
msgid ""
|
599 |
"The \"Admin Approval\" feature was activated at the time of registration, so "
|
600 |
"please remember that you need to approve this user before he/she can log in!"
|
601 |
msgstr ""
|
602 |
|
603 |
+
# @ default
|
604 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:504
|
605 |
msgid "A new subscriber has (been) registered!"
|
606 |
+
msgstr "Um novo assinante foi registrado!"
|
607 |
|
608 |
+
# @ profilebuilder
|
609 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:522
|
610 |
msgid "A new account has been created for you."
|
611 |
+
msgstr "Uma nova conta foi criada para você"
|
|
|
|
|
|
|
|
|
612 |
|
613 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:525
|
614 |
+
#, php-format
|
615 |
+
msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
|
616 |
msgstr ""
|
617 |
|
618 |
+
# @ profilebuilder
|
619 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:527
|
|
|
|
|
|
|
|
|
620 |
msgid ""
|
621 |
"Before you can access your account, an administrator needs to approve it. "
|
622 |
"You will be notified via email."
|
623 |
msgstr ""
|
624 |
+
"Antes que você possa acessar sua conta, um administrador precisa aprovar. "
|
625 |
+
"Você será notificado via e-mail."
|
626 |
|
627 |
+
# @ profilebuilder
|
628 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:883
|
|
|
|
|
|
|
629 |
msgid "A username is required for registration."
|
630 |
msgstr "O nome de usuário é obrigatório para a inscrição."
|
631 |
|
632 |
+
# @ profilebuilder
|
633 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:885
|
634 |
msgid "Sorry, that username already exists!"
|
635 |
msgstr "Desculpe, este nome de usuário já existe!"
|
636 |
|
637 |
+
# @ profilebuilder
|
638 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:887
|
639 |
msgid "You must enter a valid email address."
|
640 |
+
msgstr "Você precisa digitar um endereço de e-mail válido."
|
641 |
|
642 |
+
# @ profilebuilder
|
643 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:889
|
644 |
msgid "Sorry, that email address is already used!"
|
645 |
+
msgstr "Desculpe, mais este email já está sendo usado!"
|
646 |
|
647 |
+
# @ profilebuilder
|
648 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:892
|
649 |
msgid "You didn't complete one of the password-fields!"
|
650 |
msgstr "Você não completou os campos da senha!"
|
651 |
|
652 |
+
# @ profilebuilder
|
653 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:904
|
654 |
+
msgid "Only files with the following extension(s) can be uploaded:"
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
# @ profilebuilder
|
658 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:904
|
659 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:910
|
660 |
msgid "The account was NOT created!"
|
661 |
+
msgstr "A conta NÃO foi creada!"
|
662 |
|
663 |
+
# @ profilebuilder
|
664 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:908
|
665 |
msgid "You must agree to the terms and conditions before registering!"
|
666 |
msgstr ""
|
667 |
|
668 |
+
# @ profilebuilder
|
669 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:910
|
670 |
msgid "(Several required fields were left uncompleted)"
|
671 |
msgstr ""
|
672 |
|
673 |
+
# @ profilebuilder
|
674 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:928
|
675 |
msgid "This username is already reserved to be used soon."
|
676 |
msgstr ""
|
677 |
+
"Este nome de usuário já exite ou esta reservado para ser usado em breve."
|
678 |
|
679 |
+
# @ profilebuilder
|
680 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:928
|
681 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:932
|
682 |
msgid "Please try a different one!"
|
683 |
+
msgstr "Por favor tente outro usuário!"
|
684 |
|
685 |
+
# @ profilebuilder
|
686 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:932
|
687 |
msgid "This email address is already reserved to be used soon."
|
688 |
+
msgstr ""
|
689 |
+
"Desculpe, mais este endereço de e-mail já está reservado para ser usado em "
|
690 |
+
"breve"
|
691 |
|
692 |
+
# @ profilebuilder
|
693 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1160
|
694 |
msgid "You are logged in as"
|
695 |
+
msgstr "Você esta conectado como "
|
696 |
|
697 |
+
# @ profilebuilder
|
698 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1160
|
699 |
msgid "You don't need another account."
|
700 |
msgstr ""
|
701 |
|
702 |
+
# @ profilebuilder
|
703 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1160
|
704 |
msgid "Log out of this account."
|
705 |
+
msgstr "Desconectar desta conta."
|
706 |
|
707 |
+
# @ profilebuilder
|
708 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1160
|
709 |
msgid "Logout"
|
710 |
msgstr "Sair »"
|
711 |
|
712 |
+
# @ profilebuilder
|
713 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1168
|
714 |
+
#, fuzzy, php-format
|
715 |
+
msgid ""
|
716 |
+
"An email has been sent to %1$s with information on how to activate his/her "
|
717 |
+
"account."
|
718 |
msgstr ""
|
719 |
+
"Um email foi enviado para você com informações sobre como ativar a sua conta"
|
720 |
|
721 |
+
# @ profilebuilder
|
722 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1172
|
723 |
+
#, fuzzy, php-format
|
724 |
+
msgid "A user account has been created for %1$s."
|
725 |
+
msgstr "Foi criada a conta de usuário para "
|
726 |
|
727 |
+
# @ profilebuilder
|
728 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1191
|
729 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1221
|
730 |
+
#, fuzzy, php-format
|
731 |
msgid ""
|
732 |
"You will soon be redirected automatically. If you see this page for more "
|
733 |
+
"than 3 seconds, please click %1$s.%2$s"
|
734 |
msgstr ""
|
735 |
+
"Você vai em breve ser redirecionado automaticamente. Se você ver esta página "
|
736 |
+
"por mais de 3 segundos, por favor clique"
|
737 |
|
738 |
+
# @ profilebuilder
|
739 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1197
|
740 |
+
#, fuzzy
|
741 |
msgid ""
|
742 |
"An email has been sent to you with information on how to activate your "
|
743 |
+
"account."
|
744 |
msgstr ""
|
745 |
+
"Um email foi enviado para você com informações sobre como ativar a sua conta"
|
746 |
|
747 |
+
# @ profilebuilder
|
748 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1201
|
749 |
+
#, fuzzy, php-format
|
750 |
+
msgid "Thank you for registering %1$s."
|
751 |
msgstr "Obrigado por registrar-se no nosso site, %1$s."
|
752 |
|
753 |
+
# @ profilebuilder
|
754 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1228
|
755 |
msgid "An error occured while trying to send the notification email."
|
756 |
+
msgstr "Ocorreu um erro ao tentar enviar o e-mail de notificação."
|
757 |
|
758 |
+
# @ profilebuilder
|
759 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1233
|
760 |
msgid "An email containing activation instructions was successfully sent."
|
761 |
+
msgstr "Um e-mail contendo as instruções de ativação foi enviada com sucesso."
|
762 |
|
763 |
+
# @ profilebuilder
|
764 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1238
|
765 |
msgid "An email containing the username and password was successfully sent."
|
766 |
+
msgstr "Um e-mail contendo o nome de usuário e senha foi enviada com sucesso."
|
767 |
|
768 |
+
# @ profilebuilder
|
769 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1254
|
770 |
msgid "Users can register themselves or you can manually create users here."
|
771 |
msgstr ""
|
772 |
+
"Os usuários podem se registrar, mais você podes criar os usuário manualmente "
|
773 |
"aqui."
|
774 |
|
775 |
+
# @ profilebuilder
|
776 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1259
|
777 |
msgid ""
|
778 |
"Users cannot currently register themselves, but you can manually create "
|
779 |
"users here."
|
780 |
msgstr ""
|
781 |
+
"Os usuários não podem se registrar, mais você pode criar manualmente os "
|
782 |
+
"usuários aqui."
|
783 |
|
784 |
+
# @ profilebuilder
|
785 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1264
|
786 |
msgid "Only an administrator can add new users."
|
787 |
msgstr "Somente o administrador pode criar novos usuários."
|
788 |
|
789 |
+
# @ profilebuilder
|
790 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1287
|
791 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1311
|
792 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1335
|
793 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1359
|
794 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1410
|
795 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1434
|
796 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1458
|
797 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1482
|
798 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1509
|
799 |
msgid ""
|
800 |
"This field must be filled out before registering (It was marked as required "
|
801 |
"by the administrator)"
|
802 |
msgstr ""
|
803 |
|
804 |
+
# @ profilebuilder
|
805 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1308
|
806 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1332
|
807 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1356
|
808 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1383
|
809 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1407
|
810 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1431
|
811 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1455
|
812 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1479
|
813 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1506
|
814 |
msgid "This field is marked as required by the administrator"
|
815 |
msgstr ""
|
816 |
|
817 |
+
# @ profilebuilder
|
818 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1581
|
819 |
msgid "Anti-Spam"
|
820 |
+
msgstr "Anti-Spam"
|
821 |
|
822 |
+
# @ profilebuilder
|
823 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1602
|
824 |
msgid "Send these credentials via email."
|
825 |
+
msgstr "Enviar essas credenciais via e-mail."
|
826 |
|
827 |
+
# @ profilebuilder
|
828 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1616
|
829 |
msgid "Add User"
|
830 |
msgstr "Adicionar usuario"
|
831 |
|
832 |
+
# @ profilebuilder
|
833 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/front-end/wppb.register.php:1616
|
834 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/login.widget.php:43
|
835 |
msgid "Register"
|
836 |
msgstr "Registrar"
|
837 |
|
838 |
+
# @ profilebuilder
|
839 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/admin.bar.php:13
|
840 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/admin.bar.php:14
|
841 |
msgid "Show/Hide the Admin Bar on Front End"
|
842 |
+
msgstr "Mostrar/Ocultar a bara de admin no site"
|
843 |
|
844 |
+
# @ profilebuilder
|
845 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/admin.bar.php:18
|
846 |
msgid "User-group"
|
847 |
msgstr "Grupo do usuário"
|
848 |
|
849 |
+
# @ profilebuilder
|
850 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/admin.bar.php:19
|
851 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:15
|
852 |
msgid "Visibility"
|
853 |
msgstr "Visibilidade"
|
854 |
|
855 |
+
# @ profilebuilder
|
856 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/admin.bar.php:30
|
857 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:14
|
858 |
+
msgid "Default"
|
859 |
+
msgstr "Padrão"
|
860 |
+
|
861 |
+
# @ profilebuilder
|
862 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/admin.bar.php:31
|
863 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:30
|
864 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:43
|
865 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:56
|
866 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:69
|
867 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:82
|
868 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:101
|
869 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:114
|
870 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:130
|
871 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:143
|
872 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:156
|
873 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:175
|
874 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:189
|
875 |
msgid "Show"
|
876 |
msgstr "Mostrar"
|
877 |
|
878 |
+
# @ profilebuilder
|
879 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/admin.bar.php:32
|
880 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:31
|
881 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:44
|
882 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:57
|
883 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:70
|
884 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:83
|
885 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:102
|
886 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:115
|
887 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:131
|
888 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:144
|
889 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:157
|
890 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:176
|
891 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:190
|
892 |
msgid "Hide"
|
893 |
msgstr "Ocultar"
|
894 |
|
895 |
+
# @ default
|
896 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/admin.bar.php:43
|
897 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:202
|
898 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:58
|
899 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/addon.php:45
|
900 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:147
|
901 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/recaptcha.php:284
|
902 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/userlisting.php:370
|
903 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/register.version.php:35
|
904 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/functions/register.version.php:76
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
905 |
msgid "Save Changes"
|
906 |
+
msgstr "Salvar Modificações"
|
907 |
|
908 |
+
# @ profilebuilder
|
909 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:5
|
910 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:8
|
911 |
msgid "Profile Builder"
|
912 |
msgstr "Gerador de Perfis"
|
913 |
|
914 |
+
# @ profilebuilder
|
915 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:6
|
916 |
msgid "Welcome to Profile Builder!"
|
917 |
msgstr "Seja bem vindo ao Profile Builder"
|
918 |
|
919 |
+
# @ profilebuilder
|
920 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:8
|
921 |
msgid ""
|
922 |
" lets you customize your website by adding a front-end menu for all your "
|
923 |
"users, giving them a more flexible way to modify their user-information or "
|
927 |
"usuários do front-end. Uma forma mais flexível para registrar ou modificar "
|
928 |
"novos usuários."
|
929 |
|
930 |
+
# @ profilebuilder
|
931 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:9
|
932 |
msgid ""
|
933 |
"Also, grants users with administrator rights to customize basic fields or to "
|
934 |
"add new ones."
|
936 |
"Além do mais, permite a usuários com direitos de administrador, a "
|
937 |
"personalização de campos básicos bem como adicionar novos campos."
|
938 |
|
939 |
+
# @ profilebuilder
|
940 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:10
|
941 |
msgid ""
|
942 |
"To achieve this, just create a new page, and give it an intuitive name(e.g. "
|
943 |
"Edit Profile)."
|
944 |
msgstr ""
|
945 |
"Para conseguir isso apenas crie uma nova página com um nome intuitivo (por "
|
946 |
+
"exemplo, Editar perfil).v"
|
947 |
|
948 |
+
# @ profilebuilder
|
949 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:11
|
950 |
msgid ""
|
951 |
"Now all you need to do is add the following shortcode(for the previous "
|
952 |
"example): "
|
954 |
"Agora tudo o que necessitas fazer é adicionar o shortcode seguinte (para o "
|
955 |
"exemplo anterior):"
|
956 |
|
957 |
+
# @ profilebuilder
|
958 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:12
|
959 |
msgid "Publish your page and you are ready to go!"
|
960 |
msgstr "Publique seu site e já estará pronto para usar"
|
961 |
|
962 |
+
# @ profilebuilder
|
963 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:13
|
964 |
msgid "You can use the following shortcodes:"
|
965 |
msgstr "Você poderá usar os seguintes shortcodes:"
|
966 |
|
967 |
+
# @ profilebuilder
|
968 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:14
|
969 |
msgid "for a log-in form."
|
970 |
msgstr "para un formulario de acceso."
|
971 |
|
972 |
+
# @ profilebuilder
|
973 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:15
|
974 |
msgid "to add a registration form."
|
975 |
msgstr "para adicionar um formulário de inscrição."
|
976 |
|
977 |
+
# @ profilebuilder
|
978 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:16
|
979 |
msgid ""
|
980 |
"to grant users a front-end acces to their personal information(requires user "
|
981 |
"to be logged in)."
|
983 |
"para permitir aos usuários acesso a sua informação desde a parte pública "
|
984 |
"(front-end) do site (é necessário que o usuário esteja conectado)"
|
985 |
|
986 |
+
# @ profilebuilder
|
987 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:17
|
988 |
msgid "to add a password recovery form."
|
989 |
msgstr "para adicionar um formulário de inscrição."
|
990 |
|
991 |
+
# @ profilebuilder
|
992 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:19
|
993 |
#, fuzzy
|
994 |
msgid ""
|
995 |
"With the <strong>Pro</strong> version, users with administrator rights have "
|
998 |
"Os usuários com direitos de administrador tem acesso as seguintes "
|
999 |
"características:"
|
1000 |
|
1001 |
+
# @ profilebuilder
|
1002 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:20
|
1003 |
msgid ""
|
1004 |
"add a custom stylesheet/inherit values from the current theme or use one of "
|
1005 |
"the following built into this plugin: default, white or black."
|
1007 |
"adicionar uma folha de estilos (CSS) personalizada/herdar os valores do tema "
|
1008 |
"atual ou usar uma das seguintes: padrão, branco ou preto."
|
1009 |
|
1010 |
+
# @ profilebuilder
|
1011 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:21
|
1012 |
msgid ""
|
1013 |
"select whether to display or not the admin bar in the front end for a "
|
1014 |
"specific user-group registered to the site."
|
1016 |
"escolher se deseja ou não mostrar a barra de administração no site para um "
|
1017 |
"determinado grupo de usuários registrados no site."
|
1018 |
|
1019 |
+
# @ profilebuilder
|
1020 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:22
|
1021 |
msgid ""
|
1022 |
"select which information-field can users see/modify. The hidden fields' "
|
1023 |
"values remain unmodified."
|
1025 |
"selecionar quais campos podem ser vistos/modificados pelos usuários. Os "
|
1026 |
"valores de campos ocultos não de modificarão."
|
1027 |
|
1028 |
+
# @ profilebuilder
|
1029 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:23
|
1030 |
msgid ""
|
1031 |
"add custom fields to the existing ones, with several types to choose from: "
|
1032 |
"heading, text, textarea, select, checkbox, radio, and/or upload."
|
1035 |
"escolha: título, texto, textarea, select, checkbox, radio, e/ou subir "
|
1036 |
"arquivo."
|
1037 |
|
1038 |
+
# @ profilebuilder
|
1039 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:24
|
1040 |
msgid "add an avatar field."
|
1041 |
msgstr "adicionar um campo de avatar."
|
1042 |
|
1043 |
+
# @ profilebuilder
|
1044 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:25
|
1045 |
msgid "create custom redirects."
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
# @ profilebuilder
|
1049 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:26
|
1050 |
msgid "front-end userlisting using the"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
# @ profilebuilder
|
1054 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:26
|
1055 |
msgid "shortcode."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
# @ profilebuilder
|
1059 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:29
|
1060 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:47
|
1061 |
+
msgid "NOTE:"
|
1062 |
+
msgstr "OBS:"
|
1063 |
+
|
1064 |
+
# @ profilebuilder
|
1065 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:30
|
1066 |
msgid "this plugin only adds/removes fields in the front-end."
|
1067 |
msgstr "este plugin somente adiciona/elimina campos da parte pública do site."
|
1068 |
|
1069 |
+
# @ profilebuilder
|
1070 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:31
|
1071 |
msgid ""
|
1072 |
"The default information-fields will still be visible(and thus modifiable)"
|
1073 |
msgstr ""
|
1074 |
"Os campos de informação por padrão seguirão sendo visíveis (e portanto "
|
1075 |
"editáveis)"
|
1076 |
|
1077 |
+
# @ profilebuilder
|
1078 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/basic.info.php:32
|
1079 |
msgid ""
|
1080 |
"from the back-end, while custom fields will only be visible in the front-end."
|
1081 |
msgstr ""
|
1082 |
"através da administração, enquanto os campos personalizados somente serão "
|
1083 |
"visíveis na parte pública (front end)."
|
1084 |
|
1085 |
+
# @ profilebuilder
|
1086 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:9
|
1087 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:10
|
1088 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/options.php:89
|
1089 |
msgid "Default Profile Fields"
|
1090 |
+
msgstr "Perfil campos padrões"
|
1091 |
|
1092 |
+
# @ profilebuilder
|
1093 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:14
|
1094 |
msgid "Input Field Name"
|
1095 |
+
msgstr "Etiqueta do Campo"
|
1096 |
|
1097 |
+
# @ profilebuilder
|
1098 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:16
|
1099 |
msgid "Required"
|
1100 |
msgstr "(obrigatorio)"
|
1101 |
|
1102 |
+
# @ profilebuilder
|
1103 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:21
|
1104 |
msgid "Name:"
|
1105 |
+
msgstr "Nome:"
|
1106 |
|
1107 |
+
# @ profilebuilder
|
1108 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:34
|
1109 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:47
|
1110 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:60
|
1111 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:73
|
1112 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:86
|
1113 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:105
|
1114 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:118
|
1115 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:134
|
1116 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:147
|
1117 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:160
|
1118 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:179
|
1119 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:193
|
1120 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:31
|
1121 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:41
|
1122 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:49
|
1123 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:57
|
1124 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:67
|
1125 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:96
|
1126 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:108
|
1127 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:120
|
1128 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:132
|
1129 |
msgid "Yes"
|
1130 |
+
msgstr "Sim"
|
1131 |
+
|
1132 |
+
# @ profilebuilder
|
1133 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:35
|
1134 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:48
|
1135 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:61
|
1136 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:74
|
1137 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:87
|
1138 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:106
|
1139 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:119
|
1140 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:135
|
1141 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:148
|
1142 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:161
|
1143 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:180
|
1144 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:194
|
1145 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:32
|
1146 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:42
|
1147 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:50
|
1148 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:58
|
1149 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:68
|
1150 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:97
|
1151 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:109
|
1152 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:121
|
1153 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/custom.redirects.php:133
|
1154 |
#, fuzzy
|
1155 |
msgid "No"
|
1156 |
msgstr "Nenhum"
|
1157 |
|
1158 |
+
# @ profilebuilder
|
1159 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:79
|
1160 |
msgid "Display name publicly as..."
|
1161 |
msgstr "Mostrar publicamente como..."
|
1162 |
|
1163 |
+
# @ profilebuilder
|
1164 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:92
|
1165 |
msgid "Contact Info:"
|
1166 |
msgstr "Informação de contato:"
|
1167 |
|
1168 |
+
# @ profilebuilder
|
1169 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:166
|
1170 |
msgid "About Yourself:"
|
1171 |
msgstr "Sobre você:"
|
1172 |
|
1173 |
+
# @ profilebuilder
|
1174 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/default.settings.php:186
|
1175 |
#, fuzzy
|
1176 |
msgid "(New) Password"
|
1177 |
+
msgstr "Nova Senha"
|
1178 |
|
1179 |
+
# @ profilebuilder
|
1180 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:10
|
1181 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:11
|
1182 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/options.php:87
|
1183 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/premium/addons/userlisting.php:38
|
1184 |
msgid "General Settings"
|
1185 |
+
msgstr "Configurações Gerais"
|
1186 |
|
1187 |
+
# @ profilebuilder
|
1188 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:12
|
1189 |
#, fuzzy
|
1190 |
msgid "Stylesheet Used on the Front-End:"
|
1191 |
msgstr "Folha de estilos usada:"
|
1192 |
|
1193 |
+
# @ profilebuilder
|
1194 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:18
|
|
|
|
|
|
|
1195 |
msgid "White"
|
1196 |
msgstr "Branco"
|
1197 |
|
1198 |
+
# @ profilebuilder
|
1199 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:19
|
1200 |
msgid "Black"
|
1201 |
msgstr "Preto"
|
1202 |
|
1203 |
+
# @ profilebuilder
|
1204 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:23
|
1205 |
msgid "None"
|
1206 |
msgstr "Nenhum"
|
1207 |
|
1208 |
+
# @ profilebuilder
|
1209 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:29
|
1210 |
msgid "\"Email Confirmation\" Feature Activated:"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
# @ profilebuilder
|
1214 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:39
|
1215 |
msgid "\"Admin Approval\" Feature Activated:"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
# @ profilebuilder
|
1219 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:48
|
1220 |
msgid ""
|
1221 |
"The black stylesheet is intended for sites/blogs with a dark background."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
# @ profilebuilder
|
1225 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:49
|
1226 |
msgid ""
|
1227 |
"The white stylesheet is intended for a sites/blogs with a light background "
|
1228 |
"color."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
# @ profilebuilder
|
1232 |
+
#: C:/Users/Gabriel/Desktop/test/profile-builder-pro/functions/general.settings.php:50
|
1233 |
msgid ""
|
1234 |
"On single-site installations the \"Email Confirmation\" feature only works "
|
1235 |
"in the front-end, so make sure you also use the \"Custom Redirects\" feature."
|
1236 |
msgstr ""
|
1237 |
|