Version Description
- Added icon with tooltip on registration pages 'Users can register themselves or you can manually create users here' message
- Updated translation files
- Removed some php notices from the code-base
- Improved theme compatibility for the submit buttons inside the Profile Builder forms
- Removed UL dots from Register form in Chrome, Safari
Download this release
Release Info
Developer | reflectionmedia |
Plugin | User registration & user profile – Profile Builder |
Version | 2.0.7 |
Comparing to | |
See all releases |
Code changes from version 2.0.6 to 2.0.7
- admin/general-settings.php +29 -1
- assets/css/style-front-end.css +1 -37
- features/functions.php +44 -41
- front-end/class-formbuilder.php +2 -2
- front-end/recover.php +360 -360
- index.php +5 -5
- readme.txt +13 -5
- translation/profilebuilder-fr_FR.mo +0 -0
- translation/profilebuilder-fr_FR.po +156 -144
- translation/profilebuilder-nl_NL.mo +0 -0
- translation/profilebuilder-nl_NL.po +163 -151
- translation/profilebuilder-pt_BR.mo +0 -0
- translation/profilebuilder-pt_BR.po +144 -132
- translation/profilebuilder-ro_RO.mo +0 -0
- translation/profilebuilder-ro_RO.po +2592 -0
- translation/profilebuilder-zh_CN.mo +0 -0
- translation/profilebuilder-zh_CN.po +135 -123
- translation/profilebuilder-zh_HK.mo +0 -0
- translation/profilebuilder-zh_HK.po +135 -123
- translation/profilebuilder-zh_TW.mo +0 -0
- translation/profilebuilder-zh_TW.po +135 -123
- translation/profilebuilder.pot +139 -123
admin/general-settings.php
CHANGED
@@ -173,6 +173,8 @@ function wppb_general_settings_content() {
|
|
173 |
</select>
|
174 |
</td>
|
175 |
</tr>
|
|
|
|
|
176 |
</table>
|
177 |
|
178 |
|
@@ -183,4 +185,30 @@ function wppb_general_settings_content() {
|
|
183 |
</div>
|
184 |
|
185 |
<?php
|
186 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
</select>
|
174 |
</td>
|
175 |
</tr>
|
176 |
+
|
177 |
+
<?php do_action( 'wppb_extra_general_settings', $wppb_generalSettings ); ?>
|
178 |
</table>
|
179 |
|
180 |
|
185 |
</div>
|
186 |
|
187 |
<?php
|
188 |
+
}
|
189 |
+
|
190 |
+
|
191 |
+
/*
|
192 |
+
* Function that sanitizes the general settings
|
193 |
+
*
|
194 |
+
* @param array $wppb_generalSettings
|
195 |
+
*
|
196 |
+
* @since v.2.0.7
|
197 |
+
*/
|
198 |
+
function wppb_general_settings_sanitize( $wppb_generalSettings ) {
|
199 |
+
|
200 |
+
$wppb_generalSettings = apply_filters( 'wppb_general_settings_sanitize_extra', $wppb_generalSettings );
|
201 |
+
|
202 |
+
return $wppb_generalSettings;
|
203 |
+
}
|
204 |
+
|
205 |
+
|
206 |
+
/*
|
207 |
+
* Function that pushes settings errors to the user
|
208 |
+
*
|
209 |
+
* @since v.2.0.7
|
210 |
+
*/
|
211 |
+
function wppb_general_settings_admin_notices() {
|
212 |
+
settings_errors( 'wppb_general_settings' );
|
213 |
+
}
|
214 |
+
add_action( 'admin_notices', 'wppb_general_settings_admin_notices' );
|
assets/css/style-front-end.css
CHANGED
@@ -24,49 +24,13 @@
|
|
24 |
/*--------------------------------------------------------------
|
25 |
2.0 Forms
|
26 |
--------------------------------------------------------------*/
|
27 |
-
.wppb-user-forms button,
|
28 |
-
.wppb-user-forms input,
|
29 |
.wppb-user-forms select,
|
30 |
.wppb-user-forms textarea{
|
31 |
font-size: 100%; /* Corrects font size not being inherited in all browsers */
|
32 |
margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
|
33 |
vertical-align: baseline; /* Improves appearance and consistency in all browsers */
|
34 |
}
|
35 |
-
.wppb-user-forms button,
|
36 |
-
.wppb-user-forms input[type="button"],
|
37 |
-
.wppb-user-forms input[type="reset"],
|
38 |
-
.wppb-user-forms input[type="submit"] {
|
39 |
-
border: 1px solid;
|
40 |
-
border-color: #ccc #ccc #bbb;
|
41 |
-
border-radius: 3px;
|
42 |
-
background: #e6e6e6;
|
43 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
|
44 |
-
color: rgba(0, 0, 0, .8);
|
45 |
-
cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
|
46 |
-
-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
|
47 |
-
font-size: 12px;
|
48 |
-
line-height: 1;
|
49 |
-
padding: .6em 1em .4em;
|
50 |
-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
|
51 |
-
}
|
52 |
-
.wppb-user-forms button:hover,
|
53 |
-
.wppb-user-forms input[type="button"]:hover,
|
54 |
-
.wppb-user-forms input[type="reset"]:hover,
|
55 |
-
.wppb-user-forms input[type="submit"]:hover {
|
56 |
-
border-color: #ccc #bbb #aaa;
|
57 |
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
|
58 |
-
}
|
59 |
-
.wppb-user-forms button:focus,
|
60 |
-
.wppb-user-forms input[type="button"]:focus,
|
61 |
-
.wppb-user-forms input[type="reset"]:focus,
|
62 |
-
.wppb-user-forms input[type="submit"]:focus,
|
63 |
-
.wppb-user-forms button:active,
|
64 |
-
.wppb-user-forms input[type="button"]:active,
|
65 |
-
.wppb-user-forms input[type="reset"]:active,
|
66 |
-
.wppb-user-forms input[type="submit"]:active {
|
67 |
-
border-color: #aaa #bbb #bbb;
|
68 |
-
box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
|
69 |
-
}
|
70 |
.wppb-user-forms input[type="checkbox"],
|
71 |
.wppb-user-forms input[type="radio"] {
|
72 |
padding: 0; /* Addresses excess padding in IE8/9 */
|
24 |
/*--------------------------------------------------------------
|
25 |
2.0 Forms
|
26 |
--------------------------------------------------------------*/
|
27 |
+
.wppb-user-forms input:not([type="button"]):not([type="reset"]):not([type="submit"]),
|
|
|
28 |
.wppb-user-forms select,
|
29 |
.wppb-user-forms textarea{
|
30 |
font-size: 100%; /* Corrects font size not being inherited in all browsers */
|
31 |
margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
|
32 |
vertical-align: baseline; /* Improves appearance and consistency in all browsers */
|
33 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
.wppb-user-forms input[type="checkbox"],
|
35 |
.wppb-user-forms input[type="radio"] {
|
36 |
padding: 0; /* Addresses excess padding in IE8/9 */
|
features/functions.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
// whitelist options, you can add more register_settings changing the second parameter
|
8 |
function wppb_register_settings() {
|
9 |
register_setting( 'wppb_option_group', 'wppb_default_settings' );
|
10 |
-
register_setting( 'wppb_general_settings', 'wppb_general_settings' );
|
11 |
register_setting( 'wppb_display_admin_settings', 'wppb_display_admin_settings' );
|
12 |
register_setting( 'wppb_profile_builder_pro_serial', 'wppb_profile_builder_pro_serial' );
|
13 |
register_setting( 'wppb_profile_builder_hobbyist_serial', 'wppb_profile_builder_hobbyist_serial' );
|
@@ -307,9 +307,10 @@ function wppb_changeDefaultAvatar( $avatar, $id_or_email, $size, $default, $alt
|
|
307 |
foreach( $wppb_manage_fields as $value ){
|
308 |
if ( $value['field'] == 'Avatar'){
|
309 |
$customUserAvatar = get_user_meta( $my_user_id, 'resized_avatar_'.$value['id'], true );
|
310 |
-
|
311 |
-
|
312 |
-
|
|
|
313 |
}
|
314 |
}
|
315 |
}
|
@@ -347,42 +348,44 @@ function wppb_resize_avatar( $userID, $userlisting_size = null, $userlisting_cro
|
|
347 |
|
348 |
$width = ( !empty( $userlisting_size ) ? $userlisting_size : $width );
|
349 |
$height = ( !empty( $userlisting_size ) ? $userlisting_size : $height );
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
|
|
|
|
386 |
}
|
387 |
}
|
388 |
}
|
@@ -479,7 +482,7 @@ function wppb_check_password_strength(){
|
|
479 |
function wppb_password_length_text(){
|
480 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
481 |
if( !empty( $wppb_generalSettings['minimum_password_length'] ) ){
|
482 |
-
return __(
|
483 |
}
|
484 |
return '';
|
485 |
}
|
7 |
// whitelist options, you can add more register_settings changing the second parameter
|
8 |
function wppb_register_settings() {
|
9 |
register_setting( 'wppb_option_group', 'wppb_default_settings' );
|
10 |
+
register_setting( 'wppb_general_settings', 'wppb_general_settings', 'wppb_general_settings_sanitize' );
|
11 |
register_setting( 'wppb_display_admin_settings', 'wppb_display_admin_settings' );
|
12 |
register_setting( 'wppb_profile_builder_pro_serial', 'wppb_profile_builder_pro_serial' );
|
13 |
register_setting( 'wppb_profile_builder_hobbyist_serial', 'wppb_profile_builder_hobbyist_serial' );
|
307 |
foreach( $wppb_manage_fields as $value ){
|
308 |
if ( $value['field'] == 'Avatar'){
|
309 |
$customUserAvatar = get_user_meta( $my_user_id, 'resized_avatar_'.$value['id'], true );
|
310 |
+
$customUserAvatarRelativePath = get_user_meta( $my_user_id, 'resized_avatar_'.$value['id'].'_relative_path', true );
|
311 |
+
|
312 |
+
if ( ( ($customUserAvatar != '') || ($customUserAvatar != null) ) && file_exists($customUserAvatarRelativePath) ){
|
313 |
+
$avatar = "<img alt='{$alt}' src='{$customUserAvatar}' class='avatar avatar-{$size} photo avatar-default' height='{$size}' width='{$size}' />";
|
314 |
}
|
315 |
}
|
316 |
}
|
348 |
|
349 |
$width = ( !empty( $userlisting_size ) ? $userlisting_size : $width );
|
350 |
$height = ( !empty( $userlisting_size ) ? $userlisting_size : $height );
|
351 |
+
|
352 |
+
if( !strpos( get_user_meta( $userID, 'resized_avatar_'.$value['id'], true ), $width . 'x' . $height ) ) {
|
353 |
+
// retrieve the original image (in original size)
|
354 |
+
$avatar_directory_path = get_user_meta( $userID, 'avatar_directory_path_'.$value['id'], true );
|
355 |
+
|
356 |
+
$image = wp_get_image_editor( $avatar_directory_path );
|
357 |
+
if ( !is_wp_error( $image ) ) {
|
358 |
+
do_action( 'wppb_before_avatar_resizing', $image, $userID, $value['meta-name'], $value['avatar-size'] );
|
359 |
+
|
360 |
+
$crop = apply_filters( 'wppb_avatar_crop_resize', ( !empty( $userlisting_crop ) ? $userlisting_crop : false ) );
|
361 |
+
|
362 |
+
$resize = $image->resize( $width, $height, $crop );
|
363 |
+
|
364 |
+
if ($resize !== FALSE) {
|
365 |
+
do_action( 'wppb_avatar_resizing', $image, $resize );
|
366 |
+
|
367 |
+
$fileType = apply_filters( 'wppb_resized_file_extension', 'png' );
|
368 |
+
|
369 |
+
$wp_upload_array = wp_upload_dir(); // Array of key => value pairs
|
370 |
+
|
371 |
+
//create file(name); both with directory and url
|
372 |
+
$fileName_dir = $image->generate_filename( NULL, $wp_upload_array['basedir'].'/profile_builder/avatars/', $fileType );
|
373 |
+
|
374 |
+
if ( PHP_OS == "WIN32" || PHP_OS == "WINNT" )
|
375 |
+
$fileName_dir = str_replace( '\\', '/', $fileName_dir );
|
376 |
+
|
377 |
+
$fileName_url = str_replace( str_replace( '\\', '/', $wp_upload_array['basedir'] ), $wp_upload_array['baseurl'], $fileName_dir );
|
378 |
+
|
379 |
+
//save the newly created (resized) avatar on the disc
|
380 |
+
$image->save( $fileName_dir );
|
381 |
+
|
382 |
+
update_user_meta( $userID, 'resized_avatar_'.$value['id'], $fileName_url );
|
383 |
+
update_user_meta( $userID, 'resized_avatar_'.$value['id'].'_relative_path', $fileName_dir );
|
384 |
+
|
385 |
+
do_action( 'wppb_after_avatar_resizing', $image, $fileName_dir, $fileName_url );
|
386 |
+
}
|
387 |
+
}
|
388 |
+
}
|
389 |
}
|
390 |
}
|
391 |
}
|
482 |
function wppb_password_length_text(){
|
483 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
484 |
if( !empty( $wppb_generalSettings['minimum_password_length'] ) ){
|
485 |
+
return sprintf(__('Minimum length of %d characters', 'profilebuilder'), $wppb_generalSettings['minimum_password_length']);
|
486 |
}
|
487 |
return '';
|
488 |
}
|
front-end/class-formbuilder.php
CHANGED
@@ -90,10 +90,10 @@ class Profile_Builder_Form_Creator{
|
|
90 |
$current_user_capability = apply_filters ( 'wppb_registration_user_capability', 'create_users' );
|
91 |
|
92 |
if ( current_user_can( $current_user_capability ) && $registration )
|
93 |
-
$this->wppb_form_content( apply_filters( 'wppb_register_pre_form_message', '<p class="alert" id="wppb_register_pre_form_message">'.__( 'Users can register themselves or you can manually create users here.', 'profilebuilder').'</p>' ) );
|
94 |
|
95 |
elseif ( current_user_can( $current_user_capability ) && !$registration )
|
96 |
-
$this->wppb_form_content( apply_filters( 'wppb_register_pre_form_message', '<p class="alert" id="wppb_register_pre_form_message">'.__( 'Users cannot currently register themselves, but you can manually create users here.', 'profilebuilder').'</p>' ) );
|
97 |
|
98 |
elseif ( !current_user_can( $current_user_capability ) ){
|
99 |
global $user_ID;
|
90 |
$current_user_capability = apply_filters ( 'wppb_registration_user_capability', 'create_users' );
|
91 |
|
92 |
if ( current_user_can( $current_user_capability ) && $registration )
|
93 |
+
$this->wppb_form_content( apply_filters( 'wppb_register_pre_form_message', '<p class="alert" id="wppb_register_pre_form_message">'.__( 'Users can register themselves or you can manually create users here.', 'profilebuilder'). '<img src="'.WPPB_PLUGIN_URL.'assets/images/pencil_delete.png" title="'.__( 'This message is only visible by administrators', 'profilebuilder' ).'"/>' . '</p>' ) );
|
94 |
|
95 |
elseif ( current_user_can( $current_user_capability ) && !$registration )
|
96 |
+
$this->wppb_form_content( apply_filters( 'wppb_register_pre_form_message', '<p class="alert" id="wppb_register_pre_form_message">'.__( 'Users cannot currently register themselves, but you can manually create users here.', 'profilebuilder'). '<img src="'.WPPB_PLUGIN_URL.'assets/images/pencil_delete.png" title="'.__( 'This message is only visible by administrators', 'profilebuilder' ).'"/>' . '</p>' ) );
|
97 |
|
98 |
elseif ( !current_user_can( $current_user_capability ) ){
|
99 |
global $user_ID;
|
front-end/recover.php
CHANGED
@@ -1,361 +1,361 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Function that checks if a user is approved before reseting the password
|
4 |
-
*
|
5 |
-
* @param string $data either the user login or the users email
|
6 |
-
* @param string $what what field we query for when getting the user
|
7 |
-
*/
|
8 |
-
function wppb_check_for_unapproved_user( $data, $what ){
|
9 |
-
$retMessage = '';
|
10 |
-
$messageNo = '';
|
11 |
-
|
12 |
-
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
13 |
-
if( $wppb_generalSettings['adminApproval'] == 'yes' ){
|
14 |
-
$user = ( ( $what == 'user_email' ) ? get_user_by( 'email', $data ) : get_user_by( 'login', $data ) );
|
15 |
-
|
16 |
-
if ( wp_get_object_terms( $user->data->ID, 'user_status' ) ){
|
17 |
-
$retMessage = '<strong>'. __('ERROR', 'profilebuilder') . '</strong>: ' . __('Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.', 'profilebuilder');
|
18 |
-
$retMessage = apply_filters('wppb_recover_password_unapporved_user', $retMessage);
|
19 |
-
|
20 |
-
$messageNo = '6';
|
21 |
-
}
|
22 |
-
}
|
23 |
-
|
24 |
-
return array( $retMessage, $messageNo );
|
25 |
-
}
|
26 |
-
|
27 |
-
/**
|
28 |
-
* Function that
|
29 |
-
*
|
30 |
-
* @param string $requested_user_login the user login
|
31 |
-
*
|
32 |
-
*/
|
33 |
-
function wppb_retrieve_activation_key( $requested_user_login ){
|
34 |
-
global $wpdb;
|
35 |
-
|
36 |
-
$key = $wpdb->get_var( $wpdb->prepare( "SELECT user_activation_key FROM $wpdb->users WHERE user_login = %s", $requested_user_login ) );
|
37 |
-
|
38 |
-
if ( empty( $key ) ) {
|
39 |
-
|
40 |
-
// Generate something random for a key...
|
41 |
-
$key = wp_generate_password( 20, false );
|
42 |
-
do_action('wppb_retrieve_password_key', $requested_user_login, $key);
|
43 |
-
|
44 |
-
// Now insert the new md5 key into the db
|
45 |
-
$wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $requested_user_login));
|
46 |
-
}
|
47 |
-
|
48 |
-
return $key;
|
49 |
-
}
|
50 |
-
|
51 |
-
/**
|
52 |
-
* Function that creates a generate new password form
|
53 |
-
*
|
54 |
-
* @param array $post_data $_POST
|
55 |
-
*
|
56 |
-
*/
|
57 |
-
function wppb_create_recover_password_form( $user, $post_data ){
|
58 |
-
?>
|
59 |
-
<form enctype="multipart/form-data" method="post" id="wppb-recover-password" class="wppb-user-forms" action="<?php echo add_query_arg( 'finalAction', 'yes', wppb_curpageurl() ); ?>">
|
60 |
-
<ul>
|
61 |
-
<?php
|
62 |
-
|
63 |
-
if( !empty( $post_data['passw1'] ) )
|
64 |
-
$passw_one = $post_data['passw1'];
|
65 |
-
else
|
66 |
-
$passw_one = '';
|
67 |
-
|
68 |
-
if( !empty( $post_data['passw2'] ) )
|
69 |
-
$passw_two = $post_data['passw2'];
|
70 |
-
else
|
71 |
-
$passw_two = '';
|
72 |
-
|
73 |
-
$recover_inputPassword = '
|
74 |
-
<li class="wppb-form-field passw1">
|
75 |
-
<label for="passw1">'. __( 'Password', 'profilebuilder' ).'</label>
|
76 |
-
<input class="password" name="passw1" type="password" id="passw1" value="'. $passw_one .'" autocomplete="off" title="'. wppb_password_length_text() .'"/>
|
77 |
-
</li><!-- .passw1 -->
|
78 |
-
<input type="hidden" name="userData" value="'.$user->ID.'"/>
|
79 |
-
<li class="wppb-form-field passw2">
|
80 |
-
<label for="passw2">'. __( 'Repeat Password', 'profilebuilder' ).'</label>
|
81 |
-
<input class="password" name="passw2" type="password" id="passw2" value="'.$passw_two.'" autocomplete="off" />
|
82 |
-
</li><!-- .passw2 -->';
|
83 |
-
|
84 |
-
/* if we have active the password strength checker */
|
85 |
-
$recover_inputPassword .= wppb_password_strength_checker_html();
|
86 |
-
|
87 |
-
echo apply_filters( 'wppb_recover_password_form_input', $recover_inputPassword, $passw_one, $passw_two, $user->ID );
|
88 |
-
?>
|
89 |
-
</ul>
|
90 |
-
<p class="form-submit">
|
91 |
-
<?php $button_name = __('Reset Password', 'profilebuilder'); ?>
|
92 |
-
<input name="recover_password2" type="submit" id="wppb-recover-password-button" class="submit button" value="<?php echo apply_filters('wppb_recover_password_button_name1', $button_name); ?>" />
|
93 |
-
<input name="action2" type="hidden" id="action2" value="recover_password2" />
|
94 |
-
</p><!-- .form-submit -->
|
95 |
-
<?php wp_nonce_field( 'verify_true_password_recovery2_'.$user->ID, 'password_recovery_nonce_field2' ); ?>
|
96 |
-
</form><!-- #recover_password -->
|
97 |
-
<?php
|
98 |
-
}
|
99 |
-
|
100 |
-
/**
|
101 |
-
* Function that generates the recover password form
|
102 |
-
*
|
103 |
-
* @param WP_User $user the user object
|
104 |
-
* @param array $post_data $_POST
|
105 |
-
*
|
106 |
-
*/
|
107 |
-
function wppb_create_generate_password_form( $post_data ){
|
108 |
-
?>
|
109 |
-
<form enctype="multipart/form-data" method="post" id="wppb-recover-password" class="wppb-user-forms" action="<?php echo add_query_arg( 'submitted', 'yes', wppb_curpageurl() ); ?>">
|
110 |
-
<?php
|
111 |
-
$recover_notification = '<p>' . __( 'Please enter your username or email address.', 'profilebuilder' );
|
112 |
-
$recover_notification .= '<br/>'.__( 'You will receive a link to create a new password via email.', 'profilebuilder' ).'</p>';
|
113 |
-
echo apply_filters( 'wppb_recover_password_message1', $recover_notification );
|
114 |
-
|
115 |
-
$username_email = ( isset( $post_data['username_email'] ) ? $post_data['username_email'] : '' );
|
116 |
-
|
117 |
-
$recover_input = '<ul>
|
118 |
-
<li class="wppb-form-field wppb-username-email">
|
119 |
-
<label for="username_email">'.__( 'Username or E-mail', 'profilebuilder' ).'</label>
|
120 |
-
<input class="text-input" name="username_email" type="text" id="username_email" value="'.trim( $username_email ).'" />
|
121 |
-
</li><!-- .username_email --></ul>';
|
122 |
-
echo apply_filters( 'wppb_recover_password_gemerate_password_input', $recover_input, trim( $username_email ) );
|
123 |
-
?>
|
124 |
-
<p class="form-submit">
|
125 |
-
<?php $button_name = __('Get New Password', 'profilebuilder'); ?>
|
126 |
-
<input name="recover_password" type="submit" id="wppb-recover-password-button" class="submit button" value="<?php echo apply_filters('wppb_recover_password_button_name3', $button_name); ?>" />
|
127 |
-
<input name="action" type="hidden" id="action" value="recover_password" />
|
128 |
-
</p>
|
129 |
-
<?php wp_nonce_field( 'verify_true_password_recovery', 'password_recovery_nonce_field' ); ?>
|
130 |
-
</form>
|
131 |
-
<?php
|
132 |
-
}
|
133 |
-
|
134 |
-
/**
|
135 |
-
* The function for the recover password shortcode
|
136 |
-
*
|
137 |
-
*/
|
138 |
-
function wppb_front_end_password_recovery(){
|
139 |
-
global $wppb_shortcode_on_front;
|
140 |
-
$wppb_shortcode_on_front = true;
|
141 |
-
$message = $messageNo = $message2 = $messageNo2 = $linkLoginName = $linkKey = '';
|
142 |
-
|
143 |
-
global $wpdb;
|
144 |
-
|
145 |
-
ob_start();
|
146 |
-
|
147 |
-
|
148 |
-
// If the user entered an email/username, process the request
|
149 |
-
if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == 'recover_password' && wp_verify_nonce($_POST['password_recovery_nonce_field'],'verify_true_password_recovery') ) {
|
150 |
-
|
151 |
-
$postedData = $_POST['username_email']; //we get the raw data
|
152 |
-
//check to see if it's an e-mail (and if this is valid/present in the database) or is a username
|
153 |
-
|
154 |
-
|
155 |
-
// if we do not have an email in the posted date we try to get the email for that user
|
156 |
-
if( !is_email( $postedData ) ){
|
157 |
-
if (username_exists($postedData)){
|
158 |
-
$query = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_login= %s", $postedData ) );
|
159 |
-
if( !empty( $query[0] ) ){
|
160 |
-
$postedData = $query[0]->user_email;
|
161 |
-
}
|
162 |
-
}
|
163 |
-
else{
|
164 |
-
$message = __( 'The username entered wasn\'t found in the database!', 'profilebuilder').'<br/>'.__('Please check that you entered the correct username.', 'profilebuilder' );
|
165 |
-
$message = apply_filters( 'wppb_recover_password_sent_message4', $message );
|
166 |
-
$messageNo = '4';
|
167 |
-
}
|
168 |
-
}
|
169 |
-
|
170 |
-
// we should have an email by this point
|
171 |
-
if ( is_email( $postedData ) ){
|
172 |
-
if ( email_exists( $postedData ) ){
|
173 |
-
$retVal = wppb_check_for_unapproved_user($postedData, 'user_email');
|
174 |
-
if ($retVal[0] != ''){
|
175 |
-
$message = $retVal[0];
|
176 |
-
$messageNo = $retVal [1];
|
177 |
-
|
178 |
-
}else{
|
179 |
-
$message = sprintf( __( 'Check your e-mail for the confirmation link.', 'profilebuilder'), $postedData );
|
180 |
-
$message = apply_filters( 'wppb_recover_password_sent_message1', $message, $postedData );
|
181 |
-
$messageNo = '1';
|
182 |
-
|
183 |
-
//verify e-mail validity
|
184 |
-
$query = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_email= %s", $postedData ) );
|
185 |
-
if( !empty( $query[0] ) ){
|
186 |
-
$requestedUserID = $query[0]->ID;
|
187 |
-
$requestedUserLogin = $query[0]->user_login;
|
188 |
-
$requestedUserEmail = $query[0]->user_email;
|
189 |
-
|
190 |
-
//search if there is already an activation key present, if not create one
|
191 |
-
$key = wppb_retrieve_activation_key( $requestedUserLogin );
|
192 |
-
|
193 |
-
//send primary email message
|
194 |
-
$recoveruserMailMessage1 = sprintf( __('Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s', 'profilebuilder'), $requestedUserLogin, '<a href="'.add_query_arg( array( 'loginName' => $requestedUserLogin, 'key' => $key ), wppb_curpageurl() ).'">'.add_query_arg( array( 'loginName' => $requestedUserLogin, 'key' => $key ), wppb_curpageurl() ).'</a>');
|
195 |
-
$recoveruserMailMessage1 = apply_filters( 'wppb_recover_password_message_content_sent_to_user1', $recoveruserMailMessage1, $requestedUserID, $requestedUserLogin );
|
196 |
-
|
197 |
-
$recoveruserMailMessageTitle1 = sprintf(__('Password Reset from "%1$s"', 'profilebuilder'), $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES));
|
198 |
-
$recoveruserMailMessageTitle1 = apply_filters('wppb_recover_password_message_title_sent_to_user1', $recoveruserMailMessageTitle1);
|
199 |
-
|
200 |
-
//we add this filter to enable html encoding
|
201 |
-
add_filter('wp_mail_content_type',create_function('', 'return "text/html"; '));
|
202 |
-
//send mail to the user notifying him of the reset request
|
203 |
-
if (trim($recoveruserMailMessageTitle1) != ''){
|
204 |
-
$sent = wp_mail($requestedUserEmail, $recoveruserMailMessageTitle1, $recoveruserMailMessage1);
|
205 |
-
if ($sent === false){
|
206 |
-
$message = '<b>'. __( 'ERROR', 'profilebuilder' ) .': </b>' . sprintf( __( 'There was an error while trying to send the activation link to %1$s!', 'profilebuilder' ), $postedData );
|
207 |
-
$message = apply_filters( 'wppb_recover_password_sent_message_error_sending', $message );
|
208 |
-
$messageNo = '5';
|
209 |
-
}
|
210 |
-
}
|
211 |
-
}
|
212 |
-
}
|
213 |
-
|
214 |
-
}elseif ( !email_exists( $postedData ) ){
|
215 |
-
$message = __('The email address entered wasn\'t found in the database!', 'profilebuilder').'<br/>'.__('Please check that you entered the correct email address.', 'profilebuilder');
|
216 |
-
$message = apply_filters('wppb_recover_password_sent_message2', $message);
|
217 |
-
$messageNo = '2';
|
218 |
-
}
|
219 |
-
}
|
220 |
-
|
221 |
-
}
|
222 |
-
// If the user used the correct key-code, update his/her password
|
223 |
-
elseif ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action2'] ) && $_POST['action2'] == 'recover_password2' && wp_verify_nonce( $_POST['password_recovery_nonce_field2'], 'verify_true_password_recovery2_'.$_POST['userData'] ) ) {
|
224 |
-
|
225 |
-
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
226 |
-
|
227 |
-
if( ( $_POST['passw1'] == $_POST['passw2'] ) && ( !empty( $_POST['passw1'] ) && !empty( $_POST['passw2'] ) ) ){
|
228 |
-
if( !empty( $wppb_generalSettings['minimum_password_length'] ) || ( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ) ){
|
229 |
-
$message2 = '';
|
230 |
-
if( wppb_check_password_length( $_POST['passw1'] ) ){
|
231 |
-
$message2 .= __( "<br/>The password must have the minimum length of ". $wppb_generalSettings['minimum_password_length'] ." characters<br/>", "profilebuilder" );
|
232 |
-
$messageNo2 = '2';
|
233 |
-
}
|
234 |
-
if( wppb_check_password_strength() ){
|
235 |
-
$message2 .= __( "<br/>The password must have a minimum strength of ". wppb_check_password_strength(), "profilebuilder" );
|
236 |
-
$messageNo2 = '2';
|
237 |
-
}
|
238 |
-
}
|
239 |
-
|
240 |
-
if( $messageNo2 != 2 ){
|
241 |
-
|
242 |
-
$message2 = __( 'Your password has been successfully changed!', 'profilebuilder' );
|
243 |
-
$messageNo2 = '1';
|
244 |
-
|
245 |
-
$userID = $_POST['userData'];
|
246 |
-
$new_pass = $_POST['passw1'];
|
247 |
-
|
248 |
-
//update the new password and delete the key
|
249 |
-
do_action( 'wppb_password_reset', $userID, $new_pass );
|
250 |
-
|
251 |
-
wp_set_password( $new_pass, $userID );
|
252 |
-
|
253 |
-
$user_info = get_userdata( $userID );
|
254 |
-
|
255 |
-
//send secondary mail to the user containing the username and the new password
|
256 |
-
$recoveruserMailMessage2 = sprintf( __( 'You have successfully reset your password to: %1$s', 'profilebuilder' ), $new_pass );
|
257 |
-
$recoveruserMailMessage2 = apply_filters( 'wppb_recover_password_message_content_sent_to_user2', $recoveruserMailMessage2, $user_info->user_login );
|
258 |
-
|
259 |
-
$recoveruserMailMessageTitle2 = sprintf( __('Password Successfully Reset for %1$s on "%2$s"', 'profilebuilder' ), $user_info->user_login, $blogname = wp_specialchars_decode( get_option('blogname'), ENT_QUOTES ) );
|
260 |
-
$recoveruserMailMessageTitle2 = apply_filters( 'wppb_recover_password_message_title_sent_to_user2', $recoveruserMailMessageTitle2 );
|
261 |
-
|
262 |
-
//we add this filter to enable html encoding
|
263 |
-
add_filter( 'wp_mail_content_type',create_function( '', 'return "text/html"; ') );
|
264 |
-
|
265 |
-
//send mail to the user notifying him of the reset request
|
266 |
-
if ( trim( $recoveruserMailMessageTitle2 ) != '' )
|
267 |
-
wp_mail( $user_info->user_email, $recoveruserMailMessageTitle2, $recoveruserMailMessage2 );
|
268 |
-
|
269 |
-
//send email to admin
|
270 |
-
$recoveradminMailMessage = sprintf( __( '%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s', 'profilebuilder' ), $user_info->user_login, $_POST['passw1'] );
|
271 |
-
$recoveradminMailMessage = apply_filters( 'wppb_recover_password_message_content_sent_to_admin', $recoveradminMailMessage );
|
272 |
-
|
273 |
-
$recoveradminMailMessageTitle = sprintf( __( 'Password Successfully Reset for %1$s on "%2$s"', 'profilebuilder' ), $user_info->user_login, $blogname = wp_specialchars_decode( get_option('blogname'), ENT_QUOTES ) );
|
274 |
-
$recoveradminMailMessageTitle = apply_filters( 'wppb_recover_password_message_title_sent_to_admin', $recoveradminMailMessageTitle );
|
275 |
-
|
276 |
-
|
277 |
-
//we disable the feature to send the admin a notification mail but can be still used using filters
|
278 |
-
$recoveradminMailMessageTitle = '';
|
279 |
-
$recoveradminMailMessageTitle = apply_filters( 'wppb_recover_password_message_title_sent_to_admin', $recoveradminMailMessageTitle );
|
280 |
-
|
281 |
-
//we add this filter to enable html encoding
|
282 |
-
add_filter('wp_mail_content_type',create_function('', 'return "text/html"; '));
|
283 |
-
//send mail to the admin notifying him of of a user with a password reset request
|
284 |
-
if (trim($recoveradminMailMessageTitle) != '')
|
285 |
-
wp_mail(get_option('admin_email'), $recoveradminMailMessageTitle, $recoveradminMailMessage);
|
286 |
-
}
|
287 |
-
}
|
288 |
-
else{
|
289 |
-
$message2 = __( 'The entered passwords don\'t match!', 'profilebuilder' );
|
290 |
-
$messageNo2 = '2';
|
291 |
-
}
|
292 |
-
|
293 |
-
}
|
294 |
-
|
295 |
-
?>
|
296 |
-
|
297 |
-
<div class="wppb_holder" id="wppb-recover-password">
|
298 |
-
|
299 |
-
<?php
|
300 |
-
// use this action hook to add extra content before the password recovery form
|
301 |
-
do_action( 'wppb_before_recover_password_fields' );
|
302 |
-
|
303 |
-
//this is the part that handles the actual recovery
|
304 |
-
if( isset( $_GET['submitted'] ) && isset( $_GET['loginName'] ) && isset( $_GET['key'] ) ){
|
305 |
-
//get the login name and key and verify if they match the ones in the database
|
306 |
-
|
307 |
-
$key = $_GET['key'];
|
308 |
-
$login = $_GET['loginName'];
|
309 |
-
|
310 |
-
$user = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_activation_key = %s AND user_login = %s", $key, $login ) );
|
311 |
-
|
312 |
-
if( !empty( $user ) ){
|
313 |
-
//check if the "finalAction" variable is not in the address bar, if it is, don't display the form anymore
|
314 |
-
if( isset( $_GET['finalAction'] ) && ( $_GET['finalAction'] == 'yes' ) ){
|
315 |
-
if( $messageNo2 == '2' ){
|
316 |
-
echo apply_filters( 'wppb_recover_password_password_changed_message2', '<p class="wppb-error">'.$message2.'</p>', $message2 );
|
317 |
-
|
318 |
-
wppb_create_recover_password_form( $user, $_POST );
|
319 |
-
|
320 |
-
}elseif( $messageNo2 == '1' )
|
321 |
-
echo apply_filters( 'wppb_recover_password_password_changed_message1', '<p class="wppb-success">'.$message2.'</p>', $message2 );
|
322 |
-
|
323 |
-
}else{
|
324 |
-
wppb_create_recover_password_form( $user, $_POST );
|
325 |
-
}
|
326 |
-
}else{
|
327 |
-
if( $messageNo2 == '1' )
|
328 |
-
echo apply_filters( 'wppb_recover_password_password_changed_message1', '<p class="wppb-success">'.$message2.'</p>', $message2 );
|
329 |
-
|
330 |
-
elseif( $messageNo2 == '2' )
|
331 |
-
echo apply_filters( 'wppb_recover_password_password_changed_message2', '<p class="wppb-error">'.$message2.'</p>', $message2 );
|
332 |
-
|
333 |
-
else
|
334 |
-
echo apply_filters( 'wppb_recover_password_invalid_key_message', '<p class="wppb-warning"><b>'.__( 'ERROR:', 'profilebuilder' ).'</b>'.__( 'Invalid key!', 'profilebuilder' ).'</p>' );
|
335 |
-
}
|
336 |
-
|
337 |
-
}else{
|
338 |
-
//display error message and the form
|
339 |
-
if (($messageNo == '') || ($messageNo == '2') || ($messageNo == '4')){
|
340 |
-
echo apply_filters( 'wppb_recover_password_displayed_message1', '<p class="wppb-warning">'.$message.'</p>' );
|
341 |
-
|
342 |
-
wppb_create_generate_password_form( $_POST );
|
343 |
-
|
344 |
-
}elseif (($messageNo == '5') || ($messageNo == '6'))
|
345 |
-
echo apply_filters( 'wppb_recover_password_displayed_message1', '<p class="wppb-warning">'.$message.'</p>' );
|
346 |
-
|
347 |
-
else
|
348 |
-
echo apply_filters( 'wppb_recover_password_displayed_message2', '<p class="wppb-success">'.$message.'</p>' ); //display success message
|
349 |
-
}
|
350 |
-
|
351 |
-
// use this action hook to add extra content after the password recovery form.
|
352 |
-
do_action( 'wppb_after_recover_password_fields' );
|
353 |
-
?>
|
354 |
-
</div>
|
355 |
-
|
356 |
-
<?php
|
357 |
-
$output = ob_get_contents();
|
358 |
-
ob_end_clean();
|
359 |
-
|
360 |
-
return $output;
|
361 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Function that checks if a user is approved before reseting the password
|
4 |
+
*
|
5 |
+
* @param string $data either the user login or the users email
|
6 |
+
* @param string $what what field we query for when getting the user
|
7 |
+
*/
|
8 |
+
function wppb_check_for_unapproved_user( $data, $what ){
|
9 |
+
$retMessage = '';
|
10 |
+
$messageNo = '';
|
11 |
+
|
12 |
+
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
13 |
+
if( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'yes' ){
|
14 |
+
$user = ( ( $what == 'user_email' ) ? get_user_by( 'email', $data ) : get_user_by( 'login', $data ) );
|
15 |
+
|
16 |
+
if ( wp_get_object_terms( $user->data->ID, 'user_status' ) ){
|
17 |
+
$retMessage = '<strong>'. __('ERROR', 'profilebuilder') . '</strong>: ' . __('Your account has to be confirmed by an administrator before you can use the "Password Reset" feature.', 'profilebuilder');
|
18 |
+
$retMessage = apply_filters('wppb_recover_password_unapporved_user', $retMessage);
|
19 |
+
|
20 |
+
$messageNo = '6';
|
21 |
+
}
|
22 |
+
}
|
23 |
+
|
24 |
+
return array( $retMessage, $messageNo );
|
25 |
+
}
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Function that retrieves the unique user key from the database. If we don't have one we generate one and add it to the database
|
29 |
+
*
|
30 |
+
* @param string $requested_user_login the user login
|
31 |
+
*
|
32 |
+
*/
|
33 |
+
function wppb_retrieve_activation_key( $requested_user_login ){
|
34 |
+
global $wpdb;
|
35 |
+
|
36 |
+
$key = $wpdb->get_var( $wpdb->prepare( "SELECT user_activation_key FROM $wpdb->users WHERE user_login = %s", $requested_user_login ) );
|
37 |
+
|
38 |
+
if ( empty( $key ) ) {
|
39 |
+
|
40 |
+
// Generate something random for a key...
|
41 |
+
$key = wp_generate_password( 20, false );
|
42 |
+
do_action('wppb_retrieve_password_key', $requested_user_login, $key);
|
43 |
+
|
44 |
+
// Now insert the new md5 key into the db
|
45 |
+
$wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $requested_user_login));
|
46 |
+
}
|
47 |
+
|
48 |
+
return $key;
|
49 |
+
}
|
50 |
+
|
51 |
+
/**
|
52 |
+
* Function that creates a generate new password form
|
53 |
+
*
|
54 |
+
* @param array $post_data $_POST
|
55 |
+
*
|
56 |
+
*/
|
57 |
+
function wppb_create_recover_password_form( $user, $post_data ){
|
58 |
+
?>
|
59 |
+
<form enctype="multipart/form-data" method="post" id="wppb-recover-password" class="wppb-user-forms" action="<?php echo add_query_arg( 'finalAction', 'yes', wppb_curpageurl() ); ?>">
|
60 |
+
<ul>
|
61 |
+
<?php
|
62 |
+
|
63 |
+
if( !empty( $post_data['passw1'] ) )
|
64 |
+
$passw_one = $post_data['passw1'];
|
65 |
+
else
|
66 |
+
$passw_one = '';
|
67 |
+
|
68 |
+
if( !empty( $post_data['passw2'] ) )
|
69 |
+
$passw_two = $post_data['passw2'];
|
70 |
+
else
|
71 |
+
$passw_two = '';
|
72 |
+
|
73 |
+
$recover_inputPassword = '
|
74 |
+
<li class="wppb-form-field passw1">
|
75 |
+
<label for="passw1">'. __( 'Password', 'profilebuilder' ).'</label>
|
76 |
+
<input class="password" name="passw1" type="password" id="passw1" value="'. $passw_one .'" autocomplete="off" title="'. wppb_password_length_text() .'"/>
|
77 |
+
</li><!-- .passw1 -->
|
78 |
+
<input type="hidden" name="userData" value="'.$user->ID.'"/>
|
79 |
+
<li class="wppb-form-field passw2">
|
80 |
+
<label for="passw2">'. __( 'Repeat Password', 'profilebuilder' ).'</label>
|
81 |
+
<input class="password" name="passw2" type="password" id="passw2" value="'.$passw_two.'" autocomplete="off" />
|
82 |
+
</li><!-- .passw2 -->';
|
83 |
+
|
84 |
+
/* if we have active the password strength checker */
|
85 |
+
$recover_inputPassword .= wppb_password_strength_checker_html();
|
86 |
+
|
87 |
+
echo apply_filters( 'wppb_recover_password_form_input', $recover_inputPassword, $passw_one, $passw_two, $user->ID );
|
88 |
+
?>
|
89 |
+
</ul>
|
90 |
+
<p class="form-submit">
|
91 |
+
<?php $button_name = __('Reset Password', 'profilebuilder'); ?>
|
92 |
+
<input name="recover_password2" type="submit" id="wppb-recover-password-button" class="submit button" value="<?php echo apply_filters('wppb_recover_password_button_name1', $button_name); ?>" />
|
93 |
+
<input name="action2" type="hidden" id="action2" value="recover_password2" />
|
94 |
+
</p><!-- .form-submit -->
|
95 |
+
<?php wp_nonce_field( 'verify_true_password_recovery2_'.$user->ID, 'password_recovery_nonce_field2' ); ?>
|
96 |
+
</form><!-- #recover_password -->
|
97 |
+
<?php
|
98 |
+
}
|
99 |
+
|
100 |
+
/**
|
101 |
+
* Function that generates the recover password form
|
102 |
+
*
|
103 |
+
* @param WP_User $user the user object
|
104 |
+
* @param array $post_data $_POST
|
105 |
+
*
|
106 |
+
*/
|
107 |
+
function wppb_create_generate_password_form( $post_data ){
|
108 |
+
?>
|
109 |
+
<form enctype="multipart/form-data" method="post" id="wppb-recover-password" class="wppb-user-forms" action="<?php echo add_query_arg( 'submitted', 'yes', wppb_curpageurl() ); ?>">
|
110 |
+
<?php
|
111 |
+
$recover_notification = '<p>' . __( 'Please enter your username or email address.', 'profilebuilder' );
|
112 |
+
$recover_notification .= '<br/>'.__( 'You will receive a link to create a new password via email.', 'profilebuilder' ).'</p>';
|
113 |
+
echo apply_filters( 'wppb_recover_password_message1', $recover_notification );
|
114 |
+
|
115 |
+
$username_email = ( isset( $post_data['username_email'] ) ? $post_data['username_email'] : '' );
|
116 |
+
|
117 |
+
$recover_input = '<ul>
|
118 |
+
<li class="wppb-form-field wppb-username-email">
|
119 |
+
<label for="username_email">'.__( 'Username or E-mail', 'profilebuilder' ).'</label>
|
120 |
+
<input class="text-input" name="username_email" type="text" id="username_email" value="'.trim( $username_email ).'" />
|
121 |
+
</li><!-- .username_email --></ul>';
|
122 |
+
echo apply_filters( 'wppb_recover_password_gemerate_password_input', $recover_input, trim( $username_email ) );
|
123 |
+
?>
|
124 |
+
<p class="form-submit">
|
125 |
+
<?php $button_name = __('Get New Password', 'profilebuilder'); ?>
|
126 |
+
<input name="recover_password" type="submit" id="wppb-recover-password-button" class="submit button" value="<?php echo apply_filters('wppb_recover_password_button_name3', $button_name); ?>" />
|
127 |
+
<input name="action" type="hidden" id="action" value="recover_password" />
|
128 |
+
</p>
|
129 |
+
<?php wp_nonce_field( 'verify_true_password_recovery', 'password_recovery_nonce_field' ); ?>
|
130 |
+
</form>
|
131 |
+
<?php
|
132 |
+
}
|
133 |
+
|
134 |
+
/**
|
135 |
+
* The function for the recover password shortcode
|
136 |
+
*
|
137 |
+
*/
|
138 |
+
function wppb_front_end_password_recovery(){
|
139 |
+
global $wppb_shortcode_on_front;
|
140 |
+
$wppb_shortcode_on_front = true;
|
141 |
+
$message = $messageNo = $message2 = $messageNo2 = $linkLoginName = $linkKey = '';
|
142 |
+
|
143 |
+
global $wpdb;
|
144 |
+
|
145 |
+
ob_start();
|
146 |
+
|
147 |
+
|
148 |
+
// If the user entered an email/username, process the request
|
149 |
+
if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == 'recover_password' && wp_verify_nonce($_POST['password_recovery_nonce_field'],'verify_true_password_recovery') ) {
|
150 |
+
|
151 |
+
$postedData = $_POST['username_email']; //we get the raw data
|
152 |
+
//check to see if it's an e-mail (and if this is valid/present in the database) or is a username
|
153 |
+
|
154 |
+
|
155 |
+
// if we do not have an email in the posted date we try to get the email for that user
|
156 |
+
if( !is_email( $postedData ) ){
|
157 |
+
if (username_exists($postedData)){
|
158 |
+
$query = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_login= %s", $postedData ) );
|
159 |
+
if( !empty( $query[0] ) ){
|
160 |
+
$postedData = $query[0]->user_email;
|
161 |
+
}
|
162 |
+
}
|
163 |
+
else{
|
164 |
+
$message = __( 'The username entered wasn\'t found in the database!', 'profilebuilder').'<br/>'.__('Please check that you entered the correct username.', 'profilebuilder' );
|
165 |
+
$message = apply_filters( 'wppb_recover_password_sent_message4', $message );
|
166 |
+
$messageNo = '4';
|
167 |
+
}
|
168 |
+
}
|
169 |
+
|
170 |
+
// we should have an email by this point
|
171 |
+
if ( is_email( $postedData ) ){
|
172 |
+
if ( email_exists( $postedData ) ){
|
173 |
+
$retVal = wppb_check_for_unapproved_user($postedData, 'user_email');
|
174 |
+
if ($retVal[0] != ''){
|
175 |
+
$message = $retVal[0];
|
176 |
+
$messageNo = $retVal [1];
|
177 |
+
|
178 |
+
}else{
|
179 |
+
$message = sprintf( __( 'Check your e-mail for the confirmation link.', 'profilebuilder'), $postedData );
|
180 |
+
$message = apply_filters( 'wppb_recover_password_sent_message1', $message, $postedData );
|
181 |
+
$messageNo = '1';
|
182 |
+
|
183 |
+
//verify e-mail validity
|
184 |
+
$query = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_email= %s", $postedData ) );
|
185 |
+
if( !empty( $query[0] ) ){
|
186 |
+
$requestedUserID = $query[0]->ID;
|
187 |
+
$requestedUserLogin = $query[0]->user_login;
|
188 |
+
$requestedUserEmail = $query[0]->user_email;
|
189 |
+
|
190 |
+
//search if there is already an activation key present, if not create one
|
191 |
+
$key = wppb_retrieve_activation_key( $requestedUserLogin );
|
192 |
+
|
193 |
+
//send primary email message
|
194 |
+
$recoveruserMailMessage1 = sprintf( __('Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s', 'profilebuilder'), $requestedUserLogin, '<a href="'.add_query_arg( array( 'loginName' => $requestedUserLogin, 'key' => $key ), wppb_curpageurl() ).'">'.add_query_arg( array( 'loginName' => $requestedUserLogin, 'key' => $key ), wppb_curpageurl() ).'</a>');
|
195 |
+
$recoveruserMailMessage1 = apply_filters( 'wppb_recover_password_message_content_sent_to_user1', $recoveruserMailMessage1, $requestedUserID, $requestedUserLogin );
|
196 |
+
|
197 |
+
$recoveruserMailMessageTitle1 = sprintf(__('Password Reset from "%1$s"', 'profilebuilder'), $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES));
|
198 |
+
$recoveruserMailMessageTitle1 = apply_filters('wppb_recover_password_message_title_sent_to_user1', $recoveruserMailMessageTitle1);
|
199 |
+
|
200 |
+
//we add this filter to enable html encoding
|
201 |
+
add_filter('wp_mail_content_type',create_function('', 'return "text/html"; '));
|
202 |
+
//send mail to the user notifying him of the reset request
|
203 |
+
if (trim($recoveruserMailMessageTitle1) != ''){
|
204 |
+
$sent = wp_mail($requestedUserEmail, $recoveruserMailMessageTitle1, $recoveruserMailMessage1);
|
205 |
+
if ($sent === false){
|
206 |
+
$message = '<b>'. __( 'ERROR', 'profilebuilder' ) .': </b>' . sprintf( __( 'There was an error while trying to send the activation link to %1$s!', 'profilebuilder' ), $postedData );
|
207 |
+
$message = apply_filters( 'wppb_recover_password_sent_message_error_sending', $message );
|
208 |
+
$messageNo = '5';
|
209 |
+
}
|
210 |
+
}
|
211 |
+
}
|
212 |
+
}
|
213 |
+
|
214 |
+
}elseif ( !email_exists( $postedData ) ){
|
215 |
+
$message = __('The email address entered wasn\'t found in the database!', 'profilebuilder').'<br/>'.__('Please check that you entered the correct email address.', 'profilebuilder');
|
216 |
+
$message = apply_filters('wppb_recover_password_sent_message2', $message);
|
217 |
+
$messageNo = '2';
|
218 |
+
}
|
219 |
+
}
|
220 |
+
|
221 |
+
}
|
222 |
+
// If the user used the correct key-code, update his/her password
|
223 |
+
elseif ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action2'] ) && $_POST['action2'] == 'recover_password2' && wp_verify_nonce( $_POST['password_recovery_nonce_field2'], 'verify_true_password_recovery2_'.$_POST['userData'] ) ) {
|
224 |
+
|
225 |
+
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
226 |
+
|
227 |
+
if( ( $_POST['passw1'] == $_POST['passw2'] ) && ( !empty( $_POST['passw1'] ) && !empty( $_POST['passw2'] ) ) ){
|
228 |
+
if( !empty( $wppb_generalSettings['minimum_password_length'] ) || ( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ) ){
|
229 |
+
$message2 = '';
|
230 |
+
if( wppb_check_password_length( $_POST['passw1'] ) ){
|
231 |
+
$message2 .= __( "<br/>The password must have the minimum length of ". $wppb_generalSettings['minimum_password_length'] ." characters<br/>", "profilebuilder" );
|
232 |
+
$messageNo2 = '2';
|
233 |
+
}
|
234 |
+
if( wppb_check_password_strength() ){
|
235 |
+
$message2 .= __( "<br/>The password must have a minimum strength of ". wppb_check_password_strength(), "profilebuilder" );
|
236 |
+
$messageNo2 = '2';
|
237 |
+
}
|
238 |
+
}
|
239 |
+
|
240 |
+
if( $messageNo2 != 2 ){
|
241 |
+
|
242 |
+
$message2 = __( 'Your password has been successfully changed!', 'profilebuilder' );
|
243 |
+
$messageNo2 = '1';
|
244 |
+
|
245 |
+
$userID = $_POST['userData'];
|
246 |
+
$new_pass = $_POST['passw1'];
|
247 |
+
|
248 |
+
//update the new password and delete the key
|
249 |
+
do_action( 'wppb_password_reset', $userID, $new_pass );
|
250 |
+
|
251 |
+
wp_set_password( $new_pass, $userID );
|
252 |
+
|
253 |
+
$user_info = get_userdata( $userID );
|
254 |
+
|
255 |
+
//send secondary mail to the user containing the username and the new password
|
256 |
+
$recoveruserMailMessage2 = sprintf( __( 'You have successfully reset your password to: %1$s', 'profilebuilder' ), $new_pass );
|
257 |
+
$recoveruserMailMessage2 = apply_filters( 'wppb_recover_password_message_content_sent_to_user2', $recoveruserMailMessage2, $user_info->user_login );
|
258 |
+
|
259 |
+
$recoveruserMailMessageTitle2 = sprintf( __('Password Successfully Reset for %1$s on "%2$s"', 'profilebuilder' ), $user_info->user_login, $blogname = wp_specialchars_decode( get_option('blogname'), ENT_QUOTES ) );
|
260 |
+
$recoveruserMailMessageTitle2 = apply_filters( 'wppb_recover_password_message_title_sent_to_user2', $recoveruserMailMessageTitle2 );
|
261 |
+
|
262 |
+
//we add this filter to enable html encoding
|
263 |
+
add_filter( 'wp_mail_content_type',create_function( '', 'return "text/html"; ') );
|
264 |
+
|
265 |
+
//send mail to the user notifying him of the reset request
|
266 |
+
if ( trim( $recoveruserMailMessageTitle2 ) != '' )
|
267 |
+
wp_mail( $user_info->user_email, $recoveruserMailMessageTitle2, $recoveruserMailMessage2 );
|
268 |
+
|
269 |
+
//send email to admin
|
270 |
+
$recoveradminMailMessage = sprintf( __( '%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s', 'profilebuilder' ), $user_info->user_login, $_POST['passw1'] );
|
271 |
+
$recoveradminMailMessage = apply_filters( 'wppb_recover_password_message_content_sent_to_admin', $recoveradminMailMessage );
|
272 |
+
|
273 |
+
$recoveradminMailMessageTitle = sprintf( __( 'Password Successfully Reset for %1$s on "%2$s"', 'profilebuilder' ), $user_info->user_login, $blogname = wp_specialchars_decode( get_option('blogname'), ENT_QUOTES ) );
|
274 |
+
$recoveradminMailMessageTitle = apply_filters( 'wppb_recover_password_message_title_sent_to_admin', $recoveradminMailMessageTitle );
|
275 |
+
|
276 |
+
|
277 |
+
//we disable the feature to send the admin a notification mail but can be still used using filters
|
278 |
+
$recoveradminMailMessageTitle = '';
|
279 |
+
$recoveradminMailMessageTitle = apply_filters( 'wppb_recover_password_message_title_sent_to_admin', $recoveradminMailMessageTitle );
|
280 |
+
|
281 |
+
//we add this filter to enable html encoding
|
282 |
+
add_filter('wp_mail_content_type',create_function('', 'return "text/html"; '));
|
283 |
+
//send mail to the admin notifying him of of a user with a password reset request
|
284 |
+
if (trim($recoveradminMailMessageTitle) != '')
|
285 |
+
wp_mail(get_option('admin_email'), $recoveradminMailMessageTitle, $recoveradminMailMessage);
|
286 |
+
}
|
287 |
+
}
|
288 |
+
else{
|
289 |
+
$message2 = __( 'The entered passwords don\'t match!', 'profilebuilder' );
|
290 |
+
$messageNo2 = '2';
|
291 |
+
}
|
292 |
+
|
293 |
+
}
|
294 |
+
|
295 |
+
?>
|
296 |
+
|
297 |
+
<div class="wppb_holder" id="wppb-recover-password">
|
298 |
+
|
299 |
+
<?php
|
300 |
+
// use this action hook to add extra content before the password recovery form
|
301 |
+
do_action( 'wppb_before_recover_password_fields' );
|
302 |
+
|
303 |
+
//this is the part that handles the actual recovery
|
304 |
+
if( isset( $_GET['submitted'] ) && isset( $_GET['loginName'] ) && isset( $_GET['key'] ) ){
|
305 |
+
//get the login name and key and verify if they match the ones in the database
|
306 |
+
|
307 |
+
$key = $_GET['key'];
|
308 |
+
$login = $_GET['loginName'];
|
309 |
+
|
310 |
+
$user = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_activation_key = %s AND user_login = %s", $key, $login ) );
|
311 |
+
|
312 |
+
if( !empty( $user ) ){
|
313 |
+
//check if the "finalAction" variable is not in the address bar, if it is, don't display the form anymore
|
314 |
+
if( isset( $_GET['finalAction'] ) && ( $_GET['finalAction'] == 'yes' ) ){
|
315 |
+
if( $messageNo2 == '2' ){
|
316 |
+
echo apply_filters( 'wppb_recover_password_password_changed_message2', '<p class="wppb-error">'.$message2.'</p>', $message2 );
|
317 |
+
|
318 |
+
wppb_create_recover_password_form( $user, $_POST );
|
319 |
+
|
320 |
+
}elseif( $messageNo2 == '1' )
|
321 |
+
echo apply_filters( 'wppb_recover_password_password_changed_message1', '<p class="wppb-success">'.$message2.'</p>', $message2 );
|
322 |
+
|
323 |
+
}else{
|
324 |
+
wppb_create_recover_password_form( $user, $_POST );
|
325 |
+
}
|
326 |
+
}else{
|
327 |
+
if( $messageNo2 == '1' )
|
328 |
+
echo apply_filters( 'wppb_recover_password_password_changed_message1', '<p class="wppb-success">'.$message2.'</p>', $message2 );
|
329 |
+
|
330 |
+
elseif( $messageNo2 == '2' )
|
331 |
+
echo apply_filters( 'wppb_recover_password_password_changed_message2', '<p class="wppb-error">'.$message2.'</p>', $message2 );
|
332 |
+
|
333 |
+
else
|
334 |
+
echo apply_filters( 'wppb_recover_password_invalid_key_message', '<p class="wppb-warning"><b>'.__( 'ERROR:', 'profilebuilder' ).'</b>'.__( 'Invalid key!', 'profilebuilder' ).'</p>' );
|
335 |
+
}
|
336 |
+
|
337 |
+
}else{
|
338 |
+
//display error message and the form
|
339 |
+
if (($messageNo == '') || ($messageNo == '2') || ($messageNo == '4')){
|
340 |
+
echo apply_filters( 'wppb_recover_password_displayed_message1', '<p class="wppb-warning">'.$message.'</p>' );
|
341 |
+
|
342 |
+
wppb_create_generate_password_form( $_POST );
|
343 |
+
|
344 |
+
}elseif (($messageNo == '5') || ($messageNo == '6'))
|
345 |
+
echo apply_filters( 'wppb_recover_password_displayed_message1', '<p class="wppb-warning">'.$message.'</p>' );
|
346 |
+
|
347 |
+
else
|
348 |
+
echo apply_filters( 'wppb_recover_password_displayed_message2', '<p class="wppb-success">'.$message.'</p>' ); //display success message
|
349 |
+
}
|
350 |
+
|
351 |
+
// use this action hook to add extra content after the password recovery form.
|
352 |
+
do_action( 'wppb_after_recover_password_fields' );
|
353 |
+
?>
|
354 |
+
</div>
|
355 |
+
|
356 |
+
<?php
|
357 |
+
$output = ob_get_contents();
|
358 |
+
ob_end_clean();
|
359 |
+
|
360 |
+
return $output;
|
361 |
}
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: http://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 2.0.
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel
|
8 |
Author URI: http://www.cozmoslabs.com/
|
9 |
License: GPL2
|
@@ -25,7 +25,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
25 |
*/
|
26 |
|
27 |
/* Check if another version of Profile Builder is activated, to prevent fatal errors*/
|
28 |
-
function
|
29 |
if (function_exists('wppb_return_bytes')) {
|
30 |
function wppb_admin_notice()
|
31 |
{
|
@@ -73,7 +73,7 @@ function wppb_plugin_init() {
|
|
73 |
*
|
74 |
*
|
75 |
*/
|
76 |
-
define('PROFILE_BUILDER_VERSION', '2.0.
|
77 |
define('WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname(plugin_basename(__FILE__)));
|
78 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
79 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
@@ -178,5 +178,5 @@ function wppb_plugin_init() {
|
|
178 |
register_activation_hook(__FILE__, 'wppb_prepopulate_fields'); //prepopulate manage fields list
|
179 |
|
180 |
}
|
181 |
-
} //end
|
182 |
-
add_action( 'plugins_loaded', '
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: http://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 2.0.7
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel
|
8 |
Author URI: http://www.cozmoslabs.com/
|
9 |
License: GPL2
|
25 |
*/
|
26 |
|
27 |
/* Check if another version of Profile Builder is activated, to prevent fatal errors*/
|
28 |
+
function wppb_free_plugin_init() {
|
29 |
if (function_exists('wppb_return_bytes')) {
|
30 |
function wppb_admin_notice()
|
31 |
{
|
73 |
*
|
74 |
*
|
75 |
*/
|
76 |
+
define('PROFILE_BUILDER_VERSION', '2.0.7' );
|
77 |
define('WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname(plugin_basename(__FILE__)));
|
78 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
79 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
178 |
register_activation_hook(__FILE__, 'wppb_prepopulate_fields'); //prepopulate manage fields list
|
179 |
|
180 |
}
|
181 |
+
} //end wppb_free_plugin_init
|
182 |
+
add_action( 'plugins_loaded', 'wppb_free_plugin_init' );
|
readme.txt
CHANGED
@@ -2,11 +2,11 @@
|
|
2 |
|
3 |
Contributors: reflectionmedia, barinagabriel, sareiodata, cozmoslabs, adispiac, madalin.ungureanu
|
4 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
-
Tags: registration, user profile, user registration, custom field registration, customize profile, user fields, extra user fields, builder, profile builder, custom user profile, user profile page, edit profile, custom registration, custom registration form, custom registration page, registration page, user custom fields, user listing, front-end user listing, user login, user registration form, front-end login, login redirect, login widget, front-end register, front-end registration, front-end edit profile, front-end user registration, custom redirects, user email, avatar upload, email confirmation, user approval, customize registration email, minimum password length, minimum password strength, password strength meter, multiple registration forms
|
6 |
|
7 |
Requires at least: 3.1
|
8 |
Tested up to: 4.0
|
9 |
-
Stable tag: 2.0.
|
10 |
|
11 |
Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
|
12 |
|
@@ -27,7 +27,7 @@ You can use the following shortcode list:
|
|
27 |
|
28 |
* **[wppb-edit-profile]** - to grant users front-end access to their profile (requires user to be logged in).
|
29 |
* **[wppb-login]** - to add a front-end login form.
|
30 |
-
* **[wppb-register]** - to add a front-end
|
31 |
* **[wppb-recover-password]** - to add a password recovery form.
|
32 |
|
33 |
Users with administrator rights have access to the following features:
|
@@ -36,7 +36,7 @@ Users with administrator rights have access to the following features:
|
|
36 |
* enable **Email Confirmation** (on registration users will receive a notification to confirm their email address).
|
37 |
* allow users to **Log-in with their Username or Email**
|
38 |
* enforce a **minimum password length** and **minimum password strength** (using the default WordPress password strength meter)
|
39 |
-
* assign users a specific role at registration (using **[wppb-register role="desired_role"]** shortcode argument)
|
40 |
* redirect users after login (using **[wppb-login redirect="www.example.com"]** shortcode argument)
|
41 |
* add register and lost password links below the login form (using **[wppb-login register_url="www.example.com" lostpassword_url="www.example.com"]** shortcode arguments)
|
42 |
* customizable login widget
|
@@ -97,13 +97,21 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
97 |
3. Show/Hide Admin Bar
|
98 |
4. Profile Builder - Manage Default User Fields (Add, Edit or Delete)
|
99 |
5. Profile Builder - Drag & Drop to Reorder User Profile Fields
|
100 |
-
6. Front-end User Registration Page
|
101 |
7. User Login Page
|
102 |
8. Edit User Profile Page
|
103 |
9. Recover Password Page
|
104 |
10. Profile Builder Login Widget
|
105 |
|
106 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
= 2.0.6 =
|
108 |
* Fixed a bug with checkbox field that didn't pass the required if the value of the checkbox contained spaces
|
109 |
* When email confirmation is enabled we no longer can send the selected password via email because we now store the hased password inside wp-signups table and not a encoded version of it. This was done to improve security
|
2 |
|
3 |
Contributors: reflectionmedia, barinagabriel, sareiodata, cozmoslabs, adispiac, madalin.ungureanu
|
4 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
+
Tags: registration, user profile, user registration, custom field registration, customize profile, user fields, extra user fields, builder, profile builder, custom user profile, user profile page, edit profile, custom registration, custom registration form, custom registration page, registration page, user custom fields, user listing, front-end user listing, user login, user registration form, front-end login, login redirect, login widget, front-end register, front-end registration, front-end edit profile, front-end user registration, custom redirects, user email, avatar upload, email confirmation, user approval, customize registration email, minimum password length, minimum password strength, password strength meter, multiple registration forms, register, register form
|
6 |
|
7 |
Requires at least: 3.1
|
8 |
Tested up to: 4.0
|
9 |
+
Stable tag: 2.0.7
|
10 |
|
11 |
Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
|
12 |
|
27 |
|
28 |
* **[wppb-edit-profile]** - to grant users front-end access to their profile (requires user to be logged in).
|
29 |
* **[wppb-login]** - to add a front-end login form.
|
30 |
+
* **[wppb-register]** - to add a front-end register form.
|
31 |
* **[wppb-recover-password]** - to add a password recovery form.
|
32 |
|
33 |
Users with administrator rights have access to the following features:
|
36 |
* enable **Email Confirmation** (on registration users will receive a notification to confirm their email address).
|
37 |
* allow users to **Log-in with their Username or Email**
|
38 |
* enforce a **minimum password length** and **minimum password strength** (using the default WordPress password strength meter)
|
39 |
+
* assign users a specific role at registration (using **[wppb-register role="desired_role"]** shortcode argument for the register form)
|
40 |
* redirect users after login (using **[wppb-login redirect="www.example.com"]** shortcode argument)
|
41 |
* add register and lost password links below the login form (using **[wppb-login register_url="www.example.com" lostpassword_url="www.example.com"]** shortcode arguments)
|
42 |
* customizable login widget
|
97 |
3. Show/Hide Admin Bar
|
98 |
4. Profile Builder - Manage Default User Fields (Add, Edit or Delete)
|
99 |
5. Profile Builder - Drag & Drop to Reorder User Profile Fields
|
100 |
+
6. Register Form - Front-end User Registration Page
|
101 |
7. User Login Page
|
102 |
8. Edit User Profile Page
|
103 |
9. Recover Password Page
|
104 |
10. Profile Builder Login Widget
|
105 |
|
106 |
== Changelog ==
|
107 |
+
|
108 |
+
= 2.0.7 =
|
109 |
+
* Added icon with tooltip on registration pages 'Users can register themselves or you can manually create users here' message
|
110 |
+
* Updated translation files
|
111 |
+
* Removed some php notices from the code-base
|
112 |
+
* Improved theme compatibility for the submit buttons inside the Profile Builder forms
|
113 |
+
* Removed UL dots from Register form in Chrome, Safari
|
114 |
+
|
115 |
= 2.0.6 =
|
116 |
* Fixed a bug with checkbox field that didn't pass the required if the value of the checkbox contained spaces
|
117 |
* When email confirmation is enabled we no longer can send the selected password via email because we now store the hased password inside wp-signups table and not a encoded version of it. This was done to improve security
|
translation/profilebuilder-fr_FR.mo
CHANGED
Binary file
|
translation/profilebuilder-fr_FR.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Profile Builder package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2014-11-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,26 +10,42 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
14 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
15 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
16 |
-
msgstr ""
|
17 |
|
18 |
#: ../admin/admin-bar.php:48
|
19 |
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
20 |
-
msgstr ""
|
21 |
|
22 |
#: ../admin/manage-fields.php:85
|
23 |
msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
|
24 |
-
msgstr ""
|
25 |
|
26 |
#: ../admin/manage-fields.php:380
|
27 |
msgid "The meta-name cannot be empty\n"
|
28 |
-
msgstr ""
|
29 |
|
30 |
#: ../admin/register-version.php:57
|
31 |
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
32 |
-
msgstr ""
|
33 |
|
34 |
#: ../admin/register-version.php:219
|
35 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
@@ -48,47 +64,47 @@ msgstr ""
|
|
48 |
#: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
|
49 |
#: select.php:15
|
50 |
msgid "...Choose"
|
51 |
-
msgstr ""
|
52 |
|
53 |
#: ../features/class-list-table.php:526 ../features/class-list-table.php:941
|
54 |
msgid "1 item"
|
55 |
-
msgstr ""
|
56 |
|
57 |
-
#: ../features/functions.php:
|
58 |
msgid "Very Weak"
|
59 |
-
msgstr ""
|
60 |
|
61 |
-
#: ../features/functions.php:
|
62 |
msgid "This field is required"
|
63 |
-
msgstr ""
|
64 |
|
65 |
-
#: ../features/functions.php:
|
66 |
msgid "Cancel"
|
67 |
-
msgstr ""
|
68 |
|
69 |
-
#: ../features/functions.php:
|
70 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
71 |
msgstr ""
|
72 |
|
73 |
#: ../front-end/login.php:79
|
74 |
msgid "Invalid username."
|
75 |
-
msgstr ""
|
76 |
|
77 |
#: ../front-end/login.php:84
|
78 |
msgid "username"
|
79 |
-
msgstr ""
|
80 |
|
81 |
#: ../front-end/login.php:84
|
82 |
msgid "email"
|
83 |
-
msgstr ""
|
84 |
|
85 |
#: ../front-end/login.php:178
|
86 |
msgid "Lost your password?"
|
87 |
-
msgstr ""
|
88 |
|
89 |
#: ../index.php:34
|
90 |
msgid " is also activated. You need to deactivate it before activating this version of the plugin."
|
91 |
-
msgstr ""
|
92 |
|
93 |
#: ../modules/email-customizer/admin-email-customizer.php:54
|
94 |
#: ../modules/email-customizer/user-email-customizer.php:54
|
@@ -98,7 +114,7 @@ msgstr ""
|
|
98 |
#: ../modules/email-customizer/email-customizer.php:265
|
99 |
#: ../modules/email-customizer/email-customizer.php:272
|
100 |
msgid "Your selected password at signup"
|
101 |
-
msgstr ""
|
102 |
|
103 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
104 |
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
@@ -106,21 +122,21 @@ msgstr ""
|
|
106 |
|
107 |
#: ../modules/multiple-forms/edit-profile-forms.php:272
|
108 |
msgid "This form is empty."
|
109 |
-
msgstr ""
|
110 |
|
111 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
112 |
msgid "Delete all items"
|
113 |
-
msgstr ""
|
114 |
|
115 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
116 |
msgid "Delete all"
|
117 |
-
msgstr ""
|
118 |
|
119 |
#: ../modules/multiple-forms/register-forms.php:230
|
120 |
msgid "Choose..."
|
121 |
-
msgstr ""
|
122 |
|
123 |
-
#: ../modules/user-listing/userlisting.php:
|
124 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
125 |
msgstr ""
|
126 |
|
@@ -152,8 +168,8 @@ msgstr "Afficher"
|
|
152 |
msgid "Hide"
|
153 |
msgstr "Masquer"
|
154 |
|
155 |
-
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:
|
156 |
-
#: ../admin/register-version.php:81 ../features/functions.php:
|
157 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
158 |
#: ../modules/modules.php:142
|
159 |
msgid "Save Changes"
|
@@ -177,17 +193,17 @@ msgid "Very weak"
|
|
177 |
msgstr "Très faible"
|
178 |
|
179 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
180 |
-
#: ../features/functions.php:
|
181 |
msgid "Weak"
|
182 |
msgstr "Faible"
|
183 |
|
184 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
185 |
-
#: ../features/functions.php:
|
186 |
msgid "Medium"
|
187 |
msgstr "Moyen"
|
188 |
|
189 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
190 |
-
#: ../features/functions.php:
|
191 |
msgid "Strong"
|
192 |
msgstr "Fort"
|
193 |
|
@@ -445,7 +461,7 @@ msgstr "Charge le fichier CSS de Profile Builder sur l'interface cliente:"
|
|
445 |
#: ../admin/general-settings.php:114
|
446 |
#: ../modules/multiple-forms/register-forms.php:229
|
447 |
#: ../modules/multiple-forms/register-forms.php:230
|
448 |
-
#: ../modules/user-listing/userlisting.php:
|
449 |
msgid "Yes"
|
450 |
msgstr "Oui"
|
451 |
|
@@ -512,15 +528,15 @@ msgstr "Permet aux utilisateurs à se connecter avec:"
|
|
512 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
513 |
#: ../modules/email-customizer/email-customizer.php:28
|
514 |
#: ../modules/user-listing/userlisting.php:94
|
515 |
-
#: ../modules/user-listing/userlisting.php:
|
516 |
-
#: ../modules/user-listing/userlisting.php:
|
517 |
msgid "Username"
|
518 |
msgstr "Nom d'utilisateur"
|
519 |
|
520 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
521 |
#: ../modules/email-customizer/email-customizer.php:29
|
522 |
-
#: ../modules/user-listing/userlisting.php:
|
523 |
-
#: ../modules/user-listing/userlisting.php:
|
524 |
msgid "Email"
|
525 |
msgstr "Adresse de messagerie"
|
526 |
|
@@ -738,7 +754,7 @@ msgstr "Prénom"
|
|
738 |
msgid "Last Name"
|
739 |
msgstr "Nom de famille"
|
740 |
|
741 |
-
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:
|
742 |
msgid "Nickname"
|
743 |
msgstr "Pseudonyme"
|
744 |
|
@@ -760,8 +776,8 @@ msgstr "Adresse de messagerie"
|
|
760 |
#: ../admin/manage-fields.php:140
|
761 |
#: ../modules/email-customizer/email-customizer.php:31
|
762 |
#: ../modules/user-listing/userlisting.php:103
|
763 |
-
#: ../modules/user-listing/userlisting.php:
|
764 |
-
#: ../modules/user-listing/userlisting.php:
|
765 |
msgid "Website"
|
766 |
msgstr "Site web"
|
767 |
|
@@ -782,8 +798,8 @@ msgid "About Yourself"
|
|
782 |
msgstr "A propos de vous"
|
783 |
|
784 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
785 |
-
#: ../modules/user-listing/userlisting.php:
|
786 |
-
#: ../modules/user-listing/userlisting.php:
|
787 |
msgid "Biographical Info"
|
788 |
msgstr "Informations biographiques"
|
789 |
|
@@ -872,7 +888,7 @@ msgstr "<pre>Titre</pre><pre>Type</pre><pre>Meta-nom</pre><pre class=\"wppb-mb-h
|
|
872 |
#: ../admin/manage-fields.php:500
|
873 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
874 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
875 |
-
#: ../features/functions.php:
|
876 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
877 |
msgid "Edit"
|
878 |
msgstr "Editer"
|
@@ -884,7 +900,7 @@ msgstr "Editer"
|
|
884 |
#: ../features/admin-approval/class-admin-approval.php:235
|
885 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
886 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
887 |
-
#: ../features/functions.php:
|
888 |
msgid "Delete"
|
889 |
msgstr "Supprimer"
|
890 |
|
@@ -933,7 +949,7 @@ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
|
933 |
msgstr "(ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
934 |
|
935 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
936 |
-
#: ../features/functions.php:
|
937 |
msgid "Content"
|
938 |
msgstr "Contenu"
|
939 |
|
@@ -1026,14 +1042,10 @@ msgstr "La validation de l'utilisateur a échoué - l'avatar n'a pas été suppr
|
|
1026 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1027 |
msgstr "La validation de l'utilisateur a échoué - la pièce jointe n'a pas été supprimée!"
|
1028 |
|
1029 |
-
#: ../features/functions.php:
|
1030 |
msgid "Strength indicator"
|
1031 |
msgstr "Indicateur de sûreté"
|
1032 |
|
1033 |
-
#: ../features/functions.php:482
|
1034 |
-
msgid "Minimum length of "
|
1035 |
-
msgstr "Longueur minimale de "
|
1036 |
-
|
1037 |
#: ../features/admin-approval/admin-approval.php:7
|
1038 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1039 |
msgid "Admin Approval"
|
@@ -1143,14 +1155,14 @@ msgid "Approve"
|
|
1143 |
msgstr "Approuver"
|
1144 |
|
1145 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1146 |
-
#: ../modules/user-listing/userlisting.php:
|
1147 |
-
#: ../modules/user-listing/userlisting.php:
|
1148 |
msgid "Firstname"
|
1149 |
msgstr "Prénom"
|
1150 |
|
1151 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1152 |
-
#: ../modules/user-listing/userlisting.php:
|
1153 |
-
#: ../modules/user-listing/userlisting.php:
|
1154 |
msgid "Lastname"
|
1155 |
msgstr "Nom de famille"
|
1156 |
|
@@ -1604,45 +1616,45 @@ msgstr "Ce nom d'utilisateur existe déjà."
|
|
1604 |
msgid "This username is already reserved to be used soon."
|
1605 |
msgstr "Ce nom d'utilisateur est déjà réservé et va bientôt être utilisé."
|
1606 |
|
1607 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1608 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1609 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1610 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1611 |
msgid "max upload size"
|
1612 |
msgstr "taille maximale de téléversement"
|
1613 |
|
1614 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1615 |
msgid "Current avatar: No uploaded avatar"
|
1616 |
msgstr "Avatar actuel: aucun avatar téléversé"
|
1617 |
|
1618 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1619 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1620 |
msgid "Avatar"
|
1621 |
msgstr "Avatar"
|
1622 |
|
1623 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1624 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1625 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1626 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1627 |
msgid "Click to see the current avatar"
|
1628 |
msgstr "Cliquez pour voir l'avatar actuel"
|
1629 |
|
1630 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1631 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1632 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1633 |
msgstr "L'avatar n'a pas pu être supprimé (il a été marqué comme obligatoire par l'administrateur)"
|
1634 |
|
1635 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1636 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1637 |
msgid "Are you sure you want to delete this avatar?"
|
1638 |
msgstr "Êtes-vous sûr de vouloir supprimer cet avatar?"
|
1639 |
|
1640 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1641 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1642 |
msgid "Click to delete the current avatar"
|
1643 |
msgstr "Cliquez pour supprimer l'avatar actuel"
|
1644 |
|
1645 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1646 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1647 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1648 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
@@ -1656,60 +1668,60 @@ msgstr "Cliquez pour supprimer l'avatar actuel"
|
|
1656 |
msgid "required"
|
1657 |
msgstr "obligatoire"
|
1658 |
|
1659 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1660 |
msgid "Current avatar"
|
1661 |
msgstr "Avatar actuel"
|
1662 |
|
1663 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1664 |
msgid "No uploaded avatar"
|
1665 |
msgstr "Aucun avatar téléversé"
|
1666 |
|
1667 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1668 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1669 |
msgid "The extension of the file did not match"
|
1670 |
msgstr "L'extension du fichier ne correspond pas"
|
1671 |
|
1672 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1673 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1674 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1675 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1676 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1677 |
msgstr "Le fichier téléversé dépasse la directive upload_max_filesize dans php.ini"
|
1678 |
|
1679 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1681 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1682 |
msgstr "Le fichier téléversé dépasse la directive MAX_FILE_SIZE dans php.ini"
|
1683 |
|
1684 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1685 |
msgid "The file could only partially be uploaded "
|
1686 |
msgstr "Le fichier n'a pu qu'être partiellement téléversé"
|
1687 |
|
1688 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1689 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1690 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1691 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1693 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1694 |
msgid "No file was selected"
|
1695 |
msgstr "Aucun fichier n'a été sélectionné"
|
1696 |
|
1697 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1698 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1699 |
msgid "The temporary upload folder is missing from the system"
|
1700 |
msgstr "Le dossier temporaire de téléversement n'existe pas sur le système"
|
1701 |
|
1702 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1704 |
msgid "The file failed to write to the disk"
|
1705 |
msgstr "L'écriture du fichier sur le disque a échoué"
|
1706 |
|
1707 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1708 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1709 |
msgid "A PHP extension stopped the file upload"
|
1710 |
msgstr "Une extension PHP a arrêté le téléversement du fichier"
|
1711 |
|
1712 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1713 |
msgid "Unknown error occurred"
|
1714 |
msgstr "Une erreur inconnue s'est produite"
|
1715 |
|
@@ -2147,37 +2159,37 @@ msgstr "Aucun formulaire de modification de profile trouvé dans la corbeille"
|
|
2147 |
|
2148 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2149 |
#: ../modules/multiple-forms/register-forms.php:138
|
2150 |
-
#: ../modules/user-listing/userlisting.php:
|
2151 |
msgid "Shortcode"
|
2152 |
msgstr "Shortcode"
|
2153 |
|
2154 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2155 |
#: ../modules/multiple-forms/register-forms.php:159
|
2156 |
-
#: ../modules/user-listing/userlisting.php:
|
2157 |
msgid "(no title)"
|
2158 |
msgstr "(aucun titre)"
|
2159 |
|
2160 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2161 |
#: ../modules/multiple-forms/register-forms.php:178
|
2162 |
-
#: ../modules/user-listing/userlisting.php:
|
2163 |
msgid "The shortcode will be available after you publish this form."
|
2164 |
msgstr "Le shortcode sera disponible après la publication de ce formulaire."
|
2165 |
|
2166 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2167 |
#: ../modules/multiple-forms/register-forms.php:180
|
2168 |
-
#: ../modules/user-listing/userlisting.php:
|
2169 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2170 |
msgstr "Utilisez ce shortcode sur la page où vous voulez que le formulaire soit affiché:"
|
2171 |
|
2172 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2173 |
#: ../modules/multiple-forms/register-forms.php:184
|
2174 |
-
#: ../modules/user-listing/userlisting.php:
|
2175 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2176 |
msgstr "<span style=\"color:red;\">Note:</span> modifier le titre du formulaire change aussi le shortcode!"
|
2177 |
|
2178 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2179 |
#: ../modules/multiple-forms/register-forms.php:190
|
2180 |
-
#: ../modules/user-listing/userlisting.php:
|
2181 |
msgid "Form Shortcode"
|
2182 |
msgstr "Shortcode du formulaire"
|
2183 |
|
@@ -2288,11 +2300,11 @@ msgstr "Spécifiez l'URL de la page vers laquelle les utilisateurs seront rediri
|
|
2288 |
msgid "After Registration..."
|
2289 |
msgstr "Après inscription..."
|
2290 |
|
2291 |
-
#: ../modules/user-listing/class-userlisting.php:
|
2292 |
-
#: ../modules/user-listing/userlisting.php:
|
2293 |
-
#: ../modules/user-listing/userlisting.php:
|
2294 |
-
#: ../modules/user-listing/userlisting.php:
|
2295 |
-
#: ../modules/user-listing/userlisting.php:
|
2296 |
msgid "Search Users by All Fields"
|
2297 |
msgstr "Rechercher des utilisateurs par tous les champs"
|
2298 |
|
@@ -2333,12 +2345,12 @@ msgid "Url"
|
|
2333 |
msgstr "Url"
|
2334 |
|
2335 |
#: ../modules/user-listing/userlisting.php:118
|
2336 |
-
#: ../modules/user-listing/userlisting.php:
|
2337 |
msgid "Registration Date"
|
2338 |
msgstr "Date d'inscription"
|
2339 |
|
2340 |
#: ../modules/user-listing/userlisting.php:119
|
2341 |
-
#: ../modules/user-listing/userlisting.php:
|
2342 |
msgid "Number of Posts"
|
2343 |
msgstr "Nombre de messages postés"
|
2344 |
|
@@ -2395,179 +2407,179 @@ msgstr "Vous n'avez pas la permission de voir cette liste d'utilisateurs"
|
|
2395 |
msgid "You do not have the required user role to view this user list"
|
2396 |
msgstr "Vous n'avez pas le rôle utilisateur requis pour voir cette liste d'utilisateurs"
|
2397 |
|
2398 |
-
#: ../modules/user-listing/userlisting.php:
|
2399 |
msgid "First/Lastname"
|
2400 |
msgstr "Prénom/Nom de famille"
|
2401 |
|
2402 |
-
#: ../modules/user-listing/userlisting.php:
|
2403 |
msgid "Sign-up Date"
|
2404 |
msgstr "Date d'inscription"
|
2405 |
|
2406 |
-
#: ../modules/user-listing/userlisting.php:
|
2407 |
-
#: ../modules/user-listing/userlisting.php:
|
2408 |
msgid "Display Name"
|
2409 |
msgstr "Afficher le nom"
|
2410 |
|
2411 |
-
#: ../modules/user-listing/userlisting.php:
|
2412 |
msgid "Posts"
|
2413 |
msgstr "Messages postés"
|
2414 |
|
2415 |
-
#: ../modules/user-listing/userlisting.php:
|
2416 |
-
#: ../modules/user-listing/userlisting.php:
|
2417 |
msgid "Aim"
|
2418 |
msgstr "Aim"
|
2419 |
|
2420 |
-
#: ../modules/user-listing/userlisting.php:
|
2421 |
-
#: ../modules/user-listing/userlisting.php:
|
2422 |
msgid "Yim"
|
2423 |
msgstr "Yim"
|
2424 |
|
2425 |
-
#: ../modules/user-listing/userlisting.php:
|
2426 |
-
#: ../modules/user-listing/userlisting.php:
|
2427 |
msgid "Jabber"
|
2428 |
msgstr "Jabber"
|
2429 |
|
2430 |
-
#: ../modules/user-listing/userlisting.php:
|
2431 |
msgid "Click here to see more information about this user"
|
2432 |
msgstr "Cliquez ici pour voir plus d'information sur cet utilisateur"
|
2433 |
|
2434 |
-
#: ../modules/user-listing/userlisting.php:
|
2435 |
msgid "More..."
|
2436 |
msgstr "Plus..."
|
2437 |
|
2438 |
-
#: ../modules/user-listing/userlisting.php:
|
2439 |
msgid "Click here to see more information about this user."
|
2440 |
msgstr "Cliquez ici pour voir plus d'information sur cet utilisateur"
|
2441 |
|
2442 |
-
#: ../modules/user-listing/userlisting.php:
|
2443 |
-
#: ../modules/user-listing/userlisting.php:
|
2444 |
msgid "Click here to go back"
|
2445 |
msgstr "Cliquez ici pour revenir en arrière"
|
2446 |
|
2447 |
-
#: ../modules/user-listing/userlisting.php:
|
2448 |
msgid "Back"
|
2449 |
msgstr "Précédent"
|
2450 |
|
2451 |
-
#: ../modules/user-listing/userlisting.php:
|
2452 |
msgid "«« First"
|
2453 |
msgstr "«« Premier"
|
2454 |
|
2455 |
-
#: ../modules/user-listing/userlisting.php:
|
2456 |
msgid "« Prev"
|
2457 |
msgstr "« Précédent"
|
2458 |
|
2459 |
-
#: ../modules/user-listing/userlisting.php:
|
2460 |
msgid "Next » "
|
2461 |
msgstr "Suivant » "
|
2462 |
|
2463 |
-
#: ../modules/user-listing/userlisting.php:
|
2464 |
msgid "Last »»"
|
2465 |
msgstr "Dernier »»"
|
2466 |
|
2467 |
-
#: ../modules/user-listing/userlisting.php:
|
2468 |
msgid "You don't have any pagination settings on this userlisting!"
|
2469 |
msgstr "Vous n'avez pas de paramètres de pagination sur ce listing d'utilisateurs!"
|
2470 |
|
2471 |
-
#: ../modules/user-listing/userlisting.php:
|
2472 |
msgid "Search"
|
2473 |
msgstr "Rechercher"
|
2474 |
|
2475 |
-
#: ../modules/user-listing/userlisting.php:
|
2476 |
msgid "Clear Results"
|
2477 |
msgstr "Effacer les résultats"
|
2478 |
|
2479 |
-
#: ../modules/user-listing/userlisting.php:
|
2480 |
msgid "Extra shortcode parameters"
|
2481 |
msgstr "Paramètres supplémentaires du shortcode"
|
2482 |
|
2483 |
-
#: ../modules/user-listing/userlisting.php:
|
2484 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2485 |
msgstr "affiche les utilisateurs ayant une certaine méta-valeur dans un certain méta-champ"
|
2486 |
|
2487 |
-
#: ../modules/user-listing/userlisting.php:
|
2488 |
msgid "Example:"
|
2489 |
msgstr "Exemple: "
|
2490 |
|
2491 |
-
#: ../modules/user-listing/userlisting.php:
|
2492 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2493 |
msgstr "Rapelez-vous cepdendant que la combinaison champ-valeur doit exister dans la base de données."
|
2494 |
|
2495 |
-
#: ../modules/user-listing/userlisting.php:
|
2496 |
msgid "Random (very slow on large databases > 10K user)"
|
2497 |
msgstr "Aléatoire (très lent sur les énormes bases de données > 10K utilisateurs)"
|
2498 |
|
2499 |
-
#: ../modules/user-listing/userlisting.php:
|
2500 |
msgid "Roles to Display"
|
2501 |
msgstr "Groupes à afficher"
|
2502 |
|
2503 |
-
#: ../modules/user-listing/userlisting.php:
|
2504 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2505 |
msgstr "Restreint le listing d'utilisateurs aux groupes sélectionnés uniquement<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera tous les groupes d'utilisateurs"
|
2506 |
|
2507 |
-
#: ../modules/user-listing/userlisting.php:
|
2508 |
msgid "Number of Users/Page"
|
2509 |
msgstr "Nombre d'utilisateurs/page"
|
2510 |
|
2511 |
-
#: ../modules/user-listing/userlisting.php:
|
2512 |
msgid "Default Sorting Criteria"
|
2513 |
msgstr "Critère de tri par défaut"
|
2514 |
|
2515 |
-
#: ../modules/user-listing/userlisting.php:
|
2516 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2517 |
msgstr "Fixer le critère de tri par défaut<br/>Ceci peut être temporairement modifié à chaque nouvelle session"
|
2518 |
|
2519 |
-
#: ../modules/user-listing/userlisting.php:
|
2520 |
msgid "Default Sorting Order"
|
2521 |
msgstr "Ordre de tri par défaut"
|
2522 |
|
2523 |
-
#: ../modules/user-listing/userlisting.php:
|
2524 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2525 |
msgstr "Fixez l'ordre de tri par défaut<br/>Ceci peut être temporairement modifié à chaque nouvelle session"
|
2526 |
|
2527 |
-
#: ../modules/user-listing/userlisting.php:
|
2528 |
msgid "Avatar Size (All-userlisting)"
|
2529 |
msgstr "Taille d'avatar (listing de tous les utilisateurs)"
|
2530 |
|
2531 |
-
#: ../modules/user-listing/userlisting.php:
|
2532 |
msgid "Set the avatar size on the all-userlisting only"
|
2533 |
msgstr "Fixer la taille de l'avatar sur le listing de tous les utilisateurs uniquement"
|
2534 |
|
2535 |
-
#: ../modules/user-listing/userlisting.php:
|
2536 |
msgid "Avatar Size (Single-userlisting)"
|
2537 |
msgstr "Taille d'avatar (listing d'un seul utilisateur)"
|
2538 |
|
2539 |
-
#: ../modules/user-listing/userlisting.php:
|
2540 |
msgid "Set the avatar size on the single-userlisting only"
|
2541 |
msgstr "Fixer la taille de l'avatar du listing d'un seul utilisateur uniquement"
|
2542 |
|
2543 |
-
#: ../modules/user-listing/userlisting.php:
|
2544 |
msgid "Visible only to logged in users?"
|
2545 |
msgstr "Visible uniquement aux utilisateurs connectés?"
|
2546 |
|
2547 |
-
#: ../modules/user-listing/userlisting.php:
|
2548 |
msgid "The userlisting will only be visible only to the logged in users"
|
2549 |
msgstr "Le listing d'utilisateurs sera visible uniquement aux utilisateurs connectés"
|
2550 |
|
2551 |
-
#: ../modules/user-listing/userlisting.php:
|
2552 |
msgid "Visible to following Roles"
|
2553 |
msgstr "Visible pour les rôles suivant"
|
2554 |
|
2555 |
-
#: ../modules/user-listing/userlisting.php:
|
2556 |
msgid "The userlisting will only be visible to the following roles"
|
2557 |
msgstr "Le listing d'utilisateurs sera visible uniquement aux rôles suivant"
|
2558 |
|
2559 |
-
#: ../modules/user-listing/userlisting.php:
|
2560 |
msgid "Userlisting Settings"
|
2561 |
msgstr "Paramètres du listing d'utilisateurs"
|
2562 |
|
2563 |
-
#: ../modules/user-listing/userlisting.php:
|
2564 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2565 |
msgstr "Vous devez activer le listing d'utilisateurs à partir de l'onglet \"Modules\"!"
|
2566 |
|
2567 |
-
#: ../modules/user-listing/userlisting.php:
|
2568 |
msgid "You can find it in the Profile Builder menu."
|
2569 |
msgstr "Vous pouvez le trouver dans le menu Profile Builder."
|
2570 |
|
2571 |
-
#: ../modules/user-listing/userlisting.php:
|
2572 |
msgid "No results found!"
|
2573 |
msgstr "Aucun résultat trouvé!"
|
2 |
# This file is distributed under the same license as the Profile Builder package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2014-11-24 07:53:27+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
13 |
+
#: ../features/functions.php:485
|
14 |
+
msgid "Minimum length of %d characters"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: ../front-end/class-formbuilder.php:93 ../front-end/class-formbuilder.php:96
|
18 |
+
msgid "This message is only visible by administrators"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: ../front-end/extra-fields/avatar/avatar.php:119
|
22 |
+
msgid "The image file set in the %s field for this user could not be found on the server. The default WordPress avatar is being used at the moment."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: ../modules/user-listing/userlisting.php:353
|
26 |
+
msgid "User not found"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
30 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
31 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
32 |
+
msgstr "Tages valides {{reply_to}} et {{site_name}}"
|
33 |
|
34 |
#: ../admin/admin-bar.php:48
|
35 |
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
36 |
+
msgstr "Choisir quels rôles utilisateurs peuvent voir la barre admin sur l'interface client du site web."
|
37 |
|
38 |
#: ../admin/manage-fields.php:85
|
39 |
msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
|
40 |
+
msgstr "Entrez une liste de valeurs séparées par une virgule<br/>Cela peut être n'importe quoi, puisque c'est masqué pour l'utilisateur, mais ça ne devrait pas contenir de caractères spéciaux ou d'apostrophes."
|
41 |
|
42 |
#: ../admin/manage-fields.php:380
|
43 |
msgid "The meta-name cannot be empty\n"
|
44 |
+
msgstr "Le méta-nom ne peut pas être vide\n"
|
45 |
|
46 |
#: ../admin/register-version.php:57
|
47 |
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
48 |
+
msgstr "Maintenant que vous possédez une copie de %s, vous devriez prendre le temps de l'enregistrer avec le numéro de série que vous avez reçu"
|
49 |
|
50 |
#: ../admin/register-version.php:219
|
51 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
64 |
#: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
|
65 |
#: select.php:15
|
66 |
msgid "...Choose"
|
67 |
+
msgstr "...Choisir"
|
68 |
|
69 |
#: ../features/class-list-table.php:526 ../features/class-list-table.php:941
|
70 |
msgid "1 item"
|
71 |
+
msgstr "1 élément"
|
72 |
|
73 |
+
#: ../features/functions.php:471
|
74 |
msgid "Very Weak"
|
75 |
+
msgstr "Très faible"
|
76 |
|
77 |
+
#: ../features/functions.php:559
|
78 |
msgid "This field is required"
|
79 |
+
msgstr "Ce champ est obligatoire"
|
80 |
|
81 |
+
#: ../features/functions.php:579
|
82 |
msgid "Cancel"
|
83 |
+
msgstr "Annuler"
|
84 |
|
85 |
+
#: ../features/functions.php:610
|
86 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
87 |
msgstr ""
|
88 |
|
89 |
#: ../front-end/login.php:79
|
90 |
msgid "Invalid username."
|
91 |
+
msgstr "Nom d'utilisateur non-valide."
|
92 |
|
93 |
#: ../front-end/login.php:84
|
94 |
msgid "username"
|
95 |
+
msgstr "nom d'utilisateur"
|
96 |
|
97 |
#: ../front-end/login.php:84
|
98 |
msgid "email"
|
99 |
+
msgstr "email"
|
100 |
|
101 |
#: ../front-end/login.php:178
|
102 |
msgid "Lost your password?"
|
103 |
+
msgstr "Mot de passe perdu?"
|
104 |
|
105 |
#: ../index.php:34
|
106 |
msgid " is also activated. You need to deactivate it before activating this version of the plugin."
|
107 |
+
msgstr "est aussi activé. Vous devez le désactiver avec d'activer cette version de l'extension."
|
108 |
|
109 |
#: ../modules/email-customizer/admin-email-customizer.php:54
|
110 |
#: ../modules/email-customizer/user-email-customizer.php:54
|
114 |
#: ../modules/email-customizer/email-customizer.php:265
|
115 |
#: ../modules/email-customizer/email-customizer.php:272
|
116 |
msgid "Your selected password at signup"
|
117 |
+
msgstr "Votre mot de passe sélectionné lors de l'inscription"
|
118 |
|
119 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
120 |
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
122 |
|
123 |
#: ../modules/multiple-forms/edit-profile-forms.php:272
|
124 |
msgid "This form is empty."
|
125 |
+
msgstr "Ce formulaire est vide."
|
126 |
|
127 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
128 |
msgid "Delete all items"
|
129 |
+
msgstr "Supprimer tous les éléments"
|
130 |
|
131 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
132 |
msgid "Delete all"
|
133 |
+
msgstr "Tout supprimer"
|
134 |
|
135 |
#: ../modules/multiple-forms/register-forms.php:230
|
136 |
msgid "Choose..."
|
137 |
+
msgstr "Choisir..."
|
138 |
|
139 |
+
#: ../modules/user-listing/userlisting.php:1160
|
140 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
141 |
msgstr ""
|
142 |
|
168 |
msgid "Hide"
|
169 |
msgstr "Masquer"
|
170 |
|
171 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:183
|
172 |
+
#: ../admin/register-version.php:81 ../features/functions.php:572
|
173 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
174 |
#: ../modules/modules.php:142
|
175 |
msgid "Save Changes"
|
193 |
msgstr "Très faible"
|
194 |
|
195 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
196 |
+
#: ../features/functions.php:471
|
197 |
msgid "Weak"
|
198 |
msgstr "Faible"
|
199 |
|
200 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
201 |
+
#: ../features/functions.php:471
|
202 |
msgid "Medium"
|
203 |
msgstr "Moyen"
|
204 |
|
205 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
206 |
+
#: ../features/functions.php:471
|
207 |
msgid "Strong"
|
208 |
msgstr "Fort"
|
209 |
|
461 |
#: ../admin/general-settings.php:114
|
462 |
#: ../modules/multiple-forms/register-forms.php:229
|
463 |
#: ../modules/multiple-forms/register-forms.php:230
|
464 |
+
#: ../modules/user-listing/userlisting.php:1165
|
465 |
msgid "Yes"
|
466 |
msgstr "Oui"
|
467 |
|
528 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
529 |
#: ../modules/email-customizer/email-customizer.php:28
|
530 |
#: ../modules/user-listing/userlisting.php:94
|
531 |
+
#: ../modules/user-listing/userlisting.php:522
|
532 |
+
#: ../modules/user-listing/userlisting.php:1122
|
533 |
msgid "Username"
|
534 |
msgstr "Nom d'utilisateur"
|
535 |
|
536 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
537 |
#: ../modules/email-customizer/email-customizer.php:29
|
538 |
+
#: ../modules/user-listing/userlisting.php:528
|
539 |
+
#: ../modules/user-listing/userlisting.php:1123
|
540 |
msgid "Email"
|
541 |
msgstr "Adresse de messagerie"
|
542 |
|
754 |
msgid "Last Name"
|
755 |
msgstr "Nom de famille"
|
756 |
|
757 |
+
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:561
|
758 |
msgid "Nickname"
|
759 |
msgstr "Pseudonyme"
|
760 |
|
776 |
#: ../admin/manage-fields.php:140
|
777 |
#: ../modules/email-customizer/email-customizer.php:31
|
778 |
#: ../modules/user-listing/userlisting.php:103
|
779 |
+
#: ../modules/user-listing/userlisting.php:543
|
780 |
+
#: ../modules/user-listing/userlisting.php:1124
|
781 |
msgid "Website"
|
782 |
msgstr "Site web"
|
783 |
|
798 |
msgstr "A propos de vous"
|
799 |
|
800 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
801 |
+
#: ../modules/user-listing/userlisting.php:546
|
802 |
+
#: ../modules/user-listing/userlisting.php:1125
|
803 |
msgid "Biographical Info"
|
804 |
msgstr "Informations biographiques"
|
805 |
|
888 |
#: ../admin/manage-fields.php:500
|
889 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
890 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
891 |
+
#: ../features/functions.php:593 ../features/functions.php:600
|
892 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
893 |
msgid "Edit"
|
894 |
msgstr "Editer"
|
900 |
#: ../features/admin-approval/class-admin-approval.php:235
|
901 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
902 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
903 |
+
#: ../features/functions.php:586 ../features/functions.php:600
|
904 |
msgid "Delete"
|
905 |
msgstr "Supprimer"
|
906 |
|
949 |
msgstr "(ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
950 |
|
951 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
952 |
+
#: ../features/functions.php:600
|
953 |
msgid "Content"
|
954 |
msgstr "Contenu"
|
955 |
|
1042 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1043 |
msgstr "La validation de l'utilisateur a échoué - la pièce jointe n'a pas été supprimée!"
|
1044 |
|
1045 |
+
#: ../features/functions.php:446
|
1046 |
msgid "Strength indicator"
|
1047 |
msgstr "Indicateur de sûreté"
|
1048 |
|
|
|
|
|
|
|
|
|
1049 |
#: ../features/admin-approval/admin-approval.php:7
|
1050 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1051 |
msgid "Admin Approval"
|
1155 |
msgstr "Approuver"
|
1156 |
|
1157 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1158 |
+
#: ../modules/user-listing/userlisting.php:534
|
1159 |
+
#: ../modules/user-listing/userlisting.php:1127
|
1160 |
msgid "Firstname"
|
1161 |
msgstr "Prénom"
|
1162 |
|
1163 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1164 |
+
#: ../modules/user-listing/userlisting.php:537
|
1165 |
+
#: ../modules/user-listing/userlisting.php:1128
|
1166 |
msgid "Lastname"
|
1167 |
msgstr "Nom de famille"
|
1168 |
|
1616 |
msgid "This username is already reserved to be used soon."
|
1617 |
msgstr "Ce nom d'utilisateur est déjà réservé et va bientôt être utilisé."
|
1618 |
|
1619 |
+
#: ../front-end/extra-fields/avatar/avatar.php:60
|
1620 |
+
#: ../front-end/extra-fields/avatar/avatar.php:98
|
1621 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1622 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1623 |
msgid "max upload size"
|
1624 |
msgstr "taille maximale de téléversement"
|
1625 |
|
1626 |
+
#: ../front-end/extra-fields/avatar/avatar.php:66
|
1627 |
msgid "Current avatar: No uploaded avatar"
|
1628 |
msgstr "Avatar actuel: aucun avatar téléversé"
|
1629 |
|
1630 |
+
#: ../front-end/extra-fields/avatar/avatar.php:71
|
1631 |
+
#: ../front-end/extra-fields/avatar/avatar.php:105
|
1632 |
msgid "Avatar"
|
1633 |
msgstr "Avatar"
|
1634 |
|
1635 |
+
#: ../front-end/extra-fields/avatar/avatar.php:75
|
1636 |
+
#: ../front-end/extra-fields/avatar/avatar.php:80
|
1637 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1638 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1639 |
msgid "Click to see the current avatar"
|
1640 |
msgstr "Cliquez pour voir l'avatar actuel"
|
1641 |
|
1642 |
+
#: ../front-end/extra-fields/avatar/avatar.php:77
|
1643 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1644 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1645 |
msgstr "L'avatar n'a pas pu être supprimé (il a été marqué comme obligatoire par l'administrateur)"
|
1646 |
|
1647 |
+
#: ../front-end/extra-fields/avatar/avatar.php:82
|
1648 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1649 |
msgid "Are you sure you want to delete this avatar?"
|
1650 |
msgstr "Êtes-vous sûr de vouloir supprimer cet avatar?"
|
1651 |
|
1652 |
+
#: ../front-end/extra-fields/avatar/avatar.php:83
|
1653 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1654 |
msgid "Click to delete the current avatar"
|
1655 |
msgstr "Cliquez pour supprimer l'avatar actuel"
|
1656 |
|
1657 |
+
#: ../front-end/extra-fields/avatar/avatar.php:91
|
1658 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1659 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1660 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1668 |
msgid "required"
|
1669 |
msgstr "obligatoire"
|
1670 |
|
1671 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1672 |
msgid "Current avatar"
|
1673 |
msgstr "Avatar actuel"
|
1674 |
|
1675 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1676 |
msgid "No uploaded avatar"
|
1677 |
msgstr "Aucun avatar téléversé"
|
1678 |
|
1679 |
+
#: ../front-end/extra-fields/avatar/avatar.php:207
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1681 |
msgid "The extension of the file did not match"
|
1682 |
msgstr "L'extension du fichier ne correspond pas"
|
1683 |
|
1684 |
+
#: ../front-end/extra-fields/avatar/avatar.php:210
|
1685 |
+
#: ../front-end/extra-fields/avatar/avatar.php:213
|
1686 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1687 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1688 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1689 |
msgstr "Le fichier téléversé dépasse la directive upload_max_filesize dans php.ini"
|
1690 |
|
1691 |
+
#: ../front-end/extra-fields/avatar/avatar.php:216
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1693 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1694 |
msgstr "Le fichier téléversé dépasse la directive MAX_FILE_SIZE dans php.ini"
|
1695 |
|
1696 |
+
#: ../front-end/extra-fields/avatar/avatar.php:219
|
1697 |
msgid "The file could only partially be uploaded "
|
1698 |
msgstr "Le fichier n'a pu qu'être partiellement téléversé"
|
1699 |
|
1700 |
+
#: ../front-end/extra-fields/avatar/avatar.php:222
|
1701 |
+
#: ../front-end/extra-fields/avatar/avatar.php:243
|
1702 |
+
#: ../front-end/extra-fields/avatar/avatar.php:246
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1704 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1705 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1706 |
msgid "No file was selected"
|
1707 |
msgstr "Aucun fichier n'a été sélectionné"
|
1708 |
|
1709 |
+
#: ../front-end/extra-fields/avatar/avatar.php:225
|
1710 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1711 |
msgid "The temporary upload folder is missing from the system"
|
1712 |
msgstr "Le dossier temporaire de téléversement n'existe pas sur le système"
|
1713 |
|
1714 |
+
#: ../front-end/extra-fields/avatar/avatar.php:228
|
1715 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1716 |
msgid "The file failed to write to the disk"
|
1717 |
msgstr "L'écriture du fichier sur le disque a échoué"
|
1718 |
|
1719 |
+
#: ../front-end/extra-fields/avatar/avatar.php:231
|
1720 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1721 |
msgid "A PHP extension stopped the file upload"
|
1722 |
msgstr "Une extension PHP a arrêté le téléversement du fichier"
|
1723 |
|
1724 |
+
#: ../front-end/extra-fields/avatar/avatar.php:234
|
1725 |
msgid "Unknown error occurred"
|
1726 |
msgstr "Une erreur inconnue s'est produite"
|
1727 |
|
2159 |
|
2160 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2161 |
#: ../modules/multiple-forms/register-forms.php:138
|
2162 |
+
#: ../modules/user-listing/userlisting.php:1037
|
2163 |
msgid "Shortcode"
|
2164 |
msgstr "Shortcode"
|
2165 |
|
2166 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2167 |
#: ../modules/multiple-forms/register-forms.php:159
|
2168 |
+
#: ../modules/user-listing/userlisting.php:1058
|
2169 |
msgid "(no title)"
|
2170 |
msgstr "(aucun titre)"
|
2171 |
|
2172 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2173 |
#: ../modules/multiple-forms/register-forms.php:178
|
2174 |
+
#: ../modules/user-listing/userlisting.php:1078
|
2175 |
msgid "The shortcode will be available after you publish this form."
|
2176 |
msgstr "Le shortcode sera disponible après la publication de ce formulaire."
|
2177 |
|
2178 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2179 |
#: ../modules/multiple-forms/register-forms.php:180
|
2180 |
+
#: ../modules/user-listing/userlisting.php:1080
|
2181 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2182 |
msgstr "Utilisez ce shortcode sur la page où vous voulez que le formulaire soit affiché:"
|
2183 |
|
2184 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2185 |
#: ../modules/multiple-forms/register-forms.php:184
|
2186 |
+
#: ../modules/user-listing/userlisting.php:1084
|
2187 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2188 |
msgstr "<span style=\"color:red;\">Note:</span> modifier le titre du formulaire change aussi le shortcode!"
|
2189 |
|
2190 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2191 |
#: ../modules/multiple-forms/register-forms.php:190
|
2192 |
+
#: ../modules/user-listing/userlisting.php:1098
|
2193 |
msgid "Form Shortcode"
|
2194 |
msgstr "Shortcode du formulaire"
|
2195 |
|
2300 |
msgid "After Registration..."
|
2301 |
msgstr "Après inscription..."
|
2302 |
|
2303 |
+
#: ../modules/user-listing/class-userlisting.php:461
|
2304 |
+
#: ../modules/user-listing/userlisting.php:632
|
2305 |
+
#: ../modules/user-listing/userlisting.php:850
|
2306 |
+
#: ../modules/user-listing/userlisting.php:893
|
2307 |
+
#: ../modules/user-listing/userlisting.php:1217
|
2308 |
msgid "Search Users by All Fields"
|
2309 |
msgstr "Rechercher des utilisateurs par tous les champs"
|
2310 |
|
2345 |
msgstr "Url"
|
2346 |
|
2347 |
#: ../modules/user-listing/userlisting.php:118
|
2348 |
+
#: ../modules/user-listing/userlisting.php:1126
|
2349 |
msgid "Registration Date"
|
2350 |
msgstr "Date d'inscription"
|
2351 |
|
2352 |
#: ../modules/user-listing/userlisting.php:119
|
2353 |
+
#: ../modules/user-listing/userlisting.php:1130
|
2354 |
msgid "Number of Posts"
|
2355 |
msgstr "Nombre de messages postés"
|
2356 |
|
2407 |
msgid "You do not have the required user role to view this user list"
|
2408 |
msgstr "Vous n'avez pas le rôle utilisateur requis pour voir cette liste d'utilisateurs"
|
2409 |
|
2410 |
+
#: ../modules/user-listing/userlisting.php:525
|
2411 |
msgid "First/Lastname"
|
2412 |
msgstr "Prénom/Nom de famille"
|
2413 |
|
2414 |
+
#: ../modules/user-listing/userlisting.php:531
|
2415 |
msgid "Sign-up Date"
|
2416 |
msgstr "Date d'inscription"
|
2417 |
|
2418 |
+
#: ../modules/user-listing/userlisting.php:540
|
2419 |
+
#: ../modules/user-listing/userlisting.php:1129
|
2420 |
msgid "Display Name"
|
2421 |
msgstr "Afficher le nom"
|
2422 |
|
2423 |
+
#: ../modules/user-listing/userlisting.php:549
|
2424 |
msgid "Posts"
|
2425 |
msgstr "Messages postés"
|
2426 |
|
2427 |
+
#: ../modules/user-listing/userlisting.php:552
|
2428 |
+
#: ../modules/user-listing/userlisting.php:1134
|
2429 |
msgid "Aim"
|
2430 |
msgstr "Aim"
|
2431 |
|
2432 |
+
#: ../modules/user-listing/userlisting.php:555
|
2433 |
+
#: ../modules/user-listing/userlisting.php:1135
|
2434 |
msgid "Yim"
|
2435 |
msgstr "Yim"
|
2436 |
|
2437 |
+
#: ../modules/user-listing/userlisting.php:558
|
2438 |
+
#: ../modules/user-listing/userlisting.php:1136
|
2439 |
msgid "Jabber"
|
2440 |
msgstr "Jabber"
|
2441 |
|
2442 |
+
#: ../modules/user-listing/userlisting.php:709
|
2443 |
msgid "Click here to see more information about this user"
|
2444 |
msgstr "Cliquez ici pour voir plus d'information sur cet utilisateur"
|
2445 |
|
2446 |
+
#: ../modules/user-listing/userlisting.php:709
|
2447 |
msgid "More..."
|
2448 |
msgstr "Plus..."
|
2449 |
|
2450 |
+
#: ../modules/user-listing/userlisting.php:712
|
2451 |
msgid "Click here to see more information about this user."
|
2452 |
msgstr "Cliquez ici pour voir plus d'information sur cet utilisateur"
|
2453 |
|
2454 |
+
#: ../modules/user-listing/userlisting.php:804
|
2455 |
+
#: ../modules/user-listing/userlisting.php:807
|
2456 |
msgid "Click here to go back"
|
2457 |
msgstr "Cliquez ici pour revenir en arrière"
|
2458 |
|
2459 |
+
#: ../modules/user-listing/userlisting.php:804
|
2460 |
msgid "Back"
|
2461 |
msgstr "Précédent"
|
2462 |
|
2463 |
+
#: ../modules/user-listing/userlisting.php:837
|
2464 |
msgid "«« First"
|
2465 |
msgstr "«« Premier"
|
2466 |
|
2467 |
+
#: ../modules/user-listing/userlisting.php:838
|
2468 |
msgid "« Prev"
|
2469 |
msgstr "« Précédent"
|
2470 |
|
2471 |
+
#: ../modules/user-listing/userlisting.php:839
|
2472 |
msgid "Next » "
|
2473 |
msgstr "Suivant » "
|
2474 |
|
2475 |
+
#: ../modules/user-listing/userlisting.php:840
|
2476 |
msgid "Last »»"
|
2477 |
msgstr "Dernier »»"
|
2478 |
|
2479 |
+
#: ../modules/user-listing/userlisting.php:869
|
2480 |
msgid "You don't have any pagination settings on this userlisting!"
|
2481 |
msgstr "Vous n'avez pas de paramètres de pagination sur ce listing d'utilisateurs!"
|
2482 |
|
2483 |
+
#: ../modules/user-listing/userlisting.php:910
|
2484 |
msgid "Search"
|
2485 |
msgstr "Rechercher"
|
2486 |
|
2487 |
+
#: ../modules/user-listing/userlisting.php:911
|
2488 |
msgid "Clear Results"
|
2489 |
msgstr "Effacer les résultats"
|
2490 |
|
2491 |
+
#: ../modules/user-listing/userlisting.php:1087
|
2492 |
msgid "Extra shortcode parameters"
|
2493 |
msgstr "Paramètres supplémentaires du shortcode"
|
2494 |
|
2495 |
+
#: ../modules/user-listing/userlisting.php:1089
|
2496 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2497 |
msgstr "affiche les utilisateurs ayant une certaine méta-valeur dans un certain méta-champ"
|
2498 |
|
2499 |
+
#: ../modules/user-listing/userlisting.php:1090
|
2500 |
msgid "Example:"
|
2501 |
msgstr "Exemple: "
|
2502 |
|
2503 |
+
#: ../modules/user-listing/userlisting.php:1092
|
2504 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2505 |
msgstr "Rapelez-vous cepdendant que la combinaison champ-valeur doit exister dans la base de données."
|
2506 |
|
2507 |
+
#: ../modules/user-listing/userlisting.php:1146
|
2508 |
msgid "Random (very slow on large databases > 10K user)"
|
2509 |
msgstr "Aléatoire (très lent sur les énormes bases de données > 10K utilisateurs)"
|
2510 |
|
2511 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2512 |
msgid "Roles to Display"
|
2513 |
msgstr "Groupes à afficher"
|
2514 |
|
2515 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2516 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2517 |
msgstr "Restreint le listing d'utilisateurs aux groupes sélectionnés uniquement<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera tous les groupes d'utilisateurs"
|
2518 |
|
2519 |
+
#: ../modules/user-listing/userlisting.php:1160
|
2520 |
msgid "Number of Users/Page"
|
2521 |
msgstr "Nombre d'utilisateurs/page"
|
2522 |
|
2523 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2524 |
msgid "Default Sorting Criteria"
|
2525 |
msgstr "Critère de tri par défaut"
|
2526 |
|
2527 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2528 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2529 |
msgstr "Fixer le critère de tri par défaut<br/>Ceci peut être temporairement modifié à chaque nouvelle session"
|
2530 |
|
2531 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2532 |
msgid "Default Sorting Order"
|
2533 |
msgstr "Ordre de tri par défaut"
|
2534 |
|
2535 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2536 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2537 |
msgstr "Fixez l'ordre de tri par défaut<br/>Ceci peut être temporairement modifié à chaque nouvelle session"
|
2538 |
|
2539 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2540 |
msgid "Avatar Size (All-userlisting)"
|
2541 |
msgstr "Taille d'avatar (listing de tous les utilisateurs)"
|
2542 |
|
2543 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2544 |
msgid "Set the avatar size on the all-userlisting only"
|
2545 |
msgstr "Fixer la taille de l'avatar sur le listing de tous les utilisateurs uniquement"
|
2546 |
|
2547 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2548 |
msgid "Avatar Size (Single-userlisting)"
|
2549 |
msgstr "Taille d'avatar (listing d'un seul utilisateur)"
|
2550 |
|
2551 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2552 |
msgid "Set the avatar size on the single-userlisting only"
|
2553 |
msgstr "Fixer la taille de l'avatar du listing d'un seul utilisateur uniquement"
|
2554 |
|
2555 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2556 |
msgid "Visible only to logged in users?"
|
2557 |
msgstr "Visible uniquement aux utilisateurs connectés?"
|
2558 |
|
2559 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2560 |
msgid "The userlisting will only be visible only to the logged in users"
|
2561 |
msgstr "Le listing d'utilisateurs sera visible uniquement aux utilisateurs connectés"
|
2562 |
|
2563 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2564 |
msgid "Visible to following Roles"
|
2565 |
msgstr "Visible pour les rôles suivant"
|
2566 |
|
2567 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2568 |
msgid "The userlisting will only be visible to the following roles"
|
2569 |
msgstr "Le listing d'utilisateurs sera visible uniquement aux rôles suivant"
|
2570 |
|
2571 |
+
#: ../modules/user-listing/userlisting.php:1172
|
2572 |
msgid "Userlisting Settings"
|
2573 |
msgstr "Paramètres du listing d'utilisateurs"
|
2574 |
|
2575 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2576 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2577 |
msgstr "Vous devez activer le listing d'utilisateurs à partir de l'onglet \"Modules\"!"
|
2578 |
|
2579 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2580 |
msgid "You can find it in the Profile Builder menu."
|
2581 |
msgstr "Vous pouvez le trouver dans le menu Profile Builder."
|
2582 |
|
2583 |
+
#: ../modules/user-listing/userlisting.php:1343
|
2584 |
msgid "No results found!"
|
2585 |
msgstr "Aucun résultat trouvé!"
|
translation/profilebuilder-nl_NL.mo
CHANGED
Binary file
|
translation/profilebuilder-nl_NL.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Profile Builder package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2014-11-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,119 +10,135 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
14 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
15 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
16 |
-
msgstr ""
|
17 |
|
18 |
#: ../admin/admin-bar.php:48
|
19 |
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
20 |
-
msgstr ""
|
21 |
|
22 |
#: ../admin/manage-fields.php:85
|
23 |
msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
|
24 |
-
msgstr ""
|
25 |
|
26 |
#: ../admin/manage-fields.php:380
|
27 |
msgid "The meta-name cannot be empty\n"
|
28 |
-
msgstr ""
|
29 |
|
30 |
#: ../admin/register-version.php:57
|
31 |
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
32 |
-
msgstr ""
|
33 |
|
34 |
#: ../admin/register-version.php:219
|
35 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
36 |
-
msgstr ""
|
37 |
|
38 |
#: ../admin/register-version.php:222
|
39 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %5$sDismiss%6$s</p>"
|
40 |
-
msgstr ""
|
41 |
|
42 |
#: ../admin/register-version.php:227
|
43 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %6$sDismiss%7$s</p>"
|
44 |
-
msgstr ""
|
45 |
|
46 |
#: ../assets/lib/wck-api/fields/country select.php:14
|
47 |
#: ../assets/lib/wck-api/fields/cpt select.php:17
|
48 |
#: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
|
49 |
#: select.php:15
|
50 |
msgid "...Choose"
|
51 |
-
msgstr ""
|
52 |
|
53 |
#: ../features/class-list-table.php:526 ../features/class-list-table.php:941
|
54 |
msgid "1 item"
|
55 |
-
msgstr ""
|
56 |
|
57 |
-
#: ../features/functions.php:
|
58 |
msgid "Very Weak"
|
59 |
-
msgstr ""
|
60 |
|
61 |
-
#: ../features/functions.php:
|
62 |
msgid "This field is required"
|
63 |
-
msgstr ""
|
64 |
|
65 |
-
#: ../features/functions.php:
|
66 |
msgid "Cancel"
|
67 |
-
msgstr ""
|
68 |
|
69 |
-
#: ../features/functions.php:
|
70 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
71 |
-
msgstr ""
|
72 |
|
73 |
#: ../front-end/login.php:79
|
74 |
msgid "Invalid username."
|
75 |
-
msgstr ""
|
76 |
|
77 |
#: ../front-end/login.php:84
|
78 |
msgid "username"
|
79 |
-
msgstr ""
|
80 |
|
81 |
#: ../front-end/login.php:84
|
82 |
msgid "email"
|
83 |
-
msgstr ""
|
84 |
|
85 |
#: ../front-end/login.php:178
|
86 |
msgid "Lost your password?"
|
87 |
-
msgstr ""
|
88 |
|
89 |
#: ../index.php:34
|
90 |
msgid " is also activated. You need to deactivate it before activating this version of the plugin."
|
91 |
-
msgstr ""
|
92 |
|
93 |
#: ../modules/email-customizer/admin-email-customizer.php:54
|
94 |
#: ../modules/email-customizer/user-email-customizer.php:54
|
95 |
msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
|
96 |
-
msgstr ""
|
97 |
|
98 |
#: ../modules/email-customizer/email-customizer.php:265
|
99 |
#: ../modules/email-customizer/email-customizer.php:272
|
100 |
msgid "Your selected password at signup"
|
101 |
-
msgstr ""
|
102 |
|
103 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
104 |
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
105 |
-
msgstr ""
|
106 |
|
107 |
#: ../modules/multiple-forms/edit-profile-forms.php:272
|
108 |
msgid "This form is empty."
|
109 |
-
msgstr ""
|
110 |
|
111 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
112 |
msgid "Delete all items"
|
113 |
-
msgstr ""
|
114 |
|
115 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
116 |
msgid "Delete all"
|
117 |
-
msgstr ""
|
118 |
|
119 |
#: ../modules/multiple-forms/register-forms.php:230
|
120 |
msgid "Choose..."
|
121 |
-
msgstr ""
|
122 |
|
123 |
-
#: ../modules/user-listing/userlisting.php:
|
124 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
125 |
-
msgstr ""
|
126 |
|
127 |
#: ../admin/admin-bar.php:10
|
128 |
msgid "Show/Hide the Admin Bar on the Front-End"
|
@@ -152,8 +168,8 @@ msgstr "Toon"
|
|
152 |
msgid "Hide"
|
153 |
msgstr "Verberg"
|
154 |
|
155 |
-
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:
|
156 |
-
#: ../admin/register-version.php:81 ../features/functions.php:
|
157 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
158 |
#: ../modules/modules.php:142
|
159 |
msgid "Save Changes"
|
@@ -177,17 +193,17 @@ msgid "Very weak"
|
|
177 |
msgstr "Zeer zwak"
|
178 |
|
179 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
180 |
-
#: ../features/functions.php:
|
181 |
msgid "Weak"
|
182 |
msgstr "Zwak"
|
183 |
|
184 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
185 |
-
#: ../features/functions.php:
|
186 |
msgid "Medium"
|
187 |
msgstr "Gemiddeld"
|
188 |
|
189 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
190 |
-
#: ../features/functions.php:
|
191 |
msgid "Strong"
|
192 |
msgstr "Sterk"
|
193 |
|
@@ -445,7 +461,7 @@ msgstr "Laad Profile Builder's eigen CSS bestand in de front-end:"
|
|
445 |
#: ../admin/general-settings.php:114
|
446 |
#: ../modules/multiple-forms/register-forms.php:229
|
447 |
#: ../modules/multiple-forms/register-forms.php:230
|
448 |
-
#: ../modules/user-listing/userlisting.php:
|
449 |
msgid "Yes"
|
450 |
msgstr "Ja"
|
451 |
|
@@ -512,15 +528,15 @@ msgstr "Sta Gebruikers toe in te loggen met:"
|
|
512 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
513 |
#: ../modules/email-customizer/email-customizer.php:28
|
514 |
#: ../modules/user-listing/userlisting.php:94
|
515 |
-
#: ../modules/user-listing/userlisting.php:
|
516 |
-
#: ../modules/user-listing/userlisting.php:
|
517 |
msgid "Username"
|
518 |
msgstr "Gebruikersnaam"
|
519 |
|
520 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
521 |
#: ../modules/email-customizer/email-customizer.php:29
|
522 |
-
#: ../modules/user-listing/userlisting.php:
|
523 |
-
#: ../modules/user-listing/userlisting.php:
|
524 |
msgid "Email"
|
525 |
msgstr "E-mailadres"
|
526 |
|
@@ -738,7 +754,7 @@ msgstr "Voornaam"
|
|
738 |
msgid "Last Name"
|
739 |
msgstr "Achternaam"
|
740 |
|
741 |
-
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:
|
742 |
msgid "Nickname"
|
743 |
msgstr "Schermnaam"
|
744 |
|
@@ -760,8 +776,8 @@ msgstr "E-mailadres"
|
|
760 |
#: ../admin/manage-fields.php:140
|
761 |
#: ../modules/email-customizer/email-customizer.php:31
|
762 |
#: ../modules/user-listing/userlisting.php:103
|
763 |
-
#: ../modules/user-listing/userlisting.php:
|
764 |
-
#: ../modules/user-listing/userlisting.php:
|
765 |
msgid "Website"
|
766 |
msgstr "Website"
|
767 |
|
@@ -782,8 +798,8 @@ msgid "About Yourself"
|
|
782 |
msgstr "Over Jezelf"
|
783 |
|
784 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
785 |
-
#: ../modules/user-listing/userlisting.php:
|
786 |
-
#: ../modules/user-listing/userlisting.php:
|
787 |
msgid "Biographical Info"
|
788 |
msgstr "Biografie"
|
789 |
|
@@ -872,7 +888,7 @@ msgstr "<pre>Titel</pre><pre>Type</pre><pre>Meta Naam</pre><pre class=\"wppb-mb-
|
|
872 |
#: ../admin/manage-fields.php:500
|
873 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
874 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
875 |
-
#: ../features/functions.php:
|
876 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
877 |
msgid "Edit"
|
878 |
msgstr "Bewerk"
|
@@ -884,7 +900,7 @@ msgstr "Bewerk"
|
|
884 |
#: ../features/admin-approval/class-admin-approval.php:235
|
885 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
886 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
887 |
-
#: ../features/functions.php:
|
888 |
msgid "Delete"
|
889 |
msgstr "Verwijder"
|
890 |
|
@@ -933,7 +949,7 @@ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
|
933 |
msgstr "(v.b. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
934 |
|
935 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
936 |
-
#: ../features/functions.php:
|
937 |
msgid "Content"
|
938 |
msgstr "Inhoud"
|
939 |
|
@@ -1026,14 +1042,10 @@ msgstr "Validatie gebruiker mislukt - de avatar is niet verwijderd!"
|
|
1026 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1027 |
msgstr "Validatie gebruiker mislukt - de bijlage is niet verwijderd!"
|
1028 |
|
1029 |
-
#: ../features/functions.php:
|
1030 |
msgid "Strength indicator"
|
1031 |
msgstr "Sterkte indicator"
|
1032 |
|
1033 |
-
#: ../features/functions.php:482
|
1034 |
-
msgid "Minimum length of "
|
1035 |
-
msgstr "Minimale lengte van"
|
1036 |
-
|
1037 |
#: ../features/admin-approval/admin-approval.php:7
|
1038 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1039 |
msgid "Admin Approval"
|
@@ -1143,14 +1155,14 @@ msgid "Approve"
|
|
1143 |
msgstr "Goedkeuren"
|
1144 |
|
1145 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1146 |
-
#: ../modules/user-listing/userlisting.php:
|
1147 |
-
#: ../modules/user-listing/userlisting.php:
|
1148 |
msgid "Firstname"
|
1149 |
msgstr "Voornaam"
|
1150 |
|
1151 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1152 |
-
#: ../modules/user-listing/userlisting.php:
|
1153 |
-
#: ../modules/user-listing/userlisting.php:
|
1154 |
msgid "Lastname"
|
1155 |
msgstr "Achternaam"
|
1156 |
|
@@ -1604,45 +1616,45 @@ msgstr "Deze gebruikersnaam bestaat reeds."
|
|
1604 |
msgid "This username is already reserved to be used soon."
|
1605 |
msgstr "Deze gebruikersnaam is gereserveerd voor toekomstig gebruik. "
|
1606 |
|
1607 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1608 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1609 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1610 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1611 |
msgid "max upload size"
|
1612 |
msgstr "max upload grootte"
|
1613 |
|
1614 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1615 |
msgid "Current avatar: No uploaded avatar"
|
1616 |
msgstr "Huidige avatar: Geen geüploade avatar"
|
1617 |
|
1618 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1619 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1620 |
msgid "Avatar"
|
1621 |
msgstr "Avatar"
|
1622 |
|
1623 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1624 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1625 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1626 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1627 |
msgid "Click to see the current avatar"
|
1628 |
msgstr "Klik om huidige avatar te zien"
|
1629 |
|
1630 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1631 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1632 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1633 |
msgstr "De avatar kan niet verwijderd worden (het is als verplicht gemarkeerd door de beheerder)"
|
1634 |
|
1635 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1636 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1637 |
msgid "Are you sure you want to delete this avatar?"
|
1638 |
msgstr "Weet je zeker dat je deze avatar wilt verwijderen?"
|
1639 |
|
1640 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1641 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1642 |
msgid "Click to delete the current avatar"
|
1643 |
msgstr "Klik om huidige avatar te verwijderen"
|
1644 |
|
1645 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1646 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1647 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1648 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
@@ -1656,60 +1668,60 @@ msgstr "Klik om huidige avatar te verwijderen"
|
|
1656 |
msgid "required"
|
1657 |
msgstr "verplicht"
|
1658 |
|
1659 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1660 |
msgid "Current avatar"
|
1661 |
msgstr "Huidige avatar"
|
1662 |
|
1663 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1664 |
msgid "No uploaded avatar"
|
1665 |
msgstr "Geen geüploade avatar"
|
1666 |
|
1667 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1668 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1669 |
msgid "The extension of the file did not match"
|
1670 |
msgstr "De extensie van het bestand komt niet overeen"
|
1671 |
|
1672 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1673 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1674 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1675 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1676 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1677 |
msgstr "Het geüploade bestand is groter dan de upload_max_filesize richtlijn in php.ini"
|
1678 |
|
1679 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1681 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1682 |
msgstr "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn in php.ini "
|
1683 |
|
1684 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1685 |
msgid "The file could only partially be uploaded "
|
1686 |
msgstr "Het bestand kon alleen gedeeltelijk geüpload worden"
|
1687 |
|
1688 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1689 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1690 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1691 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1693 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1694 |
msgid "No file was selected"
|
1695 |
msgstr "Geen bestand geselecteerd"
|
1696 |
|
1697 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1698 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1699 |
msgid "The temporary upload folder is missing from the system"
|
1700 |
msgstr "De tijdelijke upload map mist van het systeem"
|
1701 |
|
1702 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1704 |
msgid "The file failed to write to the disk"
|
1705 |
msgstr "Het wegschrijven van het bestand is mislukt"
|
1706 |
|
1707 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1708 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1709 |
msgid "A PHP extension stopped the file upload"
|
1710 |
msgstr "Een PHP extensie heeft de bestand upload gestopt"
|
1711 |
|
1712 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1713 |
msgid "Unknown error occurred"
|
1714 |
msgstr "Onbekende fout opgetreden"
|
1715 |
|
@@ -2159,37 +2171,37 @@ msgstr "Geen Bewerk Profiel Formulieren in prullenbak gevonden"
|
|
2159 |
|
2160 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2161 |
#: ../modules/multiple-forms/register-forms.php:138
|
2162 |
-
#: ../modules/user-listing/userlisting.php:
|
2163 |
msgid "Shortcode"
|
2164 |
msgstr "Shortcode"
|
2165 |
|
2166 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2167 |
#: ../modules/multiple-forms/register-forms.php:159
|
2168 |
-
#: ../modules/user-listing/userlisting.php:
|
2169 |
msgid "(no title)"
|
2170 |
msgstr "(geen titel)"
|
2171 |
|
2172 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2173 |
#: ../modules/multiple-forms/register-forms.php:178
|
2174 |
-
#: ../modules/user-listing/userlisting.php:
|
2175 |
msgid "The shortcode will be available after you publish this form."
|
2176 |
msgstr "De shortcode is beschikbaar nadat je formulier hebt geplaatst."
|
2177 |
|
2178 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2179 |
#: ../modules/multiple-forms/register-forms.php:180
|
2180 |
-
#: ../modules/user-listing/userlisting.php:
|
2181 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2182 |
msgstr "Gebruik deze shortcode op de pagina waarop formulier geplaatst moet worden:"
|
2183 |
|
2184 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2185 |
#: ../modules/multiple-forms/register-forms.php:184
|
2186 |
-
#: ../modules/user-listing/userlisting.php:
|
2187 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2188 |
msgstr "<span style=\"color:red;\">Attentie:</span> als je formulier titel wijzigt zal ook de shortcode wijzigen!"
|
2189 |
|
2190 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2191 |
#: ../modules/multiple-forms/register-forms.php:190
|
2192 |
-
#: ../modules/user-listing/userlisting.php:
|
2193 |
msgid "Form Shortcode"
|
2194 |
msgstr "Formulier Shortcode"
|
2195 |
|
@@ -2300,11 +2312,11 @@ msgstr "Specificeer de URL van de pagina waar gebruikers naar doorverwezen wordt
|
|
2300 |
msgid "After Registration..."
|
2301 |
msgstr "Na Registratie..."
|
2302 |
|
2303 |
-
#: ../modules/user-listing/class-userlisting.php:
|
2304 |
-
#: ../modules/user-listing/userlisting.php:
|
2305 |
-
#: ../modules/user-listing/userlisting.php:
|
2306 |
-
#: ../modules/user-listing/userlisting.php:
|
2307 |
-
#: ../modules/user-listing/userlisting.php:
|
2308 |
msgid "Search Users by All Fields"
|
2309 |
msgstr "Zoek Gebruikers via Alle Velden"
|
2310 |
|
@@ -2345,12 +2357,12 @@ msgid "Url"
|
|
2345 |
msgstr "URL"
|
2346 |
|
2347 |
#: ../modules/user-listing/userlisting.php:118
|
2348 |
-
#: ../modules/user-listing/userlisting.php:
|
2349 |
msgid "Registration Date"
|
2350 |
msgstr "Registratiedatum"
|
2351 |
|
2352 |
#: ../modules/user-listing/userlisting.php:119
|
2353 |
-
#: ../modules/user-listing/userlisting.php:
|
2354 |
msgid "Number of Posts"
|
2355 |
msgstr "Aantal Berichten"
|
2356 |
|
@@ -2407,179 +2419,179 @@ msgstr "Je hebt geen toestemming om deze gebruikersweergave te bekijken"
|
|
2407 |
msgid "You do not have the required user role to view this user list"
|
2408 |
msgstr "Je hebt niet de vereiste gebruikersrol om deze gebruikersweergave te bekijken"
|
2409 |
|
2410 |
-
#: ../modules/user-listing/userlisting.php:
|
2411 |
msgid "First/Lastname"
|
2412 |
msgstr "Voor/Achternaam"
|
2413 |
|
2414 |
-
#: ../modules/user-listing/userlisting.php:
|
2415 |
msgid "Sign-up Date"
|
2416 |
msgstr "Aanmeld Datum"
|
2417 |
|
2418 |
-
#: ../modules/user-listing/userlisting.php:
|
2419 |
-
#: ../modules/user-listing/userlisting.php:
|
2420 |
msgid "Display Name"
|
2421 |
msgstr "Scherm Naam"
|
2422 |
|
2423 |
-
#: ../modules/user-listing/userlisting.php:
|
2424 |
msgid "Posts"
|
2425 |
msgstr "Berichten"
|
2426 |
|
2427 |
-
#: ../modules/user-listing/userlisting.php:
|
2428 |
-
#: ../modules/user-listing/userlisting.php:
|
2429 |
msgid "Aim"
|
2430 |
msgstr "Aim"
|
2431 |
|
2432 |
-
#: ../modules/user-listing/userlisting.php:
|
2433 |
-
#: ../modules/user-listing/userlisting.php:
|
2434 |
msgid "Yim"
|
2435 |
msgstr "Yim"
|
2436 |
|
2437 |
-
#: ../modules/user-listing/userlisting.php:
|
2438 |
-
#: ../modules/user-listing/userlisting.php:
|
2439 |
msgid "Jabber"
|
2440 |
msgstr "Jabber"
|
2441 |
|
2442 |
-
#: ../modules/user-listing/userlisting.php:
|
2443 |
msgid "Click here to see more information about this user"
|
2444 |
msgstr "Klik hier om meer informatie over deze gebruiker te bekijken"
|
2445 |
|
2446 |
-
#: ../modules/user-listing/userlisting.php:
|
2447 |
msgid "More..."
|
2448 |
msgstr "Meer..."
|
2449 |
|
2450 |
-
#: ../modules/user-listing/userlisting.php:
|
2451 |
msgid "Click here to see more information about this user."
|
2452 |
msgstr "Klik hier om meer informatie over deze gebruiker te bekijken."
|
2453 |
|
2454 |
-
#: ../modules/user-listing/userlisting.php:
|
2455 |
-
#: ../modules/user-listing/userlisting.php:
|
2456 |
msgid "Click here to go back"
|
2457 |
msgstr "Klik hier om terug te gaan"
|
2458 |
|
2459 |
-
#: ../modules/user-listing/userlisting.php:
|
2460 |
msgid "Back"
|
2461 |
msgstr "Terug"
|
2462 |
|
2463 |
-
#: ../modules/user-listing/userlisting.php:
|
2464 |
msgid "«« First"
|
2465 |
msgstr "«« Eerste"
|
2466 |
|
2467 |
-
#: ../modules/user-listing/userlisting.php:
|
2468 |
msgid "« Prev"
|
2469 |
msgstr "« Volgende"
|
2470 |
|
2471 |
-
#: ../modules/user-listing/userlisting.php:
|
2472 |
msgid "Next » "
|
2473 |
msgstr "Vorige »"
|
2474 |
|
2475 |
-
#: ../modules/user-listing/userlisting.php:
|
2476 |
msgid "Last »»"
|
2477 |
msgstr "Laatste »»"
|
2478 |
|
2479 |
-
#: ../modules/user-listing/userlisting.php:
|
2480 |
msgid "You don't have any pagination settings on this userlisting!"
|
2481 |
msgstr "Je hebt geen paginering instellingen op deze gebruikersweergave!"
|
2482 |
|
2483 |
-
#: ../modules/user-listing/userlisting.php:
|
2484 |
msgid "Search"
|
2485 |
msgstr "Zoek"
|
2486 |
|
2487 |
-
#: ../modules/user-listing/userlisting.php:
|
2488 |
msgid "Clear Results"
|
2489 |
msgstr "Wis Resultaten"
|
2490 |
|
2491 |
-
#: ../modules/user-listing/userlisting.php:
|
2492 |
msgid "Extra shortcode parameters"
|
2493 |
msgstr "Extra schortcode parameters"
|
2494 |
|
2495 |
-
#: ../modules/user-listing/userlisting.php:
|
2496 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2497 |
msgstr "toont gebruikers met een bepaalde meta-waarde in een bepaald (extra) meta-veld"
|
2498 |
|
2499 |
-
#: ../modules/user-listing/userlisting.php:
|
2500 |
msgid "Example:"
|
2501 |
msgstr "Voorbeeld:"
|
2502 |
|
2503 |
-
#: ../modules/user-listing/userlisting.php:
|
2504 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2505 |
msgstr "Let er op, dat de veld-waarde combinatie in de database aanwezig moet zijn."
|
2506 |
|
2507 |
-
#: ../modules/user-listing/userlisting.php:
|
2508 |
msgid "Random (very slow on large databases > 10K user)"
|
2509 |
msgstr "Willekeurig (traag in grote databases > 10.000 gebruikers)"
|
2510 |
|
2511 |
-
#: ../modules/user-listing/userlisting.php:
|
2512 |
msgid "Roles to Display"
|
2513 |
msgstr "Te tonen Rollen"
|
2514 |
|
2515 |
-
#: ../modules/user-listing/userlisting.php:
|
2516 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2517 |
msgstr "Beperk de gebruikersweergave tot deze geselecteerde rollen<br/>Indien niet gespecificeerd, standaard alle bestaande rollen"
|
2518 |
|
2519 |
-
#: ../modules/user-listing/userlisting.php:
|
2520 |
msgid "Number of Users/Page"
|
2521 |
msgstr "Aantal gebruikers/Pagina"
|
2522 |
|
2523 |
-
#: ../modules/user-listing/userlisting.php:
|
2524 |
msgid "Default Sorting Criteria"
|
2525 |
msgstr "Standaard Criteria Sortering"
|
2526 |
|
2527 |
-
#: ../modules/user-listing/userlisting.php:
|
2528 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2529 |
msgstr "Stel de standaard criteria sortering in<br/>Dit kan tijdelijk gewijzigd worden voor iedere nieuwe sessie"
|
2530 |
|
2531 |
-
#: ../modules/user-listing/userlisting.php:
|
2532 |
msgid "Default Sorting Order"
|
2533 |
msgstr "Standaard Criteria Volgorde"
|
2534 |
|
2535 |
-
#: ../modules/user-listing/userlisting.php:
|
2536 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2537 |
msgstr "Stel de standaard criteria volgorde in<br/>Dit kan tijdelijk gewijzigd worden voor iedere nieuwe sessie"
|
2538 |
|
2539 |
-
#: ../modules/user-listing/userlisting.php:
|
2540 |
msgid "Avatar Size (All-userlisting)"
|
2541 |
msgstr "Avatar Grootte (Alle gebruikersweergave)"
|
2542 |
|
2543 |
-
#: ../modules/user-listing/userlisting.php:
|
2544 |
msgid "Set the avatar size on the all-userlisting only"
|
2545 |
msgstr "Stel de Avatar Grootte in voor de alle gebruikersweergave"
|
2546 |
|
2547 |
-
#: ../modules/user-listing/userlisting.php:
|
2548 |
msgid "Avatar Size (Single-userlisting)"
|
2549 |
msgstr "Avatar Grootte (Losse gebruikersweergave)"
|
2550 |
|
2551 |
-
#: ../modules/user-listing/userlisting.php:
|
2552 |
msgid "Set the avatar size on the single-userlisting only"
|
2553 |
msgstr "Stel de Avatar Grootte in voor de losse gebruikersweergave "
|
2554 |
|
2555 |
-
#: ../modules/user-listing/userlisting.php:
|
2556 |
msgid "Visible only to logged in users?"
|
2557 |
msgstr "Alleen zichtbaar voor ingelogde gebruikers?"
|
2558 |
|
2559 |
-
#: ../modules/user-listing/userlisting.php:
|
2560 |
msgid "The userlisting will only be visible only to the logged in users"
|
2561 |
msgstr "De gebruikersweergave is alleen zichtbaar voor ingelogde gebruikers"
|
2562 |
|
2563 |
-
#: ../modules/user-listing/userlisting.php:
|
2564 |
msgid "Visible to following Roles"
|
2565 |
msgstr "Zichtbaar voor de volgende Rollen"
|
2566 |
|
2567 |
-
#: ../modules/user-listing/userlisting.php:
|
2568 |
msgid "The userlisting will only be visible to the following roles"
|
2569 |
msgstr "De gebruikersweergave is alleen zichtbaar voor de volgende rollen"
|
2570 |
|
2571 |
-
#: ../modules/user-listing/userlisting.php:
|
2572 |
msgid "Userlisting Settings"
|
2573 |
msgstr "Instellingen Gebruikersweergave"
|
2574 |
|
2575 |
-
#: ../modules/user-listing/userlisting.php:
|
2576 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2577 |
msgstr "Je moet de Gebruikersweergave functie activeren vanuit de \"Modulen\" tab!"
|
2578 |
|
2579 |
-
#: ../modules/user-listing/userlisting.php:
|
2580 |
msgid "You can find it in the Profile Builder menu."
|
2581 |
msgstr "Je kunt dit niet in het menu van Profile Builder vinden."
|
2582 |
|
2583 |
-
#: ../modules/user-listing/userlisting.php:
|
2584 |
msgid "No results found!"
|
2585 |
msgstr "Geen resultaten gevonden!"
|
2 |
# This file is distributed under the same license as the Profile Builder package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2014-11-20 12:47:18+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
13 |
+
#: ../features/functions.php:485
|
14 |
+
msgid "Minimum length of %d characters"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: ../front-end/class-formbuilder.php:93 ../front-end/class-formbuilder.php:96
|
18 |
+
msgid "This message is only visible by administrators"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: ../front-end/extra-fields/avatar/avatar.php:119
|
22 |
+
msgid "The image file set in the %s field for this user could not be found on the server. The default WordPress avatar is being used at the moment."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: ../modules/user-listing/userlisting.php:353
|
26 |
+
msgid "User not found"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
30 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
31 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
32 |
+
msgstr "Geldige tags {{reply_to}} en {{site_name}}"
|
33 |
|
34 |
#: ../admin/admin-bar.php:48
|
35 |
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
36 |
+
msgstr "Kies welke gebruikersrollen de admin balk in de front-end van de website zien."
|
37 |
|
38 |
#: ../admin/manage-fields.php:85
|
39 |
msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
|
40 |
+
msgstr "Voer een met komma's gescheiden lijst van waardes in<br/>Dit kan van alles zijn, want verborgen van de gebruiker, maar mag geen speciale karakters of apostrofs bevatten"
|
41 |
|
42 |
#: ../admin/manage-fields.php:380
|
43 |
msgid "The meta-name cannot be empty\n"
|
44 |
+
msgstr "De meta-naam mag niet leeg zijn\n"
|
45 |
|
46 |
#: ../admin/register-version.php:57
|
47 |
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
48 |
+
msgstr "Nu je een exemplaar van %s hebt gekregen, kun je de tijd nemen om het te registreren met het serienummer die je ontvangen hebt."
|
49 |
|
50 |
#: ../admin/register-version.php:219
|
51 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
52 |
+
msgstr "<p>Je <strong>Profile Builder</strong> serienummer is ongeldig of mist. <br/>Svp %1$sregistreer je exemplaar%2$s om toegang te krijgen tot automatische updates en support. Licentiesleutel nodig? %3$sKoop nu%4$s</p>"
|
53 |
|
54 |
#: ../admin/register-version.php:222
|
55 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %5$sDismiss%6$s</p>"
|
56 |
+
msgstr "<p>Je <strong>Profile Builder</strong> licentie is verlopen. <br/>Svp %1$sVernieuw Je Licentie%2$s om product downloads, automatische updates en support te blijven ontvangen. %3$sVernieuw nu en krijg 50% korting %4$s %5$sNegeer%6$s</p>"
|
57 |
|
58 |
#: ../admin/register-version.php:227
|
59 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %6$sDismiss%7$s</p>"
|
60 |
+
msgstr "<p>Je <strong>Profile Builder</strong> licentie gaat verlopen op %5$s. <br/>Svp %1$sVernieuw Je Licentie%2$s om product downloads, automatische updates en support te blijven ontvangen. %3$sVernieuw nu en krijg 50% korting %4$s %6$sNegeer%7$s</p>"
|
61 |
|
62 |
#: ../assets/lib/wck-api/fields/country select.php:14
|
63 |
#: ../assets/lib/wck-api/fields/cpt select.php:17
|
64 |
#: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
|
65 |
#: select.php:15
|
66 |
msgid "...Choose"
|
67 |
+
msgstr "...Kies"
|
68 |
|
69 |
#: ../features/class-list-table.php:526 ../features/class-list-table.php:941
|
70 |
msgid "1 item"
|
71 |
+
msgstr "1 item"
|
72 |
|
73 |
+
#: ../features/functions.php:471
|
74 |
msgid "Very Weak"
|
75 |
+
msgstr "Erg Zwak"
|
76 |
|
77 |
+
#: ../features/functions.php:559
|
78 |
msgid "This field is required"
|
79 |
+
msgstr "Dit veld is verplicht"
|
80 |
|
81 |
+
#: ../features/functions.php:579
|
82 |
msgid "Cancel"
|
83 |
+
msgstr "Annuleer"
|
84 |
|
85 |
+
#: ../features/functions.php:610
|
86 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
87 |
+
msgstr "Om gebruikers toe te staan zich voor je website via Profile Builder te registreren, moet je eerst gebruikersregistratie inschakelen. Ga naar de %1$sInstellingen -> Algemeen%2$s tab, en zorg ervoor dat je onder Lidmaatschap \"Iedereen kan registreren\" aangevinkt hebt. %3$sNegeer%4$s"
|
88 |
|
89 |
#: ../front-end/login.php:79
|
90 |
msgid "Invalid username."
|
91 |
+
msgstr "Ongeldige gebruikersnaam"
|
92 |
|
93 |
#: ../front-end/login.php:84
|
94 |
msgid "username"
|
95 |
+
msgstr "gebruikersnaam"
|
96 |
|
97 |
#: ../front-end/login.php:84
|
98 |
msgid "email"
|
99 |
+
msgstr "e-mail"
|
100 |
|
101 |
#: ../front-end/login.php:178
|
102 |
msgid "Lost your password?"
|
103 |
+
msgstr "Wachtwoord vergeten?"
|
104 |
|
105 |
#: ../index.php:34
|
106 |
msgid " is also activated. You need to deactivate it before activating this version of the plugin."
|
107 |
+
msgstr "is ook geactiveerd. Je moet dit de-activeren voordat je deze versie van de plugin activeert."
|
108 |
|
109 |
#: ../modules/email-customizer/admin-email-customizer.php:54
|
110 |
#: ../modules/email-customizer/user-email-customizer.php:54
|
111 |
msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
|
112 |
+
msgstr "Moet een geldig e-mailadres zijn of de tag {{reply_to}} wat zorgt voor het e-mailadres van de beheerder"
|
113 |
|
114 |
#: ../modules/email-customizer/email-customizer.php:265
|
115 |
#: ../modules/email-customizer/email-customizer.php:272
|
116 |
msgid "Your selected password at signup"
|
117 |
+
msgstr "Je geselecteerde wachtwoord tijdens registratie"
|
118 |
|
119 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
120 |
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
121 |
+
msgstr "Deze instellingen zijn tijdens opslaan ook overgenomen in de \"Aanpasser E-mailadres Beheerder\" instellingen pagina."
|
122 |
|
123 |
#: ../modules/multiple-forms/edit-profile-forms.php:272
|
124 |
msgid "This form is empty."
|
125 |
+
msgstr "Dit formulier is leeg."
|
126 |
|
127 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
128 |
msgid "Delete all items"
|
129 |
+
msgstr "Verwijder alle items."
|
130 |
|
131 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
132 |
msgid "Delete all"
|
133 |
+
msgstr "Verwijder alle"
|
134 |
|
135 |
#: ../modules/multiple-forms/register-forms.php:230
|
136 |
msgid "Choose..."
|
137 |
+
msgstr "Kies..."
|
138 |
|
139 |
+
#: ../modules/user-listing/userlisting.php:1160
|
140 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
141 |
+
msgstr "Stel aantal gebruikers in die worden getoond op ieder gepagineerde deel van de alle gebruikersweergave"
|
142 |
|
143 |
#: ../admin/admin-bar.php:10
|
144 |
msgid "Show/Hide the Admin Bar on the Front-End"
|
168 |
msgid "Hide"
|
169 |
msgstr "Verberg"
|
170 |
|
171 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:183
|
172 |
+
#: ../admin/register-version.php:81 ../features/functions.php:572
|
173 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
174 |
#: ../modules/modules.php:142
|
175 |
msgid "Save Changes"
|
193 |
msgstr "Zeer zwak"
|
194 |
|
195 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
196 |
+
#: ../features/functions.php:471
|
197 |
msgid "Weak"
|
198 |
msgstr "Zwak"
|
199 |
|
200 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
201 |
+
#: ../features/functions.php:471
|
202 |
msgid "Medium"
|
203 |
msgstr "Gemiddeld"
|
204 |
|
205 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
206 |
+
#: ../features/functions.php:471
|
207 |
msgid "Strong"
|
208 |
msgstr "Sterk"
|
209 |
|
461 |
#: ../admin/general-settings.php:114
|
462 |
#: ../modules/multiple-forms/register-forms.php:229
|
463 |
#: ../modules/multiple-forms/register-forms.php:230
|
464 |
+
#: ../modules/user-listing/userlisting.php:1165
|
465 |
msgid "Yes"
|
466 |
msgstr "Ja"
|
467 |
|
528 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
529 |
#: ../modules/email-customizer/email-customizer.php:28
|
530 |
#: ../modules/user-listing/userlisting.php:94
|
531 |
+
#: ../modules/user-listing/userlisting.php:522
|
532 |
+
#: ../modules/user-listing/userlisting.php:1122
|
533 |
msgid "Username"
|
534 |
msgstr "Gebruikersnaam"
|
535 |
|
536 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
537 |
#: ../modules/email-customizer/email-customizer.php:29
|
538 |
+
#: ../modules/user-listing/userlisting.php:528
|
539 |
+
#: ../modules/user-listing/userlisting.php:1123
|
540 |
msgid "Email"
|
541 |
msgstr "E-mailadres"
|
542 |
|
754 |
msgid "Last Name"
|
755 |
msgstr "Achternaam"
|
756 |
|
757 |
+
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:561
|
758 |
msgid "Nickname"
|
759 |
msgstr "Schermnaam"
|
760 |
|
776 |
#: ../admin/manage-fields.php:140
|
777 |
#: ../modules/email-customizer/email-customizer.php:31
|
778 |
#: ../modules/user-listing/userlisting.php:103
|
779 |
+
#: ../modules/user-listing/userlisting.php:543
|
780 |
+
#: ../modules/user-listing/userlisting.php:1124
|
781 |
msgid "Website"
|
782 |
msgstr "Website"
|
783 |
|
798 |
msgstr "Over Jezelf"
|
799 |
|
800 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
801 |
+
#: ../modules/user-listing/userlisting.php:546
|
802 |
+
#: ../modules/user-listing/userlisting.php:1125
|
803 |
msgid "Biographical Info"
|
804 |
msgstr "Biografie"
|
805 |
|
888 |
#: ../admin/manage-fields.php:500
|
889 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
890 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
891 |
+
#: ../features/functions.php:593 ../features/functions.php:600
|
892 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
893 |
msgid "Edit"
|
894 |
msgstr "Bewerk"
|
900 |
#: ../features/admin-approval/class-admin-approval.php:235
|
901 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
902 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
903 |
+
#: ../features/functions.php:586 ../features/functions.php:600
|
904 |
msgid "Delete"
|
905 |
msgstr "Verwijder"
|
906 |
|
949 |
msgstr "(v.b. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
950 |
|
951 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
952 |
+
#: ../features/functions.php:600
|
953 |
msgid "Content"
|
954 |
msgstr "Inhoud"
|
955 |
|
1042 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1043 |
msgstr "Validatie gebruiker mislukt - de bijlage is niet verwijderd!"
|
1044 |
|
1045 |
+
#: ../features/functions.php:446
|
1046 |
msgid "Strength indicator"
|
1047 |
msgstr "Sterkte indicator"
|
1048 |
|
|
|
|
|
|
|
|
|
1049 |
#: ../features/admin-approval/admin-approval.php:7
|
1050 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1051 |
msgid "Admin Approval"
|
1155 |
msgstr "Goedkeuren"
|
1156 |
|
1157 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1158 |
+
#: ../modules/user-listing/userlisting.php:534
|
1159 |
+
#: ../modules/user-listing/userlisting.php:1127
|
1160 |
msgid "Firstname"
|
1161 |
msgstr "Voornaam"
|
1162 |
|
1163 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1164 |
+
#: ../modules/user-listing/userlisting.php:537
|
1165 |
+
#: ../modules/user-listing/userlisting.php:1128
|
1166 |
msgid "Lastname"
|
1167 |
msgstr "Achternaam"
|
1168 |
|
1616 |
msgid "This username is already reserved to be used soon."
|
1617 |
msgstr "Deze gebruikersnaam is gereserveerd voor toekomstig gebruik. "
|
1618 |
|
1619 |
+
#: ../front-end/extra-fields/avatar/avatar.php:60
|
1620 |
+
#: ../front-end/extra-fields/avatar/avatar.php:98
|
1621 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1622 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1623 |
msgid "max upload size"
|
1624 |
msgstr "max upload grootte"
|
1625 |
|
1626 |
+
#: ../front-end/extra-fields/avatar/avatar.php:66
|
1627 |
msgid "Current avatar: No uploaded avatar"
|
1628 |
msgstr "Huidige avatar: Geen geüploade avatar"
|
1629 |
|
1630 |
+
#: ../front-end/extra-fields/avatar/avatar.php:71
|
1631 |
+
#: ../front-end/extra-fields/avatar/avatar.php:105
|
1632 |
msgid "Avatar"
|
1633 |
msgstr "Avatar"
|
1634 |
|
1635 |
+
#: ../front-end/extra-fields/avatar/avatar.php:75
|
1636 |
+
#: ../front-end/extra-fields/avatar/avatar.php:80
|
1637 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1638 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1639 |
msgid "Click to see the current avatar"
|
1640 |
msgstr "Klik om huidige avatar te zien"
|
1641 |
|
1642 |
+
#: ../front-end/extra-fields/avatar/avatar.php:77
|
1643 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1644 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1645 |
msgstr "De avatar kan niet verwijderd worden (het is als verplicht gemarkeerd door de beheerder)"
|
1646 |
|
1647 |
+
#: ../front-end/extra-fields/avatar/avatar.php:82
|
1648 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1649 |
msgid "Are you sure you want to delete this avatar?"
|
1650 |
msgstr "Weet je zeker dat je deze avatar wilt verwijderen?"
|
1651 |
|
1652 |
+
#: ../front-end/extra-fields/avatar/avatar.php:83
|
1653 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1654 |
msgid "Click to delete the current avatar"
|
1655 |
msgstr "Klik om huidige avatar te verwijderen"
|
1656 |
|
1657 |
+
#: ../front-end/extra-fields/avatar/avatar.php:91
|
1658 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1659 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1660 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1668 |
msgid "required"
|
1669 |
msgstr "verplicht"
|
1670 |
|
1671 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1672 |
msgid "Current avatar"
|
1673 |
msgstr "Huidige avatar"
|
1674 |
|
1675 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1676 |
msgid "No uploaded avatar"
|
1677 |
msgstr "Geen geüploade avatar"
|
1678 |
|
1679 |
+
#: ../front-end/extra-fields/avatar/avatar.php:207
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1681 |
msgid "The extension of the file did not match"
|
1682 |
msgstr "De extensie van het bestand komt niet overeen"
|
1683 |
|
1684 |
+
#: ../front-end/extra-fields/avatar/avatar.php:210
|
1685 |
+
#: ../front-end/extra-fields/avatar/avatar.php:213
|
1686 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1687 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1688 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1689 |
msgstr "Het geüploade bestand is groter dan de upload_max_filesize richtlijn in php.ini"
|
1690 |
|
1691 |
+
#: ../front-end/extra-fields/avatar/avatar.php:216
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1693 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1694 |
msgstr "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn in php.ini "
|
1695 |
|
1696 |
+
#: ../front-end/extra-fields/avatar/avatar.php:219
|
1697 |
msgid "The file could only partially be uploaded "
|
1698 |
msgstr "Het bestand kon alleen gedeeltelijk geüpload worden"
|
1699 |
|
1700 |
+
#: ../front-end/extra-fields/avatar/avatar.php:222
|
1701 |
+
#: ../front-end/extra-fields/avatar/avatar.php:243
|
1702 |
+
#: ../front-end/extra-fields/avatar/avatar.php:246
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1704 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1705 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1706 |
msgid "No file was selected"
|
1707 |
msgstr "Geen bestand geselecteerd"
|
1708 |
|
1709 |
+
#: ../front-end/extra-fields/avatar/avatar.php:225
|
1710 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1711 |
msgid "The temporary upload folder is missing from the system"
|
1712 |
msgstr "De tijdelijke upload map mist van het systeem"
|
1713 |
|
1714 |
+
#: ../front-end/extra-fields/avatar/avatar.php:228
|
1715 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1716 |
msgid "The file failed to write to the disk"
|
1717 |
msgstr "Het wegschrijven van het bestand is mislukt"
|
1718 |
|
1719 |
+
#: ../front-end/extra-fields/avatar/avatar.php:231
|
1720 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1721 |
msgid "A PHP extension stopped the file upload"
|
1722 |
msgstr "Een PHP extensie heeft de bestand upload gestopt"
|
1723 |
|
1724 |
+
#: ../front-end/extra-fields/avatar/avatar.php:234
|
1725 |
msgid "Unknown error occurred"
|
1726 |
msgstr "Onbekende fout opgetreden"
|
1727 |
|
2171 |
|
2172 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2173 |
#: ../modules/multiple-forms/register-forms.php:138
|
2174 |
+
#: ../modules/user-listing/userlisting.php:1037
|
2175 |
msgid "Shortcode"
|
2176 |
msgstr "Shortcode"
|
2177 |
|
2178 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2179 |
#: ../modules/multiple-forms/register-forms.php:159
|
2180 |
+
#: ../modules/user-listing/userlisting.php:1058
|
2181 |
msgid "(no title)"
|
2182 |
msgstr "(geen titel)"
|
2183 |
|
2184 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2185 |
#: ../modules/multiple-forms/register-forms.php:178
|
2186 |
+
#: ../modules/user-listing/userlisting.php:1078
|
2187 |
msgid "The shortcode will be available after you publish this form."
|
2188 |
msgstr "De shortcode is beschikbaar nadat je formulier hebt geplaatst."
|
2189 |
|
2190 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2191 |
#: ../modules/multiple-forms/register-forms.php:180
|
2192 |
+
#: ../modules/user-listing/userlisting.php:1080
|
2193 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2194 |
msgstr "Gebruik deze shortcode op de pagina waarop formulier geplaatst moet worden:"
|
2195 |
|
2196 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2197 |
#: ../modules/multiple-forms/register-forms.php:184
|
2198 |
+
#: ../modules/user-listing/userlisting.php:1084
|
2199 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2200 |
msgstr "<span style=\"color:red;\">Attentie:</span> als je formulier titel wijzigt zal ook de shortcode wijzigen!"
|
2201 |
|
2202 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2203 |
#: ../modules/multiple-forms/register-forms.php:190
|
2204 |
+
#: ../modules/user-listing/userlisting.php:1098
|
2205 |
msgid "Form Shortcode"
|
2206 |
msgstr "Formulier Shortcode"
|
2207 |
|
2312 |
msgid "After Registration..."
|
2313 |
msgstr "Na Registratie..."
|
2314 |
|
2315 |
+
#: ../modules/user-listing/class-userlisting.php:461
|
2316 |
+
#: ../modules/user-listing/userlisting.php:632
|
2317 |
+
#: ../modules/user-listing/userlisting.php:850
|
2318 |
+
#: ../modules/user-listing/userlisting.php:893
|
2319 |
+
#: ../modules/user-listing/userlisting.php:1217
|
2320 |
msgid "Search Users by All Fields"
|
2321 |
msgstr "Zoek Gebruikers via Alle Velden"
|
2322 |
|
2357 |
msgstr "URL"
|
2358 |
|
2359 |
#: ../modules/user-listing/userlisting.php:118
|
2360 |
+
#: ../modules/user-listing/userlisting.php:1126
|
2361 |
msgid "Registration Date"
|
2362 |
msgstr "Registratiedatum"
|
2363 |
|
2364 |
#: ../modules/user-listing/userlisting.php:119
|
2365 |
+
#: ../modules/user-listing/userlisting.php:1130
|
2366 |
msgid "Number of Posts"
|
2367 |
msgstr "Aantal Berichten"
|
2368 |
|
2419 |
msgid "You do not have the required user role to view this user list"
|
2420 |
msgstr "Je hebt niet de vereiste gebruikersrol om deze gebruikersweergave te bekijken"
|
2421 |
|
2422 |
+
#: ../modules/user-listing/userlisting.php:525
|
2423 |
msgid "First/Lastname"
|
2424 |
msgstr "Voor/Achternaam"
|
2425 |
|
2426 |
+
#: ../modules/user-listing/userlisting.php:531
|
2427 |
msgid "Sign-up Date"
|
2428 |
msgstr "Aanmeld Datum"
|
2429 |
|
2430 |
+
#: ../modules/user-listing/userlisting.php:540
|
2431 |
+
#: ../modules/user-listing/userlisting.php:1129
|
2432 |
msgid "Display Name"
|
2433 |
msgstr "Scherm Naam"
|
2434 |
|
2435 |
+
#: ../modules/user-listing/userlisting.php:549
|
2436 |
msgid "Posts"
|
2437 |
msgstr "Berichten"
|
2438 |
|
2439 |
+
#: ../modules/user-listing/userlisting.php:552
|
2440 |
+
#: ../modules/user-listing/userlisting.php:1134
|
2441 |
msgid "Aim"
|
2442 |
msgstr "Aim"
|
2443 |
|
2444 |
+
#: ../modules/user-listing/userlisting.php:555
|
2445 |
+
#: ../modules/user-listing/userlisting.php:1135
|
2446 |
msgid "Yim"
|
2447 |
msgstr "Yim"
|
2448 |
|
2449 |
+
#: ../modules/user-listing/userlisting.php:558
|
2450 |
+
#: ../modules/user-listing/userlisting.php:1136
|
2451 |
msgid "Jabber"
|
2452 |
msgstr "Jabber"
|
2453 |
|
2454 |
+
#: ../modules/user-listing/userlisting.php:709
|
2455 |
msgid "Click here to see more information about this user"
|
2456 |
msgstr "Klik hier om meer informatie over deze gebruiker te bekijken"
|
2457 |
|
2458 |
+
#: ../modules/user-listing/userlisting.php:709
|
2459 |
msgid "More..."
|
2460 |
msgstr "Meer..."
|
2461 |
|
2462 |
+
#: ../modules/user-listing/userlisting.php:712
|
2463 |
msgid "Click here to see more information about this user."
|
2464 |
msgstr "Klik hier om meer informatie over deze gebruiker te bekijken."
|
2465 |
|
2466 |
+
#: ../modules/user-listing/userlisting.php:804
|
2467 |
+
#: ../modules/user-listing/userlisting.php:807
|
2468 |
msgid "Click here to go back"
|
2469 |
msgstr "Klik hier om terug te gaan"
|
2470 |
|
2471 |
+
#: ../modules/user-listing/userlisting.php:804
|
2472 |
msgid "Back"
|
2473 |
msgstr "Terug"
|
2474 |
|
2475 |
+
#: ../modules/user-listing/userlisting.php:837
|
2476 |
msgid "«« First"
|
2477 |
msgstr "«« Eerste"
|
2478 |
|
2479 |
+
#: ../modules/user-listing/userlisting.php:838
|
2480 |
msgid "« Prev"
|
2481 |
msgstr "« Volgende"
|
2482 |
|
2483 |
+
#: ../modules/user-listing/userlisting.php:839
|
2484 |
msgid "Next » "
|
2485 |
msgstr "Vorige »"
|
2486 |
|
2487 |
+
#: ../modules/user-listing/userlisting.php:840
|
2488 |
msgid "Last »»"
|
2489 |
msgstr "Laatste »»"
|
2490 |
|
2491 |
+
#: ../modules/user-listing/userlisting.php:869
|
2492 |
msgid "You don't have any pagination settings on this userlisting!"
|
2493 |
msgstr "Je hebt geen paginering instellingen op deze gebruikersweergave!"
|
2494 |
|
2495 |
+
#: ../modules/user-listing/userlisting.php:910
|
2496 |
msgid "Search"
|
2497 |
msgstr "Zoek"
|
2498 |
|
2499 |
+
#: ../modules/user-listing/userlisting.php:911
|
2500 |
msgid "Clear Results"
|
2501 |
msgstr "Wis Resultaten"
|
2502 |
|
2503 |
+
#: ../modules/user-listing/userlisting.php:1087
|
2504 |
msgid "Extra shortcode parameters"
|
2505 |
msgstr "Extra schortcode parameters"
|
2506 |
|
2507 |
+
#: ../modules/user-listing/userlisting.php:1089
|
2508 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2509 |
msgstr "toont gebruikers met een bepaalde meta-waarde in een bepaald (extra) meta-veld"
|
2510 |
|
2511 |
+
#: ../modules/user-listing/userlisting.php:1090
|
2512 |
msgid "Example:"
|
2513 |
msgstr "Voorbeeld:"
|
2514 |
|
2515 |
+
#: ../modules/user-listing/userlisting.php:1092
|
2516 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2517 |
msgstr "Let er op, dat de veld-waarde combinatie in de database aanwezig moet zijn."
|
2518 |
|
2519 |
+
#: ../modules/user-listing/userlisting.php:1146
|
2520 |
msgid "Random (very slow on large databases > 10K user)"
|
2521 |
msgstr "Willekeurig (traag in grote databases > 10.000 gebruikers)"
|
2522 |
|
2523 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2524 |
msgid "Roles to Display"
|
2525 |
msgstr "Te tonen Rollen"
|
2526 |
|
2527 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2528 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2529 |
msgstr "Beperk de gebruikersweergave tot deze geselecteerde rollen<br/>Indien niet gespecificeerd, standaard alle bestaande rollen"
|
2530 |
|
2531 |
+
#: ../modules/user-listing/userlisting.php:1160
|
2532 |
msgid "Number of Users/Page"
|
2533 |
msgstr "Aantal gebruikers/Pagina"
|
2534 |
|
2535 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2536 |
msgid "Default Sorting Criteria"
|
2537 |
msgstr "Standaard Criteria Sortering"
|
2538 |
|
2539 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2540 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2541 |
msgstr "Stel de standaard criteria sortering in<br/>Dit kan tijdelijk gewijzigd worden voor iedere nieuwe sessie"
|
2542 |
|
2543 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2544 |
msgid "Default Sorting Order"
|
2545 |
msgstr "Standaard Criteria Volgorde"
|
2546 |
|
2547 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2548 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2549 |
msgstr "Stel de standaard criteria volgorde in<br/>Dit kan tijdelijk gewijzigd worden voor iedere nieuwe sessie"
|
2550 |
|
2551 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2552 |
msgid "Avatar Size (All-userlisting)"
|
2553 |
msgstr "Avatar Grootte (Alle gebruikersweergave)"
|
2554 |
|
2555 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2556 |
msgid "Set the avatar size on the all-userlisting only"
|
2557 |
msgstr "Stel de Avatar Grootte in voor de alle gebruikersweergave"
|
2558 |
|
2559 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2560 |
msgid "Avatar Size (Single-userlisting)"
|
2561 |
msgstr "Avatar Grootte (Losse gebruikersweergave)"
|
2562 |
|
2563 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2564 |
msgid "Set the avatar size on the single-userlisting only"
|
2565 |
msgstr "Stel de Avatar Grootte in voor de losse gebruikersweergave "
|
2566 |
|
2567 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2568 |
msgid "Visible only to logged in users?"
|
2569 |
msgstr "Alleen zichtbaar voor ingelogde gebruikers?"
|
2570 |
|
2571 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2572 |
msgid "The userlisting will only be visible only to the logged in users"
|
2573 |
msgstr "De gebruikersweergave is alleen zichtbaar voor ingelogde gebruikers"
|
2574 |
|
2575 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2576 |
msgid "Visible to following Roles"
|
2577 |
msgstr "Zichtbaar voor de volgende Rollen"
|
2578 |
|
2579 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2580 |
msgid "The userlisting will only be visible to the following roles"
|
2581 |
msgstr "De gebruikersweergave is alleen zichtbaar voor de volgende rollen"
|
2582 |
|
2583 |
+
#: ../modules/user-listing/userlisting.php:1172
|
2584 |
msgid "Userlisting Settings"
|
2585 |
msgstr "Instellingen Gebruikersweergave"
|
2586 |
|
2587 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2588 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2589 |
msgstr "Je moet de Gebruikersweergave functie activeren vanuit de \"Modulen\" tab!"
|
2590 |
|
2591 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2592 |
msgid "You can find it in the Profile Builder menu."
|
2593 |
msgstr "Je kunt dit niet in het menu van Profile Builder vinden."
|
2594 |
|
2595 |
+
#: ../modules/user-listing/userlisting.php:1343
|
2596 |
msgid "No results found!"
|
2597 |
msgstr "Geen resultaten gevonden!"
|
translation/profilebuilder-pt_BR.mo
CHANGED
Binary file
|
translation/profilebuilder-pt_BR.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Profile Builder package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2014-11-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,6 +10,22 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
14 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
15 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
@@ -25,7 +41,7 @@ msgstr ""
|
|
25 |
|
26 |
#: ../admin/manage-fields.php:380
|
27 |
msgid "The meta-name cannot be empty\n"
|
28 |
-
msgstr ""
|
29 |
|
30 |
#: ../admin/register-version.php:57
|
31 |
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
@@ -54,19 +70,19 @@ msgstr ""
|
|
54 |
msgid "1 item"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../features/functions.php:
|
58 |
msgid "Very Weak"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../features/functions.php:
|
62 |
msgid "This field is required"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../features/functions.php:
|
66 |
msgid "Cancel"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../features/functions.php:
|
70 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
71 |
msgstr ""
|
72 |
|
@@ -76,24 +92,24 @@ msgstr ""
|
|
76 |
|
77 |
#: ../front-end/login.php:84
|
78 |
msgid "username"
|
79 |
-
msgstr ""
|
80 |
|
81 |
#: ../front-end/login.php:84
|
82 |
msgid "email"
|
83 |
-
msgstr ""
|
84 |
|
85 |
#: ../front-end/login.php:178
|
86 |
msgid "Lost your password?"
|
87 |
-
msgstr ""
|
88 |
|
89 |
#: ../index.php:34
|
90 |
msgid " is also activated. You need to deactivate it before activating this version of the plugin."
|
91 |
-
msgstr ""
|
92 |
|
93 |
#: ../modules/email-customizer/admin-email-customizer.php:54
|
94 |
#: ../modules/email-customizer/user-email-customizer.php:54
|
95 |
msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
|
96 |
-
msgstr ""
|
97 |
|
98 |
#: ../modules/email-customizer/email-customizer.php:265
|
99 |
#: ../modules/email-customizer/email-customizer.php:272
|
@@ -114,13 +130,13 @@ msgstr ""
|
|
114 |
|
115 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
116 |
msgid "Delete all"
|
117 |
-
msgstr ""
|
118 |
|
119 |
#: ../modules/multiple-forms/register-forms.php:230
|
120 |
msgid "Choose..."
|
121 |
-
msgstr ""
|
122 |
|
123 |
-
#: ../modules/user-listing/userlisting.php:
|
124 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
125 |
msgstr ""
|
126 |
|
@@ -152,8 +168,8 @@ msgstr "Mostrar"
|
|
152 |
msgid "Hide"
|
153 |
msgstr "Ocultar"
|
154 |
|
155 |
-
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:
|
156 |
-
#: ../admin/register-version.php:81 ../features/functions.php:
|
157 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
158 |
#: ../modules/modules.php:142
|
159 |
msgid "Save Changes"
|
@@ -177,17 +193,17 @@ msgid "Very weak"
|
|
177 |
msgstr "Muito fraco"
|
178 |
|
179 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
180 |
-
#: ../features/functions.php:
|
181 |
msgid "Weak"
|
182 |
msgstr "Fraco"
|
183 |
|
184 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
185 |
-
#: ../features/functions.php:
|
186 |
msgid "Medium"
|
187 |
msgstr "Médio"
|
188 |
|
189 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
190 |
-
#: ../features/functions.php:
|
191 |
msgid "Strong"
|
192 |
msgstr "Forte"
|
193 |
|
@@ -445,7 +461,7 @@ msgstr "Carregar o arquivo CSS próprio do Profile Builder em sua página:"
|
|
445 |
#: ../admin/general-settings.php:114
|
446 |
#: ../modules/multiple-forms/register-forms.php:229
|
447 |
#: ../modules/multiple-forms/register-forms.php:230
|
448 |
-
#: ../modules/user-listing/userlisting.php:
|
449 |
msgid "Yes"
|
450 |
msgstr "Sim"
|
451 |
|
@@ -512,15 +528,15 @@ msgstr "Permitir usuários fazerem login com:"
|
|
512 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
513 |
#: ../modules/email-customizer/email-customizer.php:28
|
514 |
#: ../modules/user-listing/userlisting.php:94
|
515 |
-
#: ../modules/user-listing/userlisting.php:
|
516 |
-
#: ../modules/user-listing/userlisting.php:
|
517 |
msgid "Username"
|
518 |
msgstr "Usuário"
|
519 |
|
520 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
521 |
#: ../modules/email-customizer/email-customizer.php:29
|
522 |
-
#: ../modules/user-listing/userlisting.php:
|
523 |
-
#: ../modules/user-listing/userlisting.php:
|
524 |
msgid "Email"
|
525 |
msgstr "Email"
|
526 |
|
@@ -738,7 +754,7 @@ msgstr "Primeiro Nome"
|
|
738 |
msgid "Last Name"
|
739 |
msgstr "Último nome"
|
740 |
|
741 |
-
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:
|
742 |
msgid "Nickname"
|
743 |
msgstr "Apelido"
|
744 |
|
@@ -760,8 +776,8 @@ msgstr "E-mail"
|
|
760 |
#: ../admin/manage-fields.php:140
|
761 |
#: ../modules/email-customizer/email-customizer.php:31
|
762 |
#: ../modules/user-listing/userlisting.php:103
|
763 |
-
#: ../modules/user-listing/userlisting.php:
|
764 |
-
#: ../modules/user-listing/userlisting.php:
|
765 |
msgid "Website"
|
766 |
msgstr "Website"
|
767 |
|
@@ -782,8 +798,8 @@ msgid "About Yourself"
|
|
782 |
msgstr "Sobre você"
|
783 |
|
784 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
785 |
-
#: ../modules/user-listing/userlisting.php:
|
786 |
-
#: ../modules/user-listing/userlisting.php:
|
787 |
msgid "Biographical Info"
|
788 |
msgstr "Informação biográfica"
|
789 |
|
@@ -872,7 +888,7 @@ msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Name</pre><pre class=\"wppb-m
|
|
872 |
#: ../admin/manage-fields.php:500
|
873 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
874 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
875 |
-
#: ../features/functions.php:
|
876 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
877 |
msgid "Edit"
|
878 |
msgstr "Editar"
|
@@ -884,7 +900,7 @@ msgstr "Editar"
|
|
884 |
#: ../features/admin-approval/class-admin-approval.php:235
|
885 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
886 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
887 |
-
#: ../features/functions.php:
|
888 |
msgid "Delete"
|
889 |
msgstr "Deletar"
|
890 |
|
@@ -933,7 +949,7 @@ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
|
933 |
msgstr "(ex: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
934 |
|
935 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
936 |
-
#: ../features/functions.php:
|
937 |
msgid "Content"
|
938 |
msgstr "Conteúdo"
|
939 |
|
@@ -1026,14 +1042,10 @@ msgstr "A validação do usuário falhou - o avatar não foi deletado!"
|
|
1026 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1027 |
msgstr "A validação do usuário falhou - o anexo não foi deletado!"
|
1028 |
|
1029 |
-
#: ../features/functions.php:
|
1030 |
msgid "Strength indicator"
|
1031 |
msgstr "Indicador de força"
|
1032 |
|
1033 |
-
#: ../features/functions.php:482
|
1034 |
-
msgid "Minimum length of "
|
1035 |
-
msgstr "Tamanho mínimo de"
|
1036 |
-
|
1037 |
#: ../features/admin-approval/admin-approval.php:7
|
1038 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1039 |
msgid "Admin Approval"
|
@@ -1143,14 +1155,14 @@ msgid "Approve"
|
|
1143 |
msgstr "Aprovar"
|
1144 |
|
1145 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1146 |
-
#: ../modules/user-listing/userlisting.php:
|
1147 |
-
#: ../modules/user-listing/userlisting.php:
|
1148 |
msgid "Firstname"
|
1149 |
msgstr "Primeiro nome"
|
1150 |
|
1151 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1152 |
-
#: ../modules/user-listing/userlisting.php:
|
1153 |
-
#: ../modules/user-listing/userlisting.php:
|
1154 |
msgid "Lastname"
|
1155 |
msgstr "Último nome"
|
1156 |
|
@@ -1604,45 +1616,45 @@ msgstr "Esse usuário já existe."
|
|
1604 |
msgid "This username is already reserved to be used soon."
|
1605 |
msgstr "Esse usuário está reservado para ser usado em breve."
|
1606 |
|
1607 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1608 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1609 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1610 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1611 |
msgid "max upload size"
|
1612 |
msgstr "tamanho máximo de upload"
|
1613 |
|
1614 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1615 |
msgid "Current avatar: No uploaded avatar"
|
1616 |
msgstr "Avatar atual: Nenhum avatar carregado"
|
1617 |
|
1618 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1619 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1620 |
msgid "Avatar"
|
1621 |
msgstr "Avatar"
|
1622 |
|
1623 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1624 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1625 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1626 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1627 |
msgid "Click to see the current avatar"
|
1628 |
msgstr "Clique para ver o avatar atual"
|
1629 |
|
1630 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1631 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1632 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1633 |
msgstr "O avatar não pode ser deletado (foi definido como obrigatório pelo administrador)"
|
1634 |
|
1635 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1636 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1637 |
msgid "Are you sure you want to delete this avatar?"
|
1638 |
msgstr "Você tem certeza que deseja deletar esse avatar?"
|
1639 |
|
1640 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1641 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1642 |
msgid "Click to delete the current avatar"
|
1643 |
msgstr "Clique para deletar o avatar atual"
|
1644 |
|
1645 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1646 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1647 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1648 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
@@ -1656,60 +1668,60 @@ msgstr "Clique para deletar o avatar atual"
|
|
1656 |
msgid "required"
|
1657 |
msgstr "obrigatório"
|
1658 |
|
1659 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1660 |
msgid "Current avatar"
|
1661 |
msgstr "Avatar atual"
|
1662 |
|
1663 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1664 |
msgid "No uploaded avatar"
|
1665 |
msgstr "Nenhum avatar carregado"
|
1666 |
|
1667 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1668 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1669 |
msgid "The extension of the file did not match"
|
1670 |
msgstr "A extensão do arquivo não confere"
|
1671 |
|
1672 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1673 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1674 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1675 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1676 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1677 |
msgstr "O arquivo carregado excede o tamanho máximo de upload especificado em php.ini"
|
1678 |
|
1679 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1681 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1682 |
msgstr "O arquivo carregado excede a diretiva MAX_FILE_SIZE do php.ini"
|
1683 |
|
1684 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1685 |
msgid "The file could only partially be uploaded "
|
1686 |
msgstr "O arquivo pôde ser apenas parcialmente carregado"
|
1687 |
|
1688 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1689 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1690 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1691 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1693 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1694 |
msgid "No file was selected"
|
1695 |
msgstr "Nenhum arquivo foi selecionado"
|
1696 |
|
1697 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1698 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1699 |
msgid "The temporary upload folder is missing from the system"
|
1700 |
msgstr "A pasta temporária de upload não foi encontrada no sistema"
|
1701 |
|
1702 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1704 |
msgid "The file failed to write to the disk"
|
1705 |
msgstr "O arquivo falhou ao tentar gravar no disco"
|
1706 |
|
1707 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1708 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1709 |
msgid "A PHP extension stopped the file upload"
|
1710 |
msgstr "Uma extensão PHP parou a carga do arquivo"
|
1711 |
|
1712 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1713 |
msgid "Unknown error occurred"
|
1714 |
msgstr "Um erro desconhecido ocorreu"
|
1715 |
|
@@ -2152,37 +2164,37 @@ msgstr "Nenhum Formulário de Edição de Perdil encontrado na lixeira"
|
|
2152 |
|
2153 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2154 |
#: ../modules/multiple-forms/register-forms.php:138
|
2155 |
-
#: ../modules/user-listing/userlisting.php:
|
2156 |
msgid "Shortcode"
|
2157 |
msgstr "Shortcode"
|
2158 |
|
2159 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2160 |
#: ../modules/multiple-forms/register-forms.php:159
|
2161 |
-
#: ../modules/user-listing/userlisting.php:
|
2162 |
msgid "(no title)"
|
2163 |
msgstr "(sem título)"
|
2164 |
|
2165 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2166 |
#: ../modules/multiple-forms/register-forms.php:178
|
2167 |
-
#: ../modules/user-listing/userlisting.php:
|
2168 |
msgid "The shortcode will be available after you publish this form."
|
2169 |
msgstr "O shortcode estará disponível após a publicação desse formulário."
|
2170 |
|
2171 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2172 |
#: ../modules/multiple-forms/register-forms.php:180
|
2173 |
-
#: ../modules/user-listing/userlisting.php:
|
2174 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2175 |
msgstr "Use esse shortcode na página que deseja que o formulário seja mostrado:"
|
2176 |
|
2177 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2178 |
#: ../modules/multiple-forms/register-forms.php:184
|
2179 |
-
#: ../modules/user-listing/userlisting.php:
|
2180 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2181 |
msgstr "<span style=\"color:red;\">Nota:</span> alterar o título do formulário também altera o shortcode!"
|
2182 |
|
2183 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2184 |
#: ../modules/multiple-forms/register-forms.php:190
|
2185 |
-
#: ../modules/user-listing/userlisting.php:
|
2186 |
msgid "Form Shortcode"
|
2187 |
msgstr "Shortcode do formulário"
|
2188 |
|
@@ -2293,11 +2305,11 @@ msgstr "Especifique a URL da página que os usuários serão redirecionamentos a
|
|
2293 |
msgid "After Registration..."
|
2294 |
msgstr "Após o registro..."
|
2295 |
|
2296 |
-
#: ../modules/user-listing/class-userlisting.php:
|
2297 |
-
#: ../modules/user-listing/userlisting.php:
|
2298 |
-
#: ../modules/user-listing/userlisting.php:
|
2299 |
-
#: ../modules/user-listing/userlisting.php:
|
2300 |
-
#: ../modules/user-listing/userlisting.php:
|
2301 |
msgid "Search Users by All Fields"
|
2302 |
msgstr "Buscar usuários por todos os campos"
|
2303 |
|
@@ -2338,12 +2350,12 @@ msgid "Url"
|
|
2338 |
msgstr "URL"
|
2339 |
|
2340 |
#: ../modules/user-listing/userlisting.php:118
|
2341 |
-
#: ../modules/user-listing/userlisting.php:
|
2342 |
msgid "Registration Date"
|
2343 |
msgstr "Data do registro"
|
2344 |
|
2345 |
#: ../modules/user-listing/userlisting.php:119
|
2346 |
-
#: ../modules/user-listing/userlisting.php:
|
2347 |
msgid "Number of Posts"
|
2348 |
msgstr "Número de postagens"
|
2349 |
|
@@ -2400,179 +2412,179 @@ msgstr "Você não tem permissão para visualizar essa lista de usuários"
|
|
2400 |
msgid "You do not have the required user role to view this user list"
|
2401 |
msgstr "Você não tem a função necessária para visualizar essa lista de usuários"
|
2402 |
|
2403 |
-
#: ../modules/user-listing/userlisting.php:
|
2404 |
msgid "First/Lastname"
|
2405 |
msgstr "Primeiro/Último nome"
|
2406 |
|
2407 |
-
#: ../modules/user-listing/userlisting.php:
|
2408 |
msgid "Sign-up Date"
|
2409 |
msgstr "Data de cadastro"
|
2410 |
|
2411 |
-
#: ../modules/user-listing/userlisting.php:
|
2412 |
-
#: ../modules/user-listing/userlisting.php:
|
2413 |
msgid "Display Name"
|
2414 |
msgstr "Mostrar nome"
|
2415 |
|
2416 |
-
#: ../modules/user-listing/userlisting.php:
|
2417 |
msgid "Posts"
|
2418 |
msgstr "Postagens"
|
2419 |
|
2420 |
-
#: ../modules/user-listing/userlisting.php:
|
2421 |
-
#: ../modules/user-listing/userlisting.php:
|
2422 |
msgid "Aim"
|
2423 |
msgstr "Aim"
|
2424 |
|
2425 |
-
#: ../modules/user-listing/userlisting.php:
|
2426 |
-
#: ../modules/user-listing/userlisting.php:
|
2427 |
msgid "Yim"
|
2428 |
msgstr "Yim"
|
2429 |
|
2430 |
-
#: ../modules/user-listing/userlisting.php:
|
2431 |
-
#: ../modules/user-listing/userlisting.php:
|
2432 |
msgid "Jabber"
|
2433 |
msgstr "Jabber"
|
2434 |
|
2435 |
-
#: ../modules/user-listing/userlisting.php:
|
2436 |
msgid "Click here to see more information about this user"
|
2437 |
msgstr "Clique aqui para ver mais informações sobre esse usuário"
|
2438 |
|
2439 |
-
#: ../modules/user-listing/userlisting.php:
|
2440 |
msgid "More..."
|
2441 |
msgstr "Mais..."
|
2442 |
|
2443 |
-
#: ../modules/user-listing/userlisting.php:
|
2444 |
msgid "Click here to see more information about this user."
|
2445 |
msgstr "Clique aqui para ver mais informações sobre esse usuário."
|
2446 |
|
2447 |
-
#: ../modules/user-listing/userlisting.php:
|
2448 |
-
#: ../modules/user-listing/userlisting.php:
|
2449 |
msgid "Click here to go back"
|
2450 |
msgstr "Clique aqui para voltar"
|
2451 |
|
2452 |
-
#: ../modules/user-listing/userlisting.php:
|
2453 |
msgid "Back"
|
2454 |
msgstr "Voltar"
|
2455 |
|
2456 |
-
#: ../modules/user-listing/userlisting.php:
|
2457 |
msgid "«« First"
|
2458 |
msgstr "«« Primeira"
|
2459 |
|
2460 |
-
#: ../modules/user-listing/userlisting.php:
|
2461 |
msgid "« Prev"
|
2462 |
msgstr "« Ant"
|
2463 |
|
2464 |
-
#: ../modules/user-listing/userlisting.php:
|
2465 |
msgid "Next » "
|
2466 |
msgstr "Próx » "
|
2467 |
|
2468 |
-
#: ../modules/user-listing/userlisting.php:
|
2469 |
msgid "Last »»"
|
2470 |
msgstr "Última »»"
|
2471 |
|
2472 |
-
#: ../modules/user-listing/userlisting.php:
|
2473 |
msgid "You don't have any pagination settings on this userlisting!"
|
2474 |
msgstr "Você não tem nenhuma configuração de paginação nessa listagem de usuários!"
|
2475 |
|
2476 |
-
#: ../modules/user-listing/userlisting.php:
|
2477 |
msgid "Search"
|
2478 |
msgstr "Buscar"
|
2479 |
|
2480 |
-
#: ../modules/user-listing/userlisting.php:
|
2481 |
msgid "Clear Results"
|
2482 |
msgstr "Limpar resultados"
|
2483 |
|
2484 |
-
#: ../modules/user-listing/userlisting.php:
|
2485 |
msgid "Extra shortcode parameters"
|
2486 |
msgstr "Parâmetros extra do shortcode"
|
2487 |
|
2488 |
-
#: ../modules/user-listing/userlisting.php:
|
2489 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2490 |
msgstr "mostra usuários que tem algum meta-value dentro de um determinado meta-field (extra)"
|
2491 |
|
2492 |
-
#: ../modules/user-listing/userlisting.php:
|
2493 |
msgid "Example:"
|
2494 |
msgstr "Exemplo:"
|
2495 |
|
2496 |
-
#: ../modules/user-listing/userlisting.php:
|
2497 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2498 |
msgstr "Lembre-se porém que a combinação de campo-valor deve existir na base de dados."
|
2499 |
|
2500 |
-
#: ../modules/user-listing/userlisting.php:
|
2501 |
msgid "Random (very slow on large databases > 10K user)"
|
2502 |
msgstr "Aleatório (muito lento em bases de dados > 10 mil usuários)"
|
2503 |
|
2504 |
-
#: ../modules/user-listing/userlisting.php:
|
2505 |
msgid "Roles to Display"
|
2506 |
msgstr "Funções para mostrar"
|
2507 |
|
2508 |
-
#: ../modules/user-listing/userlisting.php:
|
2509 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2510 |
msgstr "Restrinjir a listagem de usuários para apenas as funções selecionadas<br/>Se não especificado, o padrão são todas as funções existentes"
|
2511 |
|
2512 |
-
#: ../modules/user-listing/userlisting.php:
|
2513 |
msgid "Number of Users/Page"
|
2514 |
msgstr "Número de usuários/página"
|
2515 |
|
2516 |
-
#: ../modules/user-listing/userlisting.php:
|
2517 |
msgid "Default Sorting Criteria"
|
2518 |
msgstr "Critério de ordenação padrão"
|
2519 |
|
2520 |
-
#: ../modules/user-listing/userlisting.php:
|
2521 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2522 |
msgstr "Defina o critério de ordenação padrão<br/>Isso pode ser temporariamente mudado para cada nova sessão"
|
2523 |
|
2524 |
-
#: ../modules/user-listing/userlisting.php:
|
2525 |
msgid "Default Sorting Order"
|
2526 |
msgstr "Prioridade da ordenação padrão"
|
2527 |
|
2528 |
-
#: ../modules/user-listing/userlisting.php:
|
2529 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2530 |
msgstr "Defina a ordem padrão de ordenação<br/>Isso pode ser mudado temporariamente durante cada nova sessão"
|
2531 |
|
2532 |
-
#: ../modules/user-listing/userlisting.php:
|
2533 |
msgid "Avatar Size (All-userlisting)"
|
2534 |
msgstr "Tamanho do avatar (toda a listagem de usuários)"
|
2535 |
|
2536 |
-
#: ../modules/user-listing/userlisting.php:
|
2537 |
msgid "Set the avatar size on the all-userlisting only"
|
2538 |
msgstr "Ajusta o tamanho do avatar apenas na listagem de todos os usuários"
|
2539 |
|
2540 |
-
#: ../modules/user-listing/userlisting.php:
|
2541 |
msgid "Avatar Size (Single-userlisting)"
|
2542 |
msgstr "Tamanho do avatar (listagem de usuário única)"
|
2543 |
|
2544 |
-
#: ../modules/user-listing/userlisting.php:
|
2545 |
msgid "Set the avatar size on the single-userlisting only"
|
2546 |
msgstr "Defina o tamanho do avatar na entrada única de usuário"
|
2547 |
|
2548 |
-
#: ../modules/user-listing/userlisting.php:
|
2549 |
msgid "Visible only to logged in users?"
|
2550 |
msgstr "Visível somente para usuários logados?"
|
2551 |
|
2552 |
-
#: ../modules/user-listing/userlisting.php:
|
2553 |
msgid "The userlisting will only be visible only to the logged in users"
|
2554 |
msgstr "A entrada de usuário será visível apenas para usuários logados"
|
2555 |
|
2556 |
-
#: ../modules/user-listing/userlisting.php:
|
2557 |
msgid "Visible to following Roles"
|
2558 |
msgstr "Visível às seguintes Funções"
|
2559 |
|
2560 |
-
#: ../modules/user-listing/userlisting.php:
|
2561 |
msgid "The userlisting will only be visible to the following roles"
|
2562 |
msgstr "A entrada de usuário só será visível para as seguintes funções"
|
2563 |
|
2564 |
-
#: ../modules/user-listing/userlisting.php:
|
2565 |
msgid "Userlisting Settings"
|
2566 |
msgstr "Configurações da entrada de usuário"
|
2567 |
|
2568 |
-
#: ../modules/user-listing/userlisting.php:
|
2569 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2570 |
msgstr "Você precisa ativar a função de Listagem de Usuários dentro da aba \"Módulos\"!"
|
2571 |
|
2572 |
-
#: ../modules/user-listing/userlisting.php:
|
2573 |
msgid "You can find it in the Profile Builder menu."
|
2574 |
msgstr "Você pode encontrar isso no menu do Profile Builder."
|
2575 |
|
2576 |
-
#: ../modules/user-listing/userlisting.php:
|
2577 |
msgid "No results found!"
|
2578 |
msgstr "Nenhum resultado encontrado!"
|
2 |
# This file is distributed under the same license as the Profile Builder package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2014-11-26 07:28:11+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
13 |
+
#: ../features/functions.php:485
|
14 |
+
msgid "Minimum length of %d characters"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: ../front-end/class-formbuilder.php:93 ../front-end/class-formbuilder.php:96
|
18 |
+
msgid "This message is only visible by administrators"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: ../front-end/extra-fields/avatar/avatar.php:119
|
22 |
+
msgid "The image file set in the %s field for this user could not be found on the server. The default WordPress avatar is being used at the moment."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: ../modules/user-listing/userlisting.php:353
|
26 |
+
msgid "User not found"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
30 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
31 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
41 |
|
42 |
#: ../admin/manage-fields.php:380
|
43 |
msgid "The meta-name cannot be empty\n"
|
44 |
+
msgstr "O meta-name não pode ser vazio \n"
|
45 |
|
46 |
#: ../admin/register-version.php:57
|
47 |
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
70 |
msgid "1 item"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../features/functions.php:471
|
74 |
msgid "Very Weak"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../features/functions.php:559
|
78 |
msgid "This field is required"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../features/functions.php:579
|
82 |
msgid "Cancel"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../features/functions.php:610
|
86 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
87 |
msgstr ""
|
88 |
|
92 |
|
93 |
#: ../front-end/login.php:84
|
94 |
msgid "username"
|
95 |
+
msgstr "nome de usuário"
|
96 |
|
97 |
#: ../front-end/login.php:84
|
98 |
msgid "email"
|
99 |
+
msgstr "e-mail"
|
100 |
|
101 |
#: ../front-end/login.php:178
|
102 |
msgid "Lost your password?"
|
103 |
+
msgstr "Perdeu sua senha?"
|
104 |
|
105 |
#: ../index.php:34
|
106 |
msgid " is also activated. You need to deactivate it before activating this version of the plugin."
|
107 |
+
msgstr "também é ativado. Você precisa desativá-la antes de ativar esta versão do plugin."
|
108 |
|
109 |
#: ../modules/email-customizer/admin-email-customizer.php:54
|
110 |
#: ../modules/email-customizer/user-email-customizer.php:54
|
111 |
msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
|
112 |
+
msgstr "Deve ser um endereço de e-mail válido ou o tag {{reply_to}} o qual o padrão para o e-mail do administrador"
|
113 |
|
114 |
#: ../modules/email-customizer/email-customizer.php:265
|
115 |
#: ../modules/email-customizer/email-customizer.php:272
|
130 |
|
131 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
132 |
msgid "Delete all"
|
133 |
+
msgstr "Apagar tudo"
|
134 |
|
135 |
#: ../modules/multiple-forms/register-forms.php:230
|
136 |
msgid "Choose..."
|
137 |
+
msgstr "Escolher..."
|
138 |
|
139 |
+
#: ../modules/user-listing/userlisting.php:1160
|
140 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
141 |
msgstr ""
|
142 |
|
168 |
msgid "Hide"
|
169 |
msgstr "Ocultar"
|
170 |
|
171 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:183
|
172 |
+
#: ../admin/register-version.php:81 ../features/functions.php:572
|
173 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
174 |
#: ../modules/modules.php:142
|
175 |
msgid "Save Changes"
|
193 |
msgstr "Muito fraco"
|
194 |
|
195 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
196 |
+
#: ../features/functions.php:471
|
197 |
msgid "Weak"
|
198 |
msgstr "Fraco"
|
199 |
|
200 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
201 |
+
#: ../features/functions.php:471
|
202 |
msgid "Medium"
|
203 |
msgstr "Médio"
|
204 |
|
205 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
206 |
+
#: ../features/functions.php:471
|
207 |
msgid "Strong"
|
208 |
msgstr "Forte"
|
209 |
|
461 |
#: ../admin/general-settings.php:114
|
462 |
#: ../modules/multiple-forms/register-forms.php:229
|
463 |
#: ../modules/multiple-forms/register-forms.php:230
|
464 |
+
#: ../modules/user-listing/userlisting.php:1165
|
465 |
msgid "Yes"
|
466 |
msgstr "Sim"
|
467 |
|
528 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
529 |
#: ../modules/email-customizer/email-customizer.php:28
|
530 |
#: ../modules/user-listing/userlisting.php:94
|
531 |
+
#: ../modules/user-listing/userlisting.php:522
|
532 |
+
#: ../modules/user-listing/userlisting.php:1122
|
533 |
msgid "Username"
|
534 |
msgstr "Usuário"
|
535 |
|
536 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
537 |
#: ../modules/email-customizer/email-customizer.php:29
|
538 |
+
#: ../modules/user-listing/userlisting.php:528
|
539 |
+
#: ../modules/user-listing/userlisting.php:1123
|
540 |
msgid "Email"
|
541 |
msgstr "Email"
|
542 |
|
754 |
msgid "Last Name"
|
755 |
msgstr "Último nome"
|
756 |
|
757 |
+
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:561
|
758 |
msgid "Nickname"
|
759 |
msgstr "Apelido"
|
760 |
|
776 |
#: ../admin/manage-fields.php:140
|
777 |
#: ../modules/email-customizer/email-customizer.php:31
|
778 |
#: ../modules/user-listing/userlisting.php:103
|
779 |
+
#: ../modules/user-listing/userlisting.php:543
|
780 |
+
#: ../modules/user-listing/userlisting.php:1124
|
781 |
msgid "Website"
|
782 |
msgstr "Website"
|
783 |
|
798 |
msgstr "Sobre você"
|
799 |
|
800 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
801 |
+
#: ../modules/user-listing/userlisting.php:546
|
802 |
+
#: ../modules/user-listing/userlisting.php:1125
|
803 |
msgid "Biographical Info"
|
804 |
msgstr "Informação biográfica"
|
805 |
|
888 |
#: ../admin/manage-fields.php:500
|
889 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
890 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
891 |
+
#: ../features/functions.php:593 ../features/functions.php:600
|
892 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
893 |
msgid "Edit"
|
894 |
msgstr "Editar"
|
900 |
#: ../features/admin-approval/class-admin-approval.php:235
|
901 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
902 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
903 |
+
#: ../features/functions.php:586 ../features/functions.php:600
|
904 |
msgid "Delete"
|
905 |
msgstr "Deletar"
|
906 |
|
949 |
msgstr "(ex: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
950 |
|
951 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
952 |
+
#: ../features/functions.php:600
|
953 |
msgid "Content"
|
954 |
msgstr "Conteúdo"
|
955 |
|
1042 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1043 |
msgstr "A validação do usuário falhou - o anexo não foi deletado!"
|
1044 |
|
1045 |
+
#: ../features/functions.php:446
|
1046 |
msgid "Strength indicator"
|
1047 |
msgstr "Indicador de força"
|
1048 |
|
|
|
|
|
|
|
|
|
1049 |
#: ../features/admin-approval/admin-approval.php:7
|
1050 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1051 |
msgid "Admin Approval"
|
1155 |
msgstr "Aprovar"
|
1156 |
|
1157 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1158 |
+
#: ../modules/user-listing/userlisting.php:534
|
1159 |
+
#: ../modules/user-listing/userlisting.php:1127
|
1160 |
msgid "Firstname"
|
1161 |
msgstr "Primeiro nome"
|
1162 |
|
1163 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1164 |
+
#: ../modules/user-listing/userlisting.php:537
|
1165 |
+
#: ../modules/user-listing/userlisting.php:1128
|
1166 |
msgid "Lastname"
|
1167 |
msgstr "Último nome"
|
1168 |
|
1616 |
msgid "This username is already reserved to be used soon."
|
1617 |
msgstr "Esse usuário está reservado para ser usado em breve."
|
1618 |
|
1619 |
+
#: ../front-end/extra-fields/avatar/avatar.php:60
|
1620 |
+
#: ../front-end/extra-fields/avatar/avatar.php:98
|
1621 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1622 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1623 |
msgid "max upload size"
|
1624 |
msgstr "tamanho máximo de upload"
|
1625 |
|
1626 |
+
#: ../front-end/extra-fields/avatar/avatar.php:66
|
1627 |
msgid "Current avatar: No uploaded avatar"
|
1628 |
msgstr "Avatar atual: Nenhum avatar carregado"
|
1629 |
|
1630 |
+
#: ../front-end/extra-fields/avatar/avatar.php:71
|
1631 |
+
#: ../front-end/extra-fields/avatar/avatar.php:105
|
1632 |
msgid "Avatar"
|
1633 |
msgstr "Avatar"
|
1634 |
|
1635 |
+
#: ../front-end/extra-fields/avatar/avatar.php:75
|
1636 |
+
#: ../front-end/extra-fields/avatar/avatar.php:80
|
1637 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1638 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1639 |
msgid "Click to see the current avatar"
|
1640 |
msgstr "Clique para ver o avatar atual"
|
1641 |
|
1642 |
+
#: ../front-end/extra-fields/avatar/avatar.php:77
|
1643 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1644 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1645 |
msgstr "O avatar não pode ser deletado (foi definido como obrigatório pelo administrador)"
|
1646 |
|
1647 |
+
#: ../front-end/extra-fields/avatar/avatar.php:82
|
1648 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1649 |
msgid "Are you sure you want to delete this avatar?"
|
1650 |
msgstr "Você tem certeza que deseja deletar esse avatar?"
|
1651 |
|
1652 |
+
#: ../front-end/extra-fields/avatar/avatar.php:83
|
1653 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1654 |
msgid "Click to delete the current avatar"
|
1655 |
msgstr "Clique para deletar o avatar atual"
|
1656 |
|
1657 |
+
#: ../front-end/extra-fields/avatar/avatar.php:91
|
1658 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1659 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1660 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1668 |
msgid "required"
|
1669 |
msgstr "obrigatório"
|
1670 |
|
1671 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1672 |
msgid "Current avatar"
|
1673 |
msgstr "Avatar atual"
|
1674 |
|
1675 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1676 |
msgid "No uploaded avatar"
|
1677 |
msgstr "Nenhum avatar carregado"
|
1678 |
|
1679 |
+
#: ../front-end/extra-fields/avatar/avatar.php:207
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1681 |
msgid "The extension of the file did not match"
|
1682 |
msgstr "A extensão do arquivo não confere"
|
1683 |
|
1684 |
+
#: ../front-end/extra-fields/avatar/avatar.php:210
|
1685 |
+
#: ../front-end/extra-fields/avatar/avatar.php:213
|
1686 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1687 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1688 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1689 |
msgstr "O arquivo carregado excede o tamanho máximo de upload especificado em php.ini"
|
1690 |
|
1691 |
+
#: ../front-end/extra-fields/avatar/avatar.php:216
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1693 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1694 |
msgstr "O arquivo carregado excede a diretiva MAX_FILE_SIZE do php.ini"
|
1695 |
|
1696 |
+
#: ../front-end/extra-fields/avatar/avatar.php:219
|
1697 |
msgid "The file could only partially be uploaded "
|
1698 |
msgstr "O arquivo pôde ser apenas parcialmente carregado"
|
1699 |
|
1700 |
+
#: ../front-end/extra-fields/avatar/avatar.php:222
|
1701 |
+
#: ../front-end/extra-fields/avatar/avatar.php:243
|
1702 |
+
#: ../front-end/extra-fields/avatar/avatar.php:246
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1704 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1705 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1706 |
msgid "No file was selected"
|
1707 |
msgstr "Nenhum arquivo foi selecionado"
|
1708 |
|
1709 |
+
#: ../front-end/extra-fields/avatar/avatar.php:225
|
1710 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1711 |
msgid "The temporary upload folder is missing from the system"
|
1712 |
msgstr "A pasta temporária de upload não foi encontrada no sistema"
|
1713 |
|
1714 |
+
#: ../front-end/extra-fields/avatar/avatar.php:228
|
1715 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1716 |
msgid "The file failed to write to the disk"
|
1717 |
msgstr "O arquivo falhou ao tentar gravar no disco"
|
1718 |
|
1719 |
+
#: ../front-end/extra-fields/avatar/avatar.php:231
|
1720 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1721 |
msgid "A PHP extension stopped the file upload"
|
1722 |
msgstr "Uma extensão PHP parou a carga do arquivo"
|
1723 |
|
1724 |
+
#: ../front-end/extra-fields/avatar/avatar.php:234
|
1725 |
msgid "Unknown error occurred"
|
1726 |
msgstr "Um erro desconhecido ocorreu"
|
1727 |
|
2164 |
|
2165 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2166 |
#: ../modules/multiple-forms/register-forms.php:138
|
2167 |
+
#: ../modules/user-listing/userlisting.php:1037
|
2168 |
msgid "Shortcode"
|
2169 |
msgstr "Shortcode"
|
2170 |
|
2171 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2172 |
#: ../modules/multiple-forms/register-forms.php:159
|
2173 |
+
#: ../modules/user-listing/userlisting.php:1058
|
2174 |
msgid "(no title)"
|
2175 |
msgstr "(sem título)"
|
2176 |
|
2177 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2178 |
#: ../modules/multiple-forms/register-forms.php:178
|
2179 |
+
#: ../modules/user-listing/userlisting.php:1078
|
2180 |
msgid "The shortcode will be available after you publish this form."
|
2181 |
msgstr "O shortcode estará disponível após a publicação desse formulário."
|
2182 |
|
2183 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2184 |
#: ../modules/multiple-forms/register-forms.php:180
|
2185 |
+
#: ../modules/user-listing/userlisting.php:1080
|
2186 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2187 |
msgstr "Use esse shortcode na página que deseja que o formulário seja mostrado:"
|
2188 |
|
2189 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2190 |
#: ../modules/multiple-forms/register-forms.php:184
|
2191 |
+
#: ../modules/user-listing/userlisting.php:1084
|
2192 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2193 |
msgstr "<span style=\"color:red;\">Nota:</span> alterar o título do formulário também altera o shortcode!"
|
2194 |
|
2195 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2196 |
#: ../modules/multiple-forms/register-forms.php:190
|
2197 |
+
#: ../modules/user-listing/userlisting.php:1098
|
2198 |
msgid "Form Shortcode"
|
2199 |
msgstr "Shortcode do formulário"
|
2200 |
|
2305 |
msgid "After Registration..."
|
2306 |
msgstr "Após o registro..."
|
2307 |
|
2308 |
+
#: ../modules/user-listing/class-userlisting.php:461
|
2309 |
+
#: ../modules/user-listing/userlisting.php:632
|
2310 |
+
#: ../modules/user-listing/userlisting.php:850
|
2311 |
+
#: ../modules/user-listing/userlisting.php:893
|
2312 |
+
#: ../modules/user-listing/userlisting.php:1217
|
2313 |
msgid "Search Users by All Fields"
|
2314 |
msgstr "Buscar usuários por todos os campos"
|
2315 |
|
2350 |
msgstr "URL"
|
2351 |
|
2352 |
#: ../modules/user-listing/userlisting.php:118
|
2353 |
+
#: ../modules/user-listing/userlisting.php:1126
|
2354 |
msgid "Registration Date"
|
2355 |
msgstr "Data do registro"
|
2356 |
|
2357 |
#: ../modules/user-listing/userlisting.php:119
|
2358 |
+
#: ../modules/user-listing/userlisting.php:1130
|
2359 |
msgid "Number of Posts"
|
2360 |
msgstr "Número de postagens"
|
2361 |
|
2412 |
msgid "You do not have the required user role to view this user list"
|
2413 |
msgstr "Você não tem a função necessária para visualizar essa lista de usuários"
|
2414 |
|
2415 |
+
#: ../modules/user-listing/userlisting.php:525
|
2416 |
msgid "First/Lastname"
|
2417 |
msgstr "Primeiro/Último nome"
|
2418 |
|
2419 |
+
#: ../modules/user-listing/userlisting.php:531
|
2420 |
msgid "Sign-up Date"
|
2421 |
msgstr "Data de cadastro"
|
2422 |
|
2423 |
+
#: ../modules/user-listing/userlisting.php:540
|
2424 |
+
#: ../modules/user-listing/userlisting.php:1129
|
2425 |
msgid "Display Name"
|
2426 |
msgstr "Mostrar nome"
|
2427 |
|
2428 |
+
#: ../modules/user-listing/userlisting.php:549
|
2429 |
msgid "Posts"
|
2430 |
msgstr "Postagens"
|
2431 |
|
2432 |
+
#: ../modules/user-listing/userlisting.php:552
|
2433 |
+
#: ../modules/user-listing/userlisting.php:1134
|
2434 |
msgid "Aim"
|
2435 |
msgstr "Aim"
|
2436 |
|
2437 |
+
#: ../modules/user-listing/userlisting.php:555
|
2438 |
+
#: ../modules/user-listing/userlisting.php:1135
|
2439 |
msgid "Yim"
|
2440 |
msgstr "Yim"
|
2441 |
|
2442 |
+
#: ../modules/user-listing/userlisting.php:558
|
2443 |
+
#: ../modules/user-listing/userlisting.php:1136
|
2444 |
msgid "Jabber"
|
2445 |
msgstr "Jabber"
|
2446 |
|
2447 |
+
#: ../modules/user-listing/userlisting.php:709
|
2448 |
msgid "Click here to see more information about this user"
|
2449 |
msgstr "Clique aqui para ver mais informações sobre esse usuário"
|
2450 |
|
2451 |
+
#: ../modules/user-listing/userlisting.php:709
|
2452 |
msgid "More..."
|
2453 |
msgstr "Mais..."
|
2454 |
|
2455 |
+
#: ../modules/user-listing/userlisting.php:712
|
2456 |
msgid "Click here to see more information about this user."
|
2457 |
msgstr "Clique aqui para ver mais informações sobre esse usuário."
|
2458 |
|
2459 |
+
#: ../modules/user-listing/userlisting.php:804
|
2460 |
+
#: ../modules/user-listing/userlisting.php:807
|
2461 |
msgid "Click here to go back"
|
2462 |
msgstr "Clique aqui para voltar"
|
2463 |
|
2464 |
+
#: ../modules/user-listing/userlisting.php:804
|
2465 |
msgid "Back"
|
2466 |
msgstr "Voltar"
|
2467 |
|
2468 |
+
#: ../modules/user-listing/userlisting.php:837
|
2469 |
msgid "«« First"
|
2470 |
msgstr "«« Primeira"
|
2471 |
|
2472 |
+
#: ../modules/user-listing/userlisting.php:838
|
2473 |
msgid "« Prev"
|
2474 |
msgstr "« Ant"
|
2475 |
|
2476 |
+
#: ../modules/user-listing/userlisting.php:839
|
2477 |
msgid "Next » "
|
2478 |
msgstr "Próx » "
|
2479 |
|
2480 |
+
#: ../modules/user-listing/userlisting.php:840
|
2481 |
msgid "Last »»"
|
2482 |
msgstr "Última »»"
|
2483 |
|
2484 |
+
#: ../modules/user-listing/userlisting.php:869
|
2485 |
msgid "You don't have any pagination settings on this userlisting!"
|
2486 |
msgstr "Você não tem nenhuma configuração de paginação nessa listagem de usuários!"
|
2487 |
|
2488 |
+
#: ../modules/user-listing/userlisting.php:910
|
2489 |
msgid "Search"
|
2490 |
msgstr "Buscar"
|
2491 |
|
2492 |
+
#: ../modules/user-listing/userlisting.php:911
|
2493 |
msgid "Clear Results"
|
2494 |
msgstr "Limpar resultados"
|
2495 |
|
2496 |
+
#: ../modules/user-listing/userlisting.php:1087
|
2497 |
msgid "Extra shortcode parameters"
|
2498 |
msgstr "Parâmetros extra do shortcode"
|
2499 |
|
2500 |
+
#: ../modules/user-listing/userlisting.php:1089
|
2501 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2502 |
msgstr "mostra usuários que tem algum meta-value dentro de um determinado meta-field (extra)"
|
2503 |
|
2504 |
+
#: ../modules/user-listing/userlisting.php:1090
|
2505 |
msgid "Example:"
|
2506 |
msgstr "Exemplo:"
|
2507 |
|
2508 |
+
#: ../modules/user-listing/userlisting.php:1092
|
2509 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2510 |
msgstr "Lembre-se porém que a combinação de campo-valor deve existir na base de dados."
|
2511 |
|
2512 |
+
#: ../modules/user-listing/userlisting.php:1146
|
2513 |
msgid "Random (very slow on large databases > 10K user)"
|
2514 |
msgstr "Aleatório (muito lento em bases de dados > 10 mil usuários)"
|
2515 |
|
2516 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2517 |
msgid "Roles to Display"
|
2518 |
msgstr "Funções para mostrar"
|
2519 |
|
2520 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2521 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2522 |
msgstr "Restrinjir a listagem de usuários para apenas as funções selecionadas<br/>Se não especificado, o padrão são todas as funções existentes"
|
2523 |
|
2524 |
+
#: ../modules/user-listing/userlisting.php:1160
|
2525 |
msgid "Number of Users/Page"
|
2526 |
msgstr "Número de usuários/página"
|
2527 |
|
2528 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2529 |
msgid "Default Sorting Criteria"
|
2530 |
msgstr "Critério de ordenação padrão"
|
2531 |
|
2532 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2533 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2534 |
msgstr "Defina o critério de ordenação padrão<br/>Isso pode ser temporariamente mudado para cada nova sessão"
|
2535 |
|
2536 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2537 |
msgid "Default Sorting Order"
|
2538 |
msgstr "Prioridade da ordenação padrão"
|
2539 |
|
2540 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2541 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2542 |
msgstr "Defina a ordem padrão de ordenação<br/>Isso pode ser mudado temporariamente durante cada nova sessão"
|
2543 |
|
2544 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2545 |
msgid "Avatar Size (All-userlisting)"
|
2546 |
msgstr "Tamanho do avatar (toda a listagem de usuários)"
|
2547 |
|
2548 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2549 |
msgid "Set the avatar size on the all-userlisting only"
|
2550 |
msgstr "Ajusta o tamanho do avatar apenas na listagem de todos os usuários"
|
2551 |
|
2552 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2553 |
msgid "Avatar Size (Single-userlisting)"
|
2554 |
msgstr "Tamanho do avatar (listagem de usuário única)"
|
2555 |
|
2556 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2557 |
msgid "Set the avatar size on the single-userlisting only"
|
2558 |
msgstr "Defina o tamanho do avatar na entrada única de usuário"
|
2559 |
|
2560 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2561 |
msgid "Visible only to logged in users?"
|
2562 |
msgstr "Visível somente para usuários logados?"
|
2563 |
|
2564 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2565 |
msgid "The userlisting will only be visible only to the logged in users"
|
2566 |
msgstr "A entrada de usuário será visível apenas para usuários logados"
|
2567 |
|
2568 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2569 |
msgid "Visible to following Roles"
|
2570 |
msgstr "Visível às seguintes Funções"
|
2571 |
|
2572 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2573 |
msgid "The userlisting will only be visible to the following roles"
|
2574 |
msgstr "A entrada de usuário só será visível para as seguintes funções"
|
2575 |
|
2576 |
+
#: ../modules/user-listing/userlisting.php:1172
|
2577 |
msgid "Userlisting Settings"
|
2578 |
msgstr "Configurações da entrada de usuário"
|
2579 |
|
2580 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2581 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2582 |
msgstr "Você precisa ativar a função de Listagem de Usuários dentro da aba \"Módulos\"!"
|
2583 |
|
2584 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2585 |
msgid "You can find it in the Profile Builder menu."
|
2586 |
msgstr "Você pode encontrar isso no menu do Profile Builder."
|
2587 |
|
2588 |
+
#: ../modules/user-listing/userlisting.php:1343
|
2589 |
msgid "No results found!"
|
2590 |
msgstr "Nenhum resultado encontrado!"
|
translation/profilebuilder-ro_RO.mo
ADDED
Binary file
|
translation/profilebuilder-ro_RO.po
ADDED
@@ -0,0 +1,2592 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Profile Builder in Romanian
|
2 |
+
# This file is distributed under the same license as the Profile Builder package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2014-11-19 08:22:51+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: Profile Builder\n"
|
12 |
+
|
13 |
+
#: ../features/functions.php:485
|
14 |
+
msgid "Minimum length of %d characters"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: ../front-end/class-formbuilder.php:93 ../front-end/class-formbuilder.php:96
|
18 |
+
msgid "This message is only visible by administrators"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: ../front-end/extra-fields/avatar/avatar.php:119
|
22 |
+
msgid "The image file set in the %s field for this user could not be found on the server. The default WordPress avatar is being used at the moment."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: ../modules/user-listing/userlisting.php:353
|
26 |
+
msgid "User not found"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: ../modules/email-customizer/admin-email-customizer.php:38
|
30 |
+
#: ../modules/email-customizer/user-email-customizer.php:38
|
31 |
+
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: ../admin/admin-bar.php:48
|
35 |
+
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: ../admin/manage-fields.php:85
|
39 |
+
msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: ../admin/manage-fields.php:380
|
43 |
+
msgid "The meta-name cannot be empty\n"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: ../admin/register-version.php:57
|
47 |
+
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: ../admin/register-version.php:219
|
51 |
+
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: ../admin/register-version.php:222
|
55 |
+
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %5$sDismiss%6$s</p>"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: ../admin/register-version.php:227
|
59 |
+
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %6$sDismiss%7$s</p>"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: ../assets/lib/wck-api/fields/country select.php:14
|
63 |
+
#: ../assets/lib/wck-api/fields/cpt select.php:17
|
64 |
+
#: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
|
65 |
+
#: select.php:15
|
66 |
+
msgid "...Choose"
|
67 |
+
msgstr "...Alege"
|
68 |
+
|
69 |
+
#: ../features/class-list-table.php:526 ../features/class-list-table.php:941
|
70 |
+
msgid "1 item"
|
71 |
+
msgstr "1 articol"
|
72 |
+
|
73 |
+
#: ../features/functions.php:471
|
74 |
+
msgid "Very Weak"
|
75 |
+
msgstr "Foarte slab"
|
76 |
+
|
77 |
+
#: ../features/functions.php:559
|
78 |
+
msgid "This field is required"
|
79 |
+
msgstr "Acest câmp este obligatoriu"
|
80 |
+
|
81 |
+
#: ../features/functions.php:579
|
82 |
+
msgid "Cancel"
|
83 |
+
msgstr "Anulează"
|
84 |
+
|
85 |
+
#: ../features/functions.php:610
|
86 |
+
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: ../front-end/login.php:79
|
90 |
+
msgid "Invalid username."
|
91 |
+
msgstr " Nume utilizator invalid."
|
92 |
+
|
93 |
+
#: ../front-end/login.php:84
|
94 |
+
msgid "username"
|
95 |
+
msgstr "Nume utilizator"
|
96 |
+
|
97 |
+
#: ../front-end/login.php:84
|
98 |
+
msgid "email"
|
99 |
+
msgstr "E-mail"
|
100 |
+
|
101 |
+
#: ../front-end/login.php:178
|
102 |
+
msgid "Lost your password?"
|
103 |
+
msgstr "Ţi-ai pierdut parola?"
|
104 |
+
|
105 |
+
#: ../index.php:34
|
106 |
+
msgid " is also activated. You need to deactivate it before activating this version of the plugin."
|
107 |
+
msgstr "este activată. Este nevoie să o dezactivezi înainte de a activa această versiune a plugin-ului. "
|
108 |
+
|
109 |
+
#: ../modules/email-customizer/admin-email-customizer.php:54
|
110 |
+
#: ../modules/email-customizer/user-email-customizer.php:54
|
111 |
+
msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: ../modules/email-customizer/email-customizer.php:265
|
115 |
+
#: ../modules/email-customizer/email-customizer.php:272
|
116 |
+
msgid "Your selected password at signup"
|
117 |
+
msgstr "Parola selectată la înregistrare "
|
118 |
+
|
119 |
+
#: ../modules/email-customizer/user-email-customizer.php:38
|
120 |
+
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:272
|
124 |
+
msgid "This form is empty."
|
125 |
+
msgstr "Acest formular este gol."
|
126 |
+
|
127 |
+
#: ../modules/multiple-forms/multiple-forms.php:407
|
128 |
+
msgid "Delete all items"
|
129 |
+
msgstr "Șterge toate articolele"
|
130 |
+
|
131 |
+
#: ../modules/multiple-forms/multiple-forms.php:407
|
132 |
+
msgid "Delete all"
|
133 |
+
msgstr "Șterge tot"
|
134 |
+
|
135 |
+
#: ../modules/multiple-forms/register-forms.php:230
|
136 |
+
msgid "Choose..."
|
137 |
+
msgstr "Alege..."
|
138 |
+
|
139 |
+
#: ../modules/user-listing/userlisting.php:1160
|
140 |
+
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: ../admin/admin-bar.php:10
|
144 |
+
msgid "Show/Hide the Admin Bar on the Front-End"
|
145 |
+
msgstr "Arată/Ascunde Bara Administrator în Front-end "
|
146 |
+
|
147 |
+
#: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
|
148 |
+
msgid "Admin Bar Settings"
|
149 |
+
msgstr "Setări Bară Administrator"
|
150 |
+
|
151 |
+
#: ../admin/admin-bar.php:57
|
152 |
+
msgid "User-Role"
|
153 |
+
msgstr "Rolul Utilizatorului"
|
154 |
+
|
155 |
+
#: ../admin/admin-bar.php:58
|
156 |
+
msgid "Visibility"
|
157 |
+
msgstr "Vizibilitate"
|
158 |
+
|
159 |
+
#: ../admin/admin-bar.php:73
|
160 |
+
msgid "Default"
|
161 |
+
msgstr "Setări predefinite"
|
162 |
+
|
163 |
+
#: ../admin/admin-bar.php:74
|
164 |
+
msgid "Show"
|
165 |
+
msgstr "Arată"
|
166 |
+
|
167 |
+
#: ../admin/admin-bar.php:75
|
168 |
+
msgid "Hide"
|
169 |
+
msgstr "Ascunde"
|
170 |
+
|
171 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:183
|
172 |
+
#: ../admin/register-version.php:81 ../features/functions.php:572
|
173 |
+
#: ../modules/custom-redirects/custom-redirects.php:136
|
174 |
+
#: ../modules/modules.php:142
|
175 |
+
msgid "Save Changes"
|
176 |
+
msgstr "Salvează Modificările"
|
177 |
+
|
178 |
+
#: ../admin/admin-functions.php:34
|
179 |
+
msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
|
180 |
+
msgstr "Logarea se realizează folosind adresa de e-mail. Acest câmp NU va apărea în Front-end! (aceste setări se pot schimba din tab-ul \"%s\") "
|
181 |
+
|
182 |
+
#: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
|
183 |
+
#: ../admin/general-settings.php:38
|
184 |
+
msgid "General Settings"
|
185 |
+
msgstr "Setări Generale"
|
186 |
+
|
187 |
+
#: ../admin/admin-functions.php:106
|
188 |
+
msgid "<strong>ERROR</strong>: The password must have the minimum length of "
|
189 |
+
msgstr "<strong>EROARE</strong>: Parola trebuie să aibă lungimea minimă de "
|
190 |
+
|
191 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
|
192 |
+
msgid "Very weak"
|
193 |
+
msgstr "Foarte Slab"
|
194 |
+
|
195 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
196 |
+
#: ../features/functions.php:471
|
197 |
+
msgid "Weak"
|
198 |
+
msgstr "Slab"
|
199 |
+
|
200 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
201 |
+
#: ../features/functions.php:471
|
202 |
+
msgid "Medium"
|
203 |
+
msgstr "Mediu"
|
204 |
+
|
205 |
+
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
206 |
+
#: ../features/functions.php:471
|
207 |
+
msgid "Strong"
|
208 |
+
msgstr "Puternic"
|
209 |
+
|
210 |
+
#: ../admin/admin-functions.php:123
|
211 |
+
msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
|
212 |
+
msgstr "<strong>EROARE</strong>: Parola trebuie să aibă complexitatea minimă de "
|
213 |
+
|
214 |
+
#: ../admin/admin-functions.php:162
|
215 |
+
msgid "Add Field"
|
216 |
+
msgstr "Adaugă Câmp"
|
217 |
+
|
218 |
+
#: ../admin/admin-functions.php:164
|
219 |
+
msgid "Save Settings"
|
220 |
+
msgstr "Salvează Setările"
|
221 |
+
|
222 |
+
#: ../admin/basic-info.php:10
|
223 |
+
msgid "Basic Information"
|
224 |
+
msgstr "Informații de bază"
|
225 |
+
|
226 |
+
#: ../admin/basic-info.php:29
|
227 |
+
msgid "Version %s"
|
228 |
+
msgstr "Versiune %s"
|
229 |
+
|
230 |
+
#: ../admin/basic-info.php:30
|
231 |
+
msgid "<strong>Profile Builder </strong>"
|
232 |
+
msgstr "<strong>Profile Builder </strong>"
|
233 |
+
|
234 |
+
#: ../admin/basic-info.php:31
|
235 |
+
msgid "The best way to add front-end registration, edit profile and login forms."
|
236 |
+
msgstr "Cel mai bun mod de a adăuga formulare de înregistrare, login și editare profil din front-end."
|
237 |
+
|
238 |
+
#: ../admin/basic-info.php:33
|
239 |
+
msgid "For Modern User Interaction"
|
240 |
+
msgstr "Pentru interacțiunea modernă cu utilizatorul"
|
241 |
+
|
242 |
+
#: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
|
243 |
+
msgid "Login"
|
244 |
+
msgstr "Logare"
|
245 |
+
|
246 |
+
#: ../admin/basic-info.php:37
|
247 |
+
msgid "Friction-less login using <strong class=\"nowrap\">[wppb-login]</strong> shortcode or a widget."
|
248 |
+
msgstr "Logare ușoară folosind shortcode-ul sau widget-ul <strong class=\"nowrap\">[wppb-login]</strong>."
|
249 |
+
|
250 |
+
#: ../admin/basic-info.php:40
|
251 |
+
msgid "Registration"
|
252 |
+
msgstr "Înregistrare"
|
253 |
+
|
254 |
+
#: ../admin/basic-info.php:41
|
255 |
+
msgid "Beautiful registration forms fully customizable using the <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
|
256 |
+
msgstr "Formulare de înregistrare frumoase, complet personalizabile, folosind shortcode-ul <strong class=\"nowrap\">[wppb-register]</strong>"
|
257 |
+
|
258 |
+
#: ../admin/basic-info.php:44
|
259 |
+
msgid "Edit Profile"
|
260 |
+
msgstr "Editare Profil"
|
261 |
+
|
262 |
+
#: ../admin/basic-info.php:45
|
263 |
+
msgid "Straight forward edit profile forms using <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
|
264 |
+
msgstr "Formulare de editare a profilului fără complicații, folosind shortcode-ul <strong class=\"nowrap\">[wppb-edit-profile]</strong>."
|
265 |
+
|
266 |
+
#: ../admin/basic-info.php:51
|
267 |
+
msgid "Extra Features"
|
268 |
+
msgstr "Opțiuni extra"
|
269 |
+
|
270 |
+
#: ../admin/basic-info.php:52
|
271 |
+
msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
|
272 |
+
msgstr "Opțiuni care oferă mai mult control asupra utilizatorilor, cresc securitatea și ajută împotriva spam-ului la înregistrare."
|
273 |
+
|
274 |
+
#: ../admin/basic-info.php:53
|
275 |
+
msgid "Enable extra features"
|
276 |
+
msgstr "Activează opțiuni extra"
|
277 |
+
|
278 |
+
#: ../admin/basic-info.php:57
|
279 |
+
msgid "Recover Password"
|
280 |
+
msgstr "Recuperează Parola"
|
281 |
+
|
282 |
+
#: ../admin/basic-info.php:58
|
283 |
+
msgid "Allow users to recover their password in the front-end using the [wppb-recover-password]."
|
284 |
+
msgstr "Permite utilizatorilor să recupereze parola în front-end utilizând [wppb-recover-password]."
|
285 |
+
|
286 |
+
#: ../admin/basic-info.php:61
|
287 |
+
msgid "Admin Approval (*)"
|
288 |
+
msgstr "Aprobare Administrator (*)"
|
289 |
+
|
290 |
+
#: ../admin/basic-info.php:62
|
291 |
+
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
|
292 |
+
msgstr "Tu decizi cine este utilizatorul website-ului tău. Primești notificări prin e-mail sau aprobi mai mulţi utilizatori simultan din interfața WordPress."
|
293 |
+
|
294 |
+
#: ../admin/basic-info.php:65
|
295 |
+
msgid "Email Confirmation"
|
296 |
+
msgstr "Confirmare E-mail"
|
297 |
+
|
298 |
+
#: ../admin/basic-info.php:66
|
299 |
+
msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
|
300 |
+
msgstr "Asigură-te că utilizatorii se înregistrează cu adrese de e-mail autentice. La înregistrare utilizatorii vor primi o notificare de confirmare a adresei de e-mail."
|
301 |
+
|
302 |
+
#: ../admin/basic-info.php:69
|
303 |
+
msgid "Minimum Password Length and Strength Meter"
|
304 |
+
msgstr "Indicator al lungimii și complexității parolei"
|
305 |
+
|
306 |
+
#: ../admin/basic-info.php:70
|
307 |
+
msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
|
308 |
+
msgstr "Elimină cu totul parolele vulnerabile, prin stabilirea unei lungimi minime și aplicarea unei anumite complexități a parolei."
|
309 |
+
|
310 |
+
#: ../admin/basic-info.php:73
|
311 |
+
msgid "Login with Email or Username"
|
312 |
+
msgstr "Logare cu E-mail sau Nume Utilizator"
|
313 |
+
|
314 |
+
#: ../admin/basic-info.php:74
|
315 |
+
msgid "Allow users to log in with their email or username when accessing your site."
|
316 |
+
msgstr "Permite utilizatorilor sa se logheze cu E-mail-ul sau Numele Utilizatorului atunci când accesează site-ul tău"
|
317 |
+
|
318 |
+
#: ../admin/basic-info.php:87
|
319 |
+
msgid "Customize Your Forms The Way You Want (*)"
|
320 |
+
msgstr "Personalizează formularele asa cum dorești (*)"
|
321 |
+
|
322 |
+
#: ../admin/basic-info.php:88
|
323 |
+
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
324 |
+
msgstr "Folosind câmpurile extra din profil poți sa creezi exact formularul de înregistrare de care are nevoie proiectul tău. "
|
325 |
+
|
326 |
+
#: ../admin/basic-info.php:90
|
327 |
+
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
328 |
+
msgstr "Câmpurile extra din profil sunt disponibile în versiunile Hobbyist sau PRO"
|
329 |
+
|
330 |
+
#: ../admin/basic-info.php:92
|
331 |
+
msgid "Get started with extra fields"
|
332 |
+
msgstr "Începe cu câmpuri suplimentare "
|
333 |
+
|
334 |
+
#: ../admin/basic-info.php:95
|
335 |
+
msgid "Avatar Upload"
|
336 |
+
msgstr "Încarcă Avatar"
|
337 |
+
|
338 |
+
#: ../admin/basic-info.php:96
|
339 |
+
msgid "Generic Uploads"
|
340 |
+
msgstr "Încărcări generale"
|
341 |
+
|
342 |
+
#: ../admin/basic-info.php:97
|
343 |
+
msgid "Agree To Terms Checkbox"
|
344 |
+
msgstr "Sunt de acord cu termenii și condițiile Checkbox"
|
345 |
+
|
346 |
+
#: ../admin/basic-info.php:98
|
347 |
+
msgid "Datepicker"
|
348 |
+
msgstr "Câmp Dată"
|
349 |
+
|
350 |
+
#: ../admin/basic-info.php:99
|
351 |
+
msgid "reCAPTCHA"
|
352 |
+
msgstr "reCAPTCHA"
|
353 |
+
|
354 |
+
#: ../admin/basic-info.php:100
|
355 |
+
msgid "Country Select"
|
356 |
+
msgstr "Selectează țara"
|
357 |
+
|
358 |
+
#: ../admin/basic-info.php:101
|
359 |
+
msgid "Timezone Select"
|
360 |
+
msgstr "Selectează fusul orar"
|
361 |
+
|
362 |
+
#: ../admin/basic-info.php:102
|
363 |
+
msgid "Input / Hidden Input"
|
364 |
+
msgstr "Adăugare / Ascunde adăugare"
|
365 |
+
|
366 |
+
#: ../admin/basic-info.php:103
|
367 |
+
msgid "Checkbox"
|
368 |
+
msgstr "Checkbox"
|
369 |
+
|
370 |
+
#: ../admin/basic-info.php:104
|
371 |
+
msgid "Select"
|
372 |
+
msgstr "Selectează"
|
373 |
+
|
374 |
+
#: ../admin/basic-info.php:105
|
375 |
+
msgid "Radio Buttons"
|
376 |
+
msgstr "Butoane radio"
|
377 |
+
|
378 |
+
#: ../admin/basic-info.php:106
|
379 |
+
msgid "Textarea"
|
380 |
+
msgstr "Textarea"
|
381 |
+
|
382 |
+
#: ../admin/basic-info.php:115
|
383 |
+
msgid "Powerful Modules (**)"
|
384 |
+
msgstr "Module puternice (**)"
|
385 |
+
|
386 |
+
#: ../admin/basic-info.php:116
|
387 |
+
msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
|
388 |
+
msgstr "Tot ce ai nevoie pentru a gestiona utilizatorii este cel mai probabil disponibil folosind Modulele Pro."
|
389 |
+
|
390 |
+
#: ../admin/basic-info.php:118
|
391 |
+
msgid "Enable your modules"
|
392 |
+
msgstr "Activează modulele"
|
393 |
+
|
394 |
+
#: ../admin/basic-info.php:121
|
395 |
+
msgid "Find out more about PRO Modules"
|
396 |
+
msgstr "Află mai multe despre Modulele PRO"
|
397 |
+
|
398 |
+
#: ../admin/basic-info.php:126 ../modules/modules.php:111
|
399 |
+
#: ../modules/user-listing/userlisting.php:11
|
400 |
+
#: ../modules/user-listing/userlisting.php:12
|
401 |
+
#: ../modules/user-listing/userlisting.php:17
|
402 |
+
#: ../modules/user-listing/userlisting.php:23
|
403 |
+
msgid "User Listing"
|
404 |
+
msgstr "Listă utilizatori "
|
405 |
+
|
406 |
+
#: ../admin/basic-info.php:128
|
407 |
+
msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
|
408 |
+
msgstr "Formulare ușor de editat atât pentru afișarea utilizatorilor site-ului tău, cât și pentru a crea pagini individuale pentru utilizatori. Bazat pe shortcode, oferă opțiuni multiple pentru personalizarea modului de afișare."
|
409 |
+
|
410 |
+
#: ../admin/basic-info.php:130
|
411 |
+
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: <strong class=\"nowrap\">[wppb-list-users]</strong>."
|
412 |
+
msgstr "Pentru a crea o pagină ce conține utilizatorii înregistrați pe site-ul/blog-ul curent, inserează următorul shortcode în orice pagina pe care o alegi: <strong class=\"nowrap\">[wppb-list-users]</strong>."
|
413 |
+
|
414 |
+
#: ../admin/basic-info.php:134
|
415 |
+
msgid "Email Customizer"
|
416 |
+
msgstr "Personalizare e-mail"
|
417 |
+
|
418 |
+
#: ../admin/basic-info.php:135
|
419 |
+
msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
|
420 |
+
msgstr "Personalizează toate e-mail-urile trimise către utilizatori și administratori. La înregistrare, confirmare e-mail, aprobare / refuz aprobare."
|
421 |
+
|
422 |
+
#: ../admin/basic-info.php:138
|
423 |
+
#: ../modules/custom-redirects/custom-redirects.php:29
|
424 |
+
#: ../modules/modules.php:32 ../modules/modules.php:132
|
425 |
+
msgid "Custom Redirects"
|
426 |
+
msgstr "Redirecționări personalizate "
|
427 |
+
|
428 |
+
#: ../admin/basic-info.php:139
|
429 |
+
msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
|
430 |
+
msgstr "Păstrați utilizatorii în afara dashboard-ului WordPress, redirecționându-i după logare sau înregistrare către prima pagină, iar în felul acesta totul este la câteva click-uri distanță. "
|
431 |
+
|
432 |
+
#: ../admin/basic-info.php:144 ../modules/modules.php:97
|
433 |
+
msgid "Multiple Registration Forms"
|
434 |
+
msgstr "Formulare multiple de înregistrare "
|
435 |
+
|
436 |
+
#: ../admin/basic-info.php:145
|
437 |
+
msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
|
438 |
+
msgstr "Configurează formulare de înregistrare multiple, cu câmpuri diferite pentru anumite tipuri de roluri. Surprinde informații diferite pentru tipuri diferite de utilizatori."
|
439 |
+
|
440 |
+
#: ../admin/basic-info.php:148 ../modules/modules.php:104
|
441 |
+
msgid "Multiple Edit-profile Forms"
|
442 |
+
msgstr "Formulare editare profil multiple"
|
443 |
+
|
444 |
+
#: ../admin/basic-info.php:149
|
445 |
+
msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
|
446 |
+
msgstr "Permite rolurilor diferite de utilizatori să editeze informațiile lor specifice. Configurează formularele de editare profil multiple cu câmpuri diferite pentru anumite roluri de utilizator."
|
447 |
+
|
448 |
+
#: ../admin/basic-info.php:161
|
449 |
+
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
450 |
+
msgstr "* disponibil doar pentru versiunile %1$sHobbyist și Pro %2$s"
|
451 |
+
|
452 |
+
#: ../admin/basic-info.php:162
|
453 |
+
msgid "** only available in the %1$sPro version%2$s."
|
454 |
+
msgstr "** disponibil doar în versiunea %1$sPro %2$s."
|
455 |
+
|
456 |
+
#: ../admin/general-settings.php:42
|
457 |
+
msgid "Load Profile Builder's own CSS file in the front-end:"
|
458 |
+
msgstr "Încarcă fișierul CSS al Profile Builder în Front-end:"
|
459 |
+
|
460 |
+
#: ../admin/general-settings.php:45 ../admin/general-settings.php:60
|
461 |
+
#: ../admin/general-settings.php:114
|
462 |
+
#: ../modules/multiple-forms/register-forms.php:229
|
463 |
+
#: ../modules/multiple-forms/register-forms.php:230
|
464 |
+
#: ../modules/user-listing/userlisting.php:1165
|
465 |
+
msgid "Yes"
|
466 |
+
msgstr "Da"
|
467 |
+
|
468 |
+
#: ../admin/general-settings.php:47
|
469 |
+
msgid "You can find the default file here: %1$s"
|
470 |
+
msgstr "Poți găsi fișierul inițial aici: %1$s"
|
471 |
+
|
472 |
+
#: ../admin/general-settings.php:56
|
473 |
+
msgid "\"Email Confirmation\" Activated:"
|
474 |
+
msgstr "\"Confirmare E-mail\" Activată"
|
475 |
+
|
476 |
+
#: ../admin/general-settings.php:61 ../admin/general-settings.php:115
|
477 |
+
#: ../modules/multiple-forms/register-forms.php:229
|
478 |
+
#: ../modules/multiple-forms/register-forms.php:230
|
479 |
+
msgid "No"
|
480 |
+
msgstr "Nu"
|
481 |
+
|
482 |
+
#: ../admin/general-settings.php:64
|
483 |
+
msgid "On single-site installations this works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: ../admin/general-settings.php:65
|
487 |
+
msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
|
488 |
+
msgstr "Opțiunea \"Confirmare E-mail\" este activă (opțiune predefinită) pentru instalările WPMU."
|
489 |
+
|
490 |
+
#: ../admin/general-settings.php:67
|
491 |
+
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
492 |
+
msgstr "Poți găsi o listă cu adresele de e-mail neconfirmate %1$sUsers > All Users > Email Confirmation%2$s."
|
493 |
+
|
494 |
+
#: ../admin/general-settings.php:79
|
495 |
+
msgid "\"Email Confirmation\" Landing Page:"
|
496 |
+
msgstr "Pagina de destinație \"Confirmare E-mail\": "
|
497 |
+
|
498 |
+
#: ../admin/general-settings.php:84
|
499 |
+
msgid "Existing Pages"
|
500 |
+
msgstr "Pagini existente"
|
501 |
+
|
502 |
+
#: ../admin/general-settings.php:99
|
503 |
+
msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
|
504 |
+
msgstr "Specifică pagina către care utilizatorii vor fi direcționați atunci când confirmă adresa de e-mail. Aceasta pagină poate să difere de pagina/paginile de înregistrare și poate fi schimbată oricând. În lipsa unei selecții, o pagină simplă de confirmare va fi afișată pentru utilizator. "
|
505 |
+
|
506 |
+
#: ../admin/general-settings.php:110
|
507 |
+
msgid "\"Admin Approval\" Activated:"
|
508 |
+
msgstr "\"Aprobare Administrator\" Activată"
|
509 |
+
|
510 |
+
#: ../admin/general-settings.php:118
|
511 |
+
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
512 |
+
msgstr "Poți găsi o lista a utilizatorilor la %1$sUsers > All Users > Admin Approval%2$s."
|
513 |
+
|
514 |
+
#: ../admin/general-settings.php:130
|
515 |
+
msgid "\"Admin Approval\" Feature:"
|
516 |
+
msgstr "Opțiune \"Aprobare Administrator\":"
|
517 |
+
|
518 |
+
#: ../admin/general-settings.php:133
|
519 |
+
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
|
520 |
+
msgstr "Tu decizi cine este utilizatorul website-ului tău. Primești notificări prin e-mail sau aprobi mai mulţi utilizatori simultan din interfața WordPress. Activează opțiunea \"Aprobare Administrator\" prin a trece la versiunile %1$sHobbyist sau PRO %2$s."
|
521 |
+
|
522 |
+
#: ../admin/general-settings.php:140
|
523 |
+
msgid "Allow Users to Log in With:"
|
524 |
+
msgstr "Permite utilizatorilor sa se logheze cu:"
|
525 |
+
|
526 |
+
#: ../admin/general-settings.php:144 ../admin/manage-fields.php:133
|
527 |
+
#: ../features/admin-approval/class-admin-approval.php:177
|
528 |
+
#: ../features/email-confirmation/class-email-confirmation.php:153
|
529 |
+
#: ../modules/email-customizer/email-customizer.php:28
|
530 |
+
#: ../modules/user-listing/userlisting.php:94
|
531 |
+
#: ../modules/user-listing/userlisting.php:522
|
532 |
+
#: ../modules/user-listing/userlisting.php:1122
|
533 |
+
msgid "Username"
|
534 |
+
msgstr "Nume Utilizator"
|
535 |
+
|
536 |
+
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
537 |
+
#: ../modules/email-customizer/email-customizer.php:29
|
538 |
+
#: ../modules/user-listing/userlisting.php:528
|
539 |
+
#: ../modules/user-listing/userlisting.php:1123
|
540 |
+
msgid "Email"
|
541 |
+
msgstr "E-mail"
|
542 |
+
|
543 |
+
#: ../admin/general-settings.php:152
|
544 |
+
msgid "Minimum Password Length:"
|
545 |
+
msgstr "Lungime minimă a parolei"
|
546 |
+
|
547 |
+
#: ../admin/general-settings.php:157
|
548 |
+
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
549 |
+
msgstr "Introduce numărul minim de caractere pe care parola trebuie sa le conțină. A se lasă liber dacă nu exista o limita minima."
|
550 |
+
|
551 |
+
#: ../admin/general-settings.php:164
|
552 |
+
msgid "Minimum Password Strength:"
|
553 |
+
msgstr "Complexitate minimă a parolei:"
|
554 |
+
|
555 |
+
#: ../admin/general-settings.php:168
|
556 |
+
msgid "Disabled"
|
557 |
+
msgstr "Dezactivat"
|
558 |
+
|
559 |
+
#: ../admin/manage-fields.php:12
|
560 |
+
msgid "Manage Fields"
|
561 |
+
msgstr "Gestionează câmpurile"
|
562 |
+
|
563 |
+
#: ../admin/manage-fields.php:13
|
564 |
+
msgid "Manage Default and Extra Fields"
|
565 |
+
msgstr "Gestionează câmpurile predefinite și extra"
|
566 |
+
|
567 |
+
#: ../admin/manage-fields.php:74
|
568 |
+
msgid "Field Title"
|
569 |
+
msgstr "Titlu câmp"
|
570 |
+
|
571 |
+
#: ../admin/manage-fields.php:74
|
572 |
+
msgid "Title of the field"
|
573 |
+
msgstr "Titlul câmpului "
|
574 |
+
|
575 |
+
#: ../admin/manage-fields.php:75
|
576 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:243
|
577 |
+
#: ../modules/multiple-forms/register-forms.php:264
|
578 |
+
msgid "Field"
|
579 |
+
msgstr "Câmp "
|
580 |
+
|
581 |
+
#: ../admin/manage-fields.php:76
|
582 |
+
msgid "Meta-name"
|
583 |
+
msgstr "Meta-name"
|
584 |
+
|
585 |
+
#: ../admin/manage-fields.php:76
|
586 |
+
msgid "Use this in conjuction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be uniqe)<br/>Changing this might take long in case of a very big user-count"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: ../admin/manage-fields.php:77
|
590 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:244
|
591 |
+
#: ../modules/multiple-forms/register-forms.php:265
|
592 |
+
msgid "ID"
|
593 |
+
msgstr "ID"
|
594 |
+
|
595 |
+
#: ../admin/manage-fields.php:77
|
596 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:244
|
597 |
+
#: ../modules/multiple-forms/register-forms.php:265
|
598 |
+
msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
|
599 |
+
msgstr "Un ID unic, auto-generat pentru exact acest câmp <br/> Poți folosi acest lucru coroborat cu filtrele, pentru a viza acest element dacă e nevoie <br/> Nu poate fi editat"
|
600 |
+
|
601 |
+
#: ../admin/manage-fields.php:78
|
602 |
+
msgid "Description"
|
603 |
+
msgstr "Descriere"
|
604 |
+
|
605 |
+
#: ../admin/manage-fields.php:78
|
606 |
+
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
607 |
+
msgstr "Introduce o descriere (detaliată) a opțiunii pentru a fi citită de către utilizatorii finali <br/> Opțional "
|
608 |
+
|
609 |
+
#: ../admin/manage-fields.php:79
|
610 |
+
msgid "Row Count"
|
611 |
+
msgstr "Numărătoare rânduri"
|
612 |
+
|
613 |
+
#: ../admin/manage-fields.php:79
|
614 |
+
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
615 |
+
msgstr "Specifica numărul de rânduri pentru 'Textarea' field<br/> Dacă nu se specifică, predefinit este 5"
|
616 |
+
|
617 |
+
#: ../admin/manage-fields.php:80
|
618 |
+
msgid "Allowed Image Extensions"
|
619 |
+
msgstr "Extensii imagini permise "
|
620 |
+
|
621 |
+
#: ../admin/manage-fields.php:80
|
622 |
+
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing image extensions (.*)"
|
623 |
+
msgstr "Specifică extensia/extensiile pe care vrei să le limitezi la încărcare <br/> Exemplu .ext1,.ext2,.ext3<br/> Dacă nu se specifică, se aplică setările predefinite pentru toate extensiile imaginilor existente (.*)"
|
624 |
+
|
625 |
+
#: ../admin/manage-fields.php:81
|
626 |
+
msgid "Allowed Upload Extensions"
|
627 |
+
msgstr "Încărcare extensii permise"
|
628 |
+
|
629 |
+
#: ../admin/manage-fields.php:81
|
630 |
+
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all existing extensions (.*)"
|
631 |
+
msgstr "Specifică extensia/extensiile pe care vrei să le limitezi la încărcare <br/> Exemplu: .ext1,.ext2,.ext3<br/> Dacă nu se specifică, se aplică setările predefinite pentru toate extensiile existente (.*)"
|
632 |
+
|
633 |
+
#: ../admin/manage-fields.php:82
|
634 |
+
msgid "Avatar Size"
|
635 |
+
msgstr "Dimensiune Avatar"
|
636 |
+
|
637 |
+
#: ../admin/manage-fields.php:82
|
638 |
+
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
639 |
+
msgstr "Introduce o valoare (intre 20 și 200) pentru a stabili dimensiunea 'Avatar'<br/> Dacă nu se specifică, predefinit este 100"
|
640 |
+
|
641 |
+
#: ../admin/manage-fields.php:83
|
642 |
+
msgid "Date-format"
|
643 |
+
msgstr "Format dată"
|
644 |
+
|
645 |
+
#: ../admin/manage-fields.php:83
|
646 |
+
msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not specified, defaults to mm/dd/yy"
|
647 |
+
msgstr "Specifică formatul datei când folosești Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/> Dacă nu se specifică, predefinit este mm/dd/yy"
|
648 |
+
|
649 |
+
#: ../admin/manage-fields.php:84
|
650 |
+
msgid "Terms of Agreement"
|
651 |
+
msgstr "Termenii acordului"
|
652 |
+
|
653 |
+
#: ../admin/manage-fields.php:84
|
654 |
+
msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>"
|
655 |
+
msgstr "Introduce o descriere detaliată a termenilor acordului pentru a fi citită de utilizator. <br/> Link-urile pot fi introduse prin folosirea sintaxei HTML standard: <a href=\"custom_url\">custom_text</a>"
|
656 |
+
|
657 |
+
#: ../admin/manage-fields.php:85
|
658 |
+
msgid "Options"
|
659 |
+
msgstr "Opțiuni"
|
660 |
+
|
661 |
+
#: ../admin/manage-fields.php:86
|
662 |
+
msgid "Labels"
|
663 |
+
msgstr "Etichete"
|
664 |
+
|
665 |
+
#: ../admin/manage-fields.php:86
|
666 |
+
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
667 |
+
msgstr "Introduceți o listă de etichete separate prin virgulă <br/> Vizibilă pentru utilizator"
|
668 |
+
|
669 |
+
#: ../admin/manage-fields.php:87
|
670 |
+
msgid "Public Key"
|
671 |
+
msgstr "Cheie publică"
|
672 |
+
|
673 |
+
#: ../admin/manage-fields.php:87
|
674 |
+
msgid "The public key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
675 |
+
msgstr "Cheia publică de la Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
676 |
+
|
677 |
+
#: ../admin/manage-fields.php:88
|
678 |
+
msgid "Private Key"
|
679 |
+
msgstr "Cheie privată"
|
680 |
+
|
681 |
+
#: ../admin/manage-fields.php:88
|
682 |
+
msgid "The private key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
683 |
+
msgstr "Cheia privată de la Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
684 |
+
|
685 |
+
#: ../admin/manage-fields.php:89
|
686 |
+
msgid "Default Value"
|
687 |
+
msgstr "Valoare predefinită"
|
688 |
+
|
689 |
+
#: ../admin/manage-fields.php:89
|
690 |
+
msgid "Default value of the field"
|
691 |
+
msgstr "Valoarea predefinită a câmpului "
|
692 |
+
|
693 |
+
#: ../admin/manage-fields.php:90
|
694 |
+
msgid "Default Option"
|
695 |
+
msgstr "Opțiune predefinită"
|
696 |
+
|
697 |
+
#: ../admin/manage-fields.php:90
|
698 |
+
msgid "Specify the option which should be selected by default"
|
699 |
+
msgstr "Specifică opțiunea care ar trebui să fie selectată în setările predefinite"
|
700 |
+
|
701 |
+
#: ../admin/manage-fields.php:91
|
702 |
+
msgid "Default Option(s)"
|
703 |
+
msgstr "Opțiune/opțiuni predefinite"
|
704 |
+
|
705 |
+
#: ../admin/manage-fields.php:91
|
706 |
+
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
707 |
+
msgstr "Specifică opțiunea care ar trebui să fie bifată în setările predefinite <br/> Dacă sunt valori multiple, separă-le cu \",\" (virgula)"
|
708 |
+
|
709 |
+
#: ../admin/manage-fields.php:92
|
710 |
+
msgid "Default Content"
|
711 |
+
msgstr "Conținut predefinit"
|
712 |
+
|
713 |
+
#: ../admin/manage-fields.php:92
|
714 |
+
msgid "Default value of the textarea"
|
715 |
+
msgstr "Valoarea predefinită pentru textarea"
|
716 |
+
|
717 |
+
#: ../admin/manage-fields.php:93
|
718 |
+
msgid "Required"
|
719 |
+
msgstr "Necesar"
|
720 |
+
|
721 |
+
#: ../admin/manage-fields.php:93
|
722 |
+
msgid "Whether the field is required or not"
|
723 |
+
msgstr "Dacă un câmp este necesar sau nu"
|
724 |
+
|
725 |
+
#: ../admin/manage-fields.php:94
|
726 |
+
msgid "Overwrite Existing"
|
727 |
+
msgstr "Suprascrie ceea ce există"
|
728 |
+
|
729 |
+
#: ../admin/manage-fields.php:94
|
730 |
+
msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
|
731 |
+
msgstr "Selectând \"Da\" se va adăuga câmpul la listă, dar va suprascrie orice alt câmp din baza de date care are același meta-name <br/> Folosiți acest lucru pe propria răspundere "
|
732 |
+
|
733 |
+
#: ../admin/manage-fields.php:100
|
734 |
+
msgid "Field Properties"
|
735 |
+
msgstr "Proprietățile câmpului "
|
736 |
+
|
737 |
+
#: ../admin/manage-fields.php:113
|
738 |
+
msgid "Registration & Edit Profile"
|
739 |
+
msgstr "Înregistrare & editare profil"
|
740 |
+
|
741 |
+
#: ../admin/manage-fields.php:132
|
742 |
+
msgid "Name"
|
743 |
+
msgstr "Nume"
|
744 |
+
|
745 |
+
#: ../admin/manage-fields.php:133
|
746 |
+
msgid "Usernames cannot be changed."
|
747 |
+
msgstr "Numele de utilizator nu poate fi schimbat"
|
748 |
+
|
749 |
+
#: ../admin/manage-fields.php:134
|
750 |
+
msgid "First Name"
|
751 |
+
msgstr "Prenume"
|
752 |
+
|
753 |
+
#: ../admin/manage-fields.php:135
|
754 |
+
msgid "Last Name"
|
755 |
+
msgstr "Nume"
|
756 |
+
|
757 |
+
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:561
|
758 |
+
msgid "Nickname"
|
759 |
+
msgstr "Poreclă"
|
760 |
+
|
761 |
+
#: ../admin/manage-fields.php:137
|
762 |
+
msgid "Display name publicly as"
|
763 |
+
msgstr "Nume public afișat ca:"
|
764 |
+
|
765 |
+
#: ../admin/manage-fields.php:138
|
766 |
+
msgid "Contact Info"
|
767 |
+
msgstr "Date de contact"
|
768 |
+
|
769 |
+
#: ../admin/manage-fields.php:139
|
770 |
+
#: ../features/admin-approval/class-admin-approval.php:180
|
771 |
+
#: ../features/email-confirmation/class-email-confirmation.php:154
|
772 |
+
#: ../modules/user-listing/userlisting.php:100
|
773 |
+
msgid "E-mail"
|
774 |
+
msgstr "E-mail"
|
775 |
+
|
776 |
+
#: ../admin/manage-fields.php:140
|
777 |
+
#: ../modules/email-customizer/email-customizer.php:31
|
778 |
+
#: ../modules/user-listing/userlisting.php:103
|
779 |
+
#: ../modules/user-listing/userlisting.php:543
|
780 |
+
#: ../modules/user-listing/userlisting.php:1124
|
781 |
+
msgid "Website"
|
782 |
+
msgstr "Website"
|
783 |
+
|
784 |
+
#: ../admin/manage-fields.php:144
|
785 |
+
msgid "AIM"
|
786 |
+
msgstr "AIM"
|
787 |
+
|
788 |
+
#: ../admin/manage-fields.php:145
|
789 |
+
msgid "Yahoo IM"
|
790 |
+
msgstr "Yahoo IM"
|
791 |
+
|
792 |
+
#: ../admin/manage-fields.php:146
|
793 |
+
msgid "Jabber / Google Talk"
|
794 |
+
msgstr "Jabber / Google Talk"
|
795 |
+
|
796 |
+
#: ../admin/manage-fields.php:149
|
797 |
+
msgid "About Yourself"
|
798 |
+
msgstr "Despre tine"
|
799 |
+
|
800 |
+
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
801 |
+
#: ../modules/user-listing/userlisting.php:546
|
802 |
+
#: ../modules/user-listing/userlisting.php:1125
|
803 |
+
msgid "Biographical Info"
|
804 |
+
msgstr "Informații biografice"
|
805 |
+
|
806 |
+
#: ../admin/manage-fields.php:150
|
807 |
+
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
808 |
+
msgstr "Împărtășește câteva informații biografice care să completeze profilul tău. Acestea pot fi afișate public."
|
809 |
+
|
810 |
+
#: ../admin/manage-fields.php:151 ../front-end/recover.php:75
|
811 |
+
#: ../modules/email-customizer/email-customizer.php:30
|
812 |
+
msgid "Password"
|
813 |
+
msgstr "Parola "
|
814 |
+
|
815 |
+
#: ../admin/manage-fields.php:151
|
816 |
+
msgid "Type your password."
|
817 |
+
msgstr "Tastează parola"
|
818 |
+
|
819 |
+
#: ../admin/manage-fields.php:152 ../front-end/recover.php:80
|
820 |
+
msgid "Repeat Password"
|
821 |
+
msgstr "Repetă parola"
|
822 |
+
|
823 |
+
#: ../admin/manage-fields.php:152
|
824 |
+
msgid "Type your password again. "
|
825 |
+
msgstr "Tastează parola din nou"
|
826 |
+
|
827 |
+
#: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
|
828 |
+
msgid "You must select a field\n"
|
829 |
+
msgstr "Trebuie sa selectezi un câmp \n"
|
830 |
+
|
831 |
+
#: ../admin/manage-fields.php:318
|
832 |
+
msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
|
833 |
+
msgstr "Selectează un tip diferit de câmp fiindcă cel selectat există deja în formular (trebuie sa fie unic)\n"
|
834 |
+
|
835 |
+
#: ../admin/manage-fields.php:329
|
836 |
+
msgid "The entered avatar size is not between 20 and 200\n"
|
837 |
+
msgstr ""
|
838 |
+
"Mărimea introdusă a avatarului nu este între 20 şi 200\n"
|
839 |
+
"\n"
|
840 |
+
"\n"
|
841 |
+
|
842 |
+
#: ../admin/manage-fields.php:332
|
843 |
+
msgid "The entered avatar size is not numerical\n"
|
844 |
+
msgstr "Mărimea introdusă a avatarului nu este în formă numerică\n"
|
845 |
+
|
846 |
+
#: ../admin/manage-fields.php:340
|
847 |
+
msgid "The entered row number is not numerical\n"
|
848 |
+
msgstr "Numărul rândului introdus nu este în formă numerică\n"
|
849 |
+
|
850 |
+
#: ../admin/manage-fields.php:343
|
851 |
+
msgid "You must enter a value for the row number\n"
|
852 |
+
msgstr "Trebuie să introduci o valoare pentru numărul rândului\n"
|
853 |
+
|
854 |
+
#: ../admin/manage-fields.php:351
|
855 |
+
msgid "You must enter the public key\n"
|
856 |
+
msgstr "Trebuie să introduci cheia publică\n"
|
857 |
+
|
858 |
+
#: ../admin/manage-fields.php:353
|
859 |
+
msgid "You must enter the private key\n"
|
860 |
+
msgstr "Trebuie să introduci cheia privată\n"
|
861 |
+
|
862 |
+
#: ../admin/manage-fields.php:361
|
863 |
+
msgid "The entered value for the Datepicker is not a valid date-format\n"
|
864 |
+
msgstr "Valoarea introdusă pentru Datepicker nu este în format dată valid\n"
|
865 |
+
|
866 |
+
#: ../admin/manage-fields.php:364
|
867 |
+
msgid "You must enter a value for the date-format\n"
|
868 |
+
msgstr "Trebuie să introduci o valoare pentru formatul dată\n"
|
869 |
+
|
870 |
+
#: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
|
871 |
+
#: ../admin/manage-fields.php:410
|
872 |
+
msgid "That meta-name is already in use\n"
|
873 |
+
msgstr "Acest meta-name este deja în uz\n"
|
874 |
+
|
875 |
+
#: ../admin/manage-fields.php:432
|
876 |
+
msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
|
877 |
+
msgstr "Următoarele opțiuni nu coincid cu cele din lista de opțiuni: %s\n"
|
878 |
+
|
879 |
+
#: ../admin/manage-fields.php:436
|
880 |
+
msgid "The following option did not coincide with the ones in the options list: %s\n"
|
881 |
+
msgstr "Următoarea opțiune nu coincide cu cele din lista de opțiuni: %s\n"
|
882 |
+
|
883 |
+
#: ../admin/manage-fields.php:451
|
884 |
+
msgid "That field is already added in this form\n"
|
885 |
+
msgstr "Câmpul este deja adăugat în acest formular\n"
|
886 |
+
|
887 |
+
#: ../admin/manage-fields.php:500
|
888 |
+
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
889 |
+
msgstr "<pre>Titlu</pre><pre>Tip</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Necesar</pre>"
|
890 |
+
|
891 |
+
#: ../admin/manage-fields.php:500
|
892 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
893 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
894 |
+
#: ../features/functions.php:593 ../features/functions.php:600
|
895 |
+
#: ../modules/multiple-forms/multiple-forms.php:407
|
896 |
+
msgid "Edit"
|
897 |
+
msgstr "Editează"
|
898 |
+
|
899 |
+
#: ../admin/manage-fields.php:500
|
900 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
901 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:502
|
902 |
+
#: ../features/admin-approval/class-admin-approval.php:124
|
903 |
+
#: ../features/admin-approval/class-admin-approval.php:235
|
904 |
+
#: ../features/email-confirmation/class-email-confirmation.php:106
|
905 |
+
#: ../features/email-confirmation/class-email-confirmation.php:202
|
906 |
+
#: ../features/functions.php:586 ../features/functions.php:600
|
907 |
+
msgid "Delete"
|
908 |
+
msgstr "Șterge "
|
909 |
+
|
910 |
+
#: ../admin/manage-fields.php:515
|
911 |
+
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
912 |
+
msgstr "Folosește aceste shortcode-uri pe paginile în care vrei ca formularele să fie afișate:"
|
913 |
+
|
914 |
+
#: ../admin/manage-fields.php:521
|
915 |
+
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Addon."
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: ../admin/register-version.php:11
|
919 |
+
msgid "Register Your Version"
|
920 |
+
msgstr "Înregistrează versiunea proprie"
|
921 |
+
|
922 |
+
#: ../admin/register-version.php:11
|
923 |
+
msgid "Register Version"
|
924 |
+
msgstr "Înregistrează versiunea "
|
925 |
+
|
926 |
+
#: ../admin/register-version.php:58
|
927 |
+
msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
|
928 |
+
msgstr "Dacă înregistrezi această versiune a Profile Builder, vei primi informații legate de upgrade-uri, patch-uri și suport tehnic."
|
929 |
+
|
930 |
+
#: ../admin/register-version.php:60
|
931 |
+
msgid " Serial Number:"
|
932 |
+
msgstr "Număr serie:"
|
933 |
+
|
934 |
+
#: ../admin/register-version.php:65
|
935 |
+
msgid "The serial number was successfully validated!"
|
936 |
+
msgstr "Numărul seriei a fost validat cu succes!"
|
937 |
+
|
938 |
+
#: ../admin/register-version.php:67
|
939 |
+
msgid "The serial number entered couldn't be validated!"
|
940 |
+
msgstr "Numărul seriei nu a putut fi validat!"
|
941 |
+
|
942 |
+
#: ../admin/register-version.php:69
|
943 |
+
msgid "The serial number couldn't be validated because it expired!"
|
944 |
+
msgstr "Numărul seriei nu a putut fi validat pentru că a expirat!"
|
945 |
+
|
946 |
+
#: ../admin/register-version.php:71
|
947 |
+
msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
|
948 |
+
msgstr "Numărul seriei nu a putut fi validat pentru că timpul pentru procesul de validare a expirat. Acest lucru e posibil să se fi întâmplat din cauză că serverul nu funcționează momentan. Te rog încearcă din nou mai târziu! "
|
949 |
+
|
950 |
+
#: ../admin/register-version.php:73
|
951 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
952 |
+
msgstr "(ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
953 |
+
|
954 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
955 |
+
#: ../features/functions.php:600
|
956 |
+
msgid "Content"
|
957 |
+
msgstr "Conținut "
|
958 |
+
|
959 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
960 |
+
msgid "Edit this item"
|
961 |
+
msgstr "Editează acest element"
|
962 |
+
|
963 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:502
|
964 |
+
msgid "Delete this item"
|
965 |
+
msgstr "Șterge acest element"
|
966 |
+
|
967 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:643
|
968 |
+
msgid "Please enter a value for the required field "
|
969 |
+
msgstr "Te rugăm să introduci o valoare pentru câmpul necesar"
|
970 |
+
|
971 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
|
972 |
+
msgid "Select File"
|
973 |
+
msgstr "Selectează fișierul "
|
974 |
+
|
975 |
+
#: ../assets/lib/wck-api/fields/upload.php:31
|
976 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
|
977 |
+
msgid "Remove"
|
978 |
+
msgstr "Șterge "
|
979 |
+
|
980 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
|
981 |
+
msgid "Syncronize WCK"
|
982 |
+
msgstr "Sincronizează WCK"
|
983 |
+
|
984 |
+
#: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
|
985 |
+
msgid "Syncronize WCK Translation"
|
986 |
+
msgstr "Sincronizează traducerea WCK"
|
987 |
+
|
988 |
+
#: ../assets/lib/wck-api/fields/nested repeater.php:8
|
989 |
+
msgid "You can add the information for the %s after you add a entry"
|
990 |
+
msgstr "Poți să adaugi informația pentru %s după ce adaugi o intrare "
|
991 |
+
|
992 |
+
#: ../assets/lib/wck-api/fields/upload.php:48
|
993 |
+
msgid "Upload "
|
994 |
+
msgstr "Încarcă "
|
995 |
+
|
996 |
+
#: ../features/class-list-table.php:184
|
997 |
+
msgid "No items found."
|
998 |
+
msgstr "Nu a fost găsit niciun element."
|
999 |
+
|
1000 |
+
#: ../features/class-list-table.php:308
|
1001 |
+
msgid "Bulk Actions"
|
1002 |
+
msgstr "Acțiuni în masă"
|
1003 |
+
|
1004 |
+
#: ../features/class-list-table.php:318
|
1005 |
+
msgid "Apply"
|
1006 |
+
msgstr "Aplică"
|
1007 |
+
|
1008 |
+
#: ../features/class-list-table.php:402
|
1009 |
+
msgid "Show all dates"
|
1010 |
+
msgstr "Arată toate datele "
|
1011 |
+
|
1012 |
+
#: ../features/class-list-table.php:415
|
1013 |
+
msgid "%1$s %2$d"
|
1014 |
+
msgstr "%1$s %2$d"
|
1015 |
+
|
1016 |
+
#: ../features/class-list-table.php:431
|
1017 |
+
msgid "List View"
|
1018 |
+
msgstr "Vizualizare sub forma de listă "
|
1019 |
+
|
1020 |
+
#: ../features/class-list-table.php:432
|
1021 |
+
msgid "Excerpt View"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: ../features/class-list-table.php:458
|
1025 |
+
msgid "%s pending"
|
1026 |
+
msgstr "%s în așteptare"
|
1027 |
+
|
1028 |
+
#: ../features/class-list-table.php:566
|
1029 |
+
msgid "%1$s of %2$s"
|
1030 |
+
msgstr "%1$s din %2$s"
|
1031 |
+
|
1032 |
+
#: ../features/class-list-table.php:713
|
1033 |
+
msgid "Select All"
|
1034 |
+
msgstr "Selectează tot"
|
1035 |
+
|
1036 |
+
#: ../features/functions.php:193 ../features/functions.php:194
|
1037 |
+
msgid "Profile Builder"
|
1038 |
+
msgstr "Profile Builder"
|
1039 |
+
|
1040 |
+
#: ../features/functions.php:261
|
1041 |
+
msgid "The user-validation has failed - the avatar was not deleted!"
|
1042 |
+
msgstr "Validarea utilizatorului nu a fost realizată - avatarul nu a fost șters!"
|
1043 |
+
|
1044 |
+
#: ../features/functions.php:272
|
1045 |
+
msgid "The user-validation has failed - the attachment was not deleted!"
|
1046 |
+
msgstr "Validarea utilizatorului nu a fost realizată - ataşamentul nu a fost șters!"
|
1047 |
+
|
1048 |
+
#: ../features/functions.php:446
|
1049 |
+
msgid "Strength indicator"
|
1050 |
+
msgstr "Indicator complexitate"
|
1051 |
+
|
1052 |
+
#: ../features/admin-approval/admin-approval.php:7
|
1053 |
+
#: ../features/admin-approval/class-admin-approval.php:489
|
1054 |
+
msgid "Admin Approval"
|
1055 |
+
msgstr "Aprobare administrator "
|
1056 |
+
|
1057 |
+
#: ../features/admin-approval/admin-approval.php:22
|
1058 |
+
#: ../features/email-confirmation/email-confirmation.php:58
|
1059 |
+
msgid "Do you want to"
|
1060 |
+
msgstr "Vrei să"
|
1061 |
+
|
1062 |
+
#: ../features/admin-approval/admin-approval.php:45
|
1063 |
+
msgid "Your session has expired! Please refresh the page and try again"
|
1064 |
+
msgstr "Sesiunea a expirat! Te rugăm să actualizezi pagina și să încerci din nou"
|
1065 |
+
|
1066 |
+
#: ../features/admin-approval/admin-approval.php:56
|
1067 |
+
msgid "User successfully approved!"
|
1068 |
+
msgstr "Utilizator aprobat cu succes!"
|
1069 |
+
|
1070 |
+
#: ../features/admin-approval/admin-approval.php:64
|
1071 |
+
msgid "User successfully unapproved!"
|
1072 |
+
msgstr "Neaprobarea utilizatorului a avut succes!"
|
1073 |
+
|
1074 |
+
#: ../features/admin-approval/admin-approval.php:70
|
1075 |
+
msgid "User successfully deleted!"
|
1076 |
+
msgstr "Ștergerea utilizatorului a avut succes!"
|
1077 |
+
|
1078 |
+
#: ../features/admin-approval/admin-approval.php:75
|
1079 |
+
#: ../features/admin-approval/admin-approval.php:140
|
1080 |
+
#: ../features/email-confirmation/email-confirmation.php:122
|
1081 |
+
msgid "You either don't have permission for that action or there was an error!"
|
1082 |
+
msgstr "Fie nu ai permisiunea pentru această acțiune, fie a avut loc o eroare!"
|
1083 |
+
|
1084 |
+
#: ../features/admin-approval/admin-approval.php:87
|
1085 |
+
msgid "Your session has expired! Please refresh the page and try again."
|
1086 |
+
msgstr "Sesiunea a expirat! Actualizează pagina și încearcă din nou."
|
1087 |
+
|
1088 |
+
#: ../features/admin-approval/admin-approval.php:107
|
1089 |
+
msgid "Users successfully approved!"
|
1090 |
+
msgstr "Utilizatori aprobați cu succes!"
|
1091 |
+
|
1092 |
+
#: ../features/admin-approval/admin-approval.php:122
|
1093 |
+
msgid "Users successfully unapproved!"
|
1094 |
+
msgstr "Neaprobarea utilizatorilor a avut succes!"
|
1095 |
+
|
1096 |
+
#: ../features/admin-approval/admin-approval.php:135
|
1097 |
+
msgid "Users successfully deleted!"
|
1098 |
+
msgstr "Ștergerea utilizatorilor a avut succes!"
|
1099 |
+
|
1100 |
+
#: ../features/admin-approval/admin-approval.php:150
|
1101 |
+
msgid "Your account on %1$s has been approved!"
|
1102 |
+
msgstr "Contul tău pe %1$s a fost aprobat!"
|
1103 |
+
|
1104 |
+
#: ../features/admin-approval/admin-approval.php:151
|
1105 |
+
#: ../features/admin-approval/admin-approval.php:154
|
1106 |
+
msgid "approved"
|
1107 |
+
msgstr "aprobat"
|
1108 |
+
|
1109 |
+
#: ../features/admin-approval/admin-approval.php:153
|
1110 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
1111 |
+
msgstr "Un administrator tocmai a aprobat contul tău pe %1$s (%2$s)."
|
1112 |
+
|
1113 |
+
#: ../features/admin-approval/admin-approval.php:157
|
1114 |
+
msgid "Your account on %1$s has been unapproved!"
|
1115 |
+
msgstr "Contul tău pe %1$s nu a fost aprobat!"
|
1116 |
+
|
1117 |
+
#: ../features/admin-approval/admin-approval.php:158
|
1118 |
+
#: ../features/admin-approval/admin-approval.php:161
|
1119 |
+
msgid "unapproved"
|
1120 |
+
msgstr "neaprobat"
|
1121 |
+
|
1122 |
+
#: ../features/admin-approval/admin-approval.php:160
|
1123 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
1124 |
+
msgstr "Un administrator tocmai a respins cererea de aprobare pentru contul tău pe %1$s (%2$s)."
|
1125 |
+
|
1126 |
+
#: ../features/admin-approval/admin-approval.php:177
|
1127 |
+
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
1128 |
+
msgstr "<strong>EROARE</strong>: Contul tău trebuie confirmat de către un administrator înainte de logare. "
|
1129 |
+
|
1130 |
+
#: ../features/admin-approval/admin-approval.php:189
|
1131 |
+
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
1132 |
+
msgstr "Contul tău trebuie să fie confirmat de către un administrator înainte să poți folosi opțiunea \"Recuperare parolă\""
|
1133 |
+
|
1134 |
+
#: ../features/admin-approval/class-admin-approval.php:119
|
1135 |
+
msgid "View or Edit"
|
1136 |
+
msgstr "Vizualizează sau editează "
|
1137 |
+
|
1138 |
+
#: ../features/admin-approval/class-admin-approval.php:124
|
1139 |
+
msgid "delete this user?"
|
1140 |
+
msgstr "șterge acest utilizator?"
|
1141 |
+
|
1142 |
+
#: ../features/admin-approval/class-admin-approval.php:127
|
1143 |
+
msgid "unapprove this user?"
|
1144 |
+
msgstr "anulează aprobarea pentru acest utilizator?"
|
1145 |
+
|
1146 |
+
#: ../features/admin-approval/class-admin-approval.php:127
|
1147 |
+
#: ../features/admin-approval/class-admin-approval.php:234
|
1148 |
+
msgid "Unapprove"
|
1149 |
+
msgstr "anulează aprobarea "
|
1150 |
+
|
1151 |
+
#: ../features/admin-approval/class-admin-approval.php:129
|
1152 |
+
msgid "approve this user?"
|
1153 |
+
msgstr "aprobă acest utilizator?"
|
1154 |
+
|
1155 |
+
#: ../features/admin-approval/class-admin-approval.php:129
|
1156 |
+
#: ../features/admin-approval/class-admin-approval.php:233
|
1157 |
+
msgid "Approve"
|
1158 |
+
msgstr "Aprobă"
|
1159 |
+
|
1160 |
+
#: ../features/admin-approval/class-admin-approval.php:178
|
1161 |
+
#: ../modules/user-listing/userlisting.php:534
|
1162 |
+
#: ../modules/user-listing/userlisting.php:1127
|
1163 |
+
msgid "Firstname"
|
1164 |
+
msgstr "Prenume"
|
1165 |
+
|
1166 |
+
#: ../features/admin-approval/class-admin-approval.php:179
|
1167 |
+
#: ../modules/user-listing/userlisting.php:537
|
1168 |
+
#: ../modules/user-listing/userlisting.php:1128
|
1169 |
+
msgid "Lastname"
|
1170 |
+
msgstr "Nume"
|
1171 |
+
|
1172 |
+
#: ../features/admin-approval/class-admin-approval.php:181
|
1173 |
+
#: ../modules/user-listing/userlisting.php:117
|
1174 |
+
msgid "Role"
|
1175 |
+
msgstr "Rol"
|
1176 |
+
|
1177 |
+
#: ../features/admin-approval/class-admin-approval.php:182
|
1178 |
+
#: ../features/email-confirmation/class-email-confirmation.php:155
|
1179 |
+
msgid "Registered"
|
1180 |
+
msgstr "Înregistrat "
|
1181 |
+
|
1182 |
+
#: ../features/admin-approval/class-admin-approval.php:183
|
1183 |
+
msgid "User-status"
|
1184 |
+
msgstr "Status utilizator "
|
1185 |
+
|
1186 |
+
#: ../features/admin-approval/class-admin-approval.php:263
|
1187 |
+
msgid "Do you want to bulk approve the selected users?"
|
1188 |
+
msgstr "Vrei să aprobi în masă utilizatorii selectați?"
|
1189 |
+
|
1190 |
+
#: ../features/admin-approval/class-admin-approval.php:271
|
1191 |
+
msgid "Do you want to bulk unapprove the selected users?"
|
1192 |
+
msgstr "Vrei să anulezi în masă aprobările pentru utilizatorii selectați?"
|
1193 |
+
|
1194 |
+
#: ../features/admin-approval/class-admin-approval.php:277
|
1195 |
+
msgid "Do you want to bulk delete the selected users?"
|
1196 |
+
msgstr "Vrei să ștergi în masă utilizatorii selectați?"
|
1197 |
+
|
1198 |
+
#: ../features/admin-approval/class-admin-approval.php:285
|
1199 |
+
#: ../features/email-confirmation/class-email-confirmation.php:263
|
1200 |
+
msgid "Sorry, but you don't have permission to do that!"
|
1201 |
+
msgstr "Îmi pare rău, dar nu ai permisiunea de a face acest lucru!"
|
1202 |
+
|
1203 |
+
#: ../features/admin-approval/class-admin-approval.php:318
|
1204 |
+
msgid "Approved"
|
1205 |
+
msgstr "Aprobat"
|
1206 |
+
|
1207 |
+
#: ../features/admin-approval/class-admin-approval.php:320
|
1208 |
+
msgid "Unapproved"
|
1209 |
+
msgstr "Neaprobat "
|
1210 |
+
|
1211 |
+
#: ../features/admin-approval/class-admin-approval.php:492
|
1212 |
+
#: ../features/email-confirmation/class-email-confirmation.php:448
|
1213 |
+
msgid "All Users"
|
1214 |
+
msgstr "Toți utilizatorii"
|
1215 |
+
|
1216 |
+
#: ../features/email-confirmation/class-email-confirmation.php:106
|
1217 |
+
msgid "delete this user from the _signups table?"
|
1218 |
+
msgstr "ștergi acest utilizator din tabelul _signups?"
|
1219 |
+
|
1220 |
+
#: ../features/email-confirmation/class-email-confirmation.php:107
|
1221 |
+
msgid "confirm this email yourself?"
|
1222 |
+
msgstr "propria confirmare a adresei de e-mail? "
|
1223 |
+
|
1224 |
+
#: ../features/email-confirmation/class-email-confirmation.php:107
|
1225 |
+
#: ../features/email-confirmation/class-email-confirmation.php:203
|
1226 |
+
msgid "Confirm Email"
|
1227 |
+
msgstr "Confirmă e-mail"
|
1228 |
+
|
1229 |
+
#: ../features/email-confirmation/class-email-confirmation.php:108
|
1230 |
+
msgid "resend the activation link?"
|
1231 |
+
msgstr "retrimite link-ul de activare "
|
1232 |
+
|
1233 |
+
#: ../features/email-confirmation/class-email-confirmation.php:108
|
1234 |
+
#: ../features/email-confirmation/class-email-confirmation.php:204
|
1235 |
+
msgid "Resend Activation Email"
|
1236 |
+
msgstr "Retrimite e-mail-ul de activare"
|
1237 |
+
|
1238 |
+
#: ../features/email-confirmation/class-email-confirmation.php:234
|
1239 |
+
msgid "%s couldn't be deleted"
|
1240 |
+
msgstr "%s nu a putut fi șters "
|
1241 |
+
|
1242 |
+
#: ../features/email-confirmation/class-email-confirmation.php:238
|
1243 |
+
msgid "All users have been successfully deleted"
|
1244 |
+
msgstr "Toți utilizatorii au fost șterși cu succes "
|
1245 |
+
|
1246 |
+
#: ../features/email-confirmation/class-email-confirmation.php:248
|
1247 |
+
msgid "The selected users have been activated"
|
1248 |
+
msgstr "Utilizatorii selectați au fost activați "
|
1249 |
+
|
1250 |
+
#: ../features/email-confirmation/class-email-confirmation.php:259
|
1251 |
+
msgid "The selected users have had their activation emails resent"
|
1252 |
+
msgstr "E-mail-urile de activare au fost retrimise către utilizatorii selectați "
|
1253 |
+
|
1254 |
+
#: ../features/email-confirmation/class-email-confirmation.php:445
|
1255 |
+
#: ../features/email-confirmation/email-confirmation.php:47
|
1256 |
+
msgid "Users with Unconfirmed Email Address"
|
1257 |
+
msgstr "Utilizatori cu adrese de e-mail neconfirmate"
|
1258 |
+
|
1259 |
+
#: ../features/email-confirmation/email-confirmation.php:97
|
1260 |
+
msgid "There was an error performing that action!"
|
1261 |
+
msgstr "A apărut o eroare în timp ce se desfășura această acțiune!"
|
1262 |
+
|
1263 |
+
#: ../features/email-confirmation/email-confirmation.php:105
|
1264 |
+
msgid "The selected user couldn't be deleted"
|
1265 |
+
msgstr "Utilizatorul selectat nu a putut fi șters"
|
1266 |
+
|
1267 |
+
#: ../features/email-confirmation/email-confirmation.php:116
|
1268 |
+
msgid "Email notification resent to user"
|
1269 |
+
msgstr "Notificare e-mail retrimisă către utilizator"
|
1270 |
+
|
1271 |
+
#: ../features/email-confirmation/email-confirmation.php:349
|
1272 |
+
msgid "[%1$s] Activate %2$s"
|
1273 |
+
msgstr "[%1$s] Activează %2$s"
|
1274 |
+
|
1275 |
+
#: ../features/email-confirmation/email-confirmation.php:350
|
1276 |
+
msgid ""
|
1277 |
+
"To activate your user, please click the following link:\n"
|
1278 |
+
"\n"
|
1279 |
+
"%s%s%s\n"
|
1280 |
+
"\n"
|
1281 |
+
"After you activate it you will receive yet *another email* with your login."
|
1282 |
+
msgstr ""
|
1283 |
+
"Pentru a iți activa utilizatorul, te rog apasă pe link-ul următor:\n"
|
1284 |
+
"\n"
|
1285 |
+
"%s%s%s\n"
|
1286 |
+
"\n"
|
1287 |
+
"După activare vei primi *încă un e-mail\" ce va conține login-ul."
|
1288 |
+
|
1289 |
+
#: ../features/email-confirmation/email-confirmation.php:388
|
1290 |
+
#: ../front-end/register.php:68
|
1291 |
+
msgid "Could not create user!"
|
1292 |
+
msgstr "Utilizatorul nu a putut fi creat! "
|
1293 |
+
|
1294 |
+
#: ../features/email-confirmation/email-confirmation.php:391
|
1295 |
+
msgid "That username is already activated!"
|
1296 |
+
msgstr "Acest nume de utilizator este deja activat!"
|
1297 |
+
|
1298 |
+
#: ../features/email-confirmation/email-confirmation.php:420
|
1299 |
+
msgid "There was an error while trying to activate the user"
|
1300 |
+
msgstr "A apărut o eroare în timpul acțiunii de activare a utilizatorului"
|
1301 |
+
|
1302 |
+
#: ../features/email-confirmation/email-confirmation.php:458
|
1303 |
+
#: ../modules/email-customizer/admin-email-customizer.php:73
|
1304 |
+
msgid "A new subscriber has (been) registered!"
|
1305 |
+
msgstr "Un nou abonat este (a fost) înregistrat!"
|
1306 |
+
|
1307 |
+
#: ../features/email-confirmation/email-confirmation.php:461
|
1308 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
1309 |
+
msgstr "Un nou abonat pe %1$s.<br/><br/>Nume utilizator:%2$s<br/>E-mail:%3$s<br/>"
|
1310 |
+
|
1311 |
+
#: ../features/email-confirmation/email-confirmation.php:466
|
1312 |
+
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
1313 |
+
msgstr "Opțiunea \"Aprobare administrator\" a fost activată în momentul înregistrării, astfel vă rog amintiți-vă că este nevoie de aprobarea utilizatorului înainte ca el/ea să se poată loga!"
|
1314 |
+
|
1315 |
+
#: ../features/email-confirmation/email-confirmation.php:481
|
1316 |
+
msgid "[%1$s] Your new account information"
|
1317 |
+
msgstr "[%1$s] Noile informații ale contului tău"
|
1318 |
+
|
1319 |
+
#: ../features/email-confirmation/email-confirmation.php:484
|
1320 |
+
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
|
1321 |
+
msgstr "Bine ai venit pe %1$s!<br/><br/><br/> Numele tău de utilizator este: %2$s şi parola:%3$s"
|
1322 |
+
|
1323 |
+
#: ../features/email-confirmation/email-confirmation.php:489
|
1324 |
+
#: ../front-end/register.php:103
|
1325 |
+
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
1326 |
+
msgstr "Înainte de a-ți putea accesa contul, un administrator trebuie să îl aprobe. Vei fi notificat prin e-mail."
|
1327 |
+
|
1328 |
+
#: ../features/login-widget/login-widget.php:10
|
1329 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: ../features/login-widget/login-widget.php:15
|
1333 |
+
msgid "Profile Builder Login Widget"
|
1334 |
+
msgstr "Profile Builder Login Widget"
|
1335 |
+
|
1336 |
+
#: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
|
1337 |
+
msgid "Register"
|
1338 |
+
msgstr "Înregistrează-te "
|
1339 |
+
|
1340 |
+
#: ../features/login-widget/login-widget.php:63
|
1341 |
+
msgid "Title:"
|
1342 |
+
msgstr "Titlu:"
|
1343 |
+
|
1344 |
+
#: ../features/login-widget/login-widget.php:68
|
1345 |
+
msgid "After login redirect URL (optional):"
|
1346 |
+
msgstr "URL redirecționare după logare (opțional):"
|
1347 |
+
|
1348 |
+
#: ../features/login-widget/login-widget.php:73
|
1349 |
+
msgid "Register page URL (optional):"
|
1350 |
+
msgstr "URL pagină de înregistrare (opțional):"
|
1351 |
+
|
1352 |
+
#: ../features/login-widget/login-widget.php:78
|
1353 |
+
msgid "Password Recovery page URL (optional):"
|
1354 |
+
msgstr "URL pagină recuperare parolă (opțional):"
|
1355 |
+
|
1356 |
+
#: ../features/upgrades/upgrades-functions.php:91
|
1357 |
+
#: ../features/upgrades/upgrades-functions.php:134
|
1358 |
+
msgid "The usernames cannot be changed."
|
1359 |
+
msgstr "Numele de utilizator nu pot fi schimbate."
|
1360 |
+
|
1361 |
+
#: ../front-end/class-formbuilder.php:83
|
1362 |
+
msgid "Only an administrator can add new users."
|
1363 |
+
msgstr "Doar administratorul poate adăuga noi utilizatori."
|
1364 |
+
|
1365 |
+
#: ../front-end/class-formbuilder.php:93
|
1366 |
+
msgid "Users can register themselves or you can manually create users here."
|
1367 |
+
msgstr "Aici utilizatorii se pot înregistra singuri sau tu poți să ii creezi manual. "
|
1368 |
+
|
1369 |
+
#: ../front-end/class-formbuilder.php:96
|
1370 |
+
msgid "Users cannot currently register themselves, but you can manually create users here."
|
1371 |
+
msgstr "Utilizatorii momentan nu se pot înregistra singuri, dar poți să ii creezi manual aici."
|
1372 |
+
|
1373 |
+
#: ../front-end/class-formbuilder.php:108
|
1374 |
+
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
1375 |
+
msgstr "În acest moment ești logat ca %1s. Nu ai nevoie de un alt cont. %2s"
|
1376 |
+
|
1377 |
+
#: ../front-end/class-formbuilder.php:108
|
1378 |
+
msgid "Log out of this account."
|
1379 |
+
msgstr "Logout din acest cont."
|
1380 |
+
|
1381 |
+
#: ../front-end/class-formbuilder.php:108
|
1382 |
+
msgid "Logout"
|
1383 |
+
msgstr "Logout"
|
1384 |
+
|
1385 |
+
#: ../front-end/class-formbuilder.php:114
|
1386 |
+
msgid "You must be logged in to edit your profile."
|
1387 |
+
msgstr "Trebuie să fii logat pentru a putea edita profilul."
|
1388 |
+
|
1389 |
+
#: ../front-end/class-formbuilder.php:137
|
1390 |
+
msgid "here"
|
1391 |
+
msgstr "aici"
|
1392 |
+
|
1393 |
+
#: ../front-end/class-formbuilder.php:139
|
1394 |
+
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
1395 |
+
msgstr "În curând vei fi redirecționat automat. Dacă această pagina se poate vizualiza pentru mai mult de %1$d, te rog apasă aici %2$s.%3$s"
|
1396 |
+
|
1397 |
+
#: ../front-end/class-formbuilder.php:224
|
1398 |
+
msgid "The account %1s has been successfully created!"
|
1399 |
+
msgstr "Contul %1s a fost creat cu succes!"
|
1400 |
+
|
1401 |
+
#: ../front-end/class-formbuilder.php:227
|
1402 |
+
#: ../front-end/class-formbuilder.php:233
|
1403 |
+
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
1404 |
+
msgstr "Înainte de a-ți putea accesa contul %1s, trebuie să confirmi adresa de e-mail. Te rog verifică inbox-ul și apasă pe link-ul de activare."
|
1405 |
+
|
1406 |
+
#: ../front-end/class-formbuilder.php:230
|
1407 |
+
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
1408 |
+
msgstr "Înainte de a putea accesa contul %1s, un administrator trebuie să îl aprobe. Vei fi notificat prin e-mail."
|
1409 |
+
|
1410 |
+
#: ../front-end/class-formbuilder.php:243
|
1411 |
+
msgid "Your profile has been successfully updated!"
|
1412 |
+
msgstr "Profilul tău a fost actualizat cu succes!"
|
1413 |
+
|
1414 |
+
#: ../front-end/class-formbuilder.php:253
|
1415 |
+
msgid "There was an error in the submitted form"
|
1416 |
+
msgstr "A apărut o eroare în formularul trimis"
|
1417 |
+
|
1418 |
+
#: ../front-end/class-formbuilder.php:274
|
1419 |
+
msgid "Add User"
|
1420 |
+
msgstr "Adaugă utilizator"
|
1421 |
+
|
1422 |
+
#: ../front-end/class-formbuilder.php:277
|
1423 |
+
msgid "Update"
|
1424 |
+
msgstr "Actualizează "
|
1425 |
+
|
1426 |
+
#: ../front-end/class-formbuilder.php:314
|
1427 |
+
#: ../front-end/extra-fields/extra-fields.php:33
|
1428 |
+
msgid "The avatar was successfully deleted!"
|
1429 |
+
msgstr "Avatarul a fost șters cu succes!"
|
1430 |
+
|
1431 |
+
#: ../front-end/class-formbuilder.php:314
|
1432 |
+
#: ../front-end/extra-fields/extra-fields.php:35
|
1433 |
+
msgid "The following attachment was successfully deleted:"
|
1434 |
+
msgstr "Următorul atașament a fost șters cu succes:"
|
1435 |
+
|
1436 |
+
#: ../front-end/class-formbuilder.php:326
|
1437 |
+
msgid "Send these credentials via email."
|
1438 |
+
msgstr "Trimite aceste acreditari prin e-mail."
|
1439 |
+
|
1440 |
+
#: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
|
1441 |
+
#: ../front-end/login.php:79 ../front-end/login.php:89
|
1442 |
+
#: ../front-end/recover.php:17 ../front-end/recover.php:206
|
1443 |
+
msgid "ERROR"
|
1444 |
+
msgstr "EROARE"
|
1445 |
+
|
1446 |
+
#: ../front-end/login.php:72
|
1447 |
+
msgid "The password you entered is incorrect."
|
1448 |
+
msgstr "Parola introdusă este incorectă."
|
1449 |
+
|
1450 |
+
#: ../front-end/login.php:73 ../front-end/login.php:80
|
1451 |
+
msgid "Password Lost and Found."
|
1452 |
+
msgstr "Parolă pierdută și găsită."
|
1453 |
+
|
1454 |
+
#: ../front-end/login.php:73 ../front-end/login.php:80
|
1455 |
+
msgid "Lost your password"
|
1456 |
+
msgstr "Ţi-ai pierdut parola"
|
1457 |
+
|
1458 |
+
#: ../front-end/login.php:89
|
1459 |
+
msgid "Both fields are empty."
|
1460 |
+
msgstr "Ambele câmpuri sunt goale."
|
1461 |
+
|
1462 |
+
#: ../front-end/login.php:199
|
1463 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
1464 |
+
msgstr "În acest moment ești logat ca %1$s. %2$s"
|
1465 |
+
|
1466 |
+
#: ../front-end/login.php:199
|
1467 |
+
msgid "Log out of this account"
|
1468 |
+
msgstr "Ieși din acest cont"
|
1469 |
+
|
1470 |
+
#: ../front-end/login.php:199
|
1471 |
+
msgid "Log out"
|
1472 |
+
msgstr "Ieșire "
|
1473 |
+
|
1474 |
+
#: ../front-end/recover.php:17
|
1475 |
+
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
1476 |
+
msgstr "Contul tău trebuie să fie confirmat de către un administrator înainte de a putea folosi opțiunea \"Resetare parola\"."
|
1477 |
+
|
1478 |
+
#: ../front-end/recover.php:91
|
1479 |
+
msgid "Reset Password"
|
1480 |
+
msgstr "Resetare parolă"
|
1481 |
+
|
1482 |
+
#: ../front-end/recover.php:111
|
1483 |
+
msgid "Please enter your username or email address."
|
1484 |
+
msgstr "Te rog introdu numele tău de utilizator și adresa de e-mail."
|
1485 |
+
|
1486 |
+
#: ../front-end/recover.php:112
|
1487 |
+
msgid "You will receive a link to create a new password via email."
|
1488 |
+
msgstr "Vei primi prin e-mail un link pentru a crea o noua parolă."
|
1489 |
+
|
1490 |
+
#: ../front-end/recover.php:119
|
1491 |
+
msgid "Username or E-mail"
|
1492 |
+
msgstr "Nume utilizator sau e-mail"
|
1493 |
+
|
1494 |
+
#: ../front-end/recover.php:125
|
1495 |
+
msgid "Get New Password"
|
1496 |
+
msgstr "Obţine o nouă parolă"
|
1497 |
+
|
1498 |
+
#: ../front-end/recover.php:164
|
1499 |
+
msgid "The username entered wasn't found in the database!"
|
1500 |
+
msgstr "Numele de utilizator nu a fost găsit în baza de date!"
|
1501 |
+
|
1502 |
+
#: ../front-end/recover.php:164
|
1503 |
+
msgid "Please check that you entered the correct username."
|
1504 |
+
msgstr "Te rog verifică dacă numele de utilizator este corect."
|
1505 |
+
|
1506 |
+
#: ../front-end/recover.php:179
|
1507 |
+
msgid "Check your e-mail for the confirmation link."
|
1508 |
+
msgstr "Verifică e-mail-ul pentru link-ul de confirmare."
|
1509 |
+
|
1510 |
+
#: ../front-end/recover.php:194
|
1511 |
+
msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
|
1512 |
+
msgstr "Cineva a cerut ca parola pentru următorul cont să fie resetată: <b>%1$s</b><br/> Dacă acest lucru este o greșeala, ignoră acest e-mail și lucrurile vor rămâne neschimbate. <br/> Pentru a reseta parola, accesează următorul link: %2$s"
|
1513 |
+
|
1514 |
+
#: ../front-end/recover.php:197
|
1515 |
+
msgid "Password Reset from \"%1$s\""
|
1516 |
+
msgstr "Resetare parolă de la \"%1$s\""
|
1517 |
+
|
1518 |
+
#: ../front-end/recover.php:206
|
1519 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
1520 |
+
msgstr "A apărut o eroare în timpul acțiunii de trimitere a link-ului de activare %1$s!"
|
1521 |
+
|
1522 |
+
#: ../front-end/recover.php:215
|
1523 |
+
msgid "The email address entered wasn't found in the database!"
|
1524 |
+
msgstr "Adresa de e-mail introdusă nu a fost găsită în baza de date!"
|
1525 |
+
|
1526 |
+
#: ../front-end/recover.php:215
|
1527 |
+
msgid "Please check that you entered the correct email address."
|
1528 |
+
msgstr "Te rog verifică dacă adresa de e-mail introdusă este corectă."
|
1529 |
+
|
1530 |
+
#: ../front-end/default-fields/password/password.php:44
|
1531 |
+
#: ../front-end/recover.php:231
|
1532 |
+
msgid "<br/>The password must have the minimum length of "
|
1533 |
+
msgstr "<br/> Parola trebuie să aibă lungimea minimă de"
|
1534 |
+
|
1535 |
+
#: ../front-end/default-fields/password/password.php:48
|
1536 |
+
#: ../front-end/recover.php:235
|
1537 |
+
msgid "<br/>The password must have a minimum strength of "
|
1538 |
+
msgstr "<br/> Parola trebuie să aibă o complexitate minimă de "
|
1539 |
+
|
1540 |
+
#: ../front-end/recover.php:242
|
1541 |
+
msgid "Your password has been successfully changed!"
|
1542 |
+
msgstr "Parola ta a fost schimbată cu succes!"
|
1543 |
+
|
1544 |
+
#: ../front-end/recover.php:256
|
1545 |
+
msgid "You have successfully reset your password to: %1$s"
|
1546 |
+
msgstr "Ai resetat cu succes parola ca: %1$s"
|
1547 |
+
|
1548 |
+
#: ../front-end/recover.php:259 ../front-end/recover.php:273
|
1549 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
1550 |
+
msgstr "Parolă resetată cu succes pentru %1$s pe \"%2$s\""
|
1551 |
+
|
1552 |
+
#: ../front-end/recover.php:270
|
1553 |
+
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
1554 |
+
msgstr "%1$s a cerut schimbarea parolei prin opțiunea resetare parolă. <br/> Noua lui/ei parolă este: %2$s "
|
1555 |
+
|
1556 |
+
#: ../front-end/recover.php:289
|
1557 |
+
msgid "The entered passwords don't match!"
|
1558 |
+
msgstr "Parolele introduse nu coincid!"
|
1559 |
+
|
1560 |
+
#: ../front-end/recover.php:334
|
1561 |
+
msgid "ERROR:"
|
1562 |
+
msgstr "EROARE:"
|
1563 |
+
|
1564 |
+
#: ../front-end/recover.php:334
|
1565 |
+
msgid "Invalid key!"
|
1566 |
+
msgstr "Cheie incorectă!"
|
1567 |
+
|
1568 |
+
#: ../front-end/register.php:46
|
1569 |
+
msgid "Invalid activation key!"
|
1570 |
+
msgstr "Cheie de validare incorectă!"
|
1571 |
+
|
1572 |
+
#: ../front-end/register.php:50
|
1573 |
+
msgid "This username is now active!"
|
1574 |
+
msgstr "Acest nume de utilizator este acum activ!"
|
1575 |
+
|
1576 |
+
#: ../front-end/register.php:71
|
1577 |
+
msgid "This username is already activated!"
|
1578 |
+
msgstr "Acest nume de utilizator este deja activat!"
|
1579 |
+
|
1580 |
+
#: ../front-end/register.php:102
|
1581 |
+
msgid "Your email was successfully confirmed."
|
1582 |
+
msgstr "E-mail-ul a fost confirmat cu succes."
|
1583 |
+
|
1584 |
+
#: ../front-end/register.php:112
|
1585 |
+
msgid "There was an error while trying to activate the user."
|
1586 |
+
msgstr "A apărut o eroare în timp ce se derula activarea utilizatorului."
|
1587 |
+
|
1588 |
+
#: ../front-end/default-fields/email/email.php:42
|
1589 |
+
msgid "The email you entered is not a valid email address."
|
1590 |
+
msgstr "Adresa de e-mail introdusă nu este o adresă de e-mail validă."
|
1591 |
+
|
1592 |
+
#: ../front-end/default-fields/email/email.php:49
|
1593 |
+
msgid "This email is already reserved to be used soon."
|
1594 |
+
msgstr "Această adresă de e-mail este deja rezervată pentru a fi folosită în curând."
|
1595 |
+
|
1596 |
+
#: ../front-end/default-fields/email/email.php:49
|
1597 |
+
#: ../front-end/default-fields/email/email.php:55
|
1598 |
+
#: ../front-end/default-fields/email/email.php:62
|
1599 |
+
#: ../front-end/default-fields/username/username.php:44
|
1600 |
+
#: ../front-end/default-fields/username/username.php:51
|
1601 |
+
msgid "Please try a different one!"
|
1602 |
+
msgstr "Te rog încearcă una diferită!"
|
1603 |
+
|
1604 |
+
#: ../front-end/default-fields/email/email.php:55
|
1605 |
+
#: ../front-end/default-fields/email/email.php:62
|
1606 |
+
msgid "This email is already in use."
|
1607 |
+
msgstr "Acestă adresa de e-mail este deja în uz."
|
1608 |
+
|
1609 |
+
#: ../front-end/default-fields/password-repeat/password-repeat.php:35
|
1610 |
+
#: ../front-end/default-fields/password-repeat/password-repeat.php:39
|
1611 |
+
msgid "The passwords do not match"
|
1612 |
+
msgstr "Parolele nu coincid"
|
1613 |
+
|
1614 |
+
#: ../front-end/default-fields/username/username.php:44
|
1615 |
+
msgid "This username already exists."
|
1616 |
+
msgstr "Acest nume de utilizator există deja."
|
1617 |
+
|
1618 |
+
#: ../front-end/default-fields/username/username.php:51
|
1619 |
+
msgid "This username is already reserved to be used soon."
|
1620 |
+
msgstr "Acest nume de utilizator este rezervat pentru a fi folosit în curând."
|
1621 |
+
|
1622 |
+
#: ../front-end/extra-fields/avatar/avatar.php:60
|
1623 |
+
#: ../front-end/extra-fields/avatar/avatar.php:98
|
1624 |
+
#: ../front-end/extra-fields/upload/upload.php:29
|
1625 |
+
#: ../front-end/extra-fields/upload/upload.php:68
|
1626 |
+
msgid "max upload size"
|
1627 |
+
msgstr "dimensiune maximă încărcare "
|
1628 |
+
|
1629 |
+
#: ../front-end/extra-fields/avatar/avatar.php:66
|
1630 |
+
msgid "Current avatar: No uploaded avatar"
|
1631 |
+
msgstr "Avatar curent: Nu este încărcat niciun avatar"
|
1632 |
+
|
1633 |
+
#: ../front-end/extra-fields/avatar/avatar.php:71
|
1634 |
+
#: ../front-end/extra-fields/avatar/avatar.php:105
|
1635 |
+
msgid "Avatar"
|
1636 |
+
msgstr "Avatar"
|
1637 |
+
|
1638 |
+
#: ../front-end/extra-fields/avatar/avatar.php:75
|
1639 |
+
#: ../front-end/extra-fields/avatar/avatar.php:80
|
1640 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1641 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1642 |
+
msgid "Click to see the current avatar"
|
1643 |
+
msgstr "Apasă pentru a vedea avatarul curent"
|
1644 |
+
|
1645 |
+
#: ../front-end/extra-fields/avatar/avatar.php:77
|
1646 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1647 |
+
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1648 |
+
msgstr "Avatarul nu poate fi șters (A fost marcat ca necesar de către administrator)"
|
1649 |
+
|
1650 |
+
#: ../front-end/extra-fields/avatar/avatar.php:82
|
1651 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1652 |
+
msgid "Are you sure you want to delete this avatar?"
|
1653 |
+
msgstr "Ești sigur că vrei să ștergi acest avatar?"
|
1654 |
+
|
1655 |
+
#: ../front-end/extra-fields/avatar/avatar.php:83
|
1656 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1657 |
+
msgid "Click to delete the current avatar"
|
1658 |
+
msgstr "Apasă pentru a șterge avatarul curent"
|
1659 |
+
|
1660 |
+
#: ../front-end/extra-fields/avatar/avatar.php:91
|
1661 |
+
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1662 |
+
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1663 |
+
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1664 |
+
#: ../front-end/extra-fields/input/input.php:28
|
1665 |
+
#: ../front-end/extra-fields/radio/radio.php:42
|
1666 |
+
#: ../front-end/extra-fields/select-multiple/select-multiple.php:44
|
1667 |
+
#: ../front-end/extra-fields/select-timezone/select-timezone.php:42
|
1668 |
+
#: ../front-end/extra-fields/select/select.php:44
|
1669 |
+
#: ../front-end/extra-fields/textarea/textarea.php:28
|
1670 |
+
#: ../front-end/extra-fields/upload/upload.php:62
|
1671 |
+
msgid "required"
|
1672 |
+
msgstr "necesar"
|
1673 |
+
|
1674 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1675 |
+
msgid "Current avatar"
|
1676 |
+
msgstr "Avatarul curent"
|
1677 |
+
|
1678 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1679 |
+
msgid "No uploaded avatar"
|
1680 |
+
msgstr "Nu este încărcat avatar"
|
1681 |
+
|
1682 |
+
#: ../front-end/extra-fields/avatar/avatar.php:207
|
1683 |
+
#: ../front-end/extra-fields/upload/upload.php:173
|
1684 |
+
msgid "The extension of the file did not match"
|
1685 |
+
msgstr "Extensia fișierului nu coincide"
|
1686 |
+
|
1687 |
+
#: ../front-end/extra-fields/avatar/avatar.php:210
|
1688 |
+
#: ../front-end/extra-fields/avatar/avatar.php:213
|
1689 |
+
#: ../front-end/extra-fields/upload/upload.php:177
|
1690 |
+
#: ../front-end/extra-fields/upload/upload.php:180
|
1691 |
+
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1692 |
+
msgstr "Fișierul încărcat depășește directiva upload_max_filesize din php.ini"
|
1693 |
+
|
1694 |
+
#: ../front-end/extra-fields/avatar/avatar.php:216
|
1695 |
+
#: ../front-end/extra-fields/upload/upload.php:183
|
1696 |
+
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1697 |
+
msgstr "Fișierul încărcat depășește directiva MAX_FILE_SIZE în php.ini"
|
1698 |
+
|
1699 |
+
#: ../front-end/extra-fields/avatar/avatar.php:219
|
1700 |
+
msgid "The file could only partially be uploaded "
|
1701 |
+
msgstr "Fișierul a putut fi doar parțial încărcat"
|
1702 |
+
|
1703 |
+
#: ../front-end/extra-fields/avatar/avatar.php:222
|
1704 |
+
#: ../front-end/extra-fields/avatar/avatar.php:243
|
1705 |
+
#: ../front-end/extra-fields/avatar/avatar.php:246
|
1706 |
+
#: ../front-end/extra-fields/upload/upload.php:189
|
1707 |
+
#: ../front-end/extra-fields/upload/upload.php:210
|
1708 |
+
#: ../front-end/extra-fields/upload/upload.php:213
|
1709 |
+
msgid "No file was selected"
|
1710 |
+
msgstr "Nu a fost selectat niciun fișier "
|
1711 |
+
|
1712 |
+
#: ../front-end/extra-fields/avatar/avatar.php:225
|
1713 |
+
#: ../front-end/extra-fields/upload/upload.php:192
|
1714 |
+
msgid "The temporary upload folder is missing from the system"
|
1715 |
+
msgstr "Fișierul de încărcare temporară lipsește din sistem"
|
1716 |
+
|
1717 |
+
#: ../front-end/extra-fields/avatar/avatar.php:228
|
1718 |
+
#: ../front-end/extra-fields/upload/upload.php:195
|
1719 |
+
msgid "The file failed to write to the disk"
|
1720 |
+
msgstr "Fișierul nu a fost scris cu succes în memorie."
|
1721 |
+
|
1722 |
+
#: ../front-end/extra-fields/avatar/avatar.php:231
|
1723 |
+
#: ../front-end/extra-fields/upload/upload.php:198
|
1724 |
+
msgid "A PHP extension stopped the file upload"
|
1725 |
+
msgstr "O extensie PHP a oprit încărcarea fișierului "
|
1726 |
+
|
1727 |
+
#: ../front-end/extra-fields/avatar/avatar.php:234
|
1728 |
+
msgid "Unknown error occurred"
|
1729 |
+
msgstr "A apărut o eroare necunoscută"
|
1730 |
+
|
1731 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:48
|
1732 |
+
msgid "Could not open socket!"
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:75
|
1736 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
1737 |
+
msgstr "Pentru a folosi eCAPTCHA trebuie să obţi o cheie API de la"
|
1738 |
+
|
1739 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:114
|
1740 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:171
|
1744 |
+
msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
|
1745 |
+
msgstr "Pentru a folosi reCAPTCHA Mailhide, trebuie să ai instalat modulul mcrypt php!"
|
1746 |
+
|
1747 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:187
|
1748 |
+
msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
|
1749 |
+
msgstr "Pentru a folosi reCAPTCHA Mailhide, trebuie să te înregistrezi pentru o cheie publică și una privată; poți să faci asta pe"
|
1750 |
+
|
1751 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:254
|
1752 |
+
msgid "To use reCAPTCHA you must get an API public key from:"
|
1753 |
+
msgstr "Pentru a folosi reCAPTCHA trebuie să obţi o cheie publică API de la:"
|
1754 |
+
|
1755 |
+
#: ../front-end/extra-fields/recaptcha/recaptcha.php:257
|
1756 |
+
msgid "To use reCAPTCHA you must get an API private key from:"
|
1757 |
+
msgstr "Pentru a folosi reCAPTCHA trebuie să obţi o cheie privată API de la:"
|
1758 |
+
|
1759 |
+
#: ../front-end/extra-fields/upload/upload.php:35
|
1760 |
+
msgid "Current file: No uploaded attachment"
|
1761 |
+
msgstr "Fișierul curent: Nu este încărcat niciun atașament "
|
1762 |
+
|
1763 |
+
#: ../front-end/extra-fields/upload/upload.php:39
|
1764 |
+
#: ../front-end/extra-fields/upload/upload.php:48
|
1765 |
+
#: ../front-end/extra-fields/upload/upload.php:71
|
1766 |
+
#: ../front-end/extra-fields/upload/upload.php:75
|
1767 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
1768 |
+
msgid "Current file"
|
1769 |
+
msgstr "Fișier curent"
|
1770 |
+
|
1771 |
+
#: ../front-end/extra-fields/upload/upload.php:42
|
1772 |
+
#: ../front-end/extra-fields/upload/upload.php:51
|
1773 |
+
#: ../front-end/extra-fields/upload/upload.php:75
|
1774 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
1775 |
+
msgid "Click to see the current attachment"
|
1776 |
+
msgstr "Apasă pentru a vedea atașamentul curent"
|
1777 |
+
|
1778 |
+
#: ../front-end/extra-fields/upload/upload.php:44
|
1779 |
+
#: ../front-end/extra-fields/upload/upload.php:75
|
1780 |
+
msgid "The attachment can't be deleted (It was marked as required by the administrator)"
|
1781 |
+
msgstr "Atașamentul nu poate fi șters (A fost marcat ca necesar de către administrator)"
|
1782 |
+
|
1783 |
+
#: ../front-end/extra-fields/upload/upload.php:53
|
1784 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
1785 |
+
msgid "Are you sure you want to delete this attachment?"
|
1786 |
+
msgstr "Ești sigur că vrei să ștergi acest atașament?"
|
1787 |
+
|
1788 |
+
#: ../front-end/extra-fields/upload/upload.php:54
|
1789 |
+
#: ../front-end/extra-fields/upload/upload.php:77
|
1790 |
+
msgid "Click to delete the current attachment"
|
1791 |
+
msgstr "Apasă pentru a șterge atașamentul curent"
|
1792 |
+
|
1793 |
+
#: ../front-end/extra-fields/upload/upload.php:71
|
1794 |
+
msgid "No uploaded attachment"
|
1795 |
+
msgstr "Nu a fost încărcat niciun atasament"
|
1796 |
+
|
1797 |
+
#: ../front-end/extra-fields/upload/upload.php:164
|
1798 |
+
msgid "The extension of the file is not allowed"
|
1799 |
+
msgstr "Extensia fișierului nu este permisă"
|
1800 |
+
|
1801 |
+
#: ../front-end/extra-fields/upload/upload.php:186
|
1802 |
+
msgid "The file could only partially be uploaded"
|
1803 |
+
msgstr "Fișierul a putut fi încărcat doar parțial "
|
1804 |
+
|
1805 |
+
#: ../front-end/extra-fields/upload/upload.php:201
|
1806 |
+
msgid "This field wasn't updated because an unknown error occured"
|
1807 |
+
msgstr "Câmpul nu a fost actualizat pentru că a apărut o eroare necunoscută"
|
1808 |
+
|
1809 |
+
#: ../modules/modules.php:11 ../modules/modules.php:80
|
1810 |
+
msgid "Modules"
|
1811 |
+
msgstr "Module"
|
1812 |
+
|
1813 |
+
#: ../modules/modules.php:81
|
1814 |
+
msgid "Here you can activate / deactivate available modules for Profile Builder."
|
1815 |
+
msgstr "Ai poți activa / dezactiva modulele disponibile pentru Profile Builder."
|
1816 |
+
|
1817 |
+
#: ../modules/modules.php:91
|
1818 |
+
msgid "Name/Description"
|
1819 |
+
msgstr "Nume/Descriere"
|
1820 |
+
|
1821 |
+
#: ../modules/modules.php:92
|
1822 |
+
msgid "Status"
|
1823 |
+
msgstr "Status"
|
1824 |
+
|
1825 |
+
#: ../modules/custom-redirects/custom-redirects.php:48
|
1826 |
+
#: ../modules/custom-redirects/custom-redirects.php:58
|
1827 |
+
#: ../modules/custom-redirects/custom-redirects.php:68
|
1828 |
+
#: ../modules/custom-redirects/custom-redirects.php:94
|
1829 |
+
#: ../modules/custom-redirects/custom-redirects.php:104
|
1830 |
+
#: ../modules/custom-redirects/custom-redirects.php:114
|
1831 |
+
#: ../modules/custom-redirects/custom-redirects.php:124
|
1832 |
+
#: ../modules/modules.php:99 ../modules/modules.php:106
|
1833 |
+
#: ../modules/modules.php:113 ../modules/modules.php:120
|
1834 |
+
#: ../modules/modules.php:127 ../modules/modules.php:134
|
1835 |
+
msgid "Active"
|
1836 |
+
msgstr "Activ"
|
1837 |
+
|
1838 |
+
#: ../modules/custom-redirects/custom-redirects.php:49
|
1839 |
+
#: ../modules/custom-redirects/custom-redirects.php:59
|
1840 |
+
#: ../modules/custom-redirects/custom-redirects.php:69
|
1841 |
+
#: ../modules/custom-redirects/custom-redirects.php:95
|
1842 |
+
#: ../modules/custom-redirects/custom-redirects.php:105
|
1843 |
+
#: ../modules/custom-redirects/custom-redirects.php:115
|
1844 |
+
#: ../modules/custom-redirects/custom-redirects.php:125
|
1845 |
+
#: ../modules/modules.php:100 ../modules/modules.php:107
|
1846 |
+
#: ../modules/modules.php:114 ../modules/modules.php:121
|
1847 |
+
#: ../modules/modules.php:128 ../modules/modules.php:135
|
1848 |
+
msgid "Inactive"
|
1849 |
+
msgstr "Inactiv"
|
1850 |
+
|
1851 |
+
#: ../modules/email-customizer/admin-email-customizer.php:11
|
1852 |
+
#: ../modules/email-customizer/admin-email-customizer.php:12
|
1853 |
+
#: ../modules/modules.php:118
|
1854 |
+
msgid "Admin Email Customizer"
|
1855 |
+
msgstr "Personalizare E-mail Administrator"
|
1856 |
+
|
1857 |
+
#: ../modules/email-customizer/user-email-customizer.php:11
|
1858 |
+
#: ../modules/email-customizer/user-email-customizer.php:12
|
1859 |
+
#: ../modules/modules.php:125
|
1860 |
+
msgid "User Email Customizer"
|
1861 |
+
msgstr "Personalizare E-mail Utilizator "
|
1862 |
+
|
1863 |
+
#: ../modules/class-mustache-templates/class-mustache-templates.php:242
|
1864 |
+
msgid "Save"
|
1865 |
+
msgstr "Salvează"
|
1866 |
+
|
1867 |
+
#: ../modules/custom-redirects/custom-redirects.php:35
|
1868 |
+
msgid "Redirects on custom page requests:"
|
1869 |
+
msgstr ""
|
1870 |
+
|
1871 |
+
#: ../modules/custom-redirects/custom-redirects.php:39
|
1872 |
+
#: ../modules/custom-redirects/custom-redirects.php:85
|
1873 |
+
msgid "Action"
|
1874 |
+
msgstr "Acțiune "
|
1875 |
+
|
1876 |
+
#: ../modules/custom-redirects/custom-redirects.php:40
|
1877 |
+
#: ../modules/custom-redirects/custom-redirects.php:86
|
1878 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:206
|
1879 |
+
#: ../modules/multiple-forms/register-forms.php:230
|
1880 |
+
msgid "Redirect"
|
1881 |
+
msgstr "Redirecționează "
|
1882 |
+
|
1883 |
+
#: ../modules/custom-redirects/custom-redirects.php:41
|
1884 |
+
#: ../modules/custom-redirects/custom-redirects.php:87
|
1885 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:208
|
1886 |
+
#: ../modules/multiple-forms/register-forms.php:232
|
1887 |
+
msgid "URL"
|
1888 |
+
msgstr "URL"
|
1889 |
+
|
1890 |
+
#: ../modules/custom-redirects/custom-redirects.php:46
|
1891 |
+
msgid "After Registration:"
|
1892 |
+
msgstr "După înregistrare:"
|
1893 |
+
|
1894 |
+
#: ../modules/custom-redirects/custom-redirects.php:56
|
1895 |
+
msgid "After Login:"
|
1896 |
+
msgstr "După logare:"
|
1897 |
+
|
1898 |
+
#: ../modules/custom-redirects/custom-redirects.php:66
|
1899 |
+
msgid "Recover Password (*)"
|
1900 |
+
msgstr "Recuperează parola (*)"
|
1901 |
+
|
1902 |
+
#: ../modules/custom-redirects/custom-redirects.php:77
|
1903 |
+
msgid "When activated this feature will redirect the user on both the default Wordpress password recovery page and the \"Lost password?\" link used by Profile Builder on the front-end login page."
|
1904 |
+
msgstr "Cand este activată această opțiune, utilizatorul va fi redirecționat de pe pagina standard din WordPress de recuperare parolă cât și link-ul de \"Ai uitat parola?\" folosit în Profile Builder pe pagina de login. "
|
1905 |
+
|
1906 |
+
#: ../modules/custom-redirects/custom-redirects.php:81
|
1907 |
+
msgid "Redirects on default WordPress page requests:"
|
1908 |
+
msgstr ""
|
1909 |
+
|
1910 |
+
#: ../modules/custom-redirects/custom-redirects.php:92
|
1911 |
+
msgid "Default WordPress Login Page"
|
1912 |
+
msgstr "Pagină de logare WordPress predefinită"
|
1913 |
+
|
1914 |
+
#: ../modules/custom-redirects/custom-redirects.php:102
|
1915 |
+
msgid "Default WordPress Logout Page"
|
1916 |
+
msgstr "Pagină de ieșire WordPress predefintă"
|
1917 |
+
|
1918 |
+
#: ../modules/custom-redirects/custom-redirects.php:112
|
1919 |
+
msgid "Default WordPress Register Page"
|
1920 |
+
msgstr "Pagină de înregistrare WordPress predefinită"
|
1921 |
+
|
1922 |
+
#: ../modules/custom-redirects/custom-redirects.php:122
|
1923 |
+
msgid "Default WordPress Dashboard (*)"
|
1924 |
+
msgstr "WordPress Dashboard predefinit (*)"
|
1925 |
+
|
1926 |
+
#: ../modules/custom-redirects/custom-redirects.php:133
|
1927 |
+
msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
|
1928 |
+
msgstr "Redirecționează fiecare rol de utilizator EXCEPTÂND rolurile cu privilegii de administrator (pot gestiona opțiuni)"
|
1929 |
+
|
1930 |
+
#: ../modules/email-customizer/admin-email-customizer.php:38
|
1931 |
+
msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
|
1932 |
+
msgstr "Aceste setări sunt de asemenea replicate după salvare în pagina pentru setări a \"Personalizare e-mail utilizator\" "
|
1933 |
+
|
1934 |
+
#: ../modules/email-customizer/admin-email-customizer.php:41
|
1935 |
+
#: ../modules/email-customizer/user-email-customizer.php:41
|
1936 |
+
msgid "From (name)"
|
1937 |
+
msgstr "De la (nume)"
|
1938 |
+
|
1939 |
+
#: ../modules/email-customizer/admin-email-customizer.php:49
|
1940 |
+
#: ../modules/email-customizer/user-email-customizer.php:49
|
1941 |
+
msgid "From (reply-to email)"
|
1942 |
+
msgstr "De la (răspunde către e-mail)"
|
1943 |
+
|
1944 |
+
#: ../modules/email-customizer/admin-email-customizer.php:57
|
1945 |
+
#: ../modules/email-customizer/user-email-customizer.php:57
|
1946 |
+
msgid "Common Settings"
|
1947 |
+
msgstr "Setări comune "
|
1948 |
+
|
1949 |
+
#: ../modules/email-customizer/admin-email-customizer.php:60
|
1950 |
+
msgid ""
|
1951 |
+
"\n"
|
1952 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
1953 |
+
"<p>Username:{{username}}</p>\n"
|
1954 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
1955 |
+
msgstr ""
|
1956 |
+
"\n"
|
1957 |
+
"<p>Nou abonat pe {{site_name}}.</p>\n"
|
1958 |
+
"<p>Nume utilizator:{{username}}</p>\n"
|
1959 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
1960 |
+
"\n"
|
1961 |
+
|
1962 |
+
#: ../modules/email-customizer/admin-email-customizer.php:69
|
1963 |
+
#: ../modules/email-customizer/admin-email-customizer.php:99
|
1964 |
+
#: ../modules/email-customizer/user-email-customizer.php:71
|
1965 |
+
#: ../modules/email-customizer/user-email-customizer.php:99
|
1966 |
+
#: ../modules/email-customizer/user-email-customizer.php:128
|
1967 |
+
#: ../modules/email-customizer/user-email-customizer.php:155
|
1968 |
+
#: ../modules/email-customizer/user-email-customizer.php:183
|
1969 |
+
msgid "Email Subject"
|
1970 |
+
msgstr "Subiect e-mail"
|
1971 |
+
|
1972 |
+
#: ../modules/email-customizer/admin-email-customizer.php:84
|
1973 |
+
msgid "Default Registration & Registration with Email Confirmation"
|
1974 |
+
msgstr "Înregistrare predefinită și înregistrare cu confirmare e-mail"
|
1975 |
+
|
1976 |
+
#: ../modules/email-customizer/admin-email-customizer.php:87
|
1977 |
+
msgid ""
|
1978 |
+
"\n"
|
1979 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
1980 |
+
"<p>Username:{{username}}</p>\n"
|
1981 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
1982 |
+
"<p>The Admin Approval feature was activated at the time of registration,\n"
|
1983 |
+
"so please remember that you need to approve this user before he/she can log in!</p>\n"
|
1984 |
+
msgstr ""
|
1985 |
+
"\n"
|
1986 |
+
"<p>Nou abonat pe {{site_name}}.</p>\n"
|
1987 |
+
"<p>Nume utilizator:{{username}}</p>\n"
|
1988 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
1989 |
+
"<p>Opțiunea aprobare administrator era activată în momentul înregistrarii,\n"
|
1990 |
+
"astfel vă rugăm să vă amintiți că acest utilizator trebuie aprobat înainte ca el/ea să se loga!</p>\n"
|
1991 |
+
"\n"
|
1992 |
+
|
1993 |
+
#: ../modules/email-customizer/admin-email-customizer.php:114
|
1994 |
+
#: ../modules/email-customizer/user-email-customizer.php:143
|
1995 |
+
msgid "Registration with Admin Approval"
|
1996 |
+
msgstr "Înregistrare cu aprobare administrator"
|
1997 |
+
|
1998 |
+
#: ../modules/email-customizer/email-customizer.php:7
|
1999 |
+
msgid "Available Tags"
|
2000 |
+
msgstr "Etichete disponibile"
|
2001 |
+
|
2002 |
+
#: ../modules/email-customizer/email-customizer.php:11
|
2003 |
+
msgid "User Meta"
|
2004 |
+
msgstr "Utilizator Meta"
|
2005 |
+
|
2006 |
+
#: ../modules/email-customizer/email-customizer.php:21
|
2007 |
+
msgid "Site Url"
|
2008 |
+
msgstr "URL site"
|
2009 |
+
|
2010 |
+
#: ../modules/email-customizer/email-customizer.php:22
|
2011 |
+
msgid "Site Name"
|
2012 |
+
msgstr "Nume site"
|
2013 |
+
|
2014 |
+
#: ../modules/email-customizer/email-customizer.php:25
|
2015 |
+
#: ../modules/user-listing/userlisting.php:126
|
2016 |
+
msgid "User Id"
|
2017 |
+
msgstr "ID utilizator"
|
2018 |
+
|
2019 |
+
#: ../modules/email-customizer/email-customizer.php:32
|
2020 |
+
msgid "Reply To"
|
2021 |
+
msgstr "Răspunde către"
|
2022 |
+
|
2023 |
+
#: ../modules/email-customizer/email-customizer.php:35
|
2024 |
+
msgid "Activation Key"
|
2025 |
+
msgstr "Cheie activare"
|
2026 |
+
|
2027 |
+
#: ../modules/email-customizer/email-customizer.php:36
|
2028 |
+
msgid "Activation Url"
|
2029 |
+
msgstr "URL activare"
|
2030 |
+
|
2031 |
+
#: ../modules/email-customizer/email-customizer.php:37
|
2032 |
+
msgid "Activation Link"
|
2033 |
+
msgstr "Link activare"
|
2034 |
+
|
2035 |
+
#: ../modules/email-customizer/user-email-customizer.php:64
|
2036 |
+
msgid ""
|
2037 |
+
"\n"
|
2038 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
2039 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
2040 |
+
msgstr ""
|
2041 |
+
"\n"
|
2042 |
+
"<h3>Bine ai venit pe {{site_name}}!</h3>\n"
|
2043 |
+
"<p>Numele tău de utilizator este:{{username}} și parola:{{password}}</p>\n"
|
2044 |
+
"\n"
|
2045 |
+
|
2046 |
+
#: ../modules/email-customizer/user-email-customizer.php:85
|
2047 |
+
msgid "Default Registration"
|
2048 |
+
msgstr "Înregistrare predefinită"
|
2049 |
+
|
2050 |
+
#: ../modules/email-customizer/user-email-customizer.php:91
|
2051 |
+
msgid ""
|
2052 |
+
"\n"
|
2053 |
+
"<p>To activate your user, please click the following link:<br/>\n"
|
2054 |
+
"{{{activation_link}}}</p>\n"
|
2055 |
+
"<p>After you activate, you will receive another email with your credentials.</p>\n"
|
2056 |
+
msgstr ""
|
2057 |
+
"\n"
|
2058 |
+
"<p>Pentru a iți activa utilizatorul, apasă pe link-ul următor:<br/>\n"
|
2059 |
+
"{{{activation_link}}}</p>\n"
|
2060 |
+
"<p>După activare, vei primi încă un e-mail cu acreditările.</p>\n"
|
2061 |
+
"\n"
|
2062 |
+
|
2063 |
+
#: ../modules/email-customizer/user-email-customizer.php:103
|
2064 |
+
msgid "[{{site_name}}] Activate {{username}}"
|
2065 |
+
msgstr "[{{site_name}}] Activează {{username}}"
|
2066 |
+
|
2067 |
+
#: ../modules/email-customizer/user-email-customizer.php:114
|
2068 |
+
msgid "Registration with Email Confirmation"
|
2069 |
+
msgstr "Înregistrare folosind confirmare e-mail"
|
2070 |
+
|
2071 |
+
#: ../modules/email-customizer/user-email-customizer.php:120
|
2072 |
+
msgid ""
|
2073 |
+
"\n"
|
2074 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
2075 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
2076 |
+
"<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
|
2077 |
+
msgstr ""
|
2078 |
+
"\n"
|
2079 |
+
"<h3>Bine ai venit pe {{site_name}}!</h3>\n"
|
2080 |
+
"<p>Numele tău de utilizator este:{{username}} și parola:{{password}}</p>\n"
|
2081 |
+
"<p>Înainte de a iți putea accesa contul, un administrator trebuie să îl aprobe. Vei fi notificat prin e-mail</p>\n"
|
2082 |
+
|
2083 |
+
#: ../modules/email-customizer/user-email-customizer.php:132
|
2084 |
+
msgid "A new account has been created for you on {{site_name}}"
|
2085 |
+
msgstr "Un nou cont a fost creat pentru tine pe {{site_name}}"
|
2086 |
+
|
2087 |
+
#: ../modules/email-customizer/user-email-customizer.php:148
|
2088 |
+
msgid ""
|
2089 |
+
"\n"
|
2090 |
+
"<h3>Good News!</h3>\n"
|
2091 |
+
"<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
|
2092 |
+
msgstr ""
|
2093 |
+
"\n"
|
2094 |
+
"<h3>Vești bune!</h3>\n"
|
2095 |
+
"<p>Un administrator tocmai ți-a aprobat contul: {{username}} pe {{site_name}}.</p>\n"
|
2096 |
+
"\n"
|
2097 |
+
|
2098 |
+
#: ../modules/email-customizer/user-email-customizer.php:159
|
2099 |
+
msgid "Your account on {{site_name}} has been approved!"
|
2100 |
+
msgstr "Contul tău pe {{site_name}} a fost aprobat!"
|
2101 |
+
|
2102 |
+
#: ../modules/email-customizer/user-email-customizer.php:170
|
2103 |
+
msgid "User Approval Notification"
|
2104 |
+
msgstr "Notificare aprobare utilizator"
|
2105 |
+
|
2106 |
+
#: ../modules/email-customizer/user-email-customizer.php:175
|
2107 |
+
msgid ""
|
2108 |
+
"\n"
|
2109 |
+
"<h3>Hello,</h3>\n"
|
2110 |
+
"<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
|
2111 |
+
msgstr ""
|
2112 |
+
"<h3>Buna ziua,</h3>\n"
|
2113 |
+
"<p>Din păcate un administrator nu v-a aprobat contul: {{username}} pe {{site_name}}.</p>"
|
2114 |
+
|
2115 |
+
#: ../modules/email-customizer/user-email-customizer.php:187
|
2116 |
+
msgid "Your account on {{site_name}} has been unapproved!"
|
2117 |
+
msgstr "Contul tău pe {{site_name}} nu a fost aprobat!"
|
2118 |
+
|
2119 |
+
#: ../modules/email-customizer/user-email-customizer.php:198
|
2120 |
+
msgid "Unapproved User Notification"
|
2121 |
+
msgstr "Notificare utilizator neaprobată"
|
2122 |
+
|
2123 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:11
|
2124 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:12
|
2125 |
+
msgid "Edit-profile Form"
|
2126 |
+
msgstr "Formular editare profil"
|
2127 |
+
|
2128 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:13
|
2129 |
+
#: ../modules/multiple-forms/register-forms.php:13
|
2130 |
+
#: ../modules/user-listing/userlisting.php:13
|
2131 |
+
msgid "Add New"
|
2132 |
+
msgstr "Adaugă nou"
|
2133 |
+
|
2134 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:14
|
2135 |
+
msgid "Add new Edit-profile Form"
|
2136 |
+
msgstr "Adaugă formular nou pentru editare profil"
|
2137 |
+
|
2138 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:15
|
2139 |
+
msgid "Edit the Edit-profile Forms"
|
2140 |
+
msgstr "Adaugă formulare noi pentru editare profil"
|
2141 |
+
|
2142 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:16
|
2143 |
+
msgid "New Edit-profile Form"
|
2144 |
+
msgstr "Formular editare profil nou"
|
2145 |
+
|
2146 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:17
|
2147 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:23
|
2148 |
+
msgid "Edit-profile Forms"
|
2149 |
+
msgstr "Formulare editare profil"
|
2150 |
+
|
2151 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:18
|
2152 |
+
msgid "View the Edit-profile Form"
|
2153 |
+
msgstr "Vizualizează formularul de editare profil"
|
2154 |
+
|
2155 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:19
|
2156 |
+
msgid "Search the Edit-profile Forms"
|
2157 |
+
msgstr "Caută formulare pentru editare profil"
|
2158 |
+
|
2159 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:20
|
2160 |
+
msgid "No Edit-profile Form found"
|
2161 |
+
msgstr "Nu s-au găsit formulare pentru editare profil"
|
2162 |
+
|
2163 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:21
|
2164 |
+
msgid "No Edit-profile Forms found in trash"
|
2165 |
+
msgstr ""
|
2166 |
+
|
2167 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2168 |
+
#: ../modules/multiple-forms/register-forms.php:138
|
2169 |
+
#: ../modules/user-listing/userlisting.php:1037
|
2170 |
+
msgid "Shortcode"
|
2171 |
+
msgstr "Shortcode"
|
2172 |
+
|
2173 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2174 |
+
#: ../modules/multiple-forms/register-forms.php:159
|
2175 |
+
#: ../modules/user-listing/userlisting.php:1058
|
2176 |
+
msgid "(no title)"
|
2177 |
+
msgstr "(fără titlu)"
|
2178 |
+
|
2179 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2180 |
+
#: ../modules/multiple-forms/register-forms.php:178
|
2181 |
+
#: ../modules/user-listing/userlisting.php:1078
|
2182 |
+
msgid "The shortcode will be available after you publish this form."
|
2183 |
+
msgstr "Shortcode-ul va fi disponibil după ce publici acest formular."
|
2184 |
+
|
2185 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2186 |
+
#: ../modules/multiple-forms/register-forms.php:180
|
2187 |
+
#: ../modules/user-listing/userlisting.php:1080
|
2188 |
+
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2189 |
+
msgstr "Folosește acest shortcode pe pagina pe care vrei să fie afișat formularul:"
|
2190 |
+
|
2191 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2192 |
+
#: ../modules/multiple-forms/register-forms.php:184
|
2193 |
+
#: ../modules/user-listing/userlisting.php:1084
|
2194 |
+
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2195 |
+
msgstr "<span style=\"color:red;\">Notă:</span> schimbarea titlului formularului va schimba și shortcode-ul!"
|
2196 |
+
|
2197 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2198 |
+
#: ../modules/multiple-forms/register-forms.php:190
|
2199 |
+
#: ../modules/user-listing/userlisting.php:1098
|
2200 |
+
msgid "Form Shortcode"
|
2201 |
+
msgstr "Formular shortcode"
|
2202 |
+
|
2203 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:206
|
2204 |
+
#: ../modules/multiple-forms/register-forms.php:230
|
2205 |
+
msgid "Whether to redirect the user to a specific page or not"
|
2206 |
+
msgstr "Dacă utilizatorul va fi redirecționat către o pagină specifică sau nu"
|
2207 |
+
|
2208 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:207
|
2209 |
+
#: ../modules/multiple-forms/register-forms.php:231
|
2210 |
+
msgid "Display Messages"
|
2211 |
+
msgstr "Afișează mesaje"
|
2212 |
+
|
2213 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:207
|
2214 |
+
#: ../modules/multiple-forms/register-forms.php:231
|
2215 |
+
msgid "Allowed time to display any success messages (in seconds)"
|
2216 |
+
msgstr "Timp permis pentru afișarea mesajelor de succes (în secunde)"
|
2217 |
+
|
2218 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:208
|
2219 |
+
msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
|
2220 |
+
msgstr "Specifică URL-ul paginii către care utilizatorii vor fi redirecționați după actualizarea profilului folosind acest formular <br/> Folosește formatul următor: http://www.mysite.com"
|
2221 |
+
|
2222 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:215
|
2223 |
+
msgid "After Profile Update..."
|
2224 |
+
msgstr "După actualizarea profilului..."
|
2225 |
+
|
2226 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:239
|
2227 |
+
#: ../modules/multiple-forms/register-forms.php:260
|
2228 |
+
msgid "Add New Field to the List"
|
2229 |
+
msgstr "Adaugă în listă un nou câmp "
|
2230 |
+
|
2231 |
+
#: ../modules/multiple-forms/edit-profile-forms.php:243
|
2232 |
+
#: ../modules/multiple-forms/register-forms.php:264
|
2233 |
+
msgid "Choose one of the supported fields you manage <a href=\""
|
2234 |
+
msgstr "Alege unul dintre câmpurile acceptate pe care le gestionezi <a href=\""
|
2235 |
+
|
2236 |
+
#: ../modules/multiple-forms/multiple-forms.php:407
|
2237 |
+
msgid "<pre>Title (Type)</pre>"
|
2238 |
+
msgstr "<pre>Titlu (Tastează)</pre>"
|
2239 |
+
|
2240 |
+
#: ../modules/multiple-forms/multiple-forms.php:233
|
2241 |
+
msgid "You need to specify the title of the form before creating it"
|
2242 |
+
msgstr "Trebuie să specifici titlul formularului înainte de crearea lui"
|
2243 |
+
|
2244 |
+
#: ../modules/multiple-forms/register-forms.php:11
|
2245 |
+
#: ../modules/multiple-forms/register-forms.php:12
|
2246 |
+
msgid "Registration Form"
|
2247 |
+
msgstr "Formular de inregistrare"
|
2248 |
+
|
2249 |
+
#: ../modules/multiple-forms/register-forms.php:14
|
2250 |
+
msgid "Add new Registration Form"
|
2251 |
+
msgstr "Adaugă un nou formular de înregistrare "
|
2252 |
+
|
2253 |
+
#: ../modules/multiple-forms/register-forms.php:15
|
2254 |
+
msgid "Edit the Registration Forms"
|
2255 |
+
msgstr "Editează formularele de înregistrare "
|
2256 |
+
|
2257 |
+
#: ../modules/multiple-forms/register-forms.php:16
|
2258 |
+
msgid "New Registration Form"
|
2259 |
+
msgstr "Formular nou de înregistrare "
|
2260 |
+
|
2261 |
+
#: ../modules/multiple-forms/register-forms.php:17
|
2262 |
+
#: ../modules/multiple-forms/register-forms.php:23
|
2263 |
+
msgid "Registration Forms"
|
2264 |
+
msgstr "Formulare înregistrare "
|
2265 |
+
|
2266 |
+
#: ../modules/multiple-forms/register-forms.php:18
|
2267 |
+
msgid "View the Registration Form"
|
2268 |
+
msgstr "Vizualizează formularul de înregistrare "
|
2269 |
+
|
2270 |
+
#: ../modules/multiple-forms/register-forms.php:19
|
2271 |
+
msgid "Search the Registration Forms"
|
2272 |
+
msgstr "Caută formularele de înregistrare "
|
2273 |
+
|
2274 |
+
#: ../modules/multiple-forms/register-forms.php:20
|
2275 |
+
msgid "No Registration Form found"
|
2276 |
+
msgstr "Nu s-au găsit formulare de înregistrare "
|
2277 |
+
|
2278 |
+
#: ../modules/multiple-forms/register-forms.php:21
|
2279 |
+
msgid "No Registration Forms found in trash"
|
2280 |
+
msgstr ""
|
2281 |
+
|
2282 |
+
#: ../modules/multiple-forms/register-forms.php:219
|
2283 |
+
msgid "Default Role"
|
2284 |
+
msgstr "Rol predefinit"
|
2285 |
+
|
2286 |
+
#: ../modules/multiple-forms/register-forms.php:228
|
2287 |
+
msgid "Set Role"
|
2288 |
+
msgstr "Stabilește rol"
|
2289 |
+
|
2290 |
+
#: ../modules/multiple-forms/register-forms.php:228
|
2291 |
+
msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
|
2292 |
+
msgstr "Alege rolul pe care utilizatorul îl va avea după înregistrare <br/> Dacă nu se specifică, setările predefinite de rol din Wordpress vor fi activate"
|
2293 |
+
|
2294 |
+
#: ../modules/multiple-forms/register-forms.php:229
|
2295 |
+
msgid "Automatically Log In"
|
2296 |
+
msgstr "Logare automată"
|
2297 |
+
|
2298 |
+
#: ../modules/multiple-forms/register-forms.php:229
|
2299 |
+
msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
|
2300 |
+
msgstr "Dacă noul utilizator se poate loga automat sau nu <br/> Funcționează doar pentru site-uri singulare care nu au activate opțiunile \"aprobare administrator\" sau \"confirmare e-mail\" <br/> ATENȚIE: Caching-ul formularului de înregistrare va face ca logarea automată să nu funcționeze "
|
2301 |
+
|
2302 |
+
#: ../modules/multiple-forms/register-forms.php:232
|
2303 |
+
msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
|
2304 |
+
msgstr "Specifică URL-ul paginii către care utilizatorii vor fi redirecționați după ce se înregistrează cu acest formular <br/> Folosește următorul format: http://www.mysite.com"
|
2305 |
+
|
2306 |
+
#: ../modules/multiple-forms/register-forms.php:238
|
2307 |
+
msgid "After Registration..."
|
2308 |
+
msgstr "După înregistrare "
|
2309 |
+
|
2310 |
+
#: ../modules/user-listing/class-userlisting.php:461
|
2311 |
+
#: ../modules/user-listing/userlisting.php:632
|
2312 |
+
#: ../modules/user-listing/userlisting.php:850
|
2313 |
+
#: ../modules/user-listing/userlisting.php:893
|
2314 |
+
#: ../modules/user-listing/userlisting.php:1217
|
2315 |
+
msgid "Search Users by All Fields"
|
2316 |
+
msgstr "Caută utilizatorii folosind toate câmpurile "
|
2317 |
+
|
2318 |
+
#: ../modules/user-listing/userlisting.php:14
|
2319 |
+
msgid "Add new User Listing"
|
2320 |
+
msgstr "Adaugă o noua listă de utilizatori"
|
2321 |
+
|
2322 |
+
#: ../modules/user-listing/userlisting.php:15
|
2323 |
+
msgid "Edit the User Listing"
|
2324 |
+
msgstr "Editează lista de utilizatori"
|
2325 |
+
|
2326 |
+
#: ../modules/user-listing/userlisting.php:16
|
2327 |
+
msgid "New User Listing"
|
2328 |
+
msgstr "Nouă lista de utilizatori"
|
2329 |
+
|
2330 |
+
#: ../modules/user-listing/userlisting.php:18
|
2331 |
+
msgid "View the User Listing"
|
2332 |
+
msgstr "Vizualizează lista de utilizatori"
|
2333 |
+
|
2334 |
+
#: ../modules/user-listing/userlisting.php:19
|
2335 |
+
msgid "Search the User Listing"
|
2336 |
+
msgstr "Caută lista de utilizatori"
|
2337 |
+
|
2338 |
+
#: ../modules/user-listing/userlisting.php:20
|
2339 |
+
msgid "No User Listing found"
|
2340 |
+
msgstr "Nu a fost găsită lista de utilizatori"
|
2341 |
+
|
2342 |
+
#: ../modules/user-listing/userlisting.php:21
|
2343 |
+
msgid "No User Listing found in trash"
|
2344 |
+
msgstr ""
|
2345 |
+
|
2346 |
+
#: ../modules/user-listing/userlisting.php:97
|
2347 |
+
msgid "Display name as"
|
2348 |
+
msgstr "Afișează nume ca"
|
2349 |
+
|
2350 |
+
#: ../modules/user-listing/userlisting.php:110
|
2351 |
+
msgid "Url"
|
2352 |
+
msgstr "Url"
|
2353 |
+
|
2354 |
+
#: ../modules/user-listing/userlisting.php:118
|
2355 |
+
#: ../modules/user-listing/userlisting.php:1126
|
2356 |
+
msgid "Registration Date"
|
2357 |
+
msgstr "Data înregistrării "
|
2358 |
+
|
2359 |
+
#: ../modules/user-listing/userlisting.php:119
|
2360 |
+
#: ../modules/user-listing/userlisting.php:1130
|
2361 |
+
msgid "Number of Posts"
|
2362 |
+
msgstr "Număr de postări"
|
2363 |
+
|
2364 |
+
#: ../modules/user-listing/userlisting.php:123
|
2365 |
+
msgid "More Info"
|
2366 |
+
msgstr "Mai multe informații "
|
2367 |
+
|
2368 |
+
#: ../modules/user-listing/userlisting.php:124
|
2369 |
+
msgid "More Info Url"
|
2370 |
+
msgstr "URL pentru mai multe informații "
|
2371 |
+
|
2372 |
+
#: ../modules/user-listing/userlisting.php:125
|
2373 |
+
msgid "Avatar or Gravatar"
|
2374 |
+
msgstr "Avatar sau Gravatar"
|
2375 |
+
|
2376 |
+
#: ../modules/user-listing/userlisting.php:153
|
2377 |
+
msgid "Meta Variables"
|
2378 |
+
msgstr "Variabile Meta"
|
2379 |
+
|
2380 |
+
#: ../modules/user-listing/userlisting.php:159
|
2381 |
+
msgid "Sort Variables"
|
2382 |
+
msgstr "Sortează variabile"
|
2383 |
+
|
2384 |
+
#: ../modules/user-listing/userlisting.php:163
|
2385 |
+
#: ../modules/user-listing/userlisting.php:190
|
2386 |
+
msgid "Extra Functions"
|
2387 |
+
msgstr "Funcții extra "
|
2388 |
+
|
2389 |
+
#: ../modules/user-listing/userlisting.php:165
|
2390 |
+
msgid "Pagination"
|
2391 |
+
msgstr "Paginare"
|
2392 |
+
|
2393 |
+
#: ../modules/user-listing/userlisting.php:166
|
2394 |
+
msgid "Search all Fields"
|
2395 |
+
msgstr "Caută toate câmpurile "
|
2396 |
+
|
2397 |
+
#: ../modules/user-listing/userlisting.php:192
|
2398 |
+
msgid "Go Back Link"
|
2399 |
+
msgstr "Link de mers înapoi"
|
2400 |
+
|
2401 |
+
#: ../modules/user-listing/userlisting.php:210
|
2402 |
+
msgid "All-userlisting Template"
|
2403 |
+
msgstr ""
|
2404 |
+
|
2405 |
+
#: ../modules/user-listing/userlisting.php:213
|
2406 |
+
msgid "Single-userlisting Template"
|
2407 |
+
msgstr ""
|
2408 |
+
|
2409 |
+
#: ../modules/user-listing/userlisting.php:330
|
2410 |
+
msgid "You do not have permission to view this user list"
|
2411 |
+
msgstr "Nu ai permisiunea de a vizualiza această listă de utilizatori "
|
2412 |
+
|
2413 |
+
#: ../modules/user-listing/userlisting.php:343
|
2414 |
+
msgid "You do not have the required user role to view this user list"
|
2415 |
+
msgstr "Nu ai rolul de utilizator necesar pentru a vizualiza această listă de utilizatori"
|
2416 |
+
|
2417 |
+
#: ../modules/user-listing/userlisting.php:525
|
2418 |
+
msgid "First/Lastname"
|
2419 |
+
msgstr "Prenume/Nume"
|
2420 |
+
|
2421 |
+
#: ../modules/user-listing/userlisting.php:531
|
2422 |
+
msgid "Sign-up Date"
|
2423 |
+
msgstr "Dată înregistrare "
|
2424 |
+
|
2425 |
+
#: ../modules/user-listing/userlisting.php:540
|
2426 |
+
#: ../modules/user-listing/userlisting.php:1129
|
2427 |
+
msgid "Display Name"
|
2428 |
+
msgstr "Nume afișat "
|
2429 |
+
|
2430 |
+
#: ../modules/user-listing/userlisting.php:549
|
2431 |
+
msgid "Posts"
|
2432 |
+
msgstr "Postări "
|
2433 |
+
|
2434 |
+
#: ../modules/user-listing/userlisting.php:552
|
2435 |
+
#: ../modules/user-listing/userlisting.php:1134
|
2436 |
+
msgid "Aim"
|
2437 |
+
msgstr "Aim"
|
2438 |
+
|
2439 |
+
#: ../modules/user-listing/userlisting.php:555
|
2440 |
+
#: ../modules/user-listing/userlisting.php:1135
|
2441 |
+
msgid "Yim"
|
2442 |
+
msgstr "Yim"
|
2443 |
+
|
2444 |
+
#: ../modules/user-listing/userlisting.php:558
|
2445 |
+
#: ../modules/user-listing/userlisting.php:1136
|
2446 |
+
msgid "Jabber"
|
2447 |
+
msgstr "Jabber"
|
2448 |
+
|
2449 |
+
#: ../modules/user-listing/userlisting.php:709
|
2450 |
+
msgid "Click here to see more information about this user"
|
2451 |
+
msgstr "Apasă aici pentru a vedea mai multe informații despre acest utilizator. "
|
2452 |
+
|
2453 |
+
#: ../modules/user-listing/userlisting.php:709
|
2454 |
+
msgid "More..."
|
2455 |
+
msgstr "Mai mult..."
|
2456 |
+
|
2457 |
+
#: ../modules/user-listing/userlisting.php:712
|
2458 |
+
msgid "Click here to see more information about this user."
|
2459 |
+
msgstr "Apasă aici pentru a vedea mai multe informații despre acest utilizator."
|
2460 |
+
|
2461 |
+
#: ../modules/user-listing/userlisting.php:804
|
2462 |
+
#: ../modules/user-listing/userlisting.php:807
|
2463 |
+
msgid "Click here to go back"
|
2464 |
+
msgstr "Apasă aici pentru a te întoarce"
|
2465 |
+
|
2466 |
+
#: ../modules/user-listing/userlisting.php:804
|
2467 |
+
msgid "Back"
|
2468 |
+
msgstr "Înapoi "
|
2469 |
+
|
2470 |
+
#: ../modules/user-listing/userlisting.php:837
|
2471 |
+
msgid "«« First"
|
2472 |
+
msgstr "«« Primul "
|
2473 |
+
|
2474 |
+
#: ../modules/user-listing/userlisting.php:838
|
2475 |
+
msgid "« Prev"
|
2476 |
+
msgstr "« Anterior "
|
2477 |
+
|
2478 |
+
#: ../modules/user-listing/userlisting.php:839
|
2479 |
+
msgid "Next » "
|
2480 |
+
msgstr "Următorul » "
|
2481 |
+
|
2482 |
+
#: ../modules/user-listing/userlisting.php:840
|
2483 |
+
msgid "Last »»"
|
2484 |
+
msgstr "Ultimul »»"
|
2485 |
+
|
2486 |
+
#: ../modules/user-listing/userlisting.php:869
|
2487 |
+
msgid "You don't have any pagination settings on this userlisting!"
|
2488 |
+
msgstr "Nu ai nicio setare de paginare pentru acestă listă de utilizatori!"
|
2489 |
+
|
2490 |
+
#: ../modules/user-listing/userlisting.php:910
|
2491 |
+
msgid "Search"
|
2492 |
+
msgstr "Caută"
|
2493 |
+
|
2494 |
+
#: ../modules/user-listing/userlisting.php:911
|
2495 |
+
msgid "Clear Results"
|
2496 |
+
msgstr "Șterge rezultatele "
|
2497 |
+
|
2498 |
+
#: ../modules/user-listing/userlisting.php:1087
|
2499 |
+
msgid "Extra shortcode parameters"
|
2500 |
+
msgstr "Parametri extra shortcode"
|
2501 |
+
|
2502 |
+
#: ../modules/user-listing/userlisting.php:1089
|
2503 |
+
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2504 |
+
msgstr "afișează utilizatorii ca având a anumită valoare meta într-un anumit câmp meta (extra)"
|
2505 |
+
|
2506 |
+
#: ../modules/user-listing/userlisting.php:1090
|
2507 |
+
msgid "Example:"
|
2508 |
+
msgstr "Exemplu:"
|
2509 |
+
|
2510 |
+
#: ../modules/user-listing/userlisting.php:1092
|
2511 |
+
msgid "Remember though, that the field-value combination must exist in the database."
|
2512 |
+
msgstr "Adu-ți aminte, combinația valoare-câmp trebuie să existe în baza de date. "
|
2513 |
+
|
2514 |
+
#: ../modules/user-listing/userlisting.php:1146
|
2515 |
+
msgid "Random (very slow on large databases > 10K user)"
|
2516 |
+
msgstr "Aleator (foarte încet pentru baze de date mari > 10 000 utilizatori)"
|
2517 |
+
|
2518 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2519 |
+
msgid "Roles to Display"
|
2520 |
+
msgstr "Roluri pentru afișare "
|
2521 |
+
|
2522 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2523 |
+
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2524 |
+
msgstr "Restricționează lista de utilizatori doar pentru rolurile selectate <br/> În lipsa unei selecții, se activează opțiunile predefinite pentru toate rolurile existente"
|
2525 |
+
|
2526 |
+
#: ../modules/user-listing/userlisting.php:1160
|
2527 |
+
msgid "Number of Users/Page"
|
2528 |
+
msgstr "Număr de utilizatori/pagină"
|
2529 |
+
|
2530 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2531 |
+
msgid "Default Sorting Criteria"
|
2532 |
+
msgstr "Criterii de sortare prestabilite "
|
2533 |
+
|
2534 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2535 |
+
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2536 |
+
msgstr "Predefineşte criteriile de sortare <br/> Pot fi schimbate temporar pentru fiecare sesiune nouă"
|
2537 |
+
|
2538 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2539 |
+
msgid "Default Sorting Order"
|
2540 |
+
msgstr "Ordine de sortare predefinită"
|
2541 |
+
|
2542 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2543 |
+
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2544 |
+
msgstr "Predefinește ordinea de sortare <br/> Poate fi schimbată temporar pentru fiecare sesiune nouă"
|
2545 |
+
|
2546 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2547 |
+
msgid "Avatar Size (All-userlisting)"
|
2548 |
+
msgstr "Dimensiune Avatar (Toată lista de utilizatori)"
|
2549 |
+
|
2550 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2551 |
+
msgid "Set the avatar size on the all-userlisting only"
|
2552 |
+
msgstr "Stabilește dimensiunea avatarului în template-ul care listează toți utilizatorii"
|
2553 |
+
|
2554 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2555 |
+
msgid "Avatar Size (Single-userlisting)"
|
2556 |
+
msgstr "Dimensiune Avatar (Template pentru o singură persoană)"
|
2557 |
+
|
2558 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2559 |
+
msgid "Set the avatar size on the single-userlisting only"
|
2560 |
+
msgstr "Stabilește dimensiunea avatarului în template-ul pentru o singură persoană"
|
2561 |
+
|
2562 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2563 |
+
msgid "Visible only to logged in users?"
|
2564 |
+
msgstr "Vizibil doar pentru utilizatorii logați?"
|
2565 |
+
|
2566 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2567 |
+
msgid "The userlisting will only be visible only to the logged in users"
|
2568 |
+
msgstr "Lista utilizatorilor va fi vizibilă doar de către utilizatorii logati"
|
2569 |
+
|
2570 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2571 |
+
msgid "Visible to following Roles"
|
2572 |
+
msgstr "Vizibil de către rolurile urmatoare"
|
2573 |
+
|
2574 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2575 |
+
msgid "The userlisting will only be visible to the following roles"
|
2576 |
+
msgstr "Lista utilizatorilor va fi vizibilă de către rolurile urmatoare"
|
2577 |
+
|
2578 |
+
#: ../modules/user-listing/userlisting.php:1172
|
2579 |
+
msgid "Userlisting Settings"
|
2580 |
+
msgstr "Setări lista utilizatori"
|
2581 |
+
|
2582 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2583 |
+
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2584 |
+
msgstr "Trebuie să activezi opțiunea Lista Utilizatori din tab-ul \"Module\""
|
2585 |
+
|
2586 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2587 |
+
msgid "You can find it in the Profile Builder menu."
|
2588 |
+
msgstr "Îl puteți găsi în meniul Profile Builder."
|
2589 |
+
|
2590 |
+
#: ../modules/user-listing/userlisting.php:1343
|
2591 |
+
msgid "No results found!"
|
2592 |
+
msgstr "Nu există rezultate!"
|
translation/profilebuilder-zh_CN.mo
CHANGED
Binary file
|
translation/profilebuilder-zh_CN.po
CHANGED
@@ -10,6 +10,22 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
14 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
15 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
@@ -54,19 +70,19 @@ msgstr ""
|
|
54 |
msgid "1 item"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../features/functions.php:
|
58 |
msgid "Very Weak"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../features/functions.php:
|
62 |
msgid "This field is required"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../features/functions.php:
|
66 |
msgid "Cancel"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../features/functions.php:
|
70 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
71 |
msgstr ""
|
72 |
|
@@ -120,7 +136,7 @@ msgstr ""
|
|
120 |
msgid "Choose..."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../modules/user-listing/userlisting.php:
|
124 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
125 |
msgstr ""
|
126 |
|
@@ -152,8 +168,8 @@ msgstr "显示"
|
|
152 |
msgid "Hide"
|
153 |
msgstr "隐藏"
|
154 |
|
155 |
-
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:
|
156 |
-
#: ../admin/register-version.php:81 ../features/functions.php:
|
157 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
158 |
#: ../modules/modules.php:142
|
159 |
msgid "Save Changes"
|
@@ -177,17 +193,17 @@ msgid "Very weak"
|
|
177 |
msgstr "非常弱"
|
178 |
|
179 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
180 |
-
#: ../features/functions.php:
|
181 |
msgid "Weak"
|
182 |
msgstr "弱"
|
183 |
|
184 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
185 |
-
#: ../features/functions.php:
|
186 |
msgid "Medium"
|
187 |
msgstr "中"
|
188 |
|
189 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
190 |
-
#: ../features/functions.php:
|
191 |
msgid "Strong"
|
192 |
msgstr "强"
|
193 |
|
@@ -445,7 +461,7 @@ msgstr "在前端载入 Profile Builder 的CSS文件:"
|
|
445 |
#: ../admin/general-settings.php:114
|
446 |
#: ../modules/multiple-forms/register-forms.php:229
|
447 |
#: ../modules/multiple-forms/register-forms.php:230
|
448 |
-
#: ../modules/user-listing/userlisting.php:
|
449 |
msgid "Yes"
|
450 |
msgstr "是"
|
451 |
|
@@ -512,15 +528,15 @@ msgstr "允许用户使用什么登陆:"
|
|
512 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
513 |
#: ../modules/email-customizer/email-customizer.php:28
|
514 |
#: ../modules/user-listing/userlisting.php:94
|
515 |
-
#: ../modules/user-listing/userlisting.php:
|
516 |
-
#: ../modules/user-listing/userlisting.php:
|
517 |
msgid "Username"
|
518 |
msgstr "姓名"
|
519 |
|
520 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
521 |
#: ../modules/email-customizer/email-customizer.php:29
|
522 |
-
#: ../modules/user-listing/userlisting.php:
|
523 |
-
#: ../modules/user-listing/userlisting.php:
|
524 |
msgid "Email"
|
525 |
msgstr "电子邮件"
|
526 |
|
@@ -738,7 +754,7 @@ msgstr "名字"
|
|
738 |
msgid "Last Name"
|
739 |
msgstr "姓氏"
|
740 |
|
741 |
-
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:
|
742 |
msgid "Nickname"
|
743 |
msgstr "昵称"
|
744 |
|
@@ -760,8 +776,8 @@ msgstr "电子邮件"
|
|
760 |
#: ../admin/manage-fields.php:140
|
761 |
#: ../modules/email-customizer/email-customizer.php:31
|
762 |
#: ../modules/user-listing/userlisting.php:103
|
763 |
-
#: ../modules/user-listing/userlisting.php:
|
764 |
-
#: ../modules/user-listing/userlisting.php:
|
765 |
msgid "Website"
|
766 |
msgstr "站点"
|
767 |
|
@@ -782,8 +798,8 @@ msgid "About Yourself"
|
|
782 |
msgstr "关于您自己"
|
783 |
|
784 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
785 |
-
#: ../modules/user-listing/userlisting.php:
|
786 |
-
#: ../modules/user-listing/userlisting.php:
|
787 |
msgid "Biographical Info"
|
788 |
msgstr "个人说明"
|
789 |
|
@@ -872,7 +888,7 @@ msgstr "<pre>标题</pre><pre>类型</pre><pre>Meta Name</pre><pre class=\"wppb-
|
|
872 |
#: ../admin/manage-fields.php:500
|
873 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
874 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
875 |
-
#: ../features/functions.php:
|
876 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
877 |
msgid "Edit"
|
878 |
msgstr "编辑"
|
@@ -884,7 +900,7 @@ msgstr "编辑"
|
|
884 |
#: ../features/admin-approval/class-admin-approval.php:235
|
885 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
886 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
887 |
-
#: ../features/functions.php:
|
888 |
msgid "Delete"
|
889 |
msgstr "删除"
|
890 |
|
@@ -933,7 +949,7 @@ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
|
933 |
msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
934 |
|
935 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
936 |
-
#: ../features/functions.php:
|
937 |
msgid "Content"
|
938 |
msgstr "内容"
|
939 |
|
@@ -1026,14 +1042,10 @@ msgstr "用户验证失败 - 头像没有被删除!"
|
|
1026 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1027 |
msgstr "用户验证失败 - 附件没有被删除!"
|
1028 |
|
1029 |
-
#: ../features/functions.php:
|
1030 |
msgid "Strength indicator"
|
1031 |
msgstr "强度指标"
|
1032 |
|
1033 |
-
#: ../features/functions.php:482
|
1034 |
-
msgid "Minimum length of "
|
1035 |
-
msgstr "最小长度"
|
1036 |
-
|
1037 |
#: ../features/admin-approval/admin-approval.php:7
|
1038 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1039 |
msgid "Admin Approval"
|
@@ -1143,14 +1155,14 @@ msgid "Approve"
|
|
1143 |
msgstr "允许"
|
1144 |
|
1145 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1146 |
-
#: ../modules/user-listing/userlisting.php:
|
1147 |
-
#: ../modules/user-listing/userlisting.php:
|
1148 |
msgid "Firstname"
|
1149 |
msgstr "名子"
|
1150 |
|
1151 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1152 |
-
#: ../modules/user-listing/userlisting.php:
|
1153 |
-
#: ../modules/user-listing/userlisting.php:
|
1154 |
msgid "Lastname"
|
1155 |
msgstr "姓氏"
|
1156 |
|
@@ -1604,45 +1616,45 @@ msgstr "用户名已经存在。"
|
|
1604 |
msgid "This username is already reserved to be used soon."
|
1605 |
msgstr "这个用户名已经被保留。"
|
1606 |
|
1607 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1608 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1609 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1610 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1611 |
msgid "max upload size"
|
1612 |
msgstr "最大上传大小"
|
1613 |
|
1614 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1615 |
msgid "Current avatar: No uploaded avatar"
|
1616 |
msgstr "当前头像:没有上传头像"
|
1617 |
|
1618 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1619 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1620 |
msgid "Avatar"
|
1621 |
msgstr "头像"
|
1622 |
|
1623 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1624 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1625 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1626 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1627 |
msgid "Click to see the current avatar"
|
1628 |
msgstr "点击查看当前头像"
|
1629 |
|
1630 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1631 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1632 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1633 |
msgstr "头像不能被删除(它被标记为只允许管理员操作)"
|
1634 |
|
1635 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1636 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1637 |
msgid "Are you sure you want to delete this avatar?"
|
1638 |
msgstr "您确定要删除这个头像?"
|
1639 |
|
1640 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1641 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1642 |
msgid "Click to delete the current avatar"
|
1643 |
msgstr "点击删除当前头像"
|
1644 |
|
1645 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1646 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1647 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1648 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
@@ -1656,60 +1668,60 @@ msgstr "点击删除当前头像"
|
|
1656 |
msgid "required"
|
1657 |
msgstr "必须"
|
1658 |
|
1659 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1660 |
msgid "Current avatar"
|
1661 |
msgstr "当前头像"
|
1662 |
|
1663 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1664 |
msgid "No uploaded avatar"
|
1665 |
msgstr "没有上传头像"
|
1666 |
|
1667 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1668 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1669 |
msgid "The extension of the file did not match"
|
1670 |
msgstr "文件扩展名不匹配"
|
1671 |
|
1672 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1673 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1674 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1675 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1676 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1677 |
msgstr "文件上传大小限制超过 upload_max_filesize 在 php.ini 的设置"
|
1678 |
|
1679 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1681 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1682 |
msgstr "文件上传方件最大限制超过 MAX_FILE_SIZE 在 php.ini 的设置"
|
1683 |
|
1684 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1685 |
msgid "The file could only partially be uploaded "
|
1686 |
msgstr "文件只能被分段上传"
|
1687 |
|
1688 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1689 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1690 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1691 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1693 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1694 |
msgid "No file was selected"
|
1695 |
msgstr "没有选择文件"
|
1696 |
|
1697 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1698 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1699 |
msgid "The temporary upload folder is missing from the system"
|
1700 |
msgstr "系统丢失临时文件缓存"
|
1701 |
|
1702 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1704 |
msgid "The file failed to write to the disk"
|
1705 |
msgstr "磁盘无法写入文件"
|
1706 |
|
1707 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1708 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1709 |
msgid "A PHP extension stopped the file upload"
|
1710 |
msgstr "一个PHP扩展暂停文件上传"
|
1711 |
|
1712 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1713 |
msgid "Unknown error occurred"
|
1714 |
msgstr "发生未知错误"
|
1715 |
|
@@ -2147,37 +2159,37 @@ msgstr "在回收站中没有编辑个人资料表单"
|
|
2147 |
|
2148 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2149 |
#: ../modules/multiple-forms/register-forms.php:138
|
2150 |
-
#: ../modules/user-listing/userlisting.php:
|
2151 |
msgid "Shortcode"
|
2152 |
msgstr "简码"
|
2153 |
|
2154 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2155 |
#: ../modules/multiple-forms/register-forms.php:159
|
2156 |
-
#: ../modules/user-listing/userlisting.php:
|
2157 |
msgid "(no title)"
|
2158 |
msgstr "(没有标题)"
|
2159 |
|
2160 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2161 |
#: ../modules/multiple-forms/register-forms.php:178
|
2162 |
-
#: ../modules/user-listing/userlisting.php:
|
2163 |
msgid "The shortcode will be available after you publish this form."
|
2164 |
msgstr "简码将在您发布表单后可用。"
|
2165 |
|
2166 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2167 |
#: ../modules/multiple-forms/register-forms.php:180
|
2168 |
-
#: ../modules/user-listing/userlisting.php:
|
2169 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2170 |
msgstr "使用这个简码在页面上,将会获得您想要的表单显示效果:"
|
2171 |
|
2172 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2173 |
#: ../modules/multiple-forms/register-forms.php:184
|
2174 |
-
#: ../modules/user-listing/userlisting.php:
|
2175 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2176 |
msgstr "<span style=\"color:red;\">注意:</span> 改变表单标题也将改变简码!"
|
2177 |
|
2178 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2179 |
#: ../modules/multiple-forms/register-forms.php:190
|
2180 |
-
#: ../modules/user-listing/userlisting.php:
|
2181 |
msgid "Form Shortcode"
|
2182 |
msgstr "表单简码"
|
2183 |
|
@@ -2288,11 +2300,11 @@ msgstr "指定用户注册页面地址将被重定向<br/>使用下列格式: ht
|
|
2288 |
msgid "After Registration..."
|
2289 |
msgstr "注册后…"
|
2290 |
|
2291 |
-
#: ../modules/user-listing/class-userlisting.php:
|
2292 |
-
#: ../modules/user-listing/userlisting.php:
|
2293 |
-
#: ../modules/user-listing/userlisting.php:
|
2294 |
-
#: ../modules/user-listing/userlisting.php:
|
2295 |
-
#: ../modules/user-listing/userlisting.php:
|
2296 |
msgid "Search Users by All Fields"
|
2297 |
msgstr "在所有字段中搜索用户"
|
2298 |
|
@@ -2333,12 +2345,12 @@ msgid "Url"
|
|
2333 |
msgstr "网址"
|
2334 |
|
2335 |
#: ../modules/user-listing/userlisting.php:118
|
2336 |
-
#: ../modules/user-listing/userlisting.php:
|
2337 |
msgid "Registration Date"
|
2338 |
msgstr "注册日期"
|
2339 |
|
2340 |
#: ../modules/user-listing/userlisting.php:119
|
2341 |
-
#: ../modules/user-listing/userlisting.php:
|
2342 |
msgid "Number of Posts"
|
2343 |
msgstr "帖子数"
|
2344 |
|
@@ -2395,179 +2407,179 @@ msgstr "您没有权限查看该用户列表"
|
|
2395 |
msgid "You do not have the required user role to view this user list"
|
2396 |
msgstr "没有所需的用户权限查看用户列表"
|
2397 |
|
2398 |
-
#: ../modules/user-listing/userlisting.php:
|
2399 |
msgid "First/Lastname"
|
2400 |
msgstr "名字/姓氏"
|
2401 |
|
2402 |
-
#: ../modules/user-listing/userlisting.php:
|
2403 |
msgid "Sign-up Date"
|
2404 |
msgstr "注册日期"
|
2405 |
|
2406 |
-
#: ../modules/user-listing/userlisting.php:
|
2407 |
-
#: ../modules/user-listing/userlisting.php:
|
2408 |
msgid "Display Name"
|
2409 |
msgstr "显示名称"
|
2410 |
|
2411 |
-
#: ../modules/user-listing/userlisting.php:
|
2412 |
msgid "Posts"
|
2413 |
msgstr "帖子"
|
2414 |
|
2415 |
-
#: ../modules/user-listing/userlisting.php:
|
2416 |
-
#: ../modules/user-listing/userlisting.php:
|
2417 |
msgid "Aim"
|
2418 |
msgstr "Aim"
|
2419 |
|
2420 |
-
#: ../modules/user-listing/userlisting.php:
|
2421 |
-
#: ../modules/user-listing/userlisting.php:
|
2422 |
msgid "Yim"
|
2423 |
msgstr "Yim"
|
2424 |
|
2425 |
-
#: ../modules/user-listing/userlisting.php:
|
2426 |
-
#: ../modules/user-listing/userlisting.php:
|
2427 |
msgid "Jabber"
|
2428 |
msgstr "Jabber"
|
2429 |
|
2430 |
-
#: ../modules/user-listing/userlisting.php:
|
2431 |
msgid "Click here to see more information about this user"
|
2432 |
msgstr "点击这里查看此用户的更多信息"
|
2433 |
|
2434 |
-
#: ../modules/user-listing/userlisting.php:
|
2435 |
msgid "More..."
|
2436 |
msgstr "更多..."
|
2437 |
|
2438 |
-
#: ../modules/user-listing/userlisting.php:
|
2439 |
msgid "Click here to see more information about this user."
|
2440 |
msgstr "点击这里查看此用户的更多信息。"
|
2441 |
|
2442 |
-
#: ../modules/user-listing/userlisting.php:
|
2443 |
-
#: ../modules/user-listing/userlisting.php:
|
2444 |
msgid "Click here to go back"
|
2445 |
msgstr "点击这里返回"
|
2446 |
|
2447 |
-
#: ../modules/user-listing/userlisting.php:
|
2448 |
msgid "Back"
|
2449 |
msgstr "返回"
|
2450 |
|
2451 |
-
#: ../modules/user-listing/userlisting.php:
|
2452 |
msgid "«« First"
|
2453 |
msgstr "«« 首页"
|
2454 |
|
2455 |
-
#: ../modules/user-listing/userlisting.php:
|
2456 |
msgid "« Prev"
|
2457 |
msgstr "« 上一页"
|
2458 |
|
2459 |
-
#: ../modules/user-listing/userlisting.php:
|
2460 |
msgid "Next » "
|
2461 |
msgstr "下一页 » "
|
2462 |
|
2463 |
-
#: ../modules/user-listing/userlisting.php:
|
2464 |
msgid "Last »»"
|
2465 |
msgstr "最后 »»"
|
2466 |
|
2467 |
-
#: ../modules/user-listing/userlisting.php:
|
2468 |
msgid "You don't have any pagination settings on this userlisting!"
|
2469 |
msgstr "您不需在用户列表中设置分页"
|
2470 |
|
2471 |
-
#: ../modules/user-listing/userlisting.php:
|
2472 |
msgid "Search"
|
2473 |
msgstr "搜索"
|
2474 |
|
2475 |
-
#: ../modules/user-listing/userlisting.php:
|
2476 |
msgid "Clear Results"
|
2477 |
msgstr "清除结果"
|
2478 |
|
2479 |
-
#: ../modules/user-listing/userlisting.php:
|
2480 |
msgid "Extra shortcode parameters"
|
2481 |
msgstr "额外简码参数"
|
2482 |
|
2483 |
-
#: ../modules/user-listing/userlisting.php:
|
2484 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2485 |
msgstr "显示用户在某一(额外)元字段(meta-field)"
|
2486 |
|
2487 |
-
#: ../modules/user-listing/userlisting.php:
|
2488 |
msgid "Example:"
|
2489 |
msgstr "例子:"
|
2490 |
|
2491 |
-
#: ../modules/user-listing/userlisting.php:
|
2492 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2493 |
msgstr "记住,该字段值的组合必须存在于数据库中。"
|
2494 |
|
2495 |
-
#: ../modules/user-listing/userlisting.php:
|
2496 |
msgid "Random (very slow on large databases > 10K user)"
|
2497 |
msgstr "随机 (在大于 10K 的用户数据库中将会很慢 )"
|
2498 |
|
2499 |
-
#: ../modules/user-listing/userlisting.php:
|
2500 |
msgid "Roles to Display"
|
2501 |
msgstr "角色显示:"
|
2502 |
|
2503 |
-
#: ../modules/user-listing/userlisting.php:
|
2504 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2505 |
msgstr "限制用户列表中的特定角色<br/>如果没有指定,默认为全部现有的角色"
|
2506 |
|
2507 |
-
#: ../modules/user-listing/userlisting.php:
|
2508 |
msgid "Number of Users/Page"
|
2509 |
msgstr "用户/页面数"
|
2510 |
|
2511 |
-
#: ../modules/user-listing/userlisting.php:
|
2512 |
msgid "Default Sorting Criteria"
|
2513 |
msgstr "默认分类标准"
|
2514 |
|
2515 |
-
#: ../modules/user-listing/userlisting.php:
|
2516 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2517 |
msgstr "设置默认的排序标准<br/>这可以暂时被每一个新的会话更改"
|
2518 |
|
2519 |
-
#: ../modules/user-listing/userlisting.php:
|
2520 |
msgid "Default Sorting Order"
|
2521 |
msgstr "默认排列顺序"
|
2522 |
|
2523 |
-
#: ../modules/user-listing/userlisting.php:
|
2524 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2525 |
msgstr "设置默认排列顺序<br/>这可以在每个新会话时被改变"
|
2526 |
|
2527 |
-
#: ../modules/user-listing/userlisting.php:
|
2528 |
msgid "Avatar Size (All-userlisting)"
|
2529 |
msgstr "头像大小(所有用户列表)"
|
2530 |
|
2531 |
-
#: ../modules/user-listing/userlisting.php:
|
2532 |
msgid "Set the avatar size on the all-userlisting only"
|
2533 |
msgstr "设置在所有用户列表的头像大小"
|
2534 |
|
2535 |
-
#: ../modules/user-listing/userlisting.php:
|
2536 |
msgid "Avatar Size (Single-userlisting)"
|
2537 |
msgstr "头像大小(单用户列表)"
|
2538 |
|
2539 |
-
#: ../modules/user-listing/userlisting.php:
|
2540 |
msgid "Set the avatar size on the single-userlisting only"
|
2541 |
msgstr "设置在单用户列表的头像大小"
|
2542 |
|
2543 |
-
#: ../modules/user-listing/userlisting.php:
|
2544 |
msgid "Visible only to logged in users?"
|
2545 |
msgstr "只有登录用户可见的?"
|
2546 |
|
2547 |
-
#: ../modules/user-listing/userlisting.php:
|
2548 |
msgid "The userlisting will only be visible only to the logged in users"
|
2549 |
msgstr "用户列表只有登录用户可见的"
|
2550 |
|
2551 |
-
#: ../modules/user-listing/userlisting.php:
|
2552 |
msgid "Visible to following Roles"
|
2553 |
msgstr "以下角色可见"
|
2554 |
|
2555 |
-
#: ../modules/user-listing/userlisting.php:
|
2556 |
msgid "The userlisting will only be visible to the following roles"
|
2557 |
msgstr "用户列表只允许以下角色可见"
|
2558 |
|
2559 |
-
#: ../modules/user-listing/userlisting.php:
|
2560 |
msgid "Userlisting Settings"
|
2561 |
msgstr "用户列表设置"
|
2562 |
|
2563 |
-
#: ../modules/user-listing/userlisting.php:
|
2564 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2565 |
msgstr "您需要激活用户列表功能在 \"模块\" 选项卡!"
|
2566 |
|
2567 |
-
#: ../modules/user-listing/userlisting.php:
|
2568 |
msgid "You can find it in the Profile Builder menu."
|
2569 |
msgstr "你可以在 Profile Builder 菜单中找到它。"
|
2570 |
|
2571 |
-
#: ../modules/user-listing/userlisting.php:
|
2572 |
msgid "No results found!"
|
2573 |
msgstr "无任何结果!"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
13 |
+
#: ../features/functions.php:485
|
14 |
+
msgid "Minimum length of %d characters"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: ../front-end/class-formbuilder.php:93 ../front-end/class-formbuilder.php:96
|
18 |
+
msgid "This message is only visible by administrators"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: ../front-end/extra-fields/avatar/avatar.php:119
|
22 |
+
msgid "The image file set in the %s field for this user could not be found on the server. The default WordPress avatar is being used at the moment."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: ../modules/user-listing/userlisting.php:353
|
26 |
+
msgid "User not found"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
30 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
31 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
70 |
msgid "1 item"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../features/functions.php:471
|
74 |
msgid "Very Weak"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../features/functions.php:559
|
78 |
msgid "This field is required"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../features/functions.php:579
|
82 |
msgid "Cancel"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../features/functions.php:610
|
86 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
87 |
msgstr ""
|
88 |
|
136 |
msgid "Choose..."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: ../modules/user-listing/userlisting.php:1160
|
140 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
141 |
msgstr ""
|
142 |
|
168 |
msgid "Hide"
|
169 |
msgstr "隐藏"
|
170 |
|
171 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:183
|
172 |
+
#: ../admin/register-version.php:81 ../features/functions.php:572
|
173 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
174 |
#: ../modules/modules.php:142
|
175 |
msgid "Save Changes"
|
193 |
msgstr "非常弱"
|
194 |
|
195 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
196 |
+
#: ../features/functions.php:471
|
197 |
msgid "Weak"
|
198 |
msgstr "弱"
|
199 |
|
200 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
201 |
+
#: ../features/functions.php:471
|
202 |
msgid "Medium"
|
203 |
msgstr "中"
|
204 |
|
205 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
206 |
+
#: ../features/functions.php:471
|
207 |
msgid "Strong"
|
208 |
msgstr "强"
|
209 |
|
461 |
#: ../admin/general-settings.php:114
|
462 |
#: ../modules/multiple-forms/register-forms.php:229
|
463 |
#: ../modules/multiple-forms/register-forms.php:230
|
464 |
+
#: ../modules/user-listing/userlisting.php:1165
|
465 |
msgid "Yes"
|
466 |
msgstr "是"
|
467 |
|
528 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
529 |
#: ../modules/email-customizer/email-customizer.php:28
|
530 |
#: ../modules/user-listing/userlisting.php:94
|
531 |
+
#: ../modules/user-listing/userlisting.php:522
|
532 |
+
#: ../modules/user-listing/userlisting.php:1122
|
533 |
msgid "Username"
|
534 |
msgstr "姓名"
|
535 |
|
536 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
537 |
#: ../modules/email-customizer/email-customizer.php:29
|
538 |
+
#: ../modules/user-listing/userlisting.php:528
|
539 |
+
#: ../modules/user-listing/userlisting.php:1123
|
540 |
msgid "Email"
|
541 |
msgstr "电子邮件"
|
542 |
|
754 |
msgid "Last Name"
|
755 |
msgstr "姓氏"
|
756 |
|
757 |
+
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:561
|
758 |
msgid "Nickname"
|
759 |
msgstr "昵称"
|
760 |
|
776 |
#: ../admin/manage-fields.php:140
|
777 |
#: ../modules/email-customizer/email-customizer.php:31
|
778 |
#: ../modules/user-listing/userlisting.php:103
|
779 |
+
#: ../modules/user-listing/userlisting.php:543
|
780 |
+
#: ../modules/user-listing/userlisting.php:1124
|
781 |
msgid "Website"
|
782 |
msgstr "站点"
|
783 |
|
798 |
msgstr "关于您自己"
|
799 |
|
800 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
801 |
+
#: ../modules/user-listing/userlisting.php:546
|
802 |
+
#: ../modules/user-listing/userlisting.php:1125
|
803 |
msgid "Biographical Info"
|
804 |
msgstr "个人说明"
|
805 |
|
888 |
#: ../admin/manage-fields.php:500
|
889 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
890 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
891 |
+
#: ../features/functions.php:593 ../features/functions.php:600
|
892 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
893 |
msgid "Edit"
|
894 |
msgstr "编辑"
|
900 |
#: ../features/admin-approval/class-admin-approval.php:235
|
901 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
902 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
903 |
+
#: ../features/functions.php:586 ../features/functions.php:600
|
904 |
msgid "Delete"
|
905 |
msgstr "删除"
|
906 |
|
949 |
msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
950 |
|
951 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
952 |
+
#: ../features/functions.php:600
|
953 |
msgid "Content"
|
954 |
msgstr "内容"
|
955 |
|
1042 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1043 |
msgstr "用户验证失败 - 附件没有被删除!"
|
1044 |
|
1045 |
+
#: ../features/functions.php:446
|
1046 |
msgid "Strength indicator"
|
1047 |
msgstr "强度指标"
|
1048 |
|
|
|
|
|
|
|
|
|
1049 |
#: ../features/admin-approval/admin-approval.php:7
|
1050 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1051 |
msgid "Admin Approval"
|
1155 |
msgstr "允许"
|
1156 |
|
1157 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1158 |
+
#: ../modules/user-listing/userlisting.php:534
|
1159 |
+
#: ../modules/user-listing/userlisting.php:1127
|
1160 |
msgid "Firstname"
|
1161 |
msgstr "名子"
|
1162 |
|
1163 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1164 |
+
#: ../modules/user-listing/userlisting.php:537
|
1165 |
+
#: ../modules/user-listing/userlisting.php:1128
|
1166 |
msgid "Lastname"
|
1167 |
msgstr "姓氏"
|
1168 |
|
1616 |
msgid "This username is already reserved to be used soon."
|
1617 |
msgstr "这个用户名已经被保留。"
|
1618 |
|
1619 |
+
#: ../front-end/extra-fields/avatar/avatar.php:60
|
1620 |
+
#: ../front-end/extra-fields/avatar/avatar.php:98
|
1621 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1622 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1623 |
msgid "max upload size"
|
1624 |
msgstr "最大上传大小"
|
1625 |
|
1626 |
+
#: ../front-end/extra-fields/avatar/avatar.php:66
|
1627 |
msgid "Current avatar: No uploaded avatar"
|
1628 |
msgstr "当前头像:没有上传头像"
|
1629 |
|
1630 |
+
#: ../front-end/extra-fields/avatar/avatar.php:71
|
1631 |
+
#: ../front-end/extra-fields/avatar/avatar.php:105
|
1632 |
msgid "Avatar"
|
1633 |
msgstr "头像"
|
1634 |
|
1635 |
+
#: ../front-end/extra-fields/avatar/avatar.php:75
|
1636 |
+
#: ../front-end/extra-fields/avatar/avatar.php:80
|
1637 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1638 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1639 |
msgid "Click to see the current avatar"
|
1640 |
msgstr "点击查看当前头像"
|
1641 |
|
1642 |
+
#: ../front-end/extra-fields/avatar/avatar.php:77
|
1643 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1644 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1645 |
msgstr "头像不能被删除(它被标记为只允许管理员操作)"
|
1646 |
|
1647 |
+
#: ../front-end/extra-fields/avatar/avatar.php:82
|
1648 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1649 |
msgid "Are you sure you want to delete this avatar?"
|
1650 |
msgstr "您确定要删除这个头像?"
|
1651 |
|
1652 |
+
#: ../front-end/extra-fields/avatar/avatar.php:83
|
1653 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1654 |
msgid "Click to delete the current avatar"
|
1655 |
msgstr "点击删除当前头像"
|
1656 |
|
1657 |
+
#: ../front-end/extra-fields/avatar/avatar.php:91
|
1658 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1659 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1660 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1668 |
msgid "required"
|
1669 |
msgstr "必须"
|
1670 |
|
1671 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1672 |
msgid "Current avatar"
|
1673 |
msgstr "当前头像"
|
1674 |
|
1675 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1676 |
msgid "No uploaded avatar"
|
1677 |
msgstr "没有上传头像"
|
1678 |
|
1679 |
+
#: ../front-end/extra-fields/avatar/avatar.php:207
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1681 |
msgid "The extension of the file did not match"
|
1682 |
msgstr "文件扩展名不匹配"
|
1683 |
|
1684 |
+
#: ../front-end/extra-fields/avatar/avatar.php:210
|
1685 |
+
#: ../front-end/extra-fields/avatar/avatar.php:213
|
1686 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1687 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1688 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1689 |
msgstr "文件上传大小限制超过 upload_max_filesize 在 php.ini 的设置"
|
1690 |
|
1691 |
+
#: ../front-end/extra-fields/avatar/avatar.php:216
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1693 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1694 |
msgstr "文件上传方件最大限制超过 MAX_FILE_SIZE 在 php.ini 的设置"
|
1695 |
|
1696 |
+
#: ../front-end/extra-fields/avatar/avatar.php:219
|
1697 |
msgid "The file could only partially be uploaded "
|
1698 |
msgstr "文件只能被分段上传"
|
1699 |
|
1700 |
+
#: ../front-end/extra-fields/avatar/avatar.php:222
|
1701 |
+
#: ../front-end/extra-fields/avatar/avatar.php:243
|
1702 |
+
#: ../front-end/extra-fields/avatar/avatar.php:246
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1704 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1705 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1706 |
msgid "No file was selected"
|
1707 |
msgstr "没有选择文件"
|
1708 |
|
1709 |
+
#: ../front-end/extra-fields/avatar/avatar.php:225
|
1710 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1711 |
msgid "The temporary upload folder is missing from the system"
|
1712 |
msgstr "系统丢失临时文件缓存"
|
1713 |
|
1714 |
+
#: ../front-end/extra-fields/avatar/avatar.php:228
|
1715 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1716 |
msgid "The file failed to write to the disk"
|
1717 |
msgstr "磁盘无法写入文件"
|
1718 |
|
1719 |
+
#: ../front-end/extra-fields/avatar/avatar.php:231
|
1720 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1721 |
msgid "A PHP extension stopped the file upload"
|
1722 |
msgstr "一个PHP扩展暂停文件上传"
|
1723 |
|
1724 |
+
#: ../front-end/extra-fields/avatar/avatar.php:234
|
1725 |
msgid "Unknown error occurred"
|
1726 |
msgstr "发生未知错误"
|
1727 |
|
2159 |
|
2160 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2161 |
#: ../modules/multiple-forms/register-forms.php:138
|
2162 |
+
#: ../modules/user-listing/userlisting.php:1037
|
2163 |
msgid "Shortcode"
|
2164 |
msgstr "简码"
|
2165 |
|
2166 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2167 |
#: ../modules/multiple-forms/register-forms.php:159
|
2168 |
+
#: ../modules/user-listing/userlisting.php:1058
|
2169 |
msgid "(no title)"
|
2170 |
msgstr "(没有标题)"
|
2171 |
|
2172 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2173 |
#: ../modules/multiple-forms/register-forms.php:178
|
2174 |
+
#: ../modules/user-listing/userlisting.php:1078
|
2175 |
msgid "The shortcode will be available after you publish this form."
|
2176 |
msgstr "简码将在您发布表单后可用。"
|
2177 |
|
2178 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2179 |
#: ../modules/multiple-forms/register-forms.php:180
|
2180 |
+
#: ../modules/user-listing/userlisting.php:1080
|
2181 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2182 |
msgstr "使用这个简码在页面上,将会获得您想要的表单显示效果:"
|
2183 |
|
2184 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2185 |
#: ../modules/multiple-forms/register-forms.php:184
|
2186 |
+
#: ../modules/user-listing/userlisting.php:1084
|
2187 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2188 |
msgstr "<span style=\"color:red;\">注意:</span> 改变表单标题也将改变简码!"
|
2189 |
|
2190 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2191 |
#: ../modules/multiple-forms/register-forms.php:190
|
2192 |
+
#: ../modules/user-listing/userlisting.php:1098
|
2193 |
msgid "Form Shortcode"
|
2194 |
msgstr "表单简码"
|
2195 |
|
2300 |
msgid "After Registration..."
|
2301 |
msgstr "注册后…"
|
2302 |
|
2303 |
+
#: ../modules/user-listing/class-userlisting.php:461
|
2304 |
+
#: ../modules/user-listing/userlisting.php:632
|
2305 |
+
#: ../modules/user-listing/userlisting.php:850
|
2306 |
+
#: ../modules/user-listing/userlisting.php:893
|
2307 |
+
#: ../modules/user-listing/userlisting.php:1217
|
2308 |
msgid "Search Users by All Fields"
|
2309 |
msgstr "在所有字段中搜索用户"
|
2310 |
|
2345 |
msgstr "网址"
|
2346 |
|
2347 |
#: ../modules/user-listing/userlisting.php:118
|
2348 |
+
#: ../modules/user-listing/userlisting.php:1126
|
2349 |
msgid "Registration Date"
|
2350 |
msgstr "注册日期"
|
2351 |
|
2352 |
#: ../modules/user-listing/userlisting.php:119
|
2353 |
+
#: ../modules/user-listing/userlisting.php:1130
|
2354 |
msgid "Number of Posts"
|
2355 |
msgstr "帖子数"
|
2356 |
|
2407 |
msgid "You do not have the required user role to view this user list"
|
2408 |
msgstr "没有所需的用户权限查看用户列表"
|
2409 |
|
2410 |
+
#: ../modules/user-listing/userlisting.php:525
|
2411 |
msgid "First/Lastname"
|
2412 |
msgstr "名字/姓氏"
|
2413 |
|
2414 |
+
#: ../modules/user-listing/userlisting.php:531
|
2415 |
msgid "Sign-up Date"
|
2416 |
msgstr "注册日期"
|
2417 |
|
2418 |
+
#: ../modules/user-listing/userlisting.php:540
|
2419 |
+
#: ../modules/user-listing/userlisting.php:1129
|
2420 |
msgid "Display Name"
|
2421 |
msgstr "显示名称"
|
2422 |
|
2423 |
+
#: ../modules/user-listing/userlisting.php:549
|
2424 |
msgid "Posts"
|
2425 |
msgstr "帖子"
|
2426 |
|
2427 |
+
#: ../modules/user-listing/userlisting.php:552
|
2428 |
+
#: ../modules/user-listing/userlisting.php:1134
|
2429 |
msgid "Aim"
|
2430 |
msgstr "Aim"
|
2431 |
|
2432 |
+
#: ../modules/user-listing/userlisting.php:555
|
2433 |
+
#: ../modules/user-listing/userlisting.php:1135
|
2434 |
msgid "Yim"
|
2435 |
msgstr "Yim"
|
2436 |
|
2437 |
+
#: ../modules/user-listing/userlisting.php:558
|
2438 |
+
#: ../modules/user-listing/userlisting.php:1136
|
2439 |
msgid "Jabber"
|
2440 |
msgstr "Jabber"
|
2441 |
|
2442 |
+
#: ../modules/user-listing/userlisting.php:709
|
2443 |
msgid "Click here to see more information about this user"
|
2444 |
msgstr "点击这里查看此用户的更多信息"
|
2445 |
|
2446 |
+
#: ../modules/user-listing/userlisting.php:709
|
2447 |
msgid "More..."
|
2448 |
msgstr "更多..."
|
2449 |
|
2450 |
+
#: ../modules/user-listing/userlisting.php:712
|
2451 |
msgid "Click here to see more information about this user."
|
2452 |
msgstr "点击这里查看此用户的更多信息。"
|
2453 |
|
2454 |
+
#: ../modules/user-listing/userlisting.php:804
|
2455 |
+
#: ../modules/user-listing/userlisting.php:807
|
2456 |
msgid "Click here to go back"
|
2457 |
msgstr "点击这里返回"
|
2458 |
|
2459 |
+
#: ../modules/user-listing/userlisting.php:804
|
2460 |
msgid "Back"
|
2461 |
msgstr "返回"
|
2462 |
|
2463 |
+
#: ../modules/user-listing/userlisting.php:837
|
2464 |
msgid "«« First"
|
2465 |
msgstr "«« 首页"
|
2466 |
|
2467 |
+
#: ../modules/user-listing/userlisting.php:838
|
2468 |
msgid "« Prev"
|
2469 |
msgstr "« 上一页"
|
2470 |
|
2471 |
+
#: ../modules/user-listing/userlisting.php:839
|
2472 |
msgid "Next » "
|
2473 |
msgstr "下一页 » "
|
2474 |
|
2475 |
+
#: ../modules/user-listing/userlisting.php:840
|
2476 |
msgid "Last »»"
|
2477 |
msgstr "最后 »»"
|
2478 |
|
2479 |
+
#: ../modules/user-listing/userlisting.php:869
|
2480 |
msgid "You don't have any pagination settings on this userlisting!"
|
2481 |
msgstr "您不需在用户列表中设置分页"
|
2482 |
|
2483 |
+
#: ../modules/user-listing/userlisting.php:910
|
2484 |
msgid "Search"
|
2485 |
msgstr "搜索"
|
2486 |
|
2487 |
+
#: ../modules/user-listing/userlisting.php:911
|
2488 |
msgid "Clear Results"
|
2489 |
msgstr "清除结果"
|
2490 |
|
2491 |
+
#: ../modules/user-listing/userlisting.php:1087
|
2492 |
msgid "Extra shortcode parameters"
|
2493 |
msgstr "额外简码参数"
|
2494 |
|
2495 |
+
#: ../modules/user-listing/userlisting.php:1089
|
2496 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2497 |
msgstr "显示用户在某一(额外)元字段(meta-field)"
|
2498 |
|
2499 |
+
#: ../modules/user-listing/userlisting.php:1090
|
2500 |
msgid "Example:"
|
2501 |
msgstr "例子:"
|
2502 |
|
2503 |
+
#: ../modules/user-listing/userlisting.php:1092
|
2504 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2505 |
msgstr "记住,该字段值的组合必须存在于数据库中。"
|
2506 |
|
2507 |
+
#: ../modules/user-listing/userlisting.php:1146
|
2508 |
msgid "Random (very slow on large databases > 10K user)"
|
2509 |
msgstr "随机 (在大于 10K 的用户数据库中将会很慢 )"
|
2510 |
|
2511 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2512 |
msgid "Roles to Display"
|
2513 |
msgstr "角色显示:"
|
2514 |
|
2515 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2516 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2517 |
msgstr "限制用户列表中的特定角色<br/>如果没有指定,默认为全部现有的角色"
|
2518 |
|
2519 |
+
#: ../modules/user-listing/userlisting.php:1160
|
2520 |
msgid "Number of Users/Page"
|
2521 |
msgstr "用户/页面数"
|
2522 |
|
2523 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2524 |
msgid "Default Sorting Criteria"
|
2525 |
msgstr "默认分类标准"
|
2526 |
|
2527 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2528 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2529 |
msgstr "设置默认的排序标准<br/>这可以暂时被每一个新的会话更改"
|
2530 |
|
2531 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2532 |
msgid "Default Sorting Order"
|
2533 |
msgstr "默认排列顺序"
|
2534 |
|
2535 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2536 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2537 |
msgstr "设置默认排列顺序<br/>这可以在每个新会话时被改变"
|
2538 |
|
2539 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2540 |
msgid "Avatar Size (All-userlisting)"
|
2541 |
msgstr "头像大小(所有用户列表)"
|
2542 |
|
2543 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2544 |
msgid "Set the avatar size on the all-userlisting only"
|
2545 |
msgstr "设置在所有用户列表的头像大小"
|
2546 |
|
2547 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2548 |
msgid "Avatar Size (Single-userlisting)"
|
2549 |
msgstr "头像大小(单用户列表)"
|
2550 |
|
2551 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2552 |
msgid "Set the avatar size on the single-userlisting only"
|
2553 |
msgstr "设置在单用户列表的头像大小"
|
2554 |
|
2555 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2556 |
msgid "Visible only to logged in users?"
|
2557 |
msgstr "只有登录用户可见的?"
|
2558 |
|
2559 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2560 |
msgid "The userlisting will only be visible only to the logged in users"
|
2561 |
msgstr "用户列表只有登录用户可见的"
|
2562 |
|
2563 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2564 |
msgid "Visible to following Roles"
|
2565 |
msgstr "以下角色可见"
|
2566 |
|
2567 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2568 |
msgid "The userlisting will only be visible to the following roles"
|
2569 |
msgstr "用户列表只允许以下角色可见"
|
2570 |
|
2571 |
+
#: ../modules/user-listing/userlisting.php:1172
|
2572 |
msgid "Userlisting Settings"
|
2573 |
msgstr "用户列表设置"
|
2574 |
|
2575 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2576 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2577 |
msgstr "您需要激活用户列表功能在 \"模块\" 选项卡!"
|
2578 |
|
2579 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2580 |
msgid "You can find it in the Profile Builder menu."
|
2581 |
msgstr "你可以在 Profile Builder 菜单中找到它。"
|
2582 |
|
2583 |
+
#: ../modules/user-listing/userlisting.php:1343
|
2584 |
msgid "No results found!"
|
2585 |
msgstr "无任何结果!"
|
translation/profilebuilder-zh_HK.mo
CHANGED
Binary file
|
translation/profilebuilder-zh_HK.po
CHANGED
@@ -10,6 +10,22 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
14 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
15 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
@@ -54,19 +70,19 @@ msgstr ""
|
|
54 |
msgid "1 item"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../features/functions.php:
|
58 |
msgid "Very Weak"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../features/functions.php:
|
62 |
msgid "This field is required"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../features/functions.php:
|
66 |
msgid "Cancel"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../features/functions.php:
|
70 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
71 |
msgstr ""
|
72 |
|
@@ -120,7 +136,7 @@ msgstr ""
|
|
120 |
msgid "Choose..."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../modules/user-listing/userlisting.php:
|
124 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
125 |
msgstr ""
|
126 |
|
@@ -152,8 +168,8 @@ msgstr "顯示"
|
|
152 |
msgid "Hide"
|
153 |
msgstr "隱藏"
|
154 |
|
155 |
-
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:
|
156 |
-
#: ../admin/register-version.php:81 ../features/functions.php:
|
157 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
158 |
#: ../modules/modules.php:142
|
159 |
msgid "Save Changes"
|
@@ -177,17 +193,17 @@ msgid "Very weak"
|
|
177 |
msgstr "非常弱"
|
178 |
|
179 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
180 |
-
#: ../features/functions.php:
|
181 |
msgid "Weak"
|
182 |
msgstr "弱"
|
183 |
|
184 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
185 |
-
#: ../features/functions.php:
|
186 |
msgid "Medium"
|
187 |
msgstr "中"
|
188 |
|
189 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
190 |
-
#: ../features/functions.php:
|
191 |
msgid "Strong"
|
192 |
msgstr "強"
|
193 |
|
@@ -445,7 +461,7 @@ msgstr "在前端載入 Profile Builder 的CSS文件:"
|
|
445 |
#: ../admin/general-settings.php:114
|
446 |
#: ../modules/multiple-forms/register-forms.php:229
|
447 |
#: ../modules/multiple-forms/register-forms.php:230
|
448 |
-
#: ../modules/user-listing/userlisting.php:
|
449 |
msgid "Yes"
|
450 |
msgstr "是"
|
451 |
|
@@ -512,15 +528,15 @@ msgstr "允許用戶使用什麽登陸:"
|
|
512 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
513 |
#: ../modules/email-customizer/email-customizer.php:28
|
514 |
#: ../modules/user-listing/userlisting.php:94
|
515 |
-
#: ../modules/user-listing/userlisting.php:
|
516 |
-
#: ../modules/user-listing/userlisting.php:
|
517 |
msgid "Username"
|
518 |
msgstr "姓名"
|
519 |
|
520 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
521 |
#: ../modules/email-customizer/email-customizer.php:29
|
522 |
-
#: ../modules/user-listing/userlisting.php:
|
523 |
-
#: ../modules/user-listing/userlisting.php:
|
524 |
msgid "Email"
|
525 |
msgstr "電子郵件"
|
526 |
|
@@ -738,7 +754,7 @@ msgstr "名字"
|
|
738 |
msgid "Last Name"
|
739 |
msgstr "姓氏"
|
740 |
|
741 |
-
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:
|
742 |
msgid "Nickname"
|
743 |
msgstr "昵稱"
|
744 |
|
@@ -760,8 +776,8 @@ msgstr "電子郵件"
|
|
760 |
#: ../admin/manage-fields.php:140
|
761 |
#: ../modules/email-customizer/email-customizer.php:31
|
762 |
#: ../modules/user-listing/userlisting.php:103
|
763 |
-
#: ../modules/user-listing/userlisting.php:
|
764 |
-
#: ../modules/user-listing/userlisting.php:
|
765 |
msgid "Website"
|
766 |
msgstr "站點"
|
767 |
|
@@ -782,8 +798,8 @@ msgid "About Yourself"
|
|
782 |
msgstr "關於您自己"
|
783 |
|
784 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
785 |
-
#: ../modules/user-listing/userlisting.php:
|
786 |
-
#: ../modules/user-listing/userlisting.php:
|
787 |
msgid "Biographical Info"
|
788 |
msgstr "個人說明"
|
789 |
|
@@ -872,7 +888,7 @@ msgstr "<pre>標題</pre><pre>類型</pre><pre>Meta Name</pre><pre class=\"wppb-
|
|
872 |
#: ../admin/manage-fields.php:500
|
873 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
874 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
875 |
-
#: ../features/functions.php:
|
876 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
877 |
msgid "Edit"
|
878 |
msgstr "編輯"
|
@@ -884,7 +900,7 @@ msgstr "編輯"
|
|
884 |
#: ../features/admin-approval/class-admin-approval.php:235
|
885 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
886 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
887 |
-
#: ../features/functions.php:
|
888 |
msgid "Delete"
|
889 |
msgstr "刪除"
|
890 |
|
@@ -933,7 +949,7 @@ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
|
933 |
msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
934 |
|
935 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
936 |
-
#: ../features/functions.php:
|
937 |
msgid "Content"
|
938 |
msgstr "內容"
|
939 |
|
@@ -1026,14 +1042,10 @@ msgstr "用戶驗證失敗 - 頭像沒有被刪除!"
|
|
1026 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1027 |
msgstr "用戶驗證失敗 - 附件沒有被刪除!"
|
1028 |
|
1029 |
-
#: ../features/functions.php:
|
1030 |
msgid "Strength indicator"
|
1031 |
msgstr "強度指標"
|
1032 |
|
1033 |
-
#: ../features/functions.php:482
|
1034 |
-
msgid "Minimum length of "
|
1035 |
-
msgstr "最小長度"
|
1036 |
-
|
1037 |
#: ../features/admin-approval/admin-approval.php:7
|
1038 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1039 |
msgid "Admin Approval"
|
@@ -1143,14 +1155,14 @@ msgid "Approve"
|
|
1143 |
msgstr "允許"
|
1144 |
|
1145 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1146 |
-
#: ../modules/user-listing/userlisting.php:
|
1147 |
-
#: ../modules/user-listing/userlisting.php:
|
1148 |
msgid "Firstname"
|
1149 |
msgstr "名子"
|
1150 |
|
1151 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1152 |
-
#: ../modules/user-listing/userlisting.php:
|
1153 |
-
#: ../modules/user-listing/userlisting.php:
|
1154 |
msgid "Lastname"
|
1155 |
msgstr "姓氏"
|
1156 |
|
@@ -1604,45 +1616,45 @@ msgstr "用戶名已經存在。"
|
|
1604 |
msgid "This username is already reserved to be used soon."
|
1605 |
msgstr "這個用戶名已經被保留。"
|
1606 |
|
1607 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1608 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1609 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1610 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1611 |
msgid "max upload size"
|
1612 |
msgstr "最大上傳大小"
|
1613 |
|
1614 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1615 |
msgid "Current avatar: No uploaded avatar"
|
1616 |
msgstr "當前頭像:沒有上傳頭像"
|
1617 |
|
1618 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1619 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1620 |
msgid "Avatar"
|
1621 |
msgstr "頭像"
|
1622 |
|
1623 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1624 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1625 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1626 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1627 |
msgid "Click to see the current avatar"
|
1628 |
msgstr "點擊查看當前頭像"
|
1629 |
|
1630 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1631 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1632 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1633 |
msgstr "頭像不能被刪除(它被標記為只允許管理員操作)"
|
1634 |
|
1635 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1636 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1637 |
msgid "Are you sure you want to delete this avatar?"
|
1638 |
msgstr "您確定要刪除這個頭像?"
|
1639 |
|
1640 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1641 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1642 |
msgid "Click to delete the current avatar"
|
1643 |
msgstr "點擊刪除當前頭像"
|
1644 |
|
1645 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1646 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1647 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1648 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
@@ -1656,60 +1668,60 @@ msgstr "點擊刪除當前頭像"
|
|
1656 |
msgid "required"
|
1657 |
msgstr "必須"
|
1658 |
|
1659 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1660 |
msgid "Current avatar"
|
1661 |
msgstr "當前頭像"
|
1662 |
|
1663 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1664 |
msgid "No uploaded avatar"
|
1665 |
msgstr "沒有上傳頭像"
|
1666 |
|
1667 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1668 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1669 |
msgid "The extension of the file did not match"
|
1670 |
msgstr "文件擴展名不匹配"
|
1671 |
|
1672 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1673 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1674 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1675 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1676 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1677 |
msgstr "文件上傳大小限制超過 upload_max_filesize 在 php.ini 的設置"
|
1678 |
|
1679 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1681 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1682 |
msgstr "文件上傳方件最大限制超過 MAX_FILE_SIZE 在 php.ini 的設置"
|
1683 |
|
1684 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1685 |
msgid "The file could only partially be uploaded "
|
1686 |
msgstr "文件只能被分段上傳"
|
1687 |
|
1688 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1689 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1690 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1691 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1693 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1694 |
msgid "No file was selected"
|
1695 |
msgstr "沒有選擇文件"
|
1696 |
|
1697 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1698 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1699 |
msgid "The temporary upload folder is missing from the system"
|
1700 |
msgstr "系統丟失臨時文件緩存"
|
1701 |
|
1702 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1704 |
msgid "The file failed to write to the disk"
|
1705 |
msgstr "磁盤無法寫入文件"
|
1706 |
|
1707 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1708 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1709 |
msgid "A PHP extension stopped the file upload"
|
1710 |
msgstr "壹個PHP擴展暫停文件上傳"
|
1711 |
|
1712 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1713 |
msgid "Unknown error occurred"
|
1714 |
msgstr "發生未知錯誤"
|
1715 |
|
@@ -2147,37 +2159,37 @@ msgstr "在回收站中沒有編輯個人資料表單"
|
|
2147 |
|
2148 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2149 |
#: ../modules/multiple-forms/register-forms.php:138
|
2150 |
-
#: ../modules/user-listing/userlisting.php:
|
2151 |
msgid "Shortcode"
|
2152 |
msgstr "簡碼"
|
2153 |
|
2154 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2155 |
#: ../modules/multiple-forms/register-forms.php:159
|
2156 |
-
#: ../modules/user-listing/userlisting.php:
|
2157 |
msgid "(no title)"
|
2158 |
msgstr "(沒有標題)"
|
2159 |
|
2160 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2161 |
#: ../modules/multiple-forms/register-forms.php:178
|
2162 |
-
#: ../modules/user-listing/userlisting.php:
|
2163 |
msgid "The shortcode will be available after you publish this form."
|
2164 |
msgstr "簡碼將在您發布表單後可用。"
|
2165 |
|
2166 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2167 |
#: ../modules/multiple-forms/register-forms.php:180
|
2168 |
-
#: ../modules/user-listing/userlisting.php:
|
2169 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2170 |
msgstr "使用這個簡碼在頁面上,將會獲得您想要的表單顯示效果:"
|
2171 |
|
2172 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2173 |
#: ../modules/multiple-forms/register-forms.php:184
|
2174 |
-
#: ../modules/user-listing/userlisting.php:
|
2175 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2176 |
msgstr "<span style=\"color:red;\">註意:</span> 改變表單標題也將改變簡碼!"
|
2177 |
|
2178 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2179 |
#: ../modules/multiple-forms/register-forms.php:190
|
2180 |
-
#: ../modules/user-listing/userlisting.php:
|
2181 |
msgid "Form Shortcode"
|
2182 |
msgstr "表單簡碼"
|
2183 |
|
@@ -2288,11 +2300,11 @@ msgstr "指定用戶註冊頁面地址將被重定向<br/>使用下列格式: ht
|
|
2288 |
msgid "After Registration..."
|
2289 |
msgstr "註冊後…"
|
2290 |
|
2291 |
-
#: ../modules/user-listing/class-userlisting.php:
|
2292 |
-
#: ../modules/user-listing/userlisting.php:
|
2293 |
-
#: ../modules/user-listing/userlisting.php:
|
2294 |
-
#: ../modules/user-listing/userlisting.php:
|
2295 |
-
#: ../modules/user-listing/userlisting.php:
|
2296 |
msgid "Search Users by All Fields"
|
2297 |
msgstr "在所有字段中搜索用戶"
|
2298 |
|
@@ -2333,12 +2345,12 @@ msgid "Url"
|
|
2333 |
msgstr "網址"
|
2334 |
|
2335 |
#: ../modules/user-listing/userlisting.php:118
|
2336 |
-
#: ../modules/user-listing/userlisting.php:
|
2337 |
msgid "Registration Date"
|
2338 |
msgstr "註冊日期"
|
2339 |
|
2340 |
#: ../modules/user-listing/userlisting.php:119
|
2341 |
-
#: ../modules/user-listing/userlisting.php:
|
2342 |
msgid "Number of Posts"
|
2343 |
msgstr "帖子數"
|
2344 |
|
@@ -2395,179 +2407,179 @@ msgstr "您沒有權限查看該用戶列表"
|
|
2395 |
msgid "You do not have the required user role to view this user list"
|
2396 |
msgstr "沒有所需的用戶權限查看用戶列表"
|
2397 |
|
2398 |
-
#: ../modules/user-listing/userlisting.php:
|
2399 |
msgid "First/Lastname"
|
2400 |
msgstr "名字/姓氏"
|
2401 |
|
2402 |
-
#: ../modules/user-listing/userlisting.php:
|
2403 |
msgid "Sign-up Date"
|
2404 |
msgstr "註冊日期"
|
2405 |
|
2406 |
-
#: ../modules/user-listing/userlisting.php:
|
2407 |
-
#: ../modules/user-listing/userlisting.php:
|
2408 |
msgid "Display Name"
|
2409 |
msgstr "顯示名稱"
|
2410 |
|
2411 |
-
#: ../modules/user-listing/userlisting.php:
|
2412 |
msgid "Posts"
|
2413 |
msgstr "帖子"
|
2414 |
|
2415 |
-
#: ../modules/user-listing/userlisting.php:
|
2416 |
-
#: ../modules/user-listing/userlisting.php:
|
2417 |
msgid "Aim"
|
2418 |
msgstr "Aim"
|
2419 |
|
2420 |
-
#: ../modules/user-listing/userlisting.php:
|
2421 |
-
#: ../modules/user-listing/userlisting.php:
|
2422 |
msgid "Yim"
|
2423 |
msgstr "Yim"
|
2424 |
|
2425 |
-
#: ../modules/user-listing/userlisting.php:
|
2426 |
-
#: ../modules/user-listing/userlisting.php:
|
2427 |
msgid "Jabber"
|
2428 |
msgstr "Jabber"
|
2429 |
|
2430 |
-
#: ../modules/user-listing/userlisting.php:
|
2431 |
msgid "Click here to see more information about this user"
|
2432 |
msgstr "點擊這裏查看此用戶的更多信息"
|
2433 |
|
2434 |
-
#: ../modules/user-listing/userlisting.php:
|
2435 |
msgid "More..."
|
2436 |
msgstr "更多..."
|
2437 |
|
2438 |
-
#: ../modules/user-listing/userlisting.php:
|
2439 |
msgid "Click here to see more information about this user."
|
2440 |
msgstr "點擊這裏查看此用戶的更多信息。"
|
2441 |
|
2442 |
-
#: ../modules/user-listing/userlisting.php:
|
2443 |
-
#: ../modules/user-listing/userlisting.php:
|
2444 |
msgid "Click here to go back"
|
2445 |
msgstr "點擊這裏返回"
|
2446 |
|
2447 |
-
#: ../modules/user-listing/userlisting.php:
|
2448 |
msgid "Back"
|
2449 |
msgstr "返回"
|
2450 |
|
2451 |
-
#: ../modules/user-listing/userlisting.php:
|
2452 |
msgid "«« First"
|
2453 |
msgstr "«« 首頁"
|
2454 |
|
2455 |
-
#: ../modules/user-listing/userlisting.php:
|
2456 |
msgid "« Prev"
|
2457 |
msgstr "« 上壹頁"
|
2458 |
|
2459 |
-
#: ../modules/user-listing/userlisting.php:
|
2460 |
msgid "Next » "
|
2461 |
msgstr "下壹頁 » "
|
2462 |
|
2463 |
-
#: ../modules/user-listing/userlisting.php:
|
2464 |
msgid "Last »»"
|
2465 |
msgstr "最後 »»"
|
2466 |
|
2467 |
-
#: ../modules/user-listing/userlisting.php:
|
2468 |
msgid "You don't have any pagination settings on this userlisting!"
|
2469 |
msgstr "您不需在用戶列表中設置分頁"
|
2470 |
|
2471 |
-
#: ../modules/user-listing/userlisting.php:
|
2472 |
msgid "Search"
|
2473 |
msgstr "搜索"
|
2474 |
|
2475 |
-
#: ../modules/user-listing/userlisting.php:
|
2476 |
msgid "Clear Results"
|
2477 |
msgstr "清除結果"
|
2478 |
|
2479 |
-
#: ../modules/user-listing/userlisting.php:
|
2480 |
msgid "Extra shortcode parameters"
|
2481 |
msgstr "額外簡碼參數"
|
2482 |
|
2483 |
-
#: ../modules/user-listing/userlisting.php:
|
2484 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2485 |
msgstr "顯示用戶在某壹(額外)元字段(meta-field)"
|
2486 |
|
2487 |
-
#: ../modules/user-listing/userlisting.php:
|
2488 |
msgid "Example:"
|
2489 |
msgstr "例子:"
|
2490 |
|
2491 |
-
#: ../modules/user-listing/userlisting.php:
|
2492 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2493 |
msgstr "記住,該字段值的組合必須存在於數據庫中。"
|
2494 |
|
2495 |
-
#: ../modules/user-listing/userlisting.php:
|
2496 |
msgid "Random (very slow on large databases > 10K user)"
|
2497 |
msgstr "隨機 (在大於 10K 的用戶數據庫中將會很慢 )"
|
2498 |
|
2499 |
-
#: ../modules/user-listing/userlisting.php:
|
2500 |
msgid "Roles to Display"
|
2501 |
msgstr "角色顯示:"
|
2502 |
|
2503 |
-
#: ../modules/user-listing/userlisting.php:
|
2504 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2505 |
msgstr "限制用戶列表中的特定角色<br/>如果沒有指定,默認為全部現有的角色"
|
2506 |
|
2507 |
-
#: ../modules/user-listing/userlisting.php:
|
2508 |
msgid "Number of Users/Page"
|
2509 |
msgstr "用戶/頁面數"
|
2510 |
|
2511 |
-
#: ../modules/user-listing/userlisting.php:
|
2512 |
msgid "Default Sorting Criteria"
|
2513 |
msgstr "默認分類標準"
|
2514 |
|
2515 |
-
#: ../modules/user-listing/userlisting.php:
|
2516 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2517 |
msgstr "設置默認的排序標準<br/>這可以暫時被每壹個新的會話更改"
|
2518 |
|
2519 |
-
#: ../modules/user-listing/userlisting.php:
|
2520 |
msgid "Default Sorting Order"
|
2521 |
msgstr "默認排列順序"
|
2522 |
|
2523 |
-
#: ../modules/user-listing/userlisting.php:
|
2524 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2525 |
msgstr "設置默認排列順序<br/>這可以在每個新會話時被改變"
|
2526 |
|
2527 |
-
#: ../modules/user-listing/userlisting.php:
|
2528 |
msgid "Avatar Size (All-userlisting)"
|
2529 |
msgstr "頭像大小(所有用戶列表)"
|
2530 |
|
2531 |
-
#: ../modules/user-listing/userlisting.php:
|
2532 |
msgid "Set the avatar size on the all-userlisting only"
|
2533 |
msgstr "設置在所有用戶列表的頭像大小"
|
2534 |
|
2535 |
-
#: ../modules/user-listing/userlisting.php:
|
2536 |
msgid "Avatar Size (Single-userlisting)"
|
2537 |
msgstr "頭像大小(單用戶列表)"
|
2538 |
|
2539 |
-
#: ../modules/user-listing/userlisting.php:
|
2540 |
msgid "Set the avatar size on the single-userlisting only"
|
2541 |
msgstr "設置在單用戶列表的頭像大小"
|
2542 |
|
2543 |
-
#: ../modules/user-listing/userlisting.php:
|
2544 |
msgid "Visible only to logged in users?"
|
2545 |
msgstr "只有登錄用戶可見的?"
|
2546 |
|
2547 |
-
#: ../modules/user-listing/userlisting.php:
|
2548 |
msgid "The userlisting will only be visible only to the logged in users"
|
2549 |
msgstr "用戶列表只有登錄用戶可見的"
|
2550 |
|
2551 |
-
#: ../modules/user-listing/userlisting.php:
|
2552 |
msgid "Visible to following Roles"
|
2553 |
msgstr "以下角色可見"
|
2554 |
|
2555 |
-
#: ../modules/user-listing/userlisting.php:
|
2556 |
msgid "The userlisting will only be visible to the following roles"
|
2557 |
msgstr "用戶列表只允許以下角色可見"
|
2558 |
|
2559 |
-
#: ../modules/user-listing/userlisting.php:
|
2560 |
msgid "Userlisting Settings"
|
2561 |
msgstr "用戶列表設置"
|
2562 |
|
2563 |
-
#: ../modules/user-listing/userlisting.php:
|
2564 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2565 |
msgstr "您需要激活用戶列表功能在 \"模塊\" 選項卡!"
|
2566 |
|
2567 |
-
#: ../modules/user-listing/userlisting.php:
|
2568 |
msgid "You can find it in the Profile Builder menu."
|
2569 |
msgstr "妳可以在 Profile Builder 菜單中找到它。"
|
2570 |
|
2571 |
-
#: ../modules/user-listing/userlisting.php:
|
2572 |
msgid "No results found!"
|
2573 |
msgstr "無任何結果!"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
13 |
+
#: ../features/functions.php:485
|
14 |
+
msgid "Minimum length of %d characters"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: ../front-end/class-formbuilder.php:93 ../front-end/class-formbuilder.php:96
|
18 |
+
msgid "This message is only visible by administrators"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: ../front-end/extra-fields/avatar/avatar.php:119
|
22 |
+
msgid "The image file set in the %s field for this user could not be found on the server. The default WordPress avatar is being used at the moment."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: ../modules/user-listing/userlisting.php:353
|
26 |
+
msgid "User not found"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
30 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
31 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
70 |
msgid "1 item"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../features/functions.php:471
|
74 |
msgid "Very Weak"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../features/functions.php:559
|
78 |
msgid "This field is required"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../features/functions.php:579
|
82 |
msgid "Cancel"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../features/functions.php:610
|
86 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
87 |
msgstr ""
|
88 |
|
136 |
msgid "Choose..."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: ../modules/user-listing/userlisting.php:1160
|
140 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
141 |
msgstr ""
|
142 |
|
168 |
msgid "Hide"
|
169 |
msgstr "隱藏"
|
170 |
|
171 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:183
|
172 |
+
#: ../admin/register-version.php:81 ../features/functions.php:572
|
173 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
174 |
#: ../modules/modules.php:142
|
175 |
msgid "Save Changes"
|
193 |
msgstr "非常弱"
|
194 |
|
195 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
196 |
+
#: ../features/functions.php:471
|
197 |
msgid "Weak"
|
198 |
msgstr "弱"
|
199 |
|
200 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
201 |
+
#: ../features/functions.php:471
|
202 |
msgid "Medium"
|
203 |
msgstr "中"
|
204 |
|
205 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
206 |
+
#: ../features/functions.php:471
|
207 |
msgid "Strong"
|
208 |
msgstr "強"
|
209 |
|
461 |
#: ../admin/general-settings.php:114
|
462 |
#: ../modules/multiple-forms/register-forms.php:229
|
463 |
#: ../modules/multiple-forms/register-forms.php:230
|
464 |
+
#: ../modules/user-listing/userlisting.php:1165
|
465 |
msgid "Yes"
|
466 |
msgstr "是"
|
467 |
|
528 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
529 |
#: ../modules/email-customizer/email-customizer.php:28
|
530 |
#: ../modules/user-listing/userlisting.php:94
|
531 |
+
#: ../modules/user-listing/userlisting.php:522
|
532 |
+
#: ../modules/user-listing/userlisting.php:1122
|
533 |
msgid "Username"
|
534 |
msgstr "姓名"
|
535 |
|
536 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
537 |
#: ../modules/email-customizer/email-customizer.php:29
|
538 |
+
#: ../modules/user-listing/userlisting.php:528
|
539 |
+
#: ../modules/user-listing/userlisting.php:1123
|
540 |
msgid "Email"
|
541 |
msgstr "電子郵件"
|
542 |
|
754 |
msgid "Last Name"
|
755 |
msgstr "姓氏"
|
756 |
|
757 |
+
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:561
|
758 |
msgid "Nickname"
|
759 |
msgstr "昵稱"
|
760 |
|
776 |
#: ../admin/manage-fields.php:140
|
777 |
#: ../modules/email-customizer/email-customizer.php:31
|
778 |
#: ../modules/user-listing/userlisting.php:103
|
779 |
+
#: ../modules/user-listing/userlisting.php:543
|
780 |
+
#: ../modules/user-listing/userlisting.php:1124
|
781 |
msgid "Website"
|
782 |
msgstr "站點"
|
783 |
|
798 |
msgstr "關於您自己"
|
799 |
|
800 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
801 |
+
#: ../modules/user-listing/userlisting.php:546
|
802 |
+
#: ../modules/user-listing/userlisting.php:1125
|
803 |
msgid "Biographical Info"
|
804 |
msgstr "個人說明"
|
805 |
|
888 |
#: ../admin/manage-fields.php:500
|
889 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
890 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
891 |
+
#: ../features/functions.php:593 ../features/functions.php:600
|
892 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
893 |
msgid "Edit"
|
894 |
msgstr "編輯"
|
900 |
#: ../features/admin-approval/class-admin-approval.php:235
|
901 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
902 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
903 |
+
#: ../features/functions.php:586 ../features/functions.php:600
|
904 |
msgid "Delete"
|
905 |
msgstr "刪除"
|
906 |
|
949 |
msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
950 |
|
951 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
952 |
+
#: ../features/functions.php:600
|
953 |
msgid "Content"
|
954 |
msgstr "內容"
|
955 |
|
1042 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1043 |
msgstr "用戶驗證失敗 - 附件沒有被刪除!"
|
1044 |
|
1045 |
+
#: ../features/functions.php:446
|
1046 |
msgid "Strength indicator"
|
1047 |
msgstr "強度指標"
|
1048 |
|
|
|
|
|
|
|
|
|
1049 |
#: ../features/admin-approval/admin-approval.php:7
|
1050 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1051 |
msgid "Admin Approval"
|
1155 |
msgstr "允許"
|
1156 |
|
1157 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1158 |
+
#: ../modules/user-listing/userlisting.php:534
|
1159 |
+
#: ../modules/user-listing/userlisting.php:1127
|
1160 |
msgid "Firstname"
|
1161 |
msgstr "名子"
|
1162 |
|
1163 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1164 |
+
#: ../modules/user-listing/userlisting.php:537
|
1165 |
+
#: ../modules/user-listing/userlisting.php:1128
|
1166 |
msgid "Lastname"
|
1167 |
msgstr "姓氏"
|
1168 |
|
1616 |
msgid "This username is already reserved to be used soon."
|
1617 |
msgstr "這個用戶名已經被保留。"
|
1618 |
|
1619 |
+
#: ../front-end/extra-fields/avatar/avatar.php:60
|
1620 |
+
#: ../front-end/extra-fields/avatar/avatar.php:98
|
1621 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1622 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1623 |
msgid "max upload size"
|
1624 |
msgstr "最大上傳大小"
|
1625 |
|
1626 |
+
#: ../front-end/extra-fields/avatar/avatar.php:66
|
1627 |
msgid "Current avatar: No uploaded avatar"
|
1628 |
msgstr "當前頭像:沒有上傳頭像"
|
1629 |
|
1630 |
+
#: ../front-end/extra-fields/avatar/avatar.php:71
|
1631 |
+
#: ../front-end/extra-fields/avatar/avatar.php:105
|
1632 |
msgid "Avatar"
|
1633 |
msgstr "頭像"
|
1634 |
|
1635 |
+
#: ../front-end/extra-fields/avatar/avatar.php:75
|
1636 |
+
#: ../front-end/extra-fields/avatar/avatar.php:80
|
1637 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1638 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1639 |
msgid "Click to see the current avatar"
|
1640 |
msgstr "點擊查看當前頭像"
|
1641 |
|
1642 |
+
#: ../front-end/extra-fields/avatar/avatar.php:77
|
1643 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1644 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1645 |
msgstr "頭像不能被刪除(它被標記為只允許管理員操作)"
|
1646 |
|
1647 |
+
#: ../front-end/extra-fields/avatar/avatar.php:82
|
1648 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1649 |
msgid "Are you sure you want to delete this avatar?"
|
1650 |
msgstr "您確定要刪除這個頭像?"
|
1651 |
|
1652 |
+
#: ../front-end/extra-fields/avatar/avatar.php:83
|
1653 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1654 |
msgid "Click to delete the current avatar"
|
1655 |
msgstr "點擊刪除當前頭像"
|
1656 |
|
1657 |
+
#: ../front-end/extra-fields/avatar/avatar.php:91
|
1658 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1659 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1660 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1668 |
msgid "required"
|
1669 |
msgstr "必須"
|
1670 |
|
1671 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1672 |
msgid "Current avatar"
|
1673 |
msgstr "當前頭像"
|
1674 |
|
1675 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1676 |
msgid "No uploaded avatar"
|
1677 |
msgstr "沒有上傳頭像"
|
1678 |
|
1679 |
+
#: ../front-end/extra-fields/avatar/avatar.php:207
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1681 |
msgid "The extension of the file did not match"
|
1682 |
msgstr "文件擴展名不匹配"
|
1683 |
|
1684 |
+
#: ../front-end/extra-fields/avatar/avatar.php:210
|
1685 |
+
#: ../front-end/extra-fields/avatar/avatar.php:213
|
1686 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1687 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1688 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1689 |
msgstr "文件上傳大小限制超過 upload_max_filesize 在 php.ini 的設置"
|
1690 |
|
1691 |
+
#: ../front-end/extra-fields/avatar/avatar.php:216
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1693 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1694 |
msgstr "文件上傳方件最大限制超過 MAX_FILE_SIZE 在 php.ini 的設置"
|
1695 |
|
1696 |
+
#: ../front-end/extra-fields/avatar/avatar.php:219
|
1697 |
msgid "The file could only partially be uploaded "
|
1698 |
msgstr "文件只能被分段上傳"
|
1699 |
|
1700 |
+
#: ../front-end/extra-fields/avatar/avatar.php:222
|
1701 |
+
#: ../front-end/extra-fields/avatar/avatar.php:243
|
1702 |
+
#: ../front-end/extra-fields/avatar/avatar.php:246
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1704 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1705 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1706 |
msgid "No file was selected"
|
1707 |
msgstr "沒有選擇文件"
|
1708 |
|
1709 |
+
#: ../front-end/extra-fields/avatar/avatar.php:225
|
1710 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1711 |
msgid "The temporary upload folder is missing from the system"
|
1712 |
msgstr "系統丟失臨時文件緩存"
|
1713 |
|
1714 |
+
#: ../front-end/extra-fields/avatar/avatar.php:228
|
1715 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1716 |
msgid "The file failed to write to the disk"
|
1717 |
msgstr "磁盤無法寫入文件"
|
1718 |
|
1719 |
+
#: ../front-end/extra-fields/avatar/avatar.php:231
|
1720 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1721 |
msgid "A PHP extension stopped the file upload"
|
1722 |
msgstr "壹個PHP擴展暫停文件上傳"
|
1723 |
|
1724 |
+
#: ../front-end/extra-fields/avatar/avatar.php:234
|
1725 |
msgid "Unknown error occurred"
|
1726 |
msgstr "發生未知錯誤"
|
1727 |
|
2159 |
|
2160 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2161 |
#: ../modules/multiple-forms/register-forms.php:138
|
2162 |
+
#: ../modules/user-listing/userlisting.php:1037
|
2163 |
msgid "Shortcode"
|
2164 |
msgstr "簡碼"
|
2165 |
|
2166 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2167 |
#: ../modules/multiple-forms/register-forms.php:159
|
2168 |
+
#: ../modules/user-listing/userlisting.php:1058
|
2169 |
msgid "(no title)"
|
2170 |
msgstr "(沒有標題)"
|
2171 |
|
2172 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2173 |
#: ../modules/multiple-forms/register-forms.php:178
|
2174 |
+
#: ../modules/user-listing/userlisting.php:1078
|
2175 |
msgid "The shortcode will be available after you publish this form."
|
2176 |
msgstr "簡碼將在您發布表單後可用。"
|
2177 |
|
2178 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2179 |
#: ../modules/multiple-forms/register-forms.php:180
|
2180 |
+
#: ../modules/user-listing/userlisting.php:1080
|
2181 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2182 |
msgstr "使用這個簡碼在頁面上,將會獲得您想要的表單顯示效果:"
|
2183 |
|
2184 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2185 |
#: ../modules/multiple-forms/register-forms.php:184
|
2186 |
+
#: ../modules/user-listing/userlisting.php:1084
|
2187 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2188 |
msgstr "<span style=\"color:red;\">註意:</span> 改變表單標題也將改變簡碼!"
|
2189 |
|
2190 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2191 |
#: ../modules/multiple-forms/register-forms.php:190
|
2192 |
+
#: ../modules/user-listing/userlisting.php:1098
|
2193 |
msgid "Form Shortcode"
|
2194 |
msgstr "表單簡碼"
|
2195 |
|
2300 |
msgid "After Registration..."
|
2301 |
msgstr "註冊後…"
|
2302 |
|
2303 |
+
#: ../modules/user-listing/class-userlisting.php:461
|
2304 |
+
#: ../modules/user-listing/userlisting.php:632
|
2305 |
+
#: ../modules/user-listing/userlisting.php:850
|
2306 |
+
#: ../modules/user-listing/userlisting.php:893
|
2307 |
+
#: ../modules/user-listing/userlisting.php:1217
|
2308 |
msgid "Search Users by All Fields"
|
2309 |
msgstr "在所有字段中搜索用戶"
|
2310 |
|
2345 |
msgstr "網址"
|
2346 |
|
2347 |
#: ../modules/user-listing/userlisting.php:118
|
2348 |
+
#: ../modules/user-listing/userlisting.php:1126
|
2349 |
msgid "Registration Date"
|
2350 |
msgstr "註冊日期"
|
2351 |
|
2352 |
#: ../modules/user-listing/userlisting.php:119
|
2353 |
+
#: ../modules/user-listing/userlisting.php:1130
|
2354 |
msgid "Number of Posts"
|
2355 |
msgstr "帖子數"
|
2356 |
|
2407 |
msgid "You do not have the required user role to view this user list"
|
2408 |
msgstr "沒有所需的用戶權限查看用戶列表"
|
2409 |
|
2410 |
+
#: ../modules/user-listing/userlisting.php:525
|
2411 |
msgid "First/Lastname"
|
2412 |
msgstr "名字/姓氏"
|
2413 |
|
2414 |
+
#: ../modules/user-listing/userlisting.php:531
|
2415 |
msgid "Sign-up Date"
|
2416 |
msgstr "註冊日期"
|
2417 |
|
2418 |
+
#: ../modules/user-listing/userlisting.php:540
|
2419 |
+
#: ../modules/user-listing/userlisting.php:1129
|
2420 |
msgid "Display Name"
|
2421 |
msgstr "顯示名稱"
|
2422 |
|
2423 |
+
#: ../modules/user-listing/userlisting.php:549
|
2424 |
msgid "Posts"
|
2425 |
msgstr "帖子"
|
2426 |
|
2427 |
+
#: ../modules/user-listing/userlisting.php:552
|
2428 |
+
#: ../modules/user-listing/userlisting.php:1134
|
2429 |
msgid "Aim"
|
2430 |
msgstr "Aim"
|
2431 |
|
2432 |
+
#: ../modules/user-listing/userlisting.php:555
|
2433 |
+
#: ../modules/user-listing/userlisting.php:1135
|
2434 |
msgid "Yim"
|
2435 |
msgstr "Yim"
|
2436 |
|
2437 |
+
#: ../modules/user-listing/userlisting.php:558
|
2438 |
+
#: ../modules/user-listing/userlisting.php:1136
|
2439 |
msgid "Jabber"
|
2440 |
msgstr "Jabber"
|
2441 |
|
2442 |
+
#: ../modules/user-listing/userlisting.php:709
|
2443 |
msgid "Click here to see more information about this user"
|
2444 |
msgstr "點擊這裏查看此用戶的更多信息"
|
2445 |
|
2446 |
+
#: ../modules/user-listing/userlisting.php:709
|
2447 |
msgid "More..."
|
2448 |
msgstr "更多..."
|
2449 |
|
2450 |
+
#: ../modules/user-listing/userlisting.php:712
|
2451 |
msgid "Click here to see more information about this user."
|
2452 |
msgstr "點擊這裏查看此用戶的更多信息。"
|
2453 |
|
2454 |
+
#: ../modules/user-listing/userlisting.php:804
|
2455 |
+
#: ../modules/user-listing/userlisting.php:807
|
2456 |
msgid "Click here to go back"
|
2457 |
msgstr "點擊這裏返回"
|
2458 |
|
2459 |
+
#: ../modules/user-listing/userlisting.php:804
|
2460 |
msgid "Back"
|
2461 |
msgstr "返回"
|
2462 |
|
2463 |
+
#: ../modules/user-listing/userlisting.php:837
|
2464 |
msgid "«« First"
|
2465 |
msgstr "«« 首頁"
|
2466 |
|
2467 |
+
#: ../modules/user-listing/userlisting.php:838
|
2468 |
msgid "« Prev"
|
2469 |
msgstr "« 上壹頁"
|
2470 |
|
2471 |
+
#: ../modules/user-listing/userlisting.php:839
|
2472 |
msgid "Next » "
|
2473 |
msgstr "下壹頁 » "
|
2474 |
|
2475 |
+
#: ../modules/user-listing/userlisting.php:840
|
2476 |
msgid "Last »»"
|
2477 |
msgstr "最後 »»"
|
2478 |
|
2479 |
+
#: ../modules/user-listing/userlisting.php:869
|
2480 |
msgid "You don't have any pagination settings on this userlisting!"
|
2481 |
msgstr "您不需在用戶列表中設置分頁"
|
2482 |
|
2483 |
+
#: ../modules/user-listing/userlisting.php:910
|
2484 |
msgid "Search"
|
2485 |
msgstr "搜索"
|
2486 |
|
2487 |
+
#: ../modules/user-listing/userlisting.php:911
|
2488 |
msgid "Clear Results"
|
2489 |
msgstr "清除結果"
|
2490 |
|
2491 |
+
#: ../modules/user-listing/userlisting.php:1087
|
2492 |
msgid "Extra shortcode parameters"
|
2493 |
msgstr "額外簡碼參數"
|
2494 |
|
2495 |
+
#: ../modules/user-listing/userlisting.php:1089
|
2496 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2497 |
msgstr "顯示用戶在某壹(額外)元字段(meta-field)"
|
2498 |
|
2499 |
+
#: ../modules/user-listing/userlisting.php:1090
|
2500 |
msgid "Example:"
|
2501 |
msgstr "例子:"
|
2502 |
|
2503 |
+
#: ../modules/user-listing/userlisting.php:1092
|
2504 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2505 |
msgstr "記住,該字段值的組合必須存在於數據庫中。"
|
2506 |
|
2507 |
+
#: ../modules/user-listing/userlisting.php:1146
|
2508 |
msgid "Random (very slow on large databases > 10K user)"
|
2509 |
msgstr "隨機 (在大於 10K 的用戶數據庫中將會很慢 )"
|
2510 |
|
2511 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2512 |
msgid "Roles to Display"
|
2513 |
msgstr "角色顯示:"
|
2514 |
|
2515 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2516 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2517 |
msgstr "限制用戶列表中的特定角色<br/>如果沒有指定,默認為全部現有的角色"
|
2518 |
|
2519 |
+
#: ../modules/user-listing/userlisting.php:1160
|
2520 |
msgid "Number of Users/Page"
|
2521 |
msgstr "用戶/頁面數"
|
2522 |
|
2523 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2524 |
msgid "Default Sorting Criteria"
|
2525 |
msgstr "默認分類標準"
|
2526 |
|
2527 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2528 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2529 |
msgstr "設置默認的排序標準<br/>這可以暫時被每壹個新的會話更改"
|
2530 |
|
2531 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2532 |
msgid "Default Sorting Order"
|
2533 |
msgstr "默認排列順序"
|
2534 |
|
2535 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2536 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2537 |
msgstr "設置默認排列順序<br/>這可以在每個新會話時被改變"
|
2538 |
|
2539 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2540 |
msgid "Avatar Size (All-userlisting)"
|
2541 |
msgstr "頭像大小(所有用戶列表)"
|
2542 |
|
2543 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2544 |
msgid "Set the avatar size on the all-userlisting only"
|
2545 |
msgstr "設置在所有用戶列表的頭像大小"
|
2546 |
|
2547 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2548 |
msgid "Avatar Size (Single-userlisting)"
|
2549 |
msgstr "頭像大小(單用戶列表)"
|
2550 |
|
2551 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2552 |
msgid "Set the avatar size on the single-userlisting only"
|
2553 |
msgstr "設置在單用戶列表的頭像大小"
|
2554 |
|
2555 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2556 |
msgid "Visible only to logged in users?"
|
2557 |
msgstr "只有登錄用戶可見的?"
|
2558 |
|
2559 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2560 |
msgid "The userlisting will only be visible only to the logged in users"
|
2561 |
msgstr "用戶列表只有登錄用戶可見的"
|
2562 |
|
2563 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2564 |
msgid "Visible to following Roles"
|
2565 |
msgstr "以下角色可見"
|
2566 |
|
2567 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2568 |
msgid "The userlisting will only be visible to the following roles"
|
2569 |
msgstr "用戶列表只允許以下角色可見"
|
2570 |
|
2571 |
+
#: ../modules/user-listing/userlisting.php:1172
|
2572 |
msgid "Userlisting Settings"
|
2573 |
msgstr "用戶列表設置"
|
2574 |
|
2575 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2576 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2577 |
msgstr "您需要激活用戶列表功能在 \"模塊\" 選項卡!"
|
2578 |
|
2579 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2580 |
msgid "You can find it in the Profile Builder menu."
|
2581 |
msgstr "妳可以在 Profile Builder 菜單中找到它。"
|
2582 |
|
2583 |
+
#: ../modules/user-listing/userlisting.php:1343
|
2584 |
msgid "No results found!"
|
2585 |
msgstr "無任何結果!"
|
translation/profilebuilder-zh_TW.mo
CHANGED
Binary file
|
translation/profilebuilder-zh_TW.po
CHANGED
@@ -10,6 +10,22 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
14 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
15 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
@@ -54,19 +70,19 @@ msgstr ""
|
|
54 |
msgid "1 item"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../features/functions.php:
|
58 |
msgid "Very Weak"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../features/functions.php:
|
62 |
msgid "This field is required"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../features/functions.php:
|
66 |
msgid "Cancel"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../features/functions.php:
|
70 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
71 |
msgstr ""
|
72 |
|
@@ -120,7 +136,7 @@ msgstr ""
|
|
120 |
msgid "Choose..."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../modules/user-listing/userlisting.php:
|
124 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
125 |
msgstr ""
|
126 |
|
@@ -152,8 +168,8 @@ msgstr "顯示"
|
|
152 |
msgid "Hide"
|
153 |
msgstr "隱藏"
|
154 |
|
155 |
-
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:
|
156 |
-
#: ../admin/register-version.php:81 ../features/functions.php:
|
157 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
158 |
#: ../modules/modules.php:142
|
159 |
msgid "Save Changes"
|
@@ -177,17 +193,17 @@ msgid "Very weak"
|
|
177 |
msgstr "非常弱"
|
178 |
|
179 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
180 |
-
#: ../features/functions.php:
|
181 |
msgid "Weak"
|
182 |
msgstr "弱"
|
183 |
|
184 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
185 |
-
#: ../features/functions.php:
|
186 |
msgid "Medium"
|
187 |
msgstr "中"
|
188 |
|
189 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
190 |
-
#: ../features/functions.php:
|
191 |
msgid "Strong"
|
192 |
msgstr "強"
|
193 |
|
@@ -445,7 +461,7 @@ msgstr "在前端載入 Profile Builder 的CSS文件:"
|
|
445 |
#: ../admin/general-settings.php:114
|
446 |
#: ../modules/multiple-forms/register-forms.php:229
|
447 |
#: ../modules/multiple-forms/register-forms.php:230
|
448 |
-
#: ../modules/user-listing/userlisting.php:
|
449 |
msgid "Yes"
|
450 |
msgstr "是"
|
451 |
|
@@ -512,15 +528,15 @@ msgstr "允許用戶使用什麽登陸:"
|
|
512 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
513 |
#: ../modules/email-customizer/email-customizer.php:28
|
514 |
#: ../modules/user-listing/userlisting.php:94
|
515 |
-
#: ../modules/user-listing/userlisting.php:
|
516 |
-
#: ../modules/user-listing/userlisting.php:
|
517 |
msgid "Username"
|
518 |
msgstr "姓名"
|
519 |
|
520 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
521 |
#: ../modules/email-customizer/email-customizer.php:29
|
522 |
-
#: ../modules/user-listing/userlisting.php:
|
523 |
-
#: ../modules/user-listing/userlisting.php:
|
524 |
msgid "Email"
|
525 |
msgstr "電子郵件"
|
526 |
|
@@ -738,7 +754,7 @@ msgstr "名字"
|
|
738 |
msgid "Last Name"
|
739 |
msgstr "姓氏"
|
740 |
|
741 |
-
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:
|
742 |
msgid "Nickname"
|
743 |
msgstr "昵稱"
|
744 |
|
@@ -760,8 +776,8 @@ msgstr "電子郵件"
|
|
760 |
#: ../admin/manage-fields.php:140
|
761 |
#: ../modules/email-customizer/email-customizer.php:31
|
762 |
#: ../modules/user-listing/userlisting.php:103
|
763 |
-
#: ../modules/user-listing/userlisting.php:
|
764 |
-
#: ../modules/user-listing/userlisting.php:
|
765 |
msgid "Website"
|
766 |
msgstr "站點"
|
767 |
|
@@ -782,8 +798,8 @@ msgid "About Yourself"
|
|
782 |
msgstr "關於您自己"
|
783 |
|
784 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
785 |
-
#: ../modules/user-listing/userlisting.php:
|
786 |
-
#: ../modules/user-listing/userlisting.php:
|
787 |
msgid "Biographical Info"
|
788 |
msgstr "個人說明"
|
789 |
|
@@ -872,7 +888,7 @@ msgstr "<pre>標題</pre><pre>類型</pre><pre>Meta Name</pre><pre class=\"wppb-
|
|
872 |
#: ../admin/manage-fields.php:500
|
873 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
874 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
875 |
-
#: ../features/functions.php:
|
876 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
877 |
msgid "Edit"
|
878 |
msgstr "編輯"
|
@@ -884,7 +900,7 @@ msgstr "編輯"
|
|
884 |
#: ../features/admin-approval/class-admin-approval.php:235
|
885 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
886 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
887 |
-
#: ../features/functions.php:
|
888 |
msgid "Delete"
|
889 |
msgstr "刪除"
|
890 |
|
@@ -933,7 +949,7 @@ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
|
933 |
msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
934 |
|
935 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
936 |
-
#: ../features/functions.php:
|
937 |
msgid "Content"
|
938 |
msgstr "內容"
|
939 |
|
@@ -1026,14 +1042,10 @@ msgstr "用戶驗證失敗 - 頭像沒有被刪除!"
|
|
1026 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1027 |
msgstr "用戶驗證失敗 - 附件沒有被刪除!"
|
1028 |
|
1029 |
-
#: ../features/functions.php:
|
1030 |
msgid "Strength indicator"
|
1031 |
msgstr "強度指標"
|
1032 |
|
1033 |
-
#: ../features/functions.php:482
|
1034 |
-
msgid "Minimum length of "
|
1035 |
-
msgstr "最小長度"
|
1036 |
-
|
1037 |
#: ../features/admin-approval/admin-approval.php:7
|
1038 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1039 |
msgid "Admin Approval"
|
@@ -1143,14 +1155,14 @@ msgid "Approve"
|
|
1143 |
msgstr "允許"
|
1144 |
|
1145 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1146 |
-
#: ../modules/user-listing/userlisting.php:
|
1147 |
-
#: ../modules/user-listing/userlisting.php:
|
1148 |
msgid "Firstname"
|
1149 |
msgstr "名子"
|
1150 |
|
1151 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1152 |
-
#: ../modules/user-listing/userlisting.php:
|
1153 |
-
#: ../modules/user-listing/userlisting.php:
|
1154 |
msgid "Lastname"
|
1155 |
msgstr "姓氏"
|
1156 |
|
@@ -1604,45 +1616,45 @@ msgstr "用戶名已經存在。"
|
|
1604 |
msgid "This username is already reserved to be used soon."
|
1605 |
msgstr "這個用戶名已經被保留。"
|
1606 |
|
1607 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1608 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1609 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1610 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1611 |
msgid "max upload size"
|
1612 |
msgstr "最大上傳大小"
|
1613 |
|
1614 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1615 |
msgid "Current avatar: No uploaded avatar"
|
1616 |
msgstr "當前頭像:沒有上傳頭像"
|
1617 |
|
1618 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1619 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1620 |
msgid "Avatar"
|
1621 |
msgstr "頭像"
|
1622 |
|
1623 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1624 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1625 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1626 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1627 |
msgid "Click to see the current avatar"
|
1628 |
msgstr "點擊查看當前頭像"
|
1629 |
|
1630 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1631 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1632 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1633 |
msgstr "頭像不能被刪除(它被標記為只允許管理員操作)"
|
1634 |
|
1635 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1636 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1637 |
msgid "Are you sure you want to delete this avatar?"
|
1638 |
msgstr "您確定要刪除這個頭像?"
|
1639 |
|
1640 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1641 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1642 |
msgid "Click to delete the current avatar"
|
1643 |
msgstr "點擊刪除當前頭像"
|
1644 |
|
1645 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1646 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1647 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1648 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
@@ -1656,60 +1668,60 @@ msgstr "點擊刪除當前頭像"
|
|
1656 |
msgid "required"
|
1657 |
msgstr "必須"
|
1658 |
|
1659 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1660 |
msgid "Current avatar"
|
1661 |
msgstr "當前頭像"
|
1662 |
|
1663 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1664 |
msgid "No uploaded avatar"
|
1665 |
msgstr "沒有上傳頭像"
|
1666 |
|
1667 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1668 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1669 |
msgid "The extension of the file did not match"
|
1670 |
msgstr "文件擴展名不匹配"
|
1671 |
|
1672 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1673 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1674 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1675 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1676 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1677 |
msgstr "文件上傳大小限制超過 upload_max_filesize 在 php.ini 的設置"
|
1678 |
|
1679 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1681 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1682 |
msgstr "文件上傳方件最大限制超過 MAX_FILE_SIZE 在 php.ini 的設置"
|
1683 |
|
1684 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1685 |
msgid "The file could only partially be uploaded "
|
1686 |
msgstr "文件只能被分段上傳"
|
1687 |
|
1688 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1689 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1690 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1691 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1693 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1694 |
msgid "No file was selected"
|
1695 |
msgstr "沒有選擇文件"
|
1696 |
|
1697 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1698 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1699 |
msgid "The temporary upload folder is missing from the system"
|
1700 |
msgstr "系統丟失臨時文件緩存"
|
1701 |
|
1702 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1704 |
msgid "The file failed to write to the disk"
|
1705 |
msgstr "磁盤無法寫入文件"
|
1706 |
|
1707 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1708 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1709 |
msgid "A PHP extension stopped the file upload"
|
1710 |
msgstr "壹個PHP擴展暫停文件上傳"
|
1711 |
|
1712 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1713 |
msgid "Unknown error occurred"
|
1714 |
msgstr "發生未知錯誤"
|
1715 |
|
@@ -2147,37 +2159,37 @@ msgstr "在回收站中沒有編輯個人資料表單"
|
|
2147 |
|
2148 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2149 |
#: ../modules/multiple-forms/register-forms.php:138
|
2150 |
-
#: ../modules/user-listing/userlisting.php:
|
2151 |
msgid "Shortcode"
|
2152 |
msgstr "簡碼"
|
2153 |
|
2154 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2155 |
#: ../modules/multiple-forms/register-forms.php:159
|
2156 |
-
#: ../modules/user-listing/userlisting.php:
|
2157 |
msgid "(no title)"
|
2158 |
msgstr "(沒有標題)"
|
2159 |
|
2160 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2161 |
#: ../modules/multiple-forms/register-forms.php:178
|
2162 |
-
#: ../modules/user-listing/userlisting.php:
|
2163 |
msgid "The shortcode will be available after you publish this form."
|
2164 |
msgstr "簡碼將在您發布表單後可用。"
|
2165 |
|
2166 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2167 |
#: ../modules/multiple-forms/register-forms.php:180
|
2168 |
-
#: ../modules/user-listing/userlisting.php:
|
2169 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2170 |
msgstr "使用這個簡碼在頁面上,將會獲得您想要的表單顯示效果:"
|
2171 |
|
2172 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2173 |
#: ../modules/multiple-forms/register-forms.php:184
|
2174 |
-
#: ../modules/user-listing/userlisting.php:
|
2175 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2176 |
msgstr "<span style=\"color:red;\">註意:</span> 改變表單標題也將改變簡碼!"
|
2177 |
|
2178 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2179 |
#: ../modules/multiple-forms/register-forms.php:190
|
2180 |
-
#: ../modules/user-listing/userlisting.php:
|
2181 |
msgid "Form Shortcode"
|
2182 |
msgstr "表單簡碼"
|
2183 |
|
@@ -2288,11 +2300,11 @@ msgstr "指定用戶註冊頁面地址將被重定向<br/>使用下列格式: ht
|
|
2288 |
msgid "After Registration..."
|
2289 |
msgstr "註冊後…"
|
2290 |
|
2291 |
-
#: ../modules/user-listing/class-userlisting.php:
|
2292 |
-
#: ../modules/user-listing/userlisting.php:
|
2293 |
-
#: ../modules/user-listing/userlisting.php:
|
2294 |
-
#: ../modules/user-listing/userlisting.php:
|
2295 |
-
#: ../modules/user-listing/userlisting.php:
|
2296 |
msgid "Search Users by All Fields"
|
2297 |
msgstr "在所有字段中搜索用戶"
|
2298 |
|
@@ -2333,12 +2345,12 @@ msgid "Url"
|
|
2333 |
msgstr "網址"
|
2334 |
|
2335 |
#: ../modules/user-listing/userlisting.php:118
|
2336 |
-
#: ../modules/user-listing/userlisting.php:
|
2337 |
msgid "Registration Date"
|
2338 |
msgstr "註冊日期"
|
2339 |
|
2340 |
#: ../modules/user-listing/userlisting.php:119
|
2341 |
-
#: ../modules/user-listing/userlisting.php:
|
2342 |
msgid "Number of Posts"
|
2343 |
msgstr "帖子數"
|
2344 |
|
@@ -2395,179 +2407,179 @@ msgstr "您沒有權限查看該用戶列表"
|
|
2395 |
msgid "You do not have the required user role to view this user list"
|
2396 |
msgstr "沒有所需的用戶權限查看用戶列表"
|
2397 |
|
2398 |
-
#: ../modules/user-listing/userlisting.php:
|
2399 |
msgid "First/Lastname"
|
2400 |
msgstr "名字/姓氏"
|
2401 |
|
2402 |
-
#: ../modules/user-listing/userlisting.php:
|
2403 |
msgid "Sign-up Date"
|
2404 |
msgstr "註冊日期"
|
2405 |
|
2406 |
-
#: ../modules/user-listing/userlisting.php:
|
2407 |
-
#: ../modules/user-listing/userlisting.php:
|
2408 |
msgid "Display Name"
|
2409 |
msgstr "顯示名稱"
|
2410 |
|
2411 |
-
#: ../modules/user-listing/userlisting.php:
|
2412 |
msgid "Posts"
|
2413 |
msgstr "帖子"
|
2414 |
|
2415 |
-
#: ../modules/user-listing/userlisting.php:
|
2416 |
-
#: ../modules/user-listing/userlisting.php:
|
2417 |
msgid "Aim"
|
2418 |
msgstr "Aim"
|
2419 |
|
2420 |
-
#: ../modules/user-listing/userlisting.php:
|
2421 |
-
#: ../modules/user-listing/userlisting.php:
|
2422 |
msgid "Yim"
|
2423 |
msgstr "Yim"
|
2424 |
|
2425 |
-
#: ../modules/user-listing/userlisting.php:
|
2426 |
-
#: ../modules/user-listing/userlisting.php:
|
2427 |
msgid "Jabber"
|
2428 |
msgstr "Jabber"
|
2429 |
|
2430 |
-
#: ../modules/user-listing/userlisting.php:
|
2431 |
msgid "Click here to see more information about this user"
|
2432 |
msgstr "點擊這裏查看此用戶的更多信息"
|
2433 |
|
2434 |
-
#: ../modules/user-listing/userlisting.php:
|
2435 |
msgid "More..."
|
2436 |
msgstr "更多..."
|
2437 |
|
2438 |
-
#: ../modules/user-listing/userlisting.php:
|
2439 |
msgid "Click here to see more information about this user."
|
2440 |
msgstr "點擊這裏查看此用戶的更多信息。"
|
2441 |
|
2442 |
-
#: ../modules/user-listing/userlisting.php:
|
2443 |
-
#: ../modules/user-listing/userlisting.php:
|
2444 |
msgid "Click here to go back"
|
2445 |
msgstr "點擊這裏返回"
|
2446 |
|
2447 |
-
#: ../modules/user-listing/userlisting.php:
|
2448 |
msgid "Back"
|
2449 |
msgstr "返回"
|
2450 |
|
2451 |
-
#: ../modules/user-listing/userlisting.php:
|
2452 |
msgid "«« First"
|
2453 |
msgstr "«« 首頁"
|
2454 |
|
2455 |
-
#: ../modules/user-listing/userlisting.php:
|
2456 |
msgid "« Prev"
|
2457 |
msgstr "« 上壹頁"
|
2458 |
|
2459 |
-
#: ../modules/user-listing/userlisting.php:
|
2460 |
msgid "Next » "
|
2461 |
msgstr "下壹頁 » "
|
2462 |
|
2463 |
-
#: ../modules/user-listing/userlisting.php:
|
2464 |
msgid "Last »»"
|
2465 |
msgstr "最後 »»"
|
2466 |
|
2467 |
-
#: ../modules/user-listing/userlisting.php:
|
2468 |
msgid "You don't have any pagination settings on this userlisting!"
|
2469 |
msgstr "您不需在用戶列表中設置分頁"
|
2470 |
|
2471 |
-
#: ../modules/user-listing/userlisting.php:
|
2472 |
msgid "Search"
|
2473 |
msgstr "搜索"
|
2474 |
|
2475 |
-
#: ../modules/user-listing/userlisting.php:
|
2476 |
msgid "Clear Results"
|
2477 |
msgstr "清除結果"
|
2478 |
|
2479 |
-
#: ../modules/user-listing/userlisting.php:
|
2480 |
msgid "Extra shortcode parameters"
|
2481 |
msgstr "額外簡碼參數"
|
2482 |
|
2483 |
-
#: ../modules/user-listing/userlisting.php:
|
2484 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2485 |
msgstr "顯示用戶在某壹(額外)元字段(meta-field)"
|
2486 |
|
2487 |
-
#: ../modules/user-listing/userlisting.php:
|
2488 |
msgid "Example:"
|
2489 |
msgstr "例子:"
|
2490 |
|
2491 |
-
#: ../modules/user-listing/userlisting.php:
|
2492 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2493 |
msgstr "記住,該字段值的組合必須存在於數據庫中。"
|
2494 |
|
2495 |
-
#: ../modules/user-listing/userlisting.php:
|
2496 |
msgid "Random (very slow on large databases > 10K user)"
|
2497 |
msgstr "隨機 (在大於 10K 的用戶數據庫中將會很慢 )"
|
2498 |
|
2499 |
-
#: ../modules/user-listing/userlisting.php:
|
2500 |
msgid "Roles to Display"
|
2501 |
msgstr "角色顯示:"
|
2502 |
|
2503 |
-
#: ../modules/user-listing/userlisting.php:
|
2504 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2505 |
msgstr "限制用戶列表中的特定角色<br/>如果沒有指定,默認為全部現有的角色"
|
2506 |
|
2507 |
-
#: ../modules/user-listing/userlisting.php:
|
2508 |
msgid "Number of Users/Page"
|
2509 |
msgstr "用戶/頁面數"
|
2510 |
|
2511 |
-
#: ../modules/user-listing/userlisting.php:
|
2512 |
msgid "Default Sorting Criteria"
|
2513 |
msgstr "默認分類標準"
|
2514 |
|
2515 |
-
#: ../modules/user-listing/userlisting.php:
|
2516 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2517 |
msgstr "設置默認的排序標準<br/>這可以暫時被每壹個新的會話更改"
|
2518 |
|
2519 |
-
#: ../modules/user-listing/userlisting.php:
|
2520 |
msgid "Default Sorting Order"
|
2521 |
msgstr "默認排列順序"
|
2522 |
|
2523 |
-
#: ../modules/user-listing/userlisting.php:
|
2524 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2525 |
msgstr "設置默認排列順序<br/>這可以在每個新會話時被改變"
|
2526 |
|
2527 |
-
#: ../modules/user-listing/userlisting.php:
|
2528 |
msgid "Avatar Size (All-userlisting)"
|
2529 |
msgstr "頭像大小(所有用戶列表)"
|
2530 |
|
2531 |
-
#: ../modules/user-listing/userlisting.php:
|
2532 |
msgid "Set the avatar size on the all-userlisting only"
|
2533 |
msgstr "設置在所有用戶列表的頭像大小"
|
2534 |
|
2535 |
-
#: ../modules/user-listing/userlisting.php:
|
2536 |
msgid "Avatar Size (Single-userlisting)"
|
2537 |
msgstr "頭像大小(單用戶列表)"
|
2538 |
|
2539 |
-
#: ../modules/user-listing/userlisting.php:
|
2540 |
msgid "Set the avatar size on the single-userlisting only"
|
2541 |
msgstr "設置在單用戶列表的頭像大小"
|
2542 |
|
2543 |
-
#: ../modules/user-listing/userlisting.php:
|
2544 |
msgid "Visible only to logged in users?"
|
2545 |
msgstr "只有登錄用戶可見的?"
|
2546 |
|
2547 |
-
#: ../modules/user-listing/userlisting.php:
|
2548 |
msgid "The userlisting will only be visible only to the logged in users"
|
2549 |
msgstr "用戶列表只有登錄用戶可見的"
|
2550 |
|
2551 |
-
#: ../modules/user-listing/userlisting.php:
|
2552 |
msgid "Visible to following Roles"
|
2553 |
msgstr "以下角色可見"
|
2554 |
|
2555 |
-
#: ../modules/user-listing/userlisting.php:
|
2556 |
msgid "The userlisting will only be visible to the following roles"
|
2557 |
msgstr "用戶列表只允許以下角色可見"
|
2558 |
|
2559 |
-
#: ../modules/user-listing/userlisting.php:
|
2560 |
msgid "Userlisting Settings"
|
2561 |
msgstr "用戶列表設置"
|
2562 |
|
2563 |
-
#: ../modules/user-listing/userlisting.php:
|
2564 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2565 |
msgstr "您需要激活用戶列表功能在 \"模塊\" 選項卡!"
|
2566 |
|
2567 |
-
#: ../modules/user-listing/userlisting.php:
|
2568 |
msgid "You can find it in the Profile Builder menu."
|
2569 |
msgstr "妳可以在 Profile Builder 菜單中找到它。"
|
2570 |
|
2571 |
-
#: ../modules/user-listing/userlisting.php:
|
2572 |
msgid "No results found!"
|
2573 |
msgstr "無任何結果!"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
|
13 |
+
#: ../features/functions.php:485
|
14 |
+
msgid "Minimum length of %d characters"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: ../front-end/class-formbuilder.php:93 ../front-end/class-formbuilder.php:96
|
18 |
+
msgid "This message is only visible by administrators"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: ../front-end/extra-fields/avatar/avatar.php:119
|
22 |
+
msgid "The image file set in the %s field for this user could not be found on the server. The default WordPress avatar is being used at the moment."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: ../modules/user-listing/userlisting.php:353
|
26 |
+
msgid "User not found"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
#: ../modules/email-customizer/admin-email-customizer.php:38
|
30 |
#: ../modules/email-customizer/user-email-customizer.php:38
|
31 |
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
70 |
msgid "1 item"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../features/functions.php:471
|
74 |
msgid "Very Weak"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../features/functions.php:559
|
78 |
msgid "This field is required"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../features/functions.php:579
|
82 |
msgid "Cancel"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../features/functions.php:610
|
86 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
87 |
msgstr ""
|
88 |
|
136 |
msgid "Choose..."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: ../modules/user-listing/userlisting.php:1160
|
140 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
141 |
msgstr ""
|
142 |
|
168 |
msgid "Hide"
|
169 |
msgstr "隱藏"
|
170 |
|
171 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:183
|
172 |
+
#: ../admin/register-version.php:81 ../features/functions.php:572
|
173 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
174 |
#: ../modules/modules.php:142
|
175 |
msgid "Save Changes"
|
193 |
msgstr "非常弱"
|
194 |
|
195 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
196 |
+
#: ../features/functions.php:471
|
197 |
msgid "Weak"
|
198 |
msgstr "弱"
|
199 |
|
200 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
201 |
+
#: ../features/functions.php:471
|
202 |
msgid "Medium"
|
203 |
msgstr "中"
|
204 |
|
205 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
206 |
+
#: ../features/functions.php:471
|
207 |
msgid "Strong"
|
208 |
msgstr "強"
|
209 |
|
461 |
#: ../admin/general-settings.php:114
|
462 |
#: ../modules/multiple-forms/register-forms.php:229
|
463 |
#: ../modules/multiple-forms/register-forms.php:230
|
464 |
+
#: ../modules/user-listing/userlisting.php:1165
|
465 |
msgid "Yes"
|
466 |
msgstr "是"
|
467 |
|
528 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
529 |
#: ../modules/email-customizer/email-customizer.php:28
|
530 |
#: ../modules/user-listing/userlisting.php:94
|
531 |
+
#: ../modules/user-listing/userlisting.php:522
|
532 |
+
#: ../modules/user-listing/userlisting.php:1122
|
533 |
msgid "Username"
|
534 |
msgstr "姓名"
|
535 |
|
536 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
537 |
#: ../modules/email-customizer/email-customizer.php:29
|
538 |
+
#: ../modules/user-listing/userlisting.php:528
|
539 |
+
#: ../modules/user-listing/userlisting.php:1123
|
540 |
msgid "Email"
|
541 |
msgstr "電子郵件"
|
542 |
|
754 |
msgid "Last Name"
|
755 |
msgstr "姓氏"
|
756 |
|
757 |
+
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:561
|
758 |
msgid "Nickname"
|
759 |
msgstr "昵稱"
|
760 |
|
776 |
#: ../admin/manage-fields.php:140
|
777 |
#: ../modules/email-customizer/email-customizer.php:31
|
778 |
#: ../modules/user-listing/userlisting.php:103
|
779 |
+
#: ../modules/user-listing/userlisting.php:543
|
780 |
+
#: ../modules/user-listing/userlisting.php:1124
|
781 |
msgid "Website"
|
782 |
msgstr "站點"
|
783 |
|
798 |
msgstr "關於您自己"
|
799 |
|
800 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
801 |
+
#: ../modules/user-listing/userlisting.php:546
|
802 |
+
#: ../modules/user-listing/userlisting.php:1125
|
803 |
msgid "Biographical Info"
|
804 |
msgstr "個人說明"
|
805 |
|
888 |
#: ../admin/manage-fields.php:500
|
889 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
890 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
891 |
+
#: ../features/functions.php:593 ../features/functions.php:600
|
892 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
893 |
msgid "Edit"
|
894 |
msgstr "編輯"
|
900 |
#: ../features/admin-approval/class-admin-approval.php:235
|
901 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
902 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
903 |
+
#: ../features/functions.php:586 ../features/functions.php:600
|
904 |
msgid "Delete"
|
905 |
msgstr "刪除"
|
906 |
|
949 |
msgstr "(例如: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
950 |
|
951 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
952 |
+
#: ../features/functions.php:600
|
953 |
msgid "Content"
|
954 |
msgstr "內容"
|
955 |
|
1042 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1043 |
msgstr "用戶驗證失敗 - 附件沒有被刪除!"
|
1044 |
|
1045 |
+
#: ../features/functions.php:446
|
1046 |
msgid "Strength indicator"
|
1047 |
msgstr "強度指標"
|
1048 |
|
|
|
|
|
|
|
|
|
1049 |
#: ../features/admin-approval/admin-approval.php:7
|
1050 |
#: ../features/admin-approval/class-admin-approval.php:489
|
1051 |
msgid "Admin Approval"
|
1155 |
msgstr "允許"
|
1156 |
|
1157 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1158 |
+
#: ../modules/user-listing/userlisting.php:534
|
1159 |
+
#: ../modules/user-listing/userlisting.php:1127
|
1160 |
msgid "Firstname"
|
1161 |
msgstr "名子"
|
1162 |
|
1163 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1164 |
+
#: ../modules/user-listing/userlisting.php:537
|
1165 |
+
#: ../modules/user-listing/userlisting.php:1128
|
1166 |
msgid "Lastname"
|
1167 |
msgstr "姓氏"
|
1168 |
|
1616 |
msgid "This username is already reserved to be used soon."
|
1617 |
msgstr "這個用戶名已經被保留。"
|
1618 |
|
1619 |
+
#: ../front-end/extra-fields/avatar/avatar.php:60
|
1620 |
+
#: ../front-end/extra-fields/avatar/avatar.php:98
|
1621 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1622 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1623 |
msgid "max upload size"
|
1624 |
msgstr "最大上傳大小"
|
1625 |
|
1626 |
+
#: ../front-end/extra-fields/avatar/avatar.php:66
|
1627 |
msgid "Current avatar: No uploaded avatar"
|
1628 |
msgstr "當前頭像:沒有上傳頭像"
|
1629 |
|
1630 |
+
#: ../front-end/extra-fields/avatar/avatar.php:71
|
1631 |
+
#: ../front-end/extra-fields/avatar/avatar.php:105
|
1632 |
msgid "Avatar"
|
1633 |
msgstr "頭像"
|
1634 |
|
1635 |
+
#: ../front-end/extra-fields/avatar/avatar.php:75
|
1636 |
+
#: ../front-end/extra-fields/avatar/avatar.php:80
|
1637 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1638 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1639 |
msgid "Click to see the current avatar"
|
1640 |
msgstr "點擊查看當前頭像"
|
1641 |
|
1642 |
+
#: ../front-end/extra-fields/avatar/avatar.php:77
|
1643 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1644 |
msgid "The avatar can't be deleted (It was marked as required by the administrator)"
|
1645 |
msgstr "頭像不能被刪除(它被標記為只允許管理員操作)"
|
1646 |
|
1647 |
+
#: ../front-end/extra-fields/avatar/avatar.php:82
|
1648 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1649 |
msgid "Are you sure you want to delete this avatar?"
|
1650 |
msgstr "您確定要刪除這個頭像?"
|
1651 |
|
1652 |
+
#: ../front-end/extra-fields/avatar/avatar.php:83
|
1653 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1654 |
msgid "Click to delete the current avatar"
|
1655 |
msgstr "點擊刪除當前頭像"
|
1656 |
|
1657 |
+
#: ../front-end/extra-fields/avatar/avatar.php:91
|
1658 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1659 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1660 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1668 |
msgid "required"
|
1669 |
msgstr "必須"
|
1670 |
|
1671 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1672 |
msgid "Current avatar"
|
1673 |
msgstr "當前頭像"
|
1674 |
|
1675 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1676 |
msgid "No uploaded avatar"
|
1677 |
msgstr "沒有上傳頭像"
|
1678 |
|
1679 |
+
#: ../front-end/extra-fields/avatar/avatar.php:207
|
1680 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1681 |
msgid "The extension of the file did not match"
|
1682 |
msgstr "文件擴展名不匹配"
|
1683 |
|
1684 |
+
#: ../front-end/extra-fields/avatar/avatar.php:210
|
1685 |
+
#: ../front-end/extra-fields/avatar/avatar.php:213
|
1686 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1687 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1688 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1689 |
msgstr "文件上傳大小限制超過 upload_max_filesize 在 php.ini 的設置"
|
1690 |
|
1691 |
+
#: ../front-end/extra-fields/avatar/avatar.php:216
|
1692 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1693 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1694 |
msgstr "文件上傳方件最大限制超過 MAX_FILE_SIZE 在 php.ini 的設置"
|
1695 |
|
1696 |
+
#: ../front-end/extra-fields/avatar/avatar.php:219
|
1697 |
msgid "The file could only partially be uploaded "
|
1698 |
msgstr "文件只能被分段上傳"
|
1699 |
|
1700 |
+
#: ../front-end/extra-fields/avatar/avatar.php:222
|
1701 |
+
#: ../front-end/extra-fields/avatar/avatar.php:243
|
1702 |
+
#: ../front-end/extra-fields/avatar/avatar.php:246
|
1703 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1704 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1705 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1706 |
msgid "No file was selected"
|
1707 |
msgstr "沒有選擇文件"
|
1708 |
|
1709 |
+
#: ../front-end/extra-fields/avatar/avatar.php:225
|
1710 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1711 |
msgid "The temporary upload folder is missing from the system"
|
1712 |
msgstr "系統丟失臨時文件緩存"
|
1713 |
|
1714 |
+
#: ../front-end/extra-fields/avatar/avatar.php:228
|
1715 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1716 |
msgid "The file failed to write to the disk"
|
1717 |
msgstr "磁盤無法寫入文件"
|
1718 |
|
1719 |
+
#: ../front-end/extra-fields/avatar/avatar.php:231
|
1720 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1721 |
msgid "A PHP extension stopped the file upload"
|
1722 |
msgstr "壹個PHP擴展暫停文件上傳"
|
1723 |
|
1724 |
+
#: ../front-end/extra-fields/avatar/avatar.php:234
|
1725 |
msgid "Unknown error occurred"
|
1726 |
msgstr "發生未知錯誤"
|
1727 |
|
2159 |
|
2160 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2161 |
#: ../modules/multiple-forms/register-forms.php:138
|
2162 |
+
#: ../modules/user-listing/userlisting.php:1037
|
2163 |
msgid "Shortcode"
|
2164 |
msgstr "簡碼"
|
2165 |
|
2166 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2167 |
#: ../modules/multiple-forms/register-forms.php:159
|
2168 |
+
#: ../modules/user-listing/userlisting.php:1058
|
2169 |
msgid "(no title)"
|
2170 |
msgstr "(沒有標題)"
|
2171 |
|
2172 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2173 |
#: ../modules/multiple-forms/register-forms.php:178
|
2174 |
+
#: ../modules/user-listing/userlisting.php:1078
|
2175 |
msgid "The shortcode will be available after you publish this form."
|
2176 |
msgstr "簡碼將在您發布表單後可用。"
|
2177 |
|
2178 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2179 |
#: ../modules/multiple-forms/register-forms.php:180
|
2180 |
+
#: ../modules/user-listing/userlisting.php:1080
|
2181 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2182 |
msgstr "使用這個簡碼在頁面上,將會獲得您想要的表單顯示效果:"
|
2183 |
|
2184 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2185 |
#: ../modules/multiple-forms/register-forms.php:184
|
2186 |
+
#: ../modules/user-listing/userlisting.php:1084
|
2187 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
2188 |
msgstr "<span style=\"color:red;\">註意:</span> 改變表單標題也將改變簡碼!"
|
2189 |
|
2190 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2191 |
#: ../modules/multiple-forms/register-forms.php:190
|
2192 |
+
#: ../modules/user-listing/userlisting.php:1098
|
2193 |
msgid "Form Shortcode"
|
2194 |
msgstr "表單簡碼"
|
2195 |
|
2300 |
msgid "After Registration..."
|
2301 |
msgstr "註冊後…"
|
2302 |
|
2303 |
+
#: ../modules/user-listing/class-userlisting.php:461
|
2304 |
+
#: ../modules/user-listing/userlisting.php:632
|
2305 |
+
#: ../modules/user-listing/userlisting.php:850
|
2306 |
+
#: ../modules/user-listing/userlisting.php:893
|
2307 |
+
#: ../modules/user-listing/userlisting.php:1217
|
2308 |
msgid "Search Users by All Fields"
|
2309 |
msgstr "在所有字段中搜索用戶"
|
2310 |
|
2345 |
msgstr "網址"
|
2346 |
|
2347 |
#: ../modules/user-listing/userlisting.php:118
|
2348 |
+
#: ../modules/user-listing/userlisting.php:1126
|
2349 |
msgid "Registration Date"
|
2350 |
msgstr "註冊日期"
|
2351 |
|
2352 |
#: ../modules/user-listing/userlisting.php:119
|
2353 |
+
#: ../modules/user-listing/userlisting.php:1130
|
2354 |
msgid "Number of Posts"
|
2355 |
msgstr "帖子數"
|
2356 |
|
2407 |
msgid "You do not have the required user role to view this user list"
|
2408 |
msgstr "沒有所需的用戶權限查看用戶列表"
|
2409 |
|
2410 |
+
#: ../modules/user-listing/userlisting.php:525
|
2411 |
msgid "First/Lastname"
|
2412 |
msgstr "名字/姓氏"
|
2413 |
|
2414 |
+
#: ../modules/user-listing/userlisting.php:531
|
2415 |
msgid "Sign-up Date"
|
2416 |
msgstr "註冊日期"
|
2417 |
|
2418 |
+
#: ../modules/user-listing/userlisting.php:540
|
2419 |
+
#: ../modules/user-listing/userlisting.php:1129
|
2420 |
msgid "Display Name"
|
2421 |
msgstr "顯示名稱"
|
2422 |
|
2423 |
+
#: ../modules/user-listing/userlisting.php:549
|
2424 |
msgid "Posts"
|
2425 |
msgstr "帖子"
|
2426 |
|
2427 |
+
#: ../modules/user-listing/userlisting.php:552
|
2428 |
+
#: ../modules/user-listing/userlisting.php:1134
|
2429 |
msgid "Aim"
|
2430 |
msgstr "Aim"
|
2431 |
|
2432 |
+
#: ../modules/user-listing/userlisting.php:555
|
2433 |
+
#: ../modules/user-listing/userlisting.php:1135
|
2434 |
msgid "Yim"
|
2435 |
msgstr "Yim"
|
2436 |
|
2437 |
+
#: ../modules/user-listing/userlisting.php:558
|
2438 |
+
#: ../modules/user-listing/userlisting.php:1136
|
2439 |
msgid "Jabber"
|
2440 |
msgstr "Jabber"
|
2441 |
|
2442 |
+
#: ../modules/user-listing/userlisting.php:709
|
2443 |
msgid "Click here to see more information about this user"
|
2444 |
msgstr "點擊這裏查看此用戶的更多信息"
|
2445 |
|
2446 |
+
#: ../modules/user-listing/userlisting.php:709
|
2447 |
msgid "More..."
|
2448 |
msgstr "更多..."
|
2449 |
|
2450 |
+
#: ../modules/user-listing/userlisting.php:712
|
2451 |
msgid "Click here to see more information about this user."
|
2452 |
msgstr "點擊這裏查看此用戶的更多信息。"
|
2453 |
|
2454 |
+
#: ../modules/user-listing/userlisting.php:804
|
2455 |
+
#: ../modules/user-listing/userlisting.php:807
|
2456 |
msgid "Click here to go back"
|
2457 |
msgstr "點擊這裏返回"
|
2458 |
|
2459 |
+
#: ../modules/user-listing/userlisting.php:804
|
2460 |
msgid "Back"
|
2461 |
msgstr "返回"
|
2462 |
|
2463 |
+
#: ../modules/user-listing/userlisting.php:837
|
2464 |
msgid "«« First"
|
2465 |
msgstr "«« 首頁"
|
2466 |
|
2467 |
+
#: ../modules/user-listing/userlisting.php:838
|
2468 |
msgid "« Prev"
|
2469 |
msgstr "« 上壹頁"
|
2470 |
|
2471 |
+
#: ../modules/user-listing/userlisting.php:839
|
2472 |
msgid "Next » "
|
2473 |
msgstr "下壹頁 » "
|
2474 |
|
2475 |
+
#: ../modules/user-listing/userlisting.php:840
|
2476 |
msgid "Last »»"
|
2477 |
msgstr "最後 »»"
|
2478 |
|
2479 |
+
#: ../modules/user-listing/userlisting.php:869
|
2480 |
msgid "You don't have any pagination settings on this userlisting!"
|
2481 |
msgstr "您不需在用戶列表中設置分頁"
|
2482 |
|
2483 |
+
#: ../modules/user-listing/userlisting.php:910
|
2484 |
msgid "Search"
|
2485 |
msgstr "搜索"
|
2486 |
|
2487 |
+
#: ../modules/user-listing/userlisting.php:911
|
2488 |
msgid "Clear Results"
|
2489 |
msgstr "清除結果"
|
2490 |
|
2491 |
+
#: ../modules/user-listing/userlisting.php:1087
|
2492 |
msgid "Extra shortcode parameters"
|
2493 |
msgstr "額外簡碼參數"
|
2494 |
|
2495 |
+
#: ../modules/user-listing/userlisting.php:1089
|
2496 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
2497 |
msgstr "顯示用戶在某壹(額外)元字段(meta-field)"
|
2498 |
|
2499 |
+
#: ../modules/user-listing/userlisting.php:1090
|
2500 |
msgid "Example:"
|
2501 |
msgstr "例子:"
|
2502 |
|
2503 |
+
#: ../modules/user-listing/userlisting.php:1092
|
2504 |
msgid "Remember though, that the field-value combination must exist in the database."
|
2505 |
msgstr "記住,該字段值的組合必須存在於數據庫中。"
|
2506 |
|
2507 |
+
#: ../modules/user-listing/userlisting.php:1146
|
2508 |
msgid "Random (very slow on large databases > 10K user)"
|
2509 |
msgstr "隨機 (在大於 10K 的用戶數據庫中將會很慢 )"
|
2510 |
|
2511 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2512 |
msgid "Roles to Display"
|
2513 |
msgstr "角色顯示:"
|
2514 |
|
2515 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2516 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
2517 |
msgstr "限制用戶列表中的特定角色<br/>如果沒有指定,默認為全部現有的角色"
|
2518 |
|
2519 |
+
#: ../modules/user-listing/userlisting.php:1160
|
2520 |
msgid "Number of Users/Page"
|
2521 |
msgstr "用戶/頁面數"
|
2522 |
|
2523 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2524 |
msgid "Default Sorting Criteria"
|
2525 |
msgstr "默認分類標準"
|
2526 |
|
2527 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2528 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
2529 |
msgstr "設置默認的排序標準<br/>這可以暫時被每壹個新的會話更改"
|
2530 |
|
2531 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2532 |
msgid "Default Sorting Order"
|
2533 |
msgstr "默認排列順序"
|
2534 |
|
2535 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2536 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
2537 |
msgstr "設置默認排列順序<br/>這可以在每個新會話時被改變"
|
2538 |
|
2539 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2540 |
msgid "Avatar Size (All-userlisting)"
|
2541 |
msgstr "頭像大小(所有用戶列表)"
|
2542 |
|
2543 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2544 |
msgid "Set the avatar size on the all-userlisting only"
|
2545 |
msgstr "設置在所有用戶列表的頭像大小"
|
2546 |
|
2547 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2548 |
msgid "Avatar Size (Single-userlisting)"
|
2549 |
msgstr "頭像大小(單用戶列表)"
|
2550 |
|
2551 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2552 |
msgid "Set the avatar size on the single-userlisting only"
|
2553 |
msgstr "設置在單用戶列表的頭像大小"
|
2554 |
|
2555 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2556 |
msgid "Visible only to logged in users?"
|
2557 |
msgstr "只有登錄用戶可見的?"
|
2558 |
|
2559 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2560 |
msgid "The userlisting will only be visible only to the logged in users"
|
2561 |
msgstr "用戶列表只有登錄用戶可見的"
|
2562 |
|
2563 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2564 |
msgid "Visible to following Roles"
|
2565 |
msgstr "以下角色可見"
|
2566 |
|
2567 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2568 |
msgid "The userlisting will only be visible to the following roles"
|
2569 |
msgstr "用戶列表只允許以下角色可見"
|
2570 |
|
2571 |
+
#: ../modules/user-listing/userlisting.php:1172
|
2572 |
msgid "Userlisting Settings"
|
2573 |
msgstr "用戶列表設置"
|
2574 |
|
2575 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2576 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2577 |
msgstr "您需要激活用戶列表功能在 \"模塊\" 選項卡!"
|
2578 |
|
2579 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2580 |
msgid "You can find it in the Profile Builder menu."
|
2581 |
msgstr "妳可以在 Profile Builder 菜單中找到它。"
|
2582 |
|
2583 |
+
#: ../modules/user-listing/userlisting.php:1343
|
2584 |
msgid "No results found!"
|
2585 |
msgstr "無任何結果!"
|
translation/profilebuilder.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: profilebuilder\n"
|
4 |
-
"POT-Creation-Date: 2014-11-
|
5 |
-
"PO-Revision-Date: 2014-11-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Cozmoslabs\n"
|
8 |
"Language: en\n"
|
@@ -49,8 +49,8 @@ msgstr ""
|
|
49 |
msgid "Hide"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:
|
53 |
-
#: ../admin/register-version.php:81 ../features/functions.php:
|
54 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
55 |
#: ../modules/modules.php:142
|
56 |
msgid "Save Changes"
|
@@ -77,17 +77,17 @@ msgid "Very weak"
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
80 |
-
#: ../features/functions.php:
|
81 |
msgid "Weak"
|
82 |
msgstr ""
|
83 |
|
84 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
85 |
-
#: ../features/functions.php:
|
86 |
msgid "Medium"
|
87 |
msgstr ""
|
88 |
|
89 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
90 |
-
#: ../features/functions.php:
|
91 |
msgid "Strong"
|
92 |
msgstr ""
|
93 |
|
@@ -384,7 +384,7 @@ msgstr ""
|
|
384 |
#: ../admin/general-settings.php:114
|
385 |
#: ../modules/multiple-forms/register-forms.php:229
|
386 |
#: ../modules/multiple-forms/register-forms.php:230
|
387 |
-
#: ../modules/user-listing/userlisting.php:
|
388 |
msgid "Yes"
|
389 |
msgstr ""
|
390 |
|
@@ -470,15 +470,15 @@ msgstr ""
|
|
470 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
471 |
#: ../modules/email-customizer/email-customizer.php:28
|
472 |
#: ../modules/user-listing/userlisting.php:94
|
473 |
-
#: ../modules/user-listing/userlisting.php:
|
474 |
-
#: ../modules/user-listing/userlisting.php:
|
475 |
msgid "Username"
|
476 |
msgstr ""
|
477 |
|
478 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
479 |
#: ../modules/email-customizer/email-customizer.php:29
|
480 |
-
#: ../modules/user-listing/userlisting.php:
|
481 |
-
#: ../modules/user-listing/userlisting.php:
|
482 |
msgid "Email"
|
483 |
msgstr ""
|
484 |
|
@@ -738,7 +738,7 @@ msgstr ""
|
|
738 |
msgid "Last Name"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:
|
742 |
msgid "Nickname"
|
743 |
msgstr ""
|
744 |
|
@@ -760,8 +760,8 @@ msgstr ""
|
|
760 |
#: ../admin/manage-fields.php:140
|
761 |
#: ../modules/email-customizer/email-customizer.php:31
|
762 |
#: ../modules/user-listing/userlisting.php:103
|
763 |
-
#: ../modules/user-listing/userlisting.php:
|
764 |
-
#: ../modules/user-listing/userlisting.php:
|
765 |
msgid "Website"
|
766 |
msgstr ""
|
767 |
|
@@ -782,8 +782,8 @@ msgid "About Yourself"
|
|
782 |
msgstr ""
|
783 |
|
784 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
785 |
-
#: ../modules/user-listing/userlisting.php:
|
786 |
-
#: ../modules/user-listing/userlisting.php:
|
787 |
msgid "Biographical Info"
|
788 |
msgstr ""
|
789 |
|
@@ -887,7 +887,7 @@ msgstr ""
|
|
887 |
#: ../admin/manage-fields.php:500
|
888 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
889 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
890 |
-
#: ../features/functions.php:
|
891 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
892 |
msgid "Edit"
|
893 |
msgstr ""
|
@@ -899,7 +899,7 @@ msgstr ""
|
|
899 |
#: ../features/admin-approval/class-admin-approval.php:235
|
900 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
901 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
902 |
-
#: ../features/functions.php:
|
903 |
msgid "Delete"
|
904 |
msgstr ""
|
905 |
|
@@ -1010,7 +1010,7 @@ msgid "Upload "
|
|
1010 |
msgstr ""
|
1011 |
|
1012 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
1013 |
-
#: ../features/functions.php:
|
1014 |
msgid "Content"
|
1015 |
msgstr ""
|
1016 |
|
@@ -1155,14 +1155,14 @@ msgid "Approve"
|
|
1155 |
msgstr ""
|
1156 |
|
1157 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1158 |
-
#: ../modules/user-listing/userlisting.php:
|
1159 |
-
#: ../modules/user-listing/userlisting.php:
|
1160 |
msgid "Firstname"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1164 |
-
#: ../modules/user-listing/userlisting.php:
|
1165 |
-
#: ../modules/user-listing/userlisting.php:
|
1166 |
msgid "Lastname"
|
1167 |
msgstr ""
|
1168 |
|
@@ -1386,27 +1386,28 @@ msgstr ""
|
|
1386 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: ../features/functions.php:
|
1390 |
msgid "Strength indicator"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: ../features/functions.php:
|
1394 |
msgid "Very Weak"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: ../features/functions.php:
|
1398 |
-
|
|
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: ../features/functions.php:
|
1402 |
msgid "This field is required"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: ../features/functions.php:
|
1406 |
msgid "Cancel"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: ../features/functions.php:
|
1410 |
#, php-format
|
1411 |
msgid ""
|
1412 |
"To allow users to register for your website via Profile Builder, you first "
|
@@ -1451,6 +1452,10 @@ msgstr ""
|
|
1451 |
msgid "Users can register themselves or you can manually create users here."
|
1452 |
msgstr ""
|
1453 |
|
|
|
|
|
|
|
|
|
1454 |
#: ../front-end/class-formbuilder.php:96
|
1455 |
msgid ""
|
1456 |
"Users cannot currently register themselves, but you can manually create "
|
@@ -1583,46 +1588,46 @@ msgstr ""
|
|
1583 |
msgid "This username is already reserved to be used soon."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1587 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1588 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1589 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1590 |
msgid "max upload size"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1594 |
msgid "Current avatar: No uploaded avatar"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1598 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1599 |
msgid "Avatar"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1603 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1604 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1605 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1606 |
msgid "Click to see the current avatar"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1610 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1611 |
msgid ""
|
1612 |
"The avatar can't be deleted (It was marked as required by the administrator)"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1616 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1617 |
msgid "Are you sure you want to delete this avatar?"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1621 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1622 |
msgid "Click to delete the current avatar"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1626 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1627 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1628 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
@@ -1636,60 +1641,67 @@ msgstr ""
|
|
1636 |
msgid "required"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1640 |
msgid "Current avatar"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1644 |
msgid "No uploaded avatar"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1648 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1649 |
msgid "The extension of the file did not match"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1653 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1654 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1655 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1656 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1660 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1661 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1665 |
msgid "The file could only partially be uploaded "
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1669 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1670 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1671 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1672 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1673 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1674 |
msgid "No file was selected"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1678 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1679 |
msgid "The temporary upload folder is missing from the system"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1683 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1684 |
msgid "The file failed to write to the disk"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1688 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1689 |
msgid "A PHP extension stopped the file upload"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: ../front-end/extra-fields/avatar/avatar.php:
|
1693 |
msgid "Unknown error occurred"
|
1694 |
msgstr ""
|
1695 |
|
@@ -2315,31 +2327,31 @@ msgstr ""
|
|
2315 |
|
2316 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2317 |
#: ../modules/multiple-forms/register-forms.php:138
|
2318 |
-
#: ../modules/user-listing/userlisting.php:
|
2319 |
msgid "Shortcode"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2323 |
#: ../modules/multiple-forms/register-forms.php:159
|
2324 |
-
#: ../modules/user-listing/userlisting.php:
|
2325 |
msgid "(no title)"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2329 |
#: ../modules/multiple-forms/register-forms.php:178
|
2330 |
-
#: ../modules/user-listing/userlisting.php:
|
2331 |
msgid "The shortcode will be available after you publish this form."
|
2332 |
msgstr ""
|
2333 |
|
2334 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2335 |
#: ../modules/multiple-forms/register-forms.php:180
|
2336 |
-
#: ../modules/user-listing/userlisting.php:
|
2337 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2341 |
#: ../modules/multiple-forms/register-forms.php:184
|
2342 |
-
#: ../modules/user-listing/userlisting.php:
|
2343 |
msgid ""
|
2344 |
"<span style=\"color:red;\">Note:</span> changing the form title also changes "
|
2345 |
"the shortcode!"
|
@@ -2347,7 +2359,7 @@ msgstr ""
|
|
2347 |
|
2348 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2349 |
#: ../modules/multiple-forms/register-forms.php:190
|
2350 |
-
#: ../modules/user-listing/userlisting.php:
|
2351 |
msgid "Form Shortcode"
|
2352 |
msgstr ""
|
2353 |
|
@@ -2484,11 +2496,11 @@ msgstr ""
|
|
2484 |
msgid "After Registration..."
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: ../modules/user-listing/class-userlisting.php:
|
2488 |
-
#: ../modules/user-listing/userlisting.php:
|
2489 |
-
#: ../modules/user-listing/userlisting.php:
|
2490 |
-
#: ../modules/user-listing/userlisting.php:
|
2491 |
-
#: ../modules/user-listing/userlisting.php:
|
2492 |
msgid "Search Users by All Fields"
|
2493 |
msgstr ""
|
2494 |
|
@@ -2529,12 +2541,12 @@ msgid "Url"
|
|
2529 |
msgstr ""
|
2530 |
|
2531 |
#: ../modules/user-listing/userlisting.php:118
|
2532 |
-
#: ../modules/user-listing/userlisting.php:
|
2533 |
msgid "Registration Date"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
#: ../modules/user-listing/userlisting.php:119
|
2537 |
-
#: ../modules/user-listing/userlisting.php:
|
2538 |
msgid "Number of Posts"
|
2539 |
msgstr ""
|
2540 |
|
@@ -2591,195 +2603,199 @@ msgstr ""
|
|
2591 |
msgid "You do not have the required user role to view this user list"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: ../modules/user-listing/userlisting.php:
|
2595 |
-
msgid "
|
2596 |
msgstr ""
|
2597 |
|
2598 |
#: ../modules/user-listing/userlisting.php:525
|
|
|
|
|
|
|
|
|
2599 |
msgid "Sign-up Date"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: ../modules/user-listing/userlisting.php:
|
2603 |
-
#: ../modules/user-listing/userlisting.php:
|
2604 |
msgid "Display Name"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: ../modules/user-listing/userlisting.php:
|
2608 |
msgid "Posts"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: ../modules/user-listing/userlisting.php:
|
2612 |
-
#: ../modules/user-listing/userlisting.php:
|
2613 |
msgid "Aim"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: ../modules/user-listing/userlisting.php:
|
2617 |
-
#: ../modules/user-listing/userlisting.php:
|
2618 |
msgid "Yim"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: ../modules/user-listing/userlisting.php:
|
2622 |
-
#: ../modules/user-listing/userlisting.php:
|
2623 |
msgid "Jabber"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: ../modules/user-listing/userlisting.php:
|
2627 |
msgid "Click here to see more information about this user"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: ../modules/user-listing/userlisting.php:
|
2631 |
msgid "More..."
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: ../modules/user-listing/userlisting.php:
|
2635 |
msgid "Click here to see more information about this user."
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: ../modules/user-listing/userlisting.php:
|
2639 |
-
#: ../modules/user-listing/userlisting.php:
|
2640 |
msgid "Click here to go back"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#: ../modules/user-listing/userlisting.php:
|
2644 |
msgid "Back"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#: ../modules/user-listing/userlisting.php:
|
2648 |
msgid "«« First"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: ../modules/user-listing/userlisting.php:
|
2652 |
msgid "« Prev"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: ../modules/user-listing/userlisting.php:
|
2656 |
msgid "Next » "
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#: ../modules/user-listing/userlisting.php:
|
2660 |
msgid "Last »»"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#: ../modules/user-listing/userlisting.php:
|
2664 |
msgid "You don't have any pagination settings on this userlisting!"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#: ../modules/user-listing/userlisting.php:
|
2668 |
msgid "Search"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#: ../modules/user-listing/userlisting.php:
|
2672 |
msgid "Clear Results"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#: ../modules/user-listing/userlisting.php:
|
2676 |
msgid "Extra shortcode parameters"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: ../modules/user-listing/userlisting.php:
|
2680 |
msgid ""
|
2681 |
"displays users having a certain meta-value within a certain (extra) meta-"
|
2682 |
"field"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: ../modules/user-listing/userlisting.php:
|
2686 |
msgid "Example:"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#: ../modules/user-listing/userlisting.php:
|
2690 |
msgid ""
|
2691 |
"Remember though, that the field-value combination must exist in the database."
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: ../modules/user-listing/userlisting.php:
|
2695 |
msgid "Random (very slow on large databases > 10K user)"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: ../modules/user-listing/userlisting.php:
|
2699 |
msgid "Roles to Display"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: ../modules/user-listing/userlisting.php:
|
2703 |
msgid ""
|
2704 |
"Restrict the userlisting to these selected roles only<br/>If not specified, "
|
2705 |
"defaults to all existing roles"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
-
#: ../modules/user-listing/userlisting.php:
|
2709 |
msgid "Number of Users/Page"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: ../modules/user-listing/userlisting.php:
|
2713 |
msgid ""
|
2714 |
"Set the number of users to be displayed on every paginated part of the all-"
|
2715 |
"userlisting"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: ../modules/user-listing/userlisting.php:
|
2719 |
msgid "Default Sorting Criteria"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: ../modules/user-listing/userlisting.php:
|
2723 |
msgid ""
|
2724 |
"Set the default sorting criteria<br/>This can temporarily be changed for "
|
2725 |
"each new session"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: ../modules/user-listing/userlisting.php:
|
2729 |
msgid "Default Sorting Order"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: ../modules/user-listing/userlisting.php:
|
2733 |
msgid ""
|
2734 |
"Set the default sorting order<br/>This can temporarily be changed for each "
|
2735 |
"new session"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
-
#: ../modules/user-listing/userlisting.php:
|
2739 |
msgid "Avatar Size (All-userlisting)"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
-
#: ../modules/user-listing/userlisting.php:
|
2743 |
msgid "Set the avatar size on the all-userlisting only"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#: ../modules/user-listing/userlisting.php:
|
2747 |
msgid "Avatar Size (Single-userlisting)"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: ../modules/user-listing/userlisting.php:
|
2751 |
msgid "Set the avatar size on the single-userlisting only"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: ../modules/user-listing/userlisting.php:
|
2755 |
msgid "Visible only to logged in users?"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: ../modules/user-listing/userlisting.php:
|
2759 |
msgid "The userlisting will only be visible only to the logged in users"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: ../modules/user-listing/userlisting.php:
|
2763 |
msgid "Visible to following Roles"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: ../modules/user-listing/userlisting.php:
|
2767 |
msgid "The userlisting will only be visible to the following roles"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: ../modules/user-listing/userlisting.php:
|
2771 |
msgid "Userlisting Settings"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: ../modules/user-listing/userlisting.php:
|
2775 |
msgid ""
|
2776 |
"You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
-
#: ../modules/user-listing/userlisting.php:
|
2780 |
msgid "You can find it in the Profile Builder menu."
|
2781 |
msgstr ""
|
2782 |
|
2783 |
-
#: ../modules/user-listing/userlisting.php:
|
2784 |
msgid "No results found!"
|
2785 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: profilebuilder\n"
|
4 |
+
"POT-Creation-Date: 2014-11-27 15:38+0200\n"
|
5 |
+
"PO-Revision-Date: 2014-11-27 15:38+0200\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Cozmoslabs\n"
|
8 |
"Language: en\n"
|
49 |
msgid "Hide"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../admin/admin-bar.php:86 ../admin/general-settings.php:183
|
53 |
+
#: ../admin/register-version.php:81 ../features/functions.php:572
|
54 |
#: ../modules/custom-redirects/custom-redirects.php:136
|
55 |
#: ../modules/modules.php:142
|
56 |
msgid "Save Changes"
|
77 |
msgstr ""
|
78 |
|
79 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:170
|
80 |
+
#: ../features/functions.php:471
|
81 |
msgid "Weak"
|
82 |
msgstr ""
|
83 |
|
84 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:171
|
85 |
+
#: ../features/functions.php:471
|
86 |
msgid "Medium"
|
87 |
msgstr ""
|
88 |
|
89 |
#: ../admin/admin-functions.php:112 ../admin/general-settings.php:172
|
90 |
+
#: ../features/functions.php:471
|
91 |
msgid "Strong"
|
92 |
msgstr ""
|
93 |
|
384 |
#: ../admin/general-settings.php:114
|
385 |
#: ../modules/multiple-forms/register-forms.php:229
|
386 |
#: ../modules/multiple-forms/register-forms.php:230
|
387 |
+
#: ../modules/user-listing/userlisting.php:1165
|
388 |
msgid "Yes"
|
389 |
msgstr ""
|
390 |
|
470 |
#: ../features/email-confirmation/class-email-confirmation.php:153
|
471 |
#: ../modules/email-customizer/email-customizer.php:28
|
472 |
#: ../modules/user-listing/userlisting.php:94
|
473 |
+
#: ../modules/user-listing/userlisting.php:522
|
474 |
+
#: ../modules/user-listing/userlisting.php:1122
|
475 |
msgid "Username"
|
476 |
msgstr ""
|
477 |
|
478 |
#: ../admin/general-settings.php:145 ../front-end/login.php:144
|
479 |
#: ../modules/email-customizer/email-customizer.php:29
|
480 |
+
#: ../modules/user-listing/userlisting.php:528
|
481 |
+
#: ../modules/user-listing/userlisting.php:1123
|
482 |
msgid "Email"
|
483 |
msgstr ""
|
484 |
|
738 |
msgid "Last Name"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../admin/manage-fields.php:136 ../modules/user-listing/userlisting.php:561
|
742 |
msgid "Nickname"
|
743 |
msgstr ""
|
744 |
|
760 |
#: ../admin/manage-fields.php:140
|
761 |
#: ../modules/email-customizer/email-customizer.php:31
|
762 |
#: ../modules/user-listing/userlisting.php:103
|
763 |
+
#: ../modules/user-listing/userlisting.php:543
|
764 |
+
#: ../modules/user-listing/userlisting.php:1124
|
765 |
msgid "Website"
|
766 |
msgstr ""
|
767 |
|
782 |
msgstr ""
|
783 |
|
784 |
#: ../admin/manage-fields.php:150 ../modules/user-listing/userlisting.php:106
|
785 |
+
#: ../modules/user-listing/userlisting.php:546
|
786 |
+
#: ../modules/user-listing/userlisting.php:1125
|
787 |
msgid "Biographical Info"
|
788 |
msgstr ""
|
789 |
|
887 |
#: ../admin/manage-fields.php:500
|
888 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
889 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:501
|
890 |
+
#: ../features/functions.php:593 ../features/functions.php:600
|
891 |
#: ../modules/multiple-forms/multiple-forms.php:407
|
892 |
msgid "Edit"
|
893 |
msgstr ""
|
899 |
#: ../features/admin-approval/class-admin-approval.php:235
|
900 |
#: ../features/email-confirmation/class-email-confirmation.php:106
|
901 |
#: ../features/email-confirmation/class-email-confirmation.php:202
|
902 |
+
#: ../features/functions.php:586 ../features/functions.php:600
|
903 |
msgid "Delete"
|
904 |
msgstr ""
|
905 |
|
1010 |
msgstr ""
|
1011 |
|
1012 |
#: ../assets/lib/wck-api/wordpress-creation-kit.php:415
|
1013 |
+
#: ../features/functions.php:600
|
1014 |
msgid "Content"
|
1015 |
msgstr ""
|
1016 |
|
1155 |
msgstr ""
|
1156 |
|
1157 |
#: ../features/admin-approval/class-admin-approval.php:178
|
1158 |
+
#: ../modules/user-listing/userlisting.php:534
|
1159 |
+
#: ../modules/user-listing/userlisting.php:1127
|
1160 |
msgid "Firstname"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
#: ../features/admin-approval/class-admin-approval.php:179
|
1164 |
+
#: ../modules/user-listing/userlisting.php:537
|
1165 |
+
#: ../modules/user-listing/userlisting.php:1128
|
1166 |
msgid "Lastname"
|
1167 |
msgstr ""
|
1168 |
|
1386 |
msgid "The user-validation has failed - the attachment was not deleted!"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: ../features/functions.php:446
|
1390 |
msgid "Strength indicator"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: ../features/functions.php:471
|
1394 |
msgid "Very Weak"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: ../features/functions.php:485
|
1398 |
+
#, php-format
|
1399 |
+
msgid "Minimum length of %d characters"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: ../features/functions.php:559
|
1403 |
msgid "This field is required"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: ../features/functions.php:579
|
1407 |
msgid "Cancel"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: ../features/functions.php:610
|
1411 |
#, php-format
|
1412 |
msgid ""
|
1413 |
"To allow users to register for your website via Profile Builder, you first "
|
1452 |
msgid "Users can register themselves or you can manually create users here."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: ../front-end/class-formbuilder.php:93 ../front-end/class-formbuilder.php:96
|
1456 |
+
msgid "This message is only visible by administrators"
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
#: ../front-end/class-formbuilder.php:96
|
1460 |
msgid ""
|
1461 |
"Users cannot currently register themselves, but you can manually create "
|
1588 |
msgid "This username is already reserved to be used soon."
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: ../front-end/extra-fields/avatar/avatar.php:60
|
1592 |
+
#: ../front-end/extra-fields/avatar/avatar.php:98
|
1593 |
#: ../front-end/extra-fields/upload/upload.php:29
|
1594 |
#: ../front-end/extra-fields/upload/upload.php:68
|
1595 |
msgid "max upload size"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: ../front-end/extra-fields/avatar/avatar.php:66
|
1599 |
msgid "Current avatar: No uploaded avatar"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: ../front-end/extra-fields/avatar/avatar.php:71
|
1603 |
+
#: ../front-end/extra-fields/avatar/avatar.php:105
|
1604 |
msgid "Avatar"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: ../front-end/extra-fields/avatar/avatar.php:75
|
1608 |
+
#: ../front-end/extra-fields/avatar/avatar.php:80
|
1609 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1610 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1611 |
msgid "Click to see the current avatar"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: ../front-end/extra-fields/avatar/avatar.php:77
|
1615 |
+
#: ../front-end/extra-fields/avatar/avatar.php:108
|
1616 |
msgid ""
|
1617 |
"The avatar can't be deleted (It was marked as required by the administrator)"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: ../front-end/extra-fields/avatar/avatar.php:82
|
1621 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1622 |
msgid "Are you sure you want to delete this avatar?"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: ../front-end/extra-fields/avatar/avatar.php:83
|
1626 |
+
#: ../front-end/extra-fields/avatar/avatar.php:110
|
1627 |
msgid "Click to delete the current avatar"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: ../front-end/extra-fields/avatar/avatar.php:91
|
1631 |
#: ../front-end/extra-fields/checkbox/checkbox.php:46
|
1632 |
#: ../front-end/extra-fields/datepicker/datepicker.php:44
|
1633 |
#: ../front-end/extra-fields/input-hidden/input-hidden.php:32
|
1641 |
msgid "required"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1645 |
msgid "Current avatar"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: ../front-end/extra-fields/avatar/avatar.php:101
|
1649 |
msgid "No uploaded avatar"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: ../front-end/extra-fields/avatar/avatar.php:119
|
1653 |
+
#, php-format
|
1654 |
+
msgid ""
|
1655 |
+
"The image file set in the %s field for this user could not be found on the "
|
1656 |
+
"server. The default WordPress avatar is being used at the moment."
|
1657 |
+
msgstr ""
|
1658 |
+
|
1659 |
+
#: ../front-end/extra-fields/avatar/avatar.php:207
|
1660 |
#: ../front-end/extra-fields/upload/upload.php:173
|
1661 |
msgid "The extension of the file did not match"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: ../front-end/extra-fields/avatar/avatar.php:210
|
1665 |
+
#: ../front-end/extra-fields/avatar/avatar.php:213
|
1666 |
#: ../front-end/extra-fields/upload/upload.php:177
|
1667 |
#: ../front-end/extra-fields/upload/upload.php:180
|
1668 |
msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: ../front-end/extra-fields/avatar/avatar.php:216
|
1672 |
#: ../front-end/extra-fields/upload/upload.php:183
|
1673 |
msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: ../front-end/extra-fields/avatar/avatar.php:219
|
1677 |
msgid "The file could only partially be uploaded "
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: ../front-end/extra-fields/avatar/avatar.php:222
|
1681 |
+
#: ../front-end/extra-fields/avatar/avatar.php:243
|
1682 |
+
#: ../front-end/extra-fields/avatar/avatar.php:246
|
1683 |
#: ../front-end/extra-fields/upload/upload.php:189
|
1684 |
#: ../front-end/extra-fields/upload/upload.php:210
|
1685 |
#: ../front-end/extra-fields/upload/upload.php:213
|
1686 |
msgid "No file was selected"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: ../front-end/extra-fields/avatar/avatar.php:225
|
1690 |
#: ../front-end/extra-fields/upload/upload.php:192
|
1691 |
msgid "The temporary upload folder is missing from the system"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: ../front-end/extra-fields/avatar/avatar.php:228
|
1695 |
#: ../front-end/extra-fields/upload/upload.php:195
|
1696 |
msgid "The file failed to write to the disk"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: ../front-end/extra-fields/avatar/avatar.php:231
|
1700 |
#: ../front-end/extra-fields/upload/upload.php:198
|
1701 |
msgid "A PHP extension stopped the file upload"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: ../front-end/extra-fields/avatar/avatar.php:234
|
1705 |
msgid "Unknown error occurred"
|
1706 |
msgstr ""
|
1707 |
|
2327 |
|
2328 |
#: ../modules/multiple-forms/edit-profile-forms.php:135
|
2329 |
#: ../modules/multiple-forms/register-forms.php:138
|
2330 |
+
#: ../modules/user-listing/userlisting.php:1037
|
2331 |
msgid "Shortcode"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
#: ../modules/multiple-forms/edit-profile-forms.php:155
|
2335 |
#: ../modules/multiple-forms/register-forms.php:159
|
2336 |
+
#: ../modules/user-listing/userlisting.php:1058
|
2337 |
msgid "(no title)"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
#: ../modules/multiple-forms/edit-profile-forms.php:175
|
2341 |
#: ../modules/multiple-forms/register-forms.php:178
|
2342 |
+
#: ../modules/user-listing/userlisting.php:1078
|
2343 |
msgid "The shortcode will be available after you publish this form."
|
2344 |
msgstr ""
|
2345 |
|
2346 |
#: ../modules/multiple-forms/edit-profile-forms.php:177
|
2347 |
#: ../modules/multiple-forms/register-forms.php:180
|
2348 |
+
#: ../modules/user-listing/userlisting.php:1080
|
2349 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
#: ../modules/multiple-forms/edit-profile-forms.php:181
|
2353 |
#: ../modules/multiple-forms/register-forms.php:184
|
2354 |
+
#: ../modules/user-listing/userlisting.php:1084
|
2355 |
msgid ""
|
2356 |
"<span style=\"color:red;\">Note:</span> changing the form title also changes "
|
2357 |
"the shortcode!"
|
2359 |
|
2360 |
#: ../modules/multiple-forms/edit-profile-forms.php:187
|
2361 |
#: ../modules/multiple-forms/register-forms.php:190
|
2362 |
+
#: ../modules/user-listing/userlisting.php:1098
|
2363 |
msgid "Form Shortcode"
|
2364 |
msgstr ""
|
2365 |
|
2496 |
msgid "After Registration..."
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: ../modules/user-listing/class-userlisting.php:461
|
2500 |
+
#: ../modules/user-listing/userlisting.php:632
|
2501 |
+
#: ../modules/user-listing/userlisting.php:850
|
2502 |
+
#: ../modules/user-listing/userlisting.php:893
|
2503 |
+
#: ../modules/user-listing/userlisting.php:1217
|
2504 |
msgid "Search Users by All Fields"
|
2505 |
msgstr ""
|
2506 |
|
2541 |
msgstr ""
|
2542 |
|
2543 |
#: ../modules/user-listing/userlisting.php:118
|
2544 |
+
#: ../modules/user-listing/userlisting.php:1126
|
2545 |
msgid "Registration Date"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
#: ../modules/user-listing/userlisting.php:119
|
2549 |
+
#: ../modules/user-listing/userlisting.php:1130
|
2550 |
msgid "Number of Posts"
|
2551 |
msgstr ""
|
2552 |
|
2603 |
msgid "You do not have the required user role to view this user list"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: ../modules/user-listing/userlisting.php:353
|
2607 |
+
msgid "User not found"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
#: ../modules/user-listing/userlisting.php:525
|
2611 |
+
msgid "First/Lastname"
|
2612 |
+
msgstr ""
|
2613 |
+
|
2614 |
+
#: ../modules/user-listing/userlisting.php:531
|
2615 |
msgid "Sign-up Date"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: ../modules/user-listing/userlisting.php:540
|
2619 |
+
#: ../modules/user-listing/userlisting.php:1129
|
2620 |
msgid "Display Name"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: ../modules/user-listing/userlisting.php:549
|
2624 |
msgid "Posts"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: ../modules/user-listing/userlisting.php:552
|
2628 |
+
#: ../modules/user-listing/userlisting.php:1134
|
2629 |
msgid "Aim"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: ../modules/user-listing/userlisting.php:555
|
2633 |
+
#: ../modules/user-listing/userlisting.php:1135
|
2634 |
msgid "Yim"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: ../modules/user-listing/userlisting.php:558
|
2638 |
+
#: ../modules/user-listing/userlisting.php:1136
|
2639 |
msgid "Jabber"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: ../modules/user-listing/userlisting.php:709
|
2643 |
msgid "Click here to see more information about this user"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: ../modules/user-listing/userlisting.php:709
|
2647 |
msgid "More..."
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: ../modules/user-listing/userlisting.php:712
|
2651 |
msgid "Click here to see more information about this user."
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: ../modules/user-listing/userlisting.php:804
|
2655 |
+
#: ../modules/user-listing/userlisting.php:807
|
2656 |
msgid "Click here to go back"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: ../modules/user-listing/userlisting.php:804
|
2660 |
msgid "Back"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: ../modules/user-listing/userlisting.php:837
|
2664 |
msgid "«« First"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: ../modules/user-listing/userlisting.php:838
|
2668 |
msgid "« Prev"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: ../modules/user-listing/userlisting.php:839
|
2672 |
msgid "Next » "
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: ../modules/user-listing/userlisting.php:840
|
2676 |
msgid "Last »»"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: ../modules/user-listing/userlisting.php:869
|
2680 |
msgid "You don't have any pagination settings on this userlisting!"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: ../modules/user-listing/userlisting.php:910
|
2684 |
msgid "Search"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: ../modules/user-listing/userlisting.php:911
|
2688 |
msgid "Clear Results"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: ../modules/user-listing/userlisting.php:1087
|
2692 |
msgid "Extra shortcode parameters"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: ../modules/user-listing/userlisting.php:1089
|
2696 |
msgid ""
|
2697 |
"displays users having a certain meta-value within a certain (extra) meta-"
|
2698 |
"field"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: ../modules/user-listing/userlisting.php:1090
|
2702 |
msgid "Example:"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: ../modules/user-listing/userlisting.php:1092
|
2706 |
msgid ""
|
2707 |
"Remember though, that the field-value combination must exist in the database."
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: ../modules/user-listing/userlisting.php:1146
|
2711 |
msgid "Random (very slow on large databases > 10K user)"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2715 |
msgid "Roles to Display"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: ../modules/user-listing/userlisting.php:1159
|
2719 |
msgid ""
|
2720 |
"Restrict the userlisting to these selected roles only<br/>If not specified, "
|
2721 |
"defaults to all existing roles"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: ../modules/user-listing/userlisting.php:1160
|
2725 |
msgid "Number of Users/Page"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: ../modules/user-listing/userlisting.php:1160
|
2729 |
msgid ""
|
2730 |
"Set the number of users to be displayed on every paginated part of the all-"
|
2731 |
"userlisting"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2735 |
msgid "Default Sorting Criteria"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: ../modules/user-listing/userlisting.php:1161
|
2739 |
msgid ""
|
2740 |
"Set the default sorting criteria<br/>This can temporarily be changed for "
|
2741 |
"each new session"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2745 |
msgid "Default Sorting Order"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: ../modules/user-listing/userlisting.php:1162
|
2749 |
msgid ""
|
2750 |
"Set the default sorting order<br/>This can temporarily be changed for each "
|
2751 |
"new session"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2755 |
msgid "Avatar Size (All-userlisting)"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: ../modules/user-listing/userlisting.php:1163
|
2759 |
msgid "Set the avatar size on the all-userlisting only"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2763 |
msgid "Avatar Size (Single-userlisting)"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: ../modules/user-listing/userlisting.php:1164
|
2767 |
msgid "Set the avatar size on the single-userlisting only"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2771 |
msgid "Visible only to logged in users?"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: ../modules/user-listing/userlisting.php:1165
|
2775 |
msgid "The userlisting will only be visible only to the logged in users"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2779 |
msgid "Visible to following Roles"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: ../modules/user-listing/userlisting.php:1166
|
2783 |
msgid "The userlisting will only be visible to the following roles"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: ../modules/user-listing/userlisting.php:1172
|
2787 |
msgid "Userlisting Settings"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2791 |
msgid ""
|
2792 |
"You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
+
#: ../modules/user-listing/userlisting.php:1193
|
2796 |
msgid "You can find it in the Profile Builder menu."
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: ../modules/user-listing/userlisting.php:1343
|
2800 |
msgid "No results found!"
|
2801 |
msgstr ""
|