User registration & user profile – Profile Builder - Version 2.0.9

Version Description

  • Fixed bug that was causing the username to be sent instead of the email when login with email was set to true in the default registration emails.
  • Fixed bug in Password Reset email when Login with email was on.
  • The "This email is already reserved to be used soon" error wasn't appearing on single site when Email Confirmation was on. Now it does when it is the case.
  • Fixed bug that was causing an upload incompatibility with WordPress media uploader.
  • Fixed bug that was causing Password strength and Password length error messages to not be translatable.
  • Interface changes to forms in admin area on Profile Builder Pages.
  • Added possibility to edit other users from the front end edit form when an admin is logged in.
  • Added a popup in unconfirmed email user listing in admin area where the admin can see the users meta information.
  • Add logout shortcode and menu link to Profile Builder.
Download this release

Release Info

Developer reflectionmedia
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 2.0.9
Comparing to
See all releases

Code changes from version 2.0.8 to 2.0.9

Files changed (40) hide show
  1. admin/admin-functions.php +2 -2
  2. admin/manage-fields.php +38 -1
  3. assets/css/serial-notice.css +14 -14
  4. assets/css/style-back-end.css +38 -10
  5. assets/css/style-front-end.css +21 -4
  6. assets/images/sorting-ascending.png +0 -0
  7. assets/images/sorting-default.png +0 -0
  8. assets/images/sorting-descending.png +0 -0
  9. assets/images/sorting-icon-dots.png +0 -0
  10. assets/js/jquery-manage-fields-live-change.js +64 -2
  11. assets/lib/codemirror/lib/codemirror.css +273 -273
  12. assets/lib/wck-api/fields/checkbox.php +12 -7
  13. assets/lib/wck-api/fields/country select.php +1 -1
  14. assets/lib/wck-api/fields/cpt select.php +1 -1
  15. assets/lib/wck-api/fields/datepicker.php +1 -1
  16. assets/lib/wck-api/fields/radio.php +1 -1
  17. assets/lib/wck-api/fields/select.php +1 -1
  18. assets/lib/wck-api/fields/text.php +1 -1
  19. assets/lib/wck-api/fields/textarea.php +1 -1
  20. assets/lib/wck-api/fields/upload.php +1 -1
  21. assets/lib/wck-api/fields/user select.php +1 -1
  22. assets/lib/wck-api/fields/wysiwyg editor.php +1 -1
  23. assets/lib/wck-api/wordpress-creation-kit.js +2 -7
  24. assets/lib/wck-api/wordpress-creation-kit.php +200 -142
  25. features/email-confirmation/class-email-confirmation.php +14 -1
  26. features/email-confirmation/email-confirmation.php +7 -0
  27. features/functions.php +4 -0
  28. front-end/class-formbuilder.php +65 -13
  29. front-end/default-fields/email/email.php +11 -6
  30. front-end/default-fields/headings/about-yourself.php +11 -11
  31. front-end/default-fields/password/password.php +2 -2
  32. front-end/logout.php +31 -0
  33. front-end/recover.php +20 -10
  34. index.php +2 -2
  35. readme.txt +13 -2
  36. translation/profilebuilder-fr_FR.po +2584 -2584
  37. translation/profilebuilder-nl_NL.po +2596 -2596
  38. translation/profilebuilder-pt_BR.po +2589 -2589
  39. translation/profilebuilder-ro_RO.po +2591 -2591
  40. translation/profilebuilder-zh_CN.po +324 -2584
admin/admin-functions.php CHANGED
@@ -103,7 +103,7 @@ function wppb_password_check_extra_conditions( $errors, $user ){
103
  $wppb_generalSettings = get_option( 'wppb_general_settings' );
104
  if( !empty( $wppb_generalSettings['minimum_password_length'] ) ){
105
  if( strlen( $password ) < $wppb_generalSettings['minimum_password_length'] )
106
- $errors->add( 'pass', __( '<strong>ERROR</strong>: The password must have the minimum length of '. $wppb_generalSettings['minimum_password_length'] .' characters', 'profilebuilder' ) );
107
  }
108
 
109
  if( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ){
@@ -120,7 +120,7 @@ function wppb_password_check_extra_conditions( $errors, $user ){
120
 
121
  if( !empty( $password_strength_result_slug ) ){
122
  if( $password_strength_array[$password_strength_result_slug] < $password_strength_array[$wppb_generalSettings['minimum_password_strength']] )
123
- $errors->add( 'pass', __( '<strong>ERROR</strong>: The password must have a minimum strength of '. $password_strength_text[$wppb_generalSettings['minimum_password_strength']], 'profilebuilder' ) );
124
  }
125
  }
126
  }
103
  $wppb_generalSettings = get_option( 'wppb_general_settings' );
104
  if( !empty( $wppb_generalSettings['minimum_password_length'] ) ){
105
  if( strlen( $password ) < $wppb_generalSettings['minimum_password_length'] )
106
+ $errors->add( 'pass', sprintf( __( '<strong>ERROR</strong>: The password must have the minimum length of %s characters', 'profilebuilder' ), $wppb_generalSettings['minimum_password_length'] ) );
107
  }
108
 
109
  if( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ){
120
 
121
  if( !empty( $password_strength_result_slug ) ){
122
  if( $password_strength_array[$password_strength_result_slug] < $password_strength_array[$wppb_generalSettings['minimum_password_strength']] )
123
+ $errors->add( 'pass', sprintf( __( '<strong>ERROR</strong>: The password must have a minimum strength of %s', 'profilebuilder' ), $password_strength_text[$wppb_generalSettings['minimum_password_strength']] ) );
124
  }
125
  }
126
  }
admin/manage-fields.php CHANGED
@@ -52,6 +52,7 @@ function wppb_manage_fields_submenu(){
52
  $manage_field_types[] = 'Select (Multiple)';
53
  $manage_field_types[] = 'Select (Country)';
54
  $manage_field_types[] = 'Select (Timezone)';
 
55
  $manage_field_types[] = 'Checkbox';
56
  $manage_field_types[] = 'Checkbox (Terms and Conditions)';
57
  $manage_field_types[] = 'Radio';
@@ -68,6 +69,14 @@ function wppb_manage_fields_submenu(){
68
  $field_description .='. Extra Field Types are available in %1$sHobbyist or PRO versions%2$s.';
69
  }
70
 
 
 
 
 
 
 
 
 
71
  // set up the fields array
72
  $fields = apply_filters( 'wppb_manage_fields', array(
73
 
@@ -86,6 +95,8 @@ function wppb_manage_fields_submenu(){
86
  array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profilebuilder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profilebuilder' ) ),
87
  array( 'type' => 'text', 'slug' => 'public-key', 'title' => __( 'Public Key', 'profilebuilder' ), 'description' => __( 'The public key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profilebuilder' ) ),
88
  array( 'type' => 'text', 'slug' => 'private-key', 'title' => __( 'Private Key', 'profilebuilder' ), 'description' => __( 'The private key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profilebuilder' ) ),
 
 
89
  array( 'type' => 'text', 'slug' => 'default-value', 'title' => __( 'Default Value', 'profilebuilder' ), 'description' => __( "Default value of the field", 'profilebuilder' ) ),
90
  array( 'type' => 'text', 'slug' => 'default-option', 'title' => __( 'Default Option', 'profilebuilder' ), 'description' => __( "Specify the option which should be selected by default", 'profilebuilder' ) ),
91
  array( 'type' => 'text', 'slug' => 'default-options', 'title' => __( 'Default Option(s)', 'profilebuilder' ), 'description' => __( "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)", 'profilebuilder' ) ),
@@ -279,6 +290,7 @@ function wppb_return_unique_field_list( $only_default_fields = false ){
279
  if( !$only_default_fields ){
280
  $unique_field_list[] = 'Avatar';
281
  $unique_field_list[] = 'reCAPTCHA';
 
282
  }
283
 
284
  return apply_filters ( 'wppb_unique_field_list', $unique_field_list );
@@ -374,7 +386,7 @@ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $met
374
  $unique_meta_name_list = array( 'first_name', 'last_name', 'nickname', 'description' );
375
 
376
  //check to see if meta-name is empty
377
- $skip_empty_check_for_fields = array('Heading');
378
 
379
  if( !in_array( $posted_values['field'], $skip_empty_check_for_fields ) && empty( $posted_values['meta-name'] ) ) {
380
  $message .= __( "The meta-name cannot be empty\n", 'profilebuilder' );
@@ -437,6 +449,14 @@ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $met
437
  }
438
  // END check for valid default option (checkbox, select, radio)
439
 
 
 
 
 
 
 
 
 
440
  $message = apply_filters( 'wppb_check_extra_manage_fields', $message, $posted_values );
441
 
442
  }elseif ( ( $meta_name == 'wppb_rf_fields' ) || ( $meta_name == 'wppb_epf_fields' ) ){
@@ -541,3 +561,20 @@ function wppb_remove_properties_from_added_form( $meta_name, $id, $element_id ){
541
  echo "<script type=\"text/javascript\">wppb_edit_form_properties( '#container_wppb_manage_fields', 'update_container_wppb_manage_fields_".$element_id."' );</script>";
542
  }
543
  add_action("wck_after_adding_form", "wppb_remove_properties_from_added_form", 10, 3);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  $manage_field_types[] = 'Select (Multiple)';
53
  $manage_field_types[] = 'Select (Country)';
54
  $manage_field_types[] = 'Select (Timezone)';
55
+ $manage_field_types[] = 'Select (User Role)';
56
  $manage_field_types[] = 'Checkbox';
57
  $manage_field_types[] = 'Checkbox (Terms and Conditions)';
58
  $manage_field_types[] = 'Radio';
69
  $field_description .='. Extra Field Types are available in %1$sHobbyist or PRO versions%2$s.';
70
  }
71
 
72
+ //user roles
73
+ global $wp_roles;
74
+
75
+ $user_roles = array();
76
+ foreach( $wp_roles->roles as $user_role_slug => $user_role )
77
+ if( $user_role_slug !== 'administrator' )
78
+ array_push( $user_roles, '%' . $user_role['name'] . '%' . $user_role_slug );
79
+
80
  // set up the fields array
81
  $fields = apply_filters( 'wppb_manage_fields', array(
82
 
95
  array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profilebuilder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profilebuilder' ) ),
96
  array( 'type' => 'text', 'slug' => 'public-key', 'title' => __( 'Public Key', 'profilebuilder' ), 'description' => __( 'The public key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profilebuilder' ) ),
97
  array( 'type' => 'text', 'slug' => 'private-key', 'title' => __( 'Private Key', 'profilebuilder' ), 'description' => __( 'The private key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profilebuilder' ) ),
98
+ array( 'type' => 'checkbox', 'slug' => 'user-roles', 'title' => __( 'User Roles', 'profilebuilder' ), 'options' => $user_roles, 'description' => __( "Select which user roles to show to the user ( drag and drop to re-order )", 'profilebuilder' ) ),
99
+ array( 'type' => 'text', 'slug' => 'user-roles-sort-order', 'title' => __( 'User Roles Order', 'profilebuilder' ), 'description' => __( "Save the user role order from the user roles checkboxes", 'profilebuilder' ) ),
100
  array( 'type' => 'text', 'slug' => 'default-value', 'title' => __( 'Default Value', 'profilebuilder' ), 'description' => __( "Default value of the field", 'profilebuilder' ) ),
101
  array( 'type' => 'text', 'slug' => 'default-option', 'title' => __( 'Default Option', 'profilebuilder' ), 'description' => __( "Specify the option which should be selected by default", 'profilebuilder' ) ),
102
  array( 'type' => 'text', 'slug' => 'default-options', 'title' => __( 'Default Option(s)', 'profilebuilder' ), 'description' => __( "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)", 'profilebuilder' ) ),
290
  if( !$only_default_fields ){
291
  $unique_field_list[] = 'Avatar';
292
  $unique_field_list[] = 'reCAPTCHA';
293
+ $unique_field_list[] = 'Select (User Role)';
294
  }
295
 
296
  return apply_filters ( 'wppb_unique_field_list', $unique_field_list );
386
  $unique_meta_name_list = array( 'first_name', 'last_name', 'nickname', 'description' );
387
 
388
  //check to see if meta-name is empty
389
+ $skip_empty_check_for_fields = array('Heading', 'Select (User Role)');
390
 
391
  if( !in_array( $posted_values['field'], $skip_empty_check_for_fields ) && empty( $posted_values['meta-name'] ) ) {
392
  $message .= __( "The meta-name cannot be empty\n", 'profilebuilder' );
449
  }
450
  // END check for valid default option (checkbox, select, radio)
451
 
452
+ // check to see if any user role is selected (user-role field)
453
+ if( $posted_values['field'] == 'Select (User Role)' ) {
454
+ if( empty( $posted_values['user-roles'] ) ) {
455
+ $message .= __( "Please select at least one user role\n", 'profilebuilder' );
456
+ }
457
+ }
458
+ // END check to see if Administrator user role has been selected (user-role field)
459
+
460
  $message = apply_filters( 'wppb_check_extra_manage_fields', $message, $posted_values );
461
 
462
  }elseif ( ( $meta_name == 'wppb_rf_fields' ) || ( $meta_name == 'wppb_epf_fields' ) ){
561
  echo "<script type=\"text/javascript\">wppb_edit_form_properties( '#container_wppb_manage_fields', 'update_container_wppb_manage_fields_".$element_id."' );</script>";
562
  }
563
  add_action("wck_after_adding_form", "wppb_remove_properties_from_added_form", 10, 3);
564
+
565
+ /*
566
+ * WPML Support for dynamic strings in Profile Builder. Tags: WPML, fields, translate
567
+ */
568
+ add_filter( 'update_option_wppb_manage_fields', 'wppb_wpml_compat_with_fields', 10, 2 );
569
+ function wppb_wpml_compat_with_fields( $oldvalue, $_newvalue ){
570
+ if ( is_array( $_newvalue ) ){
571
+ foreach ( $_newvalue as $field ){
572
+ $field_title = $field['field-title'];
573
+ $field_description = $field['description'];
574
+ if (function_exists('icl_register_string')){
575
+ icl_register_string('plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation' , $field_title);
576
+ icl_register_string('plugin profile-builder-pro', 'custom_field_'.$field['id'].'_description_translation', $field_description);
577
+ }
578
+ }
579
+ }
580
+ }
assets/css/serial-notice.css CHANGED
@@ -1,15 +1,15 @@
1
- .wppb-serial-wrap{
2
- margin:40px 0;
3
- }
4
-
5
- .wppb-dismiss-notification{
6
- position:absolute;
7
- right:0px;
8
- top:50%;
9
- margin-top:-7px;
10
- }
11
-
12
- div.wppb-serial-notification p{
13
- padding-right: 50px;
14
- position:relative;
15
  }
1
+ .wppb-serial-wrap{
2
+ margin:40px 0;
3
+ }
4
+
5
+ .wppb-dismiss-notification{
6
+ position:absolute;
7
+ right:0px;
8
+ top:50%;
9
+ margin-top:-7px;
10
+ }
11
+
12
+ div.wppb-serial-notification p{
13
+ padding-right: 50px;
14
+ position:relative;
15
  }
assets/css/style-back-end.css CHANGED
@@ -128,6 +128,10 @@
128
  display:none !important;
129
  }
130
 
 
 
 
 
131
  #container_wppb_manage_fields .added_fields_list li.row-meta-name{
132
  display:list-item !important;
133
  }
@@ -137,6 +141,23 @@
137
  min-height:10px;
138
  }
139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
  #container_wppb_manage_fields pre{
141
  display:block;
142
  float:left;
@@ -218,21 +239,25 @@
218
  }
219
 
220
  #wppb_rf_page_settings .row-url, #wppb_rf_page_settings .row-display-messages, .update_container_wppb_rf_page_settings.redirect_ .row-url,
221
- .update_container_wppb_rf_page_settings.redirect_ .row-display-messages, #container_wppb_rf_page_settings .redirect_ .wck-content .row-url,
222
- #container_wppb_rf_page_settings .redirect_ .wck-content .row-display-messages, .update_container_wppb_rf_page_settings.redirect_no .row-url,
223
- .update_container_wppb_rf_page_settings.redirect_no .row-display-messages, #container_wppb_rf_page_settings .redirect_no .wck-content .row-url,
224
- #container_wppb_rf_page_settings .redirect_no .wck-content .row-display-messages{
225
  display:none;
226
  }
227
 
 
 
 
 
228
  #wppb_epf_page_settings .row-url, #wppb_epf_page_settings .row-display-messages, .update_container_wppb_epf_page_settings.redirect_ .row-url,
229
- .update_container_wppb_epf_page_settings.redirect_ .row-display-messages, #container_wppb_epf_page_settings .redirect_ .wck-content .row-url,
230
- #container_wppb_epf_page_settings .redirect_ .wck-content .row-display-messages, .update_container_wppb_epf_page_settings.redirect_no .row-url,
231
- .update_container_wppb_epf_page_settings.redirect_no .row-display-messages, #container_wppb_epf_page_settings .redirect_no .wck-content .row-url,
232
- #container_wppb_epf_page_settings .redirect_no .wck-content .row-display-messages{
233
  display:none;
234
  }
235
 
 
 
 
 
236
  /* Columns :) */
237
  .wppb-row{
238
  overflow:hidden;
@@ -404,11 +429,14 @@
404
  }
405
 
406
 
407
- #wppb_ul_page_settings .row-visible-to-following-roles, .update_container_wppb_ul_page_settings.visible_to_logged_ .row-visible-to-following-roles,
408
- #container_wppb_ul_page_settings .visible_to_logged_ .wck-content .row-visible-to-following-roles{
409
  display:none;
410
  }
411
 
 
 
 
 
412
  /* Manage Fields Responsive CSS */
413
  @media screen and ( max-width: 1125px ) {
414
  /* Manage Fields Responsive */
128
  display:none !important;
129
  }
130
 
131
+ #container_wppb_manage_fields li .description strong {
132
+ display: inline !important;
133
+ }
134
+
135
  #container_wppb_manage_fields .added_fields_list li.row-meta-name{
136
  display:list-item !important;
137
  }
141
  min-height:10px;
142
  }
143
 
144
+ #wppb_manage_fields li.row-user-roles label,
145
+ #container_wppb_manage_fields li.row-user-roles label {
146
+ background: #fff;
147
+ }
148
+
149
+ #wppb_manage_fields li.row-user-roles .sortable-handle,
150
+ #container_wppb_manage_fields li.row-user-roles .sortable-handle {
151
+ display: inline-block;
152
+ width: 16px;
153
+ height: 16px;
154
+ background: url('../images/sorting-icon-dots.png') no-repeat center center;;
155
+ vertical-align: middle;
156
+ margin-right: 7px;
157
+ cursor: move;
158
+ margin-top: -1px;
159
+ }
160
+
161
  #container_wppb_manage_fields pre{
162
  display:block;
163
  float:left;
239
  }
240
 
241
  #wppb_rf_page_settings .row-url, #wppb_rf_page_settings .row-display-messages, .update_container_wppb_rf_page_settings.redirect_ .row-url,
242
+ .update_container_wppb_rf_page_settings.redirect_ .row-display-messages, .update_container_wppb_rf_page_settings.redirect_no .row-url,
243
+ .update_container_wppb_rf_page_settings.redirect_no .row-display-messages{
 
 
244
  display:none;
245
  }
246
 
247
+ #wppb_rf_page_settings.update_container_wppb_rf_page_settings.redirect_yes .row-url, #wppb_rf_page_settings.update_container_wppb_rf_page_settings.redirect_yes .row-display-messages{
248
+ display: block;
249
+ }
250
+
251
  #wppb_epf_page_settings .row-url, #wppb_epf_page_settings .row-display-messages, .update_container_wppb_epf_page_settings.redirect_ .row-url,
252
+ .update_container_wppb_epf_page_settings.redirect_ .row-display-messages, .update_container_wppb_epf_page_settings.redirect_no .row-url,
253
+ .update_container_wppb_epf_page_settings.redirect_no .row-display-messages{
 
 
254
  display:none;
255
  }
256
 
257
+ #wppb_epf_page_settings.update_container_wppb_epf_page_settings.redirect_yes .row-url, #wppb_epf_page_settings.update_container_wppb_epf_page_settings.redirect_yes .row-display-messages{
258
+ display: block;
259
+ }
260
+
261
  /* Columns :) */
262
  .wppb-row{
263
  overflow:hidden;
429
  }
430
 
431
 
432
+ #wppb_ul_page_settings .row-visible-to-following-roles, .update_container_wppb_ul_page_settings.visible_to_logged_ .row-visible-to-following-roles{
 
433
  display:none;
434
  }
435
 
436
+ #wppb_ul_page_settings.update_container_wppb_ul_page_settings.visible_to_logged_yes .row-visible-to-following-roles{
437
+ display: block;
438
+ }
439
+
440
  /* Manage Fields Responsive CSS */
441
  @media screen and ( max-width: 1125px ) {
442
  /* Manage Fields Responsive */
assets/css/style-front-end.css CHANGED
@@ -113,7 +113,8 @@
113
  }
114
 
115
  .wppb-user-forms ul li,
116
- #wppb-login-wrap p{
 
117
  overflow:hidden;
118
  margin:0;
119
  padding-bottom:14px;
@@ -191,7 +192,7 @@ input#send_credentials_via_email{
191
  width:auto;
192
  }
193
 
194
- #wppb-edit-user .wppb-checkbox-terms-and-conditions {
195
  display:none;
196
  }
197
 
@@ -228,8 +229,8 @@ input#send_credentials_via_email{
228
  color:green;
229
  }
230
 
231
- #wppb-register-user .wppb-field-error,
232
- #wppb-edit-user .wppb-field-error,
233
  #wppb-recover-password .wppb-field-error{
234
  background-color: #FFDFDF;
235
  border: 1px dotted #C89797;
@@ -289,6 +290,22 @@ input#send_credentials_via_email{
289
  background: none;
290
  }
291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  .wppb-table tr:hover{
293
  background: #f1fcff;
294
  }
113
  }
114
 
115
  .wppb-user-forms ul li,
116
+ #wppb-login-wrap p,
117
+ #select_user_to_edit_form p{
118
  overflow:hidden;
119
  margin:0;
120
  padding-bottom:14px;
192
  width:auto;
193
  }
194
 
195
+ .wppb-edit-user .wppb-checkbox-terms-and-conditions {
196
  display:none;
197
  }
198
 
229
  color:green;
230
  }
231
 
232
+ .wppb-register-user .wppb-field-error,
233
+ .wppb-edit-user .wppb-field-error,
234
  #wppb-recover-password .wppb-field-error{
235
  background-color: #FFDFDF;
236
  border: 1px dotted #C89797;
290
  background: none;
291
  }
292
 
293
+ .wppb-table .wppb-sorting .wppb-sorting-default {
294
+ display: inline-block;
295
+ width: 16px;
296
+ height: 16px;
297
+ background: url('../images/sorting-default.png') no-repeat center center;
298
+ vertical-align: middle;
299
+ }
300
+
301
+ .wppb-table .wppb-sorting .wppb-sorting-ascending {
302
+ background-image: url('../images/sorting-ascending.png');
303
+ }
304
+
305
+ .wppb-table .wppb-sorting .wppb-sorting-descending {
306
+ background-image: url('../images/sorting-descending.png');
307
+ }
308
+
309
  .wppb-table tr:hover{
310
  background: #f1fcff;
311
  }
assets/images/sorting-ascending.png ADDED
Binary file
assets/images/sorting-default.png ADDED
Binary file
assets/images/sorting-descending.png ADDED
Binary file
assets/images/sorting-icon-dots.png ADDED
Binary file
assets/js/jquery-manage-fields-live-change.js CHANGED
@@ -351,7 +351,18 @@ var fields = {
351
  'required' : [
352
  true
353
  ]
354
- }
 
 
 
 
 
 
 
 
 
 
 
355
  }
356
  var fields_to_show = [
357
  '.row-field-title',
@@ -441,6 +452,9 @@ function wppb_edit_form_properties( container_name, element_id ){
441
  }
442
 
443
  jQuery( container_name + ' ' + '.mb-list-entry-fields .button-primary' ).removeAttr( 'disabled' );
 
 
 
444
  }
445
  }
446
 
@@ -496,7 +510,9 @@ function wppb_display_needed_fields( index, container_name, current_field_select
496
  jQuery( container_name + ' ' + '#meta-name' ).val( meta_value );
497
  jQuery( container_name + ' ' + '#meta-name' ).attr( 'readonly', false );
498
  }
499
-
 
 
500
 
501
  var set_required = fields[jQuery.trim(index)]['required'];
502
  if ( ( typeof set_required !== 'undefined' ) && ( set_required ) ){
@@ -512,6 +528,52 @@ function wppb_display_needed_fields( index, container_name, current_field_select
512
  }
513
 
514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
515
  function wppb_initialize_live_select( container_name ){
516
  wppb_hide_all( container_name );
517
  jQuery(document).on( 'change', container_name + ' ' + '.mb-list-entry-fields #field', function () {
351
  'required' : [
352
  true
353
  ]
354
+ },
355
+ 'Select (User Role)': { 'show_rows' : [
356
+ '.row-field-title',
357
+ '.row-description',
358
+ '.row-user-roles',
359
+ '.row-required'
360
+ ],
361
+ 'properties': {
362
+ 'meta_name_value' : ''
363
+ }
364
+ }
365
+
366
  }
367
  var fields_to_show = [
368
  '.row-field-title',
452
  }
453
 
454
  jQuery( container_name + ' ' + '.mb-list-entry-fields .button-primary' ).removeAttr( 'disabled' );
455
+
456
+ //Handle user role sorting
457
+ wppb_handle_user_role_field( container_name );
458
  }
459
  }
460
 
510
  jQuery( container_name + ' ' + '#meta-name' ).val( meta_value );
511
  jQuery( container_name + ' ' + '#meta-name' ).attr( 'readonly', false );
512
  }
513
+
514
+ //Handle user role sorting
515
+ wppb_handle_user_role_field( container_name );
516
 
517
  var set_required = fields[jQuery.trim(index)]['required'];
518
  if ( ( typeof set_required !== 'undefined' ) && ( set_required ) ){
528
  }
529
 
530
 
531
+ /*
532
+ * Function that handles the sorting of the user roles from the Select (User Role)
533
+ * extra field
534
+ *
535
+ */
536
+ function wppb_handle_user_role_field( container_name ) {
537
+
538
+ jQuery( container_name + ' ' + '.row-user-roles .wck-checkboxes').sortable({
539
+
540
+ //Assign a custom handle for the drag and drop
541
+ handle: '.sortable-handle',
542
+
543
+ create: function( event, ui ) {
544
+
545
+ //Add the custom handle for drag and drop
546
+ jQuery(this).find('div').each( function() {
547
+ jQuery(this).prepend('<span class="sortable-handle"></span>');
548
+ });
549
+
550
+ $sortOrderInput = jQuery(this).parents('.row-user-roles').siblings('.row-user-roles-sort-order').find('input[type=text]');
551
+
552
+ if( $sortOrderInput.val() == '' ) {
553
+ jQuery(this).find('input[type=checkbox]').each( function() {
554
+ $sortOrderInput.val( $sortOrderInput.val() + ', ' + jQuery(this).val() );
555
+ });
556
+ } else {
557
+ sortOrderElements = $sortOrderInput.val().split(', ');
558
+ sortOrderElements.shift();
559
+
560
+ for( var i=0; i < sortOrderElements.length; i++ ) {
561
+ jQuery( container_name + ' ' + '.row-user-roles .wck-checkboxes').append( jQuery( container_name + ' ' + '.row-user-roles .wck-checkboxes input[value=' + sortOrderElements[i] + ']').parent().parent().get(0) );
562
+ }
563
+ }
564
+ },
565
+
566
+ update: function( event, ui ) {
567
+ $sortOrderInput = ui.item.parents('.row-user-roles').siblings('.row-user-roles-sort-order').find('input[type=text]');
568
+ $sortOrderInput.val('');
569
+
570
+ ui.item.parent().find('input[type=checkbox]').each( function() {
571
+ $sortOrderInput.val( $sortOrderInput.val() + ', ' + jQuery(this).val() );
572
+ });
573
+ }
574
+ });
575
+ }
576
+
577
  function wppb_initialize_live_select( container_name ){
578
  wppb_hide_all( container_name );
579
  jQuery(document).on( 'change', container_name + ' ' + '.mb-list-entry-fields #field', function () {
assets/lib/codemirror/lib/codemirror.css CHANGED
@@ -1,273 +1,273 @@
1
- /* BASICS */
2
-
3
- .CodeMirror {
4
- /* Set height, width, borders, and global font properties here */
5
- font-family: monospace;
6
- height: 300px;
7
- }
8
- .CodeMirror-scroll {
9
- /* Set scrolling behaviour here */
10
- overflow: auto;
11
- }
12
-
13
- /* PADDING */
14
-
15
- .CodeMirror-lines {
16
- padding: 4px 0; /* Vertical padding around content */
17
- }
18
- .CodeMirror pre {
19
- padding: 0 4px; /* Horizontal padding of content */
20
- }
21
-
22
- .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
23
- background-color: white; /* The little square between H and V scrollbars */
24
- }
25
-
26
- /* GUTTER */
27
-
28
- .CodeMirror-gutters {
29
- border-right: 1px solid #ddd;
30
- background-color: #f7f7f7;
31
- white-space: nowrap;
32
- }
33
- .CodeMirror-linenumbers {}
34
- .CodeMirror-linenumber {
35
- padding: 0 3px 0 5px;
36
- min-width: 20px;
37
- text-align: right;
38
- color: #999;
39
- }
40
-
41
- /* CURSOR */
42
-
43
- .CodeMirror div.CodeMirror-cursor {
44
- border-left: 1px solid black;
45
- z-index: 3;
46
- }
47
- /* Shown when moving in bi-directional text */
48
- .CodeMirror div.CodeMirror-secondarycursor {
49
- border-left: 1px solid silver;
50
- }
51
- .CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
52
- width: auto;
53
- border: 0;
54
- background: #7e7;
55
- z-index: 1;
56
- }
57
- /* Can style cursor different in overwrite (non-insert) mode */
58
- .CodeMirror div.CodeMirror-cursor.CodeMirror-overwrite {}
59
-
60
- .cm-tab { display: inline-block; }
61
-
62
- /* DEFAULT THEME */
63
-
64
- .cm-s-default .cm-keyword {color: #708;}
65
- .cm-s-default .cm-atom {color: #219;}
66
- .cm-s-default .cm-number {color: #164;}
67
- .cm-s-default .cm-def {color: #00f;}
68
- .cm-s-default .cm-variable {color: black;}
69
- .cm-s-default .cm-variable-2 {color: #05a;}
70
- .cm-s-default .cm-variable-3 {color: #085;}
71
- .cm-s-default .cm-property {color: black;}
72
- .cm-s-default .cm-operator {color: black;}
73
- .cm-s-default .cm-comment {color: #a50;}
74
- .cm-s-default .cm-string {color: #a11;}
75
- .cm-s-default .cm-string-2 {color: #f50;}
76
- .cm-s-default .cm-meta {color: #555;}
77
- .cm-s-default .cm-error {color: #f00;}
78
- .cm-s-default .cm-qualifier {color: #555;}
79
- .cm-s-default .cm-builtin {color: #30a;}
80
- .cm-s-default .cm-bracket {color: #997;}
81
- .cm-s-default .cm-tag {color: #170;}
82
- .cm-s-default .cm-attribute {color: #00c;}
83
- .cm-s-default .cm-header {color: blue;}
84
- .cm-s-default .cm-quote {color: #090;}
85
- .cm-s-default .cm-hr {color: #999;}
86
- .cm-s-default .cm-link {color: #00c;}
87
-
88
- .cm-negative {color: #d44;}
89
- .cm-positive {color: #292;}
90
- .cm-header, .cm-strong {font-weight: bold;}
91
- .cm-em {font-style: italic;}
92
- .cm-link {text-decoration: underline;}
93
-
94
- .cm-invalidchar {color: #f00;}
95
-
96
- div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
97
- div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
98
- .CodeMirror-activeline-background {background: #e8f2ff;}
99
-
100
- /* STOP */
101
-
102
- /* The rest of this file contains styles related to the mechanics of
103
- the editor. You probably shouldn't touch them. */
104
-
105
- .CodeMirror {
106
- line-height: 1;
107
- position: relative;
108
- overflow: hidden;
109
- background: white;
110
- color: black;
111
- }
112
-
113
- .CodeMirror-scroll {
114
- /* 30px is the magic margin used to hide the element's real scrollbars */
115
- /* See overflow: hidden in .CodeMirror */
116
- margin-bottom: -30px; margin-right: -30px;
117
- padding-bottom: 30px; padding-right: 30px;
118
- height: 100%;
119
- outline: none; /* Prevent dragging from highlighting the element */
120
- position: relative;
121
- -moz-box-sizing: content-box;
122
- box-sizing: content-box;
123
- }
124
- .CodeMirror-sizer {
125
- position: relative;
126
- }
127
-
128
- /* The fake, visible scrollbars. Used to force redraw during scrolling
129
- before actuall scrolling happens, thus preventing shaking and
130
- flickering artifacts. */
131
- .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
132
- position: absolute;
133
- z-index: 6;
134
- display: none;
135
- }
136
- .CodeMirror-vscrollbar {
137
- right: 0; top: 0;
138
- overflow-x: hidden;
139
- overflow-y: scroll;
140
- }
141
- .CodeMirror-hscrollbar {
142
- bottom: 0; left: 0;
143
- overflow-y: hidden;
144
- overflow-x: scroll;
145
- }
146
- .CodeMirror-scrollbar-filler {
147
- right: 0; bottom: 0;
148
- }
149
- .CodeMirror-gutter-filler {
150
- left: 0; bottom: 0;
151
- }
152
-
153
- .CodeMirror-gutters {
154
- position: absolute; left: 0; top: 0;
155
- padding-bottom: 30px;
156
- z-index: 3;
157
- }
158
- .CodeMirror-gutter {
159
- white-space: normal;
160
- height: 100%;
161
- -moz-box-sizing: content-box;
162
- box-sizing: content-box;
163
- padding-bottom: 30px;
164
- margin-bottom: -32px;
165
- display: inline-block;
166
- /* Hack to make IE7 behave */
167
- *zoom:1;
168
- *display:inline;
169
- }
170
- .CodeMirror-gutter-elt {
171
- position: absolute;
172
- cursor: default;
173
- z-index: 4;
174
- }
175
-
176
- .CodeMirror-lines {
177
- cursor: text;
178
- }
179
- .CodeMirror pre {
180
- /* Reset some styles that the rest of the page might have set */
181
- -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
182
- border-width: 0;
183
- background: transparent;
184
- font-family: inherit;
185
- font-size: inherit;
186
- margin: 0;
187
- white-space: pre;
188
- word-wrap: normal;
189
- line-height: inherit;
190
- color: inherit;
191
- z-index: 2;
192
- position: relative;
193
- overflow: visible;
194
- }
195
- .CodeMirror-wrap pre {
196
- word-wrap: break-word;
197
- white-space: pre-wrap;
198
- word-break: normal;
199
- }
200
- .CodeMirror-code pre {
201
- border-right: 30px solid transparent;
202
- width: -webkit-fit-content;
203
- width: -moz-fit-content;
204
- width: fit-content;
205
- }
206
- .CodeMirror-wrap .CodeMirror-code pre {
207
- border-right: none;
208
- width: auto;
209
- }
210
- .CodeMirror-linebackground {
211
- position: absolute;
212
- left: 0; right: 0; top: 0; bottom: 0;
213
- z-index: 0;
214
- }
215
-
216
- .CodeMirror-linewidget {
217
- position: relative;
218
- z-index: 2;
219
- overflow: auto;
220
- }
221
-
222
- .CodeMirror-widget {}
223
-
224
- .CodeMirror-wrap .CodeMirror-scroll {
225
- overflow-x: hidden;
226
- }
227
-
228
- .CodeMirror-measure {
229
- position: absolute;
230
- width: 100%;
231
- height: 0;
232
- overflow: hidden;
233
- visibility: hidden;
234
- }
235
- .CodeMirror-measure pre { position: static; }
236
-
237
- .CodeMirror div.CodeMirror-cursor {
238
- position: absolute;
239
- visibility: hidden;
240
- border-right: none;
241
- width: 0;
242
- }
243
- .CodeMirror-focused div.CodeMirror-cursor {
244
- visibility: visible;
245
- }
246
-
247
- .CodeMirror-selected { background: #d9d9d9; }
248
- .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
249
-
250
- .cm-searching {
251
- background: #ffa;
252
- background: rgba(255, 255, 0, .4);
253
- }
254
-
255
- /* IE7 hack to prevent it from returning funny offsetTops on the spans */
256
- .CodeMirror span { *vertical-align: text-bottom; }
257
-
258
- @media print {
259
- /* Hide the cursor when printing */
260
- .CodeMirror div.CodeMirror-cursor {
261
- visibility: hidden;
262
- }
263
- }
264
-
265
-
266
- /* fullscreen adapted code */
267
- .CodeMirror-fullscreen {
268
- position: fixed;
269
- top: 0; left: 0; right: 0; bottom: 0;
270
- height: auto;
271
- width:auto !important;
272
- z-index: 999999;
273
- }
1
+ /* BASICS */
2
+
3
+ .CodeMirror {
4
+ /* Set height, width, borders, and global font properties here */
5
+ font-family: monospace;
6
+ height: 300px;
7
+ }
8
+ .CodeMirror-scroll {
9
+ /* Set scrolling behaviour here */
10
+ overflow: auto;
11
+ }
12
+
13
+ /* PADDING */
14
+
15
+ .CodeMirror-lines {
16
+ padding: 4px 0; /* Vertical padding around content */
17
+ }
18
+ .CodeMirror pre {
19
+ padding: 0 4px; /* Horizontal padding of content */
20
+ }
21
+
22
+ .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
23
+ background-color: white; /* The little square between H and V scrollbars */
24
+ }
25
+
26
+ /* GUTTER */
27
+
28
+ .CodeMirror-gutters {
29
+ border-right: 1px solid #ddd;
30
+ background-color: #f7f7f7;
31
+ white-space: nowrap;
32
+ }
33
+ .CodeMirror-linenumbers {}
34
+ .CodeMirror-linenumber {
35
+ padding: 0 3px 0 5px;
36
+ min-width: 20px;
37
+ text-align: right;
38
+ color: #999;
39
+ }
40
+
41
+ /* CURSOR */
42
+
43
+ .CodeMirror div.CodeMirror-cursor {
44
+ border-left: 1px solid black;
45
+ z-index: 3;
46
+ }
47
+ /* Shown when moving in bi-directional text */
48
+ .CodeMirror div.CodeMirror-secondarycursor {
49
+ border-left: 1px solid silver;
50
+ }
51
+ .CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
52
+ width: auto;
53
+ border: 0;
54
+ background: #7e7;
55
+ z-index: 1;
56
+ }
57
+ /* Can style cursor different in overwrite (non-insert) mode */
58
+ .CodeMirror div.CodeMirror-cursor.CodeMirror-overwrite {}
59
+
60
+ .cm-tab { display: inline-block; }
61
+
62
+ /* DEFAULT THEME */
63
+
64
+ .cm-s-default .cm-keyword {color: #708;}
65
+ .cm-s-default .cm-atom {color: #219;}
66
+ .cm-s-default .cm-number {color: #164;}
67
+ .cm-s-default .cm-def {color: #00f;}
68
+ .cm-s-default .cm-variable {color: black;}
69
+ .cm-s-default .cm-variable-2 {color: #05a;}
70
+ .cm-s-default .cm-variable-3 {color: #085;}
71
+ .cm-s-default .cm-property {color: black;}
72
+ .cm-s-default .cm-operator {color: black;}
73
+ .cm-s-default .cm-comment {color: #a50;}
74
+ .cm-s-default .cm-string {color: #a11;}
75
+ .cm-s-default .cm-string-2 {color: #f50;}
76
+ .cm-s-default .cm-meta {color: #555;}
77
+ .cm-s-default .cm-error {color: #f00;}
78
+ .cm-s-default .cm-qualifier {color: #555;}
79
+ .cm-s-default .cm-builtin {color: #30a;}
80
+ .cm-s-default .cm-bracket {color: #997;}
81
+ .cm-s-default .cm-tag {color: #170;}
82
+ .cm-s-default .cm-attribute {color: #00c;}
83
+ .cm-s-default .cm-header {color: blue;}
84
+ .cm-s-default .cm-quote {color: #090;}
85
+ .cm-s-default .cm-hr {color: #999;}
86
+ .cm-s-default .cm-link {color: #00c;}
87
+
88
+ .cm-negative {color: #d44;}
89
+ .cm-positive {color: #292;}
90
+ .cm-header, .cm-strong {font-weight: bold;}
91
+ .cm-em {font-style: italic;}
92
+ .cm-link {text-decoration: underline;}
93
+
94
+ .cm-invalidchar {color: #f00;}
95
+
96
+ div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
97
+ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
98
+ .CodeMirror-activeline-background {background: #e8f2ff;}
99
+
100
+ /* STOP */
101
+
102
+ /* The rest of this file contains styles related to the mechanics of
103
+ the editor. You probably shouldn't touch them. */
104
+
105
+ .CodeMirror {
106
+ line-height: 1;
107
+ position: relative;
108
+ overflow: hidden;
109
+ background: white;
110
+ color: black;
111
+ }
112
+
113
+ .CodeMirror-scroll {
114
+ /* 30px is the magic margin used to hide the element's real scrollbars */
115
+ /* See overflow: hidden in .CodeMirror */
116
+ margin-bottom: -30px; margin-right: -30px;
117
+ padding-bottom: 30px; padding-right: 30px;
118
+ height: 100%;
119
+ outline: none; /* Prevent dragging from highlighting the element */
120
+ position: relative;
121
+ -moz-box-sizing: content-box;
122
+ box-sizing: content-box;
123
+ }
124
+ .CodeMirror-sizer {
125
+ position: relative;
126
+ }
127
+
128
+ /* The fake, visible scrollbars. Used to force redraw during scrolling
129
+ before actuall scrolling happens, thus preventing shaking and
130
+ flickering artifacts. */
131
+ .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
132
+ position: absolute;
133
+ z-index: 6;
134
+ display: none;
135
+ }
136
+ .CodeMirror-vscrollbar {
137
+ right: 0; top: 0;
138
+ overflow-x: hidden;
139
+ overflow-y: scroll;
140
+ }
141
+ .CodeMirror-hscrollbar {
142
+ bottom: 0; left: 0;
143
+ overflow-y: hidden;
144
+ overflow-x: scroll;
145
+ }
146
+ .CodeMirror-scrollbar-filler {
147
+ right: 0; bottom: 0;
148
+ }
149
+ .CodeMirror-gutter-filler {
150
+ left: 0; bottom: 0;
151
+ }
152
+
153
+ .CodeMirror-gutters {
154
+ position: absolute; left: 0; top: 0;
155
+ padding-bottom: 30px;
156
+ z-index: 3;
157
+ }
158
+ .CodeMirror-gutter {
159
+ white-space: normal;
160
+ height: 100%;
161
+ -moz-box-sizing: content-box;
162
+ box-sizing: content-box;
163
+ padding-bottom: 30px;
164
+ margin-bottom: -32px;
165
+ display: inline-block;
166
+ /* Hack to make IE7 behave */
167
+ *zoom:1;
168
+ *display:inline;
169
+ }
170
+ .CodeMirror-gutter-elt {
171
+ position: absolute;
172
+ cursor: default;
173
+ z-index: 4;
174
+ }
175
+
176
+ .CodeMirror-lines {
177
+ cursor: text;
178
+ }
179
+ .CodeMirror pre {
180
+ /* Reset some styles that the rest of the page might have set */
181
+ -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
182
+ border-width: 0;
183
+ background: transparent;
184
+ font-family: inherit;
185
+ font-size: inherit;
186
+ margin: 0;
187
+ white-space: pre;
188
+ word-wrap: normal;
189
+ line-height: inherit;
190
+ color: inherit;
191
+ z-index: 2;
192
+ position: relative;
193
+ overflow: visible;
194
+ }
195
+ .CodeMirror-wrap pre {
196
+ word-wrap: break-word;
197
+ white-space: pre-wrap;
198
+ word-break: normal;
199
+ }
200
+ .CodeMirror-code pre {
201
+ border-right: 30px solid transparent;
202
+ width: -webkit-fit-content;
203
+ width: -moz-fit-content;
204
+ width: fit-content;
205
+ }
206
+ .CodeMirror-wrap .CodeMirror-code pre {
207
+ border-right: none;
208
+ width: auto;
209
+ }
210
+ .CodeMirror-linebackground {
211
+ position: absolute;
212
+ left: 0; right: 0; top: 0; bottom: 0;
213
+ z-index: 0;
214
+ }
215
+
216
+ .CodeMirror-linewidget {
217
+ position: relative;
218
+ z-index: 2;
219
+ overflow: auto;
220
+ }
221
+
222
+ .CodeMirror-widget {}
223
+
224
+ .CodeMirror-wrap .CodeMirror-scroll {
225
+ overflow-x: hidden;
226
+ }
227
+
228
+ .CodeMirror-measure {
229
+ position: absolute;
230
+ width: 100%;
231
+ height: 0;
232
+ overflow: hidden;
233
+ visibility: hidden;
234
+ }
235
+ .CodeMirror-measure pre { position: static; }
236
+
237
+ .CodeMirror div.CodeMirror-cursor {
238
+ position: absolute;
239
+ visibility: hidden;
240
+ border-right: none;
241
+ width: 0;
242
+ }
243
+ .CodeMirror-focused div.CodeMirror-cursor {
244
+ visibility: visible;
245
+ }
246
+
247
+ .CodeMirror-selected { background: #d9d9d9; }
248
+ .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
249
+
250
+ .cm-searching {
251
+ background: #ffa;
252
+ background: rgba(255, 255, 0, .4);
253
+ }
254
+
255
+ /* IE7 hack to prevent it from returning funny offsetTops on the spans */
256
+ .CodeMirror span { *vertical-align: text-bottom; }
257
+
258
+ @media print {
259
+ /* Hide the cursor when printing */
260
+ .CodeMirror div.CodeMirror-cursor {
261
+ visibility: hidden;
262
+ }
263
+ }
264
+
265
+
266
+ /* fullscreen adapted code */
267
+ .CodeMirror-fullscreen {
268
+ position: fixed;
269
+ top: 0; left: 0; right: 0; bottom: 0;
270
+ height: auto;
271
+ width:auto !important;
272
+ z-index: 999999;
273
+ }
assets/lib/wck-api/fields/checkbox.php CHANGED
@@ -4,17 +4,17 @@
4
  * @param string $value Contains input value;
5
  * @param string $context Context where the function is used. Depending on it some actions are preformed.;
6
  * @return string $element input element html string. */
7
-
8
  if( !empty( $details['options'] ) ){
9
  $element .= '<div class="wck-checkboxes">';
10
  foreach( $details['options'] as $option ){
11
- $found = false;
12
-
13
  if( !is_array( $value ) )
14
  $values = explode( ', ', $value );
15
  else
16
  $values = $value;
17
-
18
  if( strpos( $option, '%' ) === false ){
19
  $label = $option;
20
  $value_attr = $option;
@@ -32,9 +32,14 @@ if( !empty( $details['options'] ) ){
32
  }
33
  }
34
  }
35
-
36
- $element .= '<div><label><input type="checkbox" name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
37
- if( !empty( $frontend_prefix ) )
 
 
 
 
 
38
  $element .= $frontend_prefix;
39
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] . '_' . $value_attr ) ) .'" value="'. esc_attr( $value_attr ) .'" '. checked( $found, true, false ) .'class="mb-checkbox mb-field" />'. esc_html( $label ) .'</label></div>' ;
40
  }
4
  * @param string $value Contains input value;
5
  * @param string $context Context where the function is used. Depending on it some actions are preformed.;
6
  * @return string $element input element html string. */
7
+
8
  if( !empty( $details['options'] ) ){
9
  $element .= '<div class="wck-checkboxes">';
10
  foreach( $details['options'] as $option ){
11
+ $found = false;
12
+
13
  if( !is_array( $value ) )
14
  $values = explode( ', ', $value );
15
  else
16
  $values = $value;
17
+
18
  if( strpos( $option, '%' ) === false ){
19
  $label = $option;
20
  $value_attr = $option;
32
  }
33
  }
34
  }
35
+
36
+ $element .= '<div><label><input type="checkbox" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] ) );
37
+ if( $this->args['single'] ) {
38
+ $element .= '[]';
39
+ }
40
+ $element .= '" id="';
41
+
42
+ if( !empty( $frontend_prefix ) )
43
  $element .= $frontend_prefix;
44
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] . '_' . $value_attr ) ) .'" value="'. esc_attr( $value_attr ) .'" '. checked( $found, true, false ) .'class="mb-checkbox mb-field" />'. esc_html( $label ) .'</label></div>' ;
45
  }
assets/lib/wck-api/fields/country select.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  require_once( plugin_dir_path(__FILE__) . '../assets/country/country-select.php' );
9
  $country_list = apply_filters( 'wck-country-list', wck_country_list() );
10
- $element .= '<select name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
11
  if( !empty( $frontend_prefix ) )
12
  $element .= $frontend_prefix;
13
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-country-select mb-field" >';
7
 
8
  require_once( plugin_dir_path(__FILE__) . '../assets/country/country-select.php' );
9
  $country_list = apply_filters( 'wck-country-list', wck_country_list() );
10
+ $element .= '<select name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
11
  if( !empty( $frontend_prefix ) )
12
  $element .= $frontend_prefix;
13
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-country-select mb-field" >';
assets/lib/wck-api/fields/cpt select.php CHANGED
@@ -10,7 +10,7 @@ $args = apply_filters( 'wck-cpt-select-args', array( 'post_type' => $details['cp
10
  $cpt_query = new WP_Query($args);
11
 
12
  if( !empty( $cpt_query->posts ) ){
13
- $element .= '<select name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
14
  if( !empty( $frontend_prefix ) )
15
  $element .= $frontend_prefix;
16
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-user-select mb-field" >';
10
  $cpt_query = new WP_Query($args);
11
 
12
  if( !empty( $cpt_query->posts ) ){
13
+ $element .= '<select name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
14
  if( !empty( $frontend_prefix ) )
15
  $element .= $frontend_prefix;
16
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-user-select mb-field" >';
assets/lib/wck-api/fields/datepicker.php CHANGED
@@ -5,7 +5,7 @@
5
  * @param string $context Context where the function is used. Depending on it some actions are preformed.;
6
  * @return string $element input element html string. */
7
 
8
- $element .= '<input type="text" name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
9
  if( !empty( $frontend_prefix ) )
10
  $element .= $frontend_prefix;
11
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" value="'. esc_attr( $value ) .'" class="mb-datepicker mb-field"/>';
5
  * @param string $context Context where the function is used. Depending on it some actions are preformed.;
6
  * @return string $element input element html string. */
7
 
8
+ $element .= '<input type="text" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
9
  if( !empty( $frontend_prefix ) )
10
  $element .= $frontend_prefix;
11
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" value="'. esc_attr( $value ) .'" class="mb-datepicker mb-field"/>';
assets/lib/wck-api/fields/radio.php CHANGED
@@ -29,7 +29,7 @@ if( !empty( $details['options'] ) ){
29
  }
30
  }
31
 
32
- $element .= '<div><label><input type="radio" name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
33
  if( !empty( $frontend_prefix ) )
34
  $element .= $frontend_prefix;
35
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] . '_' . $value_attr ) ) .'" value="'. esc_attr( $value_attr ) .'" '. checked( $found, true, false ) .'class="mb-radio mb-field" />'. esc_html( $label ) .'</label></div>';
29
  }
30
  }
31
 
32
+ $element .= '<div><label><input type="radio" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
33
  if( !empty( $frontend_prefix ) )
34
  $element .= $frontend_prefix;
35
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] . '_' . $value_attr ) ) .'" value="'. esc_attr( $value_attr ) .'" '. checked( $found, true, false ) .'class="mb-radio mb-field" />'. esc_html( $label ) .'</label></div>';
assets/lib/wck-api/fields/select.php CHANGED
@@ -5,7 +5,7 @@
5
  * @param string $context Context where the function is used. Depending on it some actions are preformed.;
6
  * @return string $element input element html string. */
7
 
8
- $element .= '<select name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
9
  if( !empty( $frontend_prefix ) )
10
  $element .= $frontend_prefix;
11
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-select mb-field" >';
5
  * @param string $context Context where the function is used. Depending on it some actions are preformed.;
6
  * @return string $element input element html string. */
7
 
8
+ $element .= '<select name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
9
  if( !empty( $frontend_prefix ) )
10
  $element .= $frontend_prefix;
11
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-select mb-field" >';
assets/lib/wck-api/fields/text.php CHANGED
@@ -6,7 +6,7 @@
6
  * @return string $element input element html string. */
7
 
8
 
9
- $element .= '<input type="text" name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
10
  if( !empty( $frontend_prefix ) )
11
  $element .= $frontend_prefix;
12
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'"';
6
  * @return string $element input element html string. */
7
 
8
 
9
+ $element .= '<input type="text" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
10
  if( !empty( $frontend_prefix ) )
11
  $element .= $frontend_prefix;
12
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'"';
assets/lib/wck-api/fields/textarea.php CHANGED
@@ -5,7 +5,7 @@
5
  * @param string $context Context where the function is used. Depending on it some actions are preformed.;
6
  * @return string $element input element html string. */
7
 
8
- $element .= '<textarea name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
9
  if( !empty( $frontend_prefix ) )
10
  $element .= $frontend_prefix;
11
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" style="vertical-align:top;" class="mb-textarea mb-field">'. esc_html( $value ) .'</textarea>';
5
  * @param string $context Context where the function is used. Depending on it some actions are preformed.;
6
  * @return string $element input element html string. */
7
 
8
+ $element .= '<textarea name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
9
  if( !empty( $frontend_prefix ) )
10
  $element .= $frontend_prefix;
11
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" style="vertical-align:top;" class="mb-textarea mb-field">'. esc_html( $value ) .'</textarea>';
assets/lib/wck-api/fields/upload.php CHANGED
@@ -10,7 +10,7 @@ $upload_input_id = str_replace( '-', '_', Wordpress_Creation_Kit_PB::wck_generat
10
  $upload_info_div_id = str_replace( '-', '_', Wordpress_Creation_Kit_PB::wck_generate_slug( $meta .'_info_container_'. $details['title'] ) );
11
 
12
  /* hidden input that will hold the attachment id */
13
- $element .= '<input id="'. esc_attr( $upload_input_id ) .'" type="hidden" size="36" name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" value="'. $value .'" class="mb-text-input mb-field"/>';
14
 
15
  $thumbnail = '';
16
  $file_name = '';
10
  $upload_info_div_id = str_replace( '-', '_', Wordpress_Creation_Kit_PB::wck_generate_slug( $meta .'_info_container_'. $details['title'] ) );
11
 
12
  /* hidden input that will hold the attachment id */
13
+ $element .= '<input id="'. esc_attr( $upload_input_id ) .'" type="hidden" size="36" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" value="'. $value .'" class="mb-text-input mb-field"/>';
14
 
15
  $thumbnail = '';
16
  $file_name = '';
assets/lib/wck-api/fields/user select.php CHANGED
@@ -8,7 +8,7 @@
8
  $args = apply_filters( 'wck-user-select-args', array( 'orderby' => 'display_name' ) );
9
  $user_query = new WP_User_Query($args);
10
  if( !empty( $user_query->results ) ){
11
- $element .= '<select name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
12
  if( !empty( $frontend_prefix ) )
13
  $element .= $frontend_prefix;
14
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-user-select mb-field" >';
8
  $args = apply_filters( 'wck-user-select-args', array( 'orderby' => 'display_name' ) );
9
  $user_query = new WP_User_Query($args);
10
  if( !empty( $user_query->results ) ){
11
+ $element .= '<select name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
12
  if( !empty( $frontend_prefix ) )
13
  $element .= $frontend_prefix;
14
  $element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-user-select mb-field" >';
assets/lib/wck-api/fields/wysiwyg editor.php CHANGED
@@ -5,6 +5,6 @@
5
  * @param string $context Context where the function is used. Depending on it some actions are preformed.;
6
  * @return string $element input element html string. */
7
 
8
- $element .= '<textarea name="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" style="vertical-align:top;width:400px;height:200px" class="mb-textarea mb-field '. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] ) ) .'">'. esc_html( $value ) .'</textarea>';
9
  $element .= '<script type="text/javascript">jQuery( function(){ if ( typeof wckInitTinyMCE == "function" ) wckInitTinyMCE("'. Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) .'")});</script>';
10
  ?>
5
  * @param string $context Context where the function is used. Depending on it some actions are preformed.;
6
  * @return string $element input element html string. */
7
 
8
+ $element .= '<textarea name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" style="vertical-align:top;width:400px;height:200px" class="mb-textarea mb-field '. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] ) ) .'">'. esc_html( $value ) .'</textarea>';
9
  $element .= '<script type="text/javascript">jQuery( function(){ if ( typeof wckInitTinyMCE == "function" ) wckInitTinyMCE("'. Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) .'")});</script>';
10
  ?>
assets/lib/wck-api/wordpress-creation-kit.js CHANGED
@@ -106,13 +106,8 @@ function addMeta(value, id, nonce){
106
  jQuery(this).html('<p><span class="file-name"></span><span class="file-type"></span></p>');
107
  }); */
108
 
109
- jQuery('#'+value).parent().css('opacity','1');
110
-
111
- /* Remove form if is single */
112
- if( jQuery( '#'+value ).hasClass('single') )
113
- jQuery( '#'+value ).remove();
114
-
115
-
116
  jQuery('body').trigger('wck-added-element');
117
 
118
  jQuery('#mb-ajax-loading').remove();
106
  jQuery(this).html('<p><span class="file-name"></span><span class="file-type"></span></p>');
107
  }); */
108
 
109
+ jQuery('#'+value).parent().css('opacity','1');
110
+
 
 
 
 
 
111
  jQuery('body').trigger('wck-added-element');
112
 
113
  jQuery('#mb-ajax-loading').remove();
assets/lib/wck-api/wordpress-creation-kit.php CHANGED
@@ -96,16 +96,20 @@ class Wordpress_Creation_Kit_PB{
96
  add_action("wp_ajax_wck_add_form".$this->args['meta_name'], array( &$this, 'wck_add_form') );
97
  add_action("wp_ajax_wck_remove_meta".$this->args['meta_name'], array( &$this, 'wck_remove_meta') );
98
  add_action("wp_ajax_wck_reorder_meta".$this->args['meta_name'], array( &$this, 'wck_reorder_meta') );
99
-
100
- /* modify Insert into post button */
101
- add_action('admin_head-media-upload-popup', array( &$this, 'wck_media_upload_popup_head') );
102
-
103
- /* custom functionality for upload video */
104
- add_filter('media_send_to_editor', array( &$this, 'wck_media_send_to_editor' ), 15, 2 );
105
-
106
- add_action('add_meta_boxes', array( &$this, 'wck_add_metabox') );
107
-
108
- /* hook to add a side metabox with the Syncronize translation button */
 
 
 
 
109
  add_action('add_meta_boxes', array( &$this, 'wck_add_sync_translation_metabox' ) );
110
 
111
  /* ajax hook the syncronization function */
@@ -189,21 +193,11 @@ class Wordpress_Creation_Kit_PB{
189
  $post_id = '';
190
 
191
  //output the add form
192
- if( $this->args['single'] ){
193
-
194
- if( $this->args['context'] == 'post_meta' )
195
- $meta_val = get_post_meta( $post_id, $metabox['args']['meta_name'], true );
196
- else if ( $this->args['context'] == 'option' )
197
- $meta_val = get_option( $metabox['args']['meta_name'] );
198
-
199
- if( empty( $meta_val ) )
200
- self::create_add_form($metabox['args']['meta_array'], $metabox['args']['meta_name'], $post);
201
- }
202
- else
203
- self::create_add_form($metabox['args']['meta_array'], $metabox['args']['meta_name'], $post);
204
-
205
- //output the entries
206
- echo self::wck_output_meta_content($metabox['args']['meta_name'], $post_id, $metabox['args']['meta_array']);
207
  }
208
 
209
  /**
@@ -231,12 +225,20 @@ class Wordpress_Creation_Kit_PB{
231
  $frontend_prefix = 'fep-';
232
  }
233
  else{
234
- if( !empty( $details['default'] ) )
235
- $value = apply_filters( "wck_default_value_{$meta}_". Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) , $details['default'] );
236
- }
 
237
 
238
- $element .= '<label for="'. esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="field-label">'. apply_filters( "wck_label_{$meta}_". Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ), ucfirst($details['title']) ) .':';
239
- if( !empty( $details['required'] ) && $details['required'] )
 
 
 
 
 
 
 
240
  $element .= '<span class="required">*</span>';
241
  $element .= '</label>';
242
 
@@ -253,8 +255,8 @@ class Wordpress_Creation_Kit_PB{
253
  $details['type'] = 'nested repeater';
254
  }
255
  }
256
-
257
-
258
  if( file_exists( dirname( __FILE__ ).'/fields/'.$details['type'].'.php' ) ){
259
  require( dirname( __FILE__ ).'/fields/'.$details['type'].'.php' );
260
  }
@@ -264,7 +266,7 @@ class Wordpress_Creation_Kit_PB{
264
  }
265
 
266
  $element .= '</div><!-- .mb-right-column -->';
267
-
268
  $element = apply_filters( "wck_output_form_field_{$meta}_" . Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ), $element );
269
 
270
  return $element;
@@ -284,15 +286,25 @@ class Wordpress_Creation_Kit_PB{
284
  * the meta to apear in custom fields box.
285
  * @param object $post Post object
286
  */
287
- function create_add_form($fields, $meta, $post){
288
  $nonce = wp_create_nonce( 'wck-add-meta' );
289
  if( !empty( $post->ID ) )
290
  $post_id = $post->ID;
291
  else
292
  $post_id = '';
293
-
294
- ?>
295
- <div id="<?php echo $meta ?>" style="padding:10px 0;" class="wck-add-form<?php if( $this->args['single'] ) echo ' single' ?>">
 
 
 
 
 
 
 
 
 
 
296
  <ul class="mb-list-entry-fields">
297
  <?php
298
  $element_id = 0;
@@ -300,10 +312,17 @@ class Wordpress_Creation_Kit_PB{
300
  foreach( $fields as $details ){
301
 
302
  do_action( "wck_before_add_form_{$meta}_element_{$element_id}" );
303
-
304
- ?>
 
 
 
 
 
 
 
305
  <li class="row-<?php echo esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) ?>">
306
- <?php echo self::wck_output_form_field( $meta, $details, '', '', $post_id ); ?>
307
  </li>
308
  <?php
309
 
@@ -313,10 +332,14 @@ class Wordpress_Creation_Kit_PB{
313
  }
314
  }
315
  ?>
316
- <li style="overflow:visible;" class="add-entry-button">
317
- <a href="javascript:void(0)" class="button-primary" onclick="addMeta('<?php echo esc_js($meta); ?>', '<?php echo esc_js( $post_id ); ?>', '<?php echo esc_js($nonce); ?>')"><span><?php _e( apply_filters( 'wck_add_entry_button', 'Add Entry', $meta, $post ), 'wck' ); ?></span></a>
318
- </li>
319
- </ul>
 
 
 
 
320
  </div>
321
  <?php
322
  }
@@ -464,11 +487,14 @@ class Wordpress_Creation_Kit_PB{
464
  $display_value = self::wck_get_entry_field_user_select( $value ) . '</pre>';
465
  } elseif ( $details['type'] == 'cpt select' ){
466
  $display_value = self::wck_get_entry_field_cpt_select( $value ) . '</pre>';
467
- } else {
 
 
468
  $display_value = '<pre>'.htmlspecialchars( $value ) . '</pre>';
469
  }
470
-
471
-
 
472
  $list = apply_filters( "wck_before_listed_{$meta}_element_{$j}", $list, $element_id, $value );
473
  /*check for nested repeater type and set it acordingly */
474
  if( strpos( $details['type'], 'CFC-') === 0 )
@@ -689,8 +715,12 @@ class Wordpress_Creation_Kit_PB{
689
  $results = get_post_meta($id, $meta, true);
690
  else if ( $this->args['context'] == 'option' )
691
  $results = get_option( $meta );
692
-
693
- $results[] = $values;
 
 
 
 
694
 
695
  do_action( 'wck_before_add_meta', $meta, $id, $values );
696
 
@@ -970,102 +1000,130 @@ class Wordpress_Creation_Kit_PB{
970
  exit;
971
  }
972
 
973
- /* modify Insert into post button */
974
- function wck_media_upload_popup_head()
975
- {
976
- if( isset( $_GET["meta_name"] ) ){
977
- if( $this->args['meta_name'] == $_GET["meta_name"] ){
978
- if( ( isset( $_GET["mb_type"] ) ) ){
979
- ?>
980
- <style type="text/css">
981
- #media-upload-header #sidemenu li#tab-type_url,
982
- #media-upload-header #sidemenu li#tab-gallery {
983
- display: none;
984
- }
985
-
986
- #media-items tr.url,
987
- #media-items tr.align,
988
- #media-items tr.image_alt,
989
- #media-items tr.image-size,
990
- #media-items tr.post_excerpt,
991
- #media-items tr.post_content,
992
- #media-items tr.image_alt p,
993
- #media-items table thead input.button,
994
- #media-items table thead img.imgedit-wait-spin,
995
- #media-items tr.submit a.wp-post-thumbnail {
996
- display: none;
997
- }
998
-
999
- .media-item table thead img {
1000
- border: #DFDFDF solid 1px;
1001
- margin-right: 10px;
1002
- }
1003
-
1004
- </style>
1005
- <script type="text/javascript">
1006
- (function($){
1007
-
1008
- $(document).ready(function(){
1009
-
1010
- $('#media-items').bind('DOMNodeInserted',function(){
1011
- $('input[value="Insert into Post"]').each(function(){
1012
- $(this).attr('value','<?php _e("Select File")?>');
1013
- });
1014
- }).trigger('DOMNodeInserted');
1015
-
1016
- $('form#filter').each(function(){
1017
-
1018
- $(this).append('<input type="hidden" name="mb_type" value="<?php echo $_GET['mb_type']; ?>" />');
1019
- $(this).append('<input type="hidden" name="mb_info_div" value="<?php echo $_GET['mb_info_div']; ?>" />');
1020
-
1021
- });
1022
- });
1023
-
1024
- })(jQuery);
1025
- </script>
1026
- <?php
1027
- }
1028
- }
1029
- }
1030
- }
1031
-
1032
- /* custom functionality for upload button */
1033
-
1034
- function wck_media_send_to_editor($html, $id)
1035
- {
1036
- if( !empty( $_POST["_wp_http_referer"] ) ) {
1037
- parse_str($_POST["_wp_http_referer"], $arr_postinfo);
1038
- if (isset($arr_postinfo["mb_type"])) {
1039
- $file_src = wp_get_attachment_url($id);
1040
- $thumbnail = wp_get_attachment_image($id, array(80, 60), true);
1041
- $file_name = get_the_title($id);
1042
-
1043
- if (preg_match('/^.*?\.(\w+)$/', get_attached_file($id), $matches))
1044
- $file_type = esc_html(strtoupper($matches[1]));
1045
- else
1046
- $file_type = strtoupper(str_replace('image/', '', get_post_mime_type($id)));
1047
-
1048
- ?>
1049
- <script type="text/javascript">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
 
1051
- self.parent.window.<?php echo $arr_postinfo["mb_type"];?>.val('<?php echo $id; ?>');
1052
- self.parent.window.<?php echo $arr_postinfo["mb_info_div"];?>.html('<?php echo $thumbnail ?><p><span class="file-name"><?php echo $file_name; ?></span><span class="file-type"><?php echo $file_type; ?></span><span class="wck-remove-upload"><?php _e( 'Remove', 'wck' )?></span></p>');
 
 
 
1053
 
1054
- self.parent.tb_remove();
1055
 
1056
- </script>
1057
- <?php
1058
- exit;
1059
- }
1060
- }
1061
- else{
1062
- return $html;
1063
- }
1064
-
1065
- }
1066
-
1067
- /* WPML Compatibility */
1068
-
1069
  /**
1070
  * Function that ads the side metabox with the Syncronize translation button.
1071
  * The meta box is only added if the lang attribute is set and
96
  add_action("wp_ajax_wck_add_form".$this->args['meta_name'], array( &$this, 'wck_add_form') );
97
  add_action("wp_ajax_wck_remove_meta".$this->args['meta_name'], array( &$this, 'wck_remove_meta') );
98
  add_action("wp_ajax_wck_reorder_meta".$this->args['meta_name'], array( &$this, 'wck_reorder_meta') );
99
+
100
+ add_action('add_meta_boxes', array( &$this, 'wck_add_metabox') );
101
+
102
+ /* For single forms we save them the old fashion way */
103
+ if( $this->args['single'] ){
104
+ add_action('save_post', array($this, 'wck_save_single_metabox'), 10, 2);
105
+ /* wp_insert_post executes after save_post so at this point if we have the error global we can redirect the page
106
+ and add the error message and error fields urlencoded as $_GET */
107
+ add_action('wp_insert_post', array($this, 'wck_single_metabox_redirect_if_errors'), 10, 2);
108
+ /* if we have any $_GET errors alert them with js so we have consistency */
109
+ add_action('admin_print_footer_scripts', array($this, 'wck_single_metabox_errors_display') );
110
+ }
111
+
112
+ /* hook to add a side metabox with the Syncronize translation button */
113
  add_action('add_meta_boxes', array( &$this, 'wck_add_sync_translation_metabox' ) );
114
 
115
  /* ajax hook the syncronization function */
193
  $post_id = '';
194
 
195
  //output the add form
196
+ self::create_add_form($metabox['args']['meta_array'], $metabox['args']['meta_name'], $post);
197
+
198
+ //output the entries only for repeater fields
199
+ if( !$this->args['single'] )
200
+ echo self::wck_output_meta_content($metabox['args']['meta_name'], $post_id, $metabox['args']['meta_array']);
 
 
 
 
 
 
 
 
 
 
201
  }
202
 
203
  /**
225
  $frontend_prefix = 'fep-';
226
  }
227
  else{
228
+ if( isset( $details['default'] ) && !( $this->args['single'] == true && !is_null( $value ) ) ) {
229
+ $value = apply_filters("wck_default_value_{$meta}_" . Wordpress_Creation_Kit_PB::wck_generate_slug($details['title']), $details['default']);
230
+ }
231
+ }
232
 
233
+ /* for single post meta metaboxes we need a prefix in the name attr of the input because in the case we have multiple single metaboxes on the same
234
+ post we need to prevent the fields from having the same name attr */
235
+ if( $this->args['context'] == 'post_meta' && $this->args['single'] && $context != 'fep' )
236
+ $single_prefix = $this->args['meta_name'].'_';
237
+ else
238
+ $single_prefix = '';
239
+
240
+ $element .= '<label for="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] ) ) .'" class="field-label">'. apply_filters( "wck_label_{$meta}_". Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'] ), ucfirst($details['title']) ) .':';
241
+ if( !empty( $details['required'] ) && $details['required'] )
242
  $element .= '<span class="required">*</span>';
243
  $element .= '</label>';
244
 
255
  $details['type'] = 'nested repeater';
256
  }
257
  }
258
+
259
+
260
  if( file_exists( dirname( __FILE__ ).'/fields/'.$details['type'].'.php' ) ){
261
  require( dirname( __FILE__ ).'/fields/'.$details['type'].'.php' );
262
  }
266
  }
267
 
268
  $element .= '</div><!-- .mb-right-column -->';
269
+
270
  $element = apply_filters( "wck_output_form_field_{$meta}_" . Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ), $element );
271
 
272
  return $element;
286
  * the meta to apear in custom fields box.
287
  * @param object $post Post object
288
  */
289
+ function create_add_form($fields, $meta, $post, $context = '' ){
290
  $nonce = wp_create_nonce( 'wck-add-meta' );
291
  if( !empty( $post->ID ) )
292
  $post_id = $post->ID;
293
  else
294
  $post_id = '';
295
+
296
+ /* for single forms we need the values that are stored in the meta */
297
+ if( $this->args['single'] == true ) {
298
+ if ($this->args['context'] == 'post_meta')
299
+ $results = get_post_meta($post_id, $meta, true);
300
+ else if ($this->args['context'] == 'option')
301
+ $results = get_option($meta);
302
+
303
+ /* Filter primary used for CFC/OPC fields in order to show/hide fields based on type */
304
+ $wck_update_container_css_class = apply_filters("wck_add_form_class_{$meta}", '', $meta, $results );
305
+ }
306
+ ?>
307
+ <div id="<?php echo $meta ?>" style="padding:10px 0;" class="wck-add-form<?php if( $this->args['single'] ) echo ' single' ?> <?php if( !empty( $wck_update_container_css_class ) ) echo $wck_update_container_css_class; ?>">
308
  <ul class="mb-list-entry-fields">
309
  <?php
310
  $element_id = 0;
312
  foreach( $fields as $details ){
313
 
314
  do_action( "wck_before_add_form_{$meta}_element_{$element_id}" );
315
+
316
+ /* set values in the case of single forms */
317
+ $value = '';
318
+ if( $this->args['single'] == true ) {
319
+ $value = null;
320
+ if (isset($results[0][Wordpress_Creation_Kit_PB::wck_generate_slug($details['title'])]))
321
+ $value = $results[0][Wordpress_Creation_Kit_PB::wck_generate_slug($details['title'])];
322
+ }
323
+ ?>
324
  <li class="row-<?php echo esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) ?>">
325
+ <?php echo self::wck_output_form_field( $meta, $details, $value, $context, $post_id ); ?>
326
  </li>
327
  <?php
328
 
332
  }
333
  }
334
  ?>
335
+ <?php if( ! $this->args['single'] || $this->args['context'] == 'option' ){ ?>
336
+ <li style="overflow:visible;" class="add-entry-button">
337
+ <a href="javascript:void(0)" class="button-primary" onclick="addMeta('<?php echo esc_js($meta); ?>', '<?php echo esc_js( $post_id ); ?>', '<?php echo esc_js($nonce); ?>')"><span><?php if( $this->args['single'] ) echo apply_filters( 'wck_add_entry_button', __( 'Save', 'wck' ), $meta, $post ); else echo apply_filters( 'wck_add_entry_button', __( 'Add Entry', 'wck' ), $meta, $post ); ?></span></a>
338
+ </li>
339
+ <?php }elseif($this->args['single'] && $this->args['context'] == 'post_meta' ){ ?>
340
+ <input type="hidden" name="_wckmetaname_<?php echo $meta ?>#wck" value="true">
341
+ <?php } ?>
342
+ </ul>
343
  </div>
344
  <?php
345
  }
487
  $display_value = self::wck_get_entry_field_user_select( $value ) . '</pre>';
488
  } elseif ( $details['type'] == 'cpt select' ){
489
  $display_value = self::wck_get_entry_field_cpt_select( $value ) . '</pre>';
490
+ } elseif ( $details['type'] == 'checkbox' && is_array( $value ) ){
491
+ $display_value = implode( ', ', $value );
492
+ } else {
493
  $display_value = '<pre>'.htmlspecialchars( $value ) . '</pre>';
494
  }
495
+
496
+ $display_value = apply_filters( "wck_pre_displayed_value_{$meta}_element_{$field['slug']}", $display_value );
497
+
498
  $list = apply_filters( "wck_before_listed_{$meta}_element_{$j}", $list, $element_id, $value );
499
  /*check for nested repeater type and set it acordingly */
500
  if( strpos( $details['type'], 'CFC-') === 0 )
715
  $results = get_post_meta($id, $meta, true);
716
  else if ( $this->args['context'] == 'option' )
717
  $results = get_option( $meta );
718
+
719
+ /* for single metaboxes owerwrite entries each time so we have a maximum of one */
720
+ if( $this->args['single'] )
721
+ $results = array( $values );
722
+ else
723
+ $results[] = $values;
724
 
725
  do_action( 'wck_before_add_meta', $meta, $id, $values );
726
 
1000
  exit;
1001
  }
1002
 
1003
+ /**
1004
+ * Function that saves the entries for single forms on posts(no options). It is hooke on the 'save_post' hook
1005
+ * It is executed on each WCK object instance so we need to restrict it on only the ones that are present for that post
1006
+ */
1007
+ function wck_save_single_metabox( $post_id, $post ){
1008
+ if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
1009
+ return $post_id;
1010
+ // check permissions
1011
+ if ( !current_user_can( 'edit_page', $post_id ) )
1012
+ return $post_id;
1013
+ /* only go through for metaboxes defined for this post type */
1014
+ if( get_post_type( $post_id ) != $this->args['post_type'] )
1015
+ return $post_id;
1016
+
1017
+ if( !empty( $_POST ) ){
1018
+ /* for single metaboxes we save a hidden input that contains the meta_name attr as a key so we need to search for it */
1019
+ foreach( $_POST as $request_key => $request_value ){
1020
+ if( strpos( $request_key, '_wckmetaname_' ) !== false && strpos( $request_key, '#wck' ) !== false ){
1021
+ /* found it so now retrieve the meta_name from the key formatted _wckmetaname_actuaname#wck */
1022
+ $request_key = str_replace( '_wckmetaname_', '', $request_key );
1023
+ $meta_name = str_replace( '#wck', '', $request_key );
1024
+ /* we have it so go through only on the WCK object instance that has this meta_name */
1025
+ if( $this->args['meta_name'] == $meta_name ){
1026
+
1027
+ /* get the meta values from the $_POST and store them in an array */
1028
+ $meta_values = array();
1029
+ if( !empty( $this->args['meta_array'] ) ){
1030
+ foreach ($this->args['meta_array'] as $meta_field){
1031
+ /* in the $_POST the names for the fields are prefixed with the meta_name for the single metaboxes in case there are multiple metaboxes that contain fields wit hthe same name */
1032
+ $single_field_name = $this->args['meta_name'] .'_'. Wordpress_Creation_Kit_PB::wck_generate_slug( $meta_field['title'] );
1033
+ if (!empty($_POST[$single_field_name])) {
1034
+ /* checkbox needs to be stored as string not array */
1035
+ if( $meta_field['type'] == 'checkbox' )
1036
+ $_POST[$single_field_name] = implode( ', ', $_POST[$single_field_name] );
1037
+
1038
+ $meta_values[Wordpress_Creation_Kit_PB::wck_generate_slug($meta_field['title'])] = $_POST[$single_field_name];
1039
+ }
1040
+ else
1041
+ $meta_values[Wordpress_Creation_Kit_PB::wck_generate_slug($meta_field['title'])] = '';
1042
+ }
1043
+ }
1044
+
1045
+ /* test if we have errors for the required fields */
1046
+ $errors = self::wck_test_required( $this->args['meta_array'], $meta_name, $meta_values, $post_id );
1047
+ if( !empty( $errors ) ){
1048
+ /* if we have errors then add them in the global. We do this so we get all errors from all single metaboxes that might be on that page */
1049
+ global $wck_single_forms_errors;
1050
+ if( !empty( $errors['errorfields'] ) ){
1051
+ foreach( $errors['errorfields'] as $key => $field_name ){
1052
+ $errors['errorfields'][$key] = $this->args['meta_name']. '_' .$field_name;
1053
+ }
1054
+ }
1055
+ $wck_single_forms_errors[] = $errors;
1056
+ }
1057
+ else {
1058
+ /* no errors so we can save */
1059
+ update_post_meta($post_id, $meta_name, array($meta_values));
1060
+ /* handle unserialized fields */
1061
+ if ($this->args['unserialize_fields']) {
1062
+ if (!empty($this->args['meta_array'])) {
1063
+ foreach ($this->args['meta_array'] as $meta_field) {
1064
+ update_post_meta($post_id, $meta_name . '_' . Wordpress_Creation_Kit_PB::wck_generate_slug($meta_field['title']) . '_1', $_POST[$this->args['meta_name'] . '_' . Wordpress_Creation_Kit_PB::wck_generate_slug($meta_field['title'])]);
1065
+ }
1066
+ }
1067
+ }
1068
+ }
1069
+ break;
1070
+ }
1071
+ }
1072
+ }
1073
+ }
1074
+ }
1075
+
1076
+ /**
1077
+ * Function that checks if we have any errors in the required fields from the single metaboxes. It is executed on 'wp_insert_post' hook
1078
+ * that comes after 'save_post' so we should have the global errors by now. If we have errors perform a redirect and add the error messages and error fields
1079
+ * in the url
1080
+ */
1081
+ function wck_single_metabox_redirect_if_errors( $post_id, $post ){
1082
+ global $wck_single_forms_errors;
1083
+ if( !empty( $wck_single_forms_errors ) ) {
1084
+ $error_messages = '';
1085
+ $error_fields = '';
1086
+ foreach( $wck_single_forms_errors as $wck_single_forms_error ){
1087
+ $error_messages .= $wck_single_forms_error['error'];
1088
+ $error_fields .= implode( ',', $wck_single_forms_error['errorfields'] ).',';
1089
+ }
1090
+ wp_redirect( add_query_arg( array( 'wckerrormessages' => base64_encode( urlencode( $error_messages ) ), 'wckerrorfields' => base64_encode( urlencode( $error_fields ) ) ), $_SERVER["HTTP_REFERER"] ) );
1091
+ exit;
1092
+ }
1093
+ }
1094
+
1095
+ /** Function that displays the error messages, if we have any, as js alerts and marks the fields with red
1096
+ */
1097
+ function wck_single_metabox_errors_display(){
1098
+ /* only execute for the WCK objects defined for the current post type */
1099
+ global $post;
1100
+ if( get_post_type( $post ) != $this->args['post_type'] )
1101
+ return;
1102
+
1103
+ /* and only do it once */
1104
+ global $allready_saved;
1105
+ if( isset( $allready_saved ) && $allready_saved == true )
1106
+ return;
1107
+ $allready_saved = true;
1108
+
1109
+ /* mark the fields */
1110
+ if( isset( $_GET['wckerrorfields'] ) && !empty( $_GET['wckerrorfields'] ) ){
1111
+ echo '<script type="text/javascript">';
1112
+ $field_names = explode( ',', urldecode( base64_decode( $_GET['wckerrorfields'] ) ) );
1113
+ foreach( $field_names as $field_name ){
1114
+ echo "jQuery( '.field-label[for=\"". $field_name ."\"]' ).addClass('error');";
1115
+ }
1116
+ echo '</script>';
1117
+ }
1118
 
1119
+ /* alert the error messages */
1120
+ if( isset( $_GET['wckerrormessages'] ) ){
1121
+ echo '<script type="text/javascript">alert("'. urldecode( str_replace( '%0A', '\n', base64_decode( $_GET['wckerrormessages'] ) ) ) .'")</script>';
1122
+ }
1123
+ }
1124
 
1125
+ /* WPML Compatibility */
1126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1127
  /**
1128
  * Function that ads the side metabox with the Syncronize translation button.
1129
  * The meta box is only added if the lang attribute is set and
features/email-confirmation/class-email-confirmation.php CHANGED
@@ -75,6 +75,18 @@ class wpp_list_unfonfirmed_email_table extends PB_WP_List_Table {
75
  case 'email':
76
  case 'registered':
77
  return $item[$column_name];
 
 
 
 
 
 
 
 
 
 
 
 
78
  default:
79
  return print_r($item,true); //Show the whole array for troubleshooting purposes
80
  }
@@ -152,7 +164,8 @@ class wpp_list_unfonfirmed_email_table extends PB_WP_List_Table {
152
  'cb' => '<input type="checkbox" />', //Render a checkbox instead of text
153
  'username' => __( 'Username', 'profilebuilder' ),
154
  'email' => __( 'E-mail', 'profilebuilder' ),
155
- 'registered' => __( 'Registered', 'profilebuilder' )
 
156
  );
157
 
158
  return $columns;
75
  case 'email':
76
  case 'registered':
77
  return $item[$column_name];
78
+ case 'user-meta':
79
+ global $wpdb;
80
+ $sql_result = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_email = %s", $item['email'] ), ARRAY_A );
81
+ $user_meta = $sql_result['meta'];
82
+ $user_meta_content = '';
83
+ if( !empty( $user_meta ) ){
84
+ foreach( maybe_unserialize( $user_meta ) as $key => $value ){
85
+ if( $key != 'user_pass' )
86
+ $user_meta_content .= $key.':'.$value.'<br/>';
87
+ }
88
+ }
89
+ return '<a href="#" data-email="'. $item['email'] .'" onclick="jQuery(\'<div><pre>'. $user_meta_content .'</pre></div>\').dialog({title:\''. __("User Meta", "profilebuilder" ) .'\', width: 500 }) ;return false;">'. __( 'show', 'profilebuilder' ) .'</a>';
90
  default:
91
  return print_r($item,true); //Show the whole array for troubleshooting purposes
92
  }
164
  'cb' => '<input type="checkbox" />', //Render a checkbox instead of text
165
  'username' => __( 'Username', 'profilebuilder' ),
166
  'email' => __( 'E-mail', 'profilebuilder' ),
167
+ 'registered' => __( 'Registered', 'profilebuilder' ),
168
+ 'user-meta' => __( 'User Meta', 'profilebuilder' )
169
  );
170
 
171
  return $columns;
features/email-confirmation/email-confirmation.php CHANGED
@@ -465,6 +465,13 @@ function wppb_create_user( $user_name, $password, $email) {
465
 
466
  //send an email to the admin regarding each and every new subscriber, and - if selected - to the user himself
467
  function wppb_notify_user_registration_email( $bloginfo, $user_name, $email, $send_credentials_via_email, $password, $adminApproval ){
 
 
 
 
 
 
 
468
  //send email to the admin
469
  $message_from = apply_filters( 'wppb_register_from_email_message_admin_email', $bloginfo );
470
 
465
 
466
  //send an email to the admin regarding each and every new subscriber, and - if selected - to the user himself
467
  function wppb_notify_user_registration_email( $bloginfo, $user_name, $email, $send_credentials_via_email, $password, $adminApproval ){
468
+
469
+ /* if login with email is enabled user_name gets the value of the users email */
470
+ $wppb_general_settings = get_option( 'wppb_general_settings' );
471
+ if ( isset( $wppb_general_settings['loginWith'] ) && ( $wppb_general_settings['loginWith'] == 'email' ) ) {
472
+ $user_name = $email;
473
+ }
474
+
475
  //send email to the admin
476
  $message_from = apply_filters( 'wppb_register_from_email_message_admin_email', $bloginfo );
477
 
features/functions.php CHANGED
@@ -115,6 +115,10 @@ if ( is_admin() ){
115
  include_once( WPPB_PLUGIN_DIR.'/front-end/login.php' );
116
  add_shortcode( 'wppb-login', 'wppb_front_end_login' );
117
 
 
 
 
 
118
  // include the menu file for the register screen
119
  include_once( WPPB_PLUGIN_DIR.'/front-end/register.php' );
120
  add_shortcode( 'wppb-register', 'wppb_front_end_register_handler' );
115
  include_once( WPPB_PLUGIN_DIR.'/front-end/login.php' );
116
  add_shortcode( 'wppb-login', 'wppb_front_end_login' );
117
 
118
+ // include the menu file for the logout screen
119
+ include_once( WPPB_PLUGIN_DIR.'/front-end/logout.php' );
120
+ add_shortcode( 'wppb-logout', 'wppb_front_end_logout' );
121
+
122
  // include the menu file for the register screen
123
  include_once( WPPB_PLUGIN_DIR.'/front-end/register.php' );
124
  add_shortcode( 'wppb-register', 'wppb_front_end_register_handler' );
front-end/class-formbuilder.php CHANGED
@@ -29,6 +29,8 @@ class Profile_Builder_Form_Creator{
29
  $this->wppb_retrieve_custom_settings();
30
 
31
  add_action( 'wp_footer', array( &$this, 'wppb_print_script' ) ); //print scripts
 
 
32
  }
33
 
34
  function wppb_retrieve_custom_settings(){
@@ -259,9 +261,9 @@ class Profile_Builder_Form_Creator{
259
 
260
  // use this action hook to add extra content before the register form
261
  do_action( 'wppb_before_'.$this->args['form_type'].'_fields' );
262
- ?>
263
- <form enctype="multipart/form-data" method="post" id="<?php if( $this->args['form_type'] == 'register' ) echo 'wppb-register-user'; else if( $this->args['form_type'] == 'edit_profile' ) echo 'wppb-edit-user' ?>" class="wppb-user-forms" action="<?php echo apply_filters( 'wppb_form_action', '' ); ?>">
264
- <?php
265
  echo apply_filters( 'wppb_before_form_fields', '<ul>' );
266
  $this->wppb_output_form_fields( $_REQUEST, $field_check_errors );
267
  echo apply_filters( 'wppb_after_form_fields', '</ul>' );
@@ -291,16 +293,21 @@ class Profile_Builder_Form_Creator{
291
  }
292
 
293
  function wppb_output_form_fields( $global_request, $field_check_errors ){
294
-
295
  $output_fields = '';
296
 
297
  if( !empty( $this->args['form_fields'] ) ){
298
  foreach( $this->args['form_fields'] as $field ){
299
  $error_var = ( ( array_key_exists( $field['id'], $field_check_errors ) ) ? ' wppb-field-error' : '' );
300
  $specific_message = ( ( array_key_exists( $field['id'], $field_check_errors ) ) ? $field_check_errors[$field['id']] : '' );
301
-
 
 
 
 
 
302
  $output_fields .= apply_filters( 'wppb_output_before_form_field', '<li class="wppb-form-field wppb-'. Wordpress_Creation_Kit_PB::wck_generate_slug( $field['field'] ) .$error_var.'" id="wppb-form-element-'. $field['id'] .'">', $field, $error_var );
303
- $output_fields .= apply_filters( 'wppb_output_form_field_'.Wordpress_Creation_Kit_PB::wck_generate_slug( $field['field'] ), '', $this->args['form_type'], $field, get_current_user_id(), $field_check_errors, $global_request );
304
  $output_fields .= apply_filters( 'wppb_output_specific_error_message', $specific_message );
305
  $output_fields .= apply_filters( 'wppb_output_after_form_field', '</li>', $field );
306
  }
@@ -354,7 +361,7 @@ class Profile_Builder_Form_Creator{
354
  }
355
 
356
  function wppb_save_form_values( $global_request ){
357
- $user_id = get_current_user_id();
358
  $userdata = apply_filters( 'wppb_build_userdata', array(), $global_request );
359
  $new_user_signup = false;
360
 
@@ -369,12 +376,17 @@ class Profile_Builder_Form_Creator{
369
  $new_user_signup = true;
370
  $multisite_message = true;
371
  $userdata = $this->wppb_add_custom_field_values( $global_request, $userdata, $this->args['form_fields'] );
372
- $userdata['role'] = $this->args['role'];
373
- $userdata['user_pass'] = wp_hash_password( $userdata['user_pass'] );
 
 
 
374
  wppb_signup_user( $userdata['user_login'], $userdata['user_email'], $userdata );
375
 
376
  }else{
377
- $userdata['role'] = $this->args['role'];
 
 
378
  $userdata = wp_unslash( $userdata );
379
  $user_id = wp_insert_user( $userdata );
380
  }
@@ -383,8 +395,11 @@ class Profile_Builder_Form_Creator{
383
  $new_user_signup = true;
384
  $multisite_message = true;
385
  $userdata = $this->wppb_add_custom_field_values( $global_request, $userdata, $this->args['form_fields'] );
386
- $userdata['role'] = $this->args['role'];
387
- $userdata['user_pass'] = wp_hash_password( $userdata['user_pass'] );
 
 
 
388
  /* since version 2.0.7 add this meta so we know on what blog the user registered */
389
  $userdata['registered_for_blog_id'] = get_current_blog_id();
390
  $userdata = wp_unslash( $userdata );
@@ -392,7 +407,7 @@ class Profile_Builder_Form_Creator{
392
  }
393
 
394
  }elseif( $this->args['form_type'] == 'edit_profile' ){
395
- $userdata['ID'] = get_current_user_id();
396
  $userdata = wp_unslash( $userdata );
397
  /* if the user changes his password then we can't send it to the wp_update_user() function or
398
  the user will be logged out and won't be logged in again because we call wp_update_user() after
@@ -435,6 +450,43 @@ class Profile_Builder_Form_Creator{
435
  return $meta;
436
  }
437
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
438
  /**
439
  * Handle toString method
440
  *
29
  $this->wppb_retrieve_custom_settings();
30
 
31
  add_action( 'wp_footer', array( &$this, 'wppb_print_script' ) ); //print scripts
32
+ if( current_user_can( 'manage_options' ) )
33
+ add_action( 'wppb_before_edit_profile_fields', array( &$this, 'wppb_edit_profile_select_user_to_edit' ) );
34
  }
35
 
36
  function wppb_retrieve_custom_settings(){
261
 
262
  // use this action hook to add extra content before the register form
263
  do_action( 'wppb_before_'.$this->args['form_type'].'_fields' );
264
+ ?>
265
+ <form enctype="multipart/form-data" method="post" id="<?php if( $this->args['form_type'] == 'register' ) echo 'wppb-register-user'; else if( $this->args['form_type'] == 'edit_profile' ) echo 'wppb-edit-user'; if( isset($this->args['form_name']) && $this->args['form_name'] != "unspecified" ) echo '-' . $this->args['form_name']; ?>" class="wppb-user-forms<?php if( $this->args['form_type'] == 'register' ) echo ' wppb-register-user'; else if( $this->args['form_type'] == 'edit_profile' ) echo ' wppb-edit-user';?>" action="<?php echo apply_filters( 'wppb_form_action', '' ); ?>">
266
+ <?php
267
  echo apply_filters( 'wppb_before_form_fields', '<ul>' );
268
  $this->wppb_output_form_fields( $_REQUEST, $field_check_errors );
269
  echo apply_filters( 'wppb_after_form_fields', '</ul>' );
293
  }
294
 
295
  function wppb_output_form_fields( $global_request, $field_check_errors ){
296
+
297
  $output_fields = '';
298
 
299
  if( !empty( $this->args['form_fields'] ) ){
300
  foreach( $this->args['form_fields'] as $field ){
301
  $error_var = ( ( array_key_exists( $field['id'], $field_check_errors ) ) ? ' wppb-field-error' : '' );
302
  $specific_message = ( ( array_key_exists( $field['id'], $field_check_errors ) ) ? $field_check_errors[$field['id']] : '' );
303
+
304
+ $display_field = apply_filters( 'wppb_output_display_form_field', true, $field, $this->args['form_type'], $this->args['role'], $this->wppb_get_desired_user_id() );
305
+
306
+ if( $display_field == false )
307
+ continue;
308
+
309
  $output_fields .= apply_filters( 'wppb_output_before_form_field', '<li class="wppb-form-field wppb-'. Wordpress_Creation_Kit_PB::wck_generate_slug( $field['field'] ) .$error_var.'" id="wppb-form-element-'. $field['id'] .'">', $field, $error_var );
310
+ $output_fields .= apply_filters( 'wppb_output_form_field_'.Wordpress_Creation_Kit_PB::wck_generate_slug( $field['field'] ), '', $this->args['form_type'], $field, $this->wppb_get_desired_user_id(), $field_check_errors, $global_request, $this->args['role'] );
311
  $output_fields .= apply_filters( 'wppb_output_specific_error_message', $specific_message );
312
  $output_fields .= apply_filters( 'wppb_output_after_form_field', '</li>', $field );
313
  }
361
  }
362
 
363
  function wppb_save_form_values( $global_request ){
364
+ $user_id = $this->wppb_get_desired_user_id();
365
  $userdata = apply_filters( 'wppb_build_userdata', array(), $global_request );
366
  $new_user_signup = false;
367
 
376
  $new_user_signup = true;
377
  $multisite_message = true;
378
  $userdata = $this->wppb_add_custom_field_values( $global_request, $userdata, $this->args['form_fields'] );
379
+
380
+ if( !isset( $userdata['role'] ) )
381
+ $userdata['role'] = $this->args['role'];
382
+
383
+ $userdata['user_pass'] = wp_hash_password( $userdata['user_pass'] );
384
  wppb_signup_user( $userdata['user_login'], $userdata['user_email'], $userdata );
385
 
386
  }else{
387
+ if( !isset( $userdata['role'] ) )
388
+ $userdata['role'] = $this->args['role'];
389
+
390
  $userdata = wp_unslash( $userdata );
391
  $user_id = wp_insert_user( $userdata );
392
  }
395
  $new_user_signup = true;
396
  $multisite_message = true;
397
  $userdata = $this->wppb_add_custom_field_values( $global_request, $userdata, $this->args['form_fields'] );
398
+
399
+ if( !isset( $userdata['role'] ) )
400
+ $userdata['role'] = $this->args['role'];
401
+
402
+ $userdata['user_pass'] = wp_hash_password( $userdata['user_pass'] );
403
  /* since version 2.0.7 add this meta so we know on what blog the user registered */
404
  $userdata['registered_for_blog_id'] = get_current_blog_id();
405
  $userdata = wp_unslash( $userdata );
407
  }
408
 
409
  }elseif( $this->args['form_type'] == 'edit_profile' ){
410
+ $userdata['ID'] = $this->wppb_get_desired_user_id();
411
  $userdata = wp_unslash( $userdata );
412
  /* if the user changes his password then we can't send it to the wp_update_user() function or
413
  the user will be logged out and won't be logged in again because we call wp_update_user() after
450
  return $meta;
451
  }
452
 
453
+ /**
454
+ * Function that returns the id for the current logged in user or for edit profile forms for administrator it can return the id of a selected user
455
+ */
456
+ function wppb_get_desired_user_id(){
457
+ if( $this->args['form_type'] == 'edit_profile' ){
458
+ //only admins
459
+ if ( current_user_can( 'manage_options' ) ) {
460
+ if( isset( $_GET['edit_user'] ) && ! empty( $_GET['edit_user'] ) ){
461
+ return $_GET['edit_user'];
462
+ }
463
+ }
464
+ }
465
+
466
+ return get_current_user_id();
467
+ }
468
+
469
+ function wppb_edit_profile_select_user_to_edit(){
470
+
471
+ /* add a hard cap: if we have more than 5000 users don't display the dropdown for performance considerations */
472
+ $user_count = count_users();
473
+ if( $user_count['total_users'] > apply_filters( 'wppb_edit_other_users_count_limit', 5000 ) )
474
+ return;
475
+
476
+ if( isset( $_GET['edit_user'] ) && ! empty( $_GET['edit_user'] ) )
477
+ $selected = $_GET['edit_user'];
478
+ else
479
+ $selected = false;
480
+ ?>
481
+ <form method="GET" action="" id="select_user_to_edit_form">
482
+ <p class="wppb-form-field">
483
+ <label for="edit_user"><?php _e( 'User to edit:', 'profilebuilder' ) ?></label><?php wp_dropdown_users( array( 'name' => 'edit_user', 'id' => 'wppb-edit-user', 'selected' => $selected ) ); ?>
484
+ </p>
485
+ <script type="text/javascript">jQuery( '#wppb-edit-user' ).change( function(){ window.location.href = "<?php echo add_query_arg( array( 'edit_user' => '=' ) ) ?>"+jQuery(this).val(); });</script>
486
+ </form>
487
+ <?php
488
+ }
489
+
490
  /**
491
  * Handle toString method
492
  *
front-end/default-fields/email/email.php CHANGED
@@ -41,18 +41,19 @@ function wppb_check_email_value( $message, $field, $request_data, $form_location
41
  if ( isset( $request_data['email'] ) && !is_email( trim( $request_data['email'] ) ) ){
42
  return __( 'The email you entered is not a valid email address.', 'profilebuilder' );
43
  }
44
-
 
45
  if ( is_multisite() || ( !is_multisite() && ( isset( $wppb_generalSettings['emailConfirmation'] ) && ( $wppb_generalSettings['emailConfirmation'] == 'yes' ) ) ) ){
46
  $user_signup = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM ".$wpdb->prefix."signups WHERE user_email = %s", $request_data['email'] ) );
47
 
48
  if ( !empty( $user_signup ) ){
49
  if ( $form_location == 'register' ){
50
- return __( 'This email is already reserved to be used soons.', 'profilebuilder' ) .'<br/>'. __( 'Please try a different one!', 'profilebuilder' );
51
  }
52
  else if ( $form_location == 'edit_profile' ){
53
  $current_user = wp_get_current_user();
54
  if ( $current_user->user_email != $request_data['email'] )
55
- return __( 'This email is already reserved to be used soons.', 'profilebuilder' ) .'<br/>'. __( 'Please try a different one!', 'profilebuilder' );
56
  }
57
  }
58
  }
@@ -63,10 +64,14 @@ function wppb_check_email_value( $message, $field, $request_data, $form_location
63
  return __( 'This email is already in use.', 'profilebuilder' ) .'<br/>'. __( 'Please try a different one!', 'profilebuilder' );
64
 
65
  if ( $form_location == 'edit_profile' ){
66
- $current_user = wp_get_current_user();
67
-
 
 
 
 
68
  foreach ( $users as $user )
69
- if ( $user->ID != $current_user->ID )
70
  return __( 'This email is already in use.', 'profilebuilder' ) .'<br/>'. __( 'Please try a different one!', 'profilebuilder' );
71
  }
72
  }
41
  if ( isset( $request_data['email'] ) && !is_email( trim( $request_data['email'] ) ) ){
42
  return __( 'The email you entered is not a valid email address.', 'profilebuilder' );
43
  }
44
+
45
+ $wppb_generalSettings = get_option( 'wppb_general_settings' );
46
  if ( is_multisite() || ( !is_multisite() && ( isset( $wppb_generalSettings['emailConfirmation'] ) && ( $wppb_generalSettings['emailConfirmation'] == 'yes' ) ) ) ){
47
  $user_signup = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM ".$wpdb->prefix."signups WHERE user_email = %s", $request_data['email'] ) );
48
 
49
  if ( !empty( $user_signup ) ){
50
  if ( $form_location == 'register' ){
51
+ return __( 'This email is already reserved to be used soon.', 'profilebuilder' ) .'<br/>'. __( 'Please try a different one!', 'profilebuilder' );
52
  }
53
  else if ( $form_location == 'edit_profile' ){
54
  $current_user = wp_get_current_user();
55
  if ( $current_user->user_email != $request_data['email'] )
56
+ return __( 'This email is already reserved to be used soon.', 'profilebuilder' ) .'<br/>'. __( 'Please try a different one!', 'profilebuilder' );
57
  }
58
  }
59
  }
64
  return __( 'This email is already in use.', 'profilebuilder' ) .'<br/>'. __( 'Please try a different one!', 'profilebuilder' );
65
 
66
  if ( $form_location == 'edit_profile' ){
67
+ if( isset( $_GET['edit_user'] ) && ! empty( $_GET['edit_user'] ) )
68
+ $current_user_id = $_GET['edit_user'];
69
+ else{
70
+ $current_user = wp_get_current_user();
71
+ $current_user_id = $current_user->ID;
72
+ }
73
  foreach ( $users as $user )
74
+ if ( $user->ID != $current_user_id )
75
  return __( 'This email is already in use.', 'profilebuilder' ) .'<br/>'. __( 'Please try a different one!', 'profilebuilder' );
76
  }
77
  }
front-end/default-fields/headings/about-yourself.php CHANGED
@@ -1,12 +1,12 @@
1
- <?php
2
- function wppb_default_about_yourself_handler( $output, $form_location, $field, $user_id, $field_check_errors, $request_data ){
3
- if ( $field['field'] == 'Default - About Yourself (Heading)' ){
4
- $item_title = apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
5
- $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
6
-
7
- $output = '<h4>'.$item_title.'</h4><span class="wppb-description-delimiter">'.$item_description.'</span>';
8
-
9
- return apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data );
10
- }
11
- }
12
  add_filter( 'wppb_output_form_field_default-about-yourself-heading', 'wppb_default_about_yourself_handler', 10, 6 );
1
+ <?php
2
+ function wppb_default_about_yourself_handler( $output, $form_location, $field, $user_id, $field_check_errors, $request_data ){
3
+ if ( $field['field'] == 'Default - About Yourself (Heading)' ){
4
+ $item_title = apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
5
+ $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
6
+
7
+ $output = '<h4>'.$item_title.'</h4><span class="wppb-description-delimiter">'.$item_description.'</span>';
8
+
9
+ return apply_filters( 'wppb_'.$form_location.'_default_heading_about_yourself_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data );
10
+ }
11
+ }
12
  add_filter( 'wppb_output_form_field_default-about-yourself-heading', 'wppb_default_about_yourself_handler', 10, 6 );
front-end/default-fields/password/password.php CHANGED
@@ -41,11 +41,11 @@ function wppb_check_password_value( $message, $field, $request_data, $form_locat
41
  $wppb_generalSettings = get_option( 'wppb_general_settings' );
42
 
43
  if( wppb_check_password_length( $request_data['passw1'] ) )
44
- return __( "<br/>The password must have the minimum length of ". $wppb_generalSettings['minimum_password_length'] ." characters", "profilebuilder" );
45
 
46
 
47
  if( wppb_check_password_strength() ){
48
- return __( "<br/>The password must have a minimum strength of ". wppb_check_password_strength(), "profilebuilder" );
49
  }
50
  }
51
 
41
  $wppb_generalSettings = get_option( 'wppb_general_settings' );
42
 
43
  if( wppb_check_password_length( $request_data['passw1'] ) )
44
+ return '<br/>'. sprintf( __( "The password must have the minimum length of %s characters", "profilebuilder" ), $wppb_generalSettings['minimum_password_length'] );
45
 
46
 
47
  if( wppb_check_password_strength() ){
48
+ return '<br/>' . sprintf( __( "The password must have a minimum strength of %s", "profilebuilder" ), wppb_check_password_strength() );
49
  }
50
  }
51
 
front-end/logout.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * Function that returns a front-end logout message from the wppb-logout shortcode
5
+ *
6
+ * @param $atts The shortcode attributes
7
+ */
8
+ function wppb_front_end_logout( $atts ) {
9
+
10
+ if( !is_user_logged_in() )
11
+ return;
12
+
13
+ extract( shortcode_atts( array( 'text' => '', 'redirect' => wppb_curpageurl(), 'link_text' => ''), $atts ) );
14
+
15
+ $logout_link = '';
16
+
17
+ if( trim($text) == '' )
18
+ return;
19
+
20
+ if( trim( $link_text ) != '' )
21
+ $logout_link = '<a href="' . wp_logout_url( $redirect ) . '" class="wppb-logout-url" title="' . __( 'Log out of this account', 'profilebuilder' ) . '">' . $link_text . '</a>';
22
+
23
+ $current_user = get_userdata( get_current_user_id() );
24
+
25
+ $meta_tags = apply_filters( 'wppb_front_end_logout_meta_tags', array( '{{meta_user_name}}', '{{meta_first_name}}', '{{meta_last_name}}', '{{meta_display_name}}' ) );
26
+ $meta_tags_values = apply_filters( 'wppb_front_end_logout_meta_tags_values', array( $current_user->user_login, $current_user->first_name, $current_user->last_name, $current_user->display_name ) );
27
+
28
+ $text = apply_filters( 'wppb_front_end_logout_text', str_replace( $meta_tags, $meta_tags_values, $text ), $current_user );
29
+
30
+ return '<p class="wppb-front-end-logout"><span>' . $text . '</span>' . $logout_link . '</p>';
31
+ }
front-end/recover.php CHANGED
@@ -144,6 +144,8 @@ function wppb_front_end_password_recovery(){
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') ) {
@@ -185,13 +187,18 @@ function wppb_front_end_password_recovery(){
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));
@@ -222,17 +229,15 @@ function wppb_front_end_password_recovery(){
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
  }
@@ -252,11 +257,16 @@ function wppb_front_end_password_recovery(){
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
@@ -267,10 +277,10 @@ function wppb_front_end_password_recovery(){
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
 
144
 
145
  ob_start();
146
 
147
+ //Get general settings
148
+ $wppb_generalSettings = get_option( 'wppb_general_settings' );
149
 
150
  // If the user entered an email/username, process the request
151
  if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == 'recover_password' && wp_verify_nonce($_POST['password_recovery_nonce_field'],'verify_true_password_recovery') ) {
187
  if( !empty( $query[0] ) ){
188
  $requestedUserID = $query[0]->ID;
189
  $requestedUserLogin = $query[0]->user_login;
190
+ $requestedUserEmail = $query[0]->user_email;
191
+
192
+ if( $wppb_generalSettings['loginWith'] == 'username' )
193
+ $display_username_email = $query[0]->user_login;
194
+ else
195
+ $display_username_email = $query[0]->user_email;
196
 
197
  //search if there is already an activation key present, if not create one
198
  $key = wppb_retrieve_activation_key( $requestedUserLogin );
199
 
200
  //send primary email message
201
+ $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'), $display_username_email, '<a href="'.add_query_arg( array( 'loginName' => $requestedUserLogin, 'key' => $key ), wppb_curpageurl() ).'">'.add_query_arg( array( 'loginName' => $requestedUserLogin, 'key' => $key ), wppb_curpageurl() ).'</a>');
202
  $recoveruserMailMessage1 = apply_filters( 'wppb_recover_password_message_content_sent_to_user1', $recoveruserMailMessage1, $requestedUserID, $requestedUserLogin );
203
 
204
  $recoveruserMailMessageTitle1 = sprintf(__('Password Reset from "%1$s"', 'profilebuilder'), $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES));
229
  // If the user used the correct key-code, update his/her password
230
  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'] ) ) {
231
 
 
 
232
  if( ( $_POST['passw1'] == $_POST['passw2'] ) && ( !empty( $_POST['passw1'] ) && !empty( $_POST['passw2'] ) ) ){
233
  if( !empty( $wppb_generalSettings['minimum_password_length'] ) || ( isset( $_POST['wppb_password_strength'] ) && !empty( $wppb_generalSettings['minimum_password_strength'] ) ) ){
234
  $message2 = '';
235
  if( wppb_check_password_length( $_POST['passw1'] ) ){
236
+ $message2 .= '<br/>' . sprintf( __( "The password must have the minimum length of %s characters", "profilebuilder" ), $wppb_generalSettings['minimum_password_length'] ) . '<br/>';
237
  $messageNo2 = '2';
238
  }
239
  if( wppb_check_password_strength() ){
240
+ $message2 .= '<br/>'. sprintf( __( "The password must have a minimum strength of %s", "profilebuilder" ), wppb_check_password_strength() );
241
  $messageNo2 = '2';
242
  }
243
  }
257
 
258
  $user_info = get_userdata( $userID );
259
 
260
+ if( $wppb_generalSettings['loginWith'] == 'username' )
261
+ $display_username_email = $user_info->user_login;
262
+ else
263
+ $display_username_email = $user_info->user_email;
264
+
265
  //send secondary mail to the user containing the username and the new password
266
  $recoveruserMailMessage2 = sprintf( __( 'You have successfully reset your password to: %1$s', 'profilebuilder' ), $new_pass );
267
+ $recoveruserMailMessage2 = apply_filters( 'wppb_recover_password_message_content_sent_to_user2', $recoveruserMailMessage2, $display_username_email );
268
 
269
+ $recoveruserMailMessageTitle2 = sprintf( __('Password Successfully Reset for %1$s on "%2$s"', 'profilebuilder' ), $display_username_email, $blogname = wp_specialchars_decode( get_option('blogname'), ENT_QUOTES ) );
270
  $recoveruserMailMessageTitle2 = apply_filters( 'wppb_recover_password_message_title_sent_to_user2', $recoveruserMailMessageTitle2 );
271
 
272
  //we add this filter to enable html encoding
277
  wp_mail( $user_info->user_email, $recoveruserMailMessageTitle2, $recoveruserMailMessage2 );
278
 
279
  //send email to admin
280
+ $recoveradminMailMessage = sprintf( __( '%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s', 'profilebuilder' ), $display_username_email, $_POST['passw1'] );
281
  $recoveradminMailMessage = apply_filters( 'wppb_recover_password_message_content_sent_to_admin', $recoveradminMailMessage );
282
 
283
+ $recoveradminMailMessageTitle = sprintf( __( 'Password Successfully Reset for %1$s on "%2$s"', 'profilebuilder' ), $display_username_email, $blogname = wp_specialchars_decode( get_option('blogname'), ENT_QUOTES ) );
284
  $recoveradminMailMessageTitle = apply_filters( 'wppb_recover_password_message_title_sent_to_admin', $recoveradminMailMessageTitle );
285
 
286
 
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.8
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel
8
  Author URI: http://www.cozmoslabs.com/
9
  License: GPL2
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
73
  *
74
  *
75
  */
76
- define('PROFILE_BUILDER_VERSION', '2.0.8' );
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'))));
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.9
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel
8
  Author URI: http://www.cozmoslabs.com/
9
  License: GPL2
73
  *
74
  *
75
  */
76
+ define('PROFILE_BUILDER_VERSION', '2.0.9' );
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'))));
readme.txt CHANGED
@@ -5,8 +5,8 @@ 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, member directory
6
 
7
  Requires at least: 3.1
8
- Tested up to: 4.0
9
- Stable tag: 2.0.8
10
 
11
  Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
12
 
@@ -108,6 +108,17 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
108
 
109
  == Changelog ==
110
 
 
 
 
 
 
 
 
 
 
 
 
111
  = 2.0.8 =
112
  * Fixed problem that when Email Confirmation was active the password in the registration emails was empty. We now have a placeholder for when we can't send the actual password.
113
  * Added 'wppb_login_form_args' filter to filter wp_login_form() arguments.
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, member directory
6
 
7
  Requires at least: 3.1
8
+ Tested up to: 4.1
9
+ Stable tag: 2.0.9
10
 
11
  Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.
12
 
108
 
109
  == Changelog ==
110
 
111
+ = 2.0.9 =
112
+ * Fixed bug that was causing the username to be sent instead of the email when login with email was set to true in the default registration emails.
113
+ * Fixed bug in Password Reset email when Login with email was on.
114
+ * The "This email is already reserved to be used soon" error wasn't appearing on single site when Email Confirmation was on. Now it does when it is the case.
115
+ * Fixed bug that was causing an upload incompatibility with WordPress media uploader.
116
+ * Fixed bug that was causing Password strength and Password length error messages to not be translatable.
117
+ * Interface changes to forms in admin area on Profile Builder Pages.
118
+ * Added possibility to edit other users from the front end edit form when an admin is logged in.
119
+ * Added a popup in unconfirmed email user listing in admin area where the admin can see the users meta information.
120
+ * Add logout shortcode and menu link to Profile Builder.
121
+
122
  = 2.0.8 =
123
  * Fixed problem that when Email Confirmation was active the password in the registration emails was empty. We now have a placeholder for when we can't send the actual password.
124
  * Added 'wppb_login_form_args' filter to filter wp_login_form() arguments.
translation/profilebuilder-fr_FR.po CHANGED
@@ -1,2585 +1,2585 @@
1
- # Translation of Profile Builder in French (France)
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"
9
- "Plural-Forms: nplurals=2; plural=n > 1;\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>"
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&#37; 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&#37; 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 "...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
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 "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."
121
- msgstr ""
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
-
143
- #: ../admin/admin-bar.php:10
144
- msgid "Show/Hide the Admin Bar on the Front-End"
145
- msgstr "Afficher/masquer la barre Admin sur l'interface cliente"
146
-
147
- #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
148
- msgid "Admin Bar Settings"
149
- msgstr "Paramètres de la barre Admin"
150
-
151
- #: ../admin/admin-bar.php:57
152
- msgid "User-Role"
153
- msgstr "Rôles utilisateurs"
154
-
155
- #: ../admin/admin-bar.php:58
156
- msgid "Visibility"
157
- msgstr "Visibilité"
158
-
159
- #: ../admin/admin-bar.php:73
160
- msgid "Default"
161
- msgstr "Par défaut"
162
-
163
- #: ../admin/admin-bar.php:74
164
- msgid "Show"
165
- msgstr "Afficher"
166
-
167
- #: ../admin/admin-bar.php:75
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"
176
- msgstr "Enregistrer les modifications"
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 "La connexion se fera avec votre adresse de messagerie. Ce champ n'apparaîtra PAS sur l'interface cliente! ( vous pouvez changer ces paramètres dans l'onglet \"%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 "Paramètres Généraux"
186
-
187
- #: ../admin/admin-functions.php:106
188
- msgid "<strong>ERROR</strong>: The password must have the minimum length of "
189
- msgstr "<strong>ERREUR</strong>: Le mot de passe doit avoir une longueur minimale de "
190
-
191
- #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
192
- msgid "Very weak"
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
-
210
- #: ../admin/admin-functions.php:123
211
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
212
- msgstr "<strong>ERREUR</strong>: Le mot de passe doit avoir une longueur minimale de "
213
-
214
- #: ../admin/admin-functions.php:162
215
- msgid "Add Field"
216
- msgstr "Ajouter un Champ"
217
-
218
- #: ../admin/admin-functions.php:164
219
- msgid "Save Settings"
220
- msgstr "Enregistrer les Paramètres"
221
-
222
- #: ../admin/basic-info.php:10
223
- msgid "Basic Information"
224
- msgstr "Informations de base"
225
-
226
- #: ../admin/basic-info.php:29
227
- msgid "Version %s"
228
- msgstr "Version %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 "Le meilleur moyen d'ajouter une inscription via l'interface cliente, de modifier un profil et des formulaires de connexion."
237
-
238
- #: ../admin/basic-info.php:33
239
- msgid "For Modern User Interaction"
240
- msgstr "Pour une Interaction Utilisateur Moderne"
241
-
242
- #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
243
- msgid "Login"
244
- msgstr "Identification"
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 "Une identification sans friction via le shortcode <strong class=\"nowrap\">[wppb-login]</strong> ou un widget."
249
-
250
- #: ../admin/basic-info.php:40
251
- msgid "Registration"
252
- msgstr "Inscription"
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 "De jolis formulaires d'inscription totalement personnalisable en utilisant le shortcode <strong class=\"nowrap\">[wppb-register]</strong>."
257
-
258
- #: ../admin/basic-info.php:44
259
- msgid "Edit Profile"
260
- msgstr "Modifier le 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 "Des formulaires simples de modification de profil en utilisant le shortcode <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
265
-
266
- #: ../admin/basic-info.php:51
267
- msgid "Extra Features"
268
- msgstr "Fonctionnalités Supplémentaires"
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 "Des fonctionnalités qui vous donnent plus de contrôle sur vos utilisateurs, une sécurité renforcée et qui vous aident à lutter contre le spam d'inscription d'utilisateurs."
273
-
274
- #: ../admin/basic-info.php:53
275
- msgid "Enable extra features"
276
- msgstr "Activer les fonctionnalités supplémentaires"
277
-
278
- #: ../admin/basic-info.php:57
279
- msgid "Recover Password"
280
- msgstr "Récupérer le Mot De Passe"
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 "Autoriser les utilisateurs à récupérer leur mot de passe sur l'interface cliente en utilisant le shortcode [wppb-recover-password]."
285
-
286
- #: ../admin/basic-info.php:61
287
- msgid "Admin Approval (*)"
288
- msgstr "Approbation par l'Admin"
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 "Vous décidez qui est une utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress."
293
-
294
- #: ../admin/basic-info.php:65
295
- msgid "Email Confirmation"
296
- msgstr "Confirmation de l'adresse de messagerie"
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 "S'assurer que les utilisateurs s'incrivent avec des adresses de messagerie authentiques. Lors de l'inscription, un e-mail sera envoyé aux utilisateurs afin de confirmer leur adresse de messagerie."
301
-
302
- #: ../admin/basic-info.php:69
303
- msgid "Minimum Password Length and Strength Meter"
304
- msgstr "Longueur Minimale du Mot De Masse et Métrique de Sûreté"
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 "Eliminer les mots de passe trop faibles en imposant une longueur minimale et un niveau de sûreté minimum."
309
-
310
- #: ../admin/basic-info.php:73
311
- msgid "Login with Email or Username"
312
- msgstr "Se connecter avec une adresse de messagerie ou avec le nom d'utilisateur"
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 "Autoriser les utilisateurs à se connecter avec leur adresse de messagerie ou leur nom d'utilisateur lorsqu'ils accèdent à votre site."
317
-
318
- #: ../admin/basic-info.php:87
319
- msgid "Customize Your Forms The Way You Want (*)"
320
- msgstr "Personnaliser Vos Formulaires Comme Vous Le Souhaitez (*)"
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 "Avec les champs supplémentaires de profil vous pouvez créer le formulaire exact d'inscription dont votre projet a besoin."
325
-
326
- #: ../admin/basic-info.php:90
327
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
328
- msgstr "Les champs supplémentaires de profil sont disponibles dans les version Hobbyist ou PRO."
329
-
330
- #: ../admin/basic-info.php:92
331
- msgid "Get started with extra fields"
332
- msgstr "Bien commencer avec les champs supplémentaires"
333
-
334
- #: ../admin/basic-info.php:95
335
- msgid "Avatar Upload"
336
- msgstr "Téléversement d'avatar"
337
-
338
- #: ../admin/basic-info.php:96
339
- msgid "Generic Uploads"
340
- msgstr "Téléversements Génériques"
341
-
342
- #: ../admin/basic-info.php:97
343
- msgid "Agree To Terms Checkbox"
344
- msgstr "Acceptation des conditions par une case à cocher"
345
-
346
- #: ../admin/basic-info.php:98
347
- msgid "Datepicker"
348
- msgstr "Outil de sélection de date"
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 "Sélection du Pays"
357
-
358
- #: ../admin/basic-info.php:101
359
- msgid "Timezone Select"
360
- msgstr "Sélection du Fuseau Horaire"
361
-
362
- #: ../admin/basic-info.php:102
363
- msgid "Input / Hidden Input"
364
- msgstr "Entrée visible / Entrée cachée"
365
-
366
- #: ../admin/basic-info.php:103
367
- msgid "Checkbox"
368
- msgstr "Case à cocher"
369
-
370
- #: ../admin/basic-info.php:104
371
- msgid "Select"
372
- msgstr "Liste déroulante"
373
-
374
- #: ../admin/basic-info.php:105
375
- msgid "Radio Buttons"
376
- msgstr "Boutons Radio"
377
-
378
- #: ../admin/basic-info.php:106
379
- msgid "Textarea"
380
- msgstr "Zone de Texte"
381
-
382
- #: ../admin/basic-info.php:115
383
- msgid "Powerful Modules (**)"
384
- msgstr "Des Modules Puissants (**)"
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 "Tout ce dont vous aurez besoin pour gérer vos utilisateurs est probablement déjà disponible dans les Modules Pro."
389
-
390
- #: ../admin/basic-info.php:118
391
- msgid "Enable your modules"
392
- msgstr "Activer vos modules"
393
-
394
- #: ../admin/basic-info.php:121
395
- msgid "Find out more about PRO Modules"
396
- msgstr "Découvrez les Modules 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 "Listing d'utilisateurs"
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 "Facile pour modifier les modèles permettant de lister les utilisateurs de votre site web tout comme créer des formulaires pour un seul utilisateur. Basé sur des shortcodes, offrant de nombreuses options pour personnaliser vos listings."
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 "Pour créer une page contenant les utilisateurs inscrit sur ce site/blog, insérez le shortcode suivant dans la page de votre choix: <strong class=\"nowrap\">[wppb-list-users]</strong>."
413
-
414
- #: ../admin/basic-info.php:134
415
- msgid "Email Customizer"
416
- msgstr "Outil de personnalisation d'e-mails"
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 "Personnalisez tous les e-mails envoyés à vos utilisateurs ou administrateurs. Au moment de l'inscription, de la confirmation de l'adresse de messagerie, de l'approbation / rejet par les administrateurs."
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 "Redirections personnalisées"
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 "Laissez vos utilisateurs hors du tableau de bord WordPress, redirigez-les sur la page d'acceuil après qu'ils se sont identifiés ou inscrits, tout en quelques quelques cliques."
431
-
432
- #: ../admin/basic-info.php:144 ../modules/modules.php:97
433
- msgid "Multiple Registration Forms"
434
- msgstr "Formulaires Multiples d'Inscription"
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 "Mettez en place des formulaires multiples d'inscription avec différents champs suivant les rôles utilisateur. Capturez des informations variées à partir de divers types d'utilisateurs."
439
-
440
- #: ../admin/basic-info.php:148 ../modules/modules.php:104
441
- msgid "Multiple Edit-profile Forms"
442
- msgstr "Formulaires Multiples de Modification de Profil"
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 "Autorisez différents rôles utilisateur à modifier les informations qui leur sont spécifiques. Mettez en place des forumlaires multiples de modification de profil avec des champs différents suivant les rôles utilisateurs."
447
-
448
- #: ../admin/basic-info.php:161
449
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
450
- msgstr "* disponible uniquement dans les versions %1$sHobbyist et Pro %2$s."
451
-
452
- #: ../admin/basic-info.php:162
453
- msgid "** only available in the %1$sPro version%2$s."
454
- msgstr "** disponible uniquement dans la version %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 "Charge le fichier CSS de Profile Builder sur l'interface cliente:"
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 "Oui"
467
-
468
- #: ../admin/general-settings.php:47
469
- msgid "You can find the default file here: %1$s"
470
- msgstr "Vous pouvez trouver le fichier par défaut ici: %1$s"
471
-
472
- #: ../admin/general-settings.php:56
473
- msgid "\"Email Confirmation\" Activated:"
474
- msgstr "\"Confirmation par e-mail\" Activée:"
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 "Non"
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 "Sur les installations pour un seu site, ceci fonctionne uniquement avec les formulaires d'interface cliente. Il est recommandé de redirigé l'inscription WP par défaut vers celle de Profile Builder en utilisant le module \"Redirections Personnalisées\"."
485
-
486
- #: ../admin/general-settings.php:65
487
- msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
488
- msgstr "La fonctionnalité \"Confirmation de l'adresse de messagerie\" est active (par défaut) sur les installations 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 "Vous pouvez trouver une liste d'adresses de messagerie non-confirmées sous %1$sUtilisateurs > Tous les Utilisateurs > Confirmation de l'adresse de messagerie %2$s."
493
-
494
- #: ../admin/general-settings.php:79
495
- msgid "\"Email Confirmation\" Landing Page:"
496
- msgstr "Page d'arrivée après \"Confirmation de l'adresse de messagerie\":"
497
-
498
- #: ../admin/general-settings.php:84
499
- msgid "Existing Pages"
500
- msgstr "Pages Existantes"
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 "Spécifie la page vers laquelle les utilisateurs seront redirigés après avoir confirmé leur adresse de messagerie. Cette page peut être différente suivant la ou les page(s) d'inscription et peut être changée à n'importe quel moment. Si aucune n'est sélectionnée, une page de confirmation simple sera affichée à l'utilisateur."
505
-
506
- #: ../admin/general-settings.php:110
507
- msgid "\"Admin Approval\" Activated:"
508
- msgstr "\"Approbation par l'Admin\" Activée:"
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 "Vous pouvez trouver une liste d'utilisateurs à %1$sUtilisateurs > Tous les Utilisateurs > Approbation par l'Admin %2$s."
513
-
514
- #: ../admin/general-settings.php:130
515
- msgid "\"Admin Approval\" Feature:"
516
- msgstr "Fonctionnalité \"Approbation par l'Admin\":"
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 "Vous décidez qui est une utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress. Activer l'approbation Admin en évoluant vers les versions %1$sHobbyist ou PRO %2$s."
521
-
522
- #: ../admin/general-settings.php:140
523
- msgid "Allow Users to Log in With:"
524
- msgstr "Permet aux utilisateurs à se connecter avec:"
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 "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
-
543
- #: ../admin/general-settings.php:152
544
- msgid "Minimum Password Length:"
545
- msgstr "Longueur Minimale du Mot De Passe:"
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 "Entrez le nombre minimum de caractères que le mot de passe doit avoir. Laissez ce champ vide si vous ne voulez aucune limite minimale"
550
-
551
- #: ../admin/general-settings.php:164
552
- msgid "Minimum Password Strength:"
553
- msgstr "Sûreté Minimale du Mot De Passe:"
554
-
555
- #: ../admin/general-settings.php:168
556
- msgid "Disabled"
557
- msgstr "Désactivé"
558
-
559
- #: ../admin/manage-fields.php:12
560
- msgid "Manage Fields"
561
- msgstr "Gérez les Champs"
562
-
563
- #: ../admin/manage-fields.php:13
564
- msgid "Manage Default and Extra Fields"
565
- msgstr "Gérez les Champs Par Défaut et les Champs Supplémentaires"
566
-
567
- #: ../admin/manage-fields.php:74
568
- msgid "Field Title"
569
- msgstr "Titre du Champ"
570
-
571
- #: ../admin/manage-fields.php:74
572
- msgid "Title of the field"
573
- msgstr "Titre du champ"
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 "Champ"
580
-
581
- #: ../admin/manage-fields.php:76
582
- msgid "Meta-name"
583
- msgstr "Meta-nom"
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 "Utilisez ceci en lien avec les fonctions WordPress pour afficher la valeur dans la page de votre choix<br/>Automatiquement rempli mais dans certains cas modifiable (dans ce cas il doit être unique)<br/>Toute modification pourrait prendre du temps s'il le compteur utilisateur est très grand"
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 unique identifiant, généré automatiquement, pour ce champ particulier<br/>Vous pouvez utilisater ceci en lien avec les filtres pour cibler cet élément si besoin<br/>Ne peut être modifié"
600
-
601
- #: ../admin/manage-fields.php:78
602
- msgid "Description"
603
- msgstr "Description"
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 "Entrez une description (détaillée) de l'option que les utilisateurs finaux pourront lire<br/>Optionnel"
608
-
609
- #: ../admin/manage-fields.php:79
610
- msgid "Row Count"
611
- msgstr "Nombre de Lignes"
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 "Spécifiez les nombre de lignes pour un champ 'Zone de Texte'<br/>Si vous ne spécifiez pas de champ, la valeur par défaut sera de 5"
616
-
617
- #: ../admin/manage-fields.php:80
618
- msgid "Allowed Image Extensions"
619
- msgstr "Extensions Autorisées des Images"
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 "Spécifiez les extension(s) autorisées au téléversement<br/>Exemple: .ext1,.ext2,.ext3<br/>Si aucune extension n'est spécifiée, toutes les extensions d'image seront autorisées par défaut (.*)"
624
-
625
- #: ../admin/manage-fields.php:81
626
- msgid "Allowed Upload Extensions"
627
- msgstr "Extensions Autorisées au Téléversement"
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 "Spécifiez les extension(s) autorisées au téléversement<br/>Exemple: .ext1,.ext2,.ext3<br/>Si aucune extension n'est spécifiée, toutes les extensions seront autorisées par défaut (.*)"
632
-
633
- #: ../admin/manage-fields.php:82
634
- msgid "Avatar Size"
635
- msgstr "Taille de l'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 "Entrez une valeur (entre 20 et 200) pour la taille de l'Avatar<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera de 100"
640
-
641
- #: ../admin/manage-fields.php:83
642
- msgid "Date-format"
643
- msgstr "Format de la date"
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 "Spécifiez le format de la date lorsque vous utilisez l'outil de sélection de dates<br/>Options valides: mm/jj/aa, mm/aa/jj, jj/aa/mm, jj/mm/aa, aa/jj/mm, aa/mm/jj<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera mm/jj/aa"
648
-
649
- #: ../admin/manage-fields.php:84
650
- msgid "Terms of Agreement"
651
- msgstr "Conditions Générales"
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: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
655
- msgstr "Entrez une description détaillée des conditions générales que l'utilisateur pourra lire.<br/>Vous pouvez utiliser des liens via la syntaxe standard HTML: &lt;a href=\"url_personnalisee\"&gt;texte_personnalise&lt;/a&gt;"
656
-
657
- #: ../admin/manage-fields.php:85
658
- msgid "Options"
659
- msgstr "Options"
660
-
661
- #: ../admin/manage-fields.php:86
662
- msgid "Labels"
663
- msgstr "Labels"
664
-
665
- #: ../admin/manage-fields.php:86
666
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
667
- msgstr "Entrez une liste de labels séparés par une virgule<br/>Visible par l'utilisateur"
668
-
669
- #: ../admin/manage-fields.php:87
670
- msgid "Public Key"
671
- msgstr "Clé Publique"
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 "La clé publique de 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 "Clé Privée"
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 "La clé privée de 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 "Valeur Par Défaut"
688
-
689
- #: ../admin/manage-fields.php:89
690
- msgid "Default value of the field"
691
- msgstr "Valeur par défaut du champ"
692
-
693
- #: ../admin/manage-fields.php:90
694
- msgid "Default Option"
695
- msgstr "Option Par Défaut"
696
-
697
- #: ../admin/manage-fields.php:90
698
- msgid "Specify the option which should be selected by default"
699
- msgstr "Spécifiez l'option qui devrait être sélectionnée par défaut"
700
-
701
- #: ../admin/manage-fields.php:91
702
- msgid "Default Option(s)"
703
- msgstr "Option(s) Par Défaut"
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 "Spécifiez l'option qui devrait être cochée par défaut<br/>S'il y a plusieurs valeurs, séparez-les par une ',' (virgule)"
708
-
709
- #: ../admin/manage-fields.php:92
710
- msgid "Default Content"
711
- msgstr "Contenu Par Défaut"
712
-
713
- #: ../admin/manage-fields.php:92
714
- msgid "Default value of the textarea"
715
- msgstr "Valeur par défaut de la zone de texte"
716
-
717
- #: ../admin/manage-fields.php:93
718
- msgid "Required"
719
- msgstr "Obligatoire"
720
-
721
- #: ../admin/manage-fields.php:93
722
- msgid "Whether the field is required or not"
723
- msgstr "Si le champ est obligatoire ou pas"
724
-
725
- #: ../admin/manage-fields.php:94
726
- msgid "Overwrite Existing"
727
- msgstr "Ecraser l'existant"
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 "Sélectionner 'Oui' ajoutera le champ à la liste, mais écrasera n'importe quel autre champ dans la base de données qui ait le même méta-nom<br/>Utilisez ceci à vos risques et périls"
732
-
733
- #: ../admin/manage-fields.php:100
734
- msgid "Field Properties"
735
- msgstr "Propriétés du Champ"
736
-
737
- #: ../admin/manage-fields.php:113
738
- msgid "Registration & Edit Profile"
739
- msgstr "Inscription & Modification de Profil"
740
-
741
- #: ../admin/manage-fields.php:132
742
- msgid "Name"
743
- msgstr "Nom"
744
-
745
- #: ../admin/manage-fields.php:133
746
- msgid "Usernames cannot be changed."
747
- msgstr "Les noms d'utillisateur ne peuvent pas être modifiés."
748
-
749
- #: ../admin/manage-fields.php:134
750
- msgid "First Name"
751
- msgstr "Prénom"
752
-
753
- #: ../admin/manage-fields.php:135
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
-
761
- #: ../admin/manage-fields.php:137
762
- msgid "Display name publicly as"
763
- msgstr "Nom publique"
764
-
765
- #: ../admin/manage-fields.php:138
766
- msgid "Contact Info"
767
- msgstr "Informations 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 "Adresse de messagerie"
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 "Site web"
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 "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
-
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 "Partagez quelques informations biographiques pour compléter votre profile. Ceci peut être affiché publiquement."
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 "Mot de passe"
814
-
815
- #: ../admin/manage-fields.php:151
816
- msgid "Type your password."
817
- msgstr "Tapez votre mot de passe."
818
-
819
- #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
820
- msgid "Repeat Password"
821
- msgstr "Répétez votre mot de passe"
822
-
823
- #: ../admin/manage-fields.php:152
824
- msgid "Type your password again. "
825
- msgstr "Re-tapez votre mot de passe."
826
-
827
- #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
828
- msgid "You must select a field\n"
829
- msgstr "Vous devez sélectionner un champ\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 "Merci de choisir un champ différent, car celui-ci existe déjà dans votre formulaire (et il doit être unique)\n"
834
-
835
- #: ../admin/manage-fields.php:329
836
- msgid "The entered avatar size is not between 20 and 200\n"
837
- msgstr "La taille de l'avatar n'est pas comprise entre 20 et 200\n"
838
-
839
- #: ../admin/manage-fields.php:332
840
- msgid "The entered avatar size is not numerical\n"
841
- msgstr "La taille de l'avatar n'est pas une valeur numérique\n"
842
-
843
- #: ../admin/manage-fields.php:340
844
- msgid "The entered row number is not numerical\n"
845
- msgstr "Le chiffre de la ligne n'est pas numérique\n"
846
-
847
- #: ../admin/manage-fields.php:343
848
- msgid "You must enter a value for the row number\n"
849
- msgstr "Vous devez entrer une valeur pour le chiffre de la ligne\n"
850
-
851
- #: ../admin/manage-fields.php:351
852
- msgid "You must enter the public key\n"
853
- msgstr "Vous devez entrer la clé publique\n"
854
-
855
- #: ../admin/manage-fields.php:353
856
- msgid "You must enter the private key\n"
857
- msgstr "Vous devez entrer la clé privée\n"
858
-
859
- #: ../admin/manage-fields.php:361
860
- msgid "The entered value for the Datepicker is not a valid date-format\n"
861
- msgstr "La valeur entrée pour l'outil de sélection de date ne respecte pas le format de date\n"
862
-
863
- #: ../admin/manage-fields.php:364
864
- msgid "You must enter a value for the date-format\n"
865
- msgstr "Vous devez entrer une valeur de formattage de date\n"
866
-
867
- #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
868
- #: ../admin/manage-fields.php:410
869
- msgid "That meta-name is already in use\n"
870
- msgstr "Le meta-nom est déjà utilisé\n"
871
-
872
- #: ../admin/manage-fields.php:432
873
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
874
- msgstr "Le(s) options(s) suivante(s) n'a(ont) pas coïncidé pas avec celles de la liste d'options: %s\n"
875
-
876
- #: ../admin/manage-fields.php:436
877
- msgid "The following option did not coincide with the ones in the options list: %s\n"
878
- msgstr "L'option suivante n'a pas coïncidé avec celles de la liste d'options: %s\n"
879
-
880
- #: ../admin/manage-fields.php:451
881
- msgid "That field is already added in this form\n"
882
- msgstr "Ce champ a déjà été ajouté à ce formulaire\n"
883
-
884
- #: ../admin/manage-fields.php:500
885
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
886
- msgstr "<pre>Titre</pre><pre>Type</pre><pre>Meta-nom</pre><pre class=\"wppb-mb-head-required\">Obligatoire</pre>"
887
-
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"
895
-
896
- #: ../admin/manage-fields.php:500
897
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
898
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
899
- #: ../features/admin-approval/class-admin-approval.php:124
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
-
907
- #: ../admin/manage-fields.php:515
908
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
909
- msgstr "Utilisez ces shortcodes sur les pages où vous voulez que les formulaires s'affichent:"
910
-
911
- #: ../admin/manage-fields.php:521
912
- 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."
913
- msgstr "Si vous êtes intéressé pour afficher différents champs dans les formulaires d'inscription et de modification de profile, merci d'utiliser l'extension Formulaires d'Inscriptions Multiples & de Modification de Profile."
914
-
915
- #: ../admin/register-version.php:11
916
- msgid "Register Your Version"
917
- msgstr "Enregistrez Votre Version"
918
-
919
- #: ../admin/register-version.php:11
920
- msgid "Register Version"
921
- msgstr "Enregistrez la Version"
922
-
923
- #: ../admin/register-version.php:58
924
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
925
- msgstr "Si vous enregistrez cette version de Profile Builder, vous recevrez des informations concernant des mises à jours, des correctifs et le support technique."
926
-
927
- #: ../admin/register-version.php:60
928
- msgid " Serial Number:"
929
- msgstr "Numéro de Série:"
930
-
931
- #: ../admin/register-version.php:65
932
- msgid "The serial number was successfully validated!"
933
- msgstr "Le numéro de série a bien été validé!"
934
-
935
- #: ../admin/register-version.php:67
936
- msgid "The serial number entered couldn't be validated!"
937
- msgstr "Le numéro de série entré n'a pas pu être validé!"
938
-
939
- #: ../admin/register-version.php:69
940
- msgid "The serial number couldn't be validated because it expired!"
941
- msgstr "Le numéro de série n'a pas pu être validé car il a expiré!"
942
-
943
- #: ../admin/register-version.php:71
944
- 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!"
945
- msgstr "Le numéro de série n'a pas pu être validé car le processus a dépassé le délai. Ceci peut être dû à une panne du serveur. Merci de ré-essayer plus tard!"
946
-
947
- #: ../admin/register-version.php:73
948
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
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
-
956
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
957
- msgid "Edit this item"
958
- msgstr "Modifier cet élément"
959
-
960
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
961
- msgid "Delete this item"
962
- msgstr "Supprimer cet élément"
963
-
964
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
965
- msgid "Please enter a value for the required field "
966
- msgstr "Merci d'entrer une valeur pour le champ obligatoire"
967
-
968
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
969
- msgid "Select File"
970
- msgstr "Sélectionner un fichier"
971
-
972
- #: ../assets/lib/wck-api/fields/upload.php:31
973
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
974
- msgid "Remove"
975
- msgstr "Supprimer"
976
-
977
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
978
- msgid "Syncronize WCK"
979
- msgstr "Synchroniser WCK"
980
-
981
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
982
- msgid "Syncronize WCK Translation"
983
- msgstr "Synchroniser la traduction WCK"
984
-
985
- #: ../assets/lib/wck-api/fields/nested repeater.php:8
986
- msgid "You can add the information for the %s after you add a entry"
987
- msgstr "Vous pouvez ajouter l'information pour le %s après avoir ajouté une entrée"
988
-
989
- #: ../assets/lib/wck-api/fields/upload.php:48
990
- msgid "Upload "
991
- msgstr "Téléverser"
992
-
993
- #: ../features/class-list-table.php:184
994
- msgid "No items found."
995
- msgstr "Aucun élément trouvé."
996
-
997
- #: ../features/class-list-table.php:308
998
- msgid "Bulk Actions"
999
- msgstr "Actions Groupées"
1000
-
1001
- #: ../features/class-list-table.php:318
1002
- msgid "Apply"
1003
- msgstr "Appliquer"
1004
-
1005
- #: ../features/class-list-table.php:402
1006
- msgid "Show all dates"
1007
- msgstr "Afficher toutes les dates"
1008
-
1009
- #: ../features/class-list-table.php:415
1010
- msgid "%1$s %2$d"
1011
- msgstr "%1$s %2$d"
1012
-
1013
- #: ../features/class-list-table.php:431
1014
- msgid "List View"
1015
- msgstr "Vue par liste"
1016
-
1017
- #: ../features/class-list-table.php:432
1018
- msgid "Excerpt View"
1019
- msgstr "Vue par extrait"
1020
-
1021
- #: ../features/class-list-table.php:458
1022
- msgid "%s pending"
1023
- msgstr "%s en attente"
1024
-
1025
- #: ../features/class-list-table.php:566
1026
- msgid "%1$s of %2$s"
1027
- msgstr "%1$s de %2$s"
1028
-
1029
- #: ../features/class-list-table.php:713
1030
- msgid "Select All"
1031
- msgstr "Tout Sélectionner"
1032
-
1033
- #: ../features/functions.php:193 ../features/functions.php:194
1034
- msgid "Profile Builder"
1035
- msgstr "Profile Builder"
1036
-
1037
- #: ../features/functions.php:261
1038
- msgid "The user-validation has failed - the avatar was not deleted!"
1039
- msgstr "La validation de l'utilisateur a échoué - l'avatar n'a pas été supprimé!"
1040
-
1041
- #: ../features/functions.php:272
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"
1052
- msgstr "Approbation par l'Admin"
1053
-
1054
- #: ../features/admin-approval/admin-approval.php:22
1055
- #: ../features/email-confirmation/email-confirmation.php:58
1056
- msgid "Do you want to"
1057
- msgstr "Voulez-vous"
1058
-
1059
- #: ../features/admin-approval/admin-approval.php:45
1060
- msgid "Your session has expired! Please refresh the page and try again"
1061
- msgstr "Votre session a expirée! Merci de rafraîchir la page et de ré-essayer"
1062
-
1063
- #: ../features/admin-approval/admin-approval.php:56
1064
- msgid "User successfully approved!"
1065
- msgstr "L'utilisateur a bien été approuvé!"
1066
-
1067
- #: ../features/admin-approval/admin-approval.php:64
1068
- msgid "User successfully unapproved!"
1069
- msgstr "L'utilisateur a bien été refusé!"
1070
-
1071
- #: ../features/admin-approval/admin-approval.php:70
1072
- msgid "User successfully deleted!"
1073
- msgstr "L'utilisateur a bien été supprimé!"
1074
-
1075
- #: ../features/admin-approval/admin-approval.php:75
1076
- #: ../features/admin-approval/admin-approval.php:140
1077
- #: ../features/email-confirmation/email-confirmation.php:122
1078
- msgid "You either don't have permission for that action or there was an error!"
1079
- msgstr "Soit vous n'avez pas la permission de réaliser cette action soit il y a eu une erreur!"
1080
-
1081
- #: ../features/admin-approval/admin-approval.php:87
1082
- msgid "Your session has expired! Please refresh the page and try again."
1083
- msgstr "Votre session a expiré! Merci de rafraîchir la page et de ré-essayer."
1084
-
1085
- #: ../features/admin-approval/admin-approval.php:107
1086
- msgid "Users successfully approved!"
1087
- msgstr "Les utilisateurs ont bien été approuvés!"
1088
-
1089
- #: ../features/admin-approval/admin-approval.php:122
1090
- msgid "Users successfully unapproved!"
1091
- msgstr "Les utilisateurs ont bien été refusés!"
1092
-
1093
- #: ../features/admin-approval/admin-approval.php:135
1094
- msgid "Users successfully deleted!"
1095
- msgstr "Les utilisateurs ont bien été supprimés!"
1096
-
1097
- #: ../features/admin-approval/admin-approval.php:150
1098
- msgid "Your account on %1$s has been approved!"
1099
- msgstr "Votre compte sur %1$s a été approuvé!"
1100
-
1101
- #: ../features/admin-approval/admin-approval.php:151
1102
- #: ../features/admin-approval/admin-approval.php:154
1103
- msgid "approved"
1104
- msgstr "approuvé"
1105
-
1106
- #: ../features/admin-approval/admin-approval.php:153
1107
- msgid "An administrator has just approved your account on %1$s (%2$s)."
1108
- msgstr "Un administrateur vient d'approuver votre compte sur %1$s (%2$s)."
1109
-
1110
- #: ../features/admin-approval/admin-approval.php:157
1111
- msgid "Your account on %1$s has been unapproved!"
1112
- msgstr "Votre compte sur %1$s a été refusé!"
1113
-
1114
- #: ../features/admin-approval/admin-approval.php:158
1115
- #: ../features/admin-approval/admin-approval.php:161
1116
- msgid "unapproved"
1117
- msgstr "refusé"
1118
-
1119
- #: ../features/admin-approval/admin-approval.php:160
1120
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1121
- msgstr "Un administrateur vient de refuser votre compte sur %1$s (%2$s)."
1122
-
1123
- #: ../features/admin-approval/admin-approval.php:177
1124
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1125
- msgstr "<strong>ERREUR</strong>: Votre compte doit être confirmé par un administrateur avant que vous ne puissiez vous connecter."
1126
-
1127
- #: ../features/admin-approval/admin-approval.php:189
1128
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1129
- msgstr "Un administrateur doit approuver votre compte avant que vous ne puissiez utiliser la fonctionnalité \"Mot de passe perdu\"."
1130
-
1131
- #: ../features/admin-approval/class-admin-approval.php:119
1132
- msgid "View or Edit"
1133
- msgstr "Voir ou Modifier"
1134
-
1135
- #: ../features/admin-approval/class-admin-approval.php:124
1136
- msgid "delete this user?"
1137
- msgstr "supprimer cet utilisateur?"
1138
-
1139
- #: ../features/admin-approval/class-admin-approval.php:127
1140
- msgid "unapprove this user?"
1141
- msgstr "refuser cet utilisateur?"
1142
-
1143
- #: ../features/admin-approval/class-admin-approval.php:127
1144
- #: ../features/admin-approval/class-admin-approval.php:234
1145
- msgid "Unapprove"
1146
- msgstr "Refuser"
1147
-
1148
- #: ../features/admin-approval/class-admin-approval.php:129
1149
- msgid "approve this user?"
1150
- msgstr "approuver cet utilisateur?"
1151
-
1152
- #: ../features/admin-approval/class-admin-approval.php:129
1153
- #: ../features/admin-approval/class-admin-approval.php:233
1154
- msgid "Approve"
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
-
1169
- #: ../features/admin-approval/class-admin-approval.php:181
1170
- #: ../modules/user-listing/userlisting.php:117
1171
- msgid "Role"
1172
- msgstr "Rôle"
1173
-
1174
- #: ../features/admin-approval/class-admin-approval.php:182
1175
- #: ../features/email-confirmation/class-email-confirmation.php:155
1176
- msgid "Registered"
1177
- msgstr "Inscrit"
1178
-
1179
- #: ../features/admin-approval/class-admin-approval.php:183
1180
- msgid "User-status"
1181
- msgstr "Statut de l'utilisateur"
1182
-
1183
- #: ../features/admin-approval/class-admin-approval.php:263
1184
- msgid "Do you want to bulk approve the selected users?"
1185
- msgstr "Voulez-vous approuver tous les utilisateurs sélectionnés?"
1186
-
1187
- #: ../features/admin-approval/class-admin-approval.php:271
1188
- msgid "Do you want to bulk unapprove the selected users?"
1189
- msgstr "Voulez-vous refuser tous les utilisateurs sélectionnés?"
1190
-
1191
- #: ../features/admin-approval/class-admin-approval.php:277
1192
- msgid "Do you want to bulk delete the selected users?"
1193
- msgstr "Voulez-vous supprimer tous les utilisateurs sélectionnés?"
1194
-
1195
- #: ../features/admin-approval/class-admin-approval.php:285
1196
- #: ../features/email-confirmation/class-email-confirmation.php:263
1197
- msgid "Sorry, but you don't have permission to do that!"
1198
- msgstr "Désolé, mais vous n'avez pas la permission de faire cela!"
1199
-
1200
- #: ../features/admin-approval/class-admin-approval.php:318
1201
- msgid "Approved"
1202
- msgstr "Approuvé"
1203
-
1204
- #: ../features/admin-approval/class-admin-approval.php:320
1205
- msgid "Unapproved"
1206
- msgstr "Refusé"
1207
-
1208
- #: ../features/admin-approval/class-admin-approval.php:492
1209
- #: ../features/email-confirmation/class-email-confirmation.php:448
1210
- msgid "All Users"
1211
- msgstr "Tous les Utilisateurs"
1212
-
1213
- #: ../features/email-confirmation/class-email-confirmation.php:106
1214
- msgid "delete this user from the _signups table?"
1215
- msgstr "supprimer cet utilisateur de la table _signups ?"
1216
-
1217
- #: ../features/email-confirmation/class-email-confirmation.php:107
1218
- msgid "confirm this email yourself?"
1219
- msgstr "confirmer cette adresse de messagerie vous-même?"
1220
-
1221
- #: ../features/email-confirmation/class-email-confirmation.php:107
1222
- #: ../features/email-confirmation/class-email-confirmation.php:203
1223
- msgid "Confirm Email"
1224
- msgstr "Confirmer l'adresse de messagerie"
1225
-
1226
- #: ../features/email-confirmation/class-email-confirmation.php:108
1227
- msgid "resend the activation link?"
1228
- msgstr "ré-envoyer le lien d'activation?"
1229
-
1230
- #: ../features/email-confirmation/class-email-confirmation.php:108
1231
- #: ../features/email-confirmation/class-email-confirmation.php:204
1232
- msgid "Resend Activation Email"
1233
- msgstr "Ré-envoyer l'e-mail d'activation"
1234
-
1235
- #: ../features/email-confirmation/class-email-confirmation.php:234
1236
- msgid "%s couldn't be deleted"
1237
- msgstr "%s n'a pas pu être supprimé"
1238
-
1239
- #: ../features/email-confirmation/class-email-confirmation.php:238
1240
- msgid "All users have been successfully deleted"
1241
- msgstr "Tous les utilisateurs ont bien été supprimés"
1242
-
1243
- #: ../features/email-confirmation/class-email-confirmation.php:248
1244
- msgid "The selected users have been activated"
1245
- msgstr "L'utilisateur sélectionné a bien été activé"
1246
-
1247
- #: ../features/email-confirmation/class-email-confirmation.php:259
1248
- msgid "The selected users have had their activation emails resent"
1249
- msgstr "Les e-mails d'activation ont été ré-envoyés aux utilisateurs sélectionnés"
1250
-
1251
- #: ../features/email-confirmation/class-email-confirmation.php:445
1252
- #: ../features/email-confirmation/email-confirmation.php:47
1253
- msgid "Users with Unconfirmed Email Address"
1254
- msgstr "Utilisateurs avec une adresse de messagerie non-confirmée"
1255
-
1256
- #: ../features/email-confirmation/email-confirmation.php:97
1257
- msgid "There was an error performing that action!"
1258
- msgstr "Il y a eu une erreur lors de la réalisation de cette action!"
1259
-
1260
- #: ../features/email-confirmation/email-confirmation.php:105
1261
- msgid "The selected user couldn't be deleted"
1262
- msgstr "L'utilisateur sélectionné n'a pas pu être supprimé"
1263
-
1264
- #: ../features/email-confirmation/email-confirmation.php:116
1265
- msgid "Email notification resent to user"
1266
- msgstr "L'e-mail de notification a été ré-envoyé à l'utilisateur"
1267
-
1268
- #: ../features/email-confirmation/email-confirmation.php:349
1269
- msgid "[%1$s] Activate %2$s"
1270
- msgstr "[%1$s] Activer %2$s"
1271
-
1272
- #: ../features/email-confirmation/email-confirmation.php:350
1273
- msgid ""
1274
- "To activate your user, please click the following link:\n"
1275
- "\n"
1276
- "%s%s%s\n"
1277
- "\n"
1278
- "After you activate it you will receive yet *another email* with your login."
1279
- msgstr ""
1280
- "Pour activer votre utilisateur, merci de cliquer sur le lien suivant:\n"
1281
- "\n"
1282
- "%s%s%s\n"
1283
- "\n"
1284
- "Après l'avoir activé, vous recevrez un *autre e-mail* avec votre identifiant."
1285
-
1286
- #: ../features/email-confirmation/email-confirmation.php:388
1287
- #: ../front-end/register.php:68
1288
- msgid "Could not create user!"
1289
- msgstr "L'utilisateur n'a pas pu être créé!"
1290
-
1291
- #: ../features/email-confirmation/email-confirmation.php:391
1292
- msgid "That username is already activated!"
1293
- msgstr "Ce nom d'utilisateur est déjà activé!"
1294
-
1295
- #: ../features/email-confirmation/email-confirmation.php:420
1296
- msgid "There was an error while trying to activate the user"
1297
- msgstr "Il y a eu une erreur lors de l'activation de l'utilisateur"
1298
-
1299
- #: ../features/email-confirmation/email-confirmation.php:458
1300
- #: ../modules/email-customizer/admin-email-customizer.php:73
1301
- msgid "A new subscriber has (been) registered!"
1302
- msgstr "Un nouvel adhérent a (été) enregistré!"
1303
-
1304
- #: ../features/email-confirmation/email-confirmation.php:461
1305
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1306
- msgstr "Nouvel adhérent sur %1$s.<br/><br/>Nom d'utilisateur:%2$s<br/>E-mail:%3$s<br/>"
1307
-
1308
- #: ../features/email-confirmation/email-confirmation.php:466
1309
- 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!"
1310
- msgstr "La fonctionnalité \"Approbation Admin\" était activée au moment de l'inscription, donc merci de vous souvenir que vous devez approuver cet utilisateur avant qu'il/elle puisse se connecter!"
1311
-
1312
- #: ../features/email-confirmation/email-confirmation.php:481
1313
- msgid "[%1$s] Your new account information"
1314
- msgstr "[%1$s] Nouvelles informations à propos de votre compte"
1315
-
1316
- #: ../features/email-confirmation/email-confirmation.php:484
1317
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1318
- msgstr "Bienvenue sur %1$s!<br/><br/><br/>Votre nom d'utilisateur est:%2$s et votre mot de passe:%3$s"
1319
-
1320
- #: ../features/email-confirmation/email-confirmation.php:489
1321
- #: ../front-end/register.php:103
1322
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1323
- msgstr "Votre compte doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un e-mail vous sera envoyé."
1324
-
1325
- #: ../features/login-widget/login-widget.php:10
1326
- msgid "This login widget lets you add a login form in the sidebar."
1327
- msgstr "Cette widget d'identification vous permet d'ajouter un formulaire d'identification sur la barre latérale."
1328
-
1329
- #: ../features/login-widget/login-widget.php:15
1330
- msgid "Profile Builder Login Widget"
1331
- msgstr "Profile Builder Login Widget"
1332
-
1333
- #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1334
- msgid "Register"
1335
- msgstr "S'inscrire"
1336
-
1337
- #: ../features/login-widget/login-widget.php:63
1338
- msgid "Title:"
1339
- msgstr "Titre:"
1340
-
1341
- #: ../features/login-widget/login-widget.php:68
1342
- msgid "After login redirect URL (optional):"
1343
- msgstr "URL de redirection après connexion (optionnel):"
1344
-
1345
- #: ../features/login-widget/login-widget.php:73
1346
- msgid "Register page URL (optional):"
1347
- msgstr "URL de la pagge d'inscription (optionnel):"
1348
-
1349
- #: ../features/login-widget/login-widget.php:78
1350
- msgid "Password Recovery page URL (optional):"
1351
- msgstr "URL de la page de ré-initialisation du mot de passe (optionnel):"
1352
-
1353
- #: ../features/upgrades/upgrades-functions.php:91
1354
- #: ../features/upgrades/upgrades-functions.php:134
1355
- msgid "The usernames cannot be changed."
1356
- msgstr "Les noms d'utilisateur ne peuvent pas être changés."
1357
-
1358
- #: ../front-end/class-formbuilder.php:83
1359
- msgid "Only an administrator can add new users."
1360
- msgstr "Seul un administrateur peut ajouter de nouveaux utilisateurs."
1361
-
1362
- #: ../front-end/class-formbuilder.php:93
1363
- msgid "Users can register themselves or you can manually create users here."
1364
- msgstr "Merci d'utiliser de ne pas re-créer de compte si vous en avez déjà un."
1365
-
1366
- #: ../front-end/class-formbuilder.php:96
1367
- msgid "Users cannot currently register themselves, but you can manually create users here."
1368
- msgstr "Les utilisateurs ne peuvent pas s'inscrire eux-mêmes, mais vous pouvez les créer manuellement ici."
1369
-
1370
- #: ../front-end/class-formbuilder.php:108
1371
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
1372
- msgstr "Vous êtes actuellement connecté comme %1s.Vous n'avez pas besoin d'un autre compte. %2s"
1373
-
1374
- #: ../front-end/class-formbuilder.php:108
1375
- msgid "Log out of this account."
1376
- msgstr "Se déconnecter de ce compte."
1377
-
1378
- #: ../front-end/class-formbuilder.php:108
1379
- msgid "Logout"
1380
- msgstr "Se déconnecter"
1381
-
1382
- #: ../front-end/class-formbuilder.php:114
1383
- msgid "You must be logged in to edit your profile."
1384
- msgstr "Vous devez être connecté pour modifier votre profile."
1385
-
1386
- #: ../front-end/class-formbuilder.php:137
1387
- msgid "here"
1388
- msgstr "ici"
1389
-
1390
- #: ../front-end/class-formbuilder.php:139
1391
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1392
- msgstr "Vous serez bientôt redirigé automatiquement. Si vous voyez cette page pendant plus d'%1$d secondes, merci de cliquer sur %2$s.%3$s"
1393
-
1394
- #: ../front-end/class-formbuilder.php:224
1395
- msgid "The account %1s has been successfully created!"
1396
- msgstr "Votre compte %1s a bien été créé!"
1397
-
1398
- #: ../front-end/class-formbuilder.php:227
1399
- #: ../front-end/class-formbuilder.php:233
1400
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1401
- msgstr "Avant que vous ne puissiez accéder à votre compte %1s, vous devez confirmer votre adresse de messagerie. Merci de consulter votre boite de réception et de cliquer sur le lien d'activation."
1402
-
1403
- #: ../front-end/class-formbuilder.php:230
1404
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1405
- msgstr "Votre compte %1s doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un e-mail vous sera envoyé."
1406
-
1407
- #: ../front-end/class-formbuilder.php:243
1408
- msgid "Your profile has been successfully updated!"
1409
- msgstr "Votre profile a bien été mis à jour!"
1410
-
1411
- #: ../front-end/class-formbuilder.php:253
1412
- msgid "There was an error in the submitted form"
1413
- msgstr "Il y avait une erreur dans le formulaire que vous avez soumis"
1414
-
1415
- #: ../front-end/class-formbuilder.php:274
1416
- msgid "Add User"
1417
- msgstr "Ajouter un Utilisateur"
1418
-
1419
- #: ../front-end/class-formbuilder.php:277
1420
- msgid "Update"
1421
- msgstr "Mettre à jour"
1422
-
1423
- #: ../front-end/class-formbuilder.php:314
1424
- #: ../front-end/extra-fields/extra-fields.php:33
1425
- msgid "The avatar was successfully deleted!"
1426
- msgstr "L'avatar a bien été supprimé!"
1427
-
1428
- #: ../front-end/class-formbuilder.php:314
1429
- #: ../front-end/extra-fields/extra-fields.php:35
1430
- msgid "The following attachment was successfully deleted:"
1431
- msgstr "La pièce jointe suivante a bien été supprimée:"
1432
-
1433
- #: ../front-end/class-formbuilder.php:326
1434
- msgid "Send these credentials via email."
1435
- msgstr "Envoyer ces identifiants par e-mail."
1436
-
1437
- #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1438
- #: ../front-end/login.php:79 ../front-end/login.php:89
1439
- #: ../front-end/recover.php:17 ../front-end/recover.php:206
1440
- msgid "ERROR"
1441
- msgstr "ERREUR"
1442
-
1443
- #: ../front-end/login.php:72
1444
- msgid "The password you entered is incorrect."
1445
- msgstr "Le mot de passe que vous avez entré n'est pas correct."
1446
-
1447
- #: ../front-end/login.php:73 ../front-end/login.php:80
1448
- msgid "Password Lost and Found."
1449
- msgstr "Mot de passe perdu et retrouvé."
1450
-
1451
- #: ../front-end/login.php:73 ../front-end/login.php:80
1452
- msgid "Lost your password"
1453
- msgstr "Mot de passe perdu"
1454
-
1455
- #: ../front-end/login.php:89
1456
- msgid "Both fields are empty."
1457
- msgstr "Les deux champs sont vides."
1458
-
1459
- #: ../front-end/login.php:199
1460
- msgid "You are currently logged in as %1$s. %2$s"
1461
- msgstr "Vous êtes actuellement connecté en tant que %1$s. %2$s"
1462
-
1463
- #: ../front-end/login.php:199
1464
- msgid "Log out of this account"
1465
- msgstr "Se déconnecter de ce compte"
1466
-
1467
- #: ../front-end/login.php:199
1468
- msgid "Log out"
1469
- msgstr "Se déconnecter"
1470
-
1471
- #: ../front-end/recover.php:17
1472
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1473
- msgstr "Votre compte a été confirmé par un administrateur avant que vous puissiez utilisater la fonctionnalité \"Ré-initialisation du mot de passe\"."
1474
-
1475
- #: ../front-end/recover.php:91
1476
- msgid "Reset Password"
1477
- msgstr "Ré-initialiser le mot de passe"
1478
-
1479
- #: ../front-end/recover.php:111
1480
- msgid "Please enter your username or email address."
1481
- msgstr "Merci d'entrer votre nom d'utilisateur ou votre adresse de messagerie."
1482
-
1483
- #: ../front-end/recover.php:112
1484
- msgid "You will receive a link to create a new password via email."
1485
- msgstr "Vous recevrez un lien par e-mail pour créer un nouveau mot de passe."
1486
-
1487
- #: ../front-end/recover.php:119
1488
- msgid "Username or E-mail"
1489
- msgstr "Nom d'utilisateur ou adresse de messagerie."
1490
-
1491
- #: ../front-end/recover.php:125
1492
- msgid "Get New Password"
1493
- msgstr "Ré-initialiser votre mot de passe"
1494
-
1495
- #: ../front-end/recover.php:164
1496
- msgid "The username entered wasn't found in the database!"
1497
- msgstr "Le nom d'utilisateur que vous avez entré n'a pas été trouvé dans la base de données!"
1498
-
1499
- #: ../front-end/recover.php:164
1500
- msgid "Please check that you entered the correct username."
1501
- msgstr "Merci de vérifier que vous avez entré un nom d'utilisateur correct."
1502
-
1503
- #: ../front-end/recover.php:179
1504
- msgid "Check your e-mail for the confirmation link."
1505
- msgstr "Merci de consulter votre boite de réception pour le lien d'activation."
1506
-
1507
- #: ../front-end/recover.php:194
1508
- 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"
1509
- msgstr "Quelqu'un a demandé que le mot de passe soit ré-initialisé sur le compte suivant: <b>%1$s</b><br/>Si c'était une erreur, ignorez simplement cet e-mail et il ne se passera rien.<br/>Pour ré-initialiser votre mot de passe, cliquez sur le lien suivant:%2$s"
1510
-
1511
- #: ../front-end/recover.php:197
1512
- msgid "Password Reset from \"%1$s\""
1513
- msgstr "Mot de passe ré-initialisé de \"%1$s\""
1514
-
1515
- #: ../front-end/recover.php:206
1516
- msgid "There was an error while trying to send the activation link to %1$s!"
1517
- msgstr "Il y a eu une erreur lors de l'envoi du lien d'activation à %1$s!"
1518
-
1519
- #: ../front-end/recover.php:215
1520
- msgid "The email address entered wasn't found in the database!"
1521
- msgstr "L'adresse de messagerie entrée n'a pas été trouvée dans la base de données!"
1522
-
1523
- #: ../front-end/recover.php:215
1524
- msgid "Please check that you entered the correct email address."
1525
- msgstr "Merci de vérifier que vous avez entré une adresse de messagerie correcte."
1526
-
1527
- #: ../front-end/default-fields/password/password.php:44
1528
- #: ../front-end/recover.php:231
1529
- msgid "<br/>The password must have the minimum length of "
1530
- msgstr "<br/>Le mot de passe doit avoir une longueur minimale de "
1531
-
1532
- #: ../front-end/default-fields/password/password.php:48
1533
- #: ../front-end/recover.php:235
1534
- msgid "<br/>The password must have a minimum strength of "
1535
- msgstr "<br/>Le mot de passe doit avoir une sûreté minimale de "
1536
-
1537
- #: ../front-end/recover.php:242
1538
- msgid "Your password has been successfully changed!"
1539
- msgstr "Votre mot de passe a bien été changé!"
1540
-
1541
- #: ../front-end/recover.php:256
1542
- msgid "You have successfully reset your password to: %1$s"
1543
- msgstr "Vous avec bien ré-initialisé votre mot de passe pour: %1$s"
1544
-
1545
- #: ../front-end/recover.php:259 ../front-end/recover.php:273
1546
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
1547
- msgstr "Mot de passe bien ré-initialisé pour %1$s sur \"%2$s\""
1548
-
1549
- #: ../front-end/recover.php:270
1550
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1551
- msgstr "%1$s a demandé un changement de mot de passe via la fonctionnalité de ré-initialisation du mot de passe. <br/>Son nouveau mot de passe est:%2$s"
1552
-
1553
- #: ../front-end/recover.php:289
1554
- msgid "The entered passwords don't match!"
1555
- msgstr "Les mots de passe entrés sont différents!"
1556
-
1557
- #: ../front-end/recover.php:334
1558
- msgid "ERROR:"
1559
- msgstr "ERREUR:"
1560
-
1561
- #: ../front-end/recover.php:334
1562
- msgid "Invalid key!"
1563
- msgstr "Clé incorrecte!"
1564
-
1565
- #: ../front-end/register.php:46
1566
- msgid "Invalid activation key!"
1567
- msgstr "Clé d'activation incorrecte!"
1568
-
1569
- #: ../front-end/register.php:50
1570
- msgid "This username is now active!"
1571
- msgstr "Ce nom d'utilisateur est désormais actif!"
1572
-
1573
- #: ../front-end/register.php:71
1574
- msgid "This username is already activated!"
1575
- msgstr "Ce nom d'utilisateur est déjà activé!"
1576
-
1577
- #: ../front-end/register.php:102
1578
- msgid "Your email was successfully confirmed."
1579
- msgstr "Votre adresse de messagerie a bien été confirmée."
1580
-
1581
- #: ../front-end/register.php:112
1582
- msgid "There was an error while trying to activate the user."
1583
- msgstr "Il y a eu une erreur lors de l'activation de cet utilisateur."
1584
-
1585
- #: ../front-end/default-fields/email/email.php:42
1586
- msgid "The email you entered is not a valid email address."
1587
- msgstr "L'adresse de messagerie que vous avez entrée n'est pas une adresse de messagerie valide."
1588
-
1589
- #: ../front-end/default-fields/email/email.php:49
1590
- msgid "This email is already reserved to be used soon."
1591
- msgstr "Cette adresse de messagerie est déjà réservée et sera bientôt utilisée."
1592
-
1593
- #: ../front-end/default-fields/email/email.php:49
1594
- #: ../front-end/default-fields/email/email.php:55
1595
- #: ../front-end/default-fields/email/email.php:62
1596
- #: ../front-end/default-fields/username/username.php:44
1597
- #: ../front-end/default-fields/username/username.php:51
1598
- msgid "Please try a different one!"
1599
- msgstr "Merci d'en essayer un autre!"
1600
-
1601
- #: ../front-end/default-fields/email/email.php:55
1602
- #: ../front-end/default-fields/email/email.php:62
1603
- msgid "This email is already in use."
1604
- msgstr "Cette adresse de messagerie est déjà utilisée."
1605
-
1606
- #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1607
- #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1608
- msgid "The passwords do not match"
1609
- msgstr "Les mots de passe sont différents"
1610
-
1611
- #: ../front-end/default-fields/username/username.php:44
1612
- msgid "This username already exists."
1613
- msgstr "Ce nom d'utilisateur existe déjà."
1614
-
1615
- #: ../front-end/default-fields/username/username.php:51
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
1661
- #: ../front-end/extra-fields/input/input.php:28
1662
- #: ../front-end/extra-fields/radio/radio.php:42
1663
- #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1664
- #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1665
- #: ../front-end/extra-fields/select/select.php:44
1666
- #: ../front-end/extra-fields/textarea/textarea.php:28
1667
- #: ../front-end/extra-fields/upload/upload.php:62
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
-
1728
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1729
- msgid "Could not open socket!"
1730
- msgstr "Le socket n'a pas pu être ouvert!"
1731
-
1732
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1733
- msgid "To use reCAPTCHA you must get an API key from"
1734
- msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé d'API de"
1735
-
1736
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1737
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1738
- msgstr "Pour des raisons de sécurité, vous devez donner l'adresse ip distante au reCAPTCHA!"
1739
-
1740
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1741
- msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1742
- msgstr "Pour utiliser reCAPTCHA Mailhide, vous devez avoir installé le module php mcrypt!"
1743
-
1744
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1745
- msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1746
- msgstr "Pour utiliser reCAPTCHA Mailhide, vous devez vous inscrire pour avoir une clé publique et une clé privés; vous pouvez le faire sur"
1747
-
1748
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1749
- msgid "To use reCAPTCHA you must get an API public key from:"
1750
- msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé publique d'API de:"
1751
-
1752
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1753
- msgid "To use reCAPTCHA you must get an API private key from:"
1754
- msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé privée de:"
1755
-
1756
- #: ../front-end/extra-fields/upload/upload.php:35
1757
- msgid "Current file: No uploaded attachment"
1758
- msgstr "Fichier actuel: aucune pièce jointe téléversée"
1759
-
1760
- #: ../front-end/extra-fields/upload/upload.php:39
1761
- #: ../front-end/extra-fields/upload/upload.php:48
1762
- #: ../front-end/extra-fields/upload/upload.php:71
1763
- #: ../front-end/extra-fields/upload/upload.php:75
1764
- #: ../front-end/extra-fields/upload/upload.php:77
1765
- msgid "Current file"
1766
- msgstr "Fichier actuel"
1767
-
1768
- #: ../front-end/extra-fields/upload/upload.php:42
1769
- #: ../front-end/extra-fields/upload/upload.php:51
1770
- #: ../front-end/extra-fields/upload/upload.php:75
1771
- #: ../front-end/extra-fields/upload/upload.php:77
1772
- msgid "Click to see the current attachment"
1773
- msgstr "Cliquez pour voir la pièce jointe actuelle"
1774
-
1775
- #: ../front-end/extra-fields/upload/upload.php:44
1776
- #: ../front-end/extra-fields/upload/upload.php:75
1777
- msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1778
- msgstr "La pièce jointe n'a pas pu être supprimée (elle est marquée comme obligatoire par l'administrateur)"
1779
-
1780
- #: ../front-end/extra-fields/upload/upload.php:53
1781
- #: ../front-end/extra-fields/upload/upload.php:77
1782
- msgid "Are you sure you want to delete this attachment?"
1783
- msgstr "Êtes-vous sûr de vouloir supprimer cette pièce jointe?"
1784
-
1785
- #: ../front-end/extra-fields/upload/upload.php:54
1786
- #: ../front-end/extra-fields/upload/upload.php:77
1787
- msgid "Click to delete the current attachment"
1788
- msgstr "Cliquer pour supprimer la pièce jointe actuelle"
1789
-
1790
- #: ../front-end/extra-fields/upload/upload.php:71
1791
- msgid "No uploaded attachment"
1792
- msgstr "Pas de pièce jointe téléversée"
1793
-
1794
- #: ../front-end/extra-fields/upload/upload.php:164
1795
- msgid "The extension of the file is not allowed"
1796
- msgstr "L'extension du fichier n'est pas autorisée"
1797
-
1798
- #: ../front-end/extra-fields/upload/upload.php:186
1799
- msgid "The file could only partially be uploaded"
1800
- msgstr "Le fichier n'a pu qu'être partiellement téléversé"
1801
-
1802
- #: ../front-end/extra-fields/upload/upload.php:201
1803
- msgid "This field wasn't updated because an unknown error occured"
1804
- msgstr "Ce champ n'a pas pu être mis à jour à cause d'une erreur inconnue"
1805
-
1806
- #: ../modules/modules.php:11 ../modules/modules.php:80
1807
- msgid "Modules"
1808
- msgstr "Modules"
1809
-
1810
- #: ../modules/modules.php:81
1811
- msgid "Here you can activate / deactivate available modules for Profile Builder."
1812
- msgstr "Ici vous pouvez activer / désactiver les modules disponibles pour Profile Builder."
1813
-
1814
- #: ../modules/modules.php:91
1815
- msgid "Name/Description"
1816
- msgstr "Nom/Description"
1817
-
1818
- #: ../modules/modules.php:92
1819
- msgid "Status"
1820
- msgstr "Statut"
1821
-
1822
- #: ../modules/custom-redirects/custom-redirects.php:48
1823
- #: ../modules/custom-redirects/custom-redirects.php:58
1824
- #: ../modules/custom-redirects/custom-redirects.php:68
1825
- #: ../modules/custom-redirects/custom-redirects.php:94
1826
- #: ../modules/custom-redirects/custom-redirects.php:104
1827
- #: ../modules/custom-redirects/custom-redirects.php:114
1828
- #: ../modules/custom-redirects/custom-redirects.php:124
1829
- #: ../modules/modules.php:99 ../modules/modules.php:106
1830
- #: ../modules/modules.php:113 ../modules/modules.php:120
1831
- #: ../modules/modules.php:127 ../modules/modules.php:134
1832
- msgid "Active"
1833
- msgstr "Active"
1834
-
1835
- #: ../modules/custom-redirects/custom-redirects.php:49
1836
- #: ../modules/custom-redirects/custom-redirects.php:59
1837
- #: ../modules/custom-redirects/custom-redirects.php:69
1838
- #: ../modules/custom-redirects/custom-redirects.php:95
1839
- #: ../modules/custom-redirects/custom-redirects.php:105
1840
- #: ../modules/custom-redirects/custom-redirects.php:115
1841
- #: ../modules/custom-redirects/custom-redirects.php:125
1842
- #: ../modules/modules.php:100 ../modules/modules.php:107
1843
- #: ../modules/modules.php:114 ../modules/modules.php:121
1844
- #: ../modules/modules.php:128 ../modules/modules.php:135
1845
- msgid "Inactive"
1846
- msgstr "Inactive"
1847
-
1848
- #: ../modules/email-customizer/admin-email-customizer.php:11
1849
- #: ../modules/email-customizer/admin-email-customizer.php:12
1850
- #: ../modules/modules.php:118
1851
- msgid "Admin Email Customizer"
1852
- msgstr "E-mails personnalisés à l'Admin"
1853
-
1854
- #: ../modules/email-customizer/user-email-customizer.php:11
1855
- #: ../modules/email-customizer/user-email-customizer.php:12
1856
- #: ../modules/modules.php:125
1857
- msgid "User Email Customizer"
1858
- msgstr "E-mails personnalisés à l'utilisateur"
1859
-
1860
- #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1861
- msgid "Save"
1862
- msgstr "Enregistrer"
1863
-
1864
- #: ../modules/custom-redirects/custom-redirects.php:35
1865
- msgid "Redirects on custom page requests:"
1866
- msgstr "Redirige les requêtes vers une page spécifique:"
1867
-
1868
- #: ../modules/custom-redirects/custom-redirects.php:39
1869
- #: ../modules/custom-redirects/custom-redirects.php:85
1870
- msgid "Action"
1871
- msgstr "Action"
1872
-
1873
- #: ../modules/custom-redirects/custom-redirects.php:40
1874
- #: ../modules/custom-redirects/custom-redirects.php:86
1875
- #: ../modules/multiple-forms/edit-profile-forms.php:206
1876
- #: ../modules/multiple-forms/register-forms.php:230
1877
- msgid "Redirect"
1878
- msgstr "Redirections"
1879
-
1880
- #: ../modules/custom-redirects/custom-redirects.php:41
1881
- #: ../modules/custom-redirects/custom-redirects.php:87
1882
- #: ../modules/multiple-forms/edit-profile-forms.php:208
1883
- #: ../modules/multiple-forms/register-forms.php:232
1884
- msgid "URL"
1885
- msgstr "URL"
1886
-
1887
- #: ../modules/custom-redirects/custom-redirects.php:46
1888
- msgid "After Registration:"
1889
- msgstr "Après inscription:"
1890
-
1891
- #: ../modules/custom-redirects/custom-redirects.php:56
1892
- msgid "After Login:"
1893
- msgstr "Après connexion:"
1894
-
1895
- #: ../modules/custom-redirects/custom-redirects.php:66
1896
- msgid "Recover Password (*)"
1897
- msgstr "Récupérer le mot de passe (*)"
1898
-
1899
- #: ../modules/custom-redirects/custom-redirects.php:77
1900
- 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."
1901
- msgstr "Lorsque cette fonctionnalité est activée l'utilisateur sera redirigé à partir de la page par défaut de Wordpress de récupération du mot de passe vers le lien \"Mot de passe perdu?\" utilisé par Profile Builder sur la page de connexion de l'interface cliente."
1902
-
1903
- #: ../modules/custom-redirects/custom-redirects.php:81
1904
- msgid "Redirects on default WordPress page requests:"
1905
- msgstr "Redirige les requêtes vers la page Wordpress par défaut:"
1906
-
1907
- #: ../modules/custom-redirects/custom-redirects.php:92
1908
- msgid "Default WordPress Login Page"
1909
- msgstr "Page de connexion WordPress par défaut"
1910
-
1911
- #: ../modules/custom-redirects/custom-redirects.php:102
1912
- msgid "Default WordPress Logout Page"
1913
- msgstr "Page de déconnexion Wordpress par défaut"
1914
-
1915
- #: ../modules/custom-redirects/custom-redirects.php:112
1916
- msgid "Default WordPress Register Page"
1917
- msgstr "Page d'inscription WordPress par défaut"
1918
-
1919
- #: ../modules/custom-redirects/custom-redirects.php:122
1920
- msgid "Default WordPress Dashboard (*)"
1921
- msgstr "Tableau de bord Wordpress par défaut (*)"
1922
-
1923
- #: ../modules/custom-redirects/custom-redirects.php:133
1924
- msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1925
- msgstr "Redirige chaque rôle utilisateur SAUF ceux qui ont des privilèges d'administrateur (qui peuvent changer les options)."
1926
-
1927
- #: ../modules/email-customizer/admin-email-customizer.php:38
1928
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1929
- msgstr "Ces paramètres sont aussi répliqués dans la page de paramètres des \"E-mails personnalisés aux utilisateurs\" lors de la sauvegarde."
1930
-
1931
- #: ../modules/email-customizer/admin-email-customizer.php:41
1932
- #: ../modules/email-customizer/user-email-customizer.php:41
1933
- msgid "From (name)"
1934
- msgstr "De (nom)"
1935
-
1936
- #: ../modules/email-customizer/admin-email-customizer.php:49
1937
- #: ../modules/email-customizer/user-email-customizer.php:49
1938
- msgid "From (reply-to email)"
1939
- msgstr "De (réponse à)"
1940
-
1941
- #: ../modules/email-customizer/admin-email-customizer.php:57
1942
- #: ../modules/email-customizer/user-email-customizer.php:57
1943
- msgid "Common Settings"
1944
- msgstr "Paramètres communs"
1945
-
1946
- #: ../modules/email-customizer/admin-email-customizer.php:60
1947
- msgid ""
1948
- "\n"
1949
- "<p>New subscriber on {{site_name}}.</p>\n"
1950
- "<p>Username:{{username}}</p>\n"
1951
- "<p>E-mail:{{user_email}}</p>\n"
1952
- msgstr ""
1953
- "\n"
1954
- "<p>Nouvel adhérent sur {{site_name}}.</p>\n"
1955
- "<p>Nom d'utilisateur:{{username}}</p>\n"
1956
- "<p>Adresse de messagerie:{{user_email}}</p>\n"
1957
-
1958
- #: ../modules/email-customizer/admin-email-customizer.php:69
1959
- #: ../modules/email-customizer/admin-email-customizer.php:99
1960
- #: ../modules/email-customizer/user-email-customizer.php:71
1961
- #: ../modules/email-customizer/user-email-customizer.php:99
1962
- #: ../modules/email-customizer/user-email-customizer.php:128
1963
- #: ../modules/email-customizer/user-email-customizer.php:155
1964
- #: ../modules/email-customizer/user-email-customizer.php:183
1965
- msgid "Email Subject"
1966
- msgstr "Sujet de l'e-mail"
1967
-
1968
- #: ../modules/email-customizer/admin-email-customizer.php:84
1969
- msgid "Default Registration & Registration with Email Confirmation"
1970
- msgstr "Inscription par défaut & inscription avec confirmation de l'adresse de messagerie"
1971
-
1972
- #: ../modules/email-customizer/admin-email-customizer.php:87
1973
- msgid ""
1974
- "\n"
1975
- "<p>New subscriber on {{site_name}}.</p>\n"
1976
- "<p>Username:{{username}}</p>\n"
1977
- "<p>E-mail:{{user_email}}</p>\n"
1978
- "<p>The Admin Approval feature was activated at the time of registration,\n"
1979
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
1980
- msgstr ""
1981
- "\n"
1982
- "<p>Nouvel adhérent sur {{site_name}}.</p>\n"
1983
- "<p>Nom d'utilisateur:{{username}}</p>\n"
1984
- "<p>Adresse de messagerie:{{user_email}}</p>\n"
1985
- "<p>La fonctionnalité Approbation Admin était activée au moment de l'inscription,\n"
1986
- "donc merci de vous souvenir qu'il faut que vous approuviez cet utilisateur avant qu'il/elle ne puisse se connecter!</p>\n"
1987
-
1988
- #: ../modules/email-customizer/admin-email-customizer.php:114
1989
- #: ../modules/email-customizer/user-email-customizer.php:143
1990
- msgid "Registration with Admin Approval"
1991
- msgstr "Inscription avec Approbation Admin"
1992
-
1993
- #: ../modules/email-customizer/email-customizer.php:7
1994
- msgid "Available Tags"
1995
- msgstr "Tags disponibles"
1996
-
1997
- #: ../modules/email-customizer/email-customizer.php:11
1998
- msgid "User Meta"
1999
- msgstr "Méta-information de l'utilisateur"
2000
-
2001
- #: ../modules/email-customizer/email-customizer.php:21
2002
- msgid "Site Url"
2003
- msgstr "URL du site web"
2004
-
2005
- #: ../modules/email-customizer/email-customizer.php:22
2006
- msgid "Site Name"
2007
- msgstr "Nom du site web"
2008
-
2009
- #: ../modules/email-customizer/email-customizer.php:25
2010
- #: ../modules/user-listing/userlisting.php:126
2011
- msgid "User Id"
2012
- msgstr "ID de l'utilisateur"
2013
-
2014
- #: ../modules/email-customizer/email-customizer.php:32
2015
- msgid "Reply To"
2016
- msgstr "Réponse à"
2017
-
2018
- #: ../modules/email-customizer/email-customizer.php:35
2019
- msgid "Activation Key"
2020
- msgstr "Clé d'activation"
2021
-
2022
- #: ../modules/email-customizer/email-customizer.php:36
2023
- msgid "Activation Url"
2024
- msgstr "URL d'activation"
2025
-
2026
- #: ../modules/email-customizer/email-customizer.php:37
2027
- msgid "Activation Link"
2028
- msgstr "Lien d'activation"
2029
-
2030
- #: ../modules/email-customizer/user-email-customizer.php:64
2031
- msgid ""
2032
- "\n"
2033
- "<h3>Welcome to {{site_name}}!</h3>\n"
2034
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2035
- msgstr ""
2036
- "\n"
2037
- "<h3>Bienvenu(e) sur {{site_name}}!</h3>\n"
2038
- "<p>Votre nom d'utilisateur est:{{username}} et votre mot de passe:{{password}}</p>\n"
2039
-
2040
- #: ../modules/email-customizer/user-email-customizer.php:85
2041
- msgid "Default Registration"
2042
- msgstr "Inscription par défaut"
2043
-
2044
- #: ../modules/email-customizer/user-email-customizer.php:91
2045
- msgid ""
2046
- "\n"
2047
- "<p>To activate your user, please click the following link:<br/>\n"
2048
- "{{{activation_link}}}</p>\n"
2049
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
2050
- msgstr ""
2051
- "\n"
2052
- "<p>Pour activer votre compte, merci de cliquer sur le lien suivant:<br/>\n"
2053
- "{{{activation_link}}}</p>\n"
2054
- "<p>Une fois l'activation réalisée, vous recevrez une autre e-mail avec vos identifiants</p>\n"
2055
-
2056
- #: ../modules/email-customizer/user-email-customizer.php:103
2057
- msgid "[{{site_name}}] Activate {{username}}"
2058
- msgstr "[{{site_name}}] Activer {{username}}"
2059
-
2060
- #: ../modules/email-customizer/user-email-customizer.php:114
2061
- msgid "Registration with Email Confirmation"
2062
- msgstr "Inscription avec confirmation de l'adresse de messagerie"
2063
-
2064
- #: ../modules/email-customizer/user-email-customizer.php:120
2065
- msgid ""
2066
- "\n"
2067
- "<h3>Welcome to {{site_name}}!</h3>\n"
2068
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2069
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2070
- msgstr ""
2071
- "\n"
2072
- "<h3>Bienvenu(e) sur {{site_name}}!</h3>\n"
2073
- "<p>Votre nom d'utilisateur est:{{username}} et votre mot de passe:{{password}}</p>\n"
2074
- "<p>Avant que vous ne puissiez accéder à votre compte, un administrateur doit d'abord l'approuver. Vous serez informé par e-mail.</p>\n"
2075
-
2076
- #: ../modules/email-customizer/user-email-customizer.php:132
2077
- msgid "A new account has been created for you on {{site_name}}"
2078
- msgstr "Un nouveau compte a été créé pour vous sur {{site_name}}"
2079
-
2080
- #: ../modules/email-customizer/user-email-customizer.php:148
2081
- msgid ""
2082
- "\n"
2083
- "<h3>Good News!</h3>\n"
2084
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2085
- msgstr ""
2086
- "\n"
2087
- "<h3>Bonne nouvelle!</h3>\n"
2088
- "<p>Un administrateur vient juste d'approuver votre compte {{username}} sur {{site_name}}.</p>\n"
2089
-
2090
- #: ../modules/email-customizer/user-email-customizer.php:159
2091
- msgid "Your account on {{site_name}} has been approved!"
2092
- msgstr "Votre compte sur {{site_name}} a été approuvé!"
2093
-
2094
- #: ../modules/email-customizer/user-email-customizer.php:170
2095
- msgid "User Approval Notification"
2096
- msgstr "Notification lors de l'approbation d'un utilisateur"
2097
-
2098
- #: ../modules/email-customizer/user-email-customizer.php:175
2099
- msgid ""
2100
- "\n"
2101
- "<h3>Hello,</h3>\n"
2102
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2103
- msgstr ""
2104
- "\n"
2105
- "<h3>Bonjour,</h3>\n"
2106
- "<p>Un administrateur vient malheureusement de refuser votre compte: {{username}} sur {{site_name}}.</p>\n"
2107
-
2108
- #: ../modules/email-customizer/user-email-customizer.php:187
2109
- msgid "Your account on {{site_name}} has been unapproved!"
2110
- msgstr "Votre compte sur {{site_name}} a été refusé!"
2111
-
2112
- #: ../modules/email-customizer/user-email-customizer.php:198
2113
- msgid "Unapproved User Notification"
2114
- msgstr "Notification lors du refus d'un utilisateur"
2115
-
2116
- #: ../modules/multiple-forms/edit-profile-forms.php:11
2117
- #: ../modules/multiple-forms/edit-profile-forms.php:12
2118
- msgid "Edit-profile Form"
2119
- msgstr "Formulaire de modification de profile"
2120
-
2121
- #: ../modules/multiple-forms/edit-profile-forms.php:13
2122
- #: ../modules/multiple-forms/register-forms.php:13
2123
- #: ../modules/user-listing/userlisting.php:13
2124
- msgid "Add New"
2125
- msgstr "Ajouter un nouveau"
2126
-
2127
- #: ../modules/multiple-forms/edit-profile-forms.php:14
2128
- msgid "Add new Edit-profile Form"
2129
- msgstr "Ajouter un nouveau formulaire de modification de profile"
2130
-
2131
- #: ../modules/multiple-forms/edit-profile-forms.php:15
2132
- msgid "Edit the Edit-profile Forms"
2133
- msgstr "Modifier les formulaires de modification de profile"
2134
-
2135
- #: ../modules/multiple-forms/edit-profile-forms.php:16
2136
- msgid "New Edit-profile Form"
2137
- msgstr "Nouveau formulaire de modification de profile"
2138
-
2139
- #: ../modules/multiple-forms/edit-profile-forms.php:17
2140
- #: ../modules/multiple-forms/edit-profile-forms.php:23
2141
- msgid "Edit-profile Forms"
2142
- msgstr "Formulaires de modification de profile"
2143
-
2144
- #: ../modules/multiple-forms/edit-profile-forms.php:18
2145
- msgid "View the Edit-profile Form"
2146
- msgstr "Voir le formulaire de modification de profile"
2147
-
2148
- #: ../modules/multiple-forms/edit-profile-forms.php:19
2149
- msgid "Search the Edit-profile Forms"
2150
- msgstr "Rechercher dans les formulaires de modification de profile"
2151
-
2152
- #: ../modules/multiple-forms/edit-profile-forms.php:20
2153
- msgid "No Edit-profile Form found"
2154
- msgstr "Aucun formulaire de modification de profile trouvé"
2155
-
2156
- #: ../modules/multiple-forms/edit-profile-forms.php:21
2157
- msgid "No Edit-profile Forms found in trash"
2158
- msgstr "Aucun formulaire de modification de profile trouvé dans la corbeille"
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
-
2196
- #: ../modules/multiple-forms/edit-profile-forms.php:206
2197
- #: ../modules/multiple-forms/register-forms.php:230
2198
- msgid "Whether to redirect the user to a specific page or not"
2199
- msgstr "Si l'utilisateur doit être redirigé vers une page spécifique ou pas"
2200
-
2201
- #: ../modules/multiple-forms/edit-profile-forms.php:207
2202
- #: ../modules/multiple-forms/register-forms.php:231
2203
- msgid "Display Messages"
2204
- msgstr "Afficher les messages"
2205
-
2206
- #: ../modules/multiple-forms/edit-profile-forms.php:207
2207
- #: ../modules/multiple-forms/register-forms.php:231
2208
- msgid "Allowed time to display any success messages (in seconds)"
2209
- msgstr "Temps autorisé pour afficher tout message de succès (en secondes)"
2210
-
2211
- #: ../modules/multiple-forms/edit-profile-forms.php:208
2212
- 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"
2213
- msgstr "Spécifiez l'URL de la page où les utilisateurs seront redirigés lorsqu'ils mettent à jour leur profile en utilisant ce formulaire<br/>Utilisez le format suivant: http://www.monsite.com"
2214
-
2215
- #: ../modules/multiple-forms/edit-profile-forms.php:215
2216
- msgid "After Profile Update..."
2217
- msgstr "Après une mise à jour de profile..."
2218
-
2219
- #: ../modules/multiple-forms/edit-profile-forms.php:239
2220
- #: ../modules/multiple-forms/register-forms.php:260
2221
- msgid "Add New Field to the List"
2222
- msgstr "Ajouter un nouveau champ à la liste"
2223
-
2224
- #: ../modules/multiple-forms/edit-profile-forms.php:243
2225
- #: ../modules/multiple-forms/register-forms.php:264
2226
- msgid "Choose one of the supported fields you manage <a href=\""
2227
- msgstr "Choisissez l'un des champs maintenus que vous gérez <a href=\""
2228
-
2229
- #: ../modules/multiple-forms/multiple-forms.php:407
2230
- msgid "<pre>Title (Type)</pre>"
2231
- msgstr "<pre>Titre (Type)</pre>"
2232
-
2233
- #: ../modules/multiple-forms/multiple-forms.php:233
2234
- msgid "You need to specify the title of the form before creating it"
2235
- msgstr "Vous devez spécifier le titre du formulaire avant de le créer"
2236
-
2237
- #: ../modules/multiple-forms/register-forms.php:11
2238
- #: ../modules/multiple-forms/register-forms.php:12
2239
- msgid "Registration Form"
2240
- msgstr "Formulaire d'inscription"
2241
-
2242
- #: ../modules/multiple-forms/register-forms.php:14
2243
- msgid "Add new Registration Form"
2244
- msgstr "Ajouter un nouveau formulaire d'inscription"
2245
-
2246
- #: ../modules/multiple-forms/register-forms.php:15
2247
- msgid "Edit the Registration Forms"
2248
- msgstr "Modifier les formulaires d'inscription"
2249
-
2250
- #: ../modules/multiple-forms/register-forms.php:16
2251
- msgid "New Registration Form"
2252
- msgstr "Nouveau formulaire d'inscription"
2253
-
2254
- #: ../modules/multiple-forms/register-forms.php:17
2255
- #: ../modules/multiple-forms/register-forms.php:23
2256
- msgid "Registration Forms"
2257
- msgstr "Formulaires d'inscription"
2258
-
2259
- #: ../modules/multiple-forms/register-forms.php:18
2260
- msgid "View the Registration Form"
2261
- msgstr "Voir le formulaire d'inscription"
2262
-
2263
- #: ../modules/multiple-forms/register-forms.php:19
2264
- msgid "Search the Registration Forms"
2265
- msgstr "Rechercher dans les formulaires d'inscription"
2266
-
2267
- #: ../modules/multiple-forms/register-forms.php:20
2268
- msgid "No Registration Form found"
2269
- msgstr "Aucun formulaire d'inscription trouvé"
2270
-
2271
- #: ../modules/multiple-forms/register-forms.php:21
2272
- msgid "No Registration Forms found in trash"
2273
- msgstr "Aucun formulaire d'inscription trouvé dans la corbeille"
2274
-
2275
- #: ../modules/multiple-forms/register-forms.php:219
2276
- msgid "Default Role"
2277
- msgstr "Rôle par défaut"
2278
-
2279
- #: ../modules/multiple-forms/register-forms.php:228
2280
- msgid "Set Role"
2281
- msgstr "Fixer le rôle"
2282
-
2283
- #: ../modules/multiple-forms/register-forms.php:228
2284
- 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"
2285
- msgstr "Choisissez quel rôle aura un utilisateur après qu'il/elle se soit inscrit<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera celle du rôle défini dans les paramètres de WordPress"
2286
-
2287
- #: ../modules/multiple-forms/register-forms.php:229
2288
- msgid "Automatically Log In"
2289
- msgstr "Se connecter automatiquement"
2290
-
2291
- #: ../modules/multiple-forms/register-forms.php:229
2292
- 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"
2293
- msgstr "Si un utilisateur nouvellement inscrit sera connecté automatiquement ou pas<br/>Ne fonctionne que sur les sites ayant un nom de domaine unique et ayant désactivé les paramètres \"Approbation Admin\" et \"Confirmation de l'adresse de messagerie\"<br/>ATTENTION: La mise en cache du formulaire d'inscription empêchera la connexion automatique de fonctionner"
2294
-
2295
- #: ../modules/multiple-forms/register-forms.php:232
2296
- 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"
2297
- msgstr "Spécifiez l'URL de la page vers laquelle les utilisateurs seront redirigés une fois inscris via ce formulaire<br/>Utilisez le format suivant: http://www.monsite.com"
2298
-
2299
- #: ../modules/multiple-forms/register-forms.php:238
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
-
2311
- #: ../modules/user-listing/userlisting.php:14
2312
- msgid "Add new User Listing"
2313
- msgstr "Ajouter un nouveau listing d'utilisateurs"
2314
-
2315
- #: ../modules/user-listing/userlisting.php:15
2316
- msgid "Edit the User Listing"
2317
- msgstr "Modifier le listing d'utilisateurs"
2318
-
2319
- #: ../modules/user-listing/userlisting.php:16
2320
- msgid "New User Listing"
2321
- msgstr "Nouveau listing d'utilisateurs"
2322
-
2323
- #: ../modules/user-listing/userlisting.php:18
2324
- msgid "View the User Listing"
2325
- msgstr "Voir le listing d'utilisateurs"
2326
-
2327
- #: ../modules/user-listing/userlisting.php:19
2328
- msgid "Search the User Listing"
2329
- msgstr "Rechercher des listings d'utilisateurs"
2330
-
2331
- #: ../modules/user-listing/userlisting.php:20
2332
- msgid "No User Listing found"
2333
- msgstr "Aucun listing d'utilisateurs trouvé"
2334
-
2335
- #: ../modules/user-listing/userlisting.php:21
2336
- msgid "No User Listing found in trash"
2337
- msgstr "Aucun listing d'utilisateur trouvé dans la corbeille"
2338
-
2339
- #: ../modules/user-listing/userlisting.php:97
2340
- msgid "Display name as"
2341
- msgstr "Afficher le nom comme"
2342
-
2343
- #: ../modules/user-listing/userlisting.php:110
2344
- msgid "Url"
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
-
2357
- #: ../modules/user-listing/userlisting.php:123
2358
- msgid "More Info"
2359
- msgstr "Plus d'infos"
2360
-
2361
- #: ../modules/user-listing/userlisting.php:124
2362
- msgid "More Info Url"
2363
- msgstr "URL vers plus d'infos"
2364
-
2365
- #: ../modules/user-listing/userlisting.php:125
2366
- msgid "Avatar or Gravatar"
2367
- msgstr "Avatar ou Gravatar"
2368
-
2369
- #: ../modules/user-listing/userlisting.php:153
2370
- msgid "Meta Variables"
2371
- msgstr "Méta-variables"
2372
-
2373
- #: ../modules/user-listing/userlisting.php:159
2374
- msgid "Sort Variables"
2375
- msgstr "Trier les variables"
2376
-
2377
- #: ../modules/user-listing/userlisting.php:163
2378
- #: ../modules/user-listing/userlisting.php:190
2379
- msgid "Extra Functions"
2380
- msgstr "Fonctions supplémentaires"
2381
-
2382
- #: ../modules/user-listing/userlisting.php:165
2383
- msgid "Pagination"
2384
- msgstr "Pagination"
2385
-
2386
- #: ../modules/user-listing/userlisting.php:166
2387
- msgid "Search all Fields"
2388
- msgstr "Rechercher parmi tous les champs"
2389
-
2390
- #: ../modules/user-listing/userlisting.php:192
2391
- msgid "Go Back Link"
2392
- msgstr "Lien vers la page précédente"
2393
-
2394
- #: ../modules/user-listing/userlisting.php:210
2395
- msgid "All-userlisting Template"
2396
- msgstr "Modèle de tous les listing d'utilisateurs"
2397
-
2398
- #: ../modules/user-listing/userlisting.php:213
2399
- msgid "Single-userlisting Template"
2400
- msgstr "Modèle d'un seul listing d'utilisateurs"
2401
-
2402
- #: ../modules/user-listing/userlisting.php:330
2403
- msgid "You do not have permission to view this user list"
2404
- msgstr "Vous n'avez pas la permission de voir cette liste d'utilisateurs"
2405
-
2406
- #: ../modules/user-listing/userlisting.php:343
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 "&laquo;&laquo; First"
2465
- msgstr "&laquo;&laquo; Premier"
2466
-
2467
- #: ../modules/user-listing/userlisting.php:838
2468
- msgid "&laquo; Prev"
2469
- msgstr "&laquo; Précédent"
2470
-
2471
- #: ../modules/user-listing/userlisting.php:839
2472
- msgid "Next &raquo; "
2473
- msgstr "Suivant &raquo; "
2474
-
2475
- #: ../modules/user-listing/userlisting.php:840
2476
- msgid "Last &raquo;&raquo;"
2477
- msgstr "Dernier &raquo;&raquo;"
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é!"
1
+ # Translation of Profile Builder in French (France)
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"
9
+ "Plural-Forms: nplurals=2; plural=n > 1;\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>"
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&#37; 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&#37; 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 "...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
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 "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."
121
+ msgstr ""
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
+
143
+ #: ../admin/admin-bar.php:10
144
+ msgid "Show/Hide the Admin Bar on the Front-End"
145
+ msgstr "Afficher/masquer la barre Admin sur l'interface cliente"
146
+
147
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
148
+ msgid "Admin Bar Settings"
149
+ msgstr "Paramètres de la barre Admin"
150
+
151
+ #: ../admin/admin-bar.php:57
152
+ msgid "User-Role"
153
+ msgstr "Rôles utilisateurs"
154
+
155
+ #: ../admin/admin-bar.php:58
156
+ msgid "Visibility"
157
+ msgstr "Visibilité"
158
+
159
+ #: ../admin/admin-bar.php:73
160
+ msgid "Default"
161
+ msgstr "Par défaut"
162
+
163
+ #: ../admin/admin-bar.php:74
164
+ msgid "Show"
165
+ msgstr "Afficher"
166
+
167
+ #: ../admin/admin-bar.php:75
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"
176
+ msgstr "Enregistrer les modifications"
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 "La connexion se fera avec votre adresse de messagerie. Ce champ n'apparaîtra PAS sur l'interface cliente! ( vous pouvez changer ces paramètres dans l'onglet \"%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 "Paramètres Généraux"
186
+
187
+ #: ../admin/admin-functions.php:106
188
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of "
189
+ msgstr "<strong>ERREUR</strong>: Le mot de passe doit avoir une longueur minimale de "
190
+
191
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
192
+ msgid "Very weak"
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
+
210
+ #: ../admin/admin-functions.php:123
211
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
212
+ msgstr "<strong>ERREUR</strong>: Le mot de passe doit avoir une longueur minimale de "
213
+
214
+ #: ../admin/admin-functions.php:162
215
+ msgid "Add Field"
216
+ msgstr "Ajouter un Champ"
217
+
218
+ #: ../admin/admin-functions.php:164
219
+ msgid "Save Settings"
220
+ msgstr "Enregistrer les Paramètres"
221
+
222
+ #: ../admin/basic-info.php:10
223
+ msgid "Basic Information"
224
+ msgstr "Informations de base"
225
+
226
+ #: ../admin/basic-info.php:29
227
+ msgid "Version %s"
228
+ msgstr "Version %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 "Le meilleur moyen d'ajouter une inscription via l'interface cliente, de modifier un profil et des formulaires de connexion."
237
+
238
+ #: ../admin/basic-info.php:33
239
+ msgid "For Modern User Interaction"
240
+ msgstr "Pour une Interaction Utilisateur Moderne"
241
+
242
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
243
+ msgid "Login"
244
+ msgstr "Identification"
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 "Une identification sans friction via le shortcode <strong class=\"nowrap\">[wppb-login]</strong> ou un widget."
249
+
250
+ #: ../admin/basic-info.php:40
251
+ msgid "Registration"
252
+ msgstr "Inscription"
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 "De jolis formulaires d'inscription totalement personnalisable en utilisant le shortcode <strong class=\"nowrap\">[wppb-register]</strong>."
257
+
258
+ #: ../admin/basic-info.php:44
259
+ msgid "Edit Profile"
260
+ msgstr "Modifier le 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 "Des formulaires simples de modification de profil en utilisant le shortcode <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
265
+
266
+ #: ../admin/basic-info.php:51
267
+ msgid "Extra Features"
268
+ msgstr "Fonctionnalités Supplémentaires"
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 "Des fonctionnalités qui vous donnent plus de contrôle sur vos utilisateurs, une sécurité renforcée et qui vous aident à lutter contre le spam d'inscription d'utilisateurs."
273
+
274
+ #: ../admin/basic-info.php:53
275
+ msgid "Enable extra features"
276
+ msgstr "Activer les fonctionnalités supplémentaires"
277
+
278
+ #: ../admin/basic-info.php:57
279
+ msgid "Recover Password"
280
+ msgstr "Récupérer le Mot De Passe"
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 "Autoriser les utilisateurs à récupérer leur mot de passe sur l'interface cliente en utilisant le shortcode [wppb-recover-password]."
285
+
286
+ #: ../admin/basic-info.php:61
287
+ msgid "Admin Approval (*)"
288
+ msgstr "Approbation par l'Admin"
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 "Vous décidez qui est une utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress."
293
+
294
+ #: ../admin/basic-info.php:65
295
+ msgid "Email Confirmation"
296
+ msgstr "Confirmation de l'adresse de messagerie"
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 "S'assurer que les utilisateurs s'incrivent avec des adresses de messagerie authentiques. Lors de l'inscription, un e-mail sera envoyé aux utilisateurs afin de confirmer leur adresse de messagerie."
301
+
302
+ #: ../admin/basic-info.php:69
303
+ msgid "Minimum Password Length and Strength Meter"
304
+ msgstr "Longueur Minimale du Mot De Masse et Métrique de Sûreté"
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 "Eliminer les mots de passe trop faibles en imposant une longueur minimale et un niveau de sûreté minimum."
309
+
310
+ #: ../admin/basic-info.php:73
311
+ msgid "Login with Email or Username"
312
+ msgstr "Se connecter avec une adresse de messagerie ou avec le nom d'utilisateur"
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 "Autoriser les utilisateurs à se connecter avec leur adresse de messagerie ou leur nom d'utilisateur lorsqu'ils accèdent à votre site."
317
+
318
+ #: ../admin/basic-info.php:87
319
+ msgid "Customize Your Forms The Way You Want (*)"
320
+ msgstr "Personnaliser Vos Formulaires Comme Vous Le Souhaitez (*)"
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 "Avec les champs supplémentaires de profil vous pouvez créer le formulaire exact d'inscription dont votre projet a besoin."
325
+
326
+ #: ../admin/basic-info.php:90
327
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
328
+ msgstr "Les champs supplémentaires de profil sont disponibles dans les version Hobbyist ou PRO."
329
+
330
+ #: ../admin/basic-info.php:92
331
+ msgid "Get started with extra fields"
332
+ msgstr "Bien commencer avec les champs supplémentaires"
333
+
334
+ #: ../admin/basic-info.php:95
335
+ msgid "Avatar Upload"
336
+ msgstr "Téléversement d'avatar"
337
+
338
+ #: ../admin/basic-info.php:96
339
+ msgid "Generic Uploads"
340
+ msgstr "Téléversements Génériques"
341
+
342
+ #: ../admin/basic-info.php:97
343
+ msgid "Agree To Terms Checkbox"
344
+ msgstr "Acceptation des conditions par une case à cocher"
345
+
346
+ #: ../admin/basic-info.php:98
347
+ msgid "Datepicker"
348
+ msgstr "Outil de sélection de date"
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 "Sélection du Pays"
357
+
358
+ #: ../admin/basic-info.php:101
359
+ msgid "Timezone Select"
360
+ msgstr "Sélection du Fuseau Horaire"
361
+
362
+ #: ../admin/basic-info.php:102
363
+ msgid "Input / Hidden Input"
364
+ msgstr "Entrée visible / Entrée cachée"
365
+
366
+ #: ../admin/basic-info.php:103
367
+ msgid "Checkbox"
368
+ msgstr "Case à cocher"
369
+
370
+ #: ../admin/basic-info.php:104
371
+ msgid "Select"
372
+ msgstr "Liste déroulante"
373
+
374
+ #: ../admin/basic-info.php:105
375
+ msgid "Radio Buttons"
376
+ msgstr "Boutons Radio"
377
+
378
+ #: ../admin/basic-info.php:106
379
+ msgid "Textarea"
380
+ msgstr "Zone de Texte"
381
+
382
+ #: ../admin/basic-info.php:115
383
+ msgid "Powerful Modules (**)"
384
+ msgstr "Des Modules Puissants (**)"
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 "Tout ce dont vous aurez besoin pour gérer vos utilisateurs est probablement déjà disponible dans les Modules Pro."
389
+
390
+ #: ../admin/basic-info.php:118
391
+ msgid "Enable your modules"
392
+ msgstr "Activer vos modules"
393
+
394
+ #: ../admin/basic-info.php:121
395
+ msgid "Find out more about PRO Modules"
396
+ msgstr "Découvrez les Modules 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 "Listing d'utilisateurs"
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 "Facile pour modifier les modèles permettant de lister les utilisateurs de votre site web tout comme créer des formulaires pour un seul utilisateur. Basé sur des shortcodes, offrant de nombreuses options pour personnaliser vos listings."
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 "Pour créer une page contenant les utilisateurs inscrit sur ce site/blog, insérez le shortcode suivant dans la page de votre choix: <strong class=\"nowrap\">[wppb-list-users]</strong>."
413
+
414
+ #: ../admin/basic-info.php:134
415
+ msgid "Email Customizer"
416
+ msgstr "Outil de personnalisation d'e-mails"
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 "Personnalisez tous les e-mails envoyés à vos utilisateurs ou administrateurs. Au moment de l'inscription, de la confirmation de l'adresse de messagerie, de l'approbation / rejet par les administrateurs."
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 "Redirections personnalisées"
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 "Laissez vos utilisateurs hors du tableau de bord WordPress, redirigez-les sur la page d'acceuil après qu'ils se sont identifiés ou inscrits, tout en quelques quelques cliques."
431
+
432
+ #: ../admin/basic-info.php:144 ../modules/modules.php:97
433
+ msgid "Multiple Registration Forms"
434
+ msgstr "Formulaires Multiples d'Inscription"
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 "Mettez en place des formulaires multiples d'inscription avec différents champs suivant les rôles utilisateur. Capturez des informations variées à partir de divers types d'utilisateurs."
439
+
440
+ #: ../admin/basic-info.php:148 ../modules/modules.php:104
441
+ msgid "Multiple Edit-profile Forms"
442
+ msgstr "Formulaires Multiples de Modification de Profil"
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 "Autorisez différents rôles utilisateur à modifier les informations qui leur sont spécifiques. Mettez en place des forumlaires multiples de modification de profil avec des champs différents suivant les rôles utilisateurs."
447
+
448
+ #: ../admin/basic-info.php:161
449
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
450
+ msgstr "* disponible uniquement dans les versions %1$sHobbyist et Pro %2$s."
451
+
452
+ #: ../admin/basic-info.php:162
453
+ msgid "** only available in the %1$sPro version%2$s."
454
+ msgstr "** disponible uniquement dans la version %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 "Charge le fichier CSS de Profile Builder sur l'interface cliente:"
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 "Oui"
467
+
468
+ #: ../admin/general-settings.php:47
469
+ msgid "You can find the default file here: %1$s"
470
+ msgstr "Vous pouvez trouver le fichier par défaut ici: %1$s"
471
+
472
+ #: ../admin/general-settings.php:56
473
+ msgid "\"Email Confirmation\" Activated:"
474
+ msgstr "\"Confirmation par e-mail\" Activée:"
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 "Non"
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 "Sur les installations pour un seu site, ceci fonctionne uniquement avec les formulaires d'interface cliente. Il est recommandé de redirigé l'inscription WP par défaut vers celle de Profile Builder en utilisant le module \"Redirections Personnalisées\"."
485
+
486
+ #: ../admin/general-settings.php:65
487
+ msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
488
+ msgstr "La fonctionnalité \"Confirmation de l'adresse de messagerie\" est active (par défaut) sur les installations 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 "Vous pouvez trouver une liste d'adresses de messagerie non-confirmées sous %1$sUtilisateurs > Tous les Utilisateurs > Confirmation de l'adresse de messagerie %2$s."
493
+
494
+ #: ../admin/general-settings.php:79
495
+ msgid "\"Email Confirmation\" Landing Page:"
496
+ msgstr "Page d'arrivée après \"Confirmation de l'adresse de messagerie\":"
497
+
498
+ #: ../admin/general-settings.php:84
499
+ msgid "Existing Pages"
500
+ msgstr "Pages Existantes"
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 "Spécifie la page vers laquelle les utilisateurs seront redirigés après avoir confirmé leur adresse de messagerie. Cette page peut être différente suivant la ou les page(s) d'inscription et peut être changée à n'importe quel moment. Si aucune n'est sélectionnée, une page de confirmation simple sera affichée à l'utilisateur."
505
+
506
+ #: ../admin/general-settings.php:110
507
+ msgid "\"Admin Approval\" Activated:"
508
+ msgstr "\"Approbation par l'Admin\" Activée:"
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 "Vous pouvez trouver une liste d'utilisateurs à %1$sUtilisateurs > Tous les Utilisateurs > Approbation par l'Admin %2$s."
513
+
514
+ #: ../admin/general-settings.php:130
515
+ msgid "\"Admin Approval\" Feature:"
516
+ msgstr "Fonctionnalité \"Approbation par l'Admin\":"
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 "Vous décidez qui est une utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress. Activer l'approbation Admin en évoluant vers les versions %1$sHobbyist ou PRO %2$s."
521
+
522
+ #: ../admin/general-settings.php:140
523
+ msgid "Allow Users to Log in With:"
524
+ msgstr "Permet aux utilisateurs à se connecter avec:"
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 "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
+
543
+ #: ../admin/general-settings.php:152
544
+ msgid "Minimum Password Length:"
545
+ msgstr "Longueur Minimale du Mot De Passe:"
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 "Entrez le nombre minimum de caractères que le mot de passe doit avoir. Laissez ce champ vide si vous ne voulez aucune limite minimale"
550
+
551
+ #: ../admin/general-settings.php:164
552
+ msgid "Minimum Password Strength:"
553
+ msgstr "Sûreté Minimale du Mot De Passe:"
554
+
555
+ #: ../admin/general-settings.php:168
556
+ msgid "Disabled"
557
+ msgstr "Désactivé"
558
+
559
+ #: ../admin/manage-fields.php:12
560
+ msgid "Manage Fields"
561
+ msgstr "Gérez les Champs"
562
+
563
+ #: ../admin/manage-fields.php:13
564
+ msgid "Manage Default and Extra Fields"
565
+ msgstr "Gérez les Champs Par Défaut et les Champs Supplémentaires"
566
+
567
+ #: ../admin/manage-fields.php:74
568
+ msgid "Field Title"
569
+ msgstr "Titre du Champ"
570
+
571
+ #: ../admin/manage-fields.php:74
572
+ msgid "Title of the field"
573
+ msgstr "Titre du champ"
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 "Champ"
580
+
581
+ #: ../admin/manage-fields.php:76
582
+ msgid "Meta-name"
583
+ msgstr "Meta-nom"
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 "Utilisez ceci en lien avec les fonctions WordPress pour afficher la valeur dans la page de votre choix<br/>Automatiquement rempli mais dans certains cas modifiable (dans ce cas il doit être unique)<br/>Toute modification pourrait prendre du temps s'il le compteur utilisateur est très grand"
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 unique identifiant, généré automatiquement, pour ce champ particulier<br/>Vous pouvez utilisater ceci en lien avec les filtres pour cibler cet élément si besoin<br/>Ne peut être modifié"
600
+
601
+ #: ../admin/manage-fields.php:78
602
+ msgid "Description"
603
+ msgstr "Description"
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 "Entrez une description (détaillée) de l'option que les utilisateurs finaux pourront lire<br/>Optionnel"
608
+
609
+ #: ../admin/manage-fields.php:79
610
+ msgid "Row Count"
611
+ msgstr "Nombre de Lignes"
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 "Spécifiez les nombre de lignes pour un champ 'Zone de Texte'<br/>Si vous ne spécifiez pas de champ, la valeur par défaut sera de 5"
616
+
617
+ #: ../admin/manage-fields.php:80
618
+ msgid "Allowed Image Extensions"
619
+ msgstr "Extensions Autorisées des Images"
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 "Spécifiez les extension(s) autorisées au téléversement<br/>Exemple: .ext1,.ext2,.ext3<br/>Si aucune extension n'est spécifiée, toutes les extensions d'image seront autorisées par défaut (.*)"
624
+
625
+ #: ../admin/manage-fields.php:81
626
+ msgid "Allowed Upload Extensions"
627
+ msgstr "Extensions Autorisées au Téléversement"
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 "Spécifiez les extension(s) autorisées au téléversement<br/>Exemple: .ext1,.ext2,.ext3<br/>Si aucune extension n'est spécifiée, toutes les extensions seront autorisées par défaut (.*)"
632
+
633
+ #: ../admin/manage-fields.php:82
634
+ msgid "Avatar Size"
635
+ msgstr "Taille de l'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 "Entrez une valeur (entre 20 et 200) pour la taille de l'Avatar<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera de 100"
640
+
641
+ #: ../admin/manage-fields.php:83
642
+ msgid "Date-format"
643
+ msgstr "Format de la date"
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 "Spécifiez le format de la date lorsque vous utilisez l'outil de sélection de dates<br/>Options valides: mm/jj/aa, mm/aa/jj, jj/aa/mm, jj/mm/aa, aa/jj/mm, aa/mm/jj<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera mm/jj/aa"
648
+
649
+ #: ../admin/manage-fields.php:84
650
+ msgid "Terms of Agreement"
651
+ msgstr "Conditions Générales"
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: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
655
+ msgstr "Entrez une description détaillée des conditions générales que l'utilisateur pourra lire.<br/>Vous pouvez utiliser des liens via la syntaxe standard HTML: &lt;a href=\"url_personnalisee\"&gt;texte_personnalise&lt;/a&gt;"
656
+
657
+ #: ../admin/manage-fields.php:85
658
+ msgid "Options"
659
+ msgstr "Options"
660
+
661
+ #: ../admin/manage-fields.php:86
662
+ msgid "Labels"
663
+ msgstr "Labels"
664
+
665
+ #: ../admin/manage-fields.php:86
666
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
667
+ msgstr "Entrez une liste de labels séparés par une virgule<br/>Visible par l'utilisateur"
668
+
669
+ #: ../admin/manage-fields.php:87
670
+ msgid "Public Key"
671
+ msgstr "Clé Publique"
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 "La clé publique de 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 "Clé Privée"
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 "La clé privée de 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 "Valeur Par Défaut"
688
+
689
+ #: ../admin/manage-fields.php:89
690
+ msgid "Default value of the field"
691
+ msgstr "Valeur par défaut du champ"
692
+
693
+ #: ../admin/manage-fields.php:90
694
+ msgid "Default Option"
695
+ msgstr "Option Par Défaut"
696
+
697
+ #: ../admin/manage-fields.php:90
698
+ msgid "Specify the option which should be selected by default"
699
+ msgstr "Spécifiez l'option qui devrait être sélectionnée par défaut"
700
+
701
+ #: ../admin/manage-fields.php:91
702
+ msgid "Default Option(s)"
703
+ msgstr "Option(s) Par Défaut"
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 "Spécifiez l'option qui devrait être cochée par défaut<br/>S'il y a plusieurs valeurs, séparez-les par une ',' (virgule)"
708
+
709
+ #: ../admin/manage-fields.php:92
710
+ msgid "Default Content"
711
+ msgstr "Contenu Par Défaut"
712
+
713
+ #: ../admin/manage-fields.php:92
714
+ msgid "Default value of the textarea"
715
+ msgstr "Valeur par défaut de la zone de texte"
716
+
717
+ #: ../admin/manage-fields.php:93
718
+ msgid "Required"
719
+ msgstr "Obligatoire"
720
+
721
+ #: ../admin/manage-fields.php:93
722
+ msgid "Whether the field is required or not"
723
+ msgstr "Si le champ est obligatoire ou pas"
724
+
725
+ #: ../admin/manage-fields.php:94
726
+ msgid "Overwrite Existing"
727
+ msgstr "Ecraser l'existant"
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 "Sélectionner 'Oui' ajoutera le champ à la liste, mais écrasera n'importe quel autre champ dans la base de données qui ait le même méta-nom<br/>Utilisez ceci à vos risques et périls"
732
+
733
+ #: ../admin/manage-fields.php:100
734
+ msgid "Field Properties"
735
+ msgstr "Propriétés du Champ"
736
+
737
+ #: ../admin/manage-fields.php:113
738
+ msgid "Registration & Edit Profile"
739
+ msgstr "Inscription & Modification de Profil"
740
+
741
+ #: ../admin/manage-fields.php:132
742
+ msgid "Name"
743
+ msgstr "Nom"
744
+
745
+ #: ../admin/manage-fields.php:133
746
+ msgid "Usernames cannot be changed."
747
+ msgstr "Les noms d'utillisateur ne peuvent pas être modifiés."
748
+
749
+ #: ../admin/manage-fields.php:134
750
+ msgid "First Name"
751
+ msgstr "Prénom"
752
+
753
+ #: ../admin/manage-fields.php:135
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
+
761
+ #: ../admin/manage-fields.php:137
762
+ msgid "Display name publicly as"
763
+ msgstr "Nom publique"
764
+
765
+ #: ../admin/manage-fields.php:138
766
+ msgid "Contact Info"
767
+ msgstr "Informations 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 "Adresse de messagerie"
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 "Site web"
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 "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
+
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 "Partagez quelques informations biographiques pour compléter votre profile. Ceci peut être affiché publiquement."
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 "Mot de passe"
814
+
815
+ #: ../admin/manage-fields.php:151
816
+ msgid "Type your password."
817
+ msgstr "Tapez votre mot de passe."
818
+
819
+ #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
820
+ msgid "Repeat Password"
821
+ msgstr "Répétez votre mot de passe"
822
+
823
+ #: ../admin/manage-fields.php:152
824
+ msgid "Type your password again. "
825
+ msgstr "Re-tapez votre mot de passe."
826
+
827
+ #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
828
+ msgid "You must select a field\n"
829
+ msgstr "Vous devez sélectionner un champ\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 "Merci de choisir un champ différent, car celui-ci existe déjà dans votre formulaire (et il doit être unique)\n"
834
+
835
+ #: ../admin/manage-fields.php:329
836
+ msgid "The entered avatar size is not between 20 and 200\n"
837
+ msgstr "La taille de l'avatar n'est pas comprise entre 20 et 200\n"
838
+
839
+ #: ../admin/manage-fields.php:332
840
+ msgid "The entered avatar size is not numerical\n"
841
+ msgstr "La taille de l'avatar n'est pas une valeur numérique\n"
842
+
843
+ #: ../admin/manage-fields.php:340
844
+ msgid "The entered row number is not numerical\n"
845
+ msgstr "Le chiffre de la ligne n'est pas numérique\n"
846
+
847
+ #: ../admin/manage-fields.php:343
848
+ msgid "You must enter a value for the row number\n"
849
+ msgstr "Vous devez entrer une valeur pour le chiffre de la ligne\n"
850
+
851
+ #: ../admin/manage-fields.php:351
852
+ msgid "You must enter the public key\n"
853
+ msgstr "Vous devez entrer la clé publique\n"
854
+
855
+ #: ../admin/manage-fields.php:353
856
+ msgid "You must enter the private key\n"
857
+ msgstr "Vous devez entrer la clé privée\n"
858
+
859
+ #: ../admin/manage-fields.php:361
860
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
861
+ msgstr "La valeur entrée pour l'outil de sélection de date ne respecte pas le format de date\n"
862
+
863
+ #: ../admin/manage-fields.php:364
864
+ msgid "You must enter a value for the date-format\n"
865
+ msgstr "Vous devez entrer une valeur de formattage de date\n"
866
+
867
+ #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
868
+ #: ../admin/manage-fields.php:410
869
+ msgid "That meta-name is already in use\n"
870
+ msgstr "Le meta-nom est déjà utilisé\n"
871
+
872
+ #: ../admin/manage-fields.php:432
873
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
874
+ msgstr "Le(s) options(s) suivante(s) n'a(ont) pas coïncidé pas avec celles de la liste d'options: %s\n"
875
+
876
+ #: ../admin/manage-fields.php:436
877
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
878
+ msgstr "L'option suivante n'a pas coïncidé avec celles de la liste d'options: %s\n"
879
+
880
+ #: ../admin/manage-fields.php:451
881
+ msgid "That field is already added in this form\n"
882
+ msgstr "Ce champ a déjà été ajouté à ce formulaire\n"
883
+
884
+ #: ../admin/manage-fields.php:500
885
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
886
+ msgstr "<pre>Titre</pre><pre>Type</pre><pre>Meta-nom</pre><pre class=\"wppb-mb-head-required\">Obligatoire</pre>"
887
+
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"
895
+
896
+ #: ../admin/manage-fields.php:500
897
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
898
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
899
+ #: ../features/admin-approval/class-admin-approval.php:124
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
+
907
+ #: ../admin/manage-fields.php:515
908
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
909
+ msgstr "Utilisez ces shortcodes sur les pages où vous voulez que les formulaires s'affichent:"
910
+
911
+ #: ../admin/manage-fields.php:521
912
+ 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."
913
+ msgstr "Si vous êtes intéressé pour afficher différents champs dans les formulaires d'inscription et de modification de profile, merci d'utiliser l'extension Formulaires d'Inscriptions Multiples & de Modification de Profile."
914
+
915
+ #: ../admin/register-version.php:11
916
+ msgid "Register Your Version"
917
+ msgstr "Enregistrez Votre Version"
918
+
919
+ #: ../admin/register-version.php:11
920
+ msgid "Register Version"
921
+ msgstr "Enregistrez la Version"
922
+
923
+ #: ../admin/register-version.php:58
924
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
925
+ msgstr "Si vous enregistrez cette version de Profile Builder, vous recevrez des informations concernant des mises à jours, des correctifs et le support technique."
926
+
927
+ #: ../admin/register-version.php:60
928
+ msgid " Serial Number:"
929
+ msgstr "Numéro de Série:"
930
+
931
+ #: ../admin/register-version.php:65
932
+ msgid "The serial number was successfully validated!"
933
+ msgstr "Le numéro de série a bien été validé!"
934
+
935
+ #: ../admin/register-version.php:67
936
+ msgid "The serial number entered couldn't be validated!"
937
+ msgstr "Le numéro de série entré n'a pas pu être validé!"
938
+
939
+ #: ../admin/register-version.php:69
940
+ msgid "The serial number couldn't be validated because it expired!"
941
+ msgstr "Le numéro de série n'a pas pu être validé car il a expiré!"
942
+
943
+ #: ../admin/register-version.php:71
944
+ 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!"
945
+ msgstr "Le numéro de série n'a pas pu être validé car le processus a dépassé le délai. Ceci peut être dû à une panne du serveur. Merci de ré-essayer plus tard!"
946
+
947
+ #: ../admin/register-version.php:73
948
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
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
+
956
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
957
+ msgid "Edit this item"
958
+ msgstr "Modifier cet élément"
959
+
960
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
961
+ msgid "Delete this item"
962
+ msgstr "Supprimer cet élément"
963
+
964
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
965
+ msgid "Please enter a value for the required field "
966
+ msgstr "Merci d'entrer une valeur pour le champ obligatoire"
967
+
968
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
969
+ msgid "Select File"
970
+ msgstr "Sélectionner un fichier"
971
+
972
+ #: ../assets/lib/wck-api/fields/upload.php:31
973
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
974
+ msgid "Remove"
975
+ msgstr "Supprimer"
976
+
977
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
978
+ msgid "Syncronize WCK"
979
+ msgstr "Synchroniser WCK"
980
+
981
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
982
+ msgid "Syncronize WCK Translation"
983
+ msgstr "Synchroniser la traduction WCK"
984
+
985
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
986
+ msgid "You can add the information for the %s after you add a entry"
987
+ msgstr "Vous pouvez ajouter l'information pour le %s après avoir ajouté une entrée"
988
+
989
+ #: ../assets/lib/wck-api/fields/upload.php:48
990
+ msgid "Upload "
991
+ msgstr "Téléverser"
992
+
993
+ #: ../features/class-list-table.php:184
994
+ msgid "No items found."
995
+ msgstr "Aucun élément trouvé."
996
+
997
+ #: ../features/class-list-table.php:308
998
+ msgid "Bulk Actions"
999
+ msgstr "Actions Groupées"
1000
+
1001
+ #: ../features/class-list-table.php:318
1002
+ msgid "Apply"
1003
+ msgstr "Appliquer"
1004
+
1005
+ #: ../features/class-list-table.php:402
1006
+ msgid "Show all dates"
1007
+ msgstr "Afficher toutes les dates"
1008
+
1009
+ #: ../features/class-list-table.php:415
1010
+ msgid "%1$s %2$d"
1011
+ msgstr "%1$s %2$d"
1012
+
1013
+ #: ../features/class-list-table.php:431
1014
+ msgid "List View"
1015
+ msgstr "Vue par liste"
1016
+
1017
+ #: ../features/class-list-table.php:432
1018
+ msgid "Excerpt View"
1019
+ msgstr "Vue par extrait"
1020
+
1021
+ #: ../features/class-list-table.php:458
1022
+ msgid "%s pending"
1023
+ msgstr "%s en attente"
1024
+
1025
+ #: ../features/class-list-table.php:566
1026
+ msgid "%1$s of %2$s"
1027
+ msgstr "%1$s de %2$s"
1028
+
1029
+ #: ../features/class-list-table.php:713
1030
+ msgid "Select All"
1031
+ msgstr "Tout Sélectionner"
1032
+
1033
+ #: ../features/functions.php:193 ../features/functions.php:194
1034
+ msgid "Profile Builder"
1035
+ msgstr "Profile Builder"
1036
+
1037
+ #: ../features/functions.php:261
1038
+ msgid "The user-validation has failed - the avatar was not deleted!"
1039
+ msgstr "La validation de l'utilisateur a échoué - l'avatar n'a pas été supprimé!"
1040
+
1041
+ #: ../features/functions.php:272
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"
1052
+ msgstr "Approbation par l'Admin"
1053
+
1054
+ #: ../features/admin-approval/admin-approval.php:22
1055
+ #: ../features/email-confirmation/email-confirmation.php:58
1056
+ msgid "Do you want to"
1057
+ msgstr "Voulez-vous"
1058
+
1059
+ #: ../features/admin-approval/admin-approval.php:45
1060
+ msgid "Your session has expired! Please refresh the page and try again"
1061
+ msgstr "Votre session a expirée! Merci de rafraîchir la page et de ré-essayer"
1062
+
1063
+ #: ../features/admin-approval/admin-approval.php:56
1064
+ msgid "User successfully approved!"
1065
+ msgstr "L'utilisateur a bien été approuvé!"
1066
+
1067
+ #: ../features/admin-approval/admin-approval.php:64
1068
+ msgid "User successfully unapproved!"
1069
+ msgstr "L'utilisateur a bien été refusé!"
1070
+
1071
+ #: ../features/admin-approval/admin-approval.php:70
1072
+ msgid "User successfully deleted!"
1073
+ msgstr "L'utilisateur a bien été supprimé!"
1074
+
1075
+ #: ../features/admin-approval/admin-approval.php:75
1076
+ #: ../features/admin-approval/admin-approval.php:140
1077
+ #: ../features/email-confirmation/email-confirmation.php:122
1078
+ msgid "You either don't have permission for that action or there was an error!"
1079
+ msgstr "Soit vous n'avez pas la permission de réaliser cette action soit il y a eu une erreur!"
1080
+
1081
+ #: ../features/admin-approval/admin-approval.php:87
1082
+ msgid "Your session has expired! Please refresh the page and try again."
1083
+ msgstr "Votre session a expiré! Merci de rafraîchir la page et de ré-essayer."
1084
+
1085
+ #: ../features/admin-approval/admin-approval.php:107
1086
+ msgid "Users successfully approved!"
1087
+ msgstr "Les utilisateurs ont bien été approuvés!"
1088
+
1089
+ #: ../features/admin-approval/admin-approval.php:122
1090
+ msgid "Users successfully unapproved!"
1091
+ msgstr "Les utilisateurs ont bien été refusés!"
1092
+
1093
+ #: ../features/admin-approval/admin-approval.php:135
1094
+ msgid "Users successfully deleted!"
1095
+ msgstr "Les utilisateurs ont bien été supprimés!"
1096
+
1097
+ #: ../features/admin-approval/admin-approval.php:150
1098
+ msgid "Your account on %1$s has been approved!"
1099
+ msgstr "Votre compte sur %1$s a été approuvé!"
1100
+
1101
+ #: ../features/admin-approval/admin-approval.php:151
1102
+ #: ../features/admin-approval/admin-approval.php:154
1103
+ msgid "approved"
1104
+ msgstr "approuvé"
1105
+
1106
+ #: ../features/admin-approval/admin-approval.php:153
1107
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1108
+ msgstr "Un administrateur vient d'approuver votre compte sur %1$s (%2$s)."
1109
+
1110
+ #: ../features/admin-approval/admin-approval.php:157
1111
+ msgid "Your account on %1$s has been unapproved!"
1112
+ msgstr "Votre compte sur %1$s a été refusé!"
1113
+
1114
+ #: ../features/admin-approval/admin-approval.php:158
1115
+ #: ../features/admin-approval/admin-approval.php:161
1116
+ msgid "unapproved"
1117
+ msgstr "refusé"
1118
+
1119
+ #: ../features/admin-approval/admin-approval.php:160
1120
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1121
+ msgstr "Un administrateur vient de refuser votre compte sur %1$s (%2$s)."
1122
+
1123
+ #: ../features/admin-approval/admin-approval.php:177
1124
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1125
+ msgstr "<strong>ERREUR</strong>: Votre compte doit être confirmé par un administrateur avant que vous ne puissiez vous connecter."
1126
+
1127
+ #: ../features/admin-approval/admin-approval.php:189
1128
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1129
+ msgstr "Un administrateur doit approuver votre compte avant que vous ne puissiez utiliser la fonctionnalité \"Mot de passe perdu\"."
1130
+
1131
+ #: ../features/admin-approval/class-admin-approval.php:119
1132
+ msgid "View or Edit"
1133
+ msgstr "Voir ou Modifier"
1134
+
1135
+ #: ../features/admin-approval/class-admin-approval.php:124
1136
+ msgid "delete this user?"
1137
+ msgstr "supprimer cet utilisateur?"
1138
+
1139
+ #: ../features/admin-approval/class-admin-approval.php:127
1140
+ msgid "unapprove this user?"
1141
+ msgstr "refuser cet utilisateur?"
1142
+
1143
+ #: ../features/admin-approval/class-admin-approval.php:127
1144
+ #: ../features/admin-approval/class-admin-approval.php:234
1145
+ msgid "Unapprove"
1146
+ msgstr "Refuser"
1147
+
1148
+ #: ../features/admin-approval/class-admin-approval.php:129
1149
+ msgid "approve this user?"
1150
+ msgstr "approuver cet utilisateur?"
1151
+
1152
+ #: ../features/admin-approval/class-admin-approval.php:129
1153
+ #: ../features/admin-approval/class-admin-approval.php:233
1154
+ msgid "Approve"
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
+
1169
+ #: ../features/admin-approval/class-admin-approval.php:181
1170
+ #: ../modules/user-listing/userlisting.php:117
1171
+ msgid "Role"
1172
+ msgstr "Rôle"
1173
+
1174
+ #: ../features/admin-approval/class-admin-approval.php:182
1175
+ #: ../features/email-confirmation/class-email-confirmation.php:155
1176
+ msgid "Registered"
1177
+ msgstr "Inscrit"
1178
+
1179
+ #: ../features/admin-approval/class-admin-approval.php:183
1180
+ msgid "User-status"
1181
+ msgstr "Statut de l'utilisateur"
1182
+
1183
+ #: ../features/admin-approval/class-admin-approval.php:263
1184
+ msgid "Do you want to bulk approve the selected users?"
1185
+ msgstr "Voulez-vous approuver tous les utilisateurs sélectionnés?"
1186
+
1187
+ #: ../features/admin-approval/class-admin-approval.php:271
1188
+ msgid "Do you want to bulk unapprove the selected users?"
1189
+ msgstr "Voulez-vous refuser tous les utilisateurs sélectionnés?"
1190
+
1191
+ #: ../features/admin-approval/class-admin-approval.php:277
1192
+ msgid "Do you want to bulk delete the selected users?"
1193
+ msgstr "Voulez-vous supprimer tous les utilisateurs sélectionnés?"
1194
+
1195
+ #: ../features/admin-approval/class-admin-approval.php:285
1196
+ #: ../features/email-confirmation/class-email-confirmation.php:263
1197
+ msgid "Sorry, but you don't have permission to do that!"
1198
+ msgstr "Désolé, mais vous n'avez pas la permission de faire cela!"
1199
+
1200
+ #: ../features/admin-approval/class-admin-approval.php:318
1201
+ msgid "Approved"
1202
+ msgstr "Approuvé"
1203
+
1204
+ #: ../features/admin-approval/class-admin-approval.php:320
1205
+ msgid "Unapproved"
1206
+ msgstr "Refusé"
1207
+
1208
+ #: ../features/admin-approval/class-admin-approval.php:492
1209
+ #: ../features/email-confirmation/class-email-confirmation.php:448
1210
+ msgid "All Users"
1211
+ msgstr "Tous les Utilisateurs"
1212
+
1213
+ #: ../features/email-confirmation/class-email-confirmation.php:106
1214
+ msgid "delete this user from the _signups table?"
1215
+ msgstr "supprimer cet utilisateur de la table _signups ?"
1216
+
1217
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1218
+ msgid "confirm this email yourself?"
1219
+ msgstr "confirmer cette adresse de messagerie vous-même?"
1220
+
1221
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1222
+ #: ../features/email-confirmation/class-email-confirmation.php:203
1223
+ msgid "Confirm Email"
1224
+ msgstr "Confirmer l'adresse de messagerie"
1225
+
1226
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1227
+ msgid "resend the activation link?"
1228
+ msgstr "ré-envoyer le lien d'activation?"
1229
+
1230
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1231
+ #: ../features/email-confirmation/class-email-confirmation.php:204
1232
+ msgid "Resend Activation Email"
1233
+ msgstr "Ré-envoyer l'e-mail d'activation"
1234
+
1235
+ #: ../features/email-confirmation/class-email-confirmation.php:234
1236
+ msgid "%s couldn't be deleted"
1237
+ msgstr "%s n'a pas pu être supprimé"
1238
+
1239
+ #: ../features/email-confirmation/class-email-confirmation.php:238
1240
+ msgid "All users have been successfully deleted"
1241
+ msgstr "Tous les utilisateurs ont bien été supprimés"
1242
+
1243
+ #: ../features/email-confirmation/class-email-confirmation.php:248
1244
+ msgid "The selected users have been activated"
1245
+ msgstr "L'utilisateur sélectionné a bien été activé"
1246
+
1247
+ #: ../features/email-confirmation/class-email-confirmation.php:259
1248
+ msgid "The selected users have had their activation emails resent"
1249
+ msgstr "Les e-mails d'activation ont été ré-envoyés aux utilisateurs sélectionnés"
1250
+
1251
+ #: ../features/email-confirmation/class-email-confirmation.php:445
1252
+ #: ../features/email-confirmation/email-confirmation.php:47
1253
+ msgid "Users with Unconfirmed Email Address"
1254
+ msgstr "Utilisateurs avec une adresse de messagerie non-confirmée"
1255
+
1256
+ #: ../features/email-confirmation/email-confirmation.php:97
1257
+ msgid "There was an error performing that action!"
1258
+ msgstr "Il y a eu une erreur lors de la réalisation de cette action!"
1259
+
1260
+ #: ../features/email-confirmation/email-confirmation.php:105
1261
+ msgid "The selected user couldn't be deleted"
1262
+ msgstr "L'utilisateur sélectionné n'a pas pu être supprimé"
1263
+
1264
+ #: ../features/email-confirmation/email-confirmation.php:116
1265
+ msgid "Email notification resent to user"
1266
+ msgstr "L'e-mail de notification a été ré-envoyé à l'utilisateur"
1267
+
1268
+ #: ../features/email-confirmation/email-confirmation.php:349
1269
+ msgid "[%1$s] Activate %2$s"
1270
+ msgstr "[%1$s] Activer %2$s"
1271
+
1272
+ #: ../features/email-confirmation/email-confirmation.php:350
1273
+ msgid ""
1274
+ "To activate your user, please click the following link:\n"
1275
+ "\n"
1276
+ "%s%s%s\n"
1277
+ "\n"
1278
+ "After you activate it you will receive yet *another email* with your login."
1279
+ msgstr ""
1280
+ "Pour activer votre utilisateur, merci de cliquer sur le lien suivant:\n"
1281
+ "\n"
1282
+ "%s%s%s\n"
1283
+ "\n"
1284
+ "Après l'avoir activé, vous recevrez un *autre e-mail* avec votre identifiant."
1285
+
1286
+ #: ../features/email-confirmation/email-confirmation.php:388
1287
+ #: ../front-end/register.php:68
1288
+ msgid "Could not create user!"
1289
+ msgstr "L'utilisateur n'a pas pu être créé!"
1290
+
1291
+ #: ../features/email-confirmation/email-confirmation.php:391
1292
+ msgid "That username is already activated!"
1293
+ msgstr "Ce nom d'utilisateur est déjà activé!"
1294
+
1295
+ #: ../features/email-confirmation/email-confirmation.php:420
1296
+ msgid "There was an error while trying to activate the user"
1297
+ msgstr "Il y a eu une erreur lors de l'activation de l'utilisateur"
1298
+
1299
+ #: ../features/email-confirmation/email-confirmation.php:458
1300
+ #: ../modules/email-customizer/admin-email-customizer.php:73
1301
+ msgid "A new subscriber has (been) registered!"
1302
+ msgstr "Un nouvel adhérent a (été) enregistré!"
1303
+
1304
+ #: ../features/email-confirmation/email-confirmation.php:461
1305
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1306
+ msgstr "Nouvel adhérent sur %1$s.<br/><br/>Nom d'utilisateur:%2$s<br/>E-mail:%3$s<br/>"
1307
+
1308
+ #: ../features/email-confirmation/email-confirmation.php:466
1309
+ 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!"
1310
+ msgstr "La fonctionnalité \"Approbation Admin\" était activée au moment de l'inscription, donc merci de vous souvenir que vous devez approuver cet utilisateur avant qu'il/elle puisse se connecter!"
1311
+
1312
+ #: ../features/email-confirmation/email-confirmation.php:481
1313
+ msgid "[%1$s] Your new account information"
1314
+ msgstr "[%1$s] Nouvelles informations à propos de votre compte"
1315
+
1316
+ #: ../features/email-confirmation/email-confirmation.php:484
1317
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1318
+ msgstr "Bienvenue sur %1$s!<br/><br/><br/>Votre nom d'utilisateur est:%2$s et votre mot de passe:%3$s"
1319
+
1320
+ #: ../features/email-confirmation/email-confirmation.php:489
1321
+ #: ../front-end/register.php:103
1322
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1323
+ msgstr "Votre compte doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un e-mail vous sera envoyé."
1324
+
1325
+ #: ../features/login-widget/login-widget.php:10
1326
+ msgid "This login widget lets you add a login form in the sidebar."
1327
+ msgstr "Cette widget d'identification vous permet d'ajouter un formulaire d'identification sur la barre latérale."
1328
+
1329
+ #: ../features/login-widget/login-widget.php:15
1330
+ msgid "Profile Builder Login Widget"
1331
+ msgstr "Profile Builder Login Widget"
1332
+
1333
+ #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1334
+ msgid "Register"
1335
+ msgstr "S'inscrire"
1336
+
1337
+ #: ../features/login-widget/login-widget.php:63
1338
+ msgid "Title:"
1339
+ msgstr "Titre:"
1340
+
1341
+ #: ../features/login-widget/login-widget.php:68
1342
+ msgid "After login redirect URL (optional):"
1343
+ msgstr "URL de redirection après connexion (optionnel):"
1344
+
1345
+ #: ../features/login-widget/login-widget.php:73
1346
+ msgid "Register page URL (optional):"
1347
+ msgstr "URL de la pagge d'inscription (optionnel):"
1348
+
1349
+ #: ../features/login-widget/login-widget.php:78
1350
+ msgid "Password Recovery page URL (optional):"
1351
+ msgstr "URL de la page de ré-initialisation du mot de passe (optionnel):"
1352
+
1353
+ #: ../features/upgrades/upgrades-functions.php:91
1354
+ #: ../features/upgrades/upgrades-functions.php:134
1355
+ msgid "The usernames cannot be changed."
1356
+ msgstr "Les noms d'utilisateur ne peuvent pas être changés."
1357
+
1358
+ #: ../front-end/class-formbuilder.php:83
1359
+ msgid "Only an administrator can add new users."
1360
+ msgstr "Seul un administrateur peut ajouter de nouveaux utilisateurs."
1361
+
1362
+ #: ../front-end/class-formbuilder.php:93
1363
+ msgid "Users can register themselves or you can manually create users here."
1364
+ msgstr "Merci d'utiliser de ne pas re-créer de compte si vous en avez déjà un."
1365
+
1366
+ #: ../front-end/class-formbuilder.php:96
1367
+ msgid "Users cannot currently register themselves, but you can manually create users here."
1368
+ msgstr "Les utilisateurs ne peuvent pas s'inscrire eux-mêmes, mais vous pouvez les créer manuellement ici."
1369
+
1370
+ #: ../front-end/class-formbuilder.php:108
1371
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
1372
+ msgstr "Vous êtes actuellement connecté comme %1s.Vous n'avez pas besoin d'un autre compte. %2s"
1373
+
1374
+ #: ../front-end/class-formbuilder.php:108
1375
+ msgid "Log out of this account."
1376
+ msgstr "Se déconnecter de ce compte."
1377
+
1378
+ #: ../front-end/class-formbuilder.php:108
1379
+ msgid "Logout"
1380
+ msgstr "Se déconnecter"
1381
+
1382
+ #: ../front-end/class-formbuilder.php:114
1383
+ msgid "You must be logged in to edit your profile."
1384
+ msgstr "Vous devez être connecté pour modifier votre profile."
1385
+
1386
+ #: ../front-end/class-formbuilder.php:137
1387
+ msgid "here"
1388
+ msgstr "ici"
1389
+
1390
+ #: ../front-end/class-formbuilder.php:139
1391
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1392
+ msgstr "Vous serez bientôt redirigé automatiquement. Si vous voyez cette page pendant plus d'%1$d secondes, merci de cliquer sur %2$s.%3$s"
1393
+
1394
+ #: ../front-end/class-formbuilder.php:224
1395
+ msgid "The account %1s has been successfully created!"
1396
+ msgstr "Votre compte %1s a bien été créé!"
1397
+
1398
+ #: ../front-end/class-formbuilder.php:227
1399
+ #: ../front-end/class-formbuilder.php:233
1400
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1401
+ msgstr "Avant que vous ne puissiez accéder à votre compte %1s, vous devez confirmer votre adresse de messagerie. Merci de consulter votre boite de réception et de cliquer sur le lien d'activation."
1402
+
1403
+ #: ../front-end/class-formbuilder.php:230
1404
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1405
+ msgstr "Votre compte %1s doit d'abord être approuvé par un administrateur avant que ne ne puissiez y accéder. Un e-mail vous sera envoyé."
1406
+
1407
+ #: ../front-end/class-formbuilder.php:243
1408
+ msgid "Your profile has been successfully updated!"
1409
+ msgstr "Votre profile a bien été mis à jour!"
1410
+
1411
+ #: ../front-end/class-formbuilder.php:253
1412
+ msgid "There was an error in the submitted form"
1413
+ msgstr "Il y avait une erreur dans le formulaire que vous avez soumis"
1414
+
1415
+ #: ../front-end/class-formbuilder.php:274
1416
+ msgid "Add User"
1417
+ msgstr "Ajouter un Utilisateur"
1418
+
1419
+ #: ../front-end/class-formbuilder.php:277
1420
+ msgid "Update"
1421
+ msgstr "Mettre à jour"
1422
+
1423
+ #: ../front-end/class-formbuilder.php:314
1424
+ #: ../front-end/extra-fields/extra-fields.php:33
1425
+ msgid "The avatar was successfully deleted!"
1426
+ msgstr "L'avatar a bien été supprimé!"
1427
+
1428
+ #: ../front-end/class-formbuilder.php:314
1429
+ #: ../front-end/extra-fields/extra-fields.php:35
1430
+ msgid "The following attachment was successfully deleted:"
1431
+ msgstr "La pièce jointe suivante a bien été supprimée:"
1432
+
1433
+ #: ../front-end/class-formbuilder.php:326
1434
+ msgid "Send these credentials via email."
1435
+ msgstr "Envoyer ces identifiants par e-mail."
1436
+
1437
+ #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1438
+ #: ../front-end/login.php:79 ../front-end/login.php:89
1439
+ #: ../front-end/recover.php:17 ../front-end/recover.php:206
1440
+ msgid "ERROR"
1441
+ msgstr "ERREUR"
1442
+
1443
+ #: ../front-end/login.php:72
1444
+ msgid "The password you entered is incorrect."
1445
+ msgstr "Le mot de passe que vous avez entré n'est pas correct."
1446
+
1447
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1448
+ msgid "Password Lost and Found."
1449
+ msgstr "Mot de passe perdu et retrouvé."
1450
+
1451
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1452
+ msgid "Lost your password"
1453
+ msgstr "Mot de passe perdu"
1454
+
1455
+ #: ../front-end/login.php:89
1456
+ msgid "Both fields are empty."
1457
+ msgstr "Les deux champs sont vides."
1458
+
1459
+ #: ../front-end/login.php:199
1460
+ msgid "You are currently logged in as %1$s. %2$s"
1461
+ msgstr "Vous êtes actuellement connecté en tant que %1$s. %2$s"
1462
+
1463
+ #: ../front-end/login.php:199
1464
+ msgid "Log out of this account"
1465
+ msgstr "Se déconnecter de ce compte"
1466
+
1467
+ #: ../front-end/login.php:199
1468
+ msgid "Log out"
1469
+ msgstr "Se déconnecter"
1470
+
1471
+ #: ../front-end/recover.php:17
1472
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1473
+ msgstr "Votre compte a été confirmé par un administrateur avant que vous puissiez utilisater la fonctionnalité \"Ré-initialisation du mot de passe\"."
1474
+
1475
+ #: ../front-end/recover.php:91
1476
+ msgid "Reset Password"
1477
+ msgstr "Ré-initialiser le mot de passe"
1478
+
1479
+ #: ../front-end/recover.php:111
1480
+ msgid "Please enter your username or email address."
1481
+ msgstr "Merci d'entrer votre nom d'utilisateur ou votre adresse de messagerie."
1482
+
1483
+ #: ../front-end/recover.php:112
1484
+ msgid "You will receive a link to create a new password via email."
1485
+ msgstr "Vous recevrez un lien par e-mail pour créer un nouveau mot de passe."
1486
+
1487
+ #: ../front-end/recover.php:119
1488
+ msgid "Username or E-mail"
1489
+ msgstr "Nom d'utilisateur ou adresse de messagerie."
1490
+
1491
+ #: ../front-end/recover.php:125
1492
+ msgid "Get New Password"
1493
+ msgstr "Ré-initialiser votre mot de passe"
1494
+
1495
+ #: ../front-end/recover.php:164
1496
+ msgid "The username entered wasn't found in the database!"
1497
+ msgstr "Le nom d'utilisateur que vous avez entré n'a pas été trouvé dans la base de données!"
1498
+
1499
+ #: ../front-end/recover.php:164
1500
+ msgid "Please check that you entered the correct username."
1501
+ msgstr "Merci de vérifier que vous avez entré un nom d'utilisateur correct."
1502
+
1503
+ #: ../front-end/recover.php:179
1504
+ msgid "Check your e-mail for the confirmation link."
1505
+ msgstr "Merci de consulter votre boite de réception pour le lien d'activation."
1506
+
1507
+ #: ../front-end/recover.php:194
1508
+ 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"
1509
+ msgstr "Quelqu'un a demandé que le mot de passe soit ré-initialisé sur le compte suivant: <b>%1$s</b><br/>Si c'était une erreur, ignorez simplement cet e-mail et il ne se passera rien.<br/>Pour ré-initialiser votre mot de passe, cliquez sur le lien suivant:%2$s"
1510
+
1511
+ #: ../front-end/recover.php:197
1512
+ msgid "Password Reset from \"%1$s\""
1513
+ msgstr "Mot de passe ré-initialisé de \"%1$s\""
1514
+
1515
+ #: ../front-end/recover.php:206
1516
+ msgid "There was an error while trying to send the activation link to %1$s!"
1517
+ msgstr "Il y a eu une erreur lors de l'envoi du lien d'activation à %1$s!"
1518
+
1519
+ #: ../front-end/recover.php:215
1520
+ msgid "The email address entered wasn't found in the database!"
1521
+ msgstr "L'adresse de messagerie entrée n'a pas été trouvée dans la base de données!"
1522
+
1523
+ #: ../front-end/recover.php:215
1524
+ msgid "Please check that you entered the correct email address."
1525
+ msgstr "Merci de vérifier que vous avez entré une adresse de messagerie correcte."
1526
+
1527
+ #: ../front-end/default-fields/password/password.php:44
1528
+ #: ../front-end/recover.php:231
1529
+ msgid "<br/>The password must have the minimum length of "
1530
+ msgstr "<br/>Le mot de passe doit avoir une longueur minimale de "
1531
+
1532
+ #: ../front-end/default-fields/password/password.php:48
1533
+ #: ../front-end/recover.php:235
1534
+ msgid "<br/>The password must have a minimum strength of "
1535
+ msgstr "<br/>Le mot de passe doit avoir une sûreté minimale de "
1536
+
1537
+ #: ../front-end/recover.php:242
1538
+ msgid "Your password has been successfully changed!"
1539
+ msgstr "Votre mot de passe a bien été changé!"
1540
+
1541
+ #: ../front-end/recover.php:256
1542
+ msgid "You have successfully reset your password to: %1$s"
1543
+ msgstr "Vous avec bien ré-initialisé votre mot de passe pour: %1$s"
1544
+
1545
+ #: ../front-end/recover.php:259 ../front-end/recover.php:273
1546
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
1547
+ msgstr "Mot de passe bien ré-initialisé pour %1$s sur \"%2$s\""
1548
+
1549
+ #: ../front-end/recover.php:270
1550
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1551
+ msgstr "%1$s a demandé un changement de mot de passe via la fonctionnalité de ré-initialisation du mot de passe. <br/>Son nouveau mot de passe est:%2$s"
1552
+
1553
+ #: ../front-end/recover.php:289
1554
+ msgid "The entered passwords don't match!"
1555
+ msgstr "Les mots de passe entrés sont différents!"
1556
+
1557
+ #: ../front-end/recover.php:334
1558
+ msgid "ERROR:"
1559
+ msgstr "ERREUR:"
1560
+
1561
+ #: ../front-end/recover.php:334
1562
+ msgid "Invalid key!"
1563
+ msgstr "Clé incorrecte!"
1564
+
1565
+ #: ../front-end/register.php:46
1566
+ msgid "Invalid activation key!"
1567
+ msgstr "Clé d'activation incorrecte!"
1568
+
1569
+ #: ../front-end/register.php:50
1570
+ msgid "This username is now active!"
1571
+ msgstr "Ce nom d'utilisateur est désormais actif!"
1572
+
1573
+ #: ../front-end/register.php:71
1574
+ msgid "This username is already activated!"
1575
+ msgstr "Ce nom d'utilisateur est déjà activé!"
1576
+
1577
+ #: ../front-end/register.php:102
1578
+ msgid "Your email was successfully confirmed."
1579
+ msgstr "Votre adresse de messagerie a bien été confirmée."
1580
+
1581
+ #: ../front-end/register.php:112
1582
+ msgid "There was an error while trying to activate the user."
1583
+ msgstr "Il y a eu une erreur lors de l'activation de cet utilisateur."
1584
+
1585
+ #: ../front-end/default-fields/email/email.php:42
1586
+ msgid "The email you entered is not a valid email address."
1587
+ msgstr "L'adresse de messagerie que vous avez entrée n'est pas une adresse de messagerie valide."
1588
+
1589
+ #: ../front-end/default-fields/email/email.php:49
1590
+ msgid "This email is already reserved to be used soon."
1591
+ msgstr "Cette adresse de messagerie est déjà réservée et sera bientôt utilisée."
1592
+
1593
+ #: ../front-end/default-fields/email/email.php:49
1594
+ #: ../front-end/default-fields/email/email.php:55
1595
+ #: ../front-end/default-fields/email/email.php:62
1596
+ #: ../front-end/default-fields/username/username.php:44
1597
+ #: ../front-end/default-fields/username/username.php:51
1598
+ msgid "Please try a different one!"
1599
+ msgstr "Merci d'en essayer un autre!"
1600
+
1601
+ #: ../front-end/default-fields/email/email.php:55
1602
+ #: ../front-end/default-fields/email/email.php:62
1603
+ msgid "This email is already in use."
1604
+ msgstr "Cette adresse de messagerie est déjà utilisée."
1605
+
1606
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1607
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1608
+ msgid "The passwords do not match"
1609
+ msgstr "Les mots de passe sont différents"
1610
+
1611
+ #: ../front-end/default-fields/username/username.php:44
1612
+ msgid "This username already exists."
1613
+ msgstr "Ce nom d'utilisateur existe déjà."
1614
+
1615
+ #: ../front-end/default-fields/username/username.php:51
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
1661
+ #: ../front-end/extra-fields/input/input.php:28
1662
+ #: ../front-end/extra-fields/radio/radio.php:42
1663
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1664
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1665
+ #: ../front-end/extra-fields/select/select.php:44
1666
+ #: ../front-end/extra-fields/textarea/textarea.php:28
1667
+ #: ../front-end/extra-fields/upload/upload.php:62
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
+
1728
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1729
+ msgid "Could not open socket!"
1730
+ msgstr "Le socket n'a pas pu être ouvert!"
1731
+
1732
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1733
+ msgid "To use reCAPTCHA you must get an API key from"
1734
+ msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé d'API de"
1735
+
1736
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1737
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1738
+ msgstr "Pour des raisons de sécurité, vous devez donner l'adresse ip distante au reCAPTCHA!"
1739
+
1740
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1741
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1742
+ msgstr "Pour utiliser reCAPTCHA Mailhide, vous devez avoir installé le module php mcrypt!"
1743
+
1744
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1745
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1746
+ msgstr "Pour utiliser reCAPTCHA Mailhide, vous devez vous inscrire pour avoir une clé publique et une clé privés; vous pouvez le faire sur"
1747
+
1748
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1749
+ msgid "To use reCAPTCHA you must get an API public key from:"
1750
+ msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé publique d'API de:"
1751
+
1752
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1753
+ msgid "To use reCAPTCHA you must get an API private key from:"
1754
+ msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé privée de:"
1755
+
1756
+ #: ../front-end/extra-fields/upload/upload.php:35
1757
+ msgid "Current file: No uploaded attachment"
1758
+ msgstr "Fichier actuel: aucune pièce jointe téléversée"
1759
+
1760
+ #: ../front-end/extra-fields/upload/upload.php:39
1761
+ #: ../front-end/extra-fields/upload/upload.php:48
1762
+ #: ../front-end/extra-fields/upload/upload.php:71
1763
+ #: ../front-end/extra-fields/upload/upload.php:75
1764
+ #: ../front-end/extra-fields/upload/upload.php:77
1765
+ msgid "Current file"
1766
+ msgstr "Fichier actuel"
1767
+
1768
+ #: ../front-end/extra-fields/upload/upload.php:42
1769
+ #: ../front-end/extra-fields/upload/upload.php:51
1770
+ #: ../front-end/extra-fields/upload/upload.php:75
1771
+ #: ../front-end/extra-fields/upload/upload.php:77
1772
+ msgid "Click to see the current attachment"
1773
+ msgstr "Cliquez pour voir la pièce jointe actuelle"
1774
+
1775
+ #: ../front-end/extra-fields/upload/upload.php:44
1776
+ #: ../front-end/extra-fields/upload/upload.php:75
1777
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1778
+ msgstr "La pièce jointe n'a pas pu être supprimée (elle est marquée comme obligatoire par l'administrateur)"
1779
+
1780
+ #: ../front-end/extra-fields/upload/upload.php:53
1781
+ #: ../front-end/extra-fields/upload/upload.php:77
1782
+ msgid "Are you sure you want to delete this attachment?"
1783
+ msgstr "Êtes-vous sûr de vouloir supprimer cette pièce jointe?"
1784
+
1785
+ #: ../front-end/extra-fields/upload/upload.php:54
1786
+ #: ../front-end/extra-fields/upload/upload.php:77
1787
+ msgid "Click to delete the current attachment"
1788
+ msgstr "Cliquer pour supprimer la pièce jointe actuelle"
1789
+
1790
+ #: ../front-end/extra-fields/upload/upload.php:71
1791
+ msgid "No uploaded attachment"
1792
+ msgstr "Pas de pièce jointe téléversée"
1793
+
1794
+ #: ../front-end/extra-fields/upload/upload.php:164
1795
+ msgid "The extension of the file is not allowed"
1796
+ msgstr "L'extension du fichier n'est pas autorisée"
1797
+
1798
+ #: ../front-end/extra-fields/upload/upload.php:186
1799
+ msgid "The file could only partially be uploaded"
1800
+ msgstr "Le fichier n'a pu qu'être partiellement téléversé"
1801
+
1802
+ #: ../front-end/extra-fields/upload/upload.php:201
1803
+ msgid "This field wasn't updated because an unknown error occured"
1804
+ msgstr "Ce champ n'a pas pu être mis à jour à cause d'une erreur inconnue"
1805
+
1806
+ #: ../modules/modules.php:11 ../modules/modules.php:80
1807
+ msgid "Modules"
1808
+ msgstr "Modules"
1809
+
1810
+ #: ../modules/modules.php:81
1811
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
1812
+ msgstr "Ici vous pouvez activer / désactiver les modules disponibles pour Profile Builder."
1813
+
1814
+ #: ../modules/modules.php:91
1815
+ msgid "Name/Description"
1816
+ msgstr "Nom/Description"
1817
+
1818
+ #: ../modules/modules.php:92
1819
+ msgid "Status"
1820
+ msgstr "Statut"
1821
+
1822
+ #: ../modules/custom-redirects/custom-redirects.php:48
1823
+ #: ../modules/custom-redirects/custom-redirects.php:58
1824
+ #: ../modules/custom-redirects/custom-redirects.php:68
1825
+ #: ../modules/custom-redirects/custom-redirects.php:94
1826
+ #: ../modules/custom-redirects/custom-redirects.php:104
1827
+ #: ../modules/custom-redirects/custom-redirects.php:114
1828
+ #: ../modules/custom-redirects/custom-redirects.php:124
1829
+ #: ../modules/modules.php:99 ../modules/modules.php:106
1830
+ #: ../modules/modules.php:113 ../modules/modules.php:120
1831
+ #: ../modules/modules.php:127 ../modules/modules.php:134
1832
+ msgid "Active"
1833
+ msgstr "Active"
1834
+
1835
+ #: ../modules/custom-redirects/custom-redirects.php:49
1836
+ #: ../modules/custom-redirects/custom-redirects.php:59
1837
+ #: ../modules/custom-redirects/custom-redirects.php:69
1838
+ #: ../modules/custom-redirects/custom-redirects.php:95
1839
+ #: ../modules/custom-redirects/custom-redirects.php:105
1840
+ #: ../modules/custom-redirects/custom-redirects.php:115
1841
+ #: ../modules/custom-redirects/custom-redirects.php:125
1842
+ #: ../modules/modules.php:100 ../modules/modules.php:107
1843
+ #: ../modules/modules.php:114 ../modules/modules.php:121
1844
+ #: ../modules/modules.php:128 ../modules/modules.php:135
1845
+ msgid "Inactive"
1846
+ msgstr "Inactive"
1847
+
1848
+ #: ../modules/email-customizer/admin-email-customizer.php:11
1849
+ #: ../modules/email-customizer/admin-email-customizer.php:12
1850
+ #: ../modules/modules.php:118
1851
+ msgid "Admin Email Customizer"
1852
+ msgstr "E-mails personnalisés à l'Admin"
1853
+
1854
+ #: ../modules/email-customizer/user-email-customizer.php:11
1855
+ #: ../modules/email-customizer/user-email-customizer.php:12
1856
+ #: ../modules/modules.php:125
1857
+ msgid "User Email Customizer"
1858
+ msgstr "E-mails personnalisés à l'utilisateur"
1859
+
1860
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1861
+ msgid "Save"
1862
+ msgstr "Enregistrer"
1863
+
1864
+ #: ../modules/custom-redirects/custom-redirects.php:35
1865
+ msgid "Redirects on custom page requests:"
1866
+ msgstr "Redirige les requêtes vers une page spécifique:"
1867
+
1868
+ #: ../modules/custom-redirects/custom-redirects.php:39
1869
+ #: ../modules/custom-redirects/custom-redirects.php:85
1870
+ msgid "Action"
1871
+ msgstr "Action"
1872
+
1873
+ #: ../modules/custom-redirects/custom-redirects.php:40
1874
+ #: ../modules/custom-redirects/custom-redirects.php:86
1875
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
1876
+ #: ../modules/multiple-forms/register-forms.php:230
1877
+ msgid "Redirect"
1878
+ msgstr "Redirections"
1879
+
1880
+ #: ../modules/custom-redirects/custom-redirects.php:41
1881
+ #: ../modules/custom-redirects/custom-redirects.php:87
1882
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
1883
+ #: ../modules/multiple-forms/register-forms.php:232
1884
+ msgid "URL"
1885
+ msgstr "URL"
1886
+
1887
+ #: ../modules/custom-redirects/custom-redirects.php:46
1888
+ msgid "After Registration:"
1889
+ msgstr "Après inscription:"
1890
+
1891
+ #: ../modules/custom-redirects/custom-redirects.php:56
1892
+ msgid "After Login:"
1893
+ msgstr "Après connexion:"
1894
+
1895
+ #: ../modules/custom-redirects/custom-redirects.php:66
1896
+ msgid "Recover Password (*)"
1897
+ msgstr "Récupérer le mot de passe (*)"
1898
+
1899
+ #: ../modules/custom-redirects/custom-redirects.php:77
1900
+ 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."
1901
+ msgstr "Lorsque cette fonctionnalité est activée l'utilisateur sera redirigé à partir de la page par défaut de Wordpress de récupération du mot de passe vers le lien \"Mot de passe perdu?\" utilisé par Profile Builder sur la page de connexion de l'interface cliente."
1902
+
1903
+ #: ../modules/custom-redirects/custom-redirects.php:81
1904
+ msgid "Redirects on default WordPress page requests:"
1905
+ msgstr "Redirige les requêtes vers la page Wordpress par défaut:"
1906
+
1907
+ #: ../modules/custom-redirects/custom-redirects.php:92
1908
+ msgid "Default WordPress Login Page"
1909
+ msgstr "Page de connexion WordPress par défaut"
1910
+
1911
+ #: ../modules/custom-redirects/custom-redirects.php:102
1912
+ msgid "Default WordPress Logout Page"
1913
+ msgstr "Page de déconnexion Wordpress par défaut"
1914
+
1915
+ #: ../modules/custom-redirects/custom-redirects.php:112
1916
+ msgid "Default WordPress Register Page"
1917
+ msgstr "Page d'inscription WordPress par défaut"
1918
+
1919
+ #: ../modules/custom-redirects/custom-redirects.php:122
1920
+ msgid "Default WordPress Dashboard (*)"
1921
+ msgstr "Tableau de bord Wordpress par défaut (*)"
1922
+
1923
+ #: ../modules/custom-redirects/custom-redirects.php:133
1924
+ msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1925
+ msgstr "Redirige chaque rôle utilisateur SAUF ceux qui ont des privilèges d'administrateur (qui peuvent changer les options)."
1926
+
1927
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1928
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1929
+ msgstr "Ces paramètres sont aussi répliqués dans la page de paramètres des \"E-mails personnalisés aux utilisateurs\" lors de la sauvegarde."
1930
+
1931
+ #: ../modules/email-customizer/admin-email-customizer.php:41
1932
+ #: ../modules/email-customizer/user-email-customizer.php:41
1933
+ msgid "From (name)"
1934
+ msgstr "De (nom)"
1935
+
1936
+ #: ../modules/email-customizer/admin-email-customizer.php:49
1937
+ #: ../modules/email-customizer/user-email-customizer.php:49
1938
+ msgid "From (reply-to email)"
1939
+ msgstr "De (réponse à)"
1940
+
1941
+ #: ../modules/email-customizer/admin-email-customizer.php:57
1942
+ #: ../modules/email-customizer/user-email-customizer.php:57
1943
+ msgid "Common Settings"
1944
+ msgstr "Paramètres communs"
1945
+
1946
+ #: ../modules/email-customizer/admin-email-customizer.php:60
1947
+ msgid ""
1948
+ "\n"
1949
+ "<p>New subscriber on {{site_name}}.</p>\n"
1950
+ "<p>Username:{{username}}</p>\n"
1951
+ "<p>E-mail:{{user_email}}</p>\n"
1952
+ msgstr ""
1953
+ "\n"
1954
+ "<p>Nouvel adhérent sur {{site_name}}.</p>\n"
1955
+ "<p>Nom d'utilisateur:{{username}}</p>\n"
1956
+ "<p>Adresse de messagerie:{{user_email}}</p>\n"
1957
+
1958
+ #: ../modules/email-customizer/admin-email-customizer.php:69
1959
+ #: ../modules/email-customizer/admin-email-customizer.php:99
1960
+ #: ../modules/email-customizer/user-email-customizer.php:71
1961
+ #: ../modules/email-customizer/user-email-customizer.php:99
1962
+ #: ../modules/email-customizer/user-email-customizer.php:128
1963
+ #: ../modules/email-customizer/user-email-customizer.php:155
1964
+ #: ../modules/email-customizer/user-email-customizer.php:183
1965
+ msgid "Email Subject"
1966
+ msgstr "Sujet de l'e-mail"
1967
+
1968
+ #: ../modules/email-customizer/admin-email-customizer.php:84
1969
+ msgid "Default Registration & Registration with Email Confirmation"
1970
+ msgstr "Inscription par défaut & inscription avec confirmation de l'adresse de messagerie"
1971
+
1972
+ #: ../modules/email-customizer/admin-email-customizer.php:87
1973
+ msgid ""
1974
+ "\n"
1975
+ "<p>New subscriber on {{site_name}}.</p>\n"
1976
+ "<p>Username:{{username}}</p>\n"
1977
+ "<p>E-mail:{{user_email}}</p>\n"
1978
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
1979
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
1980
+ msgstr ""
1981
+ "\n"
1982
+ "<p>Nouvel adhérent sur {{site_name}}.</p>\n"
1983
+ "<p>Nom d'utilisateur:{{username}}</p>\n"
1984
+ "<p>Adresse de messagerie:{{user_email}}</p>\n"
1985
+ "<p>La fonctionnalité Approbation Admin était activée au moment de l'inscription,\n"
1986
+ "donc merci de vous souvenir qu'il faut que vous approuviez cet utilisateur avant qu'il/elle ne puisse se connecter!</p>\n"
1987
+
1988
+ #: ../modules/email-customizer/admin-email-customizer.php:114
1989
+ #: ../modules/email-customizer/user-email-customizer.php:143
1990
+ msgid "Registration with Admin Approval"
1991
+ msgstr "Inscription avec Approbation Admin"
1992
+
1993
+ #: ../modules/email-customizer/email-customizer.php:7
1994
+ msgid "Available Tags"
1995
+ msgstr "Tags disponibles"
1996
+
1997
+ #: ../modules/email-customizer/email-customizer.php:11
1998
+ msgid "User Meta"
1999
+ msgstr "Méta-information de l'utilisateur"
2000
+
2001
+ #: ../modules/email-customizer/email-customizer.php:21
2002
+ msgid "Site Url"
2003
+ msgstr "URL du site web"
2004
+
2005
+ #: ../modules/email-customizer/email-customizer.php:22
2006
+ msgid "Site Name"
2007
+ msgstr "Nom du site web"
2008
+
2009
+ #: ../modules/email-customizer/email-customizer.php:25
2010
+ #: ../modules/user-listing/userlisting.php:126
2011
+ msgid "User Id"
2012
+ msgstr "ID de l'utilisateur"
2013
+
2014
+ #: ../modules/email-customizer/email-customizer.php:32
2015
+ msgid "Reply To"
2016
+ msgstr "Réponse à"
2017
+
2018
+ #: ../modules/email-customizer/email-customizer.php:35
2019
+ msgid "Activation Key"
2020
+ msgstr "Clé d'activation"
2021
+
2022
+ #: ../modules/email-customizer/email-customizer.php:36
2023
+ msgid "Activation Url"
2024
+ msgstr "URL d'activation"
2025
+
2026
+ #: ../modules/email-customizer/email-customizer.php:37
2027
+ msgid "Activation Link"
2028
+ msgstr "Lien d'activation"
2029
+
2030
+ #: ../modules/email-customizer/user-email-customizer.php:64
2031
+ msgid ""
2032
+ "\n"
2033
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2034
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2035
+ msgstr ""
2036
+ "\n"
2037
+ "<h3>Bienvenu(e) sur {{site_name}}!</h3>\n"
2038
+ "<p>Votre nom d'utilisateur est:{{username}} et votre mot de passe:{{password}}</p>\n"
2039
+
2040
+ #: ../modules/email-customizer/user-email-customizer.php:85
2041
+ msgid "Default Registration"
2042
+ msgstr "Inscription par défaut"
2043
+
2044
+ #: ../modules/email-customizer/user-email-customizer.php:91
2045
+ msgid ""
2046
+ "\n"
2047
+ "<p>To activate your user, please click the following link:<br/>\n"
2048
+ "{{{activation_link}}}</p>\n"
2049
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
2050
+ msgstr ""
2051
+ "\n"
2052
+ "<p>Pour activer votre compte, merci de cliquer sur le lien suivant:<br/>\n"
2053
+ "{{{activation_link}}}</p>\n"
2054
+ "<p>Une fois l'activation réalisée, vous recevrez une autre e-mail avec vos identifiants</p>\n"
2055
+
2056
+ #: ../modules/email-customizer/user-email-customizer.php:103
2057
+ msgid "[{{site_name}}] Activate {{username}}"
2058
+ msgstr "[{{site_name}}] Activer {{username}}"
2059
+
2060
+ #: ../modules/email-customizer/user-email-customizer.php:114
2061
+ msgid "Registration with Email Confirmation"
2062
+ msgstr "Inscription avec confirmation de l'adresse de messagerie"
2063
+
2064
+ #: ../modules/email-customizer/user-email-customizer.php:120
2065
+ msgid ""
2066
+ "\n"
2067
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2068
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2069
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2070
+ msgstr ""
2071
+ "\n"
2072
+ "<h3>Bienvenu(e) sur {{site_name}}!</h3>\n"
2073
+ "<p>Votre nom d'utilisateur est:{{username}} et votre mot de passe:{{password}}</p>\n"
2074
+ "<p>Avant que vous ne puissiez accéder à votre compte, un administrateur doit d'abord l'approuver. Vous serez informé par e-mail.</p>\n"
2075
+
2076
+ #: ../modules/email-customizer/user-email-customizer.php:132
2077
+ msgid "A new account has been created for you on {{site_name}}"
2078
+ msgstr "Un nouveau compte a été créé pour vous sur {{site_name}}"
2079
+
2080
+ #: ../modules/email-customizer/user-email-customizer.php:148
2081
+ msgid ""
2082
+ "\n"
2083
+ "<h3>Good News!</h3>\n"
2084
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2085
+ msgstr ""
2086
+ "\n"
2087
+ "<h3>Bonne nouvelle!</h3>\n"
2088
+ "<p>Un administrateur vient juste d'approuver votre compte {{username}} sur {{site_name}}.</p>\n"
2089
+
2090
+ #: ../modules/email-customizer/user-email-customizer.php:159
2091
+ msgid "Your account on {{site_name}} has been approved!"
2092
+ msgstr "Votre compte sur {{site_name}} a été approuvé!"
2093
+
2094
+ #: ../modules/email-customizer/user-email-customizer.php:170
2095
+ msgid "User Approval Notification"
2096
+ msgstr "Notification lors de l'approbation d'un utilisateur"
2097
+
2098
+ #: ../modules/email-customizer/user-email-customizer.php:175
2099
+ msgid ""
2100
+ "\n"
2101
+ "<h3>Hello,</h3>\n"
2102
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2103
+ msgstr ""
2104
+ "\n"
2105
+ "<h3>Bonjour,</h3>\n"
2106
+ "<p>Un administrateur vient malheureusement de refuser votre compte: {{username}} sur {{site_name}}.</p>\n"
2107
+
2108
+ #: ../modules/email-customizer/user-email-customizer.php:187
2109
+ msgid "Your account on {{site_name}} has been unapproved!"
2110
+ msgstr "Votre compte sur {{site_name}} a été refusé!"
2111
+
2112
+ #: ../modules/email-customizer/user-email-customizer.php:198
2113
+ msgid "Unapproved User Notification"
2114
+ msgstr "Notification lors du refus d'un utilisateur"
2115
+
2116
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
2117
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
2118
+ msgid "Edit-profile Form"
2119
+ msgstr "Formulaire de modification de profile"
2120
+
2121
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
2122
+ #: ../modules/multiple-forms/register-forms.php:13
2123
+ #: ../modules/user-listing/userlisting.php:13
2124
+ msgid "Add New"
2125
+ msgstr "Ajouter un nouveau"
2126
+
2127
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
2128
+ msgid "Add new Edit-profile Form"
2129
+ msgstr "Ajouter un nouveau formulaire de modification de profile"
2130
+
2131
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
2132
+ msgid "Edit the Edit-profile Forms"
2133
+ msgstr "Modifier les formulaires de modification de profile"
2134
+
2135
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
2136
+ msgid "New Edit-profile Form"
2137
+ msgstr "Nouveau formulaire de modification de profile"
2138
+
2139
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
2140
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
2141
+ msgid "Edit-profile Forms"
2142
+ msgstr "Formulaires de modification de profile"
2143
+
2144
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
2145
+ msgid "View the Edit-profile Form"
2146
+ msgstr "Voir le formulaire de modification de profile"
2147
+
2148
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
2149
+ msgid "Search the Edit-profile Forms"
2150
+ msgstr "Rechercher dans les formulaires de modification de profile"
2151
+
2152
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
2153
+ msgid "No Edit-profile Form found"
2154
+ msgstr "Aucun formulaire de modification de profile trouvé"
2155
+
2156
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
2157
+ msgid "No Edit-profile Forms found in trash"
2158
+ msgstr "Aucun formulaire de modification de profile trouvé dans la corbeille"
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
+
2196
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
2197
+ #: ../modules/multiple-forms/register-forms.php:230
2198
+ msgid "Whether to redirect the user to a specific page or not"
2199
+ msgstr "Si l'utilisateur doit être redirigé vers une page spécifique ou pas"
2200
+
2201
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2202
+ #: ../modules/multiple-forms/register-forms.php:231
2203
+ msgid "Display Messages"
2204
+ msgstr "Afficher les messages"
2205
+
2206
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2207
+ #: ../modules/multiple-forms/register-forms.php:231
2208
+ msgid "Allowed time to display any success messages (in seconds)"
2209
+ msgstr "Temps autorisé pour afficher tout message de succès (en secondes)"
2210
+
2211
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
2212
+ 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"
2213
+ msgstr "Spécifiez l'URL de la page où les utilisateurs seront redirigés lorsqu'ils mettent à jour leur profile en utilisant ce formulaire<br/>Utilisez le format suivant: http://www.monsite.com"
2214
+
2215
+ #: ../modules/multiple-forms/edit-profile-forms.php:215
2216
+ msgid "After Profile Update..."
2217
+ msgstr "Après une mise à jour de profile..."
2218
+
2219
+ #: ../modules/multiple-forms/edit-profile-forms.php:239
2220
+ #: ../modules/multiple-forms/register-forms.php:260
2221
+ msgid "Add New Field to the List"
2222
+ msgstr "Ajouter un nouveau champ à la liste"
2223
+
2224
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
2225
+ #: ../modules/multiple-forms/register-forms.php:264
2226
+ msgid "Choose one of the supported fields you manage <a href=\""
2227
+ msgstr "Choisissez l'un des champs maintenus que vous gérez <a href=\""
2228
+
2229
+ #: ../modules/multiple-forms/multiple-forms.php:407
2230
+ msgid "<pre>Title (Type)</pre>"
2231
+ msgstr "<pre>Titre (Type)</pre>"
2232
+
2233
+ #: ../modules/multiple-forms/multiple-forms.php:233
2234
+ msgid "You need to specify the title of the form before creating it"
2235
+ msgstr "Vous devez spécifier le titre du formulaire avant de le créer"
2236
+
2237
+ #: ../modules/multiple-forms/register-forms.php:11
2238
+ #: ../modules/multiple-forms/register-forms.php:12
2239
+ msgid "Registration Form"
2240
+ msgstr "Formulaire d'inscription"
2241
+
2242
+ #: ../modules/multiple-forms/register-forms.php:14
2243
+ msgid "Add new Registration Form"
2244
+ msgstr "Ajouter un nouveau formulaire d'inscription"
2245
+
2246
+ #: ../modules/multiple-forms/register-forms.php:15
2247
+ msgid "Edit the Registration Forms"
2248
+ msgstr "Modifier les formulaires d'inscription"
2249
+
2250
+ #: ../modules/multiple-forms/register-forms.php:16
2251
+ msgid "New Registration Form"
2252
+ msgstr "Nouveau formulaire d'inscription"
2253
+
2254
+ #: ../modules/multiple-forms/register-forms.php:17
2255
+ #: ../modules/multiple-forms/register-forms.php:23
2256
+ msgid "Registration Forms"
2257
+ msgstr "Formulaires d'inscription"
2258
+
2259
+ #: ../modules/multiple-forms/register-forms.php:18
2260
+ msgid "View the Registration Form"
2261
+ msgstr "Voir le formulaire d'inscription"
2262
+
2263
+ #: ../modules/multiple-forms/register-forms.php:19
2264
+ msgid "Search the Registration Forms"
2265
+ msgstr "Rechercher dans les formulaires d'inscription"
2266
+
2267
+ #: ../modules/multiple-forms/register-forms.php:20
2268
+ msgid "No Registration Form found"
2269
+ msgstr "Aucun formulaire d'inscription trouvé"
2270
+
2271
+ #: ../modules/multiple-forms/register-forms.php:21
2272
+ msgid "No Registration Forms found in trash"
2273
+ msgstr "Aucun formulaire d'inscription trouvé dans la corbeille"
2274
+
2275
+ #: ../modules/multiple-forms/register-forms.php:219
2276
+ msgid "Default Role"
2277
+ msgstr "Rôle par défaut"
2278
+
2279
+ #: ../modules/multiple-forms/register-forms.php:228
2280
+ msgid "Set Role"
2281
+ msgstr "Fixer le rôle"
2282
+
2283
+ #: ../modules/multiple-forms/register-forms.php:228
2284
+ 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"
2285
+ msgstr "Choisissez quel rôle aura un utilisateur après qu'il/elle se soit inscrit<br/>Si aucune valeur n'est spécifiée, la valeur par défaut sera celle du rôle défini dans les paramètres de WordPress"
2286
+
2287
+ #: ../modules/multiple-forms/register-forms.php:229
2288
+ msgid "Automatically Log In"
2289
+ msgstr "Se connecter automatiquement"
2290
+
2291
+ #: ../modules/multiple-forms/register-forms.php:229
2292
+ 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"
2293
+ msgstr "Si un utilisateur nouvellement inscrit sera connecté automatiquement ou pas<br/>Ne fonctionne que sur les sites ayant un nom de domaine unique et ayant désactivé les paramètres \"Approbation Admin\" et \"Confirmation de l'adresse de messagerie\"<br/>ATTENTION: La mise en cache du formulaire d'inscription empêchera la connexion automatique de fonctionner"
2294
+
2295
+ #: ../modules/multiple-forms/register-forms.php:232
2296
+ 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"
2297
+ msgstr "Spécifiez l'URL de la page vers laquelle les utilisateurs seront redirigés une fois inscris via ce formulaire<br/>Utilisez le format suivant: http://www.monsite.com"
2298
+
2299
+ #: ../modules/multiple-forms/register-forms.php:238
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
+
2311
+ #: ../modules/user-listing/userlisting.php:14
2312
+ msgid "Add new User Listing"
2313
+ msgstr "Ajouter un nouveau listing d'utilisateurs"
2314
+
2315
+ #: ../modules/user-listing/userlisting.php:15
2316
+ msgid "Edit the User Listing"
2317
+ msgstr "Modifier le listing d'utilisateurs"
2318
+
2319
+ #: ../modules/user-listing/userlisting.php:16
2320
+ msgid "New User Listing"
2321
+ msgstr "Nouveau listing d'utilisateurs"
2322
+
2323
+ #: ../modules/user-listing/userlisting.php:18
2324
+ msgid "View the User Listing"
2325
+ msgstr "Voir le listing d'utilisateurs"
2326
+
2327
+ #: ../modules/user-listing/userlisting.php:19
2328
+ msgid "Search the User Listing"
2329
+ msgstr "Rechercher des listings d'utilisateurs"
2330
+
2331
+ #: ../modules/user-listing/userlisting.php:20
2332
+ msgid "No User Listing found"
2333
+ msgstr "Aucun listing d'utilisateurs trouvé"
2334
+
2335
+ #: ../modules/user-listing/userlisting.php:21
2336
+ msgid "No User Listing found in trash"
2337
+ msgstr "Aucun listing d'utilisateur trouvé dans la corbeille"
2338
+
2339
+ #: ../modules/user-listing/userlisting.php:97
2340
+ msgid "Display name as"
2341
+ msgstr "Afficher le nom comme"
2342
+
2343
+ #: ../modules/user-listing/userlisting.php:110
2344
+ msgid "Url"
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
+
2357
+ #: ../modules/user-listing/userlisting.php:123
2358
+ msgid "More Info"
2359
+ msgstr "Plus d'infos"
2360
+
2361
+ #: ../modules/user-listing/userlisting.php:124
2362
+ msgid "More Info Url"
2363
+ msgstr "URL vers plus d'infos"
2364
+
2365
+ #: ../modules/user-listing/userlisting.php:125
2366
+ msgid "Avatar or Gravatar"
2367
+ msgstr "Avatar ou Gravatar"
2368
+
2369
+ #: ../modules/user-listing/userlisting.php:153
2370
+ msgid "Meta Variables"
2371
+ msgstr "Méta-variables"
2372
+
2373
+ #: ../modules/user-listing/userlisting.php:159
2374
+ msgid "Sort Variables"
2375
+ msgstr "Trier les variables"
2376
+
2377
+ #: ../modules/user-listing/userlisting.php:163
2378
+ #: ../modules/user-listing/userlisting.php:190
2379
+ msgid "Extra Functions"
2380
+ msgstr "Fonctions supplémentaires"
2381
+
2382
+ #: ../modules/user-listing/userlisting.php:165
2383
+ msgid "Pagination"
2384
+ msgstr "Pagination"
2385
+
2386
+ #: ../modules/user-listing/userlisting.php:166
2387
+ msgid "Search all Fields"
2388
+ msgstr "Rechercher parmi tous les champs"
2389
+
2390
+ #: ../modules/user-listing/userlisting.php:192
2391
+ msgid "Go Back Link"
2392
+ msgstr "Lien vers la page précédente"
2393
+
2394
+ #: ../modules/user-listing/userlisting.php:210
2395
+ msgid "All-userlisting Template"
2396
+ msgstr "Modèle de tous les listing d'utilisateurs"
2397
+
2398
+ #: ../modules/user-listing/userlisting.php:213
2399
+ msgid "Single-userlisting Template"
2400
+ msgstr "Modèle d'un seul listing d'utilisateurs"
2401
+
2402
+ #: ../modules/user-listing/userlisting.php:330
2403
+ msgid "You do not have permission to view this user list"
2404
+ msgstr "Vous n'avez pas la permission de voir cette liste d'utilisateurs"
2405
+
2406
+ #: ../modules/user-listing/userlisting.php:343
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 "&laquo;&laquo; First"
2465
+ msgstr "&laquo;&laquo; Premier"
2466
+
2467
+ #: ../modules/user-listing/userlisting.php:838
2468
+ msgid "&laquo; Prev"
2469
+ msgstr "&laquo; Précédent"
2470
+
2471
+ #: ../modules/user-listing/userlisting.php:839
2472
+ msgid "Next &raquo; "
2473
+ msgstr "Suivant &raquo; "
2474
+
2475
+ #: ../modules/user-listing/userlisting.php:840
2476
+ msgid "Last &raquo;&raquo;"
2477
+ msgstr "Dernier &raquo;&raquo;"
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.po CHANGED
@@ -1,2597 +1,2597 @@
1
- # Translation of Profile Builder in Dutch
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"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\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&#37; 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&#37; 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&#37; 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&#37; 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"
145
- msgstr "Toon/Verberg de admin balk in de front-end"
146
-
147
- #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
148
- msgid "Admin Bar Settings"
149
- msgstr "Admin balk instellingen"
150
-
151
- #: ../admin/admin-bar.php:57
152
- msgid "User-Role"
153
- msgstr "Gebruikersrol"
154
-
155
- #: ../admin/admin-bar.php:58
156
- msgid "Visibility"
157
- msgstr "Zichtbaarheid"
158
-
159
- #: ../admin/admin-bar.php:73
160
- msgid "Default"
161
- msgstr "Standaard"
162
-
163
- #: ../admin/admin-bar.php:74
164
- msgid "Show"
165
- msgstr "Toon"
166
-
167
- #: ../admin/admin-bar.php:75
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"
176
- msgstr "Wijzigingen Opslaan"
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 "Je moet inloggen via het e-mailadres. Dit veld is NIET zichtbaar in de front-end! (je kunt deze instellingen wijzigen via de \"%s\" tab)"
181
-
182
- #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
183
- #: ../admin/general-settings.php:38
184
- msgid "General Settings"
185
- msgstr "Algemene Instellingen"
186
-
187
- #: ../admin/admin-functions.php:106
188
- msgid "<strong>ERROR</strong>: The password must have the minimum length of "
189
- msgstr "<strong>FOUT</strong>: Het wachtwoord moet een minimale lengte hebben van"
190
-
191
- #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
192
- msgid "Very weak"
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
-
210
- #: ../admin/admin-functions.php:123
211
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
212
- msgstr "<strong>FOUT</strong>: Het wachtwoord moet een minimale lengte hebben van"
213
-
214
- #: ../admin/admin-functions.php:162
215
- msgid "Add Field"
216
- msgstr "Veld Toevoegen"
217
-
218
- #: ../admin/admin-functions.php:164
219
- msgid "Save Settings"
220
- msgstr "Wijzigingen Opslaan"
221
-
222
- #: ../admin/basic-info.php:10
223
- msgid "Basic Information"
224
- msgstr "Basis Informatie"
225
-
226
- #: ../admin/basic-info.php:29
227
- msgid "Version %s"
228
- msgstr "Versie %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 "De beste manier om frond-end registratie, profiel bewerking en inlog formulieren toe te voegen."
237
-
238
- #: ../admin/basic-info.php:33
239
- msgid "For Modern User Interaction"
240
- msgstr "Voor moderne Gebruikers Interactie"
241
-
242
- #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
243
- msgid "Login"
244
- msgstr "Inloggen"
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 "Probleemloos inloggen via de <strong class=\"nowrap\">[wppb-login]</strong> shortcode of een widget."
249
-
250
- #: ../admin/basic-info.php:40
251
- msgid "Registration"
252
- msgstr "Registratie"
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 "Prachtige volledig aanpasbare registratie formulieren via de <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
257
-
258
- #: ../admin/basic-info.php:44
259
- msgid "Edit Profile"
260
- msgstr "Bewerk Profiel"
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 "Eenvoudige bewerkbare profiel formulieren via de <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
265
-
266
- #: ../admin/basic-info.php:51
267
- msgid "Extra Features"
268
- msgstr "Extra Functies"
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 "Functies die je meer controle geven over je gebruikers, meer veiligheid en je helpen tegen spam tijdens gebruikersregistratie."
273
-
274
- #: ../admin/basic-info.php:53
275
- msgid "Enable extra features"
276
- msgstr "Extra functies aanzetten"
277
-
278
- #: ../admin/basic-info.php:57
279
- msgid "Recover Password"
280
- msgstr "Wachtwoord Achterhalen"
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 "Sta gebruikers toe om wachtwoord in front-end te achterhalen via de [wppb-recover-password]."
285
-
286
- #: ../admin/basic-info.php:61
287
- msgid "Admin Approval (*)"
288
- msgstr "Goedkeuring Beheerder (*)"
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 "Jij bepaalt wie een gebruiker is op je website. Word geinformeerd via e-mail of keur meerdere gebruikers ineens goed van de WordPress UI."
293
-
294
- #: ../admin/basic-info.php:65
295
- msgid "Email Confirmation"
296
- msgstr "E-mail Bevestiging"
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 "Zorg ervoor dat gebruikers zich met echte e-mailadressen opgeven. Tijdens registratie zullen gebruikers een bericht ontvangen om e-mailadres te bevestigen."
301
-
302
- #: ../admin/basic-info.php:69
303
- msgid "Minimum Password Length and Strength Meter"
304
- msgstr "Minimale Wachtwoord Lengte en Kracht Meter"
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 "Elimineer zwakke wachtwoorden ineens door minimale wachtwoord lengte in te stellen en een bepaalde wachtwoord sterkte."
309
-
310
- #: ../admin/basic-info.php:73
311
- msgid "Login with Email or Username"
312
- msgstr "Inloggen met E-mailadres of Gebruikersnaam"
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 "Sta gebruikers toe om te inloggen met e-mailadres of gebruikersnaam wanneer ze je site bezoeken."
317
-
318
- #: ../admin/basic-info.php:87
319
- msgid "Customize Your Forms The Way You Want (*)"
320
- msgstr "Pas Je Formulieren Aan Zoals Jij Het Wilt (*)"
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 "Met extra Profielvelden kun je een registratie formulier maken die voldoet aan je project wensen."
325
-
326
- #: ../admin/basic-info.php:90
327
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
328
- msgstr "Extra Profielvelden zijn beschikbaar in Hobbyist of PRO versies"
329
-
330
- #: ../admin/basic-info.php:92
331
- msgid "Get started with extra fields"
332
- msgstr "Start met extra velden"
333
-
334
- #: ../admin/basic-info.php:95
335
- msgid "Avatar Upload"
336
- msgstr "Avatar Upload"
337
-
338
- #: ../admin/basic-info.php:96
339
- msgid "Generic Uploads"
340
- msgstr "Algemene Uploads"
341
-
342
- #: ../admin/basic-info.php:97
343
- msgid "Agree To Terms Checkbox"
344
- msgstr "Akkoord Met Voorwaarden Selectievakje"
345
-
346
- #: ../admin/basic-info.php:98
347
- msgid "Datepicker"
348
- msgstr "Datumpicker"
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 "Land Selectie"
357
-
358
- #: ../admin/basic-info.php:101
359
- msgid "Timezone Select"
360
- msgstr "Tijdzone Selectie"
361
-
362
- #: ../admin/basic-info.php:102
363
- msgid "Input / Hidden Input"
364
- msgstr "Invoer / Afgeschermde Invoer"
365
-
366
- #: ../admin/basic-info.php:103
367
- msgid "Checkbox"
368
- msgstr "Selectievakje"
369
-
370
- #: ../admin/basic-info.php:104
371
- msgid "Select"
372
- msgstr "Selecteer"
373
-
374
- #: ../admin/basic-info.php:105
375
- msgid "Radio Buttons"
376
- msgstr "Keuzerondjes"
377
-
378
- #: ../admin/basic-info.php:106
379
- msgid "Textarea"
380
- msgstr "Tekstgebied"
381
-
382
- #: ../admin/basic-info.php:115
383
- msgid "Powerful Modules (**)"
384
- msgstr "Sterke Modules (**)"
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 "Alles wat je nodig hebt om je gebruikers te beheren is waarschijnlijk al beschikbaar als je de PRO Modules gebruikt."
389
-
390
- #: ../admin/basic-info.php:118
391
- msgid "Enable your modules"
392
- msgstr "Je modules aanzetten"
393
-
394
- #: ../admin/basic-info.php:121
395
- msgid "Find out more about PRO Modules"
396
- msgstr "Leer meer over je PRO Modules"
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 "Gebruikersoverzicht"
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 "Eenvoudig om templates te bewerken die je website gebruikers tonen en om pagina's te maken voor losse gebruikers. Op shortcode gebaseerd, met vele opties om je overzichten aan te passen."
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 "Om een pagina te maken met de geregistreerde gebruikers van deze site/blog, voeg de volgende shortcode in de gewenste pagina: <strong class=\"nowrap\">[wppb-list-users]</strong>."
413
-
414
- #: ../admin/basic-info.php:134
415
- msgid "Email Customizer"
416
- msgstr "E-mailadres Aanpasser"
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 "Personaliseer alle e-mails die naar je gebruikers of beheerders gestuurd worden. Na registratie, e-mail bevestiging, goedkeuring / afkeuring van beheerder."
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 "Aangepaste Doorverwijzingen"
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 "Laat je gebruikers uit het WordPress Dashboard, stuur ze door naar de homepage na inloggen of registratie, alles is onder handbereik."
431
-
432
- #: ../admin/basic-info.php:144 ../modules/modules.php:97
433
- msgid "Multiple Registration Forms"
434
- msgstr "Meerdere Registratie Formulieren"
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 "Maak meerdere registratieformulieren met verschillende velden voor bepaalde gebruikersgroepen. Ontvang verschillende informatie van verschillende type gebruikers."
439
-
440
- #: ../admin/basic-info.php:148 ../modules/modules.php:104
441
- msgid "Multiple Edit-profile Forms"
442
- msgstr "Meerdere Bewerk Profiel Formulieren"
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 "Sta verschillende gebruikersgroepen toe om specifieke informatie te bewerken. Maak meerdere Bewerk Profiel formulieren met verschillende velden voor bepaalde gebruikersgroepen."
447
-
448
- #: ../admin/basic-info.php:161
449
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
450
- msgstr "* alleen beschikbaar in de %1$sHobbyist en Pro versies%2$s."
451
-
452
- #: ../admin/basic-info.php:162
453
- msgid "** only available in the %1$sPro version%2$s."
454
- msgstr "** alleen beschikbaar in de %1$sPro versies%2$s."
455
-
456
- #: ../admin/general-settings.php:42
457
- msgid "Load Profile Builder's own CSS file in the front-end:"
458
- msgstr "Laad Profile Builder's eigen CSS bestand in de 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 "Ja"
467
-
468
- #: ../admin/general-settings.php:47
469
- msgid "You can find the default file here: %1$s"
470
- msgstr "Je kunt het standaard bestand hier vinden: %1$s"
471
-
472
- #: ../admin/general-settings.php:56
473
- msgid "\"Email Confirmation\" Activated:"
474
- msgstr "\"E-mail Bevestiging\" Geactiveerd:"
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 "Nee"
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 "Op enkele-site installaties werkt dit alleen met front-end formulieren. Het is aan te raden om de standaard WP registratie door te verwijzen naar die van Profile Builder, middels de \"Aangepaste Doorverwijzingen\" functie."
485
-
486
- #: ../admin/general-settings.php:65
487
- msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
488
- msgstr "De \"E-mail Bevestiging\" functie is (standaard) actief op WPMU installaties."
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 "Je kunt een lijst met niet bevestigde e-mailadressen vinden %1$sGebruikers > Alle Gebruikers > E-mail Bevestiging%2$s."
493
-
494
- #: ../admin/general-settings.php:79
495
- msgid "\"Email Confirmation\" Landing Page:"
496
- msgstr "\"E-mail Bevestiging\" Begin Pagina:"
497
-
498
- #: ../admin/general-settings.php:84
499
- msgid "Existing Pages"
500
- msgstr "Bestaande Pagina's"
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 "Specificeer de pagina waar gebruikers naar worden doorgestuurd wanneer ze hun e-mail bevestigen. Dit kan een andere pagina zijn dan de geregistreerde pagina's en kan altijd gewijzigd worden. Als er niets geselecteerd is, zal een eenvoudige bevestigingspagina aan gebruiker getoond worden."
505
-
506
- #: ../admin/general-settings.php:110
507
- msgid "\"Admin Approval\" Activated:"
508
- msgstr "\"Goedkeuring Beheerder\" Geactiveerd:"
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 "Je kunt een gebruikerslijst vinden bij %1$sGebruikers > Alle Gebruikers > Goedkeuring Beheerder%2$s."
513
-
514
- #: ../admin/general-settings.php:130
515
- msgid "\"Admin Approval\" Feature:"
516
- msgstr "\"Goedkeuring Beheerder\" Functie:"
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 "Jij bepaalt wie een gebruikers is op je website. Krijg bericht via e-mail of keur meerdere gebruikers in 1 keer goed via het WordPress Dashboard. Zet Goedkeuring Beheerder aan door te upgraden naar %1$sHobbyist of PRO versies%2$s."
521
-
522
- #: ../admin/general-settings.php:140
523
- msgid "Allow Users to Log in With:"
524
- msgstr "Sta Gebruikers toe in te loggen met:"
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 "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
-
543
- #: ../admin/general-settings.php:152
544
- msgid "Minimum Password Length:"
545
- msgstr "Minimale Wachtwoord Lengte:"
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 "Voer het minimaal aantal karakters in die wachtwoord mag hebben. Laat leeg voor geen minimale limiet."
550
-
551
- #: ../admin/general-settings.php:164
552
- msgid "Minimum Password Strength:"
553
- msgstr "Minimale Wachtwoord Sterkte:"
554
-
555
- #: ../admin/general-settings.php:168
556
- msgid "Disabled"
557
- msgstr "Uitgeschakeld"
558
-
559
- #: ../admin/manage-fields.php:12
560
- msgid "Manage Fields"
561
- msgstr "Beheer Velden"
562
-
563
- #: ../admin/manage-fields.php:13
564
- msgid "Manage Default and Extra Fields"
565
- msgstr "Beheer Standaard en Extra Velden"
566
-
567
- #: ../admin/manage-fields.php:74
568
- msgid "Field Title"
569
- msgstr "Veld Titel"
570
-
571
- #: ../admin/manage-fields.php:74
572
- msgid "Title of the field"
573
- msgstr "Titel van het Veld"
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 "Veld"
580
-
581
- #: ../admin/manage-fields.php:76
582
- msgid "Meta-name"
583
- msgstr "Meta-naam"
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 "Gebruik dit in combinatie met de WordPress functies om de waarde te tonen in de gewenste pagina<br/>Auto-aangevuld maar is sommige gevallen te wijzigen (indien het uniek is)<br/>In het geval van een groot aantal gebruikers zal het lang duren voordat dit gewijzigd is"
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 "Een unieke, automatisch aangemaakte ID voor dit bepaalde veld<br/>Je kunt dit gebruiken in combinatie met filters om dit element te richten, indien nodig<br/>Kan niet gewijzigd worden"
600
-
601
- #: ../admin/manage-fields.php:78
602
- msgid "Description"
603
- msgstr "Beschrijving"
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 "Voer een (gedetailleerde) beschrijving in van de functie, die gebruikers kunnen lezen<br/>Optioneel"
608
-
609
- #: ../admin/manage-fields.php:79
610
- msgid "Row Count"
611
- msgstr "Rij Telling"
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 "Specificeer aantal rijen voor een 'Tekstgebied' veld<br/>Indien niet gespecificeerd, standaard is 5"
616
-
617
- #: ../admin/manage-fields.php:80
618
- msgid "Allowed Image Extensions"
619
- msgstr "Toegestane Foto Extensies"
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 "Specificeer de extensie(s) om upload te limiteren<br/>Voorbeeld: .ext1,.ext2,.ext3<br/>Indien niet gespecificeerd, standaard alle bestaande foto extensies (.*)"
624
-
625
- #: ../admin/manage-fields.php:81
626
- msgid "Allowed Upload Extensions"
627
- msgstr "Toegestane Upload Extensies"
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 "Specificeer de extensie(s) om upload te limiteren<br/>Voorbeeld: .ext1,.ext2,.ext3<br/>Indien niet gespecificeerd, standaard alle bestaande extensies (.*)"
632
-
633
- #: ../admin/manage-fields.php:82
634
- msgid "Avatar Size"
635
- msgstr "Avatar Grootte"
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 "Voer een waarde in (tussen 20 en 200) voor de grootte van de 'Avatar'<br/>Indien niet gespecificeerd, standaard is 100"
640
-
641
- #: ../admin/manage-fields.php:83
642
- msgid "Date-format"
643
- msgstr "Datum-formaat"
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 "Specificeer datum formaat als je de datum picker gebruikt<br/>Geldige opties: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Indien niet gespecificeerd, standaard is mm/dd/yy"
648
-
649
- #: ../admin/manage-fields.php:84
650
- msgid "Terms of Agreement"
651
- msgstr "Algemene Voorwaarden"
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: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
655
- msgstr "Voer een (gedetailleerde) beschrijving in van de algemene voorwaarden, die gebruikers kunnen lezen<br/>Links kunnen ingevoerd worden middels de standaard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
656
-
657
- #: ../admin/manage-fields.php:85
658
- msgid "Options"
659
- msgstr "Opties"
660
-
661
- #: ../admin/manage-fields.php:86
662
- msgid "Labels"
663
- msgstr "Labels"
664
-
665
- #: ../admin/manage-fields.php:86
666
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
667
- msgstr "Voer een met komma's gescheiden lijst van labels in<br/>Zichtbaar voor de gebruiker"
668
-
669
- #: ../admin/manage-fields.php:87
670
- msgid "Public Key"
671
- msgstr "Publieke Sleutel"
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 "De Publieke Sleutel van 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 "Prive Sleutel"
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 "De Prive Sleutel van 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 "Standaard Waarde"
688
-
689
- #: ../admin/manage-fields.php:89
690
- msgid "Default value of the field"
691
- msgstr "Standaard waarde van het veld"
692
-
693
- #: ../admin/manage-fields.php:90
694
- msgid "Default Option"
695
- msgstr "Standaard Optie"
696
-
697
- #: ../admin/manage-fields.php:90
698
- msgid "Specify the option which should be selected by default"
699
- msgstr "Specificeer de optie die als standaard geselecteerd wordt"
700
-
701
- #: ../admin/manage-fields.php:91
702
- msgid "Default Option(s)"
703
- msgstr "Standaard Optie(s)"
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 "Specificeer de optie die als standaard geselecteerd wordt<br/>Als er meerdere waardes zijn, scheid ze met een ',' (komma)"
708
-
709
- #: ../admin/manage-fields.php:92
710
- msgid "Default Content"
711
- msgstr "Standaard Inhoud"
712
-
713
- #: ../admin/manage-fields.php:92
714
- msgid "Default value of the textarea"
715
- msgstr "Standaard waarde van tekstgebied"
716
-
717
- #: ../admin/manage-fields.php:93
718
- msgid "Required"
719
- msgstr "Verplicht"
720
-
721
- #: ../admin/manage-fields.php:93
722
- msgid "Whether the field is required or not"
723
- msgstr "Of een veld verplicht is of niet"
724
-
725
- #: ../admin/manage-fields.php:94
726
- msgid "Overwrite Existing"
727
- msgstr "Overschrijf Bestaande"
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 "Als je 'Ja' selecteert zal veld aan de lijst toegevoegd worden, maar zal alle andere velden in database overschrijven, die dezelfde meta-naam hebben<br/>Gebruik dit op eigen risico"
732
-
733
- #: ../admin/manage-fields.php:100
734
- msgid "Field Properties"
735
- msgstr "Veld Eigenschappen"
736
-
737
- #: ../admin/manage-fields.php:113
738
- msgid "Registration & Edit Profile"
739
- msgstr "Registratie & Beheer Profiel"
740
-
741
- #: ../admin/manage-fields.php:132
742
- msgid "Name"
743
- msgstr "Naam"
744
-
745
- #: ../admin/manage-fields.php:133
746
- msgid "Usernames cannot be changed."
747
- msgstr "Gebruikersnamen kunnen niet veranderd worden."
748
-
749
- #: ../admin/manage-fields.php:134
750
- msgid "First Name"
751
- msgstr "Voornaam"
752
-
753
- #: ../admin/manage-fields.php:135
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
-
761
- #: ../admin/manage-fields.php:137
762
- msgid "Display name publicly as"
763
- msgstr "Toon publiek als"
764
-
765
- #: ../admin/manage-fields.php:138
766
- msgid "Contact Info"
767
- msgstr "Contact Info"
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-mailadres"
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 "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
-
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 "Vertel iets over jezelf. Dit kan voor iedereen zichtbaar zijn."
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 "Wachtwoord"
814
-
815
- #: ../admin/manage-fields.php:151
816
- msgid "Type your password."
817
- msgstr "Voer je wachtwoord in."
818
-
819
- #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
820
- msgid "Repeat Password"
821
- msgstr "Herhaal Wachtwoord"
822
-
823
- #: ../admin/manage-fields.php:152
824
- msgid "Type your password again. "
825
- msgstr "Voer je wachtwoord opnieuw in."
826
-
827
- #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
828
- msgid "You must select a field\n"
829
- msgstr "Je moet een veld selecteren\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 "Selecteer svp een ander type veld omdat deze al in je formulier staat (moet uniek zijn)\n"
834
-
835
- #: ../admin/manage-fields.php:329
836
- msgid "The entered avatar size is not between 20 and 200\n"
837
- msgstr "De ingevoerde avatar grootte is niet tussen 20 en 200\n"
838
-
839
- #: ../admin/manage-fields.php:332
840
- msgid "The entered avatar size is not numerical\n"
841
- msgstr "De ingevoerde avatar grootte is niet numeriek\n"
842
-
843
- #: ../admin/manage-fields.php:340
844
- msgid "The entered row number is not numerical\n"
845
- msgstr "Het ingevoerde rij nummer is niet numeriek\n"
846
-
847
- #: ../admin/manage-fields.php:343
848
- msgid "You must enter a value for the row number\n"
849
- msgstr "Je moet een waarde invoeren voor het rij nummer\n"
850
-
851
- #: ../admin/manage-fields.php:351
852
- msgid "You must enter the public key\n"
853
- msgstr "Je moet de publieke sleutel invoeren\n"
854
-
855
- #: ../admin/manage-fields.php:353
856
- msgid "You must enter the private key\n"
857
- msgstr "Je moet de prive sleutel invoeren\n"
858
-
859
- #: ../admin/manage-fields.php:361
860
- msgid "The entered value for the Datepicker is not a valid date-format\n"
861
- msgstr "De ingevoerde waarde voor de datum picker is geen geldig datum formaat\n"
862
-
863
- #: ../admin/manage-fields.php:364
864
- msgid "You must enter a value for the date-format\n"
865
- msgstr "Je moet een waarde voor het datum formaat invoeren\n"
866
-
867
- #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
868
- #: ../admin/manage-fields.php:410
869
- msgid "That meta-name is already in use\n"
870
- msgstr "Deze meta-naam is al in gebruik\n"
871
-
872
- #: ../admin/manage-fields.php:432
873
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
874
- msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s\n"
875
-
876
- #: ../admin/manage-fields.php:436
877
- msgid "The following option did not coincide with the ones in the options list: %s\n"
878
- msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s \n"
879
-
880
- #: ../admin/manage-fields.php:451
881
- msgid "That field is already added in this form\n"
882
- msgstr "Dat veld is al aan dit formulier toegevoegd\n"
883
-
884
- #: ../admin/manage-fields.php:500
885
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
886
- msgstr "<pre>Titel</pre><pre>Type</pre><pre>Meta Naam</pre><pre class=\"wppb-mb-head-required\">Verplicht</pre>"
887
-
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"
895
-
896
- #: ../admin/manage-fields.php:500
897
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
898
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
899
- #: ../features/admin-approval/class-admin-approval.php:124
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
-
907
- #: ../admin/manage-fields.php:515
908
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
909
- msgstr "Gebruik deze shortcodes op de pagina's waarop je de formulieren wilt tonen:"
910
-
911
- #: ../admin/manage-fields.php:521
912
- 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."
913
- msgstr "Als je geinteresseerd bent in het tonen van verschillende velden in de registratie en bewerk profiel formulieren, gebruik svp de Meerdere Registraties & Bewerk Profiel Formulieren Addon. "
914
-
915
- #: ../admin/register-version.php:11
916
- msgid "Register Your Version"
917
- msgstr "Registreer je Versie"
918
-
919
- #: ../admin/register-version.php:11
920
- msgid "Register Version"
921
- msgstr "Registreer Versie"
922
-
923
- #: ../admin/register-version.php:58
924
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
925
- msgstr "Als je deze versie van Profile Builder registreert, zul je informatie ontvangen inzake updates, patches en technisch support."
926
-
927
- #: ../admin/register-version.php:60
928
- msgid " Serial Number:"
929
- msgstr "Serienummer:"
930
-
931
- #: ../admin/register-version.php:65
932
- msgid "The serial number was successfully validated!"
933
- msgstr "Het serienummer is succesvol gevalideerd!"
934
-
935
- #: ../admin/register-version.php:67
936
- msgid "The serial number entered couldn't be validated!"
937
- msgstr "Het ingevoerde serienummer kon niet gevalideerd worden!"
938
-
939
- #: ../admin/register-version.php:69
940
- msgid "The serial number couldn't be validated because it expired!"
941
- msgstr "Het serienummer kon niet gevalideerd worden want is verlopen!"
942
-
943
- #: ../admin/register-version.php:71
944
- 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!"
945
- msgstr "Het serienummer kon niet gevalideerd worden omdat het proces verlopen is. Dit komt mogelijk doordat de server niet werkt. Probeer het svp later opnieuw!"
946
-
947
- #: ../admin/register-version.php:73
948
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
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
-
956
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
957
- msgid "Edit this item"
958
- msgstr "Bewerk dit item"
959
-
960
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
961
- msgid "Delete this item"
962
- msgstr "Verwijder dit item"
963
-
964
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
965
- msgid "Please enter a value for the required field "
966
- msgstr "Voer svp een waarde in voor het verplichte veld"
967
-
968
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
969
- msgid "Select File"
970
- msgstr "Selecteer Bestand"
971
-
972
- #: ../assets/lib/wck-api/fields/upload.php:31
973
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
974
- msgid "Remove"
975
- msgstr "Verwijder"
976
-
977
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
978
- msgid "Syncronize WCK"
979
- msgstr "Synchroniseer WCK"
980
-
981
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
982
- msgid "Syncronize WCK Translation"
983
- msgstr "Synchroniseer WCK Vertaling"
984
-
985
- #: ../assets/lib/wck-api/fields/nested repeater.php:8
986
- msgid "You can add the information for the %s after you add a entry"
987
- msgstr "Je kunt informatie toevoegen voor %s nadat je een item hebt toegevoegd"
988
-
989
- #: ../assets/lib/wck-api/fields/upload.php:48
990
- msgid "Upload "
991
- msgstr "Uploaden"
992
-
993
- #: ../features/class-list-table.php:184
994
- msgid "No items found."
995
- msgstr "Geen items gevonden."
996
-
997
- #: ../features/class-list-table.php:308
998
- msgid "Bulk Actions"
999
- msgstr "Bulk Acties"
1000
-
1001
- #: ../features/class-list-table.php:318
1002
- msgid "Apply"
1003
- msgstr "Toepassen"
1004
-
1005
- #: ../features/class-list-table.php:402
1006
- msgid "Show all dates"
1007
- msgstr "Toon alle data"
1008
-
1009
- #: ../features/class-list-table.php:415
1010
- msgid "%1$s %2$d"
1011
- msgstr "%1$s %2$d"
1012
-
1013
- #: ../features/class-list-table.php:431
1014
- msgid "List View"
1015
- msgstr "Toon Lijst"
1016
-
1017
- #: ../features/class-list-table.php:432
1018
- msgid "Excerpt View"
1019
- msgstr "Toon fragment"
1020
-
1021
- #: ../features/class-list-table.php:458
1022
- msgid "%s pending"
1023
- msgstr "%s in afwachting"
1024
-
1025
- #: ../features/class-list-table.php:566
1026
- msgid "%1$s of %2$s"
1027
- msgstr "%1$s van %2$s"
1028
-
1029
- #: ../features/class-list-table.php:713
1030
- msgid "Select All"
1031
- msgstr "Selecteer Alle"
1032
-
1033
- #: ../features/functions.php:193 ../features/functions.php:194
1034
- msgid "Profile Builder"
1035
- msgstr "Profile Builder"
1036
-
1037
- #: ../features/functions.php:261
1038
- msgid "The user-validation has failed - the avatar was not deleted!"
1039
- msgstr "Validatie gebruiker mislukt - de avatar is niet verwijderd!"
1040
-
1041
- #: ../features/functions.php:272
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"
1052
- msgstr "Goedkeuring Beheerder"
1053
-
1054
- #: ../features/admin-approval/admin-approval.php:22
1055
- #: ../features/email-confirmation/email-confirmation.php:58
1056
- msgid "Do you want to"
1057
- msgstr "Wil je"
1058
-
1059
- #: ../features/admin-approval/admin-approval.php:45
1060
- msgid "Your session has expired! Please refresh the page and try again"
1061
- msgstr "Je sessie is verlopen. Ververs svp de pagina en probeer het opnieuw "
1062
-
1063
- #: ../features/admin-approval/admin-approval.php:56
1064
- msgid "User successfully approved!"
1065
- msgstr "Gebruiker succesvol goedgekeurd!"
1066
-
1067
- #: ../features/admin-approval/admin-approval.php:64
1068
- msgid "User successfully unapproved!"
1069
- msgstr "Gebruiker succesvol afgekeurd!"
1070
-
1071
- #: ../features/admin-approval/admin-approval.php:70
1072
- msgid "User successfully deleted!"
1073
- msgstr "Gebruiker succesvol verwijderd!"
1074
-
1075
- #: ../features/admin-approval/admin-approval.php:75
1076
- #: ../features/admin-approval/admin-approval.php:140
1077
- #: ../features/email-confirmation/email-confirmation.php:122
1078
- msgid "You either don't have permission for that action or there was an error!"
1079
- msgstr "Je hebt of geen goedkeuring voor deze actie of er was een fout!"
1080
-
1081
- #: ../features/admin-approval/admin-approval.php:87
1082
- msgid "Your session has expired! Please refresh the page and try again."
1083
- msgstr "Je sessie is verlopen. Ververs svp de pagina en probeer het opnieuw."
1084
-
1085
- #: ../features/admin-approval/admin-approval.php:107
1086
- msgid "Users successfully approved!"
1087
- msgstr "Gebruiker succesvol goedgekeurd! "
1088
-
1089
- #: ../features/admin-approval/admin-approval.php:122
1090
- msgid "Users successfully unapproved!"
1091
- msgstr "Gebruiker succesvol afgekeurd!"
1092
-
1093
- #: ../features/admin-approval/admin-approval.php:135
1094
- msgid "Users successfully deleted!"
1095
- msgstr "Gebruiker succesvol verwijderd!"
1096
-
1097
- #: ../features/admin-approval/admin-approval.php:150
1098
- msgid "Your account on %1$s has been approved!"
1099
- msgstr "Je account op %1$s is goedgekeurd!"
1100
-
1101
- #: ../features/admin-approval/admin-approval.php:151
1102
- #: ../features/admin-approval/admin-approval.php:154
1103
- msgid "approved"
1104
- msgstr "goedgekeurd"
1105
-
1106
- #: ../features/admin-approval/admin-approval.php:153
1107
- msgid "An administrator has just approved your account on %1$s (%2$s)."
1108
- msgstr "Een beheerder heeft net je account goedgekeurd op %1$s (%2$s)."
1109
-
1110
- #: ../features/admin-approval/admin-approval.php:157
1111
- msgid "Your account on %1$s has been unapproved!"
1112
- msgstr "Je account op %1$s is afgekeurd!"
1113
-
1114
- #: ../features/admin-approval/admin-approval.php:158
1115
- #: ../features/admin-approval/admin-approval.php:161
1116
- msgid "unapproved"
1117
- msgstr "afgekeurd"
1118
-
1119
- #: ../features/admin-approval/admin-approval.php:160
1120
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1121
- msgstr "Een beheerder heeft net je account afgekeurd op %1$s (%2$s)."
1122
-
1123
- #: ../features/admin-approval/admin-approval.php:177
1124
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1125
- msgstr "<strong>FOUT</strong>: Je account moet bevestigd worden door een beheerder voordat je kunt inloggen. "
1126
-
1127
- #: ../features/admin-approval/admin-approval.php:189
1128
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1129
- msgstr "Je account moet bevestigd worden door een beheerder voordat je \"Wachtwoord Achterhalen\" functie kunt gebruiken."
1130
-
1131
- #: ../features/admin-approval/class-admin-approval.php:119
1132
- msgid "View or Edit"
1133
- msgstr "Bekijk of Bewerk"
1134
-
1135
- #: ../features/admin-approval/class-admin-approval.php:124
1136
- msgid "delete this user?"
1137
- msgstr "deze gebruiker verwijderen?"
1138
-
1139
- #: ../features/admin-approval/class-admin-approval.php:127
1140
- msgid "unapprove this user?"
1141
- msgstr "deze gebruiker afkeuren?"
1142
-
1143
- #: ../features/admin-approval/class-admin-approval.php:127
1144
- #: ../features/admin-approval/class-admin-approval.php:234
1145
- msgid "Unapprove"
1146
- msgstr "Afkeuren"
1147
-
1148
- #: ../features/admin-approval/class-admin-approval.php:129
1149
- msgid "approve this user?"
1150
- msgstr "deze gebruiker goedkeuren?"
1151
-
1152
- #: ../features/admin-approval/class-admin-approval.php:129
1153
- #: ../features/admin-approval/class-admin-approval.php:233
1154
- msgid "Approve"
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
-
1169
- #: ../features/admin-approval/class-admin-approval.php:181
1170
- #: ../modules/user-listing/userlisting.php:117
1171
- msgid "Role"
1172
- msgstr "Rol"
1173
-
1174
- #: ../features/admin-approval/class-admin-approval.php:182
1175
- #: ../features/email-confirmation/class-email-confirmation.php:155
1176
- msgid "Registered"
1177
- msgstr "Geregistreerd"
1178
-
1179
- #: ../features/admin-approval/class-admin-approval.php:183
1180
- msgid "User-status"
1181
- msgstr "Status Gebruiker"
1182
-
1183
- #: ../features/admin-approval/class-admin-approval.php:263
1184
- msgid "Do you want to bulk approve the selected users?"
1185
- msgstr "Wil je de geselecteerde gebruikers in 1 keer goedkeuren?"
1186
-
1187
- #: ../features/admin-approval/class-admin-approval.php:271
1188
- msgid "Do you want to bulk unapprove the selected users?"
1189
- msgstr "Wil je de geselecteerde gebruikers in 1 keer afkeuren?"
1190
-
1191
- #: ../features/admin-approval/class-admin-approval.php:277
1192
- msgid "Do you want to bulk delete the selected users?"
1193
- msgstr "Wil je de geselecteerde gebruikers in 1 keer verwijderen?"
1194
-
1195
- #: ../features/admin-approval/class-admin-approval.php:285
1196
- #: ../features/email-confirmation/class-email-confirmation.php:263
1197
- msgid "Sorry, but you don't have permission to do that!"
1198
- msgstr "Sorry, je hebt geen toestemming om dit te doen!"
1199
-
1200
- #: ../features/admin-approval/class-admin-approval.php:318
1201
- msgid "Approved"
1202
- msgstr "Goedgekeurd"
1203
-
1204
- #: ../features/admin-approval/class-admin-approval.php:320
1205
- msgid "Unapproved"
1206
- msgstr "Afgekeurd"
1207
-
1208
- #: ../features/admin-approval/class-admin-approval.php:492
1209
- #: ../features/email-confirmation/class-email-confirmation.php:448
1210
- msgid "All Users"
1211
- msgstr "Alle Gebruikers"
1212
-
1213
- #: ../features/email-confirmation/class-email-confirmation.php:106
1214
- msgid "delete this user from the _signups table?"
1215
- msgstr "verwijder gebruiker van de _signups tabel?"
1216
-
1217
- #: ../features/email-confirmation/class-email-confirmation.php:107
1218
- msgid "confirm this email yourself?"
1219
- msgstr "dit e-mailadres zelf bevestigen?"
1220
-
1221
- #: ../features/email-confirmation/class-email-confirmation.php:107
1222
- #: ../features/email-confirmation/class-email-confirmation.php:203
1223
- msgid "Confirm Email"
1224
- msgstr "E-mailadres Bevestigen "
1225
-
1226
- #: ../features/email-confirmation/class-email-confirmation.php:108
1227
- msgid "resend the activation link?"
1228
- msgstr "de activatielink opnieuw sturen?"
1229
-
1230
- #: ../features/email-confirmation/class-email-confirmation.php:108
1231
- #: ../features/email-confirmation/class-email-confirmation.php:204
1232
- msgid "Resend Activation Email"
1233
- msgstr "Activatiemail Opnieuw Sturen"
1234
-
1235
- #: ../features/email-confirmation/class-email-confirmation.php:234
1236
- msgid "%s couldn't be deleted"
1237
- msgstr "%s kon niet verwijderd worden"
1238
-
1239
- #: ../features/email-confirmation/class-email-confirmation.php:238
1240
- msgid "All users have been successfully deleted"
1241
- msgstr "Alle gebruikers zijn succesvol verwijderd"
1242
-
1243
- #: ../features/email-confirmation/class-email-confirmation.php:248
1244
- msgid "The selected users have been activated"
1245
- msgstr "De geselecteerde gebruikers zijn geactiveerd"
1246
-
1247
- #: ../features/email-confirmation/class-email-confirmation.php:259
1248
- msgid "The selected users have had their activation emails resent"
1249
- msgstr "Activatiemail is opnieuw gestuurd naar de geselecteerde gebruikers "
1250
-
1251
- #: ../features/email-confirmation/class-email-confirmation.php:445
1252
- #: ../features/email-confirmation/email-confirmation.php:47
1253
- msgid "Users with Unconfirmed Email Address"
1254
- msgstr "Gebruikers met niet bevestigde e-mailadressen"
1255
-
1256
- #: ../features/email-confirmation/email-confirmation.php:97
1257
- msgid "There was an error performing that action!"
1258
- msgstr "Fout opgetreden tijdens deze actie!"
1259
-
1260
- #: ../features/email-confirmation/email-confirmation.php:105
1261
- msgid "The selected user couldn't be deleted"
1262
- msgstr "De geselecteerde gebruiker kon niet verwijderd worden"
1263
-
1264
- #: ../features/email-confirmation/email-confirmation.php:116
1265
- msgid "Email notification resent to user"
1266
- msgstr "E-mail notificatie opnieuw gestuurd naar gebruiker"
1267
-
1268
- #: ../features/email-confirmation/email-confirmation.php:349
1269
- msgid "[%1$s] Activate %2$s"
1270
- msgstr "[%1$s] Activeer %2$s"
1271
-
1272
- #: ../features/email-confirmation/email-confirmation.php:350
1273
- msgid ""
1274
- "To activate your user, please click the following link:\n"
1275
- "\n"
1276
- "%s%s%s\n"
1277
- "\n"
1278
- "After you activate it you will receive yet *another email* with your login."
1279
- msgstr ""
1280
- "Om je gebruiker te activeren, klik op de volgende link:\n"
1281
- "\n"
1282
- "%s%s%s\n"
1283
- "\n"
1284
- "Nadat je het geactiveerd hebt ontvang je nog *een andere e-mail* met je inlog."
1285
-
1286
- #: ../features/email-confirmation/email-confirmation.php:388
1287
- #: ../front-end/register.php:68
1288
- msgid "Could not create user!"
1289
- msgstr "Kon gebruiker niet aanmaken!"
1290
-
1291
- #: ../features/email-confirmation/email-confirmation.php:391
1292
- msgid "That username is already activated!"
1293
- msgstr "Die gebruikersnaam is al geactiveerd!"
1294
-
1295
- #: ../features/email-confirmation/email-confirmation.php:420
1296
- msgid "There was an error while trying to activate the user"
1297
- msgstr "Fout opgetreden tijdens activatie van de gebruiker"
1298
-
1299
- #: ../features/email-confirmation/email-confirmation.php:458
1300
- #: ../modules/email-customizer/admin-email-customizer.php:73
1301
- msgid "A new subscriber has (been) registered!"
1302
- msgstr "Een nieuw abonnee is geregistreerd!"
1303
-
1304
- #: ../features/email-confirmation/email-confirmation.php:461
1305
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1306
- msgstr "Nieuwe abonnee op %1$s.<br/><br/>Gebruikersnaam:%2$s<br/>E-mailadres:%3$s<br/>"
1307
-
1308
- #: ../features/email-confirmation/email-confirmation.php:466
1309
- 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!"
1310
- msgstr "De functie \"Goedkeuring Beheerder\" is tijdens registratie geactiveerd, zo vergeet niet dat je gebruiker moet goedkeuren voordat hij/zij kan inloggen!"
1311
-
1312
- #: ../features/email-confirmation/email-confirmation.php:481
1313
- msgid "[%1$s] Your new account information"
1314
- msgstr "[%1$s] Je nieuwe account informatie"
1315
-
1316
- #: ../features/email-confirmation/email-confirmation.php:484
1317
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1318
- msgstr "Welkom op %1$s!<br/><br/><br/>Je gebruikersnaam is:%2$s en wachtwoord:%3$s"
1319
-
1320
- #: ../features/email-confirmation/email-confirmation.php:489
1321
- #: ../front-end/register.php:103
1322
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1323
- msgstr "Voordat je toegang tot je account hebt, moet een beheerder dit goedkeuren. Je wordt geinformeerd via e-mail."
1324
-
1325
- #: ../features/login-widget/login-widget.php:10
1326
- msgid "This login widget lets you add a login form in the sidebar."
1327
- msgstr "Met deze inlog widget kun je een inlogformulier in sidebar plaatsen."
1328
-
1329
- #: ../features/login-widget/login-widget.php:15
1330
- msgid "Profile Builder Login Widget"
1331
- msgstr "Profile Builder Inlog Widget"
1332
-
1333
- #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1334
- msgid "Register"
1335
- msgstr "Registreer"
1336
-
1337
- #: ../features/login-widget/login-widget.php:63
1338
- msgid "Title:"
1339
- msgstr "Titel:"
1340
-
1341
- #: ../features/login-widget/login-widget.php:68
1342
- msgid "After login redirect URL (optional):"
1343
- msgstr "Doorverwijs URL na inloggen (optioneel):"
1344
-
1345
- #: ../features/login-widget/login-widget.php:73
1346
- msgid "Register page URL (optional):"
1347
- msgstr "Registratie pagina URL (optioneel):"
1348
-
1349
- #: ../features/login-widget/login-widget.php:78
1350
- msgid "Password Recovery page URL (optional):"
1351
- msgstr "Wachtwoord Achterhalen URL (optioneel):"
1352
-
1353
- #: ../features/upgrades/upgrades-functions.php:91
1354
- #: ../features/upgrades/upgrades-functions.php:134
1355
- msgid "The usernames cannot be changed."
1356
- msgstr "De gebruikersnaam kan niet gewijzigd worden."
1357
-
1358
- #: ../front-end/class-formbuilder.php:83
1359
- msgid "Only an administrator can add new users."
1360
- msgstr "Alleen een beheerder kan nieuwe gebruikers toevoegen."
1361
-
1362
- #: ../front-end/class-formbuilder.php:93
1363
- msgid "Users can register themselves or you can manually create users here."
1364
- msgstr "Gebruikers kunnen zichzelf registreren of je kunt hier handmatig gebruikers aanmaken."
1365
-
1366
- #: ../front-end/class-formbuilder.php:96
1367
- msgid "Users cannot currently register themselves, but you can manually create users here."
1368
- msgstr "Gebruikers kunnen zich momenteel niet zelf registreren, maar je kunt hier handmatig gebruikers aanmaken."
1369
-
1370
- #: ../front-end/class-formbuilder.php:108
1371
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
1372
- msgstr "Je bent momenteel ingelogd als %1s. Je hebt geen ander account nodig. %2s"
1373
-
1374
- #: ../front-end/class-formbuilder.php:108
1375
- msgid "Log out of this account."
1376
- msgstr "Uitloggen van dit account."
1377
-
1378
- #: ../front-end/class-formbuilder.php:108
1379
- msgid "Logout"
1380
- msgstr "Uitloggen"
1381
-
1382
- #: ../front-end/class-formbuilder.php:114
1383
- msgid "You must be logged in to edit your profile."
1384
- msgstr "Je moet ingelogd zijn om je profiel te bewerken."
1385
-
1386
- #: ../front-end/class-formbuilder.php:137
1387
- msgid "here"
1388
- msgstr "hier"
1389
-
1390
- #: ../front-end/class-formbuilder.php:139
1391
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1392
- msgstr "Je wordt snel automatisch doorgestuurd. Als je deze pagina meer dan %1$d seconden ziet, klik svp %2$s.%3$s"
1393
-
1394
- #: ../front-end/class-formbuilder.php:224
1395
- msgid "The account %1s has been successfully created!"
1396
- msgstr "Het account %1s is succesvol gemaakt!"
1397
-
1398
- #: ../front-end/class-formbuilder.php:227
1399
- #: ../front-end/class-formbuilder.php:233
1400
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1401
- msgstr "Voordat je toegang krijgt tot het account %1s, moet je het e-mailadres bevestigen. Kijk svp in je inbox en klik op de activatielink."
1402
-
1403
- #: ../front-end/class-formbuilder.php:230
1404
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1405
- msgstr "Voordat je toegang krijgt tot het account %1s, moet een beheerder dit goedkeuren. Je wordt geinformeerd via e-mail."
1406
-
1407
- #: ../front-end/class-formbuilder.php:243
1408
- msgid "Your profile has been successfully updated!"
1409
- msgstr "Je profiel is succesvol bijgewerkt!"
1410
-
1411
- #: ../front-end/class-formbuilder.php:253
1412
- msgid "There was an error in the submitted form"
1413
- msgstr "Fout tijdens versturen van het formulier"
1414
-
1415
- #: ../front-end/class-formbuilder.php:274
1416
- msgid "Add User"
1417
- msgstr "Gebruiker Toevoegen"
1418
-
1419
- #: ../front-end/class-formbuilder.php:277
1420
- msgid "Update"
1421
- msgstr "Bijwerken"
1422
-
1423
- #: ../front-end/class-formbuilder.php:314
1424
- #: ../front-end/extra-fields/extra-fields.php:33
1425
- msgid "The avatar was successfully deleted!"
1426
- msgstr "De avatar is succesvol verwijderd!"
1427
-
1428
- #: ../front-end/class-formbuilder.php:314
1429
- #: ../front-end/extra-fields/extra-fields.php:35
1430
- msgid "The following attachment was successfully deleted:"
1431
- msgstr "Het volgende bestand is succesvol verwijderd:"
1432
-
1433
- #: ../front-end/class-formbuilder.php:326
1434
- msgid "Send these credentials via email."
1435
- msgstr "Stuur deze aanmeldgegevens via e-mail."
1436
-
1437
- #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1438
- #: ../front-end/login.php:79 ../front-end/login.php:89
1439
- #: ../front-end/recover.php:17 ../front-end/recover.php:206
1440
- msgid "ERROR"
1441
- msgstr "FOUT"
1442
-
1443
- #: ../front-end/login.php:72
1444
- msgid "The password you entered is incorrect."
1445
- msgstr "Het ingevoerde wachtwoord is onjuist."
1446
-
1447
- #: ../front-end/login.php:73 ../front-end/login.php:80
1448
- msgid "Password Lost and Found."
1449
- msgstr "Wachtwoord Verloren en Gevonden"
1450
-
1451
- #: ../front-end/login.php:73 ../front-end/login.php:80
1452
- msgid "Lost your password"
1453
- msgstr "Je wachtwoord verloren"
1454
-
1455
- #: ../front-end/login.php:89
1456
- msgid "Both fields are empty."
1457
- msgstr "Beide velden zijn leeg."
1458
-
1459
- #: ../front-end/login.php:199
1460
- msgid "You are currently logged in as %1$s. %2$s"
1461
- msgstr "Je bent momenteel ingelogd als %1$s. %2$s"
1462
-
1463
- #: ../front-end/login.php:199
1464
- msgid "Log out of this account"
1465
- msgstr "Uitloggen van dit account"
1466
-
1467
- #: ../front-end/login.php:199
1468
- msgid "Log out"
1469
- msgstr "Uitloggen"
1470
-
1471
- #: ../front-end/recover.php:17
1472
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1473
- msgstr "Je account moet door een beheerder worden bevestigd, voordat je de \"Wachtwoord Reset\" functie kunt gebruiken."
1474
-
1475
- #: ../front-end/recover.php:91
1476
- msgid "Reset Password"
1477
- msgstr "Reset Wachtwoord"
1478
-
1479
- #: ../front-end/recover.php:111
1480
- msgid "Please enter your username or email address."
1481
- msgstr "Voer svp je gebruikersnaam en e-mailadres in."
1482
-
1483
- #: ../front-end/recover.php:112
1484
- msgid "You will receive a link to create a new password via email."
1485
- msgstr "Je zult een link via e-mail ontvangen om een nieuw wachtwoord aan te maken."
1486
-
1487
- #: ../front-end/recover.php:119
1488
- msgid "Username or E-mail"
1489
- msgstr "Gebruikersnaam of E-mailadres"
1490
-
1491
- #: ../front-end/recover.php:125
1492
- msgid "Get New Password"
1493
- msgstr "Ontvang nieuw wachtwoord"
1494
-
1495
- #: ../front-end/recover.php:164
1496
- msgid "The username entered wasn't found in the database!"
1497
- msgstr "De ingevoerde gebruikersnaam is niet in de database gevonden!"
1498
-
1499
- #: ../front-end/recover.php:164
1500
- msgid "Please check that you entered the correct username."
1501
- msgstr "Kijk svp of je de juiste gebruikersnaam ingevoerd hebt."
1502
-
1503
- #: ../front-end/recover.php:179
1504
- msgid "Check your e-mail for the confirmation link."
1505
- msgstr "Kijk svp in je e-mail voor de bevestingslink."
1506
-
1507
- #: ../front-end/recover.php:194
1508
- 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"
1509
- msgstr "Iemand heeft gevraagd om het wachtwoord te resetten voor het volgende account: <b>%1$s</b><br/>Als dit een fout was, negeer deze e-mail en er zal niets gebeuren.<br/>Om wachtwoord te resetten, ga naar de volgende link:%2$s"
1510
-
1511
- #: ../front-end/recover.php:197
1512
- msgid "Password Reset from \"%1$s\""
1513
- msgstr "Wachtwoord Resetten van \"%1$s\""
1514
-
1515
- #: ../front-end/recover.php:206
1516
- msgid "There was an error while trying to send the activation link to %1$s!"
1517
- msgstr "Fout opgetreden tijdens verzenden van de activatielink naar %1$s!"
1518
-
1519
- #: ../front-end/recover.php:215
1520
- msgid "The email address entered wasn't found in the database!"
1521
- msgstr "Het ingevoerde e-mailadres is niet in de database gevonden!"
1522
-
1523
- #: ../front-end/recover.php:215
1524
- msgid "Please check that you entered the correct email address."
1525
- msgstr "Kijk svp of je het juiste e-mailadres ingevoerd hebt."
1526
-
1527
- #: ../front-end/default-fields/password/password.php:44
1528
- #: ../front-end/recover.php:231
1529
- msgid "<br/>The password must have the minimum length of "
1530
- msgstr "<br/>Het wachtwoord moet een minimale lengte hebben van"
1531
-
1532
- #: ../front-end/default-fields/password/password.php:48
1533
- #: ../front-end/recover.php:235
1534
- msgid "<br/>The password must have a minimum strength of "
1535
- msgstr "<br/>Het wachtwoord moet een minimale sterkte hebben van"
1536
-
1537
- #: ../front-end/recover.php:242
1538
- msgid "Your password has been successfully changed!"
1539
- msgstr "Je wachtwoord is succesvol gewijzigd!"
1540
-
1541
- #: ../front-end/recover.php:256
1542
- msgid "You have successfully reset your password to: %1$s"
1543
- msgstr "Je hebt je wachtwoord succesvol gereset naar: %1$s"
1544
-
1545
- #: ../front-end/recover.php:259 ../front-end/recover.php:273
1546
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
1547
- msgstr "Wachtwoord Succesvol Gereset voor %1$s op \"%2$s\""
1548
-
1549
- #: ../front-end/recover.php:270
1550
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1551
- msgstr "%1$s heeft gevraagd om wachtwoord te wijzigen via de wachtwoord reset functie.<br/>Zijn/haar nieuwe wachtwoord is:%2$s"
1552
-
1553
- #: ../front-end/recover.php:289
1554
- msgid "The entered passwords don't match!"
1555
- msgstr "De ingevoerde wachtwoorden komen niet overeen!"
1556
-
1557
- #: ../front-end/recover.php:334
1558
- msgid "ERROR:"
1559
- msgstr "FOUT:"
1560
-
1561
- #: ../front-end/recover.php:334
1562
- msgid "Invalid key!"
1563
- msgstr "Ongeldige sleutel!"
1564
-
1565
- #: ../front-end/register.php:46
1566
- msgid "Invalid activation key!"
1567
- msgstr "Ongeldige activatiesleutel!"
1568
-
1569
- #: ../front-end/register.php:50
1570
- msgid "This username is now active!"
1571
- msgstr "Deze gebruikersnaam is nu actief!"
1572
-
1573
- #: ../front-end/register.php:71
1574
- msgid "This username is already activated!"
1575
- msgstr "Deze gebruikersnaam is reeds geactiveerd!"
1576
-
1577
- #: ../front-end/register.php:102
1578
- msgid "Your email was successfully confirmed."
1579
- msgstr "Je e-mailadres is succesvol bevestigd."
1580
-
1581
- #: ../front-end/register.php:112
1582
- msgid "There was an error while trying to activate the user."
1583
- msgstr "Fout opgetreden tijdens activatie van de gebruiker."
1584
-
1585
- #: ../front-end/default-fields/email/email.php:42
1586
- msgid "The email you entered is not a valid email address."
1587
- msgstr "Het ingevoerde e-mailadres is niet geldig."
1588
-
1589
- #: ../front-end/default-fields/email/email.php:49
1590
- msgid "This email is already reserved to be used soon."
1591
- msgstr "Dit e-mailadres is gereserveerd voor toekomstig gebruik."
1592
-
1593
- #: ../front-end/default-fields/email/email.php:49
1594
- #: ../front-end/default-fields/email/email.php:55
1595
- #: ../front-end/default-fields/email/email.php:62
1596
- #: ../front-end/default-fields/username/username.php:44
1597
- #: ../front-end/default-fields/username/username.php:51
1598
- msgid "Please try a different one!"
1599
- msgstr "Probeer svp een andere!"
1600
-
1601
- #: ../front-end/default-fields/email/email.php:55
1602
- #: ../front-end/default-fields/email/email.php:62
1603
- msgid "This email is already in use."
1604
- msgstr "Dit e-mailadres is reeds in gebruik."
1605
-
1606
- #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1607
- #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1608
- msgid "The passwords do not match"
1609
- msgstr "De wachtwoorden komen niet overeen"
1610
-
1611
- #: ../front-end/default-fields/username/username.php:44
1612
- msgid "This username already exists."
1613
- msgstr "Deze gebruikersnaam bestaat reeds."
1614
-
1615
- #: ../front-end/default-fields/username/username.php:51
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
1661
- #: ../front-end/extra-fields/input/input.php:28
1662
- #: ../front-end/extra-fields/radio/radio.php:42
1663
- #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1664
- #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1665
- #: ../front-end/extra-fields/select/select.php:44
1666
- #: ../front-end/extra-fields/textarea/textarea.php:28
1667
- #: ../front-end/extra-fields/upload/upload.php:62
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
-
1728
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1729
- msgid "Could not open socket!"
1730
- msgstr "Kon socket niet openen!"
1731
-
1732
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1733
- msgid "To use reCAPTCHA you must get an API key from"
1734
- msgstr "Om reCAPTCHA te gebruiken moet je een API sleutel krijgen van"
1735
-
1736
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1737
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1738
- msgstr "Om veiligheid redenen, moet je de externe ip aanbieden aan reCAPTCHA!"
1739
-
1740
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1741
- msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1742
- msgstr "Om reCAPTCHA Mailhide te gebruiken, moet je de mcrypt php module geinstalleerd hebben!"
1743
-
1744
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1745
- msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1746
- msgstr "Om reCAPTCHA Mailhide te gebruiken, moet je een openbare en prive sleutel aanvragen; dit kun je doen op"
1747
-
1748
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1749
- msgid "To use reCAPTCHA you must get an API public key from:"
1750
- msgstr "Om reCAPTCHA te gebruiken moet je een openbare API sleutel krijgen van:"
1751
-
1752
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1753
- msgid "To use reCAPTCHA you must get an API private key from:"
1754
- msgstr "Om reCAPTCHA te gebruiken moet je een prive API sleutel krijgen van:"
1755
-
1756
- #: ../front-end/extra-fields/upload/upload.php:35
1757
- msgid "Current file: No uploaded attachment"
1758
- msgstr "Huidig bestand: Geen geüploade bijlage"
1759
-
1760
- #: ../front-end/extra-fields/upload/upload.php:39
1761
- #: ../front-end/extra-fields/upload/upload.php:48
1762
- #: ../front-end/extra-fields/upload/upload.php:71
1763
- #: ../front-end/extra-fields/upload/upload.php:75
1764
- #: ../front-end/extra-fields/upload/upload.php:77
1765
- msgid "Current file"
1766
- msgstr "Huidig bestand"
1767
-
1768
- #: ../front-end/extra-fields/upload/upload.php:42
1769
- #: ../front-end/extra-fields/upload/upload.php:51
1770
- #: ../front-end/extra-fields/upload/upload.php:75
1771
- #: ../front-end/extra-fields/upload/upload.php:77
1772
- msgid "Click to see the current attachment"
1773
- msgstr "Klik om huidige bijlage te zien"
1774
-
1775
- #: ../front-end/extra-fields/upload/upload.php:44
1776
- #: ../front-end/extra-fields/upload/upload.php:75
1777
- msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1778
- msgstr "De bijlage kan niet verwijderd worden (het is als verplicht gemarkeerd door de beheerder)"
1779
-
1780
- #: ../front-end/extra-fields/upload/upload.php:53
1781
- #: ../front-end/extra-fields/upload/upload.php:77
1782
- msgid "Are you sure you want to delete this attachment?"
1783
- msgstr "Weet je zeker dat je deze bijlage wilt verwijderen?"
1784
-
1785
- #: ../front-end/extra-fields/upload/upload.php:54
1786
- #: ../front-end/extra-fields/upload/upload.php:77
1787
- msgid "Click to delete the current attachment"
1788
- msgstr "Klik om huidige bijlage te verwijderen"
1789
-
1790
- #: ../front-end/extra-fields/upload/upload.php:71
1791
- msgid "No uploaded attachment"
1792
- msgstr "Geen geüploade bijlage"
1793
-
1794
- #: ../front-end/extra-fields/upload/upload.php:164
1795
- msgid "The extension of the file is not allowed"
1796
- msgstr "De extensie van dit bestand is niet toegestaan"
1797
-
1798
- #: ../front-end/extra-fields/upload/upload.php:186
1799
- msgid "The file could only partially be uploaded"
1800
- msgstr "Het bestand kon alleen gedeeltelijk geüpload worden"
1801
-
1802
- #: ../front-end/extra-fields/upload/upload.php:201
1803
- msgid "This field wasn't updated because an unknown error occured"
1804
- msgstr "Veld is niet geupdate doordat onbekende fout opgetreden is"
1805
-
1806
- #: ../modules/modules.php:11 ../modules/modules.php:80
1807
- msgid "Modules"
1808
- msgstr "Modules"
1809
-
1810
- #: ../modules/modules.php:81
1811
- msgid "Here you can activate / deactivate available modules for Profile Builder."
1812
- msgstr "Hier kun je alle modules van Profile Builder activeren / deactiveren."
1813
-
1814
- #: ../modules/modules.php:91
1815
- msgid "Name/Description"
1816
- msgstr "Naam/Beschrijving"
1817
-
1818
- #: ../modules/modules.php:92
1819
- msgid "Status"
1820
- msgstr "Status"
1821
-
1822
- #: ../modules/custom-redirects/custom-redirects.php:48
1823
- #: ../modules/custom-redirects/custom-redirects.php:58
1824
- #: ../modules/custom-redirects/custom-redirects.php:68
1825
- #: ../modules/custom-redirects/custom-redirects.php:94
1826
- #: ../modules/custom-redirects/custom-redirects.php:104
1827
- #: ../modules/custom-redirects/custom-redirects.php:114
1828
- #: ../modules/custom-redirects/custom-redirects.php:124
1829
- #: ../modules/modules.php:99 ../modules/modules.php:106
1830
- #: ../modules/modules.php:113 ../modules/modules.php:120
1831
- #: ../modules/modules.php:127 ../modules/modules.php:134
1832
- msgid "Active"
1833
- msgstr "Actieve"
1834
-
1835
- #: ../modules/custom-redirects/custom-redirects.php:49
1836
- #: ../modules/custom-redirects/custom-redirects.php:59
1837
- #: ../modules/custom-redirects/custom-redirects.php:69
1838
- #: ../modules/custom-redirects/custom-redirects.php:95
1839
- #: ../modules/custom-redirects/custom-redirects.php:105
1840
- #: ../modules/custom-redirects/custom-redirects.php:115
1841
- #: ../modules/custom-redirects/custom-redirects.php:125
1842
- #: ../modules/modules.php:100 ../modules/modules.php:107
1843
- #: ../modules/modules.php:114 ../modules/modules.php:121
1844
- #: ../modules/modules.php:128 ../modules/modules.php:135
1845
- msgid "Inactive"
1846
- msgstr "Inactieve"
1847
-
1848
- #: ../modules/email-customizer/admin-email-customizer.php:11
1849
- #: ../modules/email-customizer/admin-email-customizer.php:12
1850
- #: ../modules/modules.php:118
1851
- msgid "Admin Email Customizer"
1852
- msgstr "Aanpasser E-mailadres Beheerder"
1853
-
1854
- #: ../modules/email-customizer/user-email-customizer.php:11
1855
- #: ../modules/email-customizer/user-email-customizer.php:12
1856
- #: ../modules/modules.php:125
1857
- msgid "User Email Customizer"
1858
- msgstr "Aanpasser E-mailadres Gebruiker"
1859
-
1860
- #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1861
- msgid "Save"
1862
- msgstr "Opslaan"
1863
-
1864
- #: ../modules/custom-redirects/custom-redirects.php:35
1865
- msgid "Redirects on custom page requests:"
1866
- msgstr "Stuurt door als aangepaste pagina's geladen worden:"
1867
-
1868
- #: ../modules/custom-redirects/custom-redirects.php:39
1869
- #: ../modules/custom-redirects/custom-redirects.php:85
1870
- msgid "Action"
1871
- msgstr "Actie"
1872
-
1873
- #: ../modules/custom-redirects/custom-redirects.php:40
1874
- #: ../modules/custom-redirects/custom-redirects.php:86
1875
- #: ../modules/multiple-forms/edit-profile-forms.php:206
1876
- #: ../modules/multiple-forms/register-forms.php:230
1877
- msgid "Redirect"
1878
- msgstr "Stuur door"
1879
-
1880
- #: ../modules/custom-redirects/custom-redirects.php:41
1881
- #: ../modules/custom-redirects/custom-redirects.php:87
1882
- #: ../modules/multiple-forms/edit-profile-forms.php:208
1883
- #: ../modules/multiple-forms/register-forms.php:232
1884
- msgid "URL"
1885
- msgstr "URL"
1886
-
1887
- #: ../modules/custom-redirects/custom-redirects.php:46
1888
- msgid "After Registration:"
1889
- msgstr "Na Registratie:"
1890
-
1891
- #: ../modules/custom-redirects/custom-redirects.php:56
1892
- msgid "After Login:"
1893
- msgstr "Na Inloggen:"
1894
-
1895
- #: ../modules/custom-redirects/custom-redirects.php:66
1896
- msgid "Recover Password (*)"
1897
- msgstr "Wachtwoord Achterhalen (*)"
1898
-
1899
- #: ../modules/custom-redirects/custom-redirects.php:77
1900
- 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."
1901
- msgstr "Indien deze functie is geactiveerd zal de gebruiker doorgestuurd worden op zowel de standaard WordPress pagina om wachtwoord te achterhalen als de \"Wachtwoord vergeten\" link die Profile Builder gebruikt op de front-end inlogpagina."
1902
-
1903
- #: ../modules/custom-redirects/custom-redirects.php:81
1904
- msgid "Redirects on default WordPress page requests:"
1905
- msgstr "Stuurt door als standaard WordPress pagina's geladen worden: "
1906
-
1907
- #: ../modules/custom-redirects/custom-redirects.php:92
1908
- msgid "Default WordPress Login Page"
1909
- msgstr "Standaard WordPress Inlog Pagina:"
1910
-
1911
- #: ../modules/custom-redirects/custom-redirects.php:102
1912
- msgid "Default WordPress Logout Page"
1913
- msgstr "Standaard WordPress Uitlog Pagina:"
1914
-
1915
- #: ../modules/custom-redirects/custom-redirects.php:112
1916
- msgid "Default WordPress Register Page"
1917
- msgstr "Standaard WordPress Registratie Pagina"
1918
-
1919
- #: ../modules/custom-redirects/custom-redirects.php:122
1920
- msgid "Default WordPress Dashboard (*)"
1921
- msgstr "Standaard WordPress Dashboard (*)"
1922
-
1923
- #: ../modules/custom-redirects/custom-redirects.php:133
1924
- msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1925
- msgstr "Stuurt alle gebruikers door BEHALVE gebruikers met beheerder privileges (kan opties beheren)."
1926
-
1927
- #: ../modules/email-customizer/admin-email-customizer.php:38
1928
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1929
- msgstr "Deze instellingen zijn tijdens opslaan ook overgenomen in de \"Aanpasser E-mailadres Gebruiker\" instellingen pagina."
1930
-
1931
- #: ../modules/email-customizer/admin-email-customizer.php:41
1932
- #: ../modules/email-customizer/user-email-customizer.php:41
1933
- msgid "From (name)"
1934
- msgstr "Van (naam)"
1935
-
1936
- #: ../modules/email-customizer/admin-email-customizer.php:49
1937
- #: ../modules/email-customizer/user-email-customizer.php:49
1938
- msgid "From (reply-to email)"
1939
- msgstr "Van (reageer naar e-mailadres)"
1940
-
1941
- #: ../modules/email-customizer/admin-email-customizer.php:57
1942
- #: ../modules/email-customizer/user-email-customizer.php:57
1943
- msgid "Common Settings"
1944
- msgstr "Algemene Instellingen"
1945
-
1946
- #: ../modules/email-customizer/admin-email-customizer.php:60
1947
- msgid ""
1948
- "\n"
1949
- "<p>New subscriber on {{site_name}}.</p>\n"
1950
- "<p>Username:{{username}}</p>\n"
1951
- "<p>E-mail:{{user_email}}</p>\n"
1952
- msgstr ""
1953
- "\n"
1954
- "<p>Nieuw abonnee op {{site_name}}.</p>\n"
1955
- "\n"
1956
- "<p>Gebruikersnaam:{{username}}</p>\n"
1957
- "\n"
1958
- "<p>E-mailadres:{{user_email}}</p>\n"
1959
-
1960
- #: ../modules/email-customizer/admin-email-customizer.php:69
1961
- #: ../modules/email-customizer/admin-email-customizer.php:99
1962
- #: ../modules/email-customizer/user-email-customizer.php:71
1963
- #: ../modules/email-customizer/user-email-customizer.php:99
1964
- #: ../modules/email-customizer/user-email-customizer.php:128
1965
- #: ../modules/email-customizer/user-email-customizer.php:155
1966
- #: ../modules/email-customizer/user-email-customizer.php:183
1967
- msgid "Email Subject"
1968
- msgstr "Onderwerp E-mail"
1969
-
1970
- #: ../modules/email-customizer/admin-email-customizer.php:84
1971
- msgid "Default Registration & Registration with Email Confirmation"
1972
- msgstr "Standaard Registratie & Registratie met E-mail Bevestiging"
1973
-
1974
- #: ../modules/email-customizer/admin-email-customizer.php:87
1975
- msgid ""
1976
- "\n"
1977
- "<p>New subscriber on {{site_name}}.</p>\n"
1978
- "<p>Username:{{username}}</p>\n"
1979
- "<p>E-mail:{{user_email}}</p>\n"
1980
- "<p>The Admin Approval feature was activated at the time of registration,\n"
1981
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
1982
- msgstr ""
1983
- "\n"
1984
- "<p>Nieuwe abonnee op {{site_name}}.</p>\n"
1985
- "\n"
1986
- "<p>Gebruikersnaam:{{username}}</p>\n"
1987
- "\n"
1988
- "<p>E-mailadres:{{user_email}}</p>\n"
1989
- "\n"
1990
- "<p>De functie Goedkeuring Beheerder is geactiveerd tijdens registratie,\n"
1991
- "\n"
1992
- "zo vergeet niet dat je deze gebruiker moet goedkeuren voordat hij/zij kan inloggen!</p>\n"
1993
-
1994
- #: ../modules/email-customizer/admin-email-customizer.php:114
1995
- #: ../modules/email-customizer/user-email-customizer.php:143
1996
- msgid "Registration with Admin Approval"
1997
- msgstr "Registratie met Goedkeuring Beheerder"
1998
-
1999
- #: ../modules/email-customizer/email-customizer.php:7
2000
- msgid "Available Tags"
2001
- msgstr "Beschikbare Tags"
2002
-
2003
- #: ../modules/email-customizer/email-customizer.php:11
2004
- msgid "User Meta"
2005
- msgstr "Meta Gebruiker"
2006
-
2007
- #: ../modules/email-customizer/email-customizer.php:21
2008
- msgid "Site Url"
2009
- msgstr "Website URL"
2010
-
2011
- #: ../modules/email-customizer/email-customizer.php:22
2012
- msgid "Site Name"
2013
- msgstr "Website Naam"
2014
-
2015
- #: ../modules/email-customizer/email-customizer.php:25
2016
- #: ../modules/user-listing/userlisting.php:126
2017
- msgid "User Id"
2018
- msgstr "Gebruikers ID"
2019
-
2020
- #: ../modules/email-customizer/email-customizer.php:32
2021
- msgid "Reply To"
2022
- msgstr "Reageer Op"
2023
-
2024
- #: ../modules/email-customizer/email-customizer.php:35
2025
- msgid "Activation Key"
2026
- msgstr "Activatie Sleutel"
2027
-
2028
- #: ../modules/email-customizer/email-customizer.php:36
2029
- msgid "Activation Url"
2030
- msgstr "Activatie URL"
2031
-
2032
- #: ../modules/email-customizer/email-customizer.php:37
2033
- msgid "Activation Link"
2034
- msgstr "Activatie Link"
2035
-
2036
- #: ../modules/email-customizer/user-email-customizer.php:64
2037
- msgid ""
2038
- "\n"
2039
- "<h3>Welcome to {{site_name}}!</h3>\n"
2040
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2041
- msgstr ""
2042
- "\n"
2043
- "<h3>Welkom op {{site_name}}!</h3>\n"
2044
- "\n"
2045
- "<p>Je gebruikersnaam is:{{username}} en wachtwoord:{{password}}</p>\n"
2046
-
2047
- #: ../modules/email-customizer/user-email-customizer.php:85
2048
- msgid "Default Registration"
2049
- msgstr "Standaard Registratie"
2050
-
2051
- #: ../modules/email-customizer/user-email-customizer.php:91
2052
- msgid ""
2053
- "\n"
2054
- "<p>To activate your user, please click the following link:<br/>\n"
2055
- "{{{activation_link}}}</p>\n"
2056
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
2057
- msgstr ""
2058
- "\n"
2059
- "<p>Om gebruiker te activeren, klik svp op de volgende link:<br/>\n"
2060
- "\n"
2061
- "{{{activation_link}}}</p>\n"
2062
- "\n"
2063
- "<p>Na activatie zul je een andere e-mail ontvangen met je aanmeld gegevens.</p>\n"
2064
-
2065
- #: ../modules/email-customizer/user-email-customizer.php:103
2066
- msgid "[{{site_name}}] Activate {{username}}"
2067
- msgstr "[{{site_name}}] Activeer {{username}}"
2068
-
2069
- #: ../modules/email-customizer/user-email-customizer.php:114
2070
- msgid "Registration with Email Confirmation"
2071
- msgstr "Registratie met E-mail Bevestiging"
2072
-
2073
- #: ../modules/email-customizer/user-email-customizer.php:120
2074
- msgid ""
2075
- "\n"
2076
- "<h3>Welcome to {{site_name}}!</h3>\n"
2077
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2078
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2079
- msgstr ""
2080
- "\n"
2081
- "<h3>Welkom op {{site_name}}!</h3>\n"
2082
- "\n"
2083
- "<p>Je gebruikersnaam is:{{username}} en wachtwoord:{{password}}</p>\n"
2084
- "\n"
2085
- "<p>Voordat je toegang krijgt tot je account, moet een beheerder dit goedkeuren. Je wordt via e-mail geinformeerd.</p>\n"
2086
-
2087
- #: ../modules/email-customizer/user-email-customizer.php:132
2088
- msgid "A new account has been created for you on {{site_name}}"
2089
- msgstr "Een nieuwe account is voor je aangemaakt op {{site_name}}"
2090
-
2091
- #: ../modules/email-customizer/user-email-customizer.php:148
2092
- msgid ""
2093
- "\n"
2094
- "<h3>Good News!</h3>\n"
2095
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2096
- msgstr ""
2097
- "\n"
2098
- "<h3>Goed Nieuws!</h3>\n"
2099
- "\n"
2100
- "<p>Een beheerder heeft net je account goedgekeurd: {{username}} op {{site_name}}.</p>\n"
2101
-
2102
- #: ../modules/email-customizer/user-email-customizer.php:159
2103
- msgid "Your account on {{site_name}} has been approved!"
2104
- msgstr "Je account op {{site_name}} is goedgekeurd!"
2105
-
2106
- #: ../modules/email-customizer/user-email-customizer.php:170
2107
- msgid "User Approval Notification"
2108
- msgstr "Goedkeuring Gebruiker Notificatie"
2109
-
2110
- #: ../modules/email-customizer/user-email-customizer.php:175
2111
- msgid ""
2112
- "\n"
2113
- "<h3>Hello,</h3>\n"
2114
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2115
- msgstr ""
2116
- "\n"
2117
- "<h3>Hallo,</h3>\n"
2118
- "<p>Helaas heeft een beheerder je account net afgekeurd: {{username}} op {{site_name}}.</p>\n"
2119
-
2120
- #: ../modules/email-customizer/user-email-customizer.php:187
2121
- msgid "Your account on {{site_name}} has been unapproved!"
2122
- msgstr "Je account op {{site_name}} is afgekeurd!"
2123
-
2124
- #: ../modules/email-customizer/user-email-customizer.php:198
2125
- msgid "Unapproved User Notification"
2126
- msgstr "Notificatie Afgekeurde Gebruiker"
2127
-
2128
- #: ../modules/multiple-forms/edit-profile-forms.php:11
2129
- #: ../modules/multiple-forms/edit-profile-forms.php:12
2130
- msgid "Edit-profile Form"
2131
- msgstr "Bewerk Profiel Formulier"
2132
-
2133
- #: ../modules/multiple-forms/edit-profile-forms.php:13
2134
- #: ../modules/multiple-forms/register-forms.php:13
2135
- #: ../modules/user-listing/userlisting.php:13
2136
- msgid "Add New"
2137
- msgstr "Voeg nieuwe toe"
2138
-
2139
- #: ../modules/multiple-forms/edit-profile-forms.php:14
2140
- msgid "Add new Edit-profile Form"
2141
- msgstr "Voeg nieuw Bewerk Profiel Formulier toe"
2142
-
2143
- #: ../modules/multiple-forms/edit-profile-forms.php:15
2144
- msgid "Edit the Edit-profile Forms"
2145
- msgstr "Bewerk de Bewerk Profiel Formulieren"
2146
-
2147
- #: ../modules/multiple-forms/edit-profile-forms.php:16
2148
- msgid "New Edit-profile Form"
2149
- msgstr "Nieuw Bewerk Profiel Formulier"
2150
-
2151
- #: ../modules/multiple-forms/edit-profile-forms.php:17
2152
- #: ../modules/multiple-forms/edit-profile-forms.php:23
2153
- msgid "Edit-profile Forms"
2154
- msgstr "Bewerk Profiel Formulieren"
2155
-
2156
- #: ../modules/multiple-forms/edit-profile-forms.php:18
2157
- msgid "View the Edit-profile Form"
2158
- msgstr "Bekijk het Bewerk Profiel Formulier"
2159
-
2160
- #: ../modules/multiple-forms/edit-profile-forms.php:19
2161
- msgid "Search the Edit-profile Forms"
2162
- msgstr "Zoek de Bewerk Profiel Formulieren"
2163
-
2164
- #: ../modules/multiple-forms/edit-profile-forms.php:20
2165
- msgid "No Edit-profile Form found"
2166
- msgstr "Geen Bewerk Profiel Formulier gevonden"
2167
-
2168
- #: ../modules/multiple-forms/edit-profile-forms.php:21
2169
- msgid "No Edit-profile Forms found in trash"
2170
- msgstr "Geen Bewerk Profiel Formulieren in prullenbak gevonden"
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
-
2208
- #: ../modules/multiple-forms/edit-profile-forms.php:206
2209
- #: ../modules/multiple-forms/register-forms.php:230
2210
- msgid "Whether to redirect the user to a specific page or not"
2211
- msgstr "Of je de gebruiker wilt doorverwijzen naar een bepaalde pagina of niet"
2212
-
2213
- #: ../modules/multiple-forms/edit-profile-forms.php:207
2214
- #: ../modules/multiple-forms/register-forms.php:231
2215
- msgid "Display Messages"
2216
- msgstr "Toon Berichten"
2217
-
2218
- #: ../modules/multiple-forms/edit-profile-forms.php:207
2219
- #: ../modules/multiple-forms/register-forms.php:231
2220
- msgid "Allowed time to display any success messages (in seconds)"
2221
- msgstr "Toegestane tijd om succes berichten te tonen (in seconden)"
2222
-
2223
- #: ../modules/multiple-forms/edit-profile-forms.php:208
2224
- 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"
2225
- msgstr "Specificeer de URL van de pagina waar gebruiker naar doorverwezen wordt nadat ze hun profiel geupdate hebben middels dit formulier <br/>Gebruik dit formaat: http://www.mysite.com"
2226
-
2227
- #: ../modules/multiple-forms/edit-profile-forms.php:215
2228
- msgid "After Profile Update..."
2229
- msgstr "Na Updaten Profiel..."
2230
-
2231
- #: ../modules/multiple-forms/edit-profile-forms.php:239
2232
- #: ../modules/multiple-forms/register-forms.php:260
2233
- msgid "Add New Field to the List"
2234
- msgstr "Voeg nieuw Veld aan Lijst toe"
2235
-
2236
- #: ../modules/multiple-forms/edit-profile-forms.php:243
2237
- #: ../modules/multiple-forms/register-forms.php:264
2238
- msgid "Choose one of the supported fields you manage <a href=\""
2239
- msgstr "Kies 1 van de ondersteunde velden die je beheert <a href=\""
2240
-
2241
- #: ../modules/multiple-forms/multiple-forms.php:407
2242
- msgid "<pre>Title (Type)</pre>"
2243
- msgstr "<pre>Titel (Type)</pre>"
2244
-
2245
- #: ../modules/multiple-forms/multiple-forms.php:233
2246
- msgid "You need to specify the title of the form before creating it"
2247
- msgstr "Je moet de titel van het formulier specificeren voordat je het aanmaakt"
2248
-
2249
- #: ../modules/multiple-forms/register-forms.php:11
2250
- #: ../modules/multiple-forms/register-forms.php:12
2251
- msgid "Registration Form"
2252
- msgstr "Registratie Formulier"
2253
-
2254
- #: ../modules/multiple-forms/register-forms.php:14
2255
- msgid "Add new Registration Form"
2256
- msgstr "Voeg nieuw Registratie Formulier toe"
2257
-
2258
- #: ../modules/multiple-forms/register-forms.php:15
2259
- msgid "Edit the Registration Forms"
2260
- msgstr "Bewerk de Registratie Formulieren"
2261
-
2262
- #: ../modules/multiple-forms/register-forms.php:16
2263
- msgid "New Registration Form"
2264
- msgstr "Nieuw Registratie Formulier"
2265
-
2266
- #: ../modules/multiple-forms/register-forms.php:17
2267
- #: ../modules/multiple-forms/register-forms.php:23
2268
- msgid "Registration Forms"
2269
- msgstr "Registratie Formulieren"
2270
-
2271
- #: ../modules/multiple-forms/register-forms.php:18
2272
- msgid "View the Registration Form"
2273
- msgstr "Bekijk het Registratie Formulier"
2274
-
2275
- #: ../modules/multiple-forms/register-forms.php:19
2276
- msgid "Search the Registration Forms"
2277
- msgstr "Zoek de Registratie Formulieren"
2278
-
2279
- #: ../modules/multiple-forms/register-forms.php:20
2280
- msgid "No Registration Form found"
2281
- msgstr "Geen Registratie Formulier gevonden"
2282
-
2283
- #: ../modules/multiple-forms/register-forms.php:21
2284
- msgid "No Registration Forms found in trash"
2285
- msgstr "Geen Registratie Formulieren in prullenbak gevonden"
2286
-
2287
- #: ../modules/multiple-forms/register-forms.php:219
2288
- msgid "Default Role"
2289
- msgstr "Standaard Rol"
2290
-
2291
- #: ../modules/multiple-forms/register-forms.php:228
2292
- msgid "Set Role"
2293
- msgstr "Rol Instellen"
2294
-
2295
- #: ../modules/multiple-forms/register-forms.php:228
2296
- 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"
2297
- msgstr "Kies welke rol gebruiker heeft na registratie<br/>Indien niet gespecificeerd, standaard de rol van de WordPress instellingen"
2298
-
2299
- #: ../modules/multiple-forms/register-forms.php:229
2300
- msgid "Automatically Log In"
2301
- msgstr "Automatisch Inloggen"
2302
-
2303
- #: ../modules/multiple-forms/register-forms.php:229
2304
- 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"
2305
- msgstr "Of de nieuwe gebruiker automatisch ingelogd wordt of niet<br/>Werkt alleen op losse websites zonder geactiveerde \"Goedkeuring Beheerder\" en \"E-mail Bevestiging\" functies<br/>WAARSCHUWING: Als registratie formulier gecached wordt zal inloggen niet werken"
2306
-
2307
- #: ../modules/multiple-forms/register-forms.php:232
2308
- 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"
2309
- msgstr "Specificeer de URL van de pagina waar gebruikers naar doorverwezen wordt als ze dit formulier gebruiken<br/>Gebruik dit formaat: http://www.mysite.com"
2310
-
2311
- #: ../modules/multiple-forms/register-forms.php:238
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
-
2323
- #: ../modules/user-listing/userlisting.php:14
2324
- msgid "Add new User Listing"
2325
- msgstr "Voeg nieuwe Gebruikersweergave toe"
2326
-
2327
- #: ../modules/user-listing/userlisting.php:15
2328
- msgid "Edit the User Listing"
2329
- msgstr "Bewerk de Gebruikersweergave"
2330
-
2331
- #: ../modules/user-listing/userlisting.php:16
2332
- msgid "New User Listing"
2333
- msgstr "Nieuwe Gebruikersweergave"
2334
-
2335
- #: ../modules/user-listing/userlisting.php:18
2336
- msgid "View the User Listing"
2337
- msgstr "Bekijk de Gebruikersweergave"
2338
-
2339
- #: ../modules/user-listing/userlisting.php:19
2340
- msgid "Search the User Listing"
2341
- msgstr "Zoek de Gebruikersweergave"
2342
-
2343
- #: ../modules/user-listing/userlisting.php:20
2344
- msgid "No User Listing found"
2345
- msgstr "Geen Gebruikersweergave gevonden"
2346
-
2347
- #: ../modules/user-listing/userlisting.php:21
2348
- msgid "No User Listing found in trash"
2349
- msgstr "Geen Gebruikersweergave in prullenbak gevonden"
2350
-
2351
- #: ../modules/user-listing/userlisting.php:97
2352
- msgid "Display name as"
2353
- msgstr "Toon naam als"
2354
-
2355
- #: ../modules/user-listing/userlisting.php:110
2356
- msgid "Url"
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
-
2369
- #: ../modules/user-listing/userlisting.php:123
2370
- msgid "More Info"
2371
- msgstr "Meer Info"
2372
-
2373
- #: ../modules/user-listing/userlisting.php:124
2374
- msgid "More Info Url"
2375
- msgstr "Meer Info URL"
2376
-
2377
- #: ../modules/user-listing/userlisting.php:125
2378
- msgid "Avatar or Gravatar"
2379
- msgstr "Avatar or Gravatar"
2380
-
2381
- #: ../modules/user-listing/userlisting.php:153
2382
- msgid "Meta Variables"
2383
- msgstr "Meta Variabelen"
2384
-
2385
- #: ../modules/user-listing/userlisting.php:159
2386
- msgid "Sort Variables"
2387
- msgstr "Sorteer Variabelen"
2388
-
2389
- #: ../modules/user-listing/userlisting.php:163
2390
- #: ../modules/user-listing/userlisting.php:190
2391
- msgid "Extra Functions"
2392
- msgstr "Extra Functies"
2393
-
2394
- #: ../modules/user-listing/userlisting.php:165
2395
- msgid "Pagination"
2396
- msgstr "Paginering"
2397
-
2398
- #: ../modules/user-listing/userlisting.php:166
2399
- msgid "Search all Fields"
2400
- msgstr "Zoek alle Velden"
2401
-
2402
- #: ../modules/user-listing/userlisting.php:192
2403
- msgid "Go Back Link"
2404
- msgstr "Ga Terug Link"
2405
-
2406
- #: ../modules/user-listing/userlisting.php:210
2407
- msgid "All-userlisting Template"
2408
- msgstr "Alle gebruikersweergave Template"
2409
-
2410
- #: ../modules/user-listing/userlisting.php:213
2411
- msgid "Single-userlisting Template"
2412
- msgstr "Enkele gebruikersweergave Template"
2413
-
2414
- #: ../modules/user-listing/userlisting.php:330
2415
- msgid "You do not have permission to view this user list"
2416
- msgstr "Je hebt geen toestemming om deze gebruikersweergave te bekijken"
2417
-
2418
- #: ../modules/user-listing/userlisting.php:343
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 "&laquo;&laquo; First"
2477
- msgstr "&laquo;&laquo; Eerste"
2478
-
2479
- #: ../modules/user-listing/userlisting.php:838
2480
- msgid "&laquo; Prev"
2481
- msgstr "&laquo; Volgende"
2482
-
2483
- #: ../modules/user-listing/userlisting.php:839
2484
- msgid "Next &raquo; "
2485
- msgstr "Vorige &raquo;"
2486
-
2487
- #: ../modules/user-listing/userlisting.php:840
2488
- msgid "Last &raquo;&raquo;"
2489
- msgstr "Laatste &raquo;&raquo;"
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!"
1
+ # Translation of Profile Builder in Dutch
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"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\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&#37; 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&#37; 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&#37; 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&#37; 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"
145
+ msgstr "Toon/Verberg de admin balk in de front-end"
146
+
147
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
148
+ msgid "Admin Bar Settings"
149
+ msgstr "Admin balk instellingen"
150
+
151
+ #: ../admin/admin-bar.php:57
152
+ msgid "User-Role"
153
+ msgstr "Gebruikersrol"
154
+
155
+ #: ../admin/admin-bar.php:58
156
+ msgid "Visibility"
157
+ msgstr "Zichtbaarheid"
158
+
159
+ #: ../admin/admin-bar.php:73
160
+ msgid "Default"
161
+ msgstr "Standaard"
162
+
163
+ #: ../admin/admin-bar.php:74
164
+ msgid "Show"
165
+ msgstr "Toon"
166
+
167
+ #: ../admin/admin-bar.php:75
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"
176
+ msgstr "Wijzigingen Opslaan"
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 "Je moet inloggen via het e-mailadres. Dit veld is NIET zichtbaar in de front-end! (je kunt deze instellingen wijzigen via de \"%s\" tab)"
181
+
182
+ #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
183
+ #: ../admin/general-settings.php:38
184
+ msgid "General Settings"
185
+ msgstr "Algemene Instellingen"
186
+
187
+ #: ../admin/admin-functions.php:106
188
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of "
189
+ msgstr "<strong>FOUT</strong>: Het wachtwoord moet een minimale lengte hebben van"
190
+
191
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
192
+ msgid "Very weak"
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
+
210
+ #: ../admin/admin-functions.php:123
211
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
212
+ msgstr "<strong>FOUT</strong>: Het wachtwoord moet een minimale lengte hebben van"
213
+
214
+ #: ../admin/admin-functions.php:162
215
+ msgid "Add Field"
216
+ msgstr "Veld Toevoegen"
217
+
218
+ #: ../admin/admin-functions.php:164
219
+ msgid "Save Settings"
220
+ msgstr "Wijzigingen Opslaan"
221
+
222
+ #: ../admin/basic-info.php:10
223
+ msgid "Basic Information"
224
+ msgstr "Basis Informatie"
225
+
226
+ #: ../admin/basic-info.php:29
227
+ msgid "Version %s"
228
+ msgstr "Versie %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 "De beste manier om frond-end registratie, profiel bewerking en inlog formulieren toe te voegen."
237
+
238
+ #: ../admin/basic-info.php:33
239
+ msgid "For Modern User Interaction"
240
+ msgstr "Voor moderne Gebruikers Interactie"
241
+
242
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
243
+ msgid "Login"
244
+ msgstr "Inloggen"
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 "Probleemloos inloggen via de <strong class=\"nowrap\">[wppb-login]</strong> shortcode of een widget."
249
+
250
+ #: ../admin/basic-info.php:40
251
+ msgid "Registration"
252
+ msgstr "Registratie"
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 "Prachtige volledig aanpasbare registratie formulieren via de <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
257
+
258
+ #: ../admin/basic-info.php:44
259
+ msgid "Edit Profile"
260
+ msgstr "Bewerk Profiel"
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 "Eenvoudige bewerkbare profiel formulieren via de <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
265
+
266
+ #: ../admin/basic-info.php:51
267
+ msgid "Extra Features"
268
+ msgstr "Extra Functies"
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 "Functies die je meer controle geven over je gebruikers, meer veiligheid en je helpen tegen spam tijdens gebruikersregistratie."
273
+
274
+ #: ../admin/basic-info.php:53
275
+ msgid "Enable extra features"
276
+ msgstr "Extra functies aanzetten"
277
+
278
+ #: ../admin/basic-info.php:57
279
+ msgid "Recover Password"
280
+ msgstr "Wachtwoord Achterhalen"
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 "Sta gebruikers toe om wachtwoord in front-end te achterhalen via de [wppb-recover-password]."
285
+
286
+ #: ../admin/basic-info.php:61
287
+ msgid "Admin Approval (*)"
288
+ msgstr "Goedkeuring Beheerder (*)"
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 "Jij bepaalt wie een gebruiker is op je website. Word geinformeerd via e-mail of keur meerdere gebruikers ineens goed van de WordPress UI."
293
+
294
+ #: ../admin/basic-info.php:65
295
+ msgid "Email Confirmation"
296
+ msgstr "E-mail Bevestiging"
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 "Zorg ervoor dat gebruikers zich met echte e-mailadressen opgeven. Tijdens registratie zullen gebruikers een bericht ontvangen om e-mailadres te bevestigen."
301
+
302
+ #: ../admin/basic-info.php:69
303
+ msgid "Minimum Password Length and Strength Meter"
304
+ msgstr "Minimale Wachtwoord Lengte en Kracht Meter"
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 "Elimineer zwakke wachtwoorden ineens door minimale wachtwoord lengte in te stellen en een bepaalde wachtwoord sterkte."
309
+
310
+ #: ../admin/basic-info.php:73
311
+ msgid "Login with Email or Username"
312
+ msgstr "Inloggen met E-mailadres of Gebruikersnaam"
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 "Sta gebruikers toe om te inloggen met e-mailadres of gebruikersnaam wanneer ze je site bezoeken."
317
+
318
+ #: ../admin/basic-info.php:87
319
+ msgid "Customize Your Forms The Way You Want (*)"
320
+ msgstr "Pas Je Formulieren Aan Zoals Jij Het Wilt (*)"
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 "Met extra Profielvelden kun je een registratie formulier maken die voldoet aan je project wensen."
325
+
326
+ #: ../admin/basic-info.php:90
327
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
328
+ msgstr "Extra Profielvelden zijn beschikbaar in Hobbyist of PRO versies"
329
+
330
+ #: ../admin/basic-info.php:92
331
+ msgid "Get started with extra fields"
332
+ msgstr "Start met extra velden"
333
+
334
+ #: ../admin/basic-info.php:95
335
+ msgid "Avatar Upload"
336
+ msgstr "Avatar Upload"
337
+
338
+ #: ../admin/basic-info.php:96
339
+ msgid "Generic Uploads"
340
+ msgstr "Algemene Uploads"
341
+
342
+ #: ../admin/basic-info.php:97
343
+ msgid "Agree To Terms Checkbox"
344
+ msgstr "Akkoord Met Voorwaarden Selectievakje"
345
+
346
+ #: ../admin/basic-info.php:98
347
+ msgid "Datepicker"
348
+ msgstr "Datumpicker"
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 "Land Selectie"
357
+
358
+ #: ../admin/basic-info.php:101
359
+ msgid "Timezone Select"
360
+ msgstr "Tijdzone Selectie"
361
+
362
+ #: ../admin/basic-info.php:102
363
+ msgid "Input / Hidden Input"
364
+ msgstr "Invoer / Afgeschermde Invoer"
365
+
366
+ #: ../admin/basic-info.php:103
367
+ msgid "Checkbox"
368
+ msgstr "Selectievakje"
369
+
370
+ #: ../admin/basic-info.php:104
371
+ msgid "Select"
372
+ msgstr "Selecteer"
373
+
374
+ #: ../admin/basic-info.php:105
375
+ msgid "Radio Buttons"
376
+ msgstr "Keuzerondjes"
377
+
378
+ #: ../admin/basic-info.php:106
379
+ msgid "Textarea"
380
+ msgstr "Tekstgebied"
381
+
382
+ #: ../admin/basic-info.php:115
383
+ msgid "Powerful Modules (**)"
384
+ msgstr "Sterke Modules (**)"
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 "Alles wat je nodig hebt om je gebruikers te beheren is waarschijnlijk al beschikbaar als je de PRO Modules gebruikt."
389
+
390
+ #: ../admin/basic-info.php:118
391
+ msgid "Enable your modules"
392
+ msgstr "Je modules aanzetten"
393
+
394
+ #: ../admin/basic-info.php:121
395
+ msgid "Find out more about PRO Modules"
396
+ msgstr "Leer meer over je PRO Modules"
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 "Gebruikersoverzicht"
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 "Eenvoudig om templates te bewerken die je website gebruikers tonen en om pagina's te maken voor losse gebruikers. Op shortcode gebaseerd, met vele opties om je overzichten aan te passen."
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 "Om een pagina te maken met de geregistreerde gebruikers van deze site/blog, voeg de volgende shortcode in de gewenste pagina: <strong class=\"nowrap\">[wppb-list-users]</strong>."
413
+
414
+ #: ../admin/basic-info.php:134
415
+ msgid "Email Customizer"
416
+ msgstr "E-mailadres Aanpasser"
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 "Personaliseer alle e-mails die naar je gebruikers of beheerders gestuurd worden. Na registratie, e-mail bevestiging, goedkeuring / afkeuring van beheerder."
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 "Aangepaste Doorverwijzingen"
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 "Laat je gebruikers uit het WordPress Dashboard, stuur ze door naar de homepage na inloggen of registratie, alles is onder handbereik."
431
+
432
+ #: ../admin/basic-info.php:144 ../modules/modules.php:97
433
+ msgid "Multiple Registration Forms"
434
+ msgstr "Meerdere Registratie Formulieren"
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 "Maak meerdere registratieformulieren met verschillende velden voor bepaalde gebruikersgroepen. Ontvang verschillende informatie van verschillende type gebruikers."
439
+
440
+ #: ../admin/basic-info.php:148 ../modules/modules.php:104
441
+ msgid "Multiple Edit-profile Forms"
442
+ msgstr "Meerdere Bewerk Profiel Formulieren"
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 "Sta verschillende gebruikersgroepen toe om specifieke informatie te bewerken. Maak meerdere Bewerk Profiel formulieren met verschillende velden voor bepaalde gebruikersgroepen."
447
+
448
+ #: ../admin/basic-info.php:161
449
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
450
+ msgstr "* alleen beschikbaar in de %1$sHobbyist en Pro versies%2$s."
451
+
452
+ #: ../admin/basic-info.php:162
453
+ msgid "** only available in the %1$sPro version%2$s."
454
+ msgstr "** alleen beschikbaar in de %1$sPro versies%2$s."
455
+
456
+ #: ../admin/general-settings.php:42
457
+ msgid "Load Profile Builder's own CSS file in the front-end:"
458
+ msgstr "Laad Profile Builder's eigen CSS bestand in de 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 "Ja"
467
+
468
+ #: ../admin/general-settings.php:47
469
+ msgid "You can find the default file here: %1$s"
470
+ msgstr "Je kunt het standaard bestand hier vinden: %1$s"
471
+
472
+ #: ../admin/general-settings.php:56
473
+ msgid "\"Email Confirmation\" Activated:"
474
+ msgstr "\"E-mail Bevestiging\" Geactiveerd:"
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 "Nee"
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 "Op enkele-site installaties werkt dit alleen met front-end formulieren. Het is aan te raden om de standaard WP registratie door te verwijzen naar die van Profile Builder, middels de \"Aangepaste Doorverwijzingen\" functie."
485
+
486
+ #: ../admin/general-settings.php:65
487
+ msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
488
+ msgstr "De \"E-mail Bevestiging\" functie is (standaard) actief op WPMU installaties."
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 "Je kunt een lijst met niet bevestigde e-mailadressen vinden %1$sGebruikers > Alle Gebruikers > E-mail Bevestiging%2$s."
493
+
494
+ #: ../admin/general-settings.php:79
495
+ msgid "\"Email Confirmation\" Landing Page:"
496
+ msgstr "\"E-mail Bevestiging\" Begin Pagina:"
497
+
498
+ #: ../admin/general-settings.php:84
499
+ msgid "Existing Pages"
500
+ msgstr "Bestaande Pagina's"
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 "Specificeer de pagina waar gebruikers naar worden doorgestuurd wanneer ze hun e-mail bevestigen. Dit kan een andere pagina zijn dan de geregistreerde pagina's en kan altijd gewijzigd worden. Als er niets geselecteerd is, zal een eenvoudige bevestigingspagina aan gebruiker getoond worden."
505
+
506
+ #: ../admin/general-settings.php:110
507
+ msgid "\"Admin Approval\" Activated:"
508
+ msgstr "\"Goedkeuring Beheerder\" Geactiveerd:"
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 "Je kunt een gebruikerslijst vinden bij %1$sGebruikers > Alle Gebruikers > Goedkeuring Beheerder%2$s."
513
+
514
+ #: ../admin/general-settings.php:130
515
+ msgid "\"Admin Approval\" Feature:"
516
+ msgstr "\"Goedkeuring Beheerder\" Functie:"
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 "Jij bepaalt wie een gebruikers is op je website. Krijg bericht via e-mail of keur meerdere gebruikers in 1 keer goed via het WordPress Dashboard. Zet Goedkeuring Beheerder aan door te upgraden naar %1$sHobbyist of PRO versies%2$s."
521
+
522
+ #: ../admin/general-settings.php:140
523
+ msgid "Allow Users to Log in With:"
524
+ msgstr "Sta Gebruikers toe in te loggen met:"
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 "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
+
543
+ #: ../admin/general-settings.php:152
544
+ msgid "Minimum Password Length:"
545
+ msgstr "Minimale Wachtwoord Lengte:"
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 "Voer het minimaal aantal karakters in die wachtwoord mag hebben. Laat leeg voor geen minimale limiet."
550
+
551
+ #: ../admin/general-settings.php:164
552
+ msgid "Minimum Password Strength:"
553
+ msgstr "Minimale Wachtwoord Sterkte:"
554
+
555
+ #: ../admin/general-settings.php:168
556
+ msgid "Disabled"
557
+ msgstr "Uitgeschakeld"
558
+
559
+ #: ../admin/manage-fields.php:12
560
+ msgid "Manage Fields"
561
+ msgstr "Beheer Velden"
562
+
563
+ #: ../admin/manage-fields.php:13
564
+ msgid "Manage Default and Extra Fields"
565
+ msgstr "Beheer Standaard en Extra Velden"
566
+
567
+ #: ../admin/manage-fields.php:74
568
+ msgid "Field Title"
569
+ msgstr "Veld Titel"
570
+
571
+ #: ../admin/manage-fields.php:74
572
+ msgid "Title of the field"
573
+ msgstr "Titel van het Veld"
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 "Veld"
580
+
581
+ #: ../admin/manage-fields.php:76
582
+ msgid "Meta-name"
583
+ msgstr "Meta-naam"
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 "Gebruik dit in combinatie met de WordPress functies om de waarde te tonen in de gewenste pagina<br/>Auto-aangevuld maar is sommige gevallen te wijzigen (indien het uniek is)<br/>In het geval van een groot aantal gebruikers zal het lang duren voordat dit gewijzigd is"
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 "Een unieke, automatisch aangemaakte ID voor dit bepaalde veld<br/>Je kunt dit gebruiken in combinatie met filters om dit element te richten, indien nodig<br/>Kan niet gewijzigd worden"
600
+
601
+ #: ../admin/manage-fields.php:78
602
+ msgid "Description"
603
+ msgstr "Beschrijving"
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 "Voer een (gedetailleerde) beschrijving in van de functie, die gebruikers kunnen lezen<br/>Optioneel"
608
+
609
+ #: ../admin/manage-fields.php:79
610
+ msgid "Row Count"
611
+ msgstr "Rij Telling"
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 "Specificeer aantal rijen voor een 'Tekstgebied' veld<br/>Indien niet gespecificeerd, standaard is 5"
616
+
617
+ #: ../admin/manage-fields.php:80
618
+ msgid "Allowed Image Extensions"
619
+ msgstr "Toegestane Foto Extensies"
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 "Specificeer de extensie(s) om upload te limiteren<br/>Voorbeeld: .ext1,.ext2,.ext3<br/>Indien niet gespecificeerd, standaard alle bestaande foto extensies (.*)"
624
+
625
+ #: ../admin/manage-fields.php:81
626
+ msgid "Allowed Upload Extensions"
627
+ msgstr "Toegestane Upload Extensies"
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 "Specificeer de extensie(s) om upload te limiteren<br/>Voorbeeld: .ext1,.ext2,.ext3<br/>Indien niet gespecificeerd, standaard alle bestaande extensies (.*)"
632
+
633
+ #: ../admin/manage-fields.php:82
634
+ msgid "Avatar Size"
635
+ msgstr "Avatar Grootte"
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 "Voer een waarde in (tussen 20 en 200) voor de grootte van de 'Avatar'<br/>Indien niet gespecificeerd, standaard is 100"
640
+
641
+ #: ../admin/manage-fields.php:83
642
+ msgid "Date-format"
643
+ msgstr "Datum-formaat"
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 "Specificeer datum formaat als je de datum picker gebruikt<br/>Geldige opties: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Indien niet gespecificeerd, standaard is mm/dd/yy"
648
+
649
+ #: ../admin/manage-fields.php:84
650
+ msgid "Terms of Agreement"
651
+ msgstr "Algemene Voorwaarden"
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: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
655
+ msgstr "Voer een (gedetailleerde) beschrijving in van de algemene voorwaarden, die gebruikers kunnen lezen<br/>Links kunnen ingevoerd worden middels de standaard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
656
+
657
+ #: ../admin/manage-fields.php:85
658
+ msgid "Options"
659
+ msgstr "Opties"
660
+
661
+ #: ../admin/manage-fields.php:86
662
+ msgid "Labels"
663
+ msgstr "Labels"
664
+
665
+ #: ../admin/manage-fields.php:86
666
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
667
+ msgstr "Voer een met komma's gescheiden lijst van labels in<br/>Zichtbaar voor de gebruiker"
668
+
669
+ #: ../admin/manage-fields.php:87
670
+ msgid "Public Key"
671
+ msgstr "Publieke Sleutel"
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 "De Publieke Sleutel van 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 "Prive Sleutel"
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 "De Prive Sleutel van 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 "Standaard Waarde"
688
+
689
+ #: ../admin/manage-fields.php:89
690
+ msgid "Default value of the field"
691
+ msgstr "Standaard waarde van het veld"
692
+
693
+ #: ../admin/manage-fields.php:90
694
+ msgid "Default Option"
695
+ msgstr "Standaard Optie"
696
+
697
+ #: ../admin/manage-fields.php:90
698
+ msgid "Specify the option which should be selected by default"
699
+ msgstr "Specificeer de optie die als standaard geselecteerd wordt"
700
+
701
+ #: ../admin/manage-fields.php:91
702
+ msgid "Default Option(s)"
703
+ msgstr "Standaard Optie(s)"
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 "Specificeer de optie die als standaard geselecteerd wordt<br/>Als er meerdere waardes zijn, scheid ze met een ',' (komma)"
708
+
709
+ #: ../admin/manage-fields.php:92
710
+ msgid "Default Content"
711
+ msgstr "Standaard Inhoud"
712
+
713
+ #: ../admin/manage-fields.php:92
714
+ msgid "Default value of the textarea"
715
+ msgstr "Standaard waarde van tekstgebied"
716
+
717
+ #: ../admin/manage-fields.php:93
718
+ msgid "Required"
719
+ msgstr "Verplicht"
720
+
721
+ #: ../admin/manage-fields.php:93
722
+ msgid "Whether the field is required or not"
723
+ msgstr "Of een veld verplicht is of niet"
724
+
725
+ #: ../admin/manage-fields.php:94
726
+ msgid "Overwrite Existing"
727
+ msgstr "Overschrijf Bestaande"
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 "Als je 'Ja' selecteert zal veld aan de lijst toegevoegd worden, maar zal alle andere velden in database overschrijven, die dezelfde meta-naam hebben<br/>Gebruik dit op eigen risico"
732
+
733
+ #: ../admin/manage-fields.php:100
734
+ msgid "Field Properties"
735
+ msgstr "Veld Eigenschappen"
736
+
737
+ #: ../admin/manage-fields.php:113
738
+ msgid "Registration & Edit Profile"
739
+ msgstr "Registratie & Beheer Profiel"
740
+
741
+ #: ../admin/manage-fields.php:132
742
+ msgid "Name"
743
+ msgstr "Naam"
744
+
745
+ #: ../admin/manage-fields.php:133
746
+ msgid "Usernames cannot be changed."
747
+ msgstr "Gebruikersnamen kunnen niet veranderd worden."
748
+
749
+ #: ../admin/manage-fields.php:134
750
+ msgid "First Name"
751
+ msgstr "Voornaam"
752
+
753
+ #: ../admin/manage-fields.php:135
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
+
761
+ #: ../admin/manage-fields.php:137
762
+ msgid "Display name publicly as"
763
+ msgstr "Toon publiek als"
764
+
765
+ #: ../admin/manage-fields.php:138
766
+ msgid "Contact Info"
767
+ msgstr "Contact Info"
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-mailadres"
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 "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
+
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 "Vertel iets over jezelf. Dit kan voor iedereen zichtbaar zijn."
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 "Wachtwoord"
814
+
815
+ #: ../admin/manage-fields.php:151
816
+ msgid "Type your password."
817
+ msgstr "Voer je wachtwoord in."
818
+
819
+ #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
820
+ msgid "Repeat Password"
821
+ msgstr "Herhaal Wachtwoord"
822
+
823
+ #: ../admin/manage-fields.php:152
824
+ msgid "Type your password again. "
825
+ msgstr "Voer je wachtwoord opnieuw in."
826
+
827
+ #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
828
+ msgid "You must select a field\n"
829
+ msgstr "Je moet een veld selecteren\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 "Selecteer svp een ander type veld omdat deze al in je formulier staat (moet uniek zijn)\n"
834
+
835
+ #: ../admin/manage-fields.php:329
836
+ msgid "The entered avatar size is not between 20 and 200\n"
837
+ msgstr "De ingevoerde avatar grootte is niet tussen 20 en 200\n"
838
+
839
+ #: ../admin/manage-fields.php:332
840
+ msgid "The entered avatar size is not numerical\n"
841
+ msgstr "De ingevoerde avatar grootte is niet numeriek\n"
842
+
843
+ #: ../admin/manage-fields.php:340
844
+ msgid "The entered row number is not numerical\n"
845
+ msgstr "Het ingevoerde rij nummer is niet numeriek\n"
846
+
847
+ #: ../admin/manage-fields.php:343
848
+ msgid "You must enter a value for the row number\n"
849
+ msgstr "Je moet een waarde invoeren voor het rij nummer\n"
850
+
851
+ #: ../admin/manage-fields.php:351
852
+ msgid "You must enter the public key\n"
853
+ msgstr "Je moet de publieke sleutel invoeren\n"
854
+
855
+ #: ../admin/manage-fields.php:353
856
+ msgid "You must enter the private key\n"
857
+ msgstr "Je moet de prive sleutel invoeren\n"
858
+
859
+ #: ../admin/manage-fields.php:361
860
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
861
+ msgstr "De ingevoerde waarde voor de datum picker is geen geldig datum formaat\n"
862
+
863
+ #: ../admin/manage-fields.php:364
864
+ msgid "You must enter a value for the date-format\n"
865
+ msgstr "Je moet een waarde voor het datum formaat invoeren\n"
866
+
867
+ #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
868
+ #: ../admin/manage-fields.php:410
869
+ msgid "That meta-name is already in use\n"
870
+ msgstr "Deze meta-naam is al in gebruik\n"
871
+
872
+ #: ../admin/manage-fields.php:432
873
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
874
+ msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s\n"
875
+
876
+ #: ../admin/manage-fields.php:436
877
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
878
+ msgstr "De volgende optie(s) komen niet overeen met de opties in de optielijst: %s \n"
879
+
880
+ #: ../admin/manage-fields.php:451
881
+ msgid "That field is already added in this form\n"
882
+ msgstr "Dat veld is al aan dit formulier toegevoegd\n"
883
+
884
+ #: ../admin/manage-fields.php:500
885
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
886
+ msgstr "<pre>Titel</pre><pre>Type</pre><pre>Meta Naam</pre><pre class=\"wppb-mb-head-required\">Verplicht</pre>"
887
+
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"
895
+
896
+ #: ../admin/manage-fields.php:500
897
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
898
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
899
+ #: ../features/admin-approval/class-admin-approval.php:124
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
+
907
+ #: ../admin/manage-fields.php:515
908
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
909
+ msgstr "Gebruik deze shortcodes op de pagina's waarop je de formulieren wilt tonen:"
910
+
911
+ #: ../admin/manage-fields.php:521
912
+ 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."
913
+ msgstr "Als je geinteresseerd bent in het tonen van verschillende velden in de registratie en bewerk profiel formulieren, gebruik svp de Meerdere Registraties & Bewerk Profiel Formulieren Addon. "
914
+
915
+ #: ../admin/register-version.php:11
916
+ msgid "Register Your Version"
917
+ msgstr "Registreer je Versie"
918
+
919
+ #: ../admin/register-version.php:11
920
+ msgid "Register Version"
921
+ msgstr "Registreer Versie"
922
+
923
+ #: ../admin/register-version.php:58
924
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
925
+ msgstr "Als je deze versie van Profile Builder registreert, zul je informatie ontvangen inzake updates, patches en technisch support."
926
+
927
+ #: ../admin/register-version.php:60
928
+ msgid " Serial Number:"
929
+ msgstr "Serienummer:"
930
+
931
+ #: ../admin/register-version.php:65
932
+ msgid "The serial number was successfully validated!"
933
+ msgstr "Het serienummer is succesvol gevalideerd!"
934
+
935
+ #: ../admin/register-version.php:67
936
+ msgid "The serial number entered couldn't be validated!"
937
+ msgstr "Het ingevoerde serienummer kon niet gevalideerd worden!"
938
+
939
+ #: ../admin/register-version.php:69
940
+ msgid "The serial number couldn't be validated because it expired!"
941
+ msgstr "Het serienummer kon niet gevalideerd worden want is verlopen!"
942
+
943
+ #: ../admin/register-version.php:71
944
+ 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!"
945
+ msgstr "Het serienummer kon niet gevalideerd worden omdat het proces verlopen is. Dit komt mogelijk doordat de server niet werkt. Probeer het svp later opnieuw!"
946
+
947
+ #: ../admin/register-version.php:73
948
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
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
+
956
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
957
+ msgid "Edit this item"
958
+ msgstr "Bewerk dit item"
959
+
960
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
961
+ msgid "Delete this item"
962
+ msgstr "Verwijder dit item"
963
+
964
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
965
+ msgid "Please enter a value for the required field "
966
+ msgstr "Voer svp een waarde in voor het verplichte veld"
967
+
968
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
969
+ msgid "Select File"
970
+ msgstr "Selecteer Bestand"
971
+
972
+ #: ../assets/lib/wck-api/fields/upload.php:31
973
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
974
+ msgid "Remove"
975
+ msgstr "Verwijder"
976
+
977
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
978
+ msgid "Syncronize WCK"
979
+ msgstr "Synchroniseer WCK"
980
+
981
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
982
+ msgid "Syncronize WCK Translation"
983
+ msgstr "Synchroniseer WCK Vertaling"
984
+
985
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
986
+ msgid "You can add the information for the %s after you add a entry"
987
+ msgstr "Je kunt informatie toevoegen voor %s nadat je een item hebt toegevoegd"
988
+
989
+ #: ../assets/lib/wck-api/fields/upload.php:48
990
+ msgid "Upload "
991
+ msgstr "Uploaden"
992
+
993
+ #: ../features/class-list-table.php:184
994
+ msgid "No items found."
995
+ msgstr "Geen items gevonden."
996
+
997
+ #: ../features/class-list-table.php:308
998
+ msgid "Bulk Actions"
999
+ msgstr "Bulk Acties"
1000
+
1001
+ #: ../features/class-list-table.php:318
1002
+ msgid "Apply"
1003
+ msgstr "Toepassen"
1004
+
1005
+ #: ../features/class-list-table.php:402
1006
+ msgid "Show all dates"
1007
+ msgstr "Toon alle data"
1008
+
1009
+ #: ../features/class-list-table.php:415
1010
+ msgid "%1$s %2$d"
1011
+ msgstr "%1$s %2$d"
1012
+
1013
+ #: ../features/class-list-table.php:431
1014
+ msgid "List View"
1015
+ msgstr "Toon Lijst"
1016
+
1017
+ #: ../features/class-list-table.php:432
1018
+ msgid "Excerpt View"
1019
+ msgstr "Toon fragment"
1020
+
1021
+ #: ../features/class-list-table.php:458
1022
+ msgid "%s pending"
1023
+ msgstr "%s in afwachting"
1024
+
1025
+ #: ../features/class-list-table.php:566
1026
+ msgid "%1$s of %2$s"
1027
+ msgstr "%1$s van %2$s"
1028
+
1029
+ #: ../features/class-list-table.php:713
1030
+ msgid "Select All"
1031
+ msgstr "Selecteer Alle"
1032
+
1033
+ #: ../features/functions.php:193 ../features/functions.php:194
1034
+ msgid "Profile Builder"
1035
+ msgstr "Profile Builder"
1036
+
1037
+ #: ../features/functions.php:261
1038
+ msgid "The user-validation has failed - the avatar was not deleted!"
1039
+ msgstr "Validatie gebruiker mislukt - de avatar is niet verwijderd!"
1040
+
1041
+ #: ../features/functions.php:272
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"
1052
+ msgstr "Goedkeuring Beheerder"
1053
+
1054
+ #: ../features/admin-approval/admin-approval.php:22
1055
+ #: ../features/email-confirmation/email-confirmation.php:58
1056
+ msgid "Do you want to"
1057
+ msgstr "Wil je"
1058
+
1059
+ #: ../features/admin-approval/admin-approval.php:45
1060
+ msgid "Your session has expired! Please refresh the page and try again"
1061
+ msgstr "Je sessie is verlopen. Ververs svp de pagina en probeer het opnieuw "
1062
+
1063
+ #: ../features/admin-approval/admin-approval.php:56
1064
+ msgid "User successfully approved!"
1065
+ msgstr "Gebruiker succesvol goedgekeurd!"
1066
+
1067
+ #: ../features/admin-approval/admin-approval.php:64
1068
+ msgid "User successfully unapproved!"
1069
+ msgstr "Gebruiker succesvol afgekeurd!"
1070
+
1071
+ #: ../features/admin-approval/admin-approval.php:70
1072
+ msgid "User successfully deleted!"
1073
+ msgstr "Gebruiker succesvol verwijderd!"
1074
+
1075
+ #: ../features/admin-approval/admin-approval.php:75
1076
+ #: ../features/admin-approval/admin-approval.php:140
1077
+ #: ../features/email-confirmation/email-confirmation.php:122
1078
+ msgid "You either don't have permission for that action or there was an error!"
1079
+ msgstr "Je hebt of geen goedkeuring voor deze actie of er was een fout!"
1080
+
1081
+ #: ../features/admin-approval/admin-approval.php:87
1082
+ msgid "Your session has expired! Please refresh the page and try again."
1083
+ msgstr "Je sessie is verlopen. Ververs svp de pagina en probeer het opnieuw."
1084
+
1085
+ #: ../features/admin-approval/admin-approval.php:107
1086
+ msgid "Users successfully approved!"
1087
+ msgstr "Gebruiker succesvol goedgekeurd! "
1088
+
1089
+ #: ../features/admin-approval/admin-approval.php:122
1090
+ msgid "Users successfully unapproved!"
1091
+ msgstr "Gebruiker succesvol afgekeurd!"
1092
+
1093
+ #: ../features/admin-approval/admin-approval.php:135
1094
+ msgid "Users successfully deleted!"
1095
+ msgstr "Gebruiker succesvol verwijderd!"
1096
+
1097
+ #: ../features/admin-approval/admin-approval.php:150
1098
+ msgid "Your account on %1$s has been approved!"
1099
+ msgstr "Je account op %1$s is goedgekeurd!"
1100
+
1101
+ #: ../features/admin-approval/admin-approval.php:151
1102
+ #: ../features/admin-approval/admin-approval.php:154
1103
+ msgid "approved"
1104
+ msgstr "goedgekeurd"
1105
+
1106
+ #: ../features/admin-approval/admin-approval.php:153
1107
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1108
+ msgstr "Een beheerder heeft net je account goedgekeurd op %1$s (%2$s)."
1109
+
1110
+ #: ../features/admin-approval/admin-approval.php:157
1111
+ msgid "Your account on %1$s has been unapproved!"
1112
+ msgstr "Je account op %1$s is afgekeurd!"
1113
+
1114
+ #: ../features/admin-approval/admin-approval.php:158
1115
+ #: ../features/admin-approval/admin-approval.php:161
1116
+ msgid "unapproved"
1117
+ msgstr "afgekeurd"
1118
+
1119
+ #: ../features/admin-approval/admin-approval.php:160
1120
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1121
+ msgstr "Een beheerder heeft net je account afgekeurd op %1$s (%2$s)."
1122
+
1123
+ #: ../features/admin-approval/admin-approval.php:177
1124
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1125
+ msgstr "<strong>FOUT</strong>: Je account moet bevestigd worden door een beheerder voordat je kunt inloggen. "
1126
+
1127
+ #: ../features/admin-approval/admin-approval.php:189
1128
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1129
+ msgstr "Je account moet bevestigd worden door een beheerder voordat je \"Wachtwoord Achterhalen\" functie kunt gebruiken."
1130
+
1131
+ #: ../features/admin-approval/class-admin-approval.php:119
1132
+ msgid "View or Edit"
1133
+ msgstr "Bekijk of Bewerk"
1134
+
1135
+ #: ../features/admin-approval/class-admin-approval.php:124
1136
+ msgid "delete this user?"
1137
+ msgstr "deze gebruiker verwijderen?"
1138
+
1139
+ #: ../features/admin-approval/class-admin-approval.php:127
1140
+ msgid "unapprove this user?"
1141
+ msgstr "deze gebruiker afkeuren?"
1142
+
1143
+ #: ../features/admin-approval/class-admin-approval.php:127
1144
+ #: ../features/admin-approval/class-admin-approval.php:234
1145
+ msgid "Unapprove"
1146
+ msgstr "Afkeuren"
1147
+
1148
+ #: ../features/admin-approval/class-admin-approval.php:129
1149
+ msgid "approve this user?"
1150
+ msgstr "deze gebruiker goedkeuren?"
1151
+
1152
+ #: ../features/admin-approval/class-admin-approval.php:129
1153
+ #: ../features/admin-approval/class-admin-approval.php:233
1154
+ msgid "Approve"
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
+
1169
+ #: ../features/admin-approval/class-admin-approval.php:181
1170
+ #: ../modules/user-listing/userlisting.php:117
1171
+ msgid "Role"
1172
+ msgstr "Rol"
1173
+
1174
+ #: ../features/admin-approval/class-admin-approval.php:182
1175
+ #: ../features/email-confirmation/class-email-confirmation.php:155
1176
+ msgid "Registered"
1177
+ msgstr "Geregistreerd"
1178
+
1179
+ #: ../features/admin-approval/class-admin-approval.php:183
1180
+ msgid "User-status"
1181
+ msgstr "Status Gebruiker"
1182
+
1183
+ #: ../features/admin-approval/class-admin-approval.php:263
1184
+ msgid "Do you want to bulk approve the selected users?"
1185
+ msgstr "Wil je de geselecteerde gebruikers in 1 keer goedkeuren?"
1186
+
1187
+ #: ../features/admin-approval/class-admin-approval.php:271
1188
+ msgid "Do you want to bulk unapprove the selected users?"
1189
+ msgstr "Wil je de geselecteerde gebruikers in 1 keer afkeuren?"
1190
+
1191
+ #: ../features/admin-approval/class-admin-approval.php:277
1192
+ msgid "Do you want to bulk delete the selected users?"
1193
+ msgstr "Wil je de geselecteerde gebruikers in 1 keer verwijderen?"
1194
+
1195
+ #: ../features/admin-approval/class-admin-approval.php:285
1196
+ #: ../features/email-confirmation/class-email-confirmation.php:263
1197
+ msgid "Sorry, but you don't have permission to do that!"
1198
+ msgstr "Sorry, je hebt geen toestemming om dit te doen!"
1199
+
1200
+ #: ../features/admin-approval/class-admin-approval.php:318
1201
+ msgid "Approved"
1202
+ msgstr "Goedgekeurd"
1203
+
1204
+ #: ../features/admin-approval/class-admin-approval.php:320
1205
+ msgid "Unapproved"
1206
+ msgstr "Afgekeurd"
1207
+
1208
+ #: ../features/admin-approval/class-admin-approval.php:492
1209
+ #: ../features/email-confirmation/class-email-confirmation.php:448
1210
+ msgid "All Users"
1211
+ msgstr "Alle Gebruikers"
1212
+
1213
+ #: ../features/email-confirmation/class-email-confirmation.php:106
1214
+ msgid "delete this user from the _signups table?"
1215
+ msgstr "verwijder gebruiker van de _signups tabel?"
1216
+
1217
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1218
+ msgid "confirm this email yourself?"
1219
+ msgstr "dit e-mailadres zelf bevestigen?"
1220
+
1221
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1222
+ #: ../features/email-confirmation/class-email-confirmation.php:203
1223
+ msgid "Confirm Email"
1224
+ msgstr "E-mailadres Bevestigen "
1225
+
1226
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1227
+ msgid "resend the activation link?"
1228
+ msgstr "de activatielink opnieuw sturen?"
1229
+
1230
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1231
+ #: ../features/email-confirmation/class-email-confirmation.php:204
1232
+ msgid "Resend Activation Email"
1233
+ msgstr "Activatiemail Opnieuw Sturen"
1234
+
1235
+ #: ../features/email-confirmation/class-email-confirmation.php:234
1236
+ msgid "%s couldn't be deleted"
1237
+ msgstr "%s kon niet verwijderd worden"
1238
+
1239
+ #: ../features/email-confirmation/class-email-confirmation.php:238
1240
+ msgid "All users have been successfully deleted"
1241
+ msgstr "Alle gebruikers zijn succesvol verwijderd"
1242
+
1243
+ #: ../features/email-confirmation/class-email-confirmation.php:248
1244
+ msgid "The selected users have been activated"
1245
+ msgstr "De geselecteerde gebruikers zijn geactiveerd"
1246
+
1247
+ #: ../features/email-confirmation/class-email-confirmation.php:259
1248
+ msgid "The selected users have had their activation emails resent"
1249
+ msgstr "Activatiemail is opnieuw gestuurd naar de geselecteerde gebruikers "
1250
+
1251
+ #: ../features/email-confirmation/class-email-confirmation.php:445
1252
+ #: ../features/email-confirmation/email-confirmation.php:47
1253
+ msgid "Users with Unconfirmed Email Address"
1254
+ msgstr "Gebruikers met niet bevestigde e-mailadressen"
1255
+
1256
+ #: ../features/email-confirmation/email-confirmation.php:97
1257
+ msgid "There was an error performing that action!"
1258
+ msgstr "Fout opgetreden tijdens deze actie!"
1259
+
1260
+ #: ../features/email-confirmation/email-confirmation.php:105
1261
+ msgid "The selected user couldn't be deleted"
1262
+ msgstr "De geselecteerde gebruiker kon niet verwijderd worden"
1263
+
1264
+ #: ../features/email-confirmation/email-confirmation.php:116
1265
+ msgid "Email notification resent to user"
1266
+ msgstr "E-mail notificatie opnieuw gestuurd naar gebruiker"
1267
+
1268
+ #: ../features/email-confirmation/email-confirmation.php:349
1269
+ msgid "[%1$s] Activate %2$s"
1270
+ msgstr "[%1$s] Activeer %2$s"
1271
+
1272
+ #: ../features/email-confirmation/email-confirmation.php:350
1273
+ msgid ""
1274
+ "To activate your user, please click the following link:\n"
1275
+ "\n"
1276
+ "%s%s%s\n"
1277
+ "\n"
1278
+ "After you activate it you will receive yet *another email* with your login."
1279
+ msgstr ""
1280
+ "Om je gebruiker te activeren, klik op de volgende link:\n"
1281
+ "\n"
1282
+ "%s%s%s\n"
1283
+ "\n"
1284
+ "Nadat je het geactiveerd hebt ontvang je nog *een andere e-mail* met je inlog."
1285
+
1286
+ #: ../features/email-confirmation/email-confirmation.php:388
1287
+ #: ../front-end/register.php:68
1288
+ msgid "Could not create user!"
1289
+ msgstr "Kon gebruiker niet aanmaken!"
1290
+
1291
+ #: ../features/email-confirmation/email-confirmation.php:391
1292
+ msgid "That username is already activated!"
1293
+ msgstr "Die gebruikersnaam is al geactiveerd!"
1294
+
1295
+ #: ../features/email-confirmation/email-confirmation.php:420
1296
+ msgid "There was an error while trying to activate the user"
1297
+ msgstr "Fout opgetreden tijdens activatie van de gebruiker"
1298
+
1299
+ #: ../features/email-confirmation/email-confirmation.php:458
1300
+ #: ../modules/email-customizer/admin-email-customizer.php:73
1301
+ msgid "A new subscriber has (been) registered!"
1302
+ msgstr "Een nieuw abonnee is geregistreerd!"
1303
+
1304
+ #: ../features/email-confirmation/email-confirmation.php:461
1305
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1306
+ msgstr "Nieuwe abonnee op %1$s.<br/><br/>Gebruikersnaam:%2$s<br/>E-mailadres:%3$s<br/>"
1307
+
1308
+ #: ../features/email-confirmation/email-confirmation.php:466
1309
+ 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!"
1310
+ msgstr "De functie \"Goedkeuring Beheerder\" is tijdens registratie geactiveerd, zo vergeet niet dat je gebruiker moet goedkeuren voordat hij/zij kan inloggen!"
1311
+
1312
+ #: ../features/email-confirmation/email-confirmation.php:481
1313
+ msgid "[%1$s] Your new account information"
1314
+ msgstr "[%1$s] Je nieuwe account informatie"
1315
+
1316
+ #: ../features/email-confirmation/email-confirmation.php:484
1317
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1318
+ msgstr "Welkom op %1$s!<br/><br/><br/>Je gebruikersnaam is:%2$s en wachtwoord:%3$s"
1319
+
1320
+ #: ../features/email-confirmation/email-confirmation.php:489
1321
+ #: ../front-end/register.php:103
1322
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1323
+ msgstr "Voordat je toegang tot je account hebt, moet een beheerder dit goedkeuren. Je wordt geinformeerd via e-mail."
1324
+
1325
+ #: ../features/login-widget/login-widget.php:10
1326
+ msgid "This login widget lets you add a login form in the sidebar."
1327
+ msgstr "Met deze inlog widget kun je een inlogformulier in sidebar plaatsen."
1328
+
1329
+ #: ../features/login-widget/login-widget.php:15
1330
+ msgid "Profile Builder Login Widget"
1331
+ msgstr "Profile Builder Inlog Widget"
1332
+
1333
+ #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1334
+ msgid "Register"
1335
+ msgstr "Registreer"
1336
+
1337
+ #: ../features/login-widget/login-widget.php:63
1338
+ msgid "Title:"
1339
+ msgstr "Titel:"
1340
+
1341
+ #: ../features/login-widget/login-widget.php:68
1342
+ msgid "After login redirect URL (optional):"
1343
+ msgstr "Doorverwijs URL na inloggen (optioneel):"
1344
+
1345
+ #: ../features/login-widget/login-widget.php:73
1346
+ msgid "Register page URL (optional):"
1347
+ msgstr "Registratie pagina URL (optioneel):"
1348
+
1349
+ #: ../features/login-widget/login-widget.php:78
1350
+ msgid "Password Recovery page URL (optional):"
1351
+ msgstr "Wachtwoord Achterhalen URL (optioneel):"
1352
+
1353
+ #: ../features/upgrades/upgrades-functions.php:91
1354
+ #: ../features/upgrades/upgrades-functions.php:134
1355
+ msgid "The usernames cannot be changed."
1356
+ msgstr "De gebruikersnaam kan niet gewijzigd worden."
1357
+
1358
+ #: ../front-end/class-formbuilder.php:83
1359
+ msgid "Only an administrator can add new users."
1360
+ msgstr "Alleen een beheerder kan nieuwe gebruikers toevoegen."
1361
+
1362
+ #: ../front-end/class-formbuilder.php:93
1363
+ msgid "Users can register themselves or you can manually create users here."
1364
+ msgstr "Gebruikers kunnen zichzelf registreren of je kunt hier handmatig gebruikers aanmaken."
1365
+
1366
+ #: ../front-end/class-formbuilder.php:96
1367
+ msgid "Users cannot currently register themselves, but you can manually create users here."
1368
+ msgstr "Gebruikers kunnen zich momenteel niet zelf registreren, maar je kunt hier handmatig gebruikers aanmaken."
1369
+
1370
+ #: ../front-end/class-formbuilder.php:108
1371
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
1372
+ msgstr "Je bent momenteel ingelogd als %1s. Je hebt geen ander account nodig. %2s"
1373
+
1374
+ #: ../front-end/class-formbuilder.php:108
1375
+ msgid "Log out of this account."
1376
+ msgstr "Uitloggen van dit account."
1377
+
1378
+ #: ../front-end/class-formbuilder.php:108
1379
+ msgid "Logout"
1380
+ msgstr "Uitloggen"
1381
+
1382
+ #: ../front-end/class-formbuilder.php:114
1383
+ msgid "You must be logged in to edit your profile."
1384
+ msgstr "Je moet ingelogd zijn om je profiel te bewerken."
1385
+
1386
+ #: ../front-end/class-formbuilder.php:137
1387
+ msgid "here"
1388
+ msgstr "hier"
1389
+
1390
+ #: ../front-end/class-formbuilder.php:139
1391
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1392
+ msgstr "Je wordt snel automatisch doorgestuurd. Als je deze pagina meer dan %1$d seconden ziet, klik svp %2$s.%3$s"
1393
+
1394
+ #: ../front-end/class-formbuilder.php:224
1395
+ msgid "The account %1s has been successfully created!"
1396
+ msgstr "Het account %1s is succesvol gemaakt!"
1397
+
1398
+ #: ../front-end/class-formbuilder.php:227
1399
+ #: ../front-end/class-formbuilder.php:233
1400
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1401
+ msgstr "Voordat je toegang krijgt tot het account %1s, moet je het e-mailadres bevestigen. Kijk svp in je inbox en klik op de activatielink."
1402
+
1403
+ #: ../front-end/class-formbuilder.php:230
1404
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1405
+ msgstr "Voordat je toegang krijgt tot het account %1s, moet een beheerder dit goedkeuren. Je wordt geinformeerd via e-mail."
1406
+
1407
+ #: ../front-end/class-formbuilder.php:243
1408
+ msgid "Your profile has been successfully updated!"
1409
+ msgstr "Je profiel is succesvol bijgewerkt!"
1410
+
1411
+ #: ../front-end/class-formbuilder.php:253
1412
+ msgid "There was an error in the submitted form"
1413
+ msgstr "Fout tijdens versturen van het formulier"
1414
+
1415
+ #: ../front-end/class-formbuilder.php:274
1416
+ msgid "Add User"
1417
+ msgstr "Gebruiker Toevoegen"
1418
+
1419
+ #: ../front-end/class-formbuilder.php:277
1420
+ msgid "Update"
1421
+ msgstr "Bijwerken"
1422
+
1423
+ #: ../front-end/class-formbuilder.php:314
1424
+ #: ../front-end/extra-fields/extra-fields.php:33
1425
+ msgid "The avatar was successfully deleted!"
1426
+ msgstr "De avatar is succesvol verwijderd!"
1427
+
1428
+ #: ../front-end/class-formbuilder.php:314
1429
+ #: ../front-end/extra-fields/extra-fields.php:35
1430
+ msgid "The following attachment was successfully deleted:"
1431
+ msgstr "Het volgende bestand is succesvol verwijderd:"
1432
+
1433
+ #: ../front-end/class-formbuilder.php:326
1434
+ msgid "Send these credentials via email."
1435
+ msgstr "Stuur deze aanmeldgegevens via e-mail."
1436
+
1437
+ #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1438
+ #: ../front-end/login.php:79 ../front-end/login.php:89
1439
+ #: ../front-end/recover.php:17 ../front-end/recover.php:206
1440
+ msgid "ERROR"
1441
+ msgstr "FOUT"
1442
+
1443
+ #: ../front-end/login.php:72
1444
+ msgid "The password you entered is incorrect."
1445
+ msgstr "Het ingevoerde wachtwoord is onjuist."
1446
+
1447
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1448
+ msgid "Password Lost and Found."
1449
+ msgstr "Wachtwoord Verloren en Gevonden"
1450
+
1451
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1452
+ msgid "Lost your password"
1453
+ msgstr "Je wachtwoord verloren"
1454
+
1455
+ #: ../front-end/login.php:89
1456
+ msgid "Both fields are empty."
1457
+ msgstr "Beide velden zijn leeg."
1458
+
1459
+ #: ../front-end/login.php:199
1460
+ msgid "You are currently logged in as %1$s. %2$s"
1461
+ msgstr "Je bent momenteel ingelogd als %1$s. %2$s"
1462
+
1463
+ #: ../front-end/login.php:199
1464
+ msgid "Log out of this account"
1465
+ msgstr "Uitloggen van dit account"
1466
+
1467
+ #: ../front-end/login.php:199
1468
+ msgid "Log out"
1469
+ msgstr "Uitloggen"
1470
+
1471
+ #: ../front-end/recover.php:17
1472
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1473
+ msgstr "Je account moet door een beheerder worden bevestigd, voordat je de \"Wachtwoord Reset\" functie kunt gebruiken."
1474
+
1475
+ #: ../front-end/recover.php:91
1476
+ msgid "Reset Password"
1477
+ msgstr "Reset Wachtwoord"
1478
+
1479
+ #: ../front-end/recover.php:111
1480
+ msgid "Please enter your username or email address."
1481
+ msgstr "Voer svp je gebruikersnaam en e-mailadres in."
1482
+
1483
+ #: ../front-end/recover.php:112
1484
+ msgid "You will receive a link to create a new password via email."
1485
+ msgstr "Je zult een link via e-mail ontvangen om een nieuw wachtwoord aan te maken."
1486
+
1487
+ #: ../front-end/recover.php:119
1488
+ msgid "Username or E-mail"
1489
+ msgstr "Gebruikersnaam of E-mailadres"
1490
+
1491
+ #: ../front-end/recover.php:125
1492
+ msgid "Get New Password"
1493
+ msgstr "Ontvang nieuw wachtwoord"
1494
+
1495
+ #: ../front-end/recover.php:164
1496
+ msgid "The username entered wasn't found in the database!"
1497
+ msgstr "De ingevoerde gebruikersnaam is niet in de database gevonden!"
1498
+
1499
+ #: ../front-end/recover.php:164
1500
+ msgid "Please check that you entered the correct username."
1501
+ msgstr "Kijk svp of je de juiste gebruikersnaam ingevoerd hebt."
1502
+
1503
+ #: ../front-end/recover.php:179
1504
+ msgid "Check your e-mail for the confirmation link."
1505
+ msgstr "Kijk svp in je e-mail voor de bevestingslink."
1506
+
1507
+ #: ../front-end/recover.php:194
1508
+ 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"
1509
+ msgstr "Iemand heeft gevraagd om het wachtwoord te resetten voor het volgende account: <b>%1$s</b><br/>Als dit een fout was, negeer deze e-mail en er zal niets gebeuren.<br/>Om wachtwoord te resetten, ga naar de volgende link:%2$s"
1510
+
1511
+ #: ../front-end/recover.php:197
1512
+ msgid "Password Reset from \"%1$s\""
1513
+ msgstr "Wachtwoord Resetten van \"%1$s\""
1514
+
1515
+ #: ../front-end/recover.php:206
1516
+ msgid "There was an error while trying to send the activation link to %1$s!"
1517
+ msgstr "Fout opgetreden tijdens verzenden van de activatielink naar %1$s!"
1518
+
1519
+ #: ../front-end/recover.php:215
1520
+ msgid "The email address entered wasn't found in the database!"
1521
+ msgstr "Het ingevoerde e-mailadres is niet in de database gevonden!"
1522
+
1523
+ #: ../front-end/recover.php:215
1524
+ msgid "Please check that you entered the correct email address."
1525
+ msgstr "Kijk svp of je het juiste e-mailadres ingevoerd hebt."
1526
+
1527
+ #: ../front-end/default-fields/password/password.php:44
1528
+ #: ../front-end/recover.php:231
1529
+ msgid "<br/>The password must have the minimum length of "
1530
+ msgstr "<br/>Het wachtwoord moet een minimale lengte hebben van"
1531
+
1532
+ #: ../front-end/default-fields/password/password.php:48
1533
+ #: ../front-end/recover.php:235
1534
+ msgid "<br/>The password must have a minimum strength of "
1535
+ msgstr "<br/>Het wachtwoord moet een minimale sterkte hebben van"
1536
+
1537
+ #: ../front-end/recover.php:242
1538
+ msgid "Your password has been successfully changed!"
1539
+ msgstr "Je wachtwoord is succesvol gewijzigd!"
1540
+
1541
+ #: ../front-end/recover.php:256
1542
+ msgid "You have successfully reset your password to: %1$s"
1543
+ msgstr "Je hebt je wachtwoord succesvol gereset naar: %1$s"
1544
+
1545
+ #: ../front-end/recover.php:259 ../front-end/recover.php:273
1546
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
1547
+ msgstr "Wachtwoord Succesvol Gereset voor %1$s op \"%2$s\""
1548
+
1549
+ #: ../front-end/recover.php:270
1550
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1551
+ msgstr "%1$s heeft gevraagd om wachtwoord te wijzigen via de wachtwoord reset functie.<br/>Zijn/haar nieuwe wachtwoord is:%2$s"
1552
+
1553
+ #: ../front-end/recover.php:289
1554
+ msgid "The entered passwords don't match!"
1555
+ msgstr "De ingevoerde wachtwoorden komen niet overeen!"
1556
+
1557
+ #: ../front-end/recover.php:334
1558
+ msgid "ERROR:"
1559
+ msgstr "FOUT:"
1560
+
1561
+ #: ../front-end/recover.php:334
1562
+ msgid "Invalid key!"
1563
+ msgstr "Ongeldige sleutel!"
1564
+
1565
+ #: ../front-end/register.php:46
1566
+ msgid "Invalid activation key!"
1567
+ msgstr "Ongeldige activatiesleutel!"
1568
+
1569
+ #: ../front-end/register.php:50
1570
+ msgid "This username is now active!"
1571
+ msgstr "Deze gebruikersnaam is nu actief!"
1572
+
1573
+ #: ../front-end/register.php:71
1574
+ msgid "This username is already activated!"
1575
+ msgstr "Deze gebruikersnaam is reeds geactiveerd!"
1576
+
1577
+ #: ../front-end/register.php:102
1578
+ msgid "Your email was successfully confirmed."
1579
+ msgstr "Je e-mailadres is succesvol bevestigd."
1580
+
1581
+ #: ../front-end/register.php:112
1582
+ msgid "There was an error while trying to activate the user."
1583
+ msgstr "Fout opgetreden tijdens activatie van de gebruiker."
1584
+
1585
+ #: ../front-end/default-fields/email/email.php:42
1586
+ msgid "The email you entered is not a valid email address."
1587
+ msgstr "Het ingevoerde e-mailadres is niet geldig."
1588
+
1589
+ #: ../front-end/default-fields/email/email.php:49
1590
+ msgid "This email is already reserved to be used soon."
1591
+ msgstr "Dit e-mailadres is gereserveerd voor toekomstig gebruik."
1592
+
1593
+ #: ../front-end/default-fields/email/email.php:49
1594
+ #: ../front-end/default-fields/email/email.php:55
1595
+ #: ../front-end/default-fields/email/email.php:62
1596
+ #: ../front-end/default-fields/username/username.php:44
1597
+ #: ../front-end/default-fields/username/username.php:51
1598
+ msgid "Please try a different one!"
1599
+ msgstr "Probeer svp een andere!"
1600
+
1601
+ #: ../front-end/default-fields/email/email.php:55
1602
+ #: ../front-end/default-fields/email/email.php:62
1603
+ msgid "This email is already in use."
1604
+ msgstr "Dit e-mailadres is reeds in gebruik."
1605
+
1606
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1607
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1608
+ msgid "The passwords do not match"
1609
+ msgstr "De wachtwoorden komen niet overeen"
1610
+
1611
+ #: ../front-end/default-fields/username/username.php:44
1612
+ msgid "This username already exists."
1613
+ msgstr "Deze gebruikersnaam bestaat reeds."
1614
+
1615
+ #: ../front-end/default-fields/username/username.php:51
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
1661
+ #: ../front-end/extra-fields/input/input.php:28
1662
+ #: ../front-end/extra-fields/radio/radio.php:42
1663
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1664
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1665
+ #: ../front-end/extra-fields/select/select.php:44
1666
+ #: ../front-end/extra-fields/textarea/textarea.php:28
1667
+ #: ../front-end/extra-fields/upload/upload.php:62
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
+
1728
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1729
+ msgid "Could not open socket!"
1730
+ msgstr "Kon socket niet openen!"
1731
+
1732
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1733
+ msgid "To use reCAPTCHA you must get an API key from"
1734
+ msgstr "Om reCAPTCHA te gebruiken moet je een API sleutel krijgen van"
1735
+
1736
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1737
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1738
+ msgstr "Om veiligheid redenen, moet je de externe ip aanbieden aan reCAPTCHA!"
1739
+
1740
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1741
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1742
+ msgstr "Om reCAPTCHA Mailhide te gebruiken, moet je de mcrypt php module geinstalleerd hebben!"
1743
+
1744
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1745
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1746
+ msgstr "Om reCAPTCHA Mailhide te gebruiken, moet je een openbare en prive sleutel aanvragen; dit kun je doen op"
1747
+
1748
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1749
+ msgid "To use reCAPTCHA you must get an API public key from:"
1750
+ msgstr "Om reCAPTCHA te gebruiken moet je een openbare API sleutel krijgen van:"
1751
+
1752
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1753
+ msgid "To use reCAPTCHA you must get an API private key from:"
1754
+ msgstr "Om reCAPTCHA te gebruiken moet je een prive API sleutel krijgen van:"
1755
+
1756
+ #: ../front-end/extra-fields/upload/upload.php:35
1757
+ msgid "Current file: No uploaded attachment"
1758
+ msgstr "Huidig bestand: Geen geüploade bijlage"
1759
+
1760
+ #: ../front-end/extra-fields/upload/upload.php:39
1761
+ #: ../front-end/extra-fields/upload/upload.php:48
1762
+ #: ../front-end/extra-fields/upload/upload.php:71
1763
+ #: ../front-end/extra-fields/upload/upload.php:75
1764
+ #: ../front-end/extra-fields/upload/upload.php:77
1765
+ msgid "Current file"
1766
+ msgstr "Huidig bestand"
1767
+
1768
+ #: ../front-end/extra-fields/upload/upload.php:42
1769
+ #: ../front-end/extra-fields/upload/upload.php:51
1770
+ #: ../front-end/extra-fields/upload/upload.php:75
1771
+ #: ../front-end/extra-fields/upload/upload.php:77
1772
+ msgid "Click to see the current attachment"
1773
+ msgstr "Klik om huidige bijlage te zien"
1774
+
1775
+ #: ../front-end/extra-fields/upload/upload.php:44
1776
+ #: ../front-end/extra-fields/upload/upload.php:75
1777
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1778
+ msgstr "De bijlage kan niet verwijderd worden (het is als verplicht gemarkeerd door de beheerder)"
1779
+
1780
+ #: ../front-end/extra-fields/upload/upload.php:53
1781
+ #: ../front-end/extra-fields/upload/upload.php:77
1782
+ msgid "Are you sure you want to delete this attachment?"
1783
+ msgstr "Weet je zeker dat je deze bijlage wilt verwijderen?"
1784
+
1785
+ #: ../front-end/extra-fields/upload/upload.php:54
1786
+ #: ../front-end/extra-fields/upload/upload.php:77
1787
+ msgid "Click to delete the current attachment"
1788
+ msgstr "Klik om huidige bijlage te verwijderen"
1789
+
1790
+ #: ../front-end/extra-fields/upload/upload.php:71
1791
+ msgid "No uploaded attachment"
1792
+ msgstr "Geen geüploade bijlage"
1793
+
1794
+ #: ../front-end/extra-fields/upload/upload.php:164
1795
+ msgid "The extension of the file is not allowed"
1796
+ msgstr "De extensie van dit bestand is niet toegestaan"
1797
+
1798
+ #: ../front-end/extra-fields/upload/upload.php:186
1799
+ msgid "The file could only partially be uploaded"
1800
+ msgstr "Het bestand kon alleen gedeeltelijk geüpload worden"
1801
+
1802
+ #: ../front-end/extra-fields/upload/upload.php:201
1803
+ msgid "This field wasn't updated because an unknown error occured"
1804
+ msgstr "Veld is niet geupdate doordat onbekende fout opgetreden is"
1805
+
1806
+ #: ../modules/modules.php:11 ../modules/modules.php:80
1807
+ msgid "Modules"
1808
+ msgstr "Modules"
1809
+
1810
+ #: ../modules/modules.php:81
1811
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
1812
+ msgstr "Hier kun je alle modules van Profile Builder activeren / deactiveren."
1813
+
1814
+ #: ../modules/modules.php:91
1815
+ msgid "Name/Description"
1816
+ msgstr "Naam/Beschrijving"
1817
+
1818
+ #: ../modules/modules.php:92
1819
+ msgid "Status"
1820
+ msgstr "Status"
1821
+
1822
+ #: ../modules/custom-redirects/custom-redirects.php:48
1823
+ #: ../modules/custom-redirects/custom-redirects.php:58
1824
+ #: ../modules/custom-redirects/custom-redirects.php:68
1825
+ #: ../modules/custom-redirects/custom-redirects.php:94
1826
+ #: ../modules/custom-redirects/custom-redirects.php:104
1827
+ #: ../modules/custom-redirects/custom-redirects.php:114
1828
+ #: ../modules/custom-redirects/custom-redirects.php:124
1829
+ #: ../modules/modules.php:99 ../modules/modules.php:106
1830
+ #: ../modules/modules.php:113 ../modules/modules.php:120
1831
+ #: ../modules/modules.php:127 ../modules/modules.php:134
1832
+ msgid "Active"
1833
+ msgstr "Actieve"
1834
+
1835
+ #: ../modules/custom-redirects/custom-redirects.php:49
1836
+ #: ../modules/custom-redirects/custom-redirects.php:59
1837
+ #: ../modules/custom-redirects/custom-redirects.php:69
1838
+ #: ../modules/custom-redirects/custom-redirects.php:95
1839
+ #: ../modules/custom-redirects/custom-redirects.php:105
1840
+ #: ../modules/custom-redirects/custom-redirects.php:115
1841
+ #: ../modules/custom-redirects/custom-redirects.php:125
1842
+ #: ../modules/modules.php:100 ../modules/modules.php:107
1843
+ #: ../modules/modules.php:114 ../modules/modules.php:121
1844
+ #: ../modules/modules.php:128 ../modules/modules.php:135
1845
+ msgid "Inactive"
1846
+ msgstr "Inactieve"
1847
+
1848
+ #: ../modules/email-customizer/admin-email-customizer.php:11
1849
+ #: ../modules/email-customizer/admin-email-customizer.php:12
1850
+ #: ../modules/modules.php:118
1851
+ msgid "Admin Email Customizer"
1852
+ msgstr "Aanpasser E-mailadres Beheerder"
1853
+
1854
+ #: ../modules/email-customizer/user-email-customizer.php:11
1855
+ #: ../modules/email-customizer/user-email-customizer.php:12
1856
+ #: ../modules/modules.php:125
1857
+ msgid "User Email Customizer"
1858
+ msgstr "Aanpasser E-mailadres Gebruiker"
1859
+
1860
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1861
+ msgid "Save"
1862
+ msgstr "Opslaan"
1863
+
1864
+ #: ../modules/custom-redirects/custom-redirects.php:35
1865
+ msgid "Redirects on custom page requests:"
1866
+ msgstr "Stuurt door als aangepaste pagina's geladen worden:"
1867
+
1868
+ #: ../modules/custom-redirects/custom-redirects.php:39
1869
+ #: ../modules/custom-redirects/custom-redirects.php:85
1870
+ msgid "Action"
1871
+ msgstr "Actie"
1872
+
1873
+ #: ../modules/custom-redirects/custom-redirects.php:40
1874
+ #: ../modules/custom-redirects/custom-redirects.php:86
1875
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
1876
+ #: ../modules/multiple-forms/register-forms.php:230
1877
+ msgid "Redirect"
1878
+ msgstr "Stuur door"
1879
+
1880
+ #: ../modules/custom-redirects/custom-redirects.php:41
1881
+ #: ../modules/custom-redirects/custom-redirects.php:87
1882
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
1883
+ #: ../modules/multiple-forms/register-forms.php:232
1884
+ msgid "URL"
1885
+ msgstr "URL"
1886
+
1887
+ #: ../modules/custom-redirects/custom-redirects.php:46
1888
+ msgid "After Registration:"
1889
+ msgstr "Na Registratie:"
1890
+
1891
+ #: ../modules/custom-redirects/custom-redirects.php:56
1892
+ msgid "After Login:"
1893
+ msgstr "Na Inloggen:"
1894
+
1895
+ #: ../modules/custom-redirects/custom-redirects.php:66
1896
+ msgid "Recover Password (*)"
1897
+ msgstr "Wachtwoord Achterhalen (*)"
1898
+
1899
+ #: ../modules/custom-redirects/custom-redirects.php:77
1900
+ 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."
1901
+ msgstr "Indien deze functie is geactiveerd zal de gebruiker doorgestuurd worden op zowel de standaard WordPress pagina om wachtwoord te achterhalen als de \"Wachtwoord vergeten\" link die Profile Builder gebruikt op de front-end inlogpagina."
1902
+
1903
+ #: ../modules/custom-redirects/custom-redirects.php:81
1904
+ msgid "Redirects on default WordPress page requests:"
1905
+ msgstr "Stuurt door als standaard WordPress pagina's geladen worden: "
1906
+
1907
+ #: ../modules/custom-redirects/custom-redirects.php:92
1908
+ msgid "Default WordPress Login Page"
1909
+ msgstr "Standaard WordPress Inlog Pagina:"
1910
+
1911
+ #: ../modules/custom-redirects/custom-redirects.php:102
1912
+ msgid "Default WordPress Logout Page"
1913
+ msgstr "Standaard WordPress Uitlog Pagina:"
1914
+
1915
+ #: ../modules/custom-redirects/custom-redirects.php:112
1916
+ msgid "Default WordPress Register Page"
1917
+ msgstr "Standaard WordPress Registratie Pagina"
1918
+
1919
+ #: ../modules/custom-redirects/custom-redirects.php:122
1920
+ msgid "Default WordPress Dashboard (*)"
1921
+ msgstr "Standaard WordPress Dashboard (*)"
1922
+
1923
+ #: ../modules/custom-redirects/custom-redirects.php:133
1924
+ msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1925
+ msgstr "Stuurt alle gebruikers door BEHALVE gebruikers met beheerder privileges (kan opties beheren)."
1926
+
1927
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1928
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1929
+ msgstr "Deze instellingen zijn tijdens opslaan ook overgenomen in de \"Aanpasser E-mailadres Gebruiker\" instellingen pagina."
1930
+
1931
+ #: ../modules/email-customizer/admin-email-customizer.php:41
1932
+ #: ../modules/email-customizer/user-email-customizer.php:41
1933
+ msgid "From (name)"
1934
+ msgstr "Van (naam)"
1935
+
1936
+ #: ../modules/email-customizer/admin-email-customizer.php:49
1937
+ #: ../modules/email-customizer/user-email-customizer.php:49
1938
+ msgid "From (reply-to email)"
1939
+ msgstr "Van (reageer naar e-mailadres)"
1940
+
1941
+ #: ../modules/email-customizer/admin-email-customizer.php:57
1942
+ #: ../modules/email-customizer/user-email-customizer.php:57
1943
+ msgid "Common Settings"
1944
+ msgstr "Algemene Instellingen"
1945
+
1946
+ #: ../modules/email-customizer/admin-email-customizer.php:60
1947
+ msgid ""
1948
+ "\n"
1949
+ "<p>New subscriber on {{site_name}}.</p>\n"
1950
+ "<p>Username:{{username}}</p>\n"
1951
+ "<p>E-mail:{{user_email}}</p>\n"
1952
+ msgstr ""
1953
+ "\n"
1954
+ "<p>Nieuw abonnee op {{site_name}}.</p>\n"
1955
+ "\n"
1956
+ "<p>Gebruikersnaam:{{username}}</p>\n"
1957
+ "\n"
1958
+ "<p>E-mailadres:{{user_email}}</p>\n"
1959
+
1960
+ #: ../modules/email-customizer/admin-email-customizer.php:69
1961
+ #: ../modules/email-customizer/admin-email-customizer.php:99
1962
+ #: ../modules/email-customizer/user-email-customizer.php:71
1963
+ #: ../modules/email-customizer/user-email-customizer.php:99
1964
+ #: ../modules/email-customizer/user-email-customizer.php:128
1965
+ #: ../modules/email-customizer/user-email-customizer.php:155
1966
+ #: ../modules/email-customizer/user-email-customizer.php:183
1967
+ msgid "Email Subject"
1968
+ msgstr "Onderwerp E-mail"
1969
+
1970
+ #: ../modules/email-customizer/admin-email-customizer.php:84
1971
+ msgid "Default Registration & Registration with Email Confirmation"
1972
+ msgstr "Standaard Registratie & Registratie met E-mail Bevestiging"
1973
+
1974
+ #: ../modules/email-customizer/admin-email-customizer.php:87
1975
+ msgid ""
1976
+ "\n"
1977
+ "<p>New subscriber on {{site_name}}.</p>\n"
1978
+ "<p>Username:{{username}}</p>\n"
1979
+ "<p>E-mail:{{user_email}}</p>\n"
1980
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
1981
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
1982
+ msgstr ""
1983
+ "\n"
1984
+ "<p>Nieuwe abonnee op {{site_name}}.</p>\n"
1985
+ "\n"
1986
+ "<p>Gebruikersnaam:{{username}}</p>\n"
1987
+ "\n"
1988
+ "<p>E-mailadres:{{user_email}}</p>\n"
1989
+ "\n"
1990
+ "<p>De functie Goedkeuring Beheerder is geactiveerd tijdens registratie,\n"
1991
+ "\n"
1992
+ "zo vergeet niet dat je deze gebruiker moet goedkeuren voordat hij/zij kan inloggen!</p>\n"
1993
+
1994
+ #: ../modules/email-customizer/admin-email-customizer.php:114
1995
+ #: ../modules/email-customizer/user-email-customizer.php:143
1996
+ msgid "Registration with Admin Approval"
1997
+ msgstr "Registratie met Goedkeuring Beheerder"
1998
+
1999
+ #: ../modules/email-customizer/email-customizer.php:7
2000
+ msgid "Available Tags"
2001
+ msgstr "Beschikbare Tags"
2002
+
2003
+ #: ../modules/email-customizer/email-customizer.php:11
2004
+ msgid "User Meta"
2005
+ msgstr "Meta Gebruiker"
2006
+
2007
+ #: ../modules/email-customizer/email-customizer.php:21
2008
+ msgid "Site Url"
2009
+ msgstr "Website URL"
2010
+
2011
+ #: ../modules/email-customizer/email-customizer.php:22
2012
+ msgid "Site Name"
2013
+ msgstr "Website Naam"
2014
+
2015
+ #: ../modules/email-customizer/email-customizer.php:25
2016
+ #: ../modules/user-listing/userlisting.php:126
2017
+ msgid "User Id"
2018
+ msgstr "Gebruikers ID"
2019
+
2020
+ #: ../modules/email-customizer/email-customizer.php:32
2021
+ msgid "Reply To"
2022
+ msgstr "Reageer Op"
2023
+
2024
+ #: ../modules/email-customizer/email-customizer.php:35
2025
+ msgid "Activation Key"
2026
+ msgstr "Activatie Sleutel"
2027
+
2028
+ #: ../modules/email-customizer/email-customizer.php:36
2029
+ msgid "Activation Url"
2030
+ msgstr "Activatie URL"
2031
+
2032
+ #: ../modules/email-customizer/email-customizer.php:37
2033
+ msgid "Activation Link"
2034
+ msgstr "Activatie Link"
2035
+
2036
+ #: ../modules/email-customizer/user-email-customizer.php:64
2037
+ msgid ""
2038
+ "\n"
2039
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2040
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2041
+ msgstr ""
2042
+ "\n"
2043
+ "<h3>Welkom op {{site_name}}!</h3>\n"
2044
+ "\n"
2045
+ "<p>Je gebruikersnaam is:{{username}} en wachtwoord:{{password}}</p>\n"
2046
+
2047
+ #: ../modules/email-customizer/user-email-customizer.php:85
2048
+ msgid "Default Registration"
2049
+ msgstr "Standaard Registratie"
2050
+
2051
+ #: ../modules/email-customizer/user-email-customizer.php:91
2052
+ msgid ""
2053
+ "\n"
2054
+ "<p>To activate your user, please click the following link:<br/>\n"
2055
+ "{{{activation_link}}}</p>\n"
2056
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
2057
+ msgstr ""
2058
+ "\n"
2059
+ "<p>Om gebruiker te activeren, klik svp op de volgende link:<br/>\n"
2060
+ "\n"
2061
+ "{{{activation_link}}}</p>\n"
2062
+ "\n"
2063
+ "<p>Na activatie zul je een andere e-mail ontvangen met je aanmeld gegevens.</p>\n"
2064
+
2065
+ #: ../modules/email-customizer/user-email-customizer.php:103
2066
+ msgid "[{{site_name}}] Activate {{username}}"
2067
+ msgstr "[{{site_name}}] Activeer {{username}}"
2068
+
2069
+ #: ../modules/email-customizer/user-email-customizer.php:114
2070
+ msgid "Registration with Email Confirmation"
2071
+ msgstr "Registratie met E-mail Bevestiging"
2072
+
2073
+ #: ../modules/email-customizer/user-email-customizer.php:120
2074
+ msgid ""
2075
+ "\n"
2076
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2077
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2078
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2079
+ msgstr ""
2080
+ "\n"
2081
+ "<h3>Welkom op {{site_name}}!</h3>\n"
2082
+ "\n"
2083
+ "<p>Je gebruikersnaam is:{{username}} en wachtwoord:{{password}}</p>\n"
2084
+ "\n"
2085
+ "<p>Voordat je toegang krijgt tot je account, moet een beheerder dit goedkeuren. Je wordt via e-mail geinformeerd.</p>\n"
2086
+
2087
+ #: ../modules/email-customizer/user-email-customizer.php:132
2088
+ msgid "A new account has been created for you on {{site_name}}"
2089
+ msgstr "Een nieuwe account is voor je aangemaakt op {{site_name}}"
2090
+
2091
+ #: ../modules/email-customizer/user-email-customizer.php:148
2092
+ msgid ""
2093
+ "\n"
2094
+ "<h3>Good News!</h3>\n"
2095
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2096
+ msgstr ""
2097
+ "\n"
2098
+ "<h3>Goed Nieuws!</h3>\n"
2099
+ "\n"
2100
+ "<p>Een beheerder heeft net je account goedgekeurd: {{username}} op {{site_name}}.</p>\n"
2101
+
2102
+ #: ../modules/email-customizer/user-email-customizer.php:159
2103
+ msgid "Your account on {{site_name}} has been approved!"
2104
+ msgstr "Je account op {{site_name}} is goedgekeurd!"
2105
+
2106
+ #: ../modules/email-customizer/user-email-customizer.php:170
2107
+ msgid "User Approval Notification"
2108
+ msgstr "Goedkeuring Gebruiker Notificatie"
2109
+
2110
+ #: ../modules/email-customizer/user-email-customizer.php:175
2111
+ msgid ""
2112
+ "\n"
2113
+ "<h3>Hello,</h3>\n"
2114
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2115
+ msgstr ""
2116
+ "\n"
2117
+ "<h3>Hallo,</h3>\n"
2118
+ "<p>Helaas heeft een beheerder je account net afgekeurd: {{username}} op {{site_name}}.</p>\n"
2119
+
2120
+ #: ../modules/email-customizer/user-email-customizer.php:187
2121
+ msgid "Your account on {{site_name}} has been unapproved!"
2122
+ msgstr "Je account op {{site_name}} is afgekeurd!"
2123
+
2124
+ #: ../modules/email-customizer/user-email-customizer.php:198
2125
+ msgid "Unapproved User Notification"
2126
+ msgstr "Notificatie Afgekeurde Gebruiker"
2127
+
2128
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
2129
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
2130
+ msgid "Edit-profile Form"
2131
+ msgstr "Bewerk Profiel Formulier"
2132
+
2133
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
2134
+ #: ../modules/multiple-forms/register-forms.php:13
2135
+ #: ../modules/user-listing/userlisting.php:13
2136
+ msgid "Add New"
2137
+ msgstr "Voeg nieuwe toe"
2138
+
2139
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
2140
+ msgid "Add new Edit-profile Form"
2141
+ msgstr "Voeg nieuw Bewerk Profiel Formulier toe"
2142
+
2143
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
2144
+ msgid "Edit the Edit-profile Forms"
2145
+ msgstr "Bewerk de Bewerk Profiel Formulieren"
2146
+
2147
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
2148
+ msgid "New Edit-profile Form"
2149
+ msgstr "Nieuw Bewerk Profiel Formulier"
2150
+
2151
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
2152
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
2153
+ msgid "Edit-profile Forms"
2154
+ msgstr "Bewerk Profiel Formulieren"
2155
+
2156
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
2157
+ msgid "View the Edit-profile Form"
2158
+ msgstr "Bekijk het Bewerk Profiel Formulier"
2159
+
2160
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
2161
+ msgid "Search the Edit-profile Forms"
2162
+ msgstr "Zoek de Bewerk Profiel Formulieren"
2163
+
2164
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
2165
+ msgid "No Edit-profile Form found"
2166
+ msgstr "Geen Bewerk Profiel Formulier gevonden"
2167
+
2168
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
2169
+ msgid "No Edit-profile Forms found in trash"
2170
+ msgstr "Geen Bewerk Profiel Formulieren in prullenbak gevonden"
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
+
2208
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
2209
+ #: ../modules/multiple-forms/register-forms.php:230
2210
+ msgid "Whether to redirect the user to a specific page or not"
2211
+ msgstr "Of je de gebruiker wilt doorverwijzen naar een bepaalde pagina of niet"
2212
+
2213
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2214
+ #: ../modules/multiple-forms/register-forms.php:231
2215
+ msgid "Display Messages"
2216
+ msgstr "Toon Berichten"
2217
+
2218
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2219
+ #: ../modules/multiple-forms/register-forms.php:231
2220
+ msgid "Allowed time to display any success messages (in seconds)"
2221
+ msgstr "Toegestane tijd om succes berichten te tonen (in seconden)"
2222
+
2223
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
2224
+ 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"
2225
+ msgstr "Specificeer de URL van de pagina waar gebruiker naar doorverwezen wordt nadat ze hun profiel geupdate hebben middels dit formulier <br/>Gebruik dit formaat: http://www.mysite.com"
2226
+
2227
+ #: ../modules/multiple-forms/edit-profile-forms.php:215
2228
+ msgid "After Profile Update..."
2229
+ msgstr "Na Updaten Profiel..."
2230
+
2231
+ #: ../modules/multiple-forms/edit-profile-forms.php:239
2232
+ #: ../modules/multiple-forms/register-forms.php:260
2233
+ msgid "Add New Field to the List"
2234
+ msgstr "Voeg nieuw Veld aan Lijst toe"
2235
+
2236
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
2237
+ #: ../modules/multiple-forms/register-forms.php:264
2238
+ msgid "Choose one of the supported fields you manage <a href=\""
2239
+ msgstr "Kies 1 van de ondersteunde velden die je beheert <a href=\""
2240
+
2241
+ #: ../modules/multiple-forms/multiple-forms.php:407
2242
+ msgid "<pre>Title (Type)</pre>"
2243
+ msgstr "<pre>Titel (Type)</pre>"
2244
+
2245
+ #: ../modules/multiple-forms/multiple-forms.php:233
2246
+ msgid "You need to specify the title of the form before creating it"
2247
+ msgstr "Je moet de titel van het formulier specificeren voordat je het aanmaakt"
2248
+
2249
+ #: ../modules/multiple-forms/register-forms.php:11
2250
+ #: ../modules/multiple-forms/register-forms.php:12
2251
+ msgid "Registration Form"
2252
+ msgstr "Registratie Formulier"
2253
+
2254
+ #: ../modules/multiple-forms/register-forms.php:14
2255
+ msgid "Add new Registration Form"
2256
+ msgstr "Voeg nieuw Registratie Formulier toe"
2257
+
2258
+ #: ../modules/multiple-forms/register-forms.php:15
2259
+ msgid "Edit the Registration Forms"
2260
+ msgstr "Bewerk de Registratie Formulieren"
2261
+
2262
+ #: ../modules/multiple-forms/register-forms.php:16
2263
+ msgid "New Registration Form"
2264
+ msgstr "Nieuw Registratie Formulier"
2265
+
2266
+ #: ../modules/multiple-forms/register-forms.php:17
2267
+ #: ../modules/multiple-forms/register-forms.php:23
2268
+ msgid "Registration Forms"
2269
+ msgstr "Registratie Formulieren"
2270
+
2271
+ #: ../modules/multiple-forms/register-forms.php:18
2272
+ msgid "View the Registration Form"
2273
+ msgstr "Bekijk het Registratie Formulier"
2274
+
2275
+ #: ../modules/multiple-forms/register-forms.php:19
2276
+ msgid "Search the Registration Forms"
2277
+ msgstr "Zoek de Registratie Formulieren"
2278
+
2279
+ #: ../modules/multiple-forms/register-forms.php:20
2280
+ msgid "No Registration Form found"
2281
+ msgstr "Geen Registratie Formulier gevonden"
2282
+
2283
+ #: ../modules/multiple-forms/register-forms.php:21
2284
+ msgid "No Registration Forms found in trash"
2285
+ msgstr "Geen Registratie Formulieren in prullenbak gevonden"
2286
+
2287
+ #: ../modules/multiple-forms/register-forms.php:219
2288
+ msgid "Default Role"
2289
+ msgstr "Standaard Rol"
2290
+
2291
+ #: ../modules/multiple-forms/register-forms.php:228
2292
+ msgid "Set Role"
2293
+ msgstr "Rol Instellen"
2294
+
2295
+ #: ../modules/multiple-forms/register-forms.php:228
2296
+ 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"
2297
+ msgstr "Kies welke rol gebruiker heeft na registratie<br/>Indien niet gespecificeerd, standaard de rol van de WordPress instellingen"
2298
+
2299
+ #: ../modules/multiple-forms/register-forms.php:229
2300
+ msgid "Automatically Log In"
2301
+ msgstr "Automatisch Inloggen"
2302
+
2303
+ #: ../modules/multiple-forms/register-forms.php:229
2304
+ 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"
2305
+ msgstr "Of de nieuwe gebruiker automatisch ingelogd wordt of niet<br/>Werkt alleen op losse websites zonder geactiveerde \"Goedkeuring Beheerder\" en \"E-mail Bevestiging\" functies<br/>WAARSCHUWING: Als registratie formulier gecached wordt zal inloggen niet werken"
2306
+
2307
+ #: ../modules/multiple-forms/register-forms.php:232
2308
+ 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"
2309
+ msgstr "Specificeer de URL van de pagina waar gebruikers naar doorverwezen wordt als ze dit formulier gebruiken<br/>Gebruik dit formaat: http://www.mysite.com"
2310
+
2311
+ #: ../modules/multiple-forms/register-forms.php:238
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
+
2323
+ #: ../modules/user-listing/userlisting.php:14
2324
+ msgid "Add new User Listing"
2325
+ msgstr "Voeg nieuwe Gebruikersweergave toe"
2326
+
2327
+ #: ../modules/user-listing/userlisting.php:15
2328
+ msgid "Edit the User Listing"
2329
+ msgstr "Bewerk de Gebruikersweergave"
2330
+
2331
+ #: ../modules/user-listing/userlisting.php:16
2332
+ msgid "New User Listing"
2333
+ msgstr "Nieuwe Gebruikersweergave"
2334
+
2335
+ #: ../modules/user-listing/userlisting.php:18
2336
+ msgid "View the User Listing"
2337
+ msgstr "Bekijk de Gebruikersweergave"
2338
+
2339
+ #: ../modules/user-listing/userlisting.php:19
2340
+ msgid "Search the User Listing"
2341
+ msgstr "Zoek de Gebruikersweergave"
2342
+
2343
+ #: ../modules/user-listing/userlisting.php:20
2344
+ msgid "No User Listing found"
2345
+ msgstr "Geen Gebruikersweergave gevonden"
2346
+
2347
+ #: ../modules/user-listing/userlisting.php:21
2348
+ msgid "No User Listing found in trash"
2349
+ msgstr "Geen Gebruikersweergave in prullenbak gevonden"
2350
+
2351
+ #: ../modules/user-listing/userlisting.php:97
2352
+ msgid "Display name as"
2353
+ msgstr "Toon naam als"
2354
+
2355
+ #: ../modules/user-listing/userlisting.php:110
2356
+ msgid "Url"
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
+
2369
+ #: ../modules/user-listing/userlisting.php:123
2370
+ msgid "More Info"
2371
+ msgstr "Meer Info"
2372
+
2373
+ #: ../modules/user-listing/userlisting.php:124
2374
+ msgid "More Info Url"
2375
+ msgstr "Meer Info URL"
2376
+
2377
+ #: ../modules/user-listing/userlisting.php:125
2378
+ msgid "Avatar or Gravatar"
2379
+ msgstr "Avatar or Gravatar"
2380
+
2381
+ #: ../modules/user-listing/userlisting.php:153
2382
+ msgid "Meta Variables"
2383
+ msgstr "Meta Variabelen"
2384
+
2385
+ #: ../modules/user-listing/userlisting.php:159
2386
+ msgid "Sort Variables"
2387
+ msgstr "Sorteer Variabelen"
2388
+
2389
+ #: ../modules/user-listing/userlisting.php:163
2390
+ #: ../modules/user-listing/userlisting.php:190
2391
+ msgid "Extra Functions"
2392
+ msgstr "Extra Functies"
2393
+
2394
+ #: ../modules/user-listing/userlisting.php:165
2395
+ msgid "Pagination"
2396
+ msgstr "Paginering"
2397
+
2398
+ #: ../modules/user-listing/userlisting.php:166
2399
+ msgid "Search all Fields"
2400
+ msgstr "Zoek alle Velden"
2401
+
2402
+ #: ../modules/user-listing/userlisting.php:192
2403
+ msgid "Go Back Link"
2404
+ msgstr "Ga Terug Link"
2405
+
2406
+ #: ../modules/user-listing/userlisting.php:210
2407
+ msgid "All-userlisting Template"
2408
+ msgstr "Alle gebruikersweergave Template"
2409
+
2410
+ #: ../modules/user-listing/userlisting.php:213
2411
+ msgid "Single-userlisting Template"
2412
+ msgstr "Enkele gebruikersweergave Template"
2413
+
2414
+ #: ../modules/user-listing/userlisting.php:330
2415
+ msgid "You do not have permission to view this user list"
2416
+ msgstr "Je hebt geen toestemming om deze gebruikersweergave te bekijken"
2417
+
2418
+ #: ../modules/user-listing/userlisting.php:343
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 "&laquo;&laquo; First"
2477
+ msgstr "&laquo;&laquo; Eerste"
2478
+
2479
+ #: ../modules/user-listing/userlisting.php:838
2480
+ msgid "&laquo; Prev"
2481
+ msgstr "&laquo; Volgende"
2482
+
2483
+ #: ../modules/user-listing/userlisting.php:839
2484
+ msgid "Next &raquo; "
2485
+ msgstr "Vorige &raquo;"
2486
+
2487
+ #: ../modules/user-listing/userlisting.php:840
2488
+ msgid "Last &raquo;&raquo;"
2489
+ msgstr "Laatste &raquo;&raquo;"
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.po CHANGED
@@ -1,2590 +1,2590 @@
1
- # Translation of Profile Builder in Portuguese (Brazil)
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"
9
- "Plural-Forms: nplurals=2; plural=(n > 1);\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 "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"
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&#37; 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&#37; 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 ""
68
-
69
- #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
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
-
89
- #: ../front-end/login.php:79
90
- msgid "Invalid username."
91
- msgstr ""
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
116
- msgid "Your selected password at signup"
117
- msgstr ""
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 ""
126
-
127
- #: ../modules/multiple-forms/multiple-forms.php:407
128
- msgid "Delete all items"
129
- msgstr ""
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
-
143
- #: ../admin/admin-bar.php:10
144
- msgid "Show/Hide the Admin Bar on the Front-End"
145
- msgstr "Mostrar/Ocultar a Barra de Admin no site"
146
-
147
- #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
148
- msgid "Admin Bar Settings"
149
- msgstr "Configurações da Barra de Admin"
150
-
151
- #: ../admin/admin-bar.php:57
152
- msgid "User-Role"
153
- msgstr "Função do Usuário"
154
-
155
- #: ../admin/admin-bar.php:58
156
- msgid "Visibility"
157
- msgstr "Visibilidade"
158
-
159
- #: ../admin/admin-bar.php:73
160
- msgid "Default"
161
- msgstr "Padrão"
162
-
163
- #: ../admin/admin-bar.php:74
164
- msgid "Show"
165
- msgstr "Mostrar"
166
-
167
- #: ../admin/admin-bar.php:75
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"
176
- msgstr "Salvar Alterações"
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 "Login está configurado para ser feito através do E-mail. Esse campo NÃO irá aparecer na tela! (você pode alterar essas configurações na aba \"%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 "Configurações Gerais"
186
-
187
- #: ../admin/admin-functions.php:106
188
- msgid "<strong>ERROR</strong>: The password must have the minimum length of "
189
- msgstr "<strong>ERRO</strong>: O password deve ser maior que"
190
-
191
- #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
192
- msgid "Very weak"
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
-
210
- #: ../admin/admin-functions.php:123
211
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
212
- msgstr "<strong>ERRO</strong>: O password deve ter no mínimo"
213
-
214
- #: ../admin/admin-functions.php:162
215
- msgid "Add Field"
216
- msgstr "Adicionar Campo"
217
-
218
- #: ../admin/admin-functions.php:164
219
- msgid "Save Settings"
220
- msgstr "Salvar Configurações"
221
-
222
- #: ../admin/basic-info.php:10
223
- msgid "Basic Information"
224
- msgstr "Informações Básicas"
225
-
226
- #: ../admin/basic-info.php:29
227
- msgid "Version %s"
228
- msgstr "Versão %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 "A melhor forma de criar registros no front-end, editar perfis e formulários de login."
237
-
238
- #: ../admin/basic-info.php:33
239
- msgid "For Modern User Interaction"
240
- msgstr "Para interação com usuários modernos"
241
-
242
- #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
243
- msgid "Login"
244
- msgstr "Login"
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 "Login rápido e fácil usando <strong class=\"nowrap\">[wppb-login]</strong> shortcode ou um widget."
249
-
250
- #: ../admin/basic-info.php:40
251
- msgid "Registration"
252
- msgstr "Registro"
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 "Incríveis possibilidades de registro totalmente customizáveis usando o <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
257
-
258
- #: ../admin/basic-info.php:44
259
- msgid "Edit Profile"
260
- msgstr "Editar Perfil"
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 "Edite diretamente os formulários de perfil usando <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
265
-
266
- #: ../admin/basic-info.php:51
267
- msgid "Extra Features"
268
- msgstr "Funções Extras"
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 "Funções que lhe dão mais controle sobre seus usuários, aumentam a seguração e o ajudam a combater o cadastro de spams."
273
-
274
- #: ../admin/basic-info.php:53
275
- msgid "Enable extra features"
276
- msgstr "Habilite as funções extras"
277
-
278
- #: ../admin/basic-info.php:57
279
- msgid "Recover Password"
280
- msgstr "Recuperar Password"
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 "Permita aos usuários recuperarem seu password diretamente na tela usando o [wppb-recover-password]."
285
-
286
- #: ../admin/basic-info.php:61
287
- msgid "Admin Approval (*)"
288
- msgstr "Aprovação do Admin (*)"
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 "Você decide quem é um usuário em seu site. Receba notificações via email ou aprove múltiplos usuários de uma só vez pela interface do Wordpress."
293
-
294
- #: ../admin/basic-info.php:65
295
- msgid "Email Confirmation"
296
- msgstr "Confirmação de Email"
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 "Garanta que usuários cadastrem-se com emails genuínos. No registro, os usuários receberão uma notificação para confirmarem seus emails."
301
-
302
- #: ../admin/basic-info.php:69
303
- msgid "Minimum Password Length and Strength Meter"
304
- msgstr "Tamanho mínimo do password e medidor de força"
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 "Elimine passwords de uma vez configurando um tamanho mínimo e mantendo a força do password."
309
-
310
- #: ../admin/basic-info.php:73
311
- msgid "Login with Email or Username"
312
- msgstr "Login com Email ou Usuário"
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 aos usuários fazerem o login com seus emails ou nome de usuários quando acessarem seu site."
317
-
318
- #: ../admin/basic-info.php:87
319
- msgid "Customize Your Forms The Way You Want (*)"
320
- msgstr "Customize seus formulários da forma que quiser (*)"
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 "Com os campos extra de perfil você pode criar o formulário de registro exatamente como precisa."
325
-
326
- #: ../admin/basic-info.php:90
327
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
328
- msgstr "Campos Extra de Perfil estão disponíveis nas versões Hobbyist ou PRO"
329
-
330
- #: ../admin/basic-info.php:92
331
- msgid "Get started with extra fields"
332
- msgstr "Comece já a usar os campos extra"
333
-
334
- #: ../admin/basic-info.php:95
335
- msgid "Avatar Upload"
336
- msgstr "Upload de Avatar"
337
-
338
- #: ../admin/basic-info.php:96
339
- msgid "Generic Uploads"
340
- msgstr "Uploads Genéricos"
341
-
342
- #: ../admin/basic-info.php:97
343
- msgid "Agree To Terms Checkbox"
344
- msgstr "Checkbox de acordo com termos"
345
-
346
- #: ../admin/basic-info.php:98
347
- msgid "Datepicker"
348
- msgstr "Selecionador de datas"
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 "Selecionador de País"
357
-
358
- #: ../admin/basic-info.php:101
359
- msgid "Timezone Select"
360
- msgstr "Selecionador de Fuso Horários"
361
-
362
- #: ../admin/basic-info.php:102
363
- msgid "Input / Hidden Input"
364
- msgstr "Input / Input Oculto"
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 "Select"
373
-
374
- #: ../admin/basic-info.php:105
375
- msgid "Radio Buttons"
376
- msgstr "Radio Buttons"
377
-
378
- #: ../admin/basic-info.php:106
379
- msgid "Textarea"
380
- msgstr "Área de Texto"
381
-
382
- #: ../admin/basic-info.php:115
383
- msgid "Powerful Modules (**)"
384
- msgstr "Módulos Poderosos (**)"
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 "Tudo que você precisa para gerenciar seus usuários provavelmente já está disponível usando os módulos PRO."
389
-
390
- #: ../admin/basic-info.php:118
391
- msgid "Enable your modules"
392
- msgstr "Habilite seus módulos"
393
-
394
- #: ../admin/basic-info.php:121
395
- msgid "Find out more about PRO Modules"
396
- msgstr "Saiba mais sobre os módulos 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 "Listagem de usuários"
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 "Templates para listagem dos usuários do seu site fáceis de editar, além da criação de páginas exclusivas para cada um. Baseado em shortcodes, ofecere muitas opções de customizar suas listagens. "
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 "Para criar uma página contendo os usuários registrados no site/blog, insira o seguinte shortcode na página de sua preferência: <strong class=\"nowrap\">[wppb-list-users]</strong>."
413
-
414
- #: ../admin/basic-info.php:134
415
- msgid "Email Customizer"
416
- msgstr "Customizador de Emails"
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 "Personalize todos os emails enviados aos seus usuários ou admins. Quando fizerem registro, confirmação de email, aprovação/negação de admin."
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 "Redirecionamentos customizados"
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 "Mantenha seus usuários longe do dashboard do Wordpress, redirecione-os para a página principal após o login ou o registro, tudo isso com alguns cliques."
431
-
432
- #: ../admin/basic-info.php:144 ../modules/modules.php:97
433
- msgid "Multiple Registration Forms"
434
- msgstr "Múltiplos formulários de Registro"
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 "Configure múltiplos formulários de registro com diferentes campos para funções específicas de usuários. Capture diferentes informações de diferentes tipos de usuários."
439
-
440
- #: ../admin/basic-info.php:148 ../modules/modules.php:104
441
- msgid "Multiple Edit-profile Forms"
442
- msgstr "Múltiplos formulários de edição de perfil"
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 "Permita que usuários com diferentes funções editem suas informações específicas. Configure múltiplos formulários de edição de perfil com diferentes campos para funções específicas de usuários."
447
-
448
- #: ../admin/basic-info.php:161
449
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
450
- msgstr "* disponível apenas nas versões %1$sHobbyist e PRO%2$s."
451
-
452
- #: ../admin/basic-info.php:162
453
- msgid "** only available in the %1$sPro version%2$s."
454
- msgstr "** disponível apenas na versão %1s Pro %2$s."
455
-
456
- #: ../admin/general-settings.php:42
457
- msgid "Load Profile Builder's own CSS file in the front-end:"
458
- msgstr "Carregar o arquivo CSS próprio do Profile Builder em sua página:"
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 "Sim"
467
-
468
- #: ../admin/general-settings.php:47
469
- msgid "You can find the default file here: %1$s"
470
- msgstr "Você pode encontrar o arquivo padrão aqui: %1$s"
471
-
472
- #: ../admin/general-settings.php:56
473
- msgid "\"Email Confirmation\" Activated:"
474
- msgstr "\"Email de Confirmação\" Ativado:"
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 "Não"
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 "Em instalações single-site isso funciona apenas no front-end. É recomendado redirecionar o registro padrão do WP para um do Profile Builder, usando o addon \"Custom Redirects\"."
485
-
486
- #: ../admin/general-settings.php:65
487
- msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
488
- msgstr "A função \"Confirmação de Email\" está ativa (por default) em instalações 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 "Você pode encontrar uma lista com os emails não confirmados em %1$sUsers > Todos Usuários > Confirmação de Email%2$s."
493
-
494
- #: ../admin/general-settings.php:79
495
- msgid "\"Email Confirmation\" Landing Page:"
496
- msgstr "Página de abertura da \"Confirmação de Email\""
497
-
498
- #: ../admin/general-settings.php:84
499
- msgid "Existing Pages"
500
- msgstr "Páginas existentes"
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 "Especifique qual a página que os usuários serão redirecionados quando confirmarem sua conta por email. Essa página pode diferente da página de registro e poderá ser alterada a qualquer momento. Se nenhuma for selecionada, uma página simples de confirmação será apresentada ao usuário."
505
-
506
- #: ../admin/general-settings.php:110
507
- msgid "\"Admin Approval\" Activated:"
508
- msgstr "\"Aprovação do Admin\" Ativada:"
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 "Você pode encontrar uma lista dos usuários em %1$sUsers > Todos Usuários > Aprovação do Admin%2$s."
513
-
514
- #: ../admin/general-settings.php:130
515
- msgid "\"Admin Approval\" Feature:"
516
- msgstr "Função \"Aprovação do Admin\":"
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 "Você decide quem é um usuário em seu website. Seja notificado via email ou aprove múltiplos usuários de uma só vez na interface do Wordpress. Habilite a aprovação do admin fazendo o upgrade para a versão %1$sHobbyist ou PRO%2$s."
521
-
522
- #: ../admin/general-settings.php:140
523
- msgid "Allow Users to Log in With:"
524
- msgstr "Permitir usuários fazerem login com:"
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 "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
-
543
- #: ../admin/general-settings.php:152
544
- msgid "Minimum Password Length:"
545
- msgstr "Tamanho mínimo do password:"
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 "Digite a quantidade mínima de caracteres que o password deve conter. Deixe em branco para sem limite mínimo"
550
-
551
- #: ../admin/general-settings.php:164
552
- msgid "Minimum Password Strength:"
553
- msgstr "Força mínima do password:"
554
-
555
- #: ../admin/general-settings.php:168
556
- msgid "Disabled"
557
- msgstr "Desabilitado"
558
-
559
- #: ../admin/manage-fields.php:12
560
- msgid "Manage Fields"
561
- msgstr "Gerenciar campos"
562
-
563
- #: ../admin/manage-fields.php:13
564
- msgid "Manage Default and Extra Fields"
565
- msgstr "Gerenciar campos padrões e extras"
566
-
567
- #: ../admin/manage-fields.php:74
568
- msgid "Field Title"
569
- msgstr "Título do campo"
570
-
571
- #: ../admin/manage-fields.php:74
572
- msgid "Title of the field"
573
- msgstr "Título do campo"
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 "Campo"
580
-
581
- #: ../admin/manage-fields.php:76
582
- msgid "Meta-name"
583
- msgstr "Nome-Meta"
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 "Use isso em conjunto com as funções do WordPress para mostrar o valor na página de sua escolha<br/>Completado automaticamente, mas em alguns casos pode ser editado (nesse caso deve ser um valor único)<br/>Mudar isso pode causar lentidão em caso de uma lista muito grande de usuários"
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 "Um ID único, gerado automaticamente para esse campo em particular<br/>Você pode usar isso em conjunto com filtros para filtrar esse elemento se necessário<br/>Não pode ser editado"
600
-
601
- #: ../admin/manage-fields.php:78
602
- msgid "Description"
603
- msgstr "Descrição"
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 "Digite uma descrição (detalhada) da opção para os usuários lerem<br/>Opcional"
608
-
609
- #: ../admin/manage-fields.php:79
610
- msgid "Row Count"
611
- msgstr "Contagem de linhas"
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 "Especifique o número de linhas para o campo do tipo \"Área de Texto\"<br/>Se não especificado, o padrão são 5"
616
-
617
- #: ../admin/manage-fields.php:80
618
- msgid "Allowed Image Extensions"
619
- msgstr "Extensões de imagens permitidas"
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 "Especifique a extensão(es) que você quer limitar o upload<br/>Exemplo: .ext1,.ext2,ext3<br/>Se não especificado, o padrão será todas as extensões de imagens (.*)"
624
-
625
- #: ../admin/manage-fields.php:81
626
- msgid "Allowed Upload Extensions"
627
- msgstr "Extensões permitidas para upload"
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 "Especifique a extensão(es) que você quer limitar o upload<br/>Exemplo: .ext1,.ext2,ext3<br/>Se não especificado, o padrão será todas as extensões (.*)"
632
-
633
- #: ../admin/manage-fields.php:82
634
- msgid "Avatar Size"
635
- msgstr "Tamanho do 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 "Digite um valor (entre 20 e 200) para o tamanho do 'Avatar'<br/>Se não especificado, o padrão são 100"
640
-
641
- #: ../admin/manage-fields.php:83
642
- msgid "Date-format"
643
- msgstr "Formato da data"
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 "Especifique o formato da data usando o Selecionador de Datas<br/>Opções válidas: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Se não especificado, o padrão é mm/dd/yy"
648
-
649
- #: ../admin/manage-fields.php:84
650
- msgid "Terms of Agreement"
651
- msgstr "Termos de Acordo"
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: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
655
- msgstr "Digite uma descrição detalhada dos termos de acordo para o usuário ler.<br/>Links podem ser inseridos usando uma sintaxe HTML padrão: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
656
-
657
- #: ../admin/manage-fields.php:85
658
- msgid "Options"
659
- msgstr "Opções"
660
-
661
- #: ../admin/manage-fields.php:86
662
- msgid "Labels"
663
- msgstr "Rótulos"
664
-
665
- #: ../admin/manage-fields.php:86
666
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
667
- msgstr "Entre com uma lista de rótulos separados por vírgula<br/>Visível para o usuário"
668
-
669
- #: ../admin/manage-fields.php:87
670
- msgid "Public Key"
671
- msgstr "Chave pública"
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 "A chave pública do 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 "Chave privada"
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 "A chave privada do 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 "Valor padrão"
688
-
689
- #: ../admin/manage-fields.php:89
690
- msgid "Default value of the field"
691
- msgstr "Valor padrão do campo"
692
-
693
- #: ../admin/manage-fields.php:90
694
- msgid "Default Option"
695
- msgstr "Opção padrão"
696
-
697
- #: ../admin/manage-fields.php:90
698
- msgid "Specify the option which should be selected by default"
699
- msgstr "Especifique a opção que será selecionada por padrão"
700
-
701
- #: ../admin/manage-fields.php:91
702
- msgid "Default Option(s)"
703
- msgstr "Opção(es) padrão"
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 "Especifique a opção que será marcada por padrão<br/>Se houver múltiplos valores, separe-os com uma \",\" (vírgula)"
708
-
709
- #: ../admin/manage-fields.php:92
710
- msgid "Default Content"
711
- msgstr "Conteúdo padrão"
712
-
713
- #: ../admin/manage-fields.php:92
714
- msgid "Default value of the textarea"
715
- msgstr "Valor padrão da Área de Texto"
716
-
717
- #: ../admin/manage-fields.php:93
718
- msgid "Required"
719
- msgstr "Obrigatório"
720
-
721
- #: ../admin/manage-fields.php:93
722
- msgid "Whether the field is required or not"
723
- msgstr "Se o campo é obrigatório ou não"
724
-
725
- #: ../admin/manage-fields.php:94
726
- msgid "Overwrite Existing"
727
- msgstr "Sobrepor existente"
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 "Escolhendo \"Sim\" você adicionará o campo à lista, mas irá sobrescrever qualquer outro campo na base de dados que tenha o mesmo meta-name<br/>Use por seu próprio risco"
732
-
733
- #: ../admin/manage-fields.php:100
734
- msgid "Field Properties"
735
- msgstr "Propriedades do campo"
736
-
737
- #: ../admin/manage-fields.php:113
738
- msgid "Registration & Edit Profile"
739
- msgstr "Registro & Edição de Perfil"
740
-
741
- #: ../admin/manage-fields.php:132
742
- msgid "Name"
743
- msgstr "Nome"
744
-
745
- #: ../admin/manage-fields.php:133
746
- msgid "Usernames cannot be changed."
747
- msgstr "Nomes de usuários não podem ser mudados."
748
-
749
- #: ../admin/manage-fields.php:134
750
- msgid "First Name"
751
- msgstr "Primeiro Nome"
752
-
753
- #: ../admin/manage-fields.php:135
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
-
761
- #: ../admin/manage-fields.php:137
762
- msgid "Display name publicly as"
763
- msgstr "Mostrar nome publicamente como"
764
-
765
- #: ../admin/manage-fields.php:138
766
- msgid "Contact Info"
767
- msgstr "Informações de Contato"
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 "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
-
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 "Compartilhe um pouco de sua informação biográfica para preencher o seu perfil. Isso poderá ser mostrado publicamente."
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 "Password"
814
-
815
- #: ../admin/manage-fields.php:151
816
- msgid "Type your password."
817
- msgstr "Digite seu password."
818
-
819
- #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
820
- msgid "Repeat Password"
821
- msgstr "Repita o Password"
822
-
823
- #: ../admin/manage-fields.php:152
824
- msgid "Type your password again. "
825
- msgstr "Digite seu password novamente."
826
-
827
- #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
828
- msgid "You must select a field\n"
829
- msgstr "Você deve selecionar um campo\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 "Por favor escolha um tipo de campo diferente pois já existe um desses em seu formulário (ele deve ser único)\n"
834
-
835
- #: ../admin/manage-fields.php:329
836
- msgid "The entered avatar size is not between 20 and 200\n"
837
- msgstr "O tamanho do avatar digitado não está entre 20 e 200\n"
838
-
839
- #: ../admin/manage-fields.php:332
840
- msgid "The entered avatar size is not numerical\n"
841
- msgstr "O tamanho do avatar digitado não é numérico\n"
842
-
843
- #: ../admin/manage-fields.php:340
844
- msgid "The entered row number is not numerical\n"
845
- msgstr "O número de linha digitado não é numérico\n"
846
-
847
- #: ../admin/manage-fields.php:343
848
- msgid "You must enter a value for the row number\n"
849
- msgstr "Você deve digitar um valor para o número de linha\n"
850
-
851
- #: ../admin/manage-fields.php:351
852
- msgid "You must enter the public key\n"
853
- msgstr "Você deve digitar a chave pública\n"
854
-
855
- #: ../admin/manage-fields.php:353
856
- msgid "You must enter the private key\n"
857
- msgstr "Você deve digitar a chave privada\n"
858
-
859
- #: ../admin/manage-fields.php:361
860
- msgid "The entered value for the Datepicker is not a valid date-format\n"
861
- msgstr "O valor digitado para o Selecionador de Datas não está em um formato válido\n"
862
-
863
- #: ../admin/manage-fields.php:364
864
- msgid "You must enter a value for the date-format\n"
865
- msgstr "Você deve digitar um valor para o formato de data\n"
866
-
867
- #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
868
- #: ../admin/manage-fields.php:410
869
- msgid "That meta-name is already in use\n"
870
- msgstr "O meta-name já está sendo usado\n"
871
-
872
- #: ../admin/manage-fields.php:432
873
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
874
- msgstr "A(s) seguinte(s) opção(es) não coincide com as da lista de opções: %s\n"
875
-
876
- #: ../admin/manage-fields.php:436
877
- msgid "The following option did not coincide with the ones in the options list: %s\n"
878
- msgstr "A seguinte opção não coincide com as da lista de opções: %s\n"
879
-
880
- #: ../admin/manage-fields.php:451
881
- msgid "That field is already added in this form\n"
882
- msgstr "Esse campo já foi adicionado a esse formulário\n"
883
-
884
- #: ../admin/manage-fields.php:500
885
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
886
- msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Obrigatório</pre>"
887
-
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"
895
-
896
- #: ../admin/manage-fields.php:500
897
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
898
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
899
- #: ../features/admin-approval/class-admin-approval.php:124
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
-
907
- #: ../admin/manage-fields.php:515
908
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
909
- msgstr "Use esses shortcodes nas páginas que você quer que o formulário seja mostrado:"
910
-
911
- #: ../admin/manage-fields.php:521
912
- 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."
913
- msgstr "Se você tem interesse em mostrar diferentes campos nos formulários de registro ou de perfil, por favor use os módulos de Registro Múltiplo & Editor de Formulários de Perfil"
914
-
915
- #: ../admin/register-version.php:11
916
- msgid "Register Your Version"
917
- msgstr "Registre sua versão"
918
-
919
- #: ../admin/register-version.php:11
920
- msgid "Register Version"
921
- msgstr "Registre a versão"
922
-
923
- #: ../admin/register-version.php:58
924
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
925
- msgstr "Se você registrar essa versão do Profile Builder, você receberá informações sobre upgrades, atualizações e suporte técnico."
926
-
927
- #: ../admin/register-version.php:60
928
- msgid " Serial Number:"
929
- msgstr "Número de série:"
930
-
931
- #: ../admin/register-version.php:65
932
- msgid "The serial number was successfully validated!"
933
- msgstr "O número de série foi validado com sucesso!"
934
-
935
- #: ../admin/register-version.php:67
936
- msgid "The serial number entered couldn't be validated!"
937
- msgstr "O número de série digitado não pôde ser validado!"
938
-
939
- #: ../admin/register-version.php:69
940
- msgid "The serial number couldn't be validated because it expired!"
941
- msgstr "O número de série não pôde ser validado porque encontra-se expirado!"
942
-
943
- #: ../admin/register-version.php:71
944
- 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!"
945
- msgstr "O número de série não pôde ser validado pois o tempo foi esgotado. Isso pode ter acontecido por problemas no servidor. Por favor tente novamente mais tarde!"
946
-
947
- #: ../admin/register-version.php:73
948
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
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
-
956
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
957
- msgid "Edit this item"
958
- msgstr "Editar esse item"
959
-
960
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
961
- msgid "Delete this item"
962
- msgstr "Deletar esse item"
963
-
964
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
965
- msgid "Please enter a value for the required field "
966
- msgstr "Por favor digite um valor para o campo obrigatório"
967
-
968
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
969
- msgid "Select File"
970
- msgstr "Selecionar Arquivo"
971
-
972
- #: ../assets/lib/wck-api/fields/upload.php:31
973
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
974
- msgid "Remove"
975
- msgstr "Remover"
976
-
977
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
978
- msgid "Syncronize WCK"
979
- msgstr "Sincronizar WCK"
980
-
981
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
982
- msgid "Syncronize WCK Translation"
983
- msgstr "Sincronizar Tradução WCK"
984
-
985
- #: ../assets/lib/wck-api/fields/nested repeater.php:8
986
- msgid "You can add the information for the %s after you add a entry"
987
- msgstr "Você pode adicionar a informação para %s depois de adicionar uma entrada"
988
-
989
- #: ../assets/lib/wck-api/fields/upload.php:48
990
- msgid "Upload "
991
- msgstr "Upload "
992
-
993
- #: ../features/class-list-table.php:184
994
- msgid "No items found."
995
- msgstr "Nenhum item encontrado."
996
-
997
- #: ../features/class-list-table.php:308
998
- msgid "Bulk Actions"
999
- msgstr "Ações em massa"
1000
-
1001
- #: ../features/class-list-table.php:318
1002
- msgid "Apply"
1003
- msgstr "Aplicar"
1004
-
1005
- #: ../features/class-list-table.php:402
1006
- msgid "Show all dates"
1007
- msgstr "Mostrar todas as datas"
1008
-
1009
- #: ../features/class-list-table.php:415
1010
- msgid "%1$s %2$d"
1011
- msgstr "%1$s %2$d"
1012
-
1013
- #: ../features/class-list-table.php:431
1014
- msgid "List View"
1015
- msgstr "Visualizar Lista"
1016
-
1017
- #: ../features/class-list-table.php:432
1018
- msgid "Excerpt View"
1019
- msgstr "Visualizar Resumo"
1020
-
1021
- #: ../features/class-list-table.php:458
1022
- msgid "%s pending"
1023
- msgstr "%s pendente"
1024
-
1025
- #: ../features/class-list-table.php:566
1026
- msgid "%1$s of %2$s"
1027
- msgstr "%1$s de %2$s"
1028
-
1029
- #: ../features/class-list-table.php:713
1030
- msgid "Select All"
1031
- msgstr "Selecionar Tudo"
1032
-
1033
- #: ../features/functions.php:193 ../features/functions.php:194
1034
- msgid "Profile Builder"
1035
- msgstr "Profile Builder"
1036
-
1037
- #: ../features/functions.php:261
1038
- msgid "The user-validation has failed - the avatar was not deleted!"
1039
- msgstr "A validação do usuário falhou - o avatar não foi deletado!"
1040
-
1041
- #: ../features/functions.php:272
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"
1052
- msgstr "Aprovação do Admin"
1053
-
1054
- #: ../features/admin-approval/admin-approval.php:22
1055
- #: ../features/email-confirmation/email-confirmation.php:58
1056
- msgid "Do you want to"
1057
- msgstr "Você deseja"
1058
-
1059
- #: ../features/admin-approval/admin-approval.php:45
1060
- msgid "Your session has expired! Please refresh the page and try again"
1061
- msgstr "Sua sessão expirou! Por favor atualize a página e tente novamente"
1062
-
1063
- #: ../features/admin-approval/admin-approval.php:56
1064
- msgid "User successfully approved!"
1065
- msgstr "Usuário aprovado com sucesso!"
1066
-
1067
- #: ../features/admin-approval/admin-approval.php:64
1068
- msgid "User successfully unapproved!"
1069
- msgstr "Usuário reprovado com sucesso!"
1070
-
1071
- #: ../features/admin-approval/admin-approval.php:70
1072
- msgid "User successfully deleted!"
1073
- msgstr "Usuário deletado com sucesso!"
1074
-
1075
- #: ../features/admin-approval/admin-approval.php:75
1076
- #: ../features/admin-approval/admin-approval.php:140
1077
- #: ../features/email-confirmation/email-confirmation.php:122
1078
- msgid "You either don't have permission for that action or there was an error!"
1079
- msgstr "Houve um erro ou então você não tem permissão para essa ação!"
1080
-
1081
- #: ../features/admin-approval/admin-approval.php:87
1082
- msgid "Your session has expired! Please refresh the page and try again."
1083
- msgstr "Sua sessão expirou! Por favor atualize a página e tente novamente."
1084
-
1085
- #: ../features/admin-approval/admin-approval.php:107
1086
- msgid "Users successfully approved!"
1087
- msgstr "Usuários aprovados com sucesso!"
1088
-
1089
- #: ../features/admin-approval/admin-approval.php:122
1090
- msgid "Users successfully unapproved!"
1091
- msgstr "Usuários reprovados com sucesso!"
1092
-
1093
- #: ../features/admin-approval/admin-approval.php:135
1094
- msgid "Users successfully deleted!"
1095
- msgstr "Usuários deletados com sucesso!"
1096
-
1097
- #: ../features/admin-approval/admin-approval.php:150
1098
- msgid "Your account on %1$s has been approved!"
1099
- msgstr "Sua conta em %1$s foi aprovada!"
1100
-
1101
- #: ../features/admin-approval/admin-approval.php:151
1102
- #: ../features/admin-approval/admin-approval.php:154
1103
- msgid "approved"
1104
- msgstr "aprovado"
1105
-
1106
- #: ../features/admin-approval/admin-approval.php:153
1107
- msgid "An administrator has just approved your account on %1$s (%2$s)."
1108
- msgstr "O administrador acabou de aprovar sua conta em %1$s (%2$s)."
1109
-
1110
- #: ../features/admin-approval/admin-approval.php:157
1111
- msgid "Your account on %1$s has been unapproved!"
1112
- msgstr "Sua conta em %1$s foi reprovada!"
1113
-
1114
- #: ../features/admin-approval/admin-approval.php:158
1115
- #: ../features/admin-approval/admin-approval.php:161
1116
- msgid "unapproved"
1117
- msgstr "reprovado"
1118
-
1119
- #: ../features/admin-approval/admin-approval.php:160
1120
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1121
- msgstr "O administrador acabou de reprovar sua conta em %1$s (%2$s)."
1122
-
1123
- #: ../features/admin-approval/admin-approval.php:177
1124
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1125
- msgstr "<strong>ERRO</strong>: Sua conta precisa ser confirmada pelo administrador antes de você fazer o login."
1126
-
1127
- #: ../features/admin-approval/admin-approval.php:189
1128
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1129
- msgstr "Sua conta precisa ser confirmada pelo administrador antes de você poder usar a função de \"Recuperação de Password\""
1130
-
1131
- #: ../features/admin-approval/class-admin-approval.php:119
1132
- msgid "View or Edit"
1133
- msgstr "Visualizar ou Editar"
1134
-
1135
- #: ../features/admin-approval/class-admin-approval.php:124
1136
- msgid "delete this user?"
1137
- msgstr "deletar esse usuário?"
1138
-
1139
- #: ../features/admin-approval/class-admin-approval.php:127
1140
- msgid "unapprove this user?"
1141
- msgstr "reprovar esse usuário?"
1142
-
1143
- #: ../features/admin-approval/class-admin-approval.php:127
1144
- #: ../features/admin-approval/class-admin-approval.php:234
1145
- msgid "Unapprove"
1146
- msgstr "Reprovar"
1147
-
1148
- #: ../features/admin-approval/class-admin-approval.php:129
1149
- msgid "approve this user?"
1150
- msgstr "aprovar esse usuário?"
1151
-
1152
- #: ../features/admin-approval/class-admin-approval.php:129
1153
- #: ../features/admin-approval/class-admin-approval.php:233
1154
- msgid "Approve"
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
-
1169
- #: ../features/admin-approval/class-admin-approval.php:181
1170
- #: ../modules/user-listing/userlisting.php:117
1171
- msgid "Role"
1172
- msgstr "Função"
1173
-
1174
- #: ../features/admin-approval/class-admin-approval.php:182
1175
- #: ../features/email-confirmation/class-email-confirmation.php:155
1176
- msgid "Registered"
1177
- msgstr "Registrado"
1178
-
1179
- #: ../features/admin-approval/class-admin-approval.php:183
1180
- msgid "User-status"
1181
- msgstr "Status do usuário"
1182
-
1183
- #: ../features/admin-approval/class-admin-approval.php:263
1184
- msgid "Do you want to bulk approve the selected users?"
1185
- msgstr "Você deseja aprovar em massa os usuários selecionados?"
1186
-
1187
- #: ../features/admin-approval/class-admin-approval.php:271
1188
- msgid "Do you want to bulk unapprove the selected users?"
1189
- msgstr "Você deseja reprovar em massa os usuários selecionados?"
1190
-
1191
- #: ../features/admin-approval/class-admin-approval.php:277
1192
- msgid "Do you want to bulk delete the selected users?"
1193
- msgstr "Você deseja deletar em massa os usuários selecionados?"
1194
-
1195
- #: ../features/admin-approval/class-admin-approval.php:285
1196
- #: ../features/email-confirmation/class-email-confirmation.php:263
1197
- msgid "Sorry, but you don't have permission to do that!"
1198
- msgstr "Desculpe, mas você não tem permissão para fazer isso!"
1199
-
1200
- #: ../features/admin-approval/class-admin-approval.php:318
1201
- msgid "Approved"
1202
- msgstr "Aprovado"
1203
-
1204
- #: ../features/admin-approval/class-admin-approval.php:320
1205
- msgid "Unapproved"
1206
- msgstr "Reprovado"
1207
-
1208
- #: ../features/admin-approval/class-admin-approval.php:492
1209
- #: ../features/email-confirmation/class-email-confirmation.php:448
1210
- msgid "All Users"
1211
- msgstr "Todos os usuários"
1212
-
1213
- #: ../features/email-confirmation/class-email-confirmation.php:106
1214
- msgid "delete this user from the _signups table?"
1215
- msgstr "deletar esse usuário da tabela _signups?"
1216
-
1217
- #: ../features/email-confirmation/class-email-confirmation.php:107
1218
- msgid "confirm this email yourself?"
1219
- msgstr "confirma esse seu email?"
1220
-
1221
- #: ../features/email-confirmation/class-email-confirmation.php:107
1222
- #: ../features/email-confirmation/class-email-confirmation.php:203
1223
- msgid "Confirm Email"
1224
- msgstr "Confirmar Email"
1225
-
1226
- #: ../features/email-confirmation/class-email-confirmation.php:108
1227
- msgid "resend the activation link?"
1228
- msgstr "reenviar o link de atiavação?"
1229
-
1230
- #: ../features/email-confirmation/class-email-confirmation.php:108
1231
- #: ../features/email-confirmation/class-email-confirmation.php:204
1232
- msgid "Resend Activation Email"
1233
- msgstr "Reenviar o email de ativação"
1234
-
1235
- #: ../features/email-confirmation/class-email-confirmation.php:234
1236
- msgid "%s couldn't be deleted"
1237
- msgstr "%s não pôde ser deletado"
1238
-
1239
- #: ../features/email-confirmation/class-email-confirmation.php:238
1240
- msgid "All users have been successfully deleted"
1241
- msgstr "Todos os usuários foram deletados com sucesso"
1242
-
1243
- #: ../features/email-confirmation/class-email-confirmation.php:248
1244
- msgid "The selected users have been activated"
1245
- msgstr "Os usuários selecionados foram ativados"
1246
-
1247
- #: ../features/email-confirmation/class-email-confirmation.php:259
1248
- msgid "The selected users have had their activation emails resent"
1249
- msgstr "Os usuários selecionados tiveram seus emails de ativação reenviados"
1250
-
1251
- #: ../features/email-confirmation/class-email-confirmation.php:445
1252
- #: ../features/email-confirmation/email-confirmation.php:47
1253
- msgid "Users with Unconfirmed Email Address"
1254
- msgstr "Usuários com endereço de email não confirmados"
1255
-
1256
- #: ../features/email-confirmation/email-confirmation.php:97
1257
- msgid "There was an error performing that action!"
1258
- msgstr "Houve um erro executando essa ação!"
1259
-
1260
- #: ../features/email-confirmation/email-confirmation.php:105
1261
- msgid "The selected user couldn't be deleted"
1262
- msgstr "O usuário selecionado não pôde ser deletado"
1263
-
1264
- #: ../features/email-confirmation/email-confirmation.php:116
1265
- msgid "Email notification resent to user"
1266
- msgstr "Email de notificação reenviado ao usuário"
1267
-
1268
- #: ../features/email-confirmation/email-confirmation.php:349
1269
- msgid "[%1$s] Activate %2$s"
1270
- msgstr "[%1$s] Ativar %2$s"
1271
-
1272
- #: ../features/email-confirmation/email-confirmation.php:350
1273
- msgid ""
1274
- "To activate your user, please click the following link:\n"
1275
- "\n"
1276
- "%s%s%s\n"
1277
- "\n"
1278
- "After you activate it you will receive yet *another email* with your login."
1279
- msgstr ""
1280
- "Para ativar o usuário, por favor clique no seguinte link:\n"
1281
- "\n"
1282
- "%s%s%s\n"
1283
- "\n"
1284
- "Depois de ativar, você ainda receberá um outro email com o seu login."
1285
-
1286
- #: ../features/email-confirmation/email-confirmation.php:388
1287
- #: ../front-end/register.php:68
1288
- msgid "Could not create user!"
1289
- msgstr "Usuário não pôde ser criado!"
1290
-
1291
- #: ../features/email-confirmation/email-confirmation.php:391
1292
- msgid "That username is already activated!"
1293
- msgstr "O usuário já está ativado!"
1294
-
1295
- #: ../features/email-confirmation/email-confirmation.php:420
1296
- msgid "There was an error while trying to activate the user"
1297
- msgstr "Houve um erro na tentativa de ativar o usuário"
1298
-
1299
- #: ../features/email-confirmation/email-confirmation.php:458
1300
- #: ../modules/email-customizer/admin-email-customizer.php:73
1301
- msgid "A new subscriber has (been) registered!"
1302
- msgstr "Um novo assinante foi registrado!"
1303
-
1304
- #: ../features/email-confirmation/email-confirmation.php:461
1305
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1306
- msgstr "Novo assinante em %1$s.<br/><br/>Usuário:%2$s<br/>E-mail:%3$s<br/>"
1307
-
1308
- #: ../features/email-confirmation/email-confirmation.php:466
1309
- 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!"
1310
- msgstr "A função de \"Aprovação do Admin\" estava ativada no momento do registro então por favor lembre-se de que precisa aprovar esse usuário antes dele/dela fazer o login!"
1311
-
1312
- #: ../features/email-confirmation/email-confirmation.php:481
1313
- msgid "[%1$s] Your new account information"
1314
- msgstr "[%1$s] Informações de sua nova conta"
1315
-
1316
- #: ../features/email-confirmation/email-confirmation.php:484
1317
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1318
- msgstr "Bemvindo ao %1$s!<br/><br/><br/>Seu usuário é::%2$s e password:%3$s"
1319
-
1320
- #: ../features/email-confirmation/email-confirmation.php:489
1321
- #: ../front-end/register.php:103
1322
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1323
- msgstr "Antes de acessar sua conta, ela precisa ser aprovada pelo administrador. Você será notificado via email quando isso acontecer."
1324
-
1325
- #: ../features/login-widget/login-widget.php:10
1326
- msgid "This login widget lets you add a login form in the sidebar."
1327
- msgstr "Esse widget de login permite adicionar um formulário de login na barra lateral."
1328
-
1329
- #: ../features/login-widget/login-widget.php:15
1330
- msgid "Profile Builder Login Widget"
1331
- msgstr "Widget de Login Profile Builder"
1332
-
1333
- #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1334
- msgid "Register"
1335
- msgstr "Registrar"
1336
-
1337
- #: ../features/login-widget/login-widget.php:63
1338
- msgid "Title:"
1339
- msgstr "Título:"
1340
-
1341
- #: ../features/login-widget/login-widget.php:68
1342
- msgid "After login redirect URL (optional):"
1343
- msgstr "URL para redirecionar após login (opcional):"
1344
-
1345
- #: ../features/login-widget/login-widget.php:73
1346
- msgid "Register page URL (optional):"
1347
- msgstr "ULR da página de registro (opcional):"
1348
-
1349
- #: ../features/login-widget/login-widget.php:78
1350
- msgid "Password Recovery page URL (optional):"
1351
- msgstr "URL da página de recuperação de password (opcional):"
1352
-
1353
- #: ../features/upgrades/upgrades-functions.php:91
1354
- #: ../features/upgrades/upgrades-functions.php:134
1355
- msgid "The usernames cannot be changed."
1356
- msgstr "Os nomes de usuários não podem ser mudados."
1357
-
1358
- #: ../front-end/class-formbuilder.php:83
1359
- msgid "Only an administrator can add new users."
1360
- msgstr "Somente o administrador pode adicionar novos usuários."
1361
-
1362
- #: ../front-end/class-formbuilder.php:93
1363
- msgid "Users can register themselves or you can manually create users here."
1364
- msgstr "Usuários podem se registrar ou você pode criá-los manualmente aqui."
1365
-
1366
- #: ../front-end/class-formbuilder.php:96
1367
- msgid "Users cannot currently register themselves, but you can manually create users here."
1368
- msgstr "Usuários não podem atualmente se registrarem, mas você pode criá-los manualmente aqui."
1369
-
1370
- #: ../front-end/class-formbuilder.php:108
1371
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
1372
- msgstr "Você já está logado como %1s. Você não precisa de outra conta. %2s"
1373
-
1374
- #: ../front-end/class-formbuilder.php:108
1375
- msgid "Log out of this account."
1376
- msgstr "Desconectar dessa conta."
1377
-
1378
- #: ../front-end/class-formbuilder.php:108
1379
- msgid "Logout"
1380
- msgstr "Desconectar"
1381
-
1382
- #: ../front-end/class-formbuilder.php:114
1383
- msgid "You must be logged in to edit your profile."
1384
- msgstr "Você deve estar logado para editar seu perfil."
1385
-
1386
- #: ../front-end/class-formbuilder.php:137
1387
- msgid "here"
1388
- msgstr "aqui"
1389
-
1390
- #: ../front-end/class-formbuilder.php:139
1391
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1392
- msgstr "Você será redirecionado automaticamente em instantes. Se você visualizar essa página por mais de %1$d segundos, por favor clique %2$s.%3$s"
1393
-
1394
- #: ../front-end/class-formbuilder.php:224
1395
- msgid "The account %1s has been successfully created!"
1396
- msgstr "A conta %1s foi criada com sucesso!"
1397
-
1398
- #: ../front-end/class-formbuilder.php:227
1399
- #: ../front-end/class-formbuilder.php:233
1400
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1401
- msgstr "Antes de acessar sua conta %1s, você precisa confirmar seu endereço de email. Por favor cheque o seu inbox e clique no link de ativação."
1402
-
1403
- #: ../front-end/class-formbuilder.php:230
1404
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1405
- msgstr "Antes de acessar sua conta %1s, um administrador precisa aprová-la. Você será notificado via email quando isso acontecer."
1406
-
1407
- #: ../front-end/class-formbuilder.php:243
1408
- msgid "Your profile has been successfully updated!"
1409
- msgstr "Seu perfil foi atualizado com sucesso!"
1410
-
1411
- #: ../front-end/class-formbuilder.php:253
1412
- msgid "There was an error in the submitted form"
1413
- msgstr "Houve um erro no formulário enviado"
1414
-
1415
- #: ../front-end/class-formbuilder.php:274
1416
- msgid "Add User"
1417
- msgstr "Adicionar usuário"
1418
-
1419
- #: ../front-end/class-formbuilder.php:277
1420
- msgid "Update"
1421
- msgstr "Atualizar"
1422
-
1423
- #: ../front-end/class-formbuilder.php:314
1424
- #: ../front-end/extra-fields/extra-fields.php:33
1425
- msgid "The avatar was successfully deleted!"
1426
- msgstr "O avatar foi deletado com sucesso!"
1427
-
1428
- #: ../front-end/class-formbuilder.php:314
1429
- #: ../front-end/extra-fields/extra-fields.php:35
1430
- msgid "The following attachment was successfully deleted:"
1431
- msgstr "O seguinte anexo foi deletado com sucesso:"
1432
-
1433
- #: ../front-end/class-formbuilder.php:326
1434
- msgid "Send these credentials via email."
1435
- msgstr "Enviar essas credenciais via email."
1436
-
1437
- #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1438
- #: ../front-end/login.php:79 ../front-end/login.php:89
1439
- #: ../front-end/recover.php:17 ../front-end/recover.php:206
1440
- msgid "ERROR"
1441
- msgstr "ERRO"
1442
-
1443
- #: ../front-end/login.php:72
1444
- msgid "The password you entered is incorrect."
1445
- msgstr "O password digitado está incorreto."
1446
-
1447
- #: ../front-end/login.php:73 ../front-end/login.php:80
1448
- msgid "Password Lost and Found."
1449
- msgstr "Password Achados e Perdidos."
1450
-
1451
- #: ../front-end/login.php:73 ../front-end/login.php:80
1452
- msgid "Lost your password"
1453
- msgstr "Perdeu seu password"
1454
-
1455
- #: ../front-end/login.php:89
1456
- msgid "Both fields are empty."
1457
- msgstr "Ambos os campos estão vazios."
1458
-
1459
- #: ../front-end/login.php:199
1460
- msgid "You are currently logged in as %1$s. %2$s"
1461
- msgstr "Você está logado como %1$s. %2$s"
1462
-
1463
- #: ../front-end/login.php:199
1464
- msgid "Log out of this account"
1465
- msgstr "Desconectar dessa conta"
1466
-
1467
- #: ../front-end/login.php:199
1468
- msgid "Log out"
1469
- msgstr "Desconectar"
1470
-
1471
- #: ../front-end/recover.php:17
1472
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1473
- msgstr "Sua conta precisa ser confirmada pelo administrador antes de você poder usar a função de \"Resetar Password\""
1474
-
1475
- #: ../front-end/recover.php:91
1476
- msgid "Reset Password"
1477
- msgstr "Resetar Password"
1478
-
1479
- #: ../front-end/recover.php:111
1480
- msgid "Please enter your username or email address."
1481
- msgstr "Por favor digite seu usuário ou email."
1482
-
1483
- #: ../front-end/recover.php:112
1484
- msgid "You will receive a link to create a new password via email."
1485
- msgstr "Você receberá um link para criar um novo password via email."
1486
-
1487
- #: ../front-end/recover.php:119
1488
- msgid "Username or E-mail"
1489
- msgstr "Usuário ou E-mail"
1490
-
1491
- #: ../front-end/recover.php:125
1492
- msgid "Get New Password"
1493
- msgstr "Criar novo password"
1494
-
1495
- #: ../front-end/recover.php:164
1496
- msgid "The username entered wasn't found in the database!"
1497
- msgstr "O usuário digitado não foi encontrado na base de dados!"
1498
-
1499
- #: ../front-end/recover.php:164
1500
- msgid "Please check that you entered the correct username."
1501
- msgstr "Por favor confirme se você digitou o usuário corretamente."
1502
-
1503
- #: ../front-end/recover.php:179
1504
- msgid "Check your e-mail for the confirmation link."
1505
- msgstr "Cheque seu e-mail para o link de confirmação."
1506
-
1507
- #: ../front-end/recover.php:194
1508
- 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"
1509
- msgstr "Alguém solicitou que o reset do password da seguinte conta:<b>%1$s</b><br/>Se isso foi um erro, apenas ignore esse email e nada acontecerá.<br/>Para resetar seu password, visite o seguinte link:%2$s"
1510
-
1511
- #: ../front-end/recover.php:197
1512
- msgid "Password Reset from \"%1$s\""
1513
- msgstr "Reset do password de \"%1$s\""
1514
-
1515
- #: ../front-end/recover.php:206
1516
- msgid "There was an error while trying to send the activation link to %1$s!"
1517
- msgstr "Houve um erro na tentativa de enviar o link de ativação para %1$s!"
1518
-
1519
- #: ../front-end/recover.php:215
1520
- msgid "The email address entered wasn't found in the database!"
1521
- msgstr "O endereço de email não foi encontrado na base de dados!"
1522
-
1523
- #: ../front-end/recover.php:215
1524
- msgid "Please check that you entered the correct email address."
1525
- msgstr "Por favor cheque se você digitou o endereço de email corretamente."
1526
-
1527
- #: ../front-end/default-fields/password/password.php:44
1528
- #: ../front-end/recover.php:231
1529
- msgid "<br/>The password must have the minimum length of "
1530
- msgstr "<br/>O password deve ter o tamanho mínimo de"
1531
-
1532
- #: ../front-end/default-fields/password/password.php:48
1533
- #: ../front-end/recover.php:235
1534
- msgid "<br/>The password must have a minimum strength of "
1535
- msgstr "<br/>O password deve ter a força mínima de"
1536
-
1537
- #: ../front-end/recover.php:242
1538
- msgid "Your password has been successfully changed!"
1539
- msgstr "Seu password foi alterado com sucesso!"
1540
-
1541
- #: ../front-end/recover.php:256
1542
- msgid "You have successfully reset your password to: %1$s"
1543
- msgstr "Você resetou com sucesso o password de: %1$s"
1544
-
1545
- #: ../front-end/recover.php:259 ../front-end/recover.php:273
1546
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
1547
- msgstr "Password resetado com sucesso para %1$s em \"%2$s\""
1548
-
1549
- #: ../front-end/recover.php:270
1550
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1551
- msgstr "%1$s solicitou uma alteração de password através da função de reset de password.<br/>Seu novo password é:%2$s"
1552
-
1553
- #: ../front-end/recover.php:289
1554
- msgid "The entered passwords don't match!"
1555
- msgstr "Os passwords digitados não conferem!"
1556
-
1557
- #: ../front-end/recover.php:334
1558
- msgid "ERROR:"
1559
- msgstr "ERRO:"
1560
-
1561
- #: ../front-end/recover.php:334
1562
- msgid "Invalid key!"
1563
- msgstr "Chave inválida!"
1564
-
1565
- #: ../front-end/register.php:46
1566
- msgid "Invalid activation key!"
1567
- msgstr "Chave de ativação inválida!"
1568
-
1569
- #: ../front-end/register.php:50
1570
- msgid "This username is now active!"
1571
- msgstr "Esse usuário está ativo!"
1572
-
1573
- #: ../front-end/register.php:71
1574
- msgid "This username is already activated!"
1575
- msgstr "Esse usuário já está ativado!"
1576
-
1577
- #: ../front-end/register.php:102
1578
- msgid "Your email was successfully confirmed."
1579
- msgstr "Seu email foi confirmado com sucesso."
1580
-
1581
- #: ../front-end/register.php:112
1582
- msgid "There was an error while trying to activate the user."
1583
- msgstr "Houve um erro na tentativa de ativar o usuário."
1584
-
1585
- #: ../front-end/default-fields/email/email.php:42
1586
- msgid "The email you entered is not a valid email address."
1587
- msgstr "O email digitado não é um endereço válido."
1588
-
1589
- #: ../front-end/default-fields/email/email.php:49
1590
- msgid "This email is already reserved to be used soon."
1591
- msgstr "Esse email está reservado para ser usado em breve."
1592
-
1593
- #: ../front-end/default-fields/email/email.php:49
1594
- #: ../front-end/default-fields/email/email.php:55
1595
- #: ../front-end/default-fields/email/email.php:62
1596
- #: ../front-end/default-fields/username/username.php:44
1597
- #: ../front-end/default-fields/username/username.php:51
1598
- msgid "Please try a different one!"
1599
- msgstr "Por favor tente um diferente!"
1600
-
1601
- #: ../front-end/default-fields/email/email.php:55
1602
- #: ../front-end/default-fields/email/email.php:62
1603
- msgid "This email is already in use."
1604
- msgstr "Esse email já está sendo usado."
1605
-
1606
- #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1607
- #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1608
- msgid "The passwords do not match"
1609
- msgstr "Os passwords não conferem"
1610
-
1611
- #: ../front-end/default-fields/username/username.php:44
1612
- msgid "This username already exists."
1613
- msgstr "Esse usuário já existe."
1614
-
1615
- #: ../front-end/default-fields/username/username.php:51
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
1661
- #: ../front-end/extra-fields/input/input.php:28
1662
- #: ../front-end/extra-fields/radio/radio.php:42
1663
- #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1664
- #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1665
- #: ../front-end/extra-fields/select/select.php:44
1666
- #: ../front-end/extra-fields/textarea/textarea.php:28
1667
- #: ../front-end/extra-fields/upload/upload.php:62
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
-
1728
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1729
- msgid "Could not open socket!"
1730
- msgstr "Não foi possível abrir o socket!"
1731
-
1732
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1733
- msgid "To use reCAPTCHA you must get an API key from"
1734
- msgstr "Para usar o reCAPTCHA você deve ter uma chave API de"
1735
-
1736
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1737
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1738
- msgstr "Por motivos de segurança, você deve passar o IP remoto para o reCAPTCHA!"
1739
-
1740
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1741
- msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1742
- msgstr "Para usar o reCAPTCHA Mailhide, você precisa ter o módulo php mcrypt instalado!"
1743
-
1744
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1745
- msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1746
- msgstr "Para usar o reCAPTCHA Mailhide, você precisa se cadastrar para ter uma chave pública e privada; você pode fazer isso em"
1747
-
1748
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1749
- msgid "To use reCAPTCHA you must get an API public key from:"
1750
- msgstr "Para usar o reCAPTCHA você deve ter uma chave API pública de:"
1751
-
1752
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1753
- msgid "To use reCAPTCHA you must get an API private key from:"
1754
- msgstr "Para usar o reCAPTCHA você deve ter uma chave API privada de:"
1755
-
1756
- #: ../front-end/extra-fields/upload/upload.php:35
1757
- msgid "Current file: No uploaded attachment"
1758
- msgstr "Arquivo atual: Nenhum anexo carregado"
1759
-
1760
- #: ../front-end/extra-fields/upload/upload.php:39
1761
- #: ../front-end/extra-fields/upload/upload.php:48
1762
- #: ../front-end/extra-fields/upload/upload.php:71
1763
- #: ../front-end/extra-fields/upload/upload.php:75
1764
- #: ../front-end/extra-fields/upload/upload.php:77
1765
- msgid "Current file"
1766
- msgstr "Arquivo atual"
1767
-
1768
- #: ../front-end/extra-fields/upload/upload.php:42
1769
- #: ../front-end/extra-fields/upload/upload.php:51
1770
- #: ../front-end/extra-fields/upload/upload.php:75
1771
- #: ../front-end/extra-fields/upload/upload.php:77
1772
- msgid "Click to see the current attachment"
1773
- msgstr "Clique para ver o anexo atual"
1774
-
1775
- #: ../front-end/extra-fields/upload/upload.php:44
1776
- #: ../front-end/extra-fields/upload/upload.php:75
1777
- msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1778
- msgstr "O anexo não pode ser deletado (definido como obrigatório pelo administrador)"
1779
-
1780
- #: ../front-end/extra-fields/upload/upload.php:53
1781
- #: ../front-end/extra-fields/upload/upload.php:77
1782
- msgid "Are you sure you want to delete this attachment?"
1783
- msgstr "Você tem certeza que deseja deletar esse anexo?"
1784
-
1785
- #: ../front-end/extra-fields/upload/upload.php:54
1786
- #: ../front-end/extra-fields/upload/upload.php:77
1787
- msgid "Click to delete the current attachment"
1788
- msgstr "Clique para deletar o anexo atual"
1789
-
1790
- #: ../front-end/extra-fields/upload/upload.php:71
1791
- msgid "No uploaded attachment"
1792
- msgstr "Nenhum anexo carregado"
1793
-
1794
- #: ../front-end/extra-fields/upload/upload.php:164
1795
- msgid "The extension of the file is not allowed"
1796
- msgstr "A extensão do arquivo não é permitida"
1797
-
1798
- #: ../front-end/extra-fields/upload/upload.php:186
1799
- msgid "The file could only partially be uploaded"
1800
- msgstr "O arquivo pode ser apenas parcialmente carregado"
1801
-
1802
- #: ../front-end/extra-fields/upload/upload.php:201
1803
- msgid "This field wasn't updated because an unknown error occured"
1804
- msgstr "Esse campo não foi atualizado pois houve um erro desconhecido"
1805
-
1806
- #: ../modules/modules.php:11 ../modules/modules.php:80
1807
- msgid "Modules"
1808
- msgstr "Módulos"
1809
-
1810
- #: ../modules/modules.php:81
1811
- msgid "Here you can activate / deactivate available modules for Profile Builder."
1812
- msgstr "Aqui você pode ativar/desativar os módulos disponíveis para o Profile Builder."
1813
-
1814
- #: ../modules/modules.php:91
1815
- msgid "Name/Description"
1816
- msgstr "Nome/Descrição"
1817
-
1818
- #: ../modules/modules.php:92
1819
- msgid "Status"
1820
- msgstr "Status"
1821
-
1822
- #: ../modules/custom-redirects/custom-redirects.php:48
1823
- #: ../modules/custom-redirects/custom-redirects.php:58
1824
- #: ../modules/custom-redirects/custom-redirects.php:68
1825
- #: ../modules/custom-redirects/custom-redirects.php:94
1826
- #: ../modules/custom-redirects/custom-redirects.php:104
1827
- #: ../modules/custom-redirects/custom-redirects.php:114
1828
- #: ../modules/custom-redirects/custom-redirects.php:124
1829
- #: ../modules/modules.php:99 ../modules/modules.php:106
1830
- #: ../modules/modules.php:113 ../modules/modules.php:120
1831
- #: ../modules/modules.php:127 ../modules/modules.php:134
1832
- msgid "Active"
1833
- msgstr "Ativo"
1834
-
1835
- #: ../modules/custom-redirects/custom-redirects.php:49
1836
- #: ../modules/custom-redirects/custom-redirects.php:59
1837
- #: ../modules/custom-redirects/custom-redirects.php:69
1838
- #: ../modules/custom-redirects/custom-redirects.php:95
1839
- #: ../modules/custom-redirects/custom-redirects.php:105
1840
- #: ../modules/custom-redirects/custom-redirects.php:115
1841
- #: ../modules/custom-redirects/custom-redirects.php:125
1842
- #: ../modules/modules.php:100 ../modules/modules.php:107
1843
- #: ../modules/modules.php:114 ../modules/modules.php:121
1844
- #: ../modules/modules.php:128 ../modules/modules.php:135
1845
- msgid "Inactive"
1846
- msgstr "Inativo"
1847
-
1848
- #: ../modules/email-customizer/admin-email-customizer.php:11
1849
- #: ../modules/email-customizer/admin-email-customizer.php:12
1850
- #: ../modules/modules.php:118
1851
- msgid "Admin Email Customizer"
1852
- msgstr "Customizador do Email Admin"
1853
-
1854
- #: ../modules/email-customizer/user-email-customizer.php:11
1855
- #: ../modules/email-customizer/user-email-customizer.php:12
1856
- #: ../modules/modules.php:125
1857
- msgid "User Email Customizer"
1858
- msgstr "Customizador do Email do Usuário"
1859
-
1860
- #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1861
- msgid "Save"
1862
- msgstr "Salvar"
1863
-
1864
- #: ../modules/custom-redirects/custom-redirects.php:35
1865
- msgid "Redirects on custom page requests:"
1866
- msgstr "Redireciona na solicitação de página customizada"
1867
-
1868
- #: ../modules/custom-redirects/custom-redirects.php:39
1869
- #: ../modules/custom-redirects/custom-redirects.php:85
1870
- msgid "Action"
1871
- msgstr "Ação"
1872
-
1873
- #: ../modules/custom-redirects/custom-redirects.php:40
1874
- #: ../modules/custom-redirects/custom-redirects.php:86
1875
- #: ../modules/multiple-forms/edit-profile-forms.php:206
1876
- #: ../modules/multiple-forms/register-forms.php:230
1877
- msgid "Redirect"
1878
- msgstr "Redireciona"
1879
-
1880
- #: ../modules/custom-redirects/custom-redirects.php:41
1881
- #: ../modules/custom-redirects/custom-redirects.php:87
1882
- #: ../modules/multiple-forms/edit-profile-forms.php:208
1883
- #: ../modules/multiple-forms/register-forms.php:232
1884
- msgid "URL"
1885
- msgstr "URL"
1886
-
1887
- #: ../modules/custom-redirects/custom-redirects.php:46
1888
- msgid "After Registration:"
1889
- msgstr "Pós registro:"
1890
-
1891
- #: ../modules/custom-redirects/custom-redirects.php:56
1892
- msgid "After Login:"
1893
- msgstr "Pós Login:"
1894
-
1895
- #: ../modules/custom-redirects/custom-redirects.php:66
1896
- msgid "Recover Password (*)"
1897
- msgstr "Recuperar Password (*)"
1898
-
1899
- #: ../modules/custom-redirects/custom-redirects.php:77
1900
- 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."
1901
- msgstr "Quando essa função estiver ativada, o usuário será redirecionado tanto da página padrão do WordPress quanto do link \"Perdeu seu password?\" para a página de login usada pelo Profile Builder."
1902
-
1903
- #: ../modules/custom-redirects/custom-redirects.php:81
1904
- msgid "Redirects on default WordPress page requests:"
1905
- msgstr "Redireciona na solicitação de página padrão do WordPress:"
1906
-
1907
- #: ../modules/custom-redirects/custom-redirects.php:92
1908
- msgid "Default WordPress Login Page"
1909
- msgstr "Página de Login Padrão do WordPress"
1910
-
1911
- #: ../modules/custom-redirects/custom-redirects.php:102
1912
- msgid "Default WordPress Logout Page"
1913
- msgstr "Página de Logout Padrão do WordPress"
1914
-
1915
- #: ../modules/custom-redirects/custom-redirects.php:112
1916
- msgid "Default WordPress Register Page"
1917
- msgstr "Página de Registro Padrão do WordPress"
1918
-
1919
- #: ../modules/custom-redirects/custom-redirects.php:122
1920
- msgid "Default WordPress Dashboard (*)"
1921
- msgstr "Dashboard Padrão do WordPress (*)"
1922
-
1923
- #: ../modules/custom-redirects/custom-redirects.php:133
1924
- msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1925
- msgstr "Redireciona todas as funções EXCETO aquelas com privilégios de administrador (pode gerenciar opções)."
1926
-
1927
- #: ../modules/email-customizer/admin-email-customizer.php:38
1928
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1929
- msgstr "Essas configurações também são replicadas na página de configurações do \"Customizador de Emails do Usuário\" após serem salvas."
1930
-
1931
- #: ../modules/email-customizer/admin-email-customizer.php:41
1932
- #: ../modules/email-customizer/user-email-customizer.php:41
1933
- msgid "From (name)"
1934
- msgstr "De (nome)"
1935
-
1936
- #: ../modules/email-customizer/admin-email-customizer.php:49
1937
- #: ../modules/email-customizer/user-email-customizer.php:49
1938
- msgid "From (reply-to email)"
1939
- msgstr "De (email de resposta)"
1940
-
1941
- #: ../modules/email-customizer/admin-email-customizer.php:57
1942
- #: ../modules/email-customizer/user-email-customizer.php:57
1943
- msgid "Common Settings"
1944
- msgstr "Configurações comuns"
1945
-
1946
- #: ../modules/email-customizer/admin-email-customizer.php:60
1947
- msgid ""
1948
- "\n"
1949
- "<p>New subscriber on {{site_name}}.</p>\n"
1950
- "<p>Username:{{username}}</p>\n"
1951
- "<p>E-mail:{{user_email}}</p>\n"
1952
- msgstr ""
1953
- "\n"
1954
- "<p>New subscriber on {{site_name}}.</p>\n"
1955
- "<p>Username:{{username}}</p>\n"
1956
- "<p>E-mail:{{user_email}}</p>\n"
1957
-
1958
- #: ../modules/email-customizer/admin-email-customizer.php:69
1959
- #: ../modules/email-customizer/admin-email-customizer.php:99
1960
- #: ../modules/email-customizer/user-email-customizer.php:71
1961
- #: ../modules/email-customizer/user-email-customizer.php:99
1962
- #: ../modules/email-customizer/user-email-customizer.php:128
1963
- #: ../modules/email-customizer/user-email-customizer.php:155
1964
- #: ../modules/email-customizer/user-email-customizer.php:183
1965
- msgid "Email Subject"
1966
- msgstr "Assunto do Email"
1967
-
1968
- #: ../modules/email-customizer/admin-email-customizer.php:84
1969
- msgid "Default Registration & Registration with Email Confirmation"
1970
- msgstr "Registro padrão & Registro com confirmação de email"
1971
-
1972
- #: ../modules/email-customizer/admin-email-customizer.php:87
1973
- msgid ""
1974
- "\n"
1975
- "<p>New subscriber on {{site_name}}.</p>\n"
1976
- "<p>Username:{{username}}</p>\n"
1977
- "<p>E-mail:{{user_email}}</p>\n"
1978
- "<p>The Admin Approval feature was activated at the time of registration,\n"
1979
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
1980
- msgstr ""
1981
- "\n"
1982
- "\n"
1983
- "<p>Novo assinante em {{site_name}}.</p>\n"
1984
- "<p>Usuário:{{username}}</p>\n"
1985
- "<p>E-mail:{{user_email}}</p>\n"
1986
- "<p>A função de Aprovação do Admin estava ativada no momento do registro,\n"
1987
- "então por favor lembre-se que você precisa aprovar esse usuário para que ele possa fazer o login!</p>\n"
1988
-
1989
- #: ../modules/email-customizer/admin-email-customizer.php:114
1990
- #: ../modules/email-customizer/user-email-customizer.php:143
1991
- msgid "Registration with Admin Approval"
1992
- msgstr "Registro com aprovação do admin"
1993
-
1994
- #: ../modules/email-customizer/email-customizer.php:7
1995
- msgid "Available Tags"
1996
- msgstr "Tags disponíveis"
1997
-
1998
- #: ../modules/email-customizer/email-customizer.php:11
1999
- msgid "User Meta"
2000
- msgstr "Meta User"
2001
-
2002
- #: ../modules/email-customizer/email-customizer.php:21
2003
- msgid "Site Url"
2004
- msgstr "URL do site"
2005
-
2006
- #: ../modules/email-customizer/email-customizer.php:22
2007
- msgid "Site Name"
2008
- msgstr "Nome do site"
2009
-
2010
- #: ../modules/email-customizer/email-customizer.php:25
2011
- #: ../modules/user-listing/userlisting.php:126
2012
- msgid "User Id"
2013
- msgstr "ID do usuário"
2014
-
2015
- #: ../modules/email-customizer/email-customizer.php:32
2016
- msgid "Reply To"
2017
- msgstr "Responder para"
2018
-
2019
- #: ../modules/email-customizer/email-customizer.php:35
2020
- msgid "Activation Key"
2021
- msgstr "Chave de ativação"
2022
-
2023
- #: ../modules/email-customizer/email-customizer.php:36
2024
- msgid "Activation Url"
2025
- msgstr "URL de ativação"
2026
-
2027
- #: ../modules/email-customizer/email-customizer.php:37
2028
- msgid "Activation Link"
2029
- msgstr "Link de ativação"
2030
-
2031
- #: ../modules/email-customizer/user-email-customizer.php:64
2032
- msgid ""
2033
- "\n"
2034
- "<h3>Welcome to {{site_name}}!</h3>\n"
2035
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2036
- msgstr ""
2037
- "\n"
2038
- "\n"
2039
- "<h3>Bemvindo ao {{site_name}}!</h3>\n"
2040
- "<p>Seu usuário é: {{username}} e password:{{password}}</p>\n"
2041
-
2042
- #: ../modules/email-customizer/user-email-customizer.php:85
2043
- msgid "Default Registration"
2044
- msgstr "Registro padrão"
2045
-
2046
- #: ../modules/email-customizer/user-email-customizer.php:91
2047
- msgid ""
2048
- "\n"
2049
- "<p>To activate your user, please click the following link:<br/>\n"
2050
- "{{{activation_link}}}</p>\n"
2051
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
2052
- msgstr ""
2053
- "\n"
2054
- "\n"
2055
- "<p>Para ativar seu usuário, por favor clique no seguinte link:<br/>\n"
2056
- "{{{activation_link}}}</p>\n"
2057
- "<p>Após a ativação você receberá um email com suas credenciais.</p>\n"
2058
-
2059
- #: ../modules/email-customizer/user-email-customizer.php:103
2060
- msgid "[{{site_name}}] Activate {{username}}"
2061
- msgstr "[{{site_name}}] Ativar {{username}}"
2062
-
2063
- #: ../modules/email-customizer/user-email-customizer.php:114
2064
- msgid "Registration with Email Confirmation"
2065
- msgstr "Registro com confirmação de email"
2066
-
2067
- #: ../modules/email-customizer/user-email-customizer.php:120
2068
- msgid ""
2069
- "\n"
2070
- "<h3>Welcome to {{site_name}}!</h3>\n"
2071
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2072
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2073
- msgstr ""
2074
- "\n"
2075
- "\n"
2076
- "<h3>Bemvindo ao {{site_name}}!</h3>\n"
2077
- "<p>Seu usuário é: {{username}} e password:{{password}}</p>\n"
2078
- "<p>Antes de acessar sua conta, o administrador precisa aprová-la. Você será notificado por email quando isso acontecer.</p>\n"
2079
-
2080
- #: ../modules/email-customizer/user-email-customizer.php:132
2081
- msgid "A new account has been created for you on {{site_name}}"
2082
- msgstr "Uma nova conta foi criada para você em {{site_name}}"
2083
-
2084
- #: ../modules/email-customizer/user-email-customizer.php:148
2085
- msgid ""
2086
- "\n"
2087
- "<h3>Good News!</h3>\n"
2088
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2089
- msgstr ""
2090
- "\n"
2091
- "\n"
2092
- "<h3>Boas notícias!</h3>\n"
2093
- "<p>O administrador acaba de aprovar a sua conta: {{username}} em {{site_name}}.</p>\n"
2094
-
2095
- #: ../modules/email-customizer/user-email-customizer.php:159
2096
- msgid "Your account on {{site_name}} has been approved!"
2097
- msgstr "Sua conta no {{site_name}} foi aprovada!"
2098
-
2099
- #: ../modules/email-customizer/user-email-customizer.php:170
2100
- msgid "User Approval Notification"
2101
- msgstr "Notificação de aprovação de usuário"
2102
-
2103
- #: ../modules/email-customizer/user-email-customizer.php:175
2104
- msgid ""
2105
- "\n"
2106
- "<h3>Hello,</h3>\n"
2107
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2108
- msgstr ""
2109
- "\n"
2110
- "<h3>Olá,</h3>\n"
2111
- "<p>Infelizmente o administrador reprovou a criação de sua conta: {{username}} em {{site_name}}.</p>\n"
2112
-
2113
- #: ../modules/email-customizer/user-email-customizer.php:187
2114
- msgid "Your account on {{site_name}} has been unapproved!"
2115
- msgstr "Sua conta no {{site_name}} foi reprovada!"
2116
-
2117
- #: ../modules/email-customizer/user-email-customizer.php:198
2118
- msgid "Unapproved User Notification"
2119
- msgstr "Notificação de usuário reprovado"
2120
-
2121
- #: ../modules/multiple-forms/edit-profile-forms.php:11
2122
- #: ../modules/multiple-forms/edit-profile-forms.php:12
2123
- msgid "Edit-profile Form"
2124
- msgstr "Formulário de Edição de Perfil"
2125
-
2126
- #: ../modules/multiple-forms/edit-profile-forms.php:13
2127
- #: ../modules/multiple-forms/register-forms.php:13
2128
- #: ../modules/user-listing/userlisting.php:13
2129
- msgid "Add New"
2130
- msgstr "Adicionar novo"
2131
-
2132
- #: ../modules/multiple-forms/edit-profile-forms.php:14
2133
- msgid "Add new Edit-profile Form"
2134
- msgstr "Adicionar novo formulário de edição de perfil"
2135
-
2136
- #: ../modules/multiple-forms/edit-profile-forms.php:15
2137
- msgid "Edit the Edit-profile Forms"
2138
- msgstr "Editar os formulários de edição de perfil"
2139
-
2140
- #: ../modules/multiple-forms/edit-profile-forms.php:16
2141
- msgid "New Edit-profile Form"
2142
- msgstr "Novo formulário de edição de perfil"
2143
-
2144
- #: ../modules/multiple-forms/edit-profile-forms.php:17
2145
- #: ../modules/multiple-forms/edit-profile-forms.php:23
2146
- msgid "Edit-profile Forms"
2147
- msgstr "Formulários de Edição de Perfil"
2148
-
2149
- #: ../modules/multiple-forms/edit-profile-forms.php:18
2150
- msgid "View the Edit-profile Form"
2151
- msgstr "Visualiza o formulário de edição de perfil"
2152
-
2153
- #: ../modules/multiple-forms/edit-profile-forms.php:19
2154
- msgid "Search the Edit-profile Forms"
2155
- msgstr "Buscar os formulários de edição de perfil"
2156
-
2157
- #: ../modules/multiple-forms/edit-profile-forms.php:20
2158
- msgid "No Edit-profile Form found"
2159
- msgstr "Nenhum formulário de edição de perfil encontrado"
2160
-
2161
- #: ../modules/multiple-forms/edit-profile-forms.php:21
2162
- msgid "No Edit-profile Forms found in trash"
2163
- msgstr "Nenhum Formulário de Edição de Perdil encontrado na lixeira"
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
-
2201
- #: ../modules/multiple-forms/edit-profile-forms.php:206
2202
- #: ../modules/multiple-forms/register-forms.php:230
2203
- msgid "Whether to redirect the user to a specific page or not"
2204
- msgstr "Se redireciona o usuário para uma página específica ou não"
2205
-
2206
- #: ../modules/multiple-forms/edit-profile-forms.php:207
2207
- #: ../modules/multiple-forms/register-forms.php:231
2208
- msgid "Display Messages"
2209
- msgstr "Mostrar mensagens"
2210
-
2211
- #: ../modules/multiple-forms/edit-profile-forms.php:207
2212
- #: ../modules/multiple-forms/register-forms.php:231
2213
- msgid "Allowed time to display any success messages (in seconds)"
2214
- msgstr "Tempo permitido para mostrar qualquer mensagem de sucesso (em segundos)"
2215
-
2216
- #: ../modules/multiple-forms/edit-profile-forms.php:208
2217
- 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"
2218
- msgstr "Especificar a URL da página que os usuários serão redirecionados após atualizarem seus perfis usando esse formulário<br/>Use o seguinte formato: http://www.meusite.com"
2219
-
2220
- #: ../modules/multiple-forms/edit-profile-forms.php:215
2221
- msgid "After Profile Update..."
2222
- msgstr "Após a atualização do perfil..."
2223
-
2224
- #: ../modules/multiple-forms/edit-profile-forms.php:239
2225
- #: ../modules/multiple-forms/register-forms.php:260
2226
- msgid "Add New Field to the List"
2227
- msgstr "Adicoinar novo campo a lista"
2228
-
2229
- #: ../modules/multiple-forms/edit-profile-forms.php:243
2230
- #: ../modules/multiple-forms/register-forms.php:264
2231
- msgid "Choose one of the supported fields you manage <a href=\""
2232
- msgstr "Escolha um dos campos suportados que você gerencia <a href=\""
2233
-
2234
- #: ../modules/multiple-forms/multiple-forms.php:407
2235
- msgid "<pre>Title (Type)</pre>"
2236
- msgstr "<pre>Título (Tipo)</pre>"
2237
-
2238
- #: ../modules/multiple-forms/multiple-forms.php:233
2239
- msgid "You need to specify the title of the form before creating it"
2240
- msgstr "Você precisa especificar o título do formulário antes de criá-lo"
2241
-
2242
- #: ../modules/multiple-forms/register-forms.php:11
2243
- #: ../modules/multiple-forms/register-forms.php:12
2244
- msgid "Registration Form"
2245
- msgstr "Formulário de Registro"
2246
-
2247
- #: ../modules/multiple-forms/register-forms.php:14
2248
- msgid "Add new Registration Form"
2249
- msgstr "Adicionar novo formulário de registro"
2250
-
2251
- #: ../modules/multiple-forms/register-forms.php:15
2252
- msgid "Edit the Registration Forms"
2253
- msgstr "Editar os formulários de registro"
2254
-
2255
- #: ../modules/multiple-forms/register-forms.php:16
2256
- msgid "New Registration Form"
2257
- msgstr "Novo formulário de registro"
2258
-
2259
- #: ../modules/multiple-forms/register-forms.php:17
2260
- #: ../modules/multiple-forms/register-forms.php:23
2261
- msgid "Registration Forms"
2262
- msgstr "Formulários de Registro"
2263
-
2264
- #: ../modules/multiple-forms/register-forms.php:18
2265
- msgid "View the Registration Form"
2266
- msgstr "Visualizar o formulário de registro"
2267
-
2268
- #: ../modules/multiple-forms/register-forms.php:19
2269
- msgid "Search the Registration Forms"
2270
- msgstr "Buscar os formulários de registro"
2271
-
2272
- #: ../modules/multiple-forms/register-forms.php:20
2273
- msgid "No Registration Form found"
2274
- msgstr "Nenhum formulário de registro encontrado"
2275
-
2276
- #: ../modules/multiple-forms/register-forms.php:21
2277
- msgid "No Registration Forms found in trash"
2278
- msgstr "Nenhum formulário de registro encontrado na lixeira"
2279
-
2280
- #: ../modules/multiple-forms/register-forms.php:219
2281
- msgid "Default Role"
2282
- msgstr "Função padrão"
2283
-
2284
- #: ../modules/multiple-forms/register-forms.php:228
2285
- msgid "Set Role"
2286
- msgstr "Ajustar Função"
2287
-
2288
- #: ../modules/multiple-forms/register-forms.php:228
2289
- 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"
2290
- msgstr "Escolha qual função o usuário terá após registrar-se<br/>Se não especificado, a função padrão será a definida nas configurações do WordPress"
2291
-
2292
- #: ../modules/multiple-forms/register-forms.php:229
2293
- msgid "Automatically Log In"
2294
- msgstr "Login Automático"
2295
-
2296
- #: ../modules/multiple-forms/register-forms.php:229
2297
- 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"
2298
- msgstr "Se realizar automaticamente o login do usuário recém registrado ou não<br/>Funciona apenas em single-sites sem as funções de \"Aprovação do Admin\" e \"Confirmação de Email\" ativadas<br/>CUIDADO: Usar o cache do formulário de registro fará o login automático não funcionar"
2299
-
2300
- #: ../modules/multiple-forms/register-forms.php:232
2301
- 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"
2302
- msgstr "Especifique a URL da página que os usuários serão redirecionamentos após registrarem-se por esse formulário<br/>Use o seguinte formato: http://www.meusite.com"
2303
-
2304
- #: ../modules/multiple-forms/register-forms.php:238
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
-
2316
- #: ../modules/user-listing/userlisting.php:14
2317
- msgid "Add new User Listing"
2318
- msgstr "Adicionar nova listagem de usuário"
2319
-
2320
- #: ../modules/user-listing/userlisting.php:15
2321
- msgid "Edit the User Listing"
2322
- msgstr "Editar a Listagem de Usuários"
2323
-
2324
- #: ../modules/user-listing/userlisting.php:16
2325
- msgid "New User Listing"
2326
- msgstr "Nova listagem de usuário"
2327
-
2328
- #: ../modules/user-listing/userlisting.php:18
2329
- msgid "View the User Listing"
2330
- msgstr "Visualizar a Listagem de Usuários"
2331
-
2332
- #: ../modules/user-listing/userlisting.php:19
2333
- msgid "Search the User Listing"
2334
- msgstr "Buscar a listagem de usuários"
2335
-
2336
- #: ../modules/user-listing/userlisting.php:20
2337
- msgid "No User Listing found"
2338
- msgstr "Nenhum registro de usuário encontrado"
2339
-
2340
- #: ../modules/user-listing/userlisting.php:21
2341
- msgid "No User Listing found in trash"
2342
- msgstr "Nenhum registro de usuário encontrado na lixeira"
2343
-
2344
- #: ../modules/user-listing/userlisting.php:97
2345
- msgid "Display name as"
2346
- msgstr "Mostrar nome como"
2347
-
2348
- #: ../modules/user-listing/userlisting.php:110
2349
- msgid "Url"
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
-
2362
- #: ../modules/user-listing/userlisting.php:123
2363
- msgid "More Info"
2364
- msgstr "Mais Informações"
2365
-
2366
- #: ../modules/user-listing/userlisting.php:124
2367
- msgid "More Info Url"
2368
- msgstr "URL de mais informações"
2369
-
2370
- #: ../modules/user-listing/userlisting.php:125
2371
- msgid "Avatar or Gravatar"
2372
- msgstr "Avatar ou Gravatar"
2373
-
2374
- #: ../modules/user-listing/userlisting.php:153
2375
- msgid "Meta Variables"
2376
- msgstr "Meta Variáveis"
2377
-
2378
- #: ../modules/user-listing/userlisting.php:159
2379
- msgid "Sort Variables"
2380
- msgstr "Ordenar variáveis"
2381
-
2382
- #: ../modules/user-listing/userlisting.php:163
2383
- #: ../modules/user-listing/userlisting.php:190
2384
- msgid "Extra Functions"
2385
- msgstr "Funções extra"
2386
-
2387
- #: ../modules/user-listing/userlisting.php:165
2388
- msgid "Pagination"
2389
- msgstr "Paginação"
2390
-
2391
- #: ../modules/user-listing/userlisting.php:166
2392
- msgid "Search all Fields"
2393
- msgstr "Buscar todos os campos"
2394
-
2395
- #: ../modules/user-listing/userlisting.php:192
2396
- msgid "Go Back Link"
2397
- msgstr "Link Voltar"
2398
-
2399
- #: ../modules/user-listing/userlisting.php:210
2400
- msgid "All-userlisting Template"
2401
- msgstr "Template de listagem de todos usuários"
2402
-
2403
- #: ../modules/user-listing/userlisting.php:213
2404
- msgid "Single-userlisting Template"
2405
- msgstr "Template de entrada único usuário"
2406
-
2407
- #: ../modules/user-listing/userlisting.php:330
2408
- msgid "You do not have permission to view this user list"
2409
- msgstr "Você não tem permissão para visualizar essa lista de usuários"
2410
-
2411
- #: ../modules/user-listing/userlisting.php:343
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 "&laquo;&laquo; First"
2470
- msgstr "&laquo;&laquo; Primeira"
2471
-
2472
- #: ../modules/user-listing/userlisting.php:838
2473
- msgid "&laquo; Prev"
2474
- msgstr "&laquo; Ant"
2475
-
2476
- #: ../modules/user-listing/userlisting.php:839
2477
- msgid "Next &raquo; "
2478
- msgstr "Próx &raquo; "
2479
-
2480
- #: ../modules/user-listing/userlisting.php:840
2481
- msgid "Last &raquo;&raquo;"
2482
- msgstr "Última &raquo;&raquo;"
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!"
1
+ # Translation of Profile Builder in Portuguese (Brazil)
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"
9
+ "Plural-Forms: nplurals=2; plural=(n > 1);\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 "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"
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&#37; 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&#37; 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 ""
68
+
69
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
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
+
89
+ #: ../front-end/login.php:79
90
+ msgid "Invalid username."
91
+ msgstr ""
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
116
+ msgid "Your selected password at signup"
117
+ msgstr ""
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 ""
126
+
127
+ #: ../modules/multiple-forms/multiple-forms.php:407
128
+ msgid "Delete all items"
129
+ msgstr ""
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
+
143
+ #: ../admin/admin-bar.php:10
144
+ msgid "Show/Hide the Admin Bar on the Front-End"
145
+ msgstr "Mostrar/Ocultar a Barra de Admin no site"
146
+
147
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
148
+ msgid "Admin Bar Settings"
149
+ msgstr "Configurações da Barra de Admin"
150
+
151
+ #: ../admin/admin-bar.php:57
152
+ msgid "User-Role"
153
+ msgstr "Função do Usuário"
154
+
155
+ #: ../admin/admin-bar.php:58
156
+ msgid "Visibility"
157
+ msgstr "Visibilidade"
158
+
159
+ #: ../admin/admin-bar.php:73
160
+ msgid "Default"
161
+ msgstr "Padrão"
162
+
163
+ #: ../admin/admin-bar.php:74
164
+ msgid "Show"
165
+ msgstr "Mostrar"
166
+
167
+ #: ../admin/admin-bar.php:75
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"
176
+ msgstr "Salvar Alterações"
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 "Login está configurado para ser feito através do E-mail. Esse campo NÃO irá aparecer na tela! (você pode alterar essas configurações na aba \"%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 "Configurações Gerais"
186
+
187
+ #: ../admin/admin-functions.php:106
188
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of "
189
+ msgstr "<strong>ERRO</strong>: O password deve ser maior que"
190
+
191
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
192
+ msgid "Very weak"
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
+
210
+ #: ../admin/admin-functions.php:123
211
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
212
+ msgstr "<strong>ERRO</strong>: O password deve ter no mínimo"
213
+
214
+ #: ../admin/admin-functions.php:162
215
+ msgid "Add Field"
216
+ msgstr "Adicionar Campo"
217
+
218
+ #: ../admin/admin-functions.php:164
219
+ msgid "Save Settings"
220
+ msgstr "Salvar Configurações"
221
+
222
+ #: ../admin/basic-info.php:10
223
+ msgid "Basic Information"
224
+ msgstr "Informações Básicas"
225
+
226
+ #: ../admin/basic-info.php:29
227
+ msgid "Version %s"
228
+ msgstr "Versão %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 "A melhor forma de criar registros no front-end, editar perfis e formulários de login."
237
+
238
+ #: ../admin/basic-info.php:33
239
+ msgid "For Modern User Interaction"
240
+ msgstr "Para interação com usuários modernos"
241
+
242
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
243
+ msgid "Login"
244
+ msgstr "Login"
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 "Login rápido e fácil usando <strong class=\"nowrap\">[wppb-login]</strong> shortcode ou um widget."
249
+
250
+ #: ../admin/basic-info.php:40
251
+ msgid "Registration"
252
+ msgstr "Registro"
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 "Incríveis possibilidades de registro totalmente customizáveis usando o <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
257
+
258
+ #: ../admin/basic-info.php:44
259
+ msgid "Edit Profile"
260
+ msgstr "Editar Perfil"
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 "Edite diretamente os formulários de perfil usando <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
265
+
266
+ #: ../admin/basic-info.php:51
267
+ msgid "Extra Features"
268
+ msgstr "Funções Extras"
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 "Funções que lhe dão mais controle sobre seus usuários, aumentam a seguração e o ajudam a combater o cadastro de spams."
273
+
274
+ #: ../admin/basic-info.php:53
275
+ msgid "Enable extra features"
276
+ msgstr "Habilite as funções extras"
277
+
278
+ #: ../admin/basic-info.php:57
279
+ msgid "Recover Password"
280
+ msgstr "Recuperar Password"
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 "Permita aos usuários recuperarem seu password diretamente na tela usando o [wppb-recover-password]."
285
+
286
+ #: ../admin/basic-info.php:61
287
+ msgid "Admin Approval (*)"
288
+ msgstr "Aprovação do Admin (*)"
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 "Você decide quem é um usuário em seu site. Receba notificações via email ou aprove múltiplos usuários de uma só vez pela interface do Wordpress."
293
+
294
+ #: ../admin/basic-info.php:65
295
+ msgid "Email Confirmation"
296
+ msgstr "Confirmação de Email"
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 "Garanta que usuários cadastrem-se com emails genuínos. No registro, os usuários receberão uma notificação para confirmarem seus emails."
301
+
302
+ #: ../admin/basic-info.php:69
303
+ msgid "Minimum Password Length and Strength Meter"
304
+ msgstr "Tamanho mínimo do password e medidor de força"
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 "Elimine passwords de uma vez configurando um tamanho mínimo e mantendo a força do password."
309
+
310
+ #: ../admin/basic-info.php:73
311
+ msgid "Login with Email or Username"
312
+ msgstr "Login com Email ou Usuário"
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 aos usuários fazerem o login com seus emails ou nome de usuários quando acessarem seu site."
317
+
318
+ #: ../admin/basic-info.php:87
319
+ msgid "Customize Your Forms The Way You Want (*)"
320
+ msgstr "Customize seus formulários da forma que quiser (*)"
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 "Com os campos extra de perfil você pode criar o formulário de registro exatamente como precisa."
325
+
326
+ #: ../admin/basic-info.php:90
327
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
328
+ msgstr "Campos Extra de Perfil estão disponíveis nas versões Hobbyist ou PRO"
329
+
330
+ #: ../admin/basic-info.php:92
331
+ msgid "Get started with extra fields"
332
+ msgstr "Comece já a usar os campos extra"
333
+
334
+ #: ../admin/basic-info.php:95
335
+ msgid "Avatar Upload"
336
+ msgstr "Upload de Avatar"
337
+
338
+ #: ../admin/basic-info.php:96
339
+ msgid "Generic Uploads"
340
+ msgstr "Uploads Genéricos"
341
+
342
+ #: ../admin/basic-info.php:97
343
+ msgid "Agree To Terms Checkbox"
344
+ msgstr "Checkbox de acordo com termos"
345
+
346
+ #: ../admin/basic-info.php:98
347
+ msgid "Datepicker"
348
+ msgstr "Selecionador de datas"
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 "Selecionador de País"
357
+
358
+ #: ../admin/basic-info.php:101
359
+ msgid "Timezone Select"
360
+ msgstr "Selecionador de Fuso Horários"
361
+
362
+ #: ../admin/basic-info.php:102
363
+ msgid "Input / Hidden Input"
364
+ msgstr "Input / Input Oculto"
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 "Select"
373
+
374
+ #: ../admin/basic-info.php:105
375
+ msgid "Radio Buttons"
376
+ msgstr "Radio Buttons"
377
+
378
+ #: ../admin/basic-info.php:106
379
+ msgid "Textarea"
380
+ msgstr "Área de Texto"
381
+
382
+ #: ../admin/basic-info.php:115
383
+ msgid "Powerful Modules (**)"
384
+ msgstr "Módulos Poderosos (**)"
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 "Tudo que você precisa para gerenciar seus usuários provavelmente já está disponível usando os módulos PRO."
389
+
390
+ #: ../admin/basic-info.php:118
391
+ msgid "Enable your modules"
392
+ msgstr "Habilite seus módulos"
393
+
394
+ #: ../admin/basic-info.php:121
395
+ msgid "Find out more about PRO Modules"
396
+ msgstr "Saiba mais sobre os módulos 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 "Listagem de usuários"
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 "Templates para listagem dos usuários do seu site fáceis de editar, além da criação de páginas exclusivas para cada um. Baseado em shortcodes, ofecere muitas opções de customizar suas listagens. "
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 "Para criar uma página contendo os usuários registrados no site/blog, insira o seguinte shortcode na página de sua preferência: <strong class=\"nowrap\">[wppb-list-users]</strong>."
413
+
414
+ #: ../admin/basic-info.php:134
415
+ msgid "Email Customizer"
416
+ msgstr "Customizador de Emails"
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 "Personalize todos os emails enviados aos seus usuários ou admins. Quando fizerem registro, confirmação de email, aprovação/negação de admin."
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 "Redirecionamentos customizados"
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 "Mantenha seus usuários longe do dashboard do Wordpress, redirecione-os para a página principal após o login ou o registro, tudo isso com alguns cliques."
431
+
432
+ #: ../admin/basic-info.php:144 ../modules/modules.php:97
433
+ msgid "Multiple Registration Forms"
434
+ msgstr "Múltiplos formulários de Registro"
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 "Configure múltiplos formulários de registro com diferentes campos para funções específicas de usuários. Capture diferentes informações de diferentes tipos de usuários."
439
+
440
+ #: ../admin/basic-info.php:148 ../modules/modules.php:104
441
+ msgid "Multiple Edit-profile Forms"
442
+ msgstr "Múltiplos formulários de edição de perfil"
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 "Permita que usuários com diferentes funções editem suas informações específicas. Configure múltiplos formulários de edição de perfil com diferentes campos para funções específicas de usuários."
447
+
448
+ #: ../admin/basic-info.php:161
449
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
450
+ msgstr "* disponível apenas nas versões %1$sHobbyist e PRO%2$s."
451
+
452
+ #: ../admin/basic-info.php:162
453
+ msgid "** only available in the %1$sPro version%2$s."
454
+ msgstr "** disponível apenas na versão %1s Pro %2$s."
455
+
456
+ #: ../admin/general-settings.php:42
457
+ msgid "Load Profile Builder's own CSS file in the front-end:"
458
+ msgstr "Carregar o arquivo CSS próprio do Profile Builder em sua página:"
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 "Sim"
467
+
468
+ #: ../admin/general-settings.php:47
469
+ msgid "You can find the default file here: %1$s"
470
+ msgstr "Você pode encontrar o arquivo padrão aqui: %1$s"
471
+
472
+ #: ../admin/general-settings.php:56
473
+ msgid "\"Email Confirmation\" Activated:"
474
+ msgstr "\"Email de Confirmação\" Ativado:"
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 "Não"
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 "Em instalações single-site isso funciona apenas no front-end. É recomendado redirecionar o registro padrão do WP para um do Profile Builder, usando o addon \"Custom Redirects\"."
485
+
486
+ #: ../admin/general-settings.php:65
487
+ msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
488
+ msgstr "A função \"Confirmação de Email\" está ativa (por default) em instalações 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 "Você pode encontrar uma lista com os emails não confirmados em %1$sUsers > Todos Usuários > Confirmação de Email%2$s."
493
+
494
+ #: ../admin/general-settings.php:79
495
+ msgid "\"Email Confirmation\" Landing Page:"
496
+ msgstr "Página de abertura da \"Confirmação de Email\""
497
+
498
+ #: ../admin/general-settings.php:84
499
+ msgid "Existing Pages"
500
+ msgstr "Páginas existentes"
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 "Especifique qual a página que os usuários serão redirecionados quando confirmarem sua conta por email. Essa página pode diferente da página de registro e poderá ser alterada a qualquer momento. Se nenhuma for selecionada, uma página simples de confirmação será apresentada ao usuário."
505
+
506
+ #: ../admin/general-settings.php:110
507
+ msgid "\"Admin Approval\" Activated:"
508
+ msgstr "\"Aprovação do Admin\" Ativada:"
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 "Você pode encontrar uma lista dos usuários em %1$sUsers > Todos Usuários > Aprovação do Admin%2$s."
513
+
514
+ #: ../admin/general-settings.php:130
515
+ msgid "\"Admin Approval\" Feature:"
516
+ msgstr "Função \"Aprovação do Admin\":"
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 "Você decide quem é um usuário em seu website. Seja notificado via email ou aprove múltiplos usuários de uma só vez na interface do Wordpress. Habilite a aprovação do admin fazendo o upgrade para a versão %1$sHobbyist ou PRO%2$s."
521
+
522
+ #: ../admin/general-settings.php:140
523
+ msgid "Allow Users to Log in With:"
524
+ msgstr "Permitir usuários fazerem login com:"
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 "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
+
543
+ #: ../admin/general-settings.php:152
544
+ msgid "Minimum Password Length:"
545
+ msgstr "Tamanho mínimo do password:"
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 "Digite a quantidade mínima de caracteres que o password deve conter. Deixe em branco para sem limite mínimo"
550
+
551
+ #: ../admin/general-settings.php:164
552
+ msgid "Minimum Password Strength:"
553
+ msgstr "Força mínima do password:"
554
+
555
+ #: ../admin/general-settings.php:168
556
+ msgid "Disabled"
557
+ msgstr "Desabilitado"
558
+
559
+ #: ../admin/manage-fields.php:12
560
+ msgid "Manage Fields"
561
+ msgstr "Gerenciar campos"
562
+
563
+ #: ../admin/manage-fields.php:13
564
+ msgid "Manage Default and Extra Fields"
565
+ msgstr "Gerenciar campos padrões e extras"
566
+
567
+ #: ../admin/manage-fields.php:74
568
+ msgid "Field Title"
569
+ msgstr "Título do campo"
570
+
571
+ #: ../admin/manage-fields.php:74
572
+ msgid "Title of the field"
573
+ msgstr "Título do campo"
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 "Campo"
580
+
581
+ #: ../admin/manage-fields.php:76
582
+ msgid "Meta-name"
583
+ msgstr "Nome-Meta"
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 "Use isso em conjunto com as funções do WordPress para mostrar o valor na página de sua escolha<br/>Completado automaticamente, mas em alguns casos pode ser editado (nesse caso deve ser um valor único)<br/>Mudar isso pode causar lentidão em caso de uma lista muito grande de usuários"
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 "Um ID único, gerado automaticamente para esse campo em particular<br/>Você pode usar isso em conjunto com filtros para filtrar esse elemento se necessário<br/>Não pode ser editado"
600
+
601
+ #: ../admin/manage-fields.php:78
602
+ msgid "Description"
603
+ msgstr "Descrição"
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 "Digite uma descrição (detalhada) da opção para os usuários lerem<br/>Opcional"
608
+
609
+ #: ../admin/manage-fields.php:79
610
+ msgid "Row Count"
611
+ msgstr "Contagem de linhas"
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 "Especifique o número de linhas para o campo do tipo \"Área de Texto\"<br/>Se não especificado, o padrão são 5"
616
+
617
+ #: ../admin/manage-fields.php:80
618
+ msgid "Allowed Image Extensions"
619
+ msgstr "Extensões de imagens permitidas"
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 "Especifique a extensão(es) que você quer limitar o upload<br/>Exemplo: .ext1,.ext2,ext3<br/>Se não especificado, o padrão será todas as extensões de imagens (.*)"
624
+
625
+ #: ../admin/manage-fields.php:81
626
+ msgid "Allowed Upload Extensions"
627
+ msgstr "Extensões permitidas para upload"
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 "Especifique a extensão(es) que você quer limitar o upload<br/>Exemplo: .ext1,.ext2,ext3<br/>Se não especificado, o padrão será todas as extensões (.*)"
632
+
633
+ #: ../admin/manage-fields.php:82
634
+ msgid "Avatar Size"
635
+ msgstr "Tamanho do 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 "Digite um valor (entre 20 e 200) para o tamanho do 'Avatar'<br/>Se não especificado, o padrão são 100"
640
+
641
+ #: ../admin/manage-fields.php:83
642
+ msgid "Date-format"
643
+ msgstr "Formato da data"
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 "Especifique o formato da data usando o Selecionador de Datas<br/>Opções válidas: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Se não especificado, o padrão é mm/dd/yy"
648
+
649
+ #: ../admin/manage-fields.php:84
650
+ msgid "Terms of Agreement"
651
+ msgstr "Termos de Acordo"
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: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
655
+ msgstr "Digite uma descrição detalhada dos termos de acordo para o usuário ler.<br/>Links podem ser inseridos usando uma sintaxe HTML padrão: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
656
+
657
+ #: ../admin/manage-fields.php:85
658
+ msgid "Options"
659
+ msgstr "Opções"
660
+
661
+ #: ../admin/manage-fields.php:86
662
+ msgid "Labels"
663
+ msgstr "Rótulos"
664
+
665
+ #: ../admin/manage-fields.php:86
666
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
667
+ msgstr "Entre com uma lista de rótulos separados por vírgula<br/>Visível para o usuário"
668
+
669
+ #: ../admin/manage-fields.php:87
670
+ msgid "Public Key"
671
+ msgstr "Chave pública"
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 "A chave pública do 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 "Chave privada"
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 "A chave privada do 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 "Valor padrão"
688
+
689
+ #: ../admin/manage-fields.php:89
690
+ msgid "Default value of the field"
691
+ msgstr "Valor padrão do campo"
692
+
693
+ #: ../admin/manage-fields.php:90
694
+ msgid "Default Option"
695
+ msgstr "Opção padrão"
696
+
697
+ #: ../admin/manage-fields.php:90
698
+ msgid "Specify the option which should be selected by default"
699
+ msgstr "Especifique a opção que será selecionada por padrão"
700
+
701
+ #: ../admin/manage-fields.php:91
702
+ msgid "Default Option(s)"
703
+ msgstr "Opção(es) padrão"
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 "Especifique a opção que será marcada por padrão<br/>Se houver múltiplos valores, separe-os com uma \",\" (vírgula)"
708
+
709
+ #: ../admin/manage-fields.php:92
710
+ msgid "Default Content"
711
+ msgstr "Conteúdo padrão"
712
+
713
+ #: ../admin/manage-fields.php:92
714
+ msgid "Default value of the textarea"
715
+ msgstr "Valor padrão da Área de Texto"
716
+
717
+ #: ../admin/manage-fields.php:93
718
+ msgid "Required"
719
+ msgstr "Obrigatório"
720
+
721
+ #: ../admin/manage-fields.php:93
722
+ msgid "Whether the field is required or not"
723
+ msgstr "Se o campo é obrigatório ou não"
724
+
725
+ #: ../admin/manage-fields.php:94
726
+ msgid "Overwrite Existing"
727
+ msgstr "Sobrepor existente"
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 "Escolhendo \"Sim\" você adicionará o campo à lista, mas irá sobrescrever qualquer outro campo na base de dados que tenha o mesmo meta-name<br/>Use por seu próprio risco"
732
+
733
+ #: ../admin/manage-fields.php:100
734
+ msgid "Field Properties"
735
+ msgstr "Propriedades do campo"
736
+
737
+ #: ../admin/manage-fields.php:113
738
+ msgid "Registration & Edit Profile"
739
+ msgstr "Registro & Edição de Perfil"
740
+
741
+ #: ../admin/manage-fields.php:132
742
+ msgid "Name"
743
+ msgstr "Nome"
744
+
745
+ #: ../admin/manage-fields.php:133
746
+ msgid "Usernames cannot be changed."
747
+ msgstr "Nomes de usuários não podem ser mudados."
748
+
749
+ #: ../admin/manage-fields.php:134
750
+ msgid "First Name"
751
+ msgstr "Primeiro Nome"
752
+
753
+ #: ../admin/manage-fields.php:135
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
+
761
+ #: ../admin/manage-fields.php:137
762
+ msgid "Display name publicly as"
763
+ msgstr "Mostrar nome publicamente como"
764
+
765
+ #: ../admin/manage-fields.php:138
766
+ msgid "Contact Info"
767
+ msgstr "Informações de Contato"
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 "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
+
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 "Compartilhe um pouco de sua informação biográfica para preencher o seu perfil. Isso poderá ser mostrado publicamente."
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 "Password"
814
+
815
+ #: ../admin/manage-fields.php:151
816
+ msgid "Type your password."
817
+ msgstr "Digite seu password."
818
+
819
+ #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
820
+ msgid "Repeat Password"
821
+ msgstr "Repita o Password"
822
+
823
+ #: ../admin/manage-fields.php:152
824
+ msgid "Type your password again. "
825
+ msgstr "Digite seu password novamente."
826
+
827
+ #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
828
+ msgid "You must select a field\n"
829
+ msgstr "Você deve selecionar um campo\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 "Por favor escolha um tipo de campo diferente pois já existe um desses em seu formulário (ele deve ser único)\n"
834
+
835
+ #: ../admin/manage-fields.php:329
836
+ msgid "The entered avatar size is not between 20 and 200\n"
837
+ msgstr "O tamanho do avatar digitado não está entre 20 e 200\n"
838
+
839
+ #: ../admin/manage-fields.php:332
840
+ msgid "The entered avatar size is not numerical\n"
841
+ msgstr "O tamanho do avatar digitado não é numérico\n"
842
+
843
+ #: ../admin/manage-fields.php:340
844
+ msgid "The entered row number is not numerical\n"
845
+ msgstr "O número de linha digitado não é numérico\n"
846
+
847
+ #: ../admin/manage-fields.php:343
848
+ msgid "You must enter a value for the row number\n"
849
+ msgstr "Você deve digitar um valor para o número de linha\n"
850
+
851
+ #: ../admin/manage-fields.php:351
852
+ msgid "You must enter the public key\n"
853
+ msgstr "Você deve digitar a chave pública\n"
854
+
855
+ #: ../admin/manage-fields.php:353
856
+ msgid "You must enter the private key\n"
857
+ msgstr "Você deve digitar a chave privada\n"
858
+
859
+ #: ../admin/manage-fields.php:361
860
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
861
+ msgstr "O valor digitado para o Selecionador de Datas não está em um formato válido\n"
862
+
863
+ #: ../admin/manage-fields.php:364
864
+ msgid "You must enter a value for the date-format\n"
865
+ msgstr "Você deve digitar um valor para o formato de data\n"
866
+
867
+ #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
868
+ #: ../admin/manage-fields.php:410
869
+ msgid "That meta-name is already in use\n"
870
+ msgstr "O meta-name já está sendo usado\n"
871
+
872
+ #: ../admin/manage-fields.php:432
873
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
874
+ msgstr "A(s) seguinte(s) opção(es) não coincide com as da lista de opções: %s\n"
875
+
876
+ #: ../admin/manage-fields.php:436
877
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
878
+ msgstr "A seguinte opção não coincide com as da lista de opções: %s\n"
879
+
880
+ #: ../admin/manage-fields.php:451
881
+ msgid "That field is already added in this form\n"
882
+ msgstr "Esse campo já foi adicionado a esse formulário\n"
883
+
884
+ #: ../admin/manage-fields.php:500
885
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
886
+ msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Obrigatório</pre>"
887
+
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"
895
+
896
+ #: ../admin/manage-fields.php:500
897
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
898
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
899
+ #: ../features/admin-approval/class-admin-approval.php:124
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
+
907
+ #: ../admin/manage-fields.php:515
908
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
909
+ msgstr "Use esses shortcodes nas páginas que você quer que o formulário seja mostrado:"
910
+
911
+ #: ../admin/manage-fields.php:521
912
+ 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."
913
+ msgstr "Se você tem interesse em mostrar diferentes campos nos formulários de registro ou de perfil, por favor use os módulos de Registro Múltiplo & Editor de Formulários de Perfil"
914
+
915
+ #: ../admin/register-version.php:11
916
+ msgid "Register Your Version"
917
+ msgstr "Registre sua versão"
918
+
919
+ #: ../admin/register-version.php:11
920
+ msgid "Register Version"
921
+ msgstr "Registre a versão"
922
+
923
+ #: ../admin/register-version.php:58
924
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
925
+ msgstr "Se você registrar essa versão do Profile Builder, você receberá informações sobre upgrades, atualizações e suporte técnico."
926
+
927
+ #: ../admin/register-version.php:60
928
+ msgid " Serial Number:"
929
+ msgstr "Número de série:"
930
+
931
+ #: ../admin/register-version.php:65
932
+ msgid "The serial number was successfully validated!"
933
+ msgstr "O número de série foi validado com sucesso!"
934
+
935
+ #: ../admin/register-version.php:67
936
+ msgid "The serial number entered couldn't be validated!"
937
+ msgstr "O número de série digitado não pôde ser validado!"
938
+
939
+ #: ../admin/register-version.php:69
940
+ msgid "The serial number couldn't be validated because it expired!"
941
+ msgstr "O número de série não pôde ser validado porque encontra-se expirado!"
942
+
943
+ #: ../admin/register-version.php:71
944
+ 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!"
945
+ msgstr "O número de série não pôde ser validado pois o tempo foi esgotado. Isso pode ter acontecido por problemas no servidor. Por favor tente novamente mais tarde!"
946
+
947
+ #: ../admin/register-version.php:73
948
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
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
+
956
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
957
+ msgid "Edit this item"
958
+ msgstr "Editar esse item"
959
+
960
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
961
+ msgid "Delete this item"
962
+ msgstr "Deletar esse item"
963
+
964
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
965
+ msgid "Please enter a value for the required field "
966
+ msgstr "Por favor digite um valor para o campo obrigatório"
967
+
968
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
969
+ msgid "Select File"
970
+ msgstr "Selecionar Arquivo"
971
+
972
+ #: ../assets/lib/wck-api/fields/upload.php:31
973
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
974
+ msgid "Remove"
975
+ msgstr "Remover"
976
+
977
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
978
+ msgid "Syncronize WCK"
979
+ msgstr "Sincronizar WCK"
980
+
981
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
982
+ msgid "Syncronize WCK Translation"
983
+ msgstr "Sincronizar Tradução WCK"
984
+
985
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
986
+ msgid "You can add the information for the %s after you add a entry"
987
+ msgstr "Você pode adicionar a informação para %s depois de adicionar uma entrada"
988
+
989
+ #: ../assets/lib/wck-api/fields/upload.php:48
990
+ msgid "Upload "
991
+ msgstr "Upload "
992
+
993
+ #: ../features/class-list-table.php:184
994
+ msgid "No items found."
995
+ msgstr "Nenhum item encontrado."
996
+
997
+ #: ../features/class-list-table.php:308
998
+ msgid "Bulk Actions"
999
+ msgstr "Ações em massa"
1000
+
1001
+ #: ../features/class-list-table.php:318
1002
+ msgid "Apply"
1003
+ msgstr "Aplicar"
1004
+
1005
+ #: ../features/class-list-table.php:402
1006
+ msgid "Show all dates"
1007
+ msgstr "Mostrar todas as datas"
1008
+
1009
+ #: ../features/class-list-table.php:415
1010
+ msgid "%1$s %2$d"
1011
+ msgstr "%1$s %2$d"
1012
+
1013
+ #: ../features/class-list-table.php:431
1014
+ msgid "List View"
1015
+ msgstr "Visualizar Lista"
1016
+
1017
+ #: ../features/class-list-table.php:432
1018
+ msgid "Excerpt View"
1019
+ msgstr "Visualizar Resumo"
1020
+
1021
+ #: ../features/class-list-table.php:458
1022
+ msgid "%s pending"
1023
+ msgstr "%s pendente"
1024
+
1025
+ #: ../features/class-list-table.php:566
1026
+ msgid "%1$s of %2$s"
1027
+ msgstr "%1$s de %2$s"
1028
+
1029
+ #: ../features/class-list-table.php:713
1030
+ msgid "Select All"
1031
+ msgstr "Selecionar Tudo"
1032
+
1033
+ #: ../features/functions.php:193 ../features/functions.php:194
1034
+ msgid "Profile Builder"
1035
+ msgstr "Profile Builder"
1036
+
1037
+ #: ../features/functions.php:261
1038
+ msgid "The user-validation has failed - the avatar was not deleted!"
1039
+ msgstr "A validação do usuário falhou - o avatar não foi deletado!"
1040
+
1041
+ #: ../features/functions.php:272
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"
1052
+ msgstr "Aprovação do Admin"
1053
+
1054
+ #: ../features/admin-approval/admin-approval.php:22
1055
+ #: ../features/email-confirmation/email-confirmation.php:58
1056
+ msgid "Do you want to"
1057
+ msgstr "Você deseja"
1058
+
1059
+ #: ../features/admin-approval/admin-approval.php:45
1060
+ msgid "Your session has expired! Please refresh the page and try again"
1061
+ msgstr "Sua sessão expirou! Por favor atualize a página e tente novamente"
1062
+
1063
+ #: ../features/admin-approval/admin-approval.php:56
1064
+ msgid "User successfully approved!"
1065
+ msgstr "Usuário aprovado com sucesso!"
1066
+
1067
+ #: ../features/admin-approval/admin-approval.php:64
1068
+ msgid "User successfully unapproved!"
1069
+ msgstr "Usuário reprovado com sucesso!"
1070
+
1071
+ #: ../features/admin-approval/admin-approval.php:70
1072
+ msgid "User successfully deleted!"
1073
+ msgstr "Usuário deletado com sucesso!"
1074
+
1075
+ #: ../features/admin-approval/admin-approval.php:75
1076
+ #: ../features/admin-approval/admin-approval.php:140
1077
+ #: ../features/email-confirmation/email-confirmation.php:122
1078
+ msgid "You either don't have permission for that action or there was an error!"
1079
+ msgstr "Houve um erro ou então você não tem permissão para essa ação!"
1080
+
1081
+ #: ../features/admin-approval/admin-approval.php:87
1082
+ msgid "Your session has expired! Please refresh the page and try again."
1083
+ msgstr "Sua sessão expirou! Por favor atualize a página e tente novamente."
1084
+
1085
+ #: ../features/admin-approval/admin-approval.php:107
1086
+ msgid "Users successfully approved!"
1087
+ msgstr "Usuários aprovados com sucesso!"
1088
+
1089
+ #: ../features/admin-approval/admin-approval.php:122
1090
+ msgid "Users successfully unapproved!"
1091
+ msgstr "Usuários reprovados com sucesso!"
1092
+
1093
+ #: ../features/admin-approval/admin-approval.php:135
1094
+ msgid "Users successfully deleted!"
1095
+ msgstr "Usuários deletados com sucesso!"
1096
+
1097
+ #: ../features/admin-approval/admin-approval.php:150
1098
+ msgid "Your account on %1$s has been approved!"
1099
+ msgstr "Sua conta em %1$s foi aprovada!"
1100
+
1101
+ #: ../features/admin-approval/admin-approval.php:151
1102
+ #: ../features/admin-approval/admin-approval.php:154
1103
+ msgid "approved"
1104
+ msgstr "aprovado"
1105
+
1106
+ #: ../features/admin-approval/admin-approval.php:153
1107
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
1108
+ msgstr "O administrador acabou de aprovar sua conta em %1$s (%2$s)."
1109
+
1110
+ #: ../features/admin-approval/admin-approval.php:157
1111
+ msgid "Your account on %1$s has been unapproved!"
1112
+ msgstr "Sua conta em %1$s foi reprovada!"
1113
+
1114
+ #: ../features/admin-approval/admin-approval.php:158
1115
+ #: ../features/admin-approval/admin-approval.php:161
1116
+ msgid "unapproved"
1117
+ msgstr "reprovado"
1118
+
1119
+ #: ../features/admin-approval/admin-approval.php:160
1120
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1121
+ msgstr "O administrador acabou de reprovar sua conta em %1$s (%2$s)."
1122
+
1123
+ #: ../features/admin-approval/admin-approval.php:177
1124
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1125
+ msgstr "<strong>ERRO</strong>: Sua conta precisa ser confirmada pelo administrador antes de você fazer o login."
1126
+
1127
+ #: ../features/admin-approval/admin-approval.php:189
1128
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1129
+ msgstr "Sua conta precisa ser confirmada pelo administrador antes de você poder usar a função de \"Recuperação de Password\""
1130
+
1131
+ #: ../features/admin-approval/class-admin-approval.php:119
1132
+ msgid "View or Edit"
1133
+ msgstr "Visualizar ou Editar"
1134
+
1135
+ #: ../features/admin-approval/class-admin-approval.php:124
1136
+ msgid "delete this user?"
1137
+ msgstr "deletar esse usuário?"
1138
+
1139
+ #: ../features/admin-approval/class-admin-approval.php:127
1140
+ msgid "unapprove this user?"
1141
+ msgstr "reprovar esse usuário?"
1142
+
1143
+ #: ../features/admin-approval/class-admin-approval.php:127
1144
+ #: ../features/admin-approval/class-admin-approval.php:234
1145
+ msgid "Unapprove"
1146
+ msgstr "Reprovar"
1147
+
1148
+ #: ../features/admin-approval/class-admin-approval.php:129
1149
+ msgid "approve this user?"
1150
+ msgstr "aprovar esse usuário?"
1151
+
1152
+ #: ../features/admin-approval/class-admin-approval.php:129
1153
+ #: ../features/admin-approval/class-admin-approval.php:233
1154
+ msgid "Approve"
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
+
1169
+ #: ../features/admin-approval/class-admin-approval.php:181
1170
+ #: ../modules/user-listing/userlisting.php:117
1171
+ msgid "Role"
1172
+ msgstr "Função"
1173
+
1174
+ #: ../features/admin-approval/class-admin-approval.php:182
1175
+ #: ../features/email-confirmation/class-email-confirmation.php:155
1176
+ msgid "Registered"
1177
+ msgstr "Registrado"
1178
+
1179
+ #: ../features/admin-approval/class-admin-approval.php:183
1180
+ msgid "User-status"
1181
+ msgstr "Status do usuário"
1182
+
1183
+ #: ../features/admin-approval/class-admin-approval.php:263
1184
+ msgid "Do you want to bulk approve the selected users?"
1185
+ msgstr "Você deseja aprovar em massa os usuários selecionados?"
1186
+
1187
+ #: ../features/admin-approval/class-admin-approval.php:271
1188
+ msgid "Do you want to bulk unapprove the selected users?"
1189
+ msgstr "Você deseja reprovar em massa os usuários selecionados?"
1190
+
1191
+ #: ../features/admin-approval/class-admin-approval.php:277
1192
+ msgid "Do you want to bulk delete the selected users?"
1193
+ msgstr "Você deseja deletar em massa os usuários selecionados?"
1194
+
1195
+ #: ../features/admin-approval/class-admin-approval.php:285
1196
+ #: ../features/email-confirmation/class-email-confirmation.php:263
1197
+ msgid "Sorry, but you don't have permission to do that!"
1198
+ msgstr "Desculpe, mas você não tem permissão para fazer isso!"
1199
+
1200
+ #: ../features/admin-approval/class-admin-approval.php:318
1201
+ msgid "Approved"
1202
+ msgstr "Aprovado"
1203
+
1204
+ #: ../features/admin-approval/class-admin-approval.php:320
1205
+ msgid "Unapproved"
1206
+ msgstr "Reprovado"
1207
+
1208
+ #: ../features/admin-approval/class-admin-approval.php:492
1209
+ #: ../features/email-confirmation/class-email-confirmation.php:448
1210
+ msgid "All Users"
1211
+ msgstr "Todos os usuários"
1212
+
1213
+ #: ../features/email-confirmation/class-email-confirmation.php:106
1214
+ msgid "delete this user from the _signups table?"
1215
+ msgstr "deletar esse usuário da tabela _signups?"
1216
+
1217
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1218
+ msgid "confirm this email yourself?"
1219
+ msgstr "confirma esse seu email?"
1220
+
1221
+ #: ../features/email-confirmation/class-email-confirmation.php:107
1222
+ #: ../features/email-confirmation/class-email-confirmation.php:203
1223
+ msgid "Confirm Email"
1224
+ msgstr "Confirmar Email"
1225
+
1226
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1227
+ msgid "resend the activation link?"
1228
+ msgstr "reenviar o link de atiavação?"
1229
+
1230
+ #: ../features/email-confirmation/class-email-confirmation.php:108
1231
+ #: ../features/email-confirmation/class-email-confirmation.php:204
1232
+ msgid "Resend Activation Email"
1233
+ msgstr "Reenviar o email de ativação"
1234
+
1235
+ #: ../features/email-confirmation/class-email-confirmation.php:234
1236
+ msgid "%s couldn't be deleted"
1237
+ msgstr "%s não pôde ser deletado"
1238
+
1239
+ #: ../features/email-confirmation/class-email-confirmation.php:238
1240
+ msgid "All users have been successfully deleted"
1241
+ msgstr "Todos os usuários foram deletados com sucesso"
1242
+
1243
+ #: ../features/email-confirmation/class-email-confirmation.php:248
1244
+ msgid "The selected users have been activated"
1245
+ msgstr "Os usuários selecionados foram ativados"
1246
+
1247
+ #: ../features/email-confirmation/class-email-confirmation.php:259
1248
+ msgid "The selected users have had their activation emails resent"
1249
+ msgstr "Os usuários selecionados tiveram seus emails de ativação reenviados"
1250
+
1251
+ #: ../features/email-confirmation/class-email-confirmation.php:445
1252
+ #: ../features/email-confirmation/email-confirmation.php:47
1253
+ msgid "Users with Unconfirmed Email Address"
1254
+ msgstr "Usuários com endereço de email não confirmados"
1255
+
1256
+ #: ../features/email-confirmation/email-confirmation.php:97
1257
+ msgid "There was an error performing that action!"
1258
+ msgstr "Houve um erro executando essa ação!"
1259
+
1260
+ #: ../features/email-confirmation/email-confirmation.php:105
1261
+ msgid "The selected user couldn't be deleted"
1262
+ msgstr "O usuário selecionado não pôde ser deletado"
1263
+
1264
+ #: ../features/email-confirmation/email-confirmation.php:116
1265
+ msgid "Email notification resent to user"
1266
+ msgstr "Email de notificação reenviado ao usuário"
1267
+
1268
+ #: ../features/email-confirmation/email-confirmation.php:349
1269
+ msgid "[%1$s] Activate %2$s"
1270
+ msgstr "[%1$s] Ativar %2$s"
1271
+
1272
+ #: ../features/email-confirmation/email-confirmation.php:350
1273
+ msgid ""
1274
+ "To activate your user, please click the following link:\n"
1275
+ "\n"
1276
+ "%s%s%s\n"
1277
+ "\n"
1278
+ "After you activate it you will receive yet *another email* with your login."
1279
+ msgstr ""
1280
+ "Para ativar o usuário, por favor clique no seguinte link:\n"
1281
+ "\n"
1282
+ "%s%s%s\n"
1283
+ "\n"
1284
+ "Depois de ativar, você ainda receberá um outro email com o seu login."
1285
+
1286
+ #: ../features/email-confirmation/email-confirmation.php:388
1287
+ #: ../front-end/register.php:68
1288
+ msgid "Could not create user!"
1289
+ msgstr "Usuário não pôde ser criado!"
1290
+
1291
+ #: ../features/email-confirmation/email-confirmation.php:391
1292
+ msgid "That username is already activated!"
1293
+ msgstr "O usuário já está ativado!"
1294
+
1295
+ #: ../features/email-confirmation/email-confirmation.php:420
1296
+ msgid "There was an error while trying to activate the user"
1297
+ msgstr "Houve um erro na tentativa de ativar o usuário"
1298
+
1299
+ #: ../features/email-confirmation/email-confirmation.php:458
1300
+ #: ../modules/email-customizer/admin-email-customizer.php:73
1301
+ msgid "A new subscriber has (been) registered!"
1302
+ msgstr "Um novo assinante foi registrado!"
1303
+
1304
+ #: ../features/email-confirmation/email-confirmation.php:461
1305
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1306
+ msgstr "Novo assinante em %1$s.<br/><br/>Usuário:%2$s<br/>E-mail:%3$s<br/>"
1307
+
1308
+ #: ../features/email-confirmation/email-confirmation.php:466
1309
+ 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!"
1310
+ msgstr "A função de \"Aprovação do Admin\" estava ativada no momento do registro então por favor lembre-se de que precisa aprovar esse usuário antes dele/dela fazer o login!"
1311
+
1312
+ #: ../features/email-confirmation/email-confirmation.php:481
1313
+ msgid "[%1$s] Your new account information"
1314
+ msgstr "[%1$s] Informações de sua nova conta"
1315
+
1316
+ #: ../features/email-confirmation/email-confirmation.php:484
1317
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1318
+ msgstr "Bemvindo ao %1$s!<br/><br/><br/>Seu usuário é::%2$s e password:%3$s"
1319
+
1320
+ #: ../features/email-confirmation/email-confirmation.php:489
1321
+ #: ../front-end/register.php:103
1322
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1323
+ msgstr "Antes de acessar sua conta, ela precisa ser aprovada pelo administrador. Você será notificado via email quando isso acontecer."
1324
+
1325
+ #: ../features/login-widget/login-widget.php:10
1326
+ msgid "This login widget lets you add a login form in the sidebar."
1327
+ msgstr "Esse widget de login permite adicionar um formulário de login na barra lateral."
1328
+
1329
+ #: ../features/login-widget/login-widget.php:15
1330
+ msgid "Profile Builder Login Widget"
1331
+ msgstr "Widget de Login Profile Builder"
1332
+
1333
+ #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1334
+ msgid "Register"
1335
+ msgstr "Registrar"
1336
+
1337
+ #: ../features/login-widget/login-widget.php:63
1338
+ msgid "Title:"
1339
+ msgstr "Título:"
1340
+
1341
+ #: ../features/login-widget/login-widget.php:68
1342
+ msgid "After login redirect URL (optional):"
1343
+ msgstr "URL para redirecionar após login (opcional):"
1344
+
1345
+ #: ../features/login-widget/login-widget.php:73
1346
+ msgid "Register page URL (optional):"
1347
+ msgstr "ULR da página de registro (opcional):"
1348
+
1349
+ #: ../features/login-widget/login-widget.php:78
1350
+ msgid "Password Recovery page URL (optional):"
1351
+ msgstr "URL da página de recuperação de password (opcional):"
1352
+
1353
+ #: ../features/upgrades/upgrades-functions.php:91
1354
+ #: ../features/upgrades/upgrades-functions.php:134
1355
+ msgid "The usernames cannot be changed."
1356
+ msgstr "Os nomes de usuários não podem ser mudados."
1357
+
1358
+ #: ../front-end/class-formbuilder.php:83
1359
+ msgid "Only an administrator can add new users."
1360
+ msgstr "Somente o administrador pode adicionar novos usuários."
1361
+
1362
+ #: ../front-end/class-formbuilder.php:93
1363
+ msgid "Users can register themselves or you can manually create users here."
1364
+ msgstr "Usuários podem se registrar ou você pode criá-los manualmente aqui."
1365
+
1366
+ #: ../front-end/class-formbuilder.php:96
1367
+ msgid "Users cannot currently register themselves, but you can manually create users here."
1368
+ msgstr "Usuários não podem atualmente se registrarem, mas você pode criá-los manualmente aqui."
1369
+
1370
+ #: ../front-end/class-formbuilder.php:108
1371
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
1372
+ msgstr "Você já está logado como %1s. Você não precisa de outra conta. %2s"
1373
+
1374
+ #: ../front-end/class-formbuilder.php:108
1375
+ msgid "Log out of this account."
1376
+ msgstr "Desconectar dessa conta."
1377
+
1378
+ #: ../front-end/class-formbuilder.php:108
1379
+ msgid "Logout"
1380
+ msgstr "Desconectar"
1381
+
1382
+ #: ../front-end/class-formbuilder.php:114
1383
+ msgid "You must be logged in to edit your profile."
1384
+ msgstr "Você deve estar logado para editar seu perfil."
1385
+
1386
+ #: ../front-end/class-formbuilder.php:137
1387
+ msgid "here"
1388
+ msgstr "aqui"
1389
+
1390
+ #: ../front-end/class-formbuilder.php:139
1391
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1392
+ msgstr "Você será redirecionado automaticamente em instantes. Se você visualizar essa página por mais de %1$d segundos, por favor clique %2$s.%3$s"
1393
+
1394
+ #: ../front-end/class-formbuilder.php:224
1395
+ msgid "The account %1s has been successfully created!"
1396
+ msgstr "A conta %1s foi criada com sucesso!"
1397
+
1398
+ #: ../front-end/class-formbuilder.php:227
1399
+ #: ../front-end/class-formbuilder.php:233
1400
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1401
+ msgstr "Antes de acessar sua conta %1s, você precisa confirmar seu endereço de email. Por favor cheque o seu inbox e clique no link de ativação."
1402
+
1403
+ #: ../front-end/class-formbuilder.php:230
1404
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1405
+ msgstr "Antes de acessar sua conta %1s, um administrador precisa aprová-la. Você será notificado via email quando isso acontecer."
1406
+
1407
+ #: ../front-end/class-formbuilder.php:243
1408
+ msgid "Your profile has been successfully updated!"
1409
+ msgstr "Seu perfil foi atualizado com sucesso!"
1410
+
1411
+ #: ../front-end/class-formbuilder.php:253
1412
+ msgid "There was an error in the submitted form"
1413
+ msgstr "Houve um erro no formulário enviado"
1414
+
1415
+ #: ../front-end/class-formbuilder.php:274
1416
+ msgid "Add User"
1417
+ msgstr "Adicionar usuário"
1418
+
1419
+ #: ../front-end/class-formbuilder.php:277
1420
+ msgid "Update"
1421
+ msgstr "Atualizar"
1422
+
1423
+ #: ../front-end/class-formbuilder.php:314
1424
+ #: ../front-end/extra-fields/extra-fields.php:33
1425
+ msgid "The avatar was successfully deleted!"
1426
+ msgstr "O avatar foi deletado com sucesso!"
1427
+
1428
+ #: ../front-end/class-formbuilder.php:314
1429
+ #: ../front-end/extra-fields/extra-fields.php:35
1430
+ msgid "The following attachment was successfully deleted:"
1431
+ msgstr "O seguinte anexo foi deletado com sucesso:"
1432
+
1433
+ #: ../front-end/class-formbuilder.php:326
1434
+ msgid "Send these credentials via email."
1435
+ msgstr "Enviar essas credenciais via email."
1436
+
1437
+ #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1438
+ #: ../front-end/login.php:79 ../front-end/login.php:89
1439
+ #: ../front-end/recover.php:17 ../front-end/recover.php:206
1440
+ msgid "ERROR"
1441
+ msgstr "ERRO"
1442
+
1443
+ #: ../front-end/login.php:72
1444
+ msgid "The password you entered is incorrect."
1445
+ msgstr "O password digitado está incorreto."
1446
+
1447
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1448
+ msgid "Password Lost and Found."
1449
+ msgstr "Password Achados e Perdidos."
1450
+
1451
+ #: ../front-end/login.php:73 ../front-end/login.php:80
1452
+ msgid "Lost your password"
1453
+ msgstr "Perdeu seu password"
1454
+
1455
+ #: ../front-end/login.php:89
1456
+ msgid "Both fields are empty."
1457
+ msgstr "Ambos os campos estão vazios."
1458
+
1459
+ #: ../front-end/login.php:199
1460
+ msgid "You are currently logged in as %1$s. %2$s"
1461
+ msgstr "Você está logado como %1$s. %2$s"
1462
+
1463
+ #: ../front-end/login.php:199
1464
+ msgid "Log out of this account"
1465
+ msgstr "Desconectar dessa conta"
1466
+
1467
+ #: ../front-end/login.php:199
1468
+ msgid "Log out"
1469
+ msgstr "Desconectar"
1470
+
1471
+ #: ../front-end/recover.php:17
1472
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1473
+ msgstr "Sua conta precisa ser confirmada pelo administrador antes de você poder usar a função de \"Resetar Password\""
1474
+
1475
+ #: ../front-end/recover.php:91
1476
+ msgid "Reset Password"
1477
+ msgstr "Resetar Password"
1478
+
1479
+ #: ../front-end/recover.php:111
1480
+ msgid "Please enter your username or email address."
1481
+ msgstr "Por favor digite seu usuário ou email."
1482
+
1483
+ #: ../front-end/recover.php:112
1484
+ msgid "You will receive a link to create a new password via email."
1485
+ msgstr "Você receberá um link para criar um novo password via email."
1486
+
1487
+ #: ../front-end/recover.php:119
1488
+ msgid "Username or E-mail"
1489
+ msgstr "Usuário ou E-mail"
1490
+
1491
+ #: ../front-end/recover.php:125
1492
+ msgid "Get New Password"
1493
+ msgstr "Criar novo password"
1494
+
1495
+ #: ../front-end/recover.php:164
1496
+ msgid "The username entered wasn't found in the database!"
1497
+ msgstr "O usuário digitado não foi encontrado na base de dados!"
1498
+
1499
+ #: ../front-end/recover.php:164
1500
+ msgid "Please check that you entered the correct username."
1501
+ msgstr "Por favor confirme se você digitou o usuário corretamente."
1502
+
1503
+ #: ../front-end/recover.php:179
1504
+ msgid "Check your e-mail for the confirmation link."
1505
+ msgstr "Cheque seu e-mail para o link de confirmação."
1506
+
1507
+ #: ../front-end/recover.php:194
1508
+ 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"
1509
+ msgstr "Alguém solicitou que o reset do password da seguinte conta:<b>%1$s</b><br/>Se isso foi um erro, apenas ignore esse email e nada acontecerá.<br/>Para resetar seu password, visite o seguinte link:%2$s"
1510
+
1511
+ #: ../front-end/recover.php:197
1512
+ msgid "Password Reset from \"%1$s\""
1513
+ msgstr "Reset do password de \"%1$s\""
1514
+
1515
+ #: ../front-end/recover.php:206
1516
+ msgid "There was an error while trying to send the activation link to %1$s!"
1517
+ msgstr "Houve um erro na tentativa de enviar o link de ativação para %1$s!"
1518
+
1519
+ #: ../front-end/recover.php:215
1520
+ msgid "The email address entered wasn't found in the database!"
1521
+ msgstr "O endereço de email não foi encontrado na base de dados!"
1522
+
1523
+ #: ../front-end/recover.php:215
1524
+ msgid "Please check that you entered the correct email address."
1525
+ msgstr "Por favor cheque se você digitou o endereço de email corretamente."
1526
+
1527
+ #: ../front-end/default-fields/password/password.php:44
1528
+ #: ../front-end/recover.php:231
1529
+ msgid "<br/>The password must have the minimum length of "
1530
+ msgstr "<br/>O password deve ter o tamanho mínimo de"
1531
+
1532
+ #: ../front-end/default-fields/password/password.php:48
1533
+ #: ../front-end/recover.php:235
1534
+ msgid "<br/>The password must have a minimum strength of "
1535
+ msgstr "<br/>O password deve ter a força mínima de"
1536
+
1537
+ #: ../front-end/recover.php:242
1538
+ msgid "Your password has been successfully changed!"
1539
+ msgstr "Seu password foi alterado com sucesso!"
1540
+
1541
+ #: ../front-end/recover.php:256
1542
+ msgid "You have successfully reset your password to: %1$s"
1543
+ msgstr "Você resetou com sucesso o password de: %1$s"
1544
+
1545
+ #: ../front-end/recover.php:259 ../front-end/recover.php:273
1546
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
1547
+ msgstr "Password resetado com sucesso para %1$s em \"%2$s\""
1548
+
1549
+ #: ../front-end/recover.php:270
1550
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1551
+ msgstr "%1$s solicitou uma alteração de password através da função de reset de password.<br/>Seu novo password é:%2$s"
1552
+
1553
+ #: ../front-end/recover.php:289
1554
+ msgid "The entered passwords don't match!"
1555
+ msgstr "Os passwords digitados não conferem!"
1556
+
1557
+ #: ../front-end/recover.php:334
1558
+ msgid "ERROR:"
1559
+ msgstr "ERRO:"
1560
+
1561
+ #: ../front-end/recover.php:334
1562
+ msgid "Invalid key!"
1563
+ msgstr "Chave inválida!"
1564
+
1565
+ #: ../front-end/register.php:46
1566
+ msgid "Invalid activation key!"
1567
+ msgstr "Chave de ativação inválida!"
1568
+
1569
+ #: ../front-end/register.php:50
1570
+ msgid "This username is now active!"
1571
+ msgstr "Esse usuário está ativo!"
1572
+
1573
+ #: ../front-end/register.php:71
1574
+ msgid "This username is already activated!"
1575
+ msgstr "Esse usuário já está ativado!"
1576
+
1577
+ #: ../front-end/register.php:102
1578
+ msgid "Your email was successfully confirmed."
1579
+ msgstr "Seu email foi confirmado com sucesso."
1580
+
1581
+ #: ../front-end/register.php:112
1582
+ msgid "There was an error while trying to activate the user."
1583
+ msgstr "Houve um erro na tentativa de ativar o usuário."
1584
+
1585
+ #: ../front-end/default-fields/email/email.php:42
1586
+ msgid "The email you entered is not a valid email address."
1587
+ msgstr "O email digitado não é um endereço válido."
1588
+
1589
+ #: ../front-end/default-fields/email/email.php:49
1590
+ msgid "This email is already reserved to be used soon."
1591
+ msgstr "Esse email está reservado para ser usado em breve."
1592
+
1593
+ #: ../front-end/default-fields/email/email.php:49
1594
+ #: ../front-end/default-fields/email/email.php:55
1595
+ #: ../front-end/default-fields/email/email.php:62
1596
+ #: ../front-end/default-fields/username/username.php:44
1597
+ #: ../front-end/default-fields/username/username.php:51
1598
+ msgid "Please try a different one!"
1599
+ msgstr "Por favor tente um diferente!"
1600
+
1601
+ #: ../front-end/default-fields/email/email.php:55
1602
+ #: ../front-end/default-fields/email/email.php:62
1603
+ msgid "This email is already in use."
1604
+ msgstr "Esse email já está sendo usado."
1605
+
1606
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1607
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1608
+ msgid "The passwords do not match"
1609
+ msgstr "Os passwords não conferem"
1610
+
1611
+ #: ../front-end/default-fields/username/username.php:44
1612
+ msgid "This username already exists."
1613
+ msgstr "Esse usuário já existe."
1614
+
1615
+ #: ../front-end/default-fields/username/username.php:51
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
1661
+ #: ../front-end/extra-fields/input/input.php:28
1662
+ #: ../front-end/extra-fields/radio/radio.php:42
1663
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1664
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1665
+ #: ../front-end/extra-fields/select/select.php:44
1666
+ #: ../front-end/extra-fields/textarea/textarea.php:28
1667
+ #: ../front-end/extra-fields/upload/upload.php:62
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
+
1728
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1729
+ msgid "Could not open socket!"
1730
+ msgstr "Não foi possível abrir o socket!"
1731
+
1732
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1733
+ msgid "To use reCAPTCHA you must get an API key from"
1734
+ msgstr "Para usar o reCAPTCHA você deve ter uma chave API de"
1735
+
1736
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1737
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1738
+ msgstr "Por motivos de segurança, você deve passar o IP remoto para o reCAPTCHA!"
1739
+
1740
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1741
+ msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1742
+ msgstr "Para usar o reCAPTCHA Mailhide, você precisa ter o módulo php mcrypt instalado!"
1743
+
1744
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1745
+ msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1746
+ msgstr "Para usar o reCAPTCHA Mailhide, você precisa se cadastrar para ter uma chave pública e privada; você pode fazer isso em"
1747
+
1748
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1749
+ msgid "To use reCAPTCHA you must get an API public key from:"
1750
+ msgstr "Para usar o reCAPTCHA você deve ter uma chave API pública de:"
1751
+
1752
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1753
+ msgid "To use reCAPTCHA you must get an API private key from:"
1754
+ msgstr "Para usar o reCAPTCHA você deve ter uma chave API privada de:"
1755
+
1756
+ #: ../front-end/extra-fields/upload/upload.php:35
1757
+ msgid "Current file: No uploaded attachment"
1758
+ msgstr "Arquivo atual: Nenhum anexo carregado"
1759
+
1760
+ #: ../front-end/extra-fields/upload/upload.php:39
1761
+ #: ../front-end/extra-fields/upload/upload.php:48
1762
+ #: ../front-end/extra-fields/upload/upload.php:71
1763
+ #: ../front-end/extra-fields/upload/upload.php:75
1764
+ #: ../front-end/extra-fields/upload/upload.php:77
1765
+ msgid "Current file"
1766
+ msgstr "Arquivo atual"
1767
+
1768
+ #: ../front-end/extra-fields/upload/upload.php:42
1769
+ #: ../front-end/extra-fields/upload/upload.php:51
1770
+ #: ../front-end/extra-fields/upload/upload.php:75
1771
+ #: ../front-end/extra-fields/upload/upload.php:77
1772
+ msgid "Click to see the current attachment"
1773
+ msgstr "Clique para ver o anexo atual"
1774
+
1775
+ #: ../front-end/extra-fields/upload/upload.php:44
1776
+ #: ../front-end/extra-fields/upload/upload.php:75
1777
+ msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1778
+ msgstr "O anexo não pode ser deletado (definido como obrigatório pelo administrador)"
1779
+
1780
+ #: ../front-end/extra-fields/upload/upload.php:53
1781
+ #: ../front-end/extra-fields/upload/upload.php:77
1782
+ msgid "Are you sure you want to delete this attachment?"
1783
+ msgstr "Você tem certeza que deseja deletar esse anexo?"
1784
+
1785
+ #: ../front-end/extra-fields/upload/upload.php:54
1786
+ #: ../front-end/extra-fields/upload/upload.php:77
1787
+ msgid "Click to delete the current attachment"
1788
+ msgstr "Clique para deletar o anexo atual"
1789
+
1790
+ #: ../front-end/extra-fields/upload/upload.php:71
1791
+ msgid "No uploaded attachment"
1792
+ msgstr "Nenhum anexo carregado"
1793
+
1794
+ #: ../front-end/extra-fields/upload/upload.php:164
1795
+ msgid "The extension of the file is not allowed"
1796
+ msgstr "A extensão do arquivo não é permitida"
1797
+
1798
+ #: ../front-end/extra-fields/upload/upload.php:186
1799
+ msgid "The file could only partially be uploaded"
1800
+ msgstr "O arquivo pode ser apenas parcialmente carregado"
1801
+
1802
+ #: ../front-end/extra-fields/upload/upload.php:201
1803
+ msgid "This field wasn't updated because an unknown error occured"
1804
+ msgstr "Esse campo não foi atualizado pois houve um erro desconhecido"
1805
+
1806
+ #: ../modules/modules.php:11 ../modules/modules.php:80
1807
+ msgid "Modules"
1808
+ msgstr "Módulos"
1809
+
1810
+ #: ../modules/modules.php:81
1811
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
1812
+ msgstr "Aqui você pode ativar/desativar os módulos disponíveis para o Profile Builder."
1813
+
1814
+ #: ../modules/modules.php:91
1815
+ msgid "Name/Description"
1816
+ msgstr "Nome/Descrição"
1817
+
1818
+ #: ../modules/modules.php:92
1819
+ msgid "Status"
1820
+ msgstr "Status"
1821
+
1822
+ #: ../modules/custom-redirects/custom-redirects.php:48
1823
+ #: ../modules/custom-redirects/custom-redirects.php:58
1824
+ #: ../modules/custom-redirects/custom-redirects.php:68
1825
+ #: ../modules/custom-redirects/custom-redirects.php:94
1826
+ #: ../modules/custom-redirects/custom-redirects.php:104
1827
+ #: ../modules/custom-redirects/custom-redirects.php:114
1828
+ #: ../modules/custom-redirects/custom-redirects.php:124
1829
+ #: ../modules/modules.php:99 ../modules/modules.php:106
1830
+ #: ../modules/modules.php:113 ../modules/modules.php:120
1831
+ #: ../modules/modules.php:127 ../modules/modules.php:134
1832
+ msgid "Active"
1833
+ msgstr "Ativo"
1834
+
1835
+ #: ../modules/custom-redirects/custom-redirects.php:49
1836
+ #: ../modules/custom-redirects/custom-redirects.php:59
1837
+ #: ../modules/custom-redirects/custom-redirects.php:69
1838
+ #: ../modules/custom-redirects/custom-redirects.php:95
1839
+ #: ../modules/custom-redirects/custom-redirects.php:105
1840
+ #: ../modules/custom-redirects/custom-redirects.php:115
1841
+ #: ../modules/custom-redirects/custom-redirects.php:125
1842
+ #: ../modules/modules.php:100 ../modules/modules.php:107
1843
+ #: ../modules/modules.php:114 ../modules/modules.php:121
1844
+ #: ../modules/modules.php:128 ../modules/modules.php:135
1845
+ msgid "Inactive"
1846
+ msgstr "Inativo"
1847
+
1848
+ #: ../modules/email-customizer/admin-email-customizer.php:11
1849
+ #: ../modules/email-customizer/admin-email-customizer.php:12
1850
+ #: ../modules/modules.php:118
1851
+ msgid "Admin Email Customizer"
1852
+ msgstr "Customizador do Email Admin"
1853
+
1854
+ #: ../modules/email-customizer/user-email-customizer.php:11
1855
+ #: ../modules/email-customizer/user-email-customizer.php:12
1856
+ #: ../modules/modules.php:125
1857
+ msgid "User Email Customizer"
1858
+ msgstr "Customizador do Email do Usuário"
1859
+
1860
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1861
+ msgid "Save"
1862
+ msgstr "Salvar"
1863
+
1864
+ #: ../modules/custom-redirects/custom-redirects.php:35
1865
+ msgid "Redirects on custom page requests:"
1866
+ msgstr "Redireciona na solicitação de página customizada"
1867
+
1868
+ #: ../modules/custom-redirects/custom-redirects.php:39
1869
+ #: ../modules/custom-redirects/custom-redirects.php:85
1870
+ msgid "Action"
1871
+ msgstr "Ação"
1872
+
1873
+ #: ../modules/custom-redirects/custom-redirects.php:40
1874
+ #: ../modules/custom-redirects/custom-redirects.php:86
1875
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
1876
+ #: ../modules/multiple-forms/register-forms.php:230
1877
+ msgid "Redirect"
1878
+ msgstr "Redireciona"
1879
+
1880
+ #: ../modules/custom-redirects/custom-redirects.php:41
1881
+ #: ../modules/custom-redirects/custom-redirects.php:87
1882
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
1883
+ #: ../modules/multiple-forms/register-forms.php:232
1884
+ msgid "URL"
1885
+ msgstr "URL"
1886
+
1887
+ #: ../modules/custom-redirects/custom-redirects.php:46
1888
+ msgid "After Registration:"
1889
+ msgstr "Pós registro:"
1890
+
1891
+ #: ../modules/custom-redirects/custom-redirects.php:56
1892
+ msgid "After Login:"
1893
+ msgstr "Pós Login:"
1894
+
1895
+ #: ../modules/custom-redirects/custom-redirects.php:66
1896
+ msgid "Recover Password (*)"
1897
+ msgstr "Recuperar Password (*)"
1898
+
1899
+ #: ../modules/custom-redirects/custom-redirects.php:77
1900
+ 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."
1901
+ msgstr "Quando essa função estiver ativada, o usuário será redirecionado tanto da página padrão do WordPress quanto do link \"Perdeu seu password?\" para a página de login usada pelo Profile Builder."
1902
+
1903
+ #: ../modules/custom-redirects/custom-redirects.php:81
1904
+ msgid "Redirects on default WordPress page requests:"
1905
+ msgstr "Redireciona na solicitação de página padrão do WordPress:"
1906
+
1907
+ #: ../modules/custom-redirects/custom-redirects.php:92
1908
+ msgid "Default WordPress Login Page"
1909
+ msgstr "Página de Login Padrão do WordPress"
1910
+
1911
+ #: ../modules/custom-redirects/custom-redirects.php:102
1912
+ msgid "Default WordPress Logout Page"
1913
+ msgstr "Página de Logout Padrão do WordPress"
1914
+
1915
+ #: ../modules/custom-redirects/custom-redirects.php:112
1916
+ msgid "Default WordPress Register Page"
1917
+ msgstr "Página de Registro Padrão do WordPress"
1918
+
1919
+ #: ../modules/custom-redirects/custom-redirects.php:122
1920
+ msgid "Default WordPress Dashboard (*)"
1921
+ msgstr "Dashboard Padrão do WordPress (*)"
1922
+
1923
+ #: ../modules/custom-redirects/custom-redirects.php:133
1924
+ msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1925
+ msgstr "Redireciona todas as funções EXCETO aquelas com privilégios de administrador (pode gerenciar opções)."
1926
+
1927
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1928
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1929
+ msgstr "Essas configurações também são replicadas na página de configurações do \"Customizador de Emails do Usuário\" após serem salvas."
1930
+
1931
+ #: ../modules/email-customizer/admin-email-customizer.php:41
1932
+ #: ../modules/email-customizer/user-email-customizer.php:41
1933
+ msgid "From (name)"
1934
+ msgstr "De (nome)"
1935
+
1936
+ #: ../modules/email-customizer/admin-email-customizer.php:49
1937
+ #: ../modules/email-customizer/user-email-customizer.php:49
1938
+ msgid "From (reply-to email)"
1939
+ msgstr "De (email de resposta)"
1940
+
1941
+ #: ../modules/email-customizer/admin-email-customizer.php:57
1942
+ #: ../modules/email-customizer/user-email-customizer.php:57
1943
+ msgid "Common Settings"
1944
+ msgstr "Configurações comuns"
1945
+
1946
+ #: ../modules/email-customizer/admin-email-customizer.php:60
1947
+ msgid ""
1948
+ "\n"
1949
+ "<p>New subscriber on {{site_name}}.</p>\n"
1950
+ "<p>Username:{{username}}</p>\n"
1951
+ "<p>E-mail:{{user_email}}</p>\n"
1952
+ msgstr ""
1953
+ "\n"
1954
+ "<p>New subscriber on {{site_name}}.</p>\n"
1955
+ "<p>Username:{{username}}</p>\n"
1956
+ "<p>E-mail:{{user_email}}</p>\n"
1957
+
1958
+ #: ../modules/email-customizer/admin-email-customizer.php:69
1959
+ #: ../modules/email-customizer/admin-email-customizer.php:99
1960
+ #: ../modules/email-customizer/user-email-customizer.php:71
1961
+ #: ../modules/email-customizer/user-email-customizer.php:99
1962
+ #: ../modules/email-customizer/user-email-customizer.php:128
1963
+ #: ../modules/email-customizer/user-email-customizer.php:155
1964
+ #: ../modules/email-customizer/user-email-customizer.php:183
1965
+ msgid "Email Subject"
1966
+ msgstr "Assunto do Email"
1967
+
1968
+ #: ../modules/email-customizer/admin-email-customizer.php:84
1969
+ msgid "Default Registration & Registration with Email Confirmation"
1970
+ msgstr "Registro padrão & Registro com confirmação de email"
1971
+
1972
+ #: ../modules/email-customizer/admin-email-customizer.php:87
1973
+ msgid ""
1974
+ "\n"
1975
+ "<p>New subscriber on {{site_name}}.</p>\n"
1976
+ "<p>Username:{{username}}</p>\n"
1977
+ "<p>E-mail:{{user_email}}</p>\n"
1978
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
1979
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
1980
+ msgstr ""
1981
+ "\n"
1982
+ "\n"
1983
+ "<p>Novo assinante em {{site_name}}.</p>\n"
1984
+ "<p>Usuário:{{username}}</p>\n"
1985
+ "<p>E-mail:{{user_email}}</p>\n"
1986
+ "<p>A função de Aprovação do Admin estava ativada no momento do registro,\n"
1987
+ "então por favor lembre-se que você precisa aprovar esse usuário para que ele possa fazer o login!</p>\n"
1988
+
1989
+ #: ../modules/email-customizer/admin-email-customizer.php:114
1990
+ #: ../modules/email-customizer/user-email-customizer.php:143
1991
+ msgid "Registration with Admin Approval"
1992
+ msgstr "Registro com aprovação do admin"
1993
+
1994
+ #: ../modules/email-customizer/email-customizer.php:7
1995
+ msgid "Available Tags"
1996
+ msgstr "Tags disponíveis"
1997
+
1998
+ #: ../modules/email-customizer/email-customizer.php:11
1999
+ msgid "User Meta"
2000
+ msgstr "Meta User"
2001
+
2002
+ #: ../modules/email-customizer/email-customizer.php:21
2003
+ msgid "Site Url"
2004
+ msgstr "URL do site"
2005
+
2006
+ #: ../modules/email-customizer/email-customizer.php:22
2007
+ msgid "Site Name"
2008
+ msgstr "Nome do site"
2009
+
2010
+ #: ../modules/email-customizer/email-customizer.php:25
2011
+ #: ../modules/user-listing/userlisting.php:126
2012
+ msgid "User Id"
2013
+ msgstr "ID do usuário"
2014
+
2015
+ #: ../modules/email-customizer/email-customizer.php:32
2016
+ msgid "Reply To"
2017
+ msgstr "Responder para"
2018
+
2019
+ #: ../modules/email-customizer/email-customizer.php:35
2020
+ msgid "Activation Key"
2021
+ msgstr "Chave de ativação"
2022
+
2023
+ #: ../modules/email-customizer/email-customizer.php:36
2024
+ msgid "Activation Url"
2025
+ msgstr "URL de ativação"
2026
+
2027
+ #: ../modules/email-customizer/email-customizer.php:37
2028
+ msgid "Activation Link"
2029
+ msgstr "Link de ativação"
2030
+
2031
+ #: ../modules/email-customizer/user-email-customizer.php:64
2032
+ msgid ""
2033
+ "\n"
2034
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2035
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2036
+ msgstr ""
2037
+ "\n"
2038
+ "\n"
2039
+ "<h3>Bemvindo ao {{site_name}}!</h3>\n"
2040
+ "<p>Seu usuário é: {{username}} e password:{{password}}</p>\n"
2041
+
2042
+ #: ../modules/email-customizer/user-email-customizer.php:85
2043
+ msgid "Default Registration"
2044
+ msgstr "Registro padrão"
2045
+
2046
+ #: ../modules/email-customizer/user-email-customizer.php:91
2047
+ msgid ""
2048
+ "\n"
2049
+ "<p>To activate your user, please click the following link:<br/>\n"
2050
+ "{{{activation_link}}}</p>\n"
2051
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
2052
+ msgstr ""
2053
+ "\n"
2054
+ "\n"
2055
+ "<p>Para ativar seu usuário, por favor clique no seguinte link:<br/>\n"
2056
+ "{{{activation_link}}}</p>\n"
2057
+ "<p>Após a ativação você receberá um email com suas credenciais.</p>\n"
2058
+
2059
+ #: ../modules/email-customizer/user-email-customizer.php:103
2060
+ msgid "[{{site_name}}] Activate {{username}}"
2061
+ msgstr "[{{site_name}}] Ativar {{username}}"
2062
+
2063
+ #: ../modules/email-customizer/user-email-customizer.php:114
2064
+ msgid "Registration with Email Confirmation"
2065
+ msgstr "Registro com confirmação de email"
2066
+
2067
+ #: ../modules/email-customizer/user-email-customizer.php:120
2068
+ msgid ""
2069
+ "\n"
2070
+ "<h3>Welcome to {{site_name}}!</h3>\n"
2071
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2072
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2073
+ msgstr ""
2074
+ "\n"
2075
+ "\n"
2076
+ "<h3>Bemvindo ao {{site_name}}!</h3>\n"
2077
+ "<p>Seu usuário é: {{username}} e password:{{password}}</p>\n"
2078
+ "<p>Antes de acessar sua conta, o administrador precisa aprová-la. Você será notificado por email quando isso acontecer.</p>\n"
2079
+
2080
+ #: ../modules/email-customizer/user-email-customizer.php:132
2081
+ msgid "A new account has been created for you on {{site_name}}"
2082
+ msgstr "Uma nova conta foi criada para você em {{site_name}}"
2083
+
2084
+ #: ../modules/email-customizer/user-email-customizer.php:148
2085
+ msgid ""
2086
+ "\n"
2087
+ "<h3>Good News!</h3>\n"
2088
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2089
+ msgstr ""
2090
+ "\n"
2091
+ "\n"
2092
+ "<h3>Boas notícias!</h3>\n"
2093
+ "<p>O administrador acaba de aprovar a sua conta: {{username}} em {{site_name}}.</p>\n"
2094
+
2095
+ #: ../modules/email-customizer/user-email-customizer.php:159
2096
+ msgid "Your account on {{site_name}} has been approved!"
2097
+ msgstr "Sua conta no {{site_name}} foi aprovada!"
2098
+
2099
+ #: ../modules/email-customizer/user-email-customizer.php:170
2100
+ msgid "User Approval Notification"
2101
+ msgstr "Notificação de aprovação de usuário"
2102
+
2103
+ #: ../modules/email-customizer/user-email-customizer.php:175
2104
+ msgid ""
2105
+ "\n"
2106
+ "<h3>Hello,</h3>\n"
2107
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2108
+ msgstr ""
2109
+ "\n"
2110
+ "<h3>Olá,</h3>\n"
2111
+ "<p>Infelizmente o administrador reprovou a criação de sua conta: {{username}} em {{site_name}}.</p>\n"
2112
+
2113
+ #: ../modules/email-customizer/user-email-customizer.php:187
2114
+ msgid "Your account on {{site_name}} has been unapproved!"
2115
+ msgstr "Sua conta no {{site_name}} foi reprovada!"
2116
+
2117
+ #: ../modules/email-customizer/user-email-customizer.php:198
2118
+ msgid "Unapproved User Notification"
2119
+ msgstr "Notificação de usuário reprovado"
2120
+
2121
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
2122
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
2123
+ msgid "Edit-profile Form"
2124
+ msgstr "Formulário de Edição de Perfil"
2125
+
2126
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
2127
+ #: ../modules/multiple-forms/register-forms.php:13
2128
+ #: ../modules/user-listing/userlisting.php:13
2129
+ msgid "Add New"
2130
+ msgstr "Adicionar novo"
2131
+
2132
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
2133
+ msgid "Add new Edit-profile Form"
2134
+ msgstr "Adicionar novo formulário de edição de perfil"
2135
+
2136
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
2137
+ msgid "Edit the Edit-profile Forms"
2138
+ msgstr "Editar os formulários de edição de perfil"
2139
+
2140
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
2141
+ msgid "New Edit-profile Form"
2142
+ msgstr "Novo formulário de edição de perfil"
2143
+
2144
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
2145
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
2146
+ msgid "Edit-profile Forms"
2147
+ msgstr "Formulários de Edição de Perfil"
2148
+
2149
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
2150
+ msgid "View the Edit-profile Form"
2151
+ msgstr "Visualiza o formulário de edição de perfil"
2152
+
2153
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
2154
+ msgid "Search the Edit-profile Forms"
2155
+ msgstr "Buscar os formulários de edição de perfil"
2156
+
2157
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
2158
+ msgid "No Edit-profile Form found"
2159
+ msgstr "Nenhum formulário de edição de perfil encontrado"
2160
+
2161
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
2162
+ msgid "No Edit-profile Forms found in trash"
2163
+ msgstr "Nenhum Formulário de Edição de Perdil encontrado na lixeira"
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
+
2201
+ #: ../modules/multiple-forms/edit-profile-forms.php:206
2202
+ #: ../modules/multiple-forms/register-forms.php:230
2203
+ msgid "Whether to redirect the user to a specific page or not"
2204
+ msgstr "Se redireciona o usuário para uma página específica ou não"
2205
+
2206
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2207
+ #: ../modules/multiple-forms/register-forms.php:231
2208
+ msgid "Display Messages"
2209
+ msgstr "Mostrar mensagens"
2210
+
2211
+ #: ../modules/multiple-forms/edit-profile-forms.php:207
2212
+ #: ../modules/multiple-forms/register-forms.php:231
2213
+ msgid "Allowed time to display any success messages (in seconds)"
2214
+ msgstr "Tempo permitido para mostrar qualquer mensagem de sucesso (em segundos)"
2215
+
2216
+ #: ../modules/multiple-forms/edit-profile-forms.php:208
2217
+ 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"
2218
+ msgstr "Especificar a URL da página que os usuários serão redirecionados após atualizarem seus perfis usando esse formulário<br/>Use o seguinte formato: http://www.meusite.com"
2219
+
2220
+ #: ../modules/multiple-forms/edit-profile-forms.php:215
2221
+ msgid "After Profile Update..."
2222
+ msgstr "Após a atualização do perfil..."
2223
+
2224
+ #: ../modules/multiple-forms/edit-profile-forms.php:239
2225
+ #: ../modules/multiple-forms/register-forms.php:260
2226
+ msgid "Add New Field to the List"
2227
+ msgstr "Adicoinar novo campo a lista"
2228
+
2229
+ #: ../modules/multiple-forms/edit-profile-forms.php:243
2230
+ #: ../modules/multiple-forms/register-forms.php:264
2231
+ msgid "Choose one of the supported fields you manage <a href=\""
2232
+ msgstr "Escolha um dos campos suportados que você gerencia <a href=\""
2233
+
2234
+ #: ../modules/multiple-forms/multiple-forms.php:407
2235
+ msgid "<pre>Title (Type)</pre>"
2236
+ msgstr "<pre>Título (Tipo)</pre>"
2237
+
2238
+ #: ../modules/multiple-forms/multiple-forms.php:233
2239
+ msgid "You need to specify the title of the form before creating it"
2240
+ msgstr "Você precisa especificar o título do formulário antes de criá-lo"
2241
+
2242
+ #: ../modules/multiple-forms/register-forms.php:11
2243
+ #: ../modules/multiple-forms/register-forms.php:12
2244
+ msgid "Registration Form"
2245
+ msgstr "Formulário de Registro"
2246
+
2247
+ #: ../modules/multiple-forms/register-forms.php:14
2248
+ msgid "Add new Registration Form"
2249
+ msgstr "Adicionar novo formulário de registro"
2250
+
2251
+ #: ../modules/multiple-forms/register-forms.php:15
2252
+ msgid "Edit the Registration Forms"
2253
+ msgstr "Editar os formulários de registro"
2254
+
2255
+ #: ../modules/multiple-forms/register-forms.php:16
2256
+ msgid "New Registration Form"
2257
+ msgstr "Novo formulário de registro"
2258
+
2259
+ #: ../modules/multiple-forms/register-forms.php:17
2260
+ #: ../modules/multiple-forms/register-forms.php:23
2261
+ msgid "Registration Forms"
2262
+ msgstr "Formulários de Registro"
2263
+
2264
+ #: ../modules/multiple-forms/register-forms.php:18
2265
+ msgid "View the Registration Form"
2266
+ msgstr "Visualizar o formulário de registro"
2267
+
2268
+ #: ../modules/multiple-forms/register-forms.php:19
2269
+ msgid "Search the Registration Forms"
2270
+ msgstr "Buscar os formulários de registro"
2271
+
2272
+ #: ../modules/multiple-forms/register-forms.php:20
2273
+ msgid "No Registration Form found"
2274
+ msgstr "Nenhum formulário de registro encontrado"
2275
+
2276
+ #: ../modules/multiple-forms/register-forms.php:21
2277
+ msgid "No Registration Forms found in trash"
2278
+ msgstr "Nenhum formulário de registro encontrado na lixeira"
2279
+
2280
+ #: ../modules/multiple-forms/register-forms.php:219
2281
+ msgid "Default Role"
2282
+ msgstr "Função padrão"
2283
+
2284
+ #: ../modules/multiple-forms/register-forms.php:228
2285
+ msgid "Set Role"
2286
+ msgstr "Ajustar Função"
2287
+
2288
+ #: ../modules/multiple-forms/register-forms.php:228
2289
+ 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"
2290
+ msgstr "Escolha qual função o usuário terá após registrar-se<br/>Se não especificado, a função padrão será a definida nas configurações do WordPress"
2291
+
2292
+ #: ../modules/multiple-forms/register-forms.php:229
2293
+ msgid "Automatically Log In"
2294
+ msgstr "Login Automático"
2295
+
2296
+ #: ../modules/multiple-forms/register-forms.php:229
2297
+ 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"
2298
+ msgstr "Se realizar automaticamente o login do usuário recém registrado ou não<br/>Funciona apenas em single-sites sem as funções de \"Aprovação do Admin\" e \"Confirmação de Email\" ativadas<br/>CUIDADO: Usar o cache do formulário de registro fará o login automático não funcionar"
2299
+
2300
+ #: ../modules/multiple-forms/register-forms.php:232
2301
+ 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"
2302
+ msgstr "Especifique a URL da página que os usuários serão redirecionamentos após registrarem-se por esse formulário<br/>Use o seguinte formato: http://www.meusite.com"
2303
+
2304
+ #: ../modules/multiple-forms/register-forms.php:238
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
+
2316
+ #: ../modules/user-listing/userlisting.php:14
2317
+ msgid "Add new User Listing"
2318
+ msgstr "Adicionar nova listagem de usuário"
2319
+
2320
+ #: ../modules/user-listing/userlisting.php:15
2321
+ msgid "Edit the User Listing"
2322
+ msgstr "Editar a Listagem de Usuários"
2323
+
2324
+ #: ../modules/user-listing/userlisting.php:16
2325
+ msgid "New User Listing"
2326
+ msgstr "Nova listagem de usuário"
2327
+
2328
+ #: ../modules/user-listing/userlisting.php:18
2329
+ msgid "View the User Listing"
2330
+ msgstr "Visualizar a Listagem de Usuários"
2331
+
2332
+ #: ../modules/user-listing/userlisting.php:19
2333
+ msgid "Search the User Listing"
2334
+ msgstr "Buscar a listagem de usuários"
2335
+
2336
+ #: ../modules/user-listing/userlisting.php:20
2337
+ msgid "No User Listing found"
2338
+ msgstr "Nenhum registro de usuário encontrado"
2339
+
2340
+ #: ../modules/user-listing/userlisting.php:21
2341
+ msgid "No User Listing found in trash"
2342
+ msgstr "Nenhum registro de usuário encontrado na lixeira"
2343
+
2344
+ #: ../modules/user-listing/userlisting.php:97
2345
+ msgid "Display name as"
2346
+ msgstr "Mostrar nome como"
2347
+
2348
+ #: ../modules/user-listing/userlisting.php:110
2349
+ msgid "Url"
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
+
2362
+ #: ../modules/user-listing/userlisting.php:123
2363
+ msgid "More Info"
2364
+ msgstr "Mais Informações"
2365
+
2366
+ #: ../modules/user-listing/userlisting.php:124
2367
+ msgid "More Info Url"
2368
+ msgstr "URL de mais informações"
2369
+
2370
+ #: ../modules/user-listing/userlisting.php:125
2371
+ msgid "Avatar or Gravatar"
2372
+ msgstr "Avatar ou Gravatar"
2373
+
2374
+ #: ../modules/user-listing/userlisting.php:153
2375
+ msgid "Meta Variables"
2376
+ msgstr "Meta Variáveis"
2377
+
2378
+ #: ../modules/user-listing/userlisting.php:159
2379
+ msgid "Sort Variables"
2380
+ msgstr "Ordenar variáveis"
2381
+
2382
+ #: ../modules/user-listing/userlisting.php:163
2383
+ #: ../modules/user-listing/userlisting.php:190
2384
+ msgid "Extra Functions"
2385
+ msgstr "Funções extra"
2386
+
2387
+ #: ../modules/user-listing/userlisting.php:165
2388
+ msgid "Pagination"
2389
+ msgstr "Paginação"
2390
+
2391
+ #: ../modules/user-listing/userlisting.php:166
2392
+ msgid "Search all Fields"
2393
+ msgstr "Buscar todos os campos"
2394
+
2395
+ #: ../modules/user-listing/userlisting.php:192
2396
+ msgid "Go Back Link"
2397
+ msgstr "Link Voltar"
2398
+
2399
+ #: ../modules/user-listing/userlisting.php:210
2400
+ msgid "All-userlisting Template"
2401
+ msgstr "Template de listagem de todos usuários"
2402
+
2403
+ #: ../modules/user-listing/userlisting.php:213
2404
+ msgid "Single-userlisting Template"
2405
+ msgstr "Template de entrada único usuário"
2406
+
2407
+ #: ../modules/user-listing/userlisting.php:330
2408
+ msgid "You do not have permission to view this user list"
2409
+ msgstr "Você não tem permissão para visualizar essa lista de usuários"
2410
+
2411
+ #: ../modules/user-listing/userlisting.php:343
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 "&laquo;&laquo; First"
2470
+ msgstr "&laquo;&laquo; Primeira"
2471
+
2472
+ #: ../modules/user-listing/userlisting.php:838
2473
+ msgid "&laquo; Prev"
2474
+ msgstr "&laquo; Ant"
2475
+
2476
+ #: ../modules/user-listing/userlisting.php:839
2477
+ msgid "Next &raquo; "
2478
+ msgstr "Próx &raquo; "
2479
+
2480
+ #: ../modules/user-listing/userlisting.php:840
2481
+ msgid "Last &raquo;&raquo;"
2482
+ msgstr "Última &raquo;&raquo;"
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.po CHANGED
@@ -1,2592 +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&#37; 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&#37; 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: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
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: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
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 "&laquo;&laquo; First"
2472
- msgstr "&laquo;&laquo; Primul "
2473
-
2474
- #: ../modules/user-listing/userlisting.php:838
2475
- msgid "&laquo; Prev"
2476
- msgstr "&laquo; Anterior "
2477
-
2478
- #: ../modules/user-listing/userlisting.php:839
2479
- msgid "Next &raquo; "
2480
- msgstr "Următorul &raquo; "
2481
-
2482
- #: ../modules/user-listing/userlisting.php:840
2483
- msgid "Last &raquo;&raquo;"
2484
- msgstr "Ultimul &raquo;&raquo;"
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!"
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&#37; 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&#37; 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: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
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: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
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 "&laquo;&laquo; First"
2472
+ msgstr "&laquo;&laquo; Primul "
2473
+
2474
+ #: ../modules/user-listing/userlisting.php:838
2475
+ msgid "&laquo; Prev"
2476
+ msgstr "&laquo; Anterior "
2477
+
2478
+ #: ../modules/user-listing/userlisting.php:839
2479
+ msgid "Next &raquo; "
2480
+ msgstr "Următorul &raquo; "
2481
+
2482
+ #: ../modules/user-listing/userlisting.php:840
2483
+ msgid "Last &raquo;&raquo;"
2484
+ msgstr "Ultimul &raquo;&raquo;"
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.po CHANGED
@@ -1,2585 +1,2585 @@
1
- # Translation of Profile Builder in Chinese (China)
2
- # This file is distributed under the same license as the Profile Builder package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2014-11-10 07:26:00+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=1; plural=0;\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&#37; 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&#37; 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 ""
68
-
69
- #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
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
-
89
- #: ../front-end/login.php:79
90
- msgid "Invalid username."
91
- msgstr ""
92
-
93
- #: ../front-end/login.php:84
94
- msgid "username"
95
- msgstr ""
96
-
97
- #: ../front-end/login.php:84
98
- msgid "email"
99
- msgstr ""
100
-
101
- #: ../front-end/login.php:178
102
- msgid "Lost your password?"
103
- msgstr ""
104
-
105
- #: ../index.php:34
106
- msgid " is also activated. You need to deactivate it before activating this version of the plugin."
107
- msgstr ""
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 ""
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 ""
126
-
127
- #: ../modules/multiple-forms/multiple-forms.php:407
128
- msgid "Delete all items"
129
- msgstr ""
130
-
131
- #: ../modules/multiple-forms/multiple-forms.php:407
132
- msgid "Delete all"
133
- msgstr ""
134
-
135
- #: ../modules/multiple-forms/register-forms.php:230
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
-
143
- #: ../admin/admin-bar.php:10
144
- msgid "Show/Hide the Admin Bar on the Front-End"
145
- msgstr "显示/隐藏管理员工具栏在前端"
146
-
147
- #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
148
- msgid "Admin Bar Settings"
149
- msgstr "管理员工具栏设置"
150
-
151
- #: ../admin/admin-bar.php:57
152
- msgid "User-Role"
153
- msgstr "用户角色"
154
-
155
- #: ../admin/admin-bar.php:58
156
- msgid "Visibility"
157
- msgstr "可见"
158
-
159
- #: ../admin/admin-bar.php:73
160
- msgid "Default"
161
- msgstr "默认"
162
-
163
- #: ../admin/admin-bar.php:74
164
- msgid "Show"
165
- msgstr "显示"
166
-
167
- #: ../admin/admin-bar.php:75
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"
176
- msgstr "保存更改"
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 "登录允许使用电子邮件。这字段不会显示在前端! ( 你可以改变这些设置,在 \"%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 "常规设置"
186
-
187
- #: ../admin/admin-functions.php:106
188
- msgid "<strong>ERROR</strong>: The password must have the minimum length of "
189
- msgstr "<strong>错误</strong>: 密码必须最小长度"
190
-
191
- #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
192
- msgid "Very weak"
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
-
210
- #: ../admin/admin-functions.php:123
211
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
212
- msgstr "<strong>错误</strong>: 密码必须至少有一个强度"
213
-
214
- #: ../admin/admin-functions.php:162
215
- msgid "Add Field"
216
- msgstr "添加字段"
217
-
218
- #: ../admin/admin-functions.php:164
219
- msgid "Save Settings"
220
- msgstr "保存设置"
221
-
222
- #: ../admin/basic-info.php:10
223
- msgid "Basic Information"
224
- msgstr "基本信息"
225
-
226
- #: ../admin/basic-info.php:29
227
- msgid "Version %s"
228
- msgstr "版本 %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 "最好的前端注册、编辑个人资料与登陆表单的实现方式。"
237
-
238
- #: ../admin/basic-info.php:33
239
- msgid "For Modern User Interaction"
240
- msgstr "新颖的用户交互。"
241
-
242
- #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
243
- msgid "Login"
244
- msgstr "登陆"
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 "快捷登陆使用 <strong class=\"nowrap\">[wppb-login]</strong> 简码或者小工具。"
249
-
250
- #: ../admin/basic-info.php:40
251
- msgid "Registration"
252
- msgstr "注册"
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 "漂亮的注册表单,完全可自定义使用 <strong class=\"nowrap\">[wppb-register]</strong> 简码。"
257
-
258
- #: ../admin/basic-info.php:44
259
- msgid "Edit Profile"
260
- msgstr "编辑个人资料"
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 "编辑个人资料直接可以使用 <strong class=\"nowrap\">[wppb-edit-profile]</strong> 简码."
265
-
266
- #: ../admin/basic-info.php:51
267
- msgid "Extra Features"
268
- msgstr "额外字段"
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 "特性,让您对您的用户更多的控制,增强安全性,帮助用户注册与限制垃圾邮件。"
273
-
274
- #: ../admin/basic-info.php:53
275
- msgid "Enable extra features"
276
- msgstr "启用额外功能"
277
-
278
- #: ../admin/basic-info.php:57
279
- msgid "Recover Password"
280
- msgstr "恢复密码"
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 "允许用户恢复密码在前端使用简码 [wppb-recover-password]。"
285
-
286
- #: ../admin/basic-info.php:61
287
- msgid "Admin Approval (*)"
288
- msgstr "管理员审批 (*)"
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 "你决定在你的网站用户是谁。从WordPress 界面通过电子邮件或批准的多个用户获得通知。"
293
-
294
- #: ../admin/basic-info.php:65
295
- msgid "Email Confirmation"
296
- msgstr "电子邮件确认"
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 "确保用户注册是使用真实的电子邮件。注册用户将收到一个通知,确认他们的电子邮件地址。"
301
-
302
- #: ../admin/basic-info.php:69
303
- msgid "Minimum Password Length and Strength Meter"
304
- msgstr "最小密码长度和强度表"
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 "消除弱密码最小密码长度,并强制执行设定的密码强度。"
309
-
310
- #: ../admin/basic-info.php:73
311
- msgid "Login with Email or Username"
312
- msgstr "通过电子邮件或用户名登录"
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 "当用户访问您的网站时,允许用户登录他们的用户名和电子邮件。"
317
-
318
- #: ../admin/basic-info.php:87
319
- msgid "Customize Your Forms The Way You Want (*)"
320
- msgstr "自定义表格用你想要的方式(*)"
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 "额外个人资料字段,根据您的项目需求你可以创建精确的登注册表单。"
325
-
326
- #: ../admin/basic-info.php:90
327
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
328
- msgstr "额外个人资料字段需要激活 Hobbyist 或者 PRO 版本才可用"
329
-
330
- #: ../admin/basic-info.php:92
331
- msgid "Get started with extra fields"
332
- msgstr "开始使用额外字段"
333
-
334
- #: ../admin/basic-info.php:95
335
- msgid "Avatar Upload"
336
- msgstr "头像上传"
337
-
338
- #: ../admin/basic-info.php:96
339
- msgid "Generic Uploads"
340
- msgstr "常规上传"
341
-
342
- #: ../admin/basic-info.php:97
343
- msgid "Agree To Terms Checkbox"
344
- msgstr "同意使用条款"
345
-
346
- #: ../admin/basic-info.php:98
347
- msgid "Datepicker"
348
- msgstr "日期选择器"
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 "国家选择"
357
-
358
- #: ../admin/basic-info.php:101
359
- msgid "Timezone Select"
360
- msgstr "时区选择"
361
-
362
- #: ../admin/basic-info.php:102
363
- msgid "Input / Hidden Input"
364
- msgstr "输入/隐藏输入"
365
-
366
- #: ../admin/basic-info.php:103
367
- msgid "Checkbox"
368
- msgstr "复选框"
369
-
370
- #: ../admin/basic-info.php:104
371
- msgid "Select"
372
- msgstr "选择"
373
-
374
- #: ../admin/basic-info.php:105
375
- msgid "Radio Buttons"
376
- msgstr "单选按钮"
377
-
378
- #: ../admin/basic-info.php:106
379
- msgid "Textarea"
380
- msgstr "文本框"
381
-
382
- #: ../admin/basic-info.php:115
383
- msgid "Powerful Modules (**)"
384
- msgstr "强大的模块(**)"
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 "使用一切你需要的工具,用于管理你的用户的模块。"
389
-
390
- #: ../admin/basic-info.php:118
391
- msgid "Enable your modules"
392
- msgstr "启用你的模块"
393
-
394
- #: ../admin/basic-info.php:121
395
- msgid "Find out more about PRO Modules"
396
- msgstr "了解关于专业版模块的更多内容"
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 "用户列表"
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 "易于编辑模列表您的网站用户,以及创建单用户页面模板。基于简码,提供了许多选项来定制您的列表。"
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 "创建一个页面包含已注册在当前的网站/博客用户列表,将下面的短码放进页面:"
413
-
414
- #: ../admin/basic-info.php:134
415
- msgid "Email Customizer"
416
- msgstr "电子邮件定制"
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 "个性化邮件发送到你的用户或管理员。注册,电子邮件确认,管理员批准/拒绝。"
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 "自定义重定向"
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 "让你的用户离开 WordPress 仪表盘,重定向到他们的前端页面,登录注册一切都只需几个点击。"
431
-
432
- #: ../admin/basic-info.php:144 ../modules/modules.php:97
433
- msgid "Multiple Registration Forms"
434
- msgstr "多个注册形式"
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 "设置多个注册表单为某些用户角色不同的字段。获取来自不同类型的用户不同的信息。"
439
-
440
- #: ../admin/basic-info.php:148 ../modules/modules.php:104
441
- msgid "Multiple Edit-profile Forms"
442
- msgstr "多个编辑个人资料形式"
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 "允许不同的用户角色去编辑他们的具体信息。设置多个编辑表单一不同的作用字段。"
447
-
448
- #: ../admin/basic-info.php:161
449
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
450
- msgstr " * 仅获得在 %1$sHobbyist 与专业版本 %2$s."
451
-
452
- #: ../admin/basic-info.php:162
453
- msgid "** only available in the %1$sPro version%2$s."
454
- msgstr "** 仅激活在 %1$s专业版本 %2$s."
455
-
456
- #: ../admin/general-settings.php:42
457
- msgid "Load Profile Builder's own CSS file in the front-end:"
458
- msgstr "在前端载入 Profile Builder 的CSS文件:"
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 "是"
467
-
468
- #: ../admin/general-settings.php:47
469
- msgid "You can find the default file here: %1$s"
470
- msgstr "你可以在这里找到默认的文件: %1$s"
471
-
472
- #: ../admin/general-settings.php:56
473
- msgid "\"Email Confirmation\" Activated:"
474
- msgstr "\"邮件确认\" 激活:"
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 "不"
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 "在单个站点安装本工作会在前端形成。建议转向 WP 默认注册使用 Profile Builder 的 \"自定义转向\" 模块。"
485
-
486
- #: ../admin/general-settings.php:65
487
- msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
488
- msgstr "这个 \"邮件确认\" 功能默认在 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 "您可以找到还没确认邮箱地址的列表 %1$s用户 > 所有用户 > 邮箱确认%2$s."
493
-
494
- #: ../admin/general-settings.php:79
495
- msgid "\"Email Confirmation\" Landing Page:"
496
- msgstr "\"邮件确认\" 登陆页面:"
497
-
498
- #: ../admin/general-settings.php:84
499
- msgid "Existing Pages"
500
- msgstr "现有页面"
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 "指定供用户确认邮件的转向页面。此页面可不同于注册页面(s)并且可随时改变。如果没有指定,将显示给用户一个简单确认页。"
505
-
506
- #: ../admin/general-settings.php:110
507
- msgid "\"Admin Approval\" Activated:"
508
- msgstr "\"管理员审批\" 激活:"
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 "您可以找到用户在 %1$s用户 > 所有用户 > 管理员审批%2$s."
513
-
514
- #: ../admin/general-settings.php:130
515
- msgid "\"Admin Approval\" Feature:"
516
- msgstr "\"管理员审批\" 功能 :"
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 "您控制您的用户在网站上的角色。获得游戏通知或者一次性批量审批多用户。启用管理审批功能需要升级到 %1$sHobbyist 或者 专业版本%2$s。"
521
-
522
- #: ../admin/general-settings.php:140
523
- msgid "Allow Users to Log in With:"
524
- msgstr "允许用户使用什么登陆:"
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 "姓名"
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
-
543
- #: ../admin/general-settings.php:152
544
- msgid "Minimum Password Length:"
545
- msgstr "最小密码长度:"
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 "输入密码必须最少字符。留空为没有限制"
550
-
551
- #: ../admin/general-settings.php:164
552
- msgid "Minimum Password Strength:"
553
- msgstr "最小密码强度:"
554
-
555
- #: ../admin/general-settings.php:168
556
- msgid "Disabled"
557
- msgstr "关闭"
558
-
559
- #: ../admin/manage-fields.php:12
560
- msgid "Manage Fields"
561
- msgstr "管理字段"
562
-
563
- #: ../admin/manage-fields.php:13
564
- msgid "Manage Default and Extra Fields"
565
- msgstr "管理默认与额外字段"
566
-
567
- #: ../admin/manage-fields.php:74
568
- msgid "Field Title"
569
- msgstr "字段标题"
570
-
571
- #: ../admin/manage-fields.php:74
572
- msgid "Title of the field"
573
- msgstr "字段的标题"
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 "字段"
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 "使用这个结合 WordPress 功能去显示您选择的页面中的值<br/> 自动完成,但在某些情况下可编辑(在这情况下它必须是唯一的)<br/> 在用户数量大的情况下,改变这个可能需要很长时间"
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 "编号"
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 "一个独特的、为特定的字段自动生成ID<br/>如果需要可以使用过滤器调用这个目标<br/>不能编辑"
600
-
601
- #: ../admin/manage-fields.php:78
602
- msgid "Description"
603
- msgstr "描述"
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 "输入(详细)的最终用户阅读选项的描述<br/>可选"
608
-
609
- #: ../admin/manage-fields.php:79
610
- msgid "Row Count"
611
- msgstr "行数"
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 "指定 'Textarea' 字段的行数<br/>如果没有指定,缺省为5"
616
-
617
- #: ../admin/manage-fields.php:80
618
- msgid "Allowed Image Extensions"
619
- msgstr "允许的图像扩展"
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 "指定您想限制上传的扩展名(s)<br/>例如: .ext1,.ext2,.ext3<br/>如无指定,默认支持所有图像扩展名 (.*)"
624
-
625
- #: ../admin/manage-fields.php:81
626
- msgid "Allowed Upload Extensions"
627
- msgstr "允许的上传扩展"
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 "指定您想限制上传的扩展名(s)<br/>例如: .ext1,.ext2,.ext3<br/>如无指定,默认是所有已在使用的扩展名 (.*)"
632
-
633
- #: ../admin/manage-fields.php:82
634
- msgid "Avatar Size"
635
- msgstr "头像大小"
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 "输入 '头像' 大小数值 ( 20 与 200 之间 ) <br/>如果没指定,默认是100"
640
-
641
- #: ../admin/manage-fields.php:83
642
- msgid "Date-format"
643
- msgstr "日期格式"
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 "当使用日期选择器指定日期格式<br/>有效选项: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>如无指定,默认是 mm/dd/yy"
648
-
649
- #: ../admin/manage-fields.php:84
650
- msgid "Terms of Agreement"
651
- msgstr "协议条款"
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: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
655
- msgstr "输入一个供用户查看的协议内容。<br/> 连接可以使用 HTML 语法,例如:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
656
-
657
- #: ../admin/manage-fields.php:85
658
- msgid "Options"
659
- msgstr "选项"
660
-
661
- #: ../admin/manage-fields.php:86
662
- msgid "Labels"
663
- msgstr "标签"
664
-
665
- #: ../admin/manage-fields.php:86
666
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
667
- msgstr "输入一个逗号分隔标签 <br/> 对用户可见的"
668
-
669
- #: ../admin/manage-fields.php:87
670
- msgid "Public Key"
671
- msgstr "公共密钥"
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 "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 "专用密钥"
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 "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 "默认值"
688
-
689
- #: ../admin/manage-fields.php:89
690
- msgid "Default value of the field"
691
- msgstr "该字段的默认值"
692
-
693
- #: ../admin/manage-fields.php:90
694
- msgid "Default Option"
695
- msgstr "默认选项"
696
-
697
- #: ../admin/manage-fields.php:90
698
- msgid "Specify the option which should be selected by default"
699
- msgstr "指定选项的默认选择值"
700
-
701
- #: ../admin/manage-fields.php:91
702
- msgid "Default Option(s)"
703
- msgstr "默认选项(s)"
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 "指定选项默认是否勾选<br/>如果有多个值的选项,使用“,”分开(逗号)"
708
-
709
- #: ../admin/manage-fields.php:92
710
- msgid "Default Content"
711
- msgstr "默认内容"
712
-
713
- #: ../admin/manage-fields.php:92
714
- msgid "Default value of the textarea"
715
- msgstr "文本默认值"
716
-
717
- #: ../admin/manage-fields.php:93
718
- msgid "Required"
719
- msgstr "必须"
720
-
721
- #: ../admin/manage-fields.php:93
722
- msgid "Whether the field is required or not"
723
- msgstr "该字段是否必须"
724
-
725
- #: ../admin/manage-fields.php:94
726
- msgid "Overwrite Existing"
727
- msgstr "覆盖现有"
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 "选择“是”将增加字段到列表中,但将覆盖在数据库中具有相同名称的任何其他领域的 meta-name<br/>使用需自己承担风险"
732
-
733
- #: ../admin/manage-fields.php:100
734
- msgid "Field Properties"
735
- msgstr "字段属性"
736
-
737
- #: ../admin/manage-fields.php:113
738
- msgid "Registration & Edit Profile"
739
- msgstr "注册与编辑资料"
740
-
741
- #: ../admin/manage-fields.php:132
742
- msgid "Name"
743
- msgstr "姓名"
744
-
745
- #: ../admin/manage-fields.php:133
746
- msgid "Usernames cannot be changed."
747
- msgstr " 用户名不可更改。"
748
-
749
- #: ../admin/manage-fields.php:134
750
- msgid "First Name"
751
- msgstr "名字"
752
-
753
- #: ../admin/manage-fields.php:135
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
-
761
- #: ../admin/manage-fields.php:137
762
- msgid "Display name publicly as"
763
- msgstr "公开显示为"
764
-
765
- #: ../admin/manage-fields.php:138
766
- msgid "Contact Info"
767
- msgstr "联系信息"
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 "电子邮件"
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 "站点"
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 "雅虎通讯"
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 "关于您自己"
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
-
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 "分享关于您的一些信息。可能会被公开。"
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 "新密码"
814
-
815
- #: ../admin/manage-fields.php:151
816
- msgid "Type your password."
817
- msgstr "重复新密码"
818
-
819
- #: ../admin/manage-fields.php:152 ../front-end/recover.php:80
820
- msgid "Repeat Password"
821
- msgstr "重复新密码"
822
-
823
- #: ../admin/manage-fields.php:152
824
- msgid "Type your password again. "
825
- msgstr "再输入一遍新密码。"
826
-
827
- #: ../admin/manage-fields.php:308 ../admin/manage-fields.php:444
828
- msgid "You must select a field\n"
829
- msgstr "你必须选择一个字段\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 "请选择一个不同的字段类型,这个已经存在你的表格(必须是唯一的)\n"
834
-
835
- #: ../admin/manage-fields.php:329
836
- msgid "The entered avatar size is not between 20 and 200\n"
837
- msgstr "输入的头像大小不是20与200之间 \n"
838
-
839
- #: ../admin/manage-fields.php:332
840
- msgid "The entered avatar size is not numerical\n"
841
- msgstr "输入的头像大小不是数值\n"
842
-
843
- #: ../admin/manage-fields.php:340
844
- msgid "The entered row number is not numerical\n"
845
- msgstr "输入的行数不是数值\n"
846
-
847
- #: ../admin/manage-fields.php:343
848
- msgid "You must enter a value for the row number\n"
849
- msgstr "您必须输入一个值的行数\n"
850
-
851
- #: ../admin/manage-fields.php:351
852
- msgid "You must enter the public key\n"
853
- msgstr "你必须输入公共密钥\n"
854
-
855
- #: ../admin/manage-fields.php:353
856
- msgid "You must enter the private key\n"
857
- msgstr "您必须输入专用密钥\n"
858
-
859
- #: ../admin/manage-fields.php:361
860
- msgid "The entered value for the Datepicker is not a valid date-format\n"
861
- msgstr "日期选择器输入的值不是有效的日期格式\n"
862
-
863
- #: ../admin/manage-fields.php:364
864
- msgid "You must enter a value for the date-format\n"
865
- msgstr "您必须输入一个日期格式的值\n"
866
-
867
- #: ../admin/manage-fields.php:392 ../admin/manage-fields.php:400
868
- #: ../admin/manage-fields.php:410
869
- msgid "That meta-name is already in use\n"
870
- msgstr "meta-name 已在使用\n"
871
-
872
- #: ../admin/manage-fields.php:432
873
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
874
- msgstr "下列选项(s)不符合的选项清单: %s\n"
875
-
876
- #: ../admin/manage-fields.php:436
877
- msgid "The following option did not coincide with the ones in the options list: %s\n"
878
- msgstr "下列选项不符合的选项清单: %s\n"
879
-
880
- #: ../admin/manage-fields.php:451
881
- msgid "That field is already added in this form\n"
882
- msgstr "这个字段已经加入这个\n"
883
-
884
- #: ../admin/manage-fields.php:500
885
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
886
- msgstr "<pre>标题</pre><pre>类型</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">必须</pre>"
887
-
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 "编辑"
895
-
896
- #: ../admin/manage-fields.php:500
897
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:415
898
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
899
- #: ../features/admin-approval/class-admin-approval.php:124
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
-
907
- #: ../admin/manage-fields.php:515
908
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
909
- msgstr "使用这些简码在页面中你想要的形式显示:"
910
-
911
- #: ../admin/manage-fields.php:521
912
- 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."
913
- msgstr "如果你对注册、编辑资料时显示不同字段感兴趣,请使用多个注册和编辑资料形式的模块。"
914
-
915
- #: ../admin/register-version.php:11
916
- msgid "Register Your Version"
917
- msgstr "注册您的版本"
918
-
919
- #: ../admin/register-version.php:11
920
- msgid "Register Version"
921
- msgstr "注册版本"
922
-
923
- #: ../admin/register-version.php:58
924
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
925
- msgstr "如果您注册这个版本的 Profile Builder ,您将收到有关升级,补丁,和技术支持。"
926
-
927
- #: ../admin/register-version.php:60
928
- msgid " Serial Number:"
929
- msgstr "序号:"
930
-
931
- #: ../admin/register-version.php:65
932
- msgid "The serial number was successfully validated!"
933
- msgstr "序号成功验证!"
934
-
935
- #: ../admin/register-version.php:67
936
- msgid "The serial number entered couldn't be validated!"
937
- msgstr "序号无法验证!"
938
-
939
- #: ../admin/register-version.php:69
940
- msgid "The serial number couldn't be validated because it expired!"
941
- msgstr "序号无法验证,因已过期!"
942
-
943
- #: ../admin/register-version.php:71
944
- 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!"
945
- msgstr "序号无法验证,因为连接超时。这可能是由于服务器维护。请稍后再试!"
946
-
947
- #: ../admin/register-version.php:73
948
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
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
-
956
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:501
957
- msgid "Edit this item"
958
- msgstr "编辑此项目"
959
-
960
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:502
961
- msgid "Delete this item"
962
- msgstr "删除此项目"
963
-
964
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:643
965
- msgid "Please enter a value for the required field "
966
- msgstr "请为这个字段输入所需的值"
967
-
968
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1010
969
- msgid "Select File"
970
- msgstr "选择文件"
971
-
972
- #: ../assets/lib/wck-api/fields/upload.php:31
973
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1050
974
- msgid "Remove"
975
- msgstr "移除"
976
-
977
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1090
978
- msgid "Syncronize WCK"
979
- msgstr "同步 WCK"
980
-
981
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1102
982
- msgid "Syncronize WCK Translation"
983
- msgstr "同步 WCK 翻译"
984
-
985
- #: ../assets/lib/wck-api/fields/nested repeater.php:8
986
- msgid "You can add the information for the %s after you add a entry"
987
- msgstr "您可以添加信息到 %s"
988
-
989
- #: ../assets/lib/wck-api/fields/upload.php:48
990
- msgid "Upload "
991
- msgstr "上传"
992
-
993
- #: ../features/class-list-table.php:184
994
- msgid "No items found."
995
- msgstr "找不到项目。"
996
-
997
- #: ../features/class-list-table.php:308
998
- msgid "Bulk Actions"
999
- msgstr "批量动作"
1000
-
1001
- #: ../features/class-list-table.php:318
1002
- msgid "Apply"
1003
- msgstr "应用"
1004
-
1005
- #: ../features/class-list-table.php:402
1006
- msgid "Show all dates"
1007
- msgstr "显示所有日期"
1008
-
1009
- #: ../features/class-list-table.php:415
1010
- msgid "%1$s %2$d"
1011
- msgstr "%1$s %2$d"
1012
-
1013
- #: ../features/class-list-table.php:431
1014
- msgid "List View"
1015
- msgstr "列表查看"
1016
-
1017
- #: ../features/class-list-table.php:432
1018
- msgid "Excerpt View"
1019
- msgstr "摘录查看"
1020
-
1021
- #: ../features/class-list-table.php:458
1022
- msgid "%s pending"
1023
- msgstr "%s 等待中"
1024
-
1025
- #: ../features/class-list-table.php:566
1026
- msgid "%1$s of %2$s"
1027
- msgstr "%1$s 的 %2$s"
1028
-
1029
- #: ../features/class-list-table.php:713
1030
- msgid "Select All"
1031
- msgstr "选择所有"
1032
-
1033
- #: ../features/functions.php:193 ../features/functions.php:194
1034
- msgid "Profile Builder"
1035
- msgstr "Profile Builder"
1036
-
1037
- #: ../features/functions.php:261
1038
- msgid "The user-validation has failed - the avatar was not deleted!"
1039
- msgstr "用户验证失败 - 头像没有被删除!"
1040
-
1041
- #: ../features/functions.php:272
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"
1052
- msgstr "管理员审批"
1053
-
1054
- #: ../features/admin-approval/admin-approval.php:22
1055
- #: ../features/email-confirmation/email-confirmation.php:58
1056
- msgid "Do you want to"
1057
- msgstr "您想要"
1058
-
1059
- #: ../features/admin-approval/admin-approval.php:45
1060
- msgid "Your session has expired! Please refresh the page and try again"
1061
- msgstr "您的会话已过期!请刷新页面重试"
1062
-
1063
- #: ../features/admin-approval/admin-approval.php:56
1064
- msgid "User successfully approved!"
1065
- msgstr "用户成功批准!"
1066
-
1067
- #: ../features/admin-approval/admin-approval.php:64
1068
- msgid "User successfully unapproved!"
1069
- msgstr "用户成功拒绝!"
1070
-
1071
- #: ../features/admin-approval/admin-approval.php:70
1072
- msgid "User successfully deleted!"
1073
- msgstr "用户成功删除!"
1074
-
1075
- #: ../features/admin-approval/admin-approval.php:75
1076
- #: ../features/admin-approval/admin-approval.php:140
1077
- #: ../features/email-confirmation/email-confirmation.php:122
1078
- msgid "You either don't have permission for that action or there was an error!"
1079
- msgstr "你没有权限操作,或出现一个错误!"
1080
-
1081
- #: ../features/admin-approval/admin-approval.php:87
1082
- msgid "Your session has expired! Please refresh the page and try again."
1083
- msgstr "您的会话已过期!请刷新页面重试"
1084
-
1085
- #: ../features/admin-approval/admin-approval.php:107
1086
- msgid "Users successfully approved!"
1087
- msgstr "用户成功批准!"
1088
-
1089
- #: ../features/admin-approval/admin-approval.php:122
1090
- msgid "Users successfully unapproved!"
1091
- msgstr "用户成功拒绝!"
1092
-
1093
- #: ../features/admin-approval/admin-approval.php:135
1094
- msgid "Users successfully deleted!"
1095
- msgstr "用户成功删除!"
1096
-
1097
- #: ../features/admin-approval/admin-approval.php:150
1098
- msgid "Your account on %1$s has been approved!"
1099
- msgstr "您在 %1$s 的帐号成功通过!"
1100
-
1101
- #: ../features/admin-approval/admin-approval.php:151
1102
- #: ../features/admin-approval/admin-approval.php:154
1103
- msgid "approved"
1104
- msgstr "已批准"
1105
-
1106
- #: ../features/admin-approval/admin-approval.php:153
1107
- msgid "An administrator has just approved your account on %1$s (%2$s)."
1108
- msgstr "管理员已经批准您在 %1$s (%2$s) 的帐号。"
1109
-
1110
- #: ../features/admin-approval/admin-approval.php:157
1111
- msgid "Your account on %1$s has been unapproved!"
1112
- msgstr "您在 %1$s 的帐号被拒绝!"
1113
-
1114
- #: ../features/admin-approval/admin-approval.php:158
1115
- #: ../features/admin-approval/admin-approval.php:161
1116
- msgid "unapproved"
1117
- msgstr "已拒绝"
1118
-
1119
- #: ../features/admin-approval/admin-approval.php:160
1120
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1121
- msgstr "管理员已拒绝您在 %1$s (%2$s) 的帐号。"
1122
-
1123
- #: ../features/admin-approval/admin-approval.php:177
1124
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1125
- msgstr "<strong>错误</strong>: 您的帐号需要管理员批准后才能登陆使用。"
1126
-
1127
- #: ../features/admin-approval/admin-approval.php:189
1128
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1129
- msgstr "您的帐号在管理员确认前可以使用 \"密码找回\" 功能."
1130
-
1131
- #: ../features/admin-approval/class-admin-approval.php:119
1132
- msgid "View or Edit"
1133
- msgstr "查看或编辑"
1134
-
1135
- #: ../features/admin-approval/class-admin-approval.php:124
1136
- msgid "delete this user?"
1137
- msgstr "删除这个用户?"
1138
-
1139
- #: ../features/admin-approval/class-admin-approval.php:127
1140
- msgid "unapprove this user?"
1141
- msgstr "拒绝这个用户?"
1142
-
1143
- #: ../features/admin-approval/class-admin-approval.php:127
1144
- #: ../features/admin-approval/class-admin-approval.php:234
1145
- msgid "Unapprove"
1146
- msgstr "拒绝"
1147
-
1148
- #: ../features/admin-approval/class-admin-approval.php:129
1149
- msgid "approve this user?"
1150
- msgstr "允许这个用户?"
1151
-
1152
- #: ../features/admin-approval/class-admin-approval.php:129
1153
- #: ../features/admin-approval/class-admin-approval.php:233
1154
- msgid "Approve"
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
-
1169
- #: ../features/admin-approval/class-admin-approval.php:181
1170
- #: ../modules/user-listing/userlisting.php:117
1171
- msgid "Role"
1172
- msgstr "角色"
1173
-
1174
- #: ../features/admin-approval/class-admin-approval.php:182
1175
- #: ../features/email-confirmation/class-email-confirmation.php:155
1176
- msgid "Registered"
1177
- msgstr "已注册"
1178
-
1179
- #: ../features/admin-approval/class-admin-approval.php:183
1180
- msgid "User-status"
1181
- msgstr "用户状态"
1182
-
1183
- #: ../features/admin-approval/class-admin-approval.php:263
1184
- msgid "Do you want to bulk approve the selected users?"
1185
- msgstr "你想批量允许所选用户?"
1186
-
1187
- #: ../features/admin-approval/class-admin-approval.php:271
1188
- msgid "Do you want to bulk unapprove the selected users?"
1189
- msgstr "你想批量拒绝所选用户?"
1190
-
1191
- #: ../features/admin-approval/class-admin-approval.php:277
1192
- msgid "Do you want to bulk delete the selected users?"
1193
- msgstr "你想批量删除所选用户?"
1194
-
1195
- #: ../features/admin-approval/class-admin-approval.php:285
1196
- #: ../features/email-confirmation/class-email-confirmation.php:263
1197
- msgid "Sorry, but you don't have permission to do that!"
1198
- msgstr "抱歉,您没有相应的操作权限!"
1199
-
1200
- #: ../features/admin-approval/class-admin-approval.php:318
1201
- msgid "Approved"
1202
- msgstr "已允许"
1203
-
1204
- #: ../features/admin-approval/class-admin-approval.php:320
1205
- msgid "Unapproved"
1206
- msgstr "已拒绝"
1207
-
1208
- #: ../features/admin-approval/class-admin-approval.php:492
1209
- #: ../features/email-confirmation/class-email-confirmation.php:448
1210
- msgid "All Users"
1211
- msgstr "所有用户"
1212
-
1213
- #: ../features/email-confirmation/class-email-confirmation.php:106
1214
- msgid "delete this user from the _signups table?"
1215
- msgstr "在 the _signups 表单中 删除这个用户?"
1216
-
1217
- #: ../features/email-confirmation/class-email-confirmation.php:107
1218
- msgid "confirm this email yourself?"
1219
- msgstr "确认自己的电子邮件?"
1220
-
1221
- #: ../features/email-confirmation/class-email-confirmation.php:107
1222
- #: ../features/email-confirmation/class-email-confirmation.php:203
1223
- msgid "Confirm Email"
1224
- msgstr "确认电子邮件"
1225
-
1226
- #: ../features/email-confirmation/class-email-confirmation.php:108
1227
- msgid "resend the activation link?"
1228
- msgstr "重新发送激活链接?"
1229
-
1230
- #: ../features/email-confirmation/class-email-confirmation.php:108
1231
- #: ../features/email-confirmation/class-email-confirmation.php:204
1232
- msgid "Resend Activation Email"
1233
- msgstr "发送激活邮件"
1234
-
1235
- #: ../features/email-confirmation/class-email-confirmation.php:234
1236
- msgid "%s couldn't be deleted"
1237
- msgstr "%s 不能删除"
1238
-
1239
- #: ../features/email-confirmation/class-email-confirmation.php:238
1240
- msgid "All users have been successfully deleted"
1241
- msgstr "所有的用户已成功删除"
1242
-
1243
- #: ../features/email-confirmation/class-email-confirmation.php:248
1244
- msgid "The selected users have been activated"
1245
- msgstr "所选的用户已被激活"
1246
-
1247
- #: ../features/email-confirmation/class-email-confirmation.php:259
1248
- msgid "The selected users have had their activation emails resent"
1249
- msgstr "所选用户已经重新发送激活电子邮件"
1250
-
1251
- #: ../features/email-confirmation/class-email-confirmation.php:445
1252
- #: ../features/email-confirmation/email-confirmation.php:47
1253
- msgid "Users with Unconfirmed Email Address"
1254
- msgstr "没经确认邮箱的用户"
1255
-
1256
- #: ../features/email-confirmation/email-confirmation.php:97
1257
- msgid "There was an error performing that action!"
1258
- msgstr "执行操作时出错!"
1259
-
1260
- #: ../features/email-confirmation/email-confirmation.php:105
1261
- msgid "The selected user couldn't be deleted"
1262
- msgstr "所选用户不能删除"
1263
-
1264
- #: ../features/email-confirmation/email-confirmation.php:116
1265
- msgid "Email notification resent to user"
1266
- msgstr "电子邮件通知重发给用户"
1267
-
1268
- #: ../features/email-confirmation/email-confirmation.php:349
1269
- msgid "[%1$s] Activate %2$s"
1270
- msgstr "[%1$s] 激活 %2$s"
1271
-
1272
- #: ../features/email-confirmation/email-confirmation.php:350
1273
- msgid ""
1274
- "To activate your user, please click the following link:\n"
1275
- "\n"
1276
- "%s%s%s\n"
1277
- "\n"
1278
- "After you activate it you will receive yet *another email* with your login."
1279
- msgstr ""
1280
- "要激活你的帐户,请点击下面的链接:\n"
1281
- "\n"
1282
- "%s%s%s \n"
1283
- "\n"
1284
- "当你点击后,您将收到登陆的 *另一封电子邮件* 。"
1285
-
1286
- #: ../features/email-confirmation/email-confirmation.php:388
1287
- #: ../front-end/register.php:68
1288
- msgid "Could not create user!"
1289
- msgstr "无法创建用户!"
1290
-
1291
- #: ../features/email-confirmation/email-confirmation.php:391
1292
- msgid "That username is already activated!"
1293
- msgstr "用户名已经被激活!"
1294
-
1295
- #: ../features/email-confirmation/email-confirmation.php:420
1296
- msgid "There was an error while trying to activate the user"
1297
- msgstr "试图激活用户时出现一个错误"
1298
-
1299
- #: ../features/email-confirmation/email-confirmation.php:458
1300
- #: ../modules/email-customizer/admin-email-customizer.php:73
1301
- msgid "A new subscriber has (been) registered!"
1302
- msgstr "一个新的用户已经(被)注册!"
1303
-
1304
- #: ../features/email-confirmation/email-confirmation.php:461
1305
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1306
- msgstr "新用户在 %1$s.<br/><br/>用户名:%2$s<br/>邮箱:%3$s<br/>"
1307
-
1308
- #: ../features/email-confirmation/email-confirmation.php:466
1309
- 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!"
1310
- msgstr "管理员审批”的功能是注册时激活,所以请记住,你必须批准该用户,他/她才能进行登录!"
1311
-
1312
- #: ../features/email-confirmation/email-confirmation.php:481
1313
- msgid "[%1$s] Your new account information"
1314
- msgstr "[%1$s] 您的新帐户信息"
1315
-
1316
- #: ../features/email-confirmation/email-confirmation.php:484
1317
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1318
- msgstr "欢迎来到 %1$s!<br/><br/><br/>您的用户名是:%2$s 密码是:%3$s"
1319
-
1320
- #: ../features/email-confirmation/email-confirmation.php:489
1321
- #: ../front-end/register.php:103
1322
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1323
- msgstr "需要管理员审核通过才能访问您的帐户。您将收到一封电子邮件。"
1324
-
1325
- #: ../features/login-widget/login-widget.php:10
1326
- msgid "This login widget lets you add a login form in the sidebar."
1327
- msgstr "该登录控件是允许您添加在侧边栏的登录表单。"
1328
-
1329
- #: ../features/login-widget/login-widget.php:15
1330
- msgid "Profile Builder Login Widget"
1331
- msgstr "Profile Builder 登陆小工具"
1332
-
1333
- #: ../front-end/class-formbuilder.php:274 ../front-end/login.php:172
1334
- msgid "Register"
1335
- msgstr "注册"
1336
-
1337
- #: ../features/login-widget/login-widget.php:63
1338
- msgid "Title:"
1339
- msgstr "标题:"
1340
-
1341
- #: ../features/login-widget/login-widget.php:68
1342
- msgid "After login redirect URL (optional):"
1343
- msgstr "登录后的重定向URL(可选):"
1344
-
1345
- #: ../features/login-widget/login-widget.php:73
1346
- msgid "Register page URL (optional):"
1347
- msgstr "注册页面URL(可选):"
1348
-
1349
- #: ../features/login-widget/login-widget.php:78
1350
- msgid "Password Recovery page URL (optional):"
1351
- msgstr "密码恢复页URL(可选):"
1352
-
1353
- #: ../features/upgrades/upgrades-functions.php:91
1354
- #: ../features/upgrades/upgrades-functions.php:134
1355
- msgid "The usernames cannot be changed."
1356
- msgstr "用户名不可更改。"
1357
-
1358
- #: ../front-end/class-formbuilder.php:83
1359
- msgid "Only an administrator can add new users."
1360
- msgstr "只有管理员可以添加新用户。"
1361
-
1362
- #: ../front-end/class-formbuilder.php:93
1363
- msgid "Users can register themselves or you can manually create users here."
1364
- msgstr "用户可以注册自己注册,或您可以在这里手动创建用户。"
1365
-
1366
- #: ../front-end/class-formbuilder.php:96
1367
- msgid "Users cannot currently register themselves, but you can manually create users here."
1368
- msgstr "用户无法自己注册,但你可以在这里手动创建用户。"
1369
-
1370
- #: ../front-end/class-formbuilder.php:108
1371
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
1372
- msgstr "您当前登陆为 %1s。您不需要其它帐号。 %2s"
1373
-
1374
- #: ../front-end/class-formbuilder.php:108
1375
- msgid "Log out of this account."
1376
- msgstr "退出这个帐号。"
1377
-
1378
- #: ../front-end/class-formbuilder.php:108
1379
- msgid "Logout"
1380
- msgstr "退出"
1381
-
1382
- #: ../front-end/class-formbuilder.php:114
1383
- msgid "You must be logged in to edit your profile."
1384
- msgstr "您必须在登陆状态下编辑个人资料。"
1385
-
1386
- #: ../front-end/class-formbuilder.php:137
1387
- msgid "here"
1388
- msgstr "这里"
1389
-
1390
- #: ../front-end/class-formbuilder.php:139
1391
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1392
- msgstr "您很快将会自动重定向。如果你看到这个页面超过 %1$d 秒,请点击 %2$s.%3$s"
1393
-
1394
- #: ../front-end/class-formbuilder.php:224
1395
- msgid "The account %1s has been successfully created!"
1396
- msgstr "帐号 %1s 创建成功!"
1397
-
1398
- #: ../front-end/class-formbuilder.php:227
1399
- #: ../front-end/class-formbuilder.php:233
1400
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1401
- msgstr "访问您的帐号 %1s 前,您需要确认您的邮箱地址。请检查您的邮箱并点击激活连接。"
1402
-
1403
- #: ../front-end/class-formbuilder.php:230
1404
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1405
- msgstr "访问您的帐号 %1s 前,需要管理员审批通过。您将收到邮件。"
1406
-
1407
- #: ../front-end/class-formbuilder.php:243
1408
- msgid "Your profile has been successfully updated!"
1409
- msgstr "个人资料已更新!"
1410
-
1411
- #: ../front-end/class-formbuilder.php:253
1412
- msgid "There was an error in the submitted form"
1413
- msgstr "在递交表单时出错"
1414
-
1415
- #: ../front-end/class-formbuilder.php:274
1416
- msgid "Add User"
1417
- msgstr "所有用户"
1418
-
1419
- #: ../front-end/class-formbuilder.php:277
1420
- msgid "Update"
1421
- msgstr "更新个人资料"
1422
-
1423
- #: ../front-end/class-formbuilder.php:314
1424
- #: ../front-end/extra-fields/extra-fields.php:33
1425
- msgid "The avatar was successfully deleted!"
1426
- msgstr "头像成功删除!"
1427
-
1428
- #: ../front-end/class-formbuilder.php:314
1429
- #: ../front-end/extra-fields/extra-fields.php:35
1430
- msgid "The following attachment was successfully deleted:"
1431
- msgstr "成功删除以下附件:"
1432
-
1433
- #: ../front-end/class-formbuilder.php:326
1434
- msgid "Send these credentials via email."
1435
- msgstr "通过电子邮件发送这些凭据。"
1436
-
1437
- #: ../front-end/extra-fields/extra-fields.php:94 ../front-end/login.php:72
1438
- #: ../front-end/login.php:79 ../front-end/login.php:89
1439
- #: ../front-end/recover.php:17 ../front-end/recover.php:206
1440
- msgid "ERROR"
1441
- msgstr "错误"
1442
-
1443
- #: ../front-end/login.php:72
1444
- msgid "The password you entered is incorrect."
1445
- msgstr "你输入的密码不正确。"
1446
-
1447
- #: ../front-end/login.php:73 ../front-end/login.php:80
1448
- msgid "Password Lost and Found."
1449
- msgstr "密码遗失。"
1450
-
1451
- #: ../front-end/login.php:73 ../front-end/login.php:80
1452
- msgid "Lost your password"
1453
- msgstr "忘记您的密码"
1454
-
1455
- #: ../front-end/login.php:89
1456
- msgid "Both fields are empty."
1457
- msgstr "字段均空"
1458
-
1459
- #: ../front-end/login.php:199
1460
- msgid "You are currently logged in as %1$s. %2$s"
1461
- msgstr "您当前登录为 %1$s. %2$s"
1462
-
1463
- #: ../front-end/login.php:199
1464
- msgid "Log out of this account"
1465
- msgstr "退出这个帐户"
1466
-
1467
- #: ../front-end/login.php:199
1468
- msgid "Log out"
1469
- msgstr "退出"
1470
-
1471
- #: ../front-end/recover.php:17
1472
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1473
- msgstr "您的帐户需被管理员审批后才可使用 \"密码重置\" 功能。"
1474
-
1475
- #: ../front-end/recover.php:91
1476
- msgid "Reset Password"
1477
- msgstr "重置密码"
1478
-
1479
- #: ../front-end/recover.php:111
1480
- msgid "Please enter your username or email address."
1481
- msgstr "请输入您的用户名或电子邮件地址。"
1482
-
1483
- #: ../front-end/recover.php:112
1484
- msgid "You will receive a link to create a new password via email."
1485
- msgstr "你将收到一封创建一个新密码连接的电子邮件。"
1486
-
1487
- #: ../front-end/recover.php:119
1488
- msgid "Username or E-mail"
1489
- msgstr "用户或邮箱地址"
1490
-
1491
- #: ../front-end/recover.php:125
1492
- msgid "Get New Password"
1493
- msgstr "获取新密码"
1494
-
1495
- #: ../front-end/recover.php:164
1496
- msgid "The username entered wasn't found in the database!"
1497
- msgstr "输入的用户名不存在数据库中!"
1498
-
1499
- #: ../front-end/recover.php:164
1500
- msgid "Please check that you entered the correct username."
1501
- msgstr "请检查您已输入正确的用户名。"
1502
-
1503
- #: ../front-end/recover.php:179
1504
- msgid "Check your e-mail for the confirmation link."
1505
- msgstr "检查你的邮件中的确认链接。"
1506
-
1507
- #: ../front-end/recover.php:194
1508
- 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"
1509
- msgstr "有人要求以下帐号密码进行重置: <b>%1$s</b><br/>如果不是您自己的操作,请忽略。<br/>需要重置您的密码的话,请点击 :%2$s"
1510
-
1511
- #: ../front-end/recover.php:197
1512
- msgid "Password Reset from \"%1$s\""
1513
- msgstr "从 \"%1$s\" 密码重置"
1514
-
1515
- #: ../front-end/recover.php:206
1516
- msgid "There was an error while trying to send the activation link to %1$s!"
1517
- msgstr "发送激活链接时出现错误 %1$s!"
1518
-
1519
- #: ../front-end/recover.php:215
1520
- msgid "The email address entered wasn't found in the database!"
1521
- msgstr "邮箱地址无法在数据库中找到"
1522
-
1523
- #: ../front-end/recover.php:215
1524
- msgid "Please check that you entered the correct email address."
1525
- msgstr "请检查您输入(正确)电子邮件地址。"
1526
-
1527
- #: ../front-end/default-fields/password/password.php:44
1528
- #: ../front-end/recover.php:231
1529
- msgid "<br/>The password must have the minimum length of "
1530
- msgstr "<br/>密码必须的最小长度"
1531
-
1532
- #: ../front-end/default-fields/password/password.php:48
1533
- #: ../front-end/recover.php:235
1534
- msgid "<br/>The password must have a minimum strength of "
1535
- msgstr "<br/>密码必须有至少强度"
1536
-
1537
- #: ../front-end/recover.php:242
1538
- msgid "Your password has been successfully changed!"
1539
- msgstr "您已经成功地更改密码!"
1540
-
1541
- #: ../front-end/recover.php:256
1542
- msgid "You have successfully reset your password to: %1$s"
1543
- msgstr "您已经成功地将密码更改成:%1$s"
1544
-
1545
- #: ../front-end/recover.php:259 ../front-end/recover.php:273
1546
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
1547
- msgstr "密码成功重置 %1$s 在 \"%2$s\""
1548
-
1549
- #: ../front-end/recover.php:270
1550
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1551
- msgstr "%1$s 请求通过密码重置功能修改密码。<br/>他的密码是:%2$s"
1552
-
1553
- #: ../front-end/recover.php:289
1554
- msgid "The entered passwords don't match!"
1555
- msgstr "输入的密码不匹配!"
1556
-
1557
- #: ../front-end/recover.php:334
1558
- msgid "ERROR:"
1559
- msgstr "错误:"
1560
-
1561
- #: ../front-end/recover.php:334
1562
- msgid "Invalid key!"
1563
- msgstr "无效密钥!"
1564
-
1565
- #: ../front-end/register.php:46
1566
- msgid "Invalid activation key!"
1567
- msgstr "无效的激活密钥!"
1568
-
1569
- #: ../front-end/register.php:50
1570
- msgid "This username is now active!"
1571
- msgstr "这个用户名现在被激活!"
1572
-
1573
- #: ../front-end/register.php:71
1574
- msgid "This username is already activated!"
1575
- msgstr "这个用户名已经被激活!"
1576
-
1577
- #: ../front-end/register.php:102
1578
- msgid "Your email was successfully confirmed."
1579
- msgstr "您的电子邮件已确认。"
1580
-
1581
- #: ../front-end/register.php:112
1582
- msgid "There was an error while trying to activate the user."
1583
- msgstr "尝试激活用户时出现一个错误。"
1584
-
1585
- #: ../front-end/default-fields/email/email.php:42
1586
- msgid "The email you entered is not a valid email address."
1587
- msgstr "您输入的电子邮件不是一个有效的电子邮件地址。"
1588
-
1589
- #: ../front-end/default-fields/email/email.php:49
1590
- msgid "This email is already reserved to be used soon."
1591
- msgstr "此邮箱地址已被保留使用。"
1592
-
1593
- #: ../front-end/default-fields/email/email.php:49
1594
- #: ../front-end/default-fields/email/email.php:55
1595
- #: ../front-end/default-fields/email/email.php:62
1596
- #: ../front-end/default-fields/username/username.php:44
1597
- #: ../front-end/default-fields/username/username.php:51
1598
- msgid "Please try a different one!"
1599
- msgstr "请尝试一个不同的!"
1600
-
1601
- #: ../front-end/default-fields/email/email.php:55
1602
- #: ../front-end/default-fields/email/email.php:62
1603
- msgid "This email is already in use."
1604
- msgstr "电子邮件已被使用。"
1605
-
1606
- #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1607
- #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1608
- msgid "The passwords do not match"
1609
- msgstr "密码不匹配"
1610
-
1611
- #: ../front-end/default-fields/username/username.php:44
1612
- msgid "This username already exists."
1613
- msgstr "用户名已经存在。"
1614
-
1615
- #: ../front-end/default-fields/username/username.php:51
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
1661
- #: ../front-end/extra-fields/input/input.php:28
1662
- #: ../front-end/extra-fields/radio/radio.php:42
1663
- #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1664
- #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1665
- #: ../front-end/extra-fields/select/select.php:44
1666
- #: ../front-end/extra-fields/textarea/textarea.php:28
1667
- #: ../front-end/extra-fields/upload/upload.php:62
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
-
1728
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
1729
- msgid "Could not open socket!"
1730
- msgstr "无法打开 socket!"
1731
-
1732
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:75
1733
- msgid "To use reCAPTCHA you must get an API key from"
1734
- msgstr "使用 reCAPTCHA 你必须获得一个API密钥"
1735
-
1736
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:114
1737
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
1738
- msgstr "安全原因,您必须通过远程IP到reCAPTCHA!"
1739
-
1740
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:171
1741
- msgid "To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed!"
1742
- msgstr "使用 reCAPTCHA mailhide,您需要安装 mcrypt PHP 模块!"
1743
-
1744
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:187
1745
- msgid "To use reCAPTCHA Mailhide, you have to sign up for a public and private key; you can do so at"
1746
- msgstr "使用 reCAPTCHA mailhide,你必须注册一个公共和私人密钥; 你可以这样做"
1747
-
1748
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:254
1749
- msgid "To use reCAPTCHA you must get an API public key from:"
1750
- msgstr "使用reCAPTCHA,你必须得到一个API公开密钥:"
1751
-
1752
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:257
1753
- msgid "To use reCAPTCHA you must get an API private key from:"
1754
- msgstr "使用reCAPTCHA,你必须得到一个API私人密钥:"
1755
-
1756
- #: ../front-end/extra-fields/upload/upload.php:35
1757
- msgid "Current file: No uploaded attachment"
1758
- msgstr "当前文件:没有上传附件"
1759
-
1760
- #: ../front-end/extra-fields/upload/upload.php:39
1761
- #: ../front-end/extra-fields/upload/upload.php:48
1762
- #: ../front-end/extra-fields/upload/upload.php:71
1763
- #: ../front-end/extra-fields/upload/upload.php:75
1764
- #: ../front-end/extra-fields/upload/upload.php:77
1765
- msgid "Current file"
1766
- msgstr "当前文件"
1767
-
1768
- #: ../front-end/extra-fields/upload/upload.php:42
1769
- #: ../front-end/extra-fields/upload/upload.php:51
1770
- #: ../front-end/extra-fields/upload/upload.php:75
1771
- #: ../front-end/extra-fields/upload/upload.php:77
1772
- msgid "Click to see the current attachment"
1773
- msgstr "点击查看当前附件"
1774
-
1775
- #: ../front-end/extra-fields/upload/upload.php:44
1776
- #: ../front-end/extra-fields/upload/upload.php:75
1777
- msgid "The attachment can't be deleted (It was marked as required by the administrator)"
1778
- msgstr "附件不能删除(被标记为管理员权限)"
1779
-
1780
- #: ../front-end/extra-fields/upload/upload.php:53
1781
- #: ../front-end/extra-fields/upload/upload.php:77
1782
- msgid "Are you sure you want to delete this attachment?"
1783
- msgstr "您确定要删除此附件吗?"
1784
-
1785
- #: ../front-end/extra-fields/upload/upload.php:54
1786
- #: ../front-end/extra-fields/upload/upload.php:77
1787
- msgid "Click to delete the current attachment"
1788
- msgstr "单击删除当前附件"
1789
-
1790
- #: ../front-end/extra-fields/upload/upload.php:71
1791
- msgid "No uploaded attachment"
1792
- msgstr "没有上传附件"
1793
-
1794
- #: ../front-end/extra-fields/upload/upload.php:164
1795
- msgid "The extension of the file is not allowed"
1796
- msgstr "文件扩展名不允许"
1797
-
1798
- #: ../front-end/extra-fields/upload/upload.php:186
1799
- msgid "The file could only partially be uploaded"
1800
- msgstr "该文件只能被分段上传"
1801
-
1802
- #: ../front-end/extra-fields/upload/upload.php:201
1803
- msgid "This field wasn't updated because an unknown error occured"
1804
- msgstr "发生未知错误导致这个字段没有更新"
1805
-
1806
- #: ../modules/modules.php:11 ../modules/modules.php:80
1807
- msgid "Modules"
1808
- msgstr "模块"
1809
-
1810
- #: ../modules/modules.php:81
1811
- msgid "Here you can activate / deactivate available modules for Profile Builder."
1812
- msgstr "在这里你可以激活/停用 Profile Builder 模块。"
1813
-
1814
- #: ../modules/modules.php:91
1815
- msgid "Name/Description"
1816
- msgstr "名称/描述"
1817
-
1818
- #: ../modules/modules.php:92
1819
- msgid "Status"
1820
- msgstr "状态"
1821
-
1822
- #: ../modules/custom-redirects/custom-redirects.php:48
1823
- #: ../modules/custom-redirects/custom-redirects.php:58
1824
- #: ../modules/custom-redirects/custom-redirects.php:68
1825
- #: ../modules/custom-redirects/custom-redirects.php:94
1826
- #: ../modules/custom-redirects/custom-redirects.php:104
1827
- #: ../modules/custom-redirects/custom-redirects.php:114
1828
- #: ../modules/custom-redirects/custom-redirects.php:124
1829
- #: ../modules/modules.php:99 ../modules/modules.php:106
1830
- #: ../modules/modules.php:113 ../modules/modules.php:120
1831
- #: ../modules/modules.php:127 ../modules/modules.php:134
1832
- msgid "Active"
1833
- msgstr "激活"
1834
-
1835
- #: ../modules/custom-redirects/custom-redirects.php:49
1836
- #: ../modules/custom-redirects/custom-redirects.php:59
1837
- #: ../modules/custom-redirects/custom-redirects.php:69
1838
- #: ../modules/custom-redirects/custom-redirects.php:95
1839
- #: ../modules/custom-redirects/custom-redirects.php:105
1840
- #: ../modules/custom-redirects/custom-redirects.php:115
1841
- #: ../modules/custom-redirects/custom-redirects.php:125
1842
- #: ../modules/modules.php:100 ../modules/modules.php:107
1843
- #: ../modules/modules.php:114 ../modules/modules.php:121
1844
- #: ../modules/modules.php:128 ../modules/modules.php:135
1845
- msgid "Inactive"
1846
- msgstr "关闭"
1847
-
1848
- #: ../modules/email-customizer/admin-email-customizer.php:11
1849
- #: ../modules/email-customizer/admin-email-customizer.php:12
1850
- #: ../modules/modules.php:118
1851
- msgid "Admin Email Customizer"
1852
- msgstr "管理员邮件定制"
1853
-
1854
- #: ../modules/email-customizer/user-email-customizer.php:11
1855
- #: ../modules/email-customizer/user-email-customizer.php:12
1856
- #: ../modules/modules.php:125
1857
- msgid "User Email Customizer"
1858
- msgstr "用户邮件定制"
1859
-
1860
- #: ../modules/class-mustache-templates/class-mustache-templates.php:242
1861
- msgid "Save"
1862
- msgstr "保存"
1863
-
1864
- #: ../modules/custom-redirects/custom-redirects.php:35
1865
- msgid "Redirects on custom page requests:"
1866
- msgstr "自定义页面重定向请求:"
1867
-
1868
- #: ../modules/custom-redirects/custom-redirects.php:39
1869
- #: ../modules/custom-redirects/custom-redirects.php:85
1870
- msgid "Action"
1871
- msgstr "动作"
1872
-
1873
- #: ../modules/custom-redirects/custom-redirects.php:40
1874
- #: ../modules/custom-redirects/custom-redirects.php:86
1875
- #: ../modules/multiple-forms/edit-profile-forms.php:206
1876
- #: ../modules/multiple-forms/register-forms.php:230
1877
- msgid "Redirect"
1878
- msgstr "重定向"
1879
-
1880
- #: ../modules/custom-redirects/custom-redirects.php:41
1881
- #: ../modules/custom-redirects/custom-redirects.php:87
1882
- #: ../modules/multiple-forms/edit-profile-forms.php:208
1883
- #: ../modules/multiple-forms/register-forms.php:232
1884
- msgid "URL"
1885
- msgstr "网址"
1886
-
1887
- #: ../modules/custom-redirects/custom-redirects.php:46
1888
- msgid "After Registration:"
1889
- msgstr "注册后:"
1890
-
1891
- #: ../modules/custom-redirects/custom-redirects.php:56
1892
- msgid "After Login:"
1893
- msgstr "登录后:"
1894
-
1895
- #: ../modules/custom-redirects/custom-redirects.php:66
1896
- msgid "Recover Password (*)"
1897
- msgstr "重置密码 (*)"
1898
-
1899
- #: ../modules/custom-redirects/custom-redirects.php:77
1900
- 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."
1901
- msgstr "当激活这个功能,当用户进入在 WordPress 默认的密码恢复页与 \"忘记密码?\" 连接将重定向使用 Profile Builder 前端登陆页面。"
1902
-
1903
- #: ../modules/custom-redirects/custom-redirects.php:81
1904
- msgid "Redirects on default WordPress page requests:"
1905
- msgstr "WordPress 默认页面的重定向:"
1906
-
1907
- #: ../modules/custom-redirects/custom-redirects.php:92
1908
- msgid "Default WordPress Login Page"
1909
- msgstr "WordPress 默认登录页面的重定向:"
1910
-
1911
- #: ../modules/custom-redirects/custom-redirects.php:102
1912
- msgid "Default WordPress Logout Page"
1913
- msgstr "WordPress 默认退出页面的重定向:"
1914
-
1915
- #: ../modules/custom-redirects/custom-redirects.php:112
1916
- msgid "Default WordPress Register Page"
1917
- msgstr "WordPress 默认注册页面的重定向:"
1918
-
1919
- #: ../modules/custom-redirects/custom-redirects.php:122
1920
- msgid "Default WordPress Dashboard (*)"
1921
- msgstr "WordPress 默认后台的重定向:"
1922
-
1923
- #: ../modules/custom-redirects/custom-redirects.php:133
1924
- msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
1925
- msgstr "将所有用户角色,除具有管理员权限用户(管理)。"
1926
-
1927
- #: ../modules/email-customizer/admin-email-customizer.php:38
1928
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
1929
- msgstr "这些设置也复制在\"用户邮件定制\" 设置页中保存。"
1930
-
1931
- #: ../modules/email-customizer/admin-email-customizer.php:41
1932
- #: ../modules/email-customizer/user-email-customizer.php:41
1933
- msgid "From (name)"
1934
- msgstr "来自(名子)"
1935
-
1936
- #: ../modules/email-customizer/admin-email-customizer.php:49
1937
- #: ../modules/email-customizer/user-email-customizer.php:49
1938
- msgid "From (reply-to email)"
1939
- msgstr "来自(回复邮件)"
1940
-
1941
- #: ../modules/email-customizer/admin-email-customizer.php:57
1942
- #: ../modules/email-customizer/user-email-customizer.php:57
1943
- msgid "Common Settings"
1944
- msgstr "常用设置"
1945
-
1946
- #: ../modules/email-customizer/admin-email-customizer.php:60
1947
- msgid ""
1948
- "\n"
1949
- "<p>New subscriber on {{site_name}}.</p>\n"
1950
- "<p>Username:{{username}}</p>\n"
1951
- "<p>E-mail:{{user_email}}</p>\n"
1952
- msgstr ""
1953
- "\n"
1954
- "<p>新用户在 {{site_name}}.</p>\n"
1955
- "<p>用户名:{{username}}</p>\n"
1956
- "<p>邮箱:{{user_email}}</p>\n"
1957
-
1958
- #: ../modules/email-customizer/admin-email-customizer.php:69
1959
- #: ../modules/email-customizer/admin-email-customizer.php:99
1960
- #: ../modules/email-customizer/user-email-customizer.php:71
1961
- #: ../modules/email-customizer/user-email-customizer.php:99
1962
- #: ../modules/email-customizer/user-email-customizer.php:128
1963
- #: ../modules/email-customizer/user-email-customizer.php:155
1964
- #: ../modules/email-customizer/user-email-customizer.php:183
1965
- msgid "Email Subject"
1966
- msgstr "邮件主题"
1967
-
1968
- #: ../modules/email-customizer/admin-email-customizer.php:84
1969
- msgid "Default Registration & Registration with Email Confirmation"
1970
- msgstr "默认注册与邮件确认注册"
1971
-
1972
- #: ../modules/email-customizer/admin-email-customizer.php:87
1973
- msgid ""
1974
- "\n"
1975
- "<p>New subscriber on {{site_name}}.</p>\n"
1976
- "<p>Username:{{username}}</p>\n"
1977
- "<p>E-mail:{{user_email}}</p>\n"
1978
- "<p>The Admin Approval feature was activated at the time of registration,\n"
1979
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
1980
- msgstr ""
1981
- "\n"
1982
- "<p>新用户在 {{site_name}}.</p>\n"
1983
- "<p>用户名:{{username}}</p>\n"
1984
- "<p>邮箱:{{user_email}}</p>\n"
1985
- "<p>管理审核功能已被激活,\n"
1986
- "请记住,您需要批准这个用户,他才能登陆!</p>\n"
1987
-
1988
- #: ../modules/email-customizer/admin-email-customizer.php:114
1989
- #: ../modules/email-customizer/user-email-customizer.php:143
1990
- msgid "Registration with Admin Approval"
1991
- msgstr "注册需管理员审批"
1992
-
1993
- #: ../modules/email-customizer/email-customizer.php:7
1994
- msgid "Available Tags"
1995
- msgstr "可用标签"
1996
-
1997
- #: ../modules/email-customizer/email-customizer.php:11
1998
- msgid "User Meta"
1999
- msgstr "User Meta"
2000
-
2001
- #: ../modules/email-customizer/email-customizer.php:21
2002
- msgid "Site Url"
2003
- msgstr "网站地址"
2004
-
2005
- #: ../modules/email-customizer/email-customizer.php:22
2006
- msgid "Site Name"
2007
- msgstr "网站名称"
2008
-
2009
- #: ../modules/email-customizer/email-customizer.php:25
2010
- #: ../modules/user-listing/userlisting.php:126
2011
- msgid "User Id"
2012
- msgstr "用户名称"
2013
-
2014
- #: ../modules/email-customizer/email-customizer.php:32
2015
- msgid "Reply To"
2016
- msgstr "回复"
2017
-
2018
- #: ../modules/email-customizer/email-customizer.php:35
2019
- msgid "Activation Key"
2020
- msgstr "激活密钥"
2021
-
2022
- #: ../modules/email-customizer/email-customizer.php:36
2023
- msgid "Activation Url"
2024
- msgstr "激活URL"
2025
-
2026
- #: ../modules/email-customizer/email-customizer.php:37
2027
- msgid "Activation Link"
2028
- msgstr "激活链接"
2029
-
2030
- #: ../modules/email-customizer/user-email-customizer.php:64
2031
- msgid ""
2032
- "\n"
2033
- "<h3>Welcome to {{site_name}}!</h3>\n"
2034
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2035
- msgstr ""
2036
- "\n"
2037
- "<h3>欢迎来到 {{site_name}}!</h3>\n"
2038
- "<p>您的用户名是:{{username}} 密码是:{{password}}</p>\n"
2039
-
2040
- #: ../modules/email-customizer/user-email-customizer.php:85
2041
- msgid "Default Registration"
2042
- msgstr "默认注册"
2043
-
2044
- #: ../modules/email-customizer/user-email-customizer.php:91
2045
- msgid ""
2046
- "\n"
2047
- "<p>To activate your user, please click the following link:<br/>\n"
2048
- "{{{activation_link}}}</p>\n"
2049
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
2050
- msgstr ""
2051
- "\n"
2052
- "<p>激活您的帐户,请点击下面连接:<br/>\n"
2053
- "{{{activation_link}}}</p>\n"
2054
- "<p>在您激活完成后,将会收到另外一封凭据邮件。</p>\n"
2055
-
2056
- #: ../modules/email-customizer/user-email-customizer.php:103
2057
- msgid "[{{site_name}}] Activate {{username}}"
2058
- msgstr "[{{site_name}}] 激活 {{username}}"
2059
-
2060
- #: ../modules/email-customizer/user-email-customizer.php:114
2061
- msgid "Registration with Email Confirmation"
2062
- msgstr "电子邮件确认注册"
2063
-
2064
- #: ../modules/email-customizer/user-email-customizer.php:120
2065
- msgid ""
2066
- "\n"
2067
- "<h3>Welcome to {{site_name}}!</h3>\n"
2068
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2069
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2070
- msgstr ""
2071
- "\n"
2072
- "<h3>欢迎来到 {{site_name}}!</h3>\n"
2073
- "<p>您的用户名:{{username}} 密码:{{password}}</p>\n"
2074
- "<p>在您访问您的帐号前,需要管理审批。您将会收邮件通知。</p>\n"
2075
-
2076
- #: ../modules/email-customizer/user-email-customizer.php:132
2077
- msgid "A new account has been created for you on {{site_name}}"
2078
- msgstr "一个新的帐号在您的 {{site_name}} 上建立"
2079
-
2080
- #: ../modules/email-customizer/user-email-customizer.php:148
2081
- msgid ""
2082
- "\n"
2083
- "<h3>Good News!</h3>\n"
2084
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2085
- msgstr ""
2086
- "\n"
2087
- "<h3>好消息 !</h3>\n"
2088
- "<p>管理员已经批准您的帐号: {{username}} 在 {{site_name}}.</p>\n"
2089
-
2090
- #: ../modules/email-customizer/user-email-customizer.php:159
2091
- msgid "Your account on {{site_name}} has been approved!"
2092
- msgstr "您在 {{site_name}} 的帐号已经被通过!"
2093
-
2094
- #: ../modules/email-customizer/user-email-customizer.php:170
2095
- msgid "User Approval Notification"
2096
- msgstr "用户批准通知"
2097
-
2098
- #: ../modules/email-customizer/user-email-customizer.php:175
2099
- msgid ""
2100
- "\n"
2101
- "<h3>Hello,</h3>\n"
2102
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2103
- msgstr ""
2104
- "\n"
2105
- "<h3>您好,</h3>\n"
2106
- "<p>抱歉,管理员未批准您的帐号: {{username}} 在 {{site_name}}.</p>\n"
2107
-
2108
- #: ../modules/email-customizer/user-email-customizer.php:187
2109
- msgid "Your account on {{site_name}} has been unapproved!"
2110
- msgstr "您在 {{site_name}} 的帐号被拒绝!"
2111
-
2112
- #: ../modules/email-customizer/user-email-customizer.php:198
2113
- msgid "Unapproved User Notification"
2114
- msgstr "被拒绝的用户通知"
2115
-
2116
- #: ../modules/multiple-forms/edit-profile-forms.php:11
2117
- #: ../modules/multiple-forms/edit-profile-forms.php:12
2118
- msgid "Edit-profile Form"
2119
- msgstr "编辑资料表单"
2120
-
2121
- #: ../modules/multiple-forms/edit-profile-forms.php:13
2122
- #: ../modules/multiple-forms/register-forms.php:13
2123
- #: ../modules/user-listing/userlisting.php:13
2124
- msgid "Add New"
2125
- msgstr "新增加"
2126
-
2127
- #: ../modules/multiple-forms/edit-profile-forms.php:14
2128
- msgid "Add new Edit-profile Form"
2129
- msgstr "添加新的编辑资料表单"
2130
-
2131
- #: ../modules/multiple-forms/edit-profile-forms.php:15
2132
- msgid "Edit the Edit-profile Forms"
2133
- msgstr "编辑的编辑个人资料表单"
2134
-
2135
- #: ../modules/multiple-forms/edit-profile-forms.php:16
2136
- msgid "New Edit-profile Form"
2137
- msgstr "新的编辑资料表单"
2138
-
2139
- #: ../modules/multiple-forms/edit-profile-forms.php:17
2140
- #: ../modules/multiple-forms/edit-profile-forms.php:23
2141
- msgid "Edit-profile Forms"
2142
- msgstr "编辑资料表单"
2143
-
2144
- #: ../modules/multiple-forms/edit-profile-forms.php:18
2145
- msgid "View the Edit-profile Form"
2146
- msgstr "查看编辑资料表单"
2147
-
2148
- #: ../modules/multiple-forms/edit-profile-forms.php:19
2149
- msgid "Search the Edit-profile Forms"
2150
- msgstr "搜索编辑资料表单"
2151
-
2152
- #: ../modules/multiple-forms/edit-profile-forms.php:20
2153
- msgid "No Edit-profile Form found"
2154
- msgstr "没有编辑个人资料表单"
2155
-
2156
- #: ../modules/multiple-forms/edit-profile-forms.php:21
2157
- msgid "No Edit-profile Forms found in trash"
2158
- msgstr "在回收站中没有编辑个人资料表单"
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
-
2196
- #: ../modules/multiple-forms/edit-profile-forms.php:206
2197
- #: ../modules/multiple-forms/register-forms.php:230
2198
- msgid "Whether to redirect the user to a specific page or not"
2199
- msgstr "是否将用户重定向到特定页"
2200
-
2201
- #: ../modules/multiple-forms/edit-profile-forms.php:207
2202
- #: ../modules/multiple-forms/register-forms.php:231
2203
- msgid "Display Messages"
2204
- msgstr "显示消息"
2205
-
2206
- #: ../modules/multiple-forms/edit-profile-forms.php:207
2207
- #: ../modules/multiple-forms/register-forms.php:231
2208
- msgid "Allowed time to display any success messages (in seconds)"
2209
- msgstr "允许用时间去显示成功信息提示(秒)"
2210
-
2211
- #: ../modules/multiple-forms/edit-profile-forms.php:208
2212
- 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"
2213
- msgstr "指定页面用于用户一旦更新他们的资料使用这个表单转向<br/>使用这种格式: http://www.mysite.com"
2214
-
2215
- #: ../modules/multiple-forms/edit-profile-forms.php:215
2216
- msgid "After Profile Update..."
2217
- msgstr "档案更新后…"
2218
-
2219
- #: ../modules/multiple-forms/edit-profile-forms.php:239
2220
- #: ../modules/multiple-forms/register-forms.php:260
2221
- msgid "Add New Field to the List"
2222
- msgstr "添加新字段到列表"
2223
-
2224
- #: ../modules/multiple-forms/edit-profile-forms.php:243
2225
- #: ../modules/multiple-forms/register-forms.php:264
2226
- msgid "Choose one of the supported fields you manage <a href=\""
2227
- msgstr "选择一个支持字段去管理 <a href=\""
2228
-
2229
- #: ../modules/multiple-forms/multiple-forms.php:407
2230
- msgid "<pre>Title (Type)</pre>"
2231
- msgstr "<pre>标题 (类型)</pre>"
2232
-
2233
- #: ../modules/multiple-forms/multiple-forms.php:233
2234
- msgid "You need to specify the title of the form before creating it"
2235
- msgstr "你需要在创建前指定表单的标题"
2236
-
2237
- #: ../modules/multiple-forms/register-forms.php:11
2238
- #: ../modules/multiple-forms/register-forms.php:12
2239
- msgid "Registration Form"
2240
- msgstr "注册表单"
2241
-
2242
- #: ../modules/multiple-forms/register-forms.php:14
2243
- msgid "Add new Registration Form"
2244
- msgstr "增加新的注册表单"
2245
-
2246
- #: ../modules/multiple-forms/register-forms.php:15
2247
- msgid "Edit the Registration Forms"
2248
- msgstr "编缉注册表单"
2249
-
2250
- #: ../modules/multiple-forms/register-forms.php:16
2251
- msgid "New Registration Form"
2252
- msgstr "新注册表单"
2253
-
2254
- #: ../modules/multiple-forms/register-forms.php:17
2255
- #: ../modules/multiple-forms/register-forms.php:23
2256
- msgid "Registration Forms"
2257
- msgstr "注册表单"
2258
-
2259
- #: ../modules/multiple-forms/register-forms.php:18
2260
- msgid "View the Registration Form"
2261
- msgstr "查看注册表单"
2262
-
2263
- #: ../modules/multiple-forms/register-forms.php:19
2264
- msgid "Search the Registration Forms"
2265
- msgstr "搜索注册表单"
2266
-
2267
- #: ../modules/multiple-forms/register-forms.php:20
2268
- msgid "No Registration Form found"
2269
- msgstr "没有找到注册表单"
2270
-
2271
- #: ../modules/multiple-forms/register-forms.php:21
2272
- msgid "No Registration Forms found in trash"
2273
- msgstr "在回收站没有找到注册表单"
2274
-
2275
- #: ../modules/multiple-forms/register-forms.php:219
2276
- msgid "Default Role"
2277
- msgstr "默认角色"
2278
-
2279
- #: ../modules/multiple-forms/register-forms.php:228
2280
- msgid "Set Role"
2281
- msgstr "设置角色"
2282
-
2283
- #: ../modules/multiple-forms/register-forms.php:228
2284
- 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"
2285
- msgstr "选择用户注册后的角色<br/>如无指定,将默认使用 WordPress 的设定"
2286
-
2287
- #: ../modules/multiple-forms/register-forms.php:229
2288
- msgid "Automatically Log In"
2289
- msgstr "自动登录"
2290
-
2291
- #: ../modules/multiple-forms/register-forms.php:229
2292
- 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"
2293
- msgstr "是否记录用户新注册 <br/> 只使用于单网站,并且没有开启 \"管理员审批\" 与 \"邮箱确认\" 功能 <br/>警告:缓存注册表单会让自动登录不正常"
2294
-
2295
- #: ../modules/multiple-forms/register-forms.php:232
2296
- 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"
2297
- msgstr "指定用户注册页面地址将被重定向<br/>使用下列格式: http://www.mysite.com"
2298
-
2299
- #: ../modules/multiple-forms/register-forms.php:238
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
-
2311
- #: ../modules/user-listing/userlisting.php:14
2312
- msgid "Add new User Listing"
2313
- msgstr "增加新的用户列表"
2314
-
2315
- #: ../modules/user-listing/userlisting.php:15
2316
- msgid "Edit the User Listing"
2317
- msgstr "编辑用户列表"
2318
-
2319
- #: ../modules/user-listing/userlisting.php:16
2320
- msgid "New User Listing"
2321
- msgstr "新的用户列表"
2322
-
2323
- #: ../modules/user-listing/userlisting.php:18
2324
- msgid "View the User Listing"
2325
- msgstr "查看用户列表"
2326
-
2327
- #: ../modules/user-listing/userlisting.php:19
2328
- msgid "Search the User Listing"
2329
- msgstr "搜索用户列表"
2330
-
2331
- #: ../modules/user-listing/userlisting.php:20
2332
- msgid "No User Listing found"
2333
- msgstr "没有找到用户列表"
2334
-
2335
- #: ../modules/user-listing/userlisting.php:21
2336
- msgid "No User Listing found in trash"
2337
- msgstr "没有在回收站找到用户列表"
2338
-
2339
- #: ../modules/user-listing/userlisting.php:97
2340
- msgid "Display name as"
2341
- msgstr "显示名称为"
2342
-
2343
- #: ../modules/user-listing/userlisting.php:110
2344
- msgid "Url"
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
-
2357
- #: ../modules/user-listing/userlisting.php:123
2358
- msgid "More Info"
2359
- msgstr "更多信息"
2360
-
2361
- #: ../modules/user-listing/userlisting.php:124
2362
- msgid "More Info Url"
2363
- msgstr "更多信息网址"
2364
-
2365
- #: ../modules/user-listing/userlisting.php:125
2366
- msgid "Avatar or Gravatar"
2367
- msgstr "头像或 Gravatar"
2368
-
2369
- #: ../modules/user-listing/userlisting.php:153
2370
- msgid "Meta Variables"
2371
- msgstr "Meta 变量"
2372
-
2373
- #: ../modules/user-listing/userlisting.php:159
2374
- msgid "Sort Variables"
2375
- msgstr "分类变量"
2376
-
2377
- #: ../modules/user-listing/userlisting.php:163
2378
- #: ../modules/user-listing/userlisting.php:190
2379
- msgid "Extra Functions"
2380
- msgstr "额外功能"
2381
-
2382
- #: ../modules/user-listing/userlisting.php:165
2383
- msgid "Pagination"
2384
- msgstr "分页"
2385
-
2386
- #: ../modules/user-listing/userlisting.php:166
2387
- msgid "Search all Fields"
2388
- msgstr "搜索所有字段"
2389
-
2390
- #: ../modules/user-listing/userlisting.php:192
2391
- msgid "Go Back Link"
2392
- msgstr "返回链接"
2393
-
2394
- #: ../modules/user-listing/userlisting.php:210
2395
- msgid "All-userlisting Template"
2396
- msgstr "所有用户列表模板"
2397
-
2398
- #: ../modules/user-listing/userlisting.php:213
2399
- msgid "Single-userlisting Template"
2400
- msgstr "单用户列表模板"
2401
-
2402
- #: ../modules/user-listing/userlisting.php:330
2403
- msgid "You do not have permission to view this user list"
2404
- msgstr "您没有权限查看该用户列表"
2405
-
2406
- #: ../modules/user-listing/userlisting.php:343
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 "&laquo;&laquo; First"
2465
- msgstr "&laquo;&laquo; 首页"
2466
-
2467
- #: ../modules/user-listing/userlisting.php:838
2468
- msgid "&laquo; Prev"
2469
- msgstr "&laquo; 上一页"
2470
-
2471
- #: ../modules/user-listing/userlisting.php:839
2472
- msgid "Next &raquo; "
2473
- msgstr "下一页 &raquo; "
2474
-
2475
- #: ../modules/user-listing/userlisting.php:840
2476
- msgid "Last &raquo;&raquo;"
2477
- msgstr "最后 &raquo;&raquo;"
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!"
1
+ # Translation of Profile Builder in Chinese (China)
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-11-10 07:26:00+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=1; plural=0;\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&#37; 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&#37; 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 ""
68
+
69
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
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
+
89
+ #: ../front-end/login.php:79
90
+ msgid "Invalid username."
91
+ msgstr ""
92
+
93
+ #: ../front-end/login.php:84
94
+ msgid "username"
95
+ msgstr ""
96
+
97
+ #: ../front-end/login.php:84
98
+ msgid "email"
99
+ msgstr ""
100
+
101
+ #: ../front-end/login.php:178
102
+ msgid "Lost your password?"
103
+ msgstr ""
104
+
105
+ #: ../index.php:34
106
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
107
+ msgstr ""
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 ""
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 ""
126
+
127
+ #: ../modules/multiple-forms/multiple-forms.php:407
128
+ msgid "Delete all items"
129
+ msgstr ""
130
+
131
+ #: ../modules/multiple-forms/multiple-forms.php:407
132
+ msgid "Delete all"
133
+ msgstr ""
134
+
135
+ #: ../modules/multiple-forms/register-forms.php:230
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
+
143
+ #: ../admin/admin-bar.php:10
144
+ msgid "Show/Hide the Admin Bar on the Front-End"
145
+ msgstr "显示/隐藏管理员工具栏在前端"
146
+
147
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
148
+ msgid "Admin Bar Settings"
149
+ msgstr "管理员工具栏设置"
150
+
151
+ #: ../admin/admin-bar.php:57
152
+ msgid "User-Role"
153
+ msgstr "用户角色"
154
+
155
+ #: ../admin/admin-bar.php:58
156
+ msgid "Visibility"
157
+ msgstr "可见"
158
+
159
+ #: ../admin/admin-bar.php:73
160
+ msgid "Default"
161
+ msgstr "默认"
162
+
163
+ #: ../admin/admin-bar.php:74
164
+ msgid "Show"
165
+ msgstr "显示"
166
+
167
+ #: ../admin/admin-bar.php:75
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"
176
+ msgstr "保存更改"
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 "登录允许使用电子邮件。这字段不会显示在前端! ( 你可以改变这些设置,在 \"%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 "常规设置"
186
+
187
+ #: ../admin/admin-functions.php:106
188
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of "
189
+ msgstr "<strong>错误</strong>: 密码必须最小长度"
190
+
191
+ #: ../admin/admin-functions.php:112 ../admin/general-settings.php:169
192
+ msgid "Very weak"
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
+
210
+ #: ../admin/admin-functions.php:123
211
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of "
212
+ msgstr "<strong>错误</strong>: 密码必须至少有一个强度"
213
+
214
+ #: ../admin/admin-functions.php:162
215
+ msgid "Add Field"
216
+ msgstr "添加字段"
217
+
218
+ #: ../admin/admin-functions.php:164
219
+ msgid "Save Settings"
220
+ msgstr "保存设置"
221
+
222
+ #: ../admin/basic-info.php:10
223
+ msgid "Basic Information"
224
+ msgstr "基本信息"
225
+
226
+ #: ../admin/basic-info.php:29
227
+ msgid "Version %s"
228
+ msgstr "版本 %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 "最好的前端注册、编辑个人资料与登陆表单的实现方式。"
237
+
238
+ #: ../admin/basic-info.php:33
239
+ msgid "For Modern User Interaction"
240
+ msgstr "新颖的用户交互。"
241
+
242
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
243
+ msgid "Login"
244
+ msgstr "登陆"
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 "快捷登陆使用 <strong class=\"nowrap\">[wppb-login]</strong> 简码或者小工具。"
249
+
250
+ #: ../admin/basic-info.php:40
251
+ msgid "Registration"
252
+ msgstr "注册"
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 "漂亮的注册表单,完全可自定义使用 <strong class=\"nowrap\">[wppb-register]</strong> 简码。"
257
+
258
+ #: ../admin/basic-info.php:44
259
+ msgid "Edit Profile"
260
+ msgstr "编辑个人资料"
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 "编辑个人资料直接可以使用 <strong class=\"nowrap\">[wppb-edit-profile]</strong> 简码."
265
+
266
+ #: ../admin/basic-info.php:51
267
+ msgid "Extra Features"
268
+ msgstr "额外字段"
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 "特性,让您对您的用户更多的控制,增强安全性,帮助用户注册与限制垃圾邮件。"
273
+
274
+ #: ../admin/basic-info.php:53
275
+ msgid "Enable extra features"
276
+ msgstr "启用额外功能"
277
+
278
+ #: ../admin/basic-info.php:57
279
+ msgid "Recover Password"
280
+ msgstr "恢复密码"
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 "允许用户恢复密码在前端使用简码 [wppb-recover-password]。"
285
+
286
+ #: ../admin/basic-info.php:61
287
+ msgid "Admin Approval (*)"
288
+ msgstr "管理员审批 (*)"
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 "你决定在你的网站用户是谁。从WordPress 界面通过电子邮件或批准的多个用户获得通知。"
293
+
294
+ #: ../admin/basic-info.php:65
295
+ msgid "Email Confirmation"
296
+ msgstr "电子邮件确认"
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 "确保用户注册是使用真实的电子邮件。注册用户将收到一个通知,确认他们的电子邮件地址。"
301
+
302
+ #: ../admin/basic-info.php:69
303
+ msgid "Minimum Password Length and Strength Meter"
304
+ msgstr "最小密码长度和强度表"
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 "消除弱密码最小密码长度,并强制执行设定的密码强度。"
309
+
310
+ #: ../admin/basic-info.php:73
311
+ msgid "Login with Email or Username"
312
+ msgstr "通过电子邮件或用户名登录"
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 "当用户访问您的网站时,允许用户登录他们的用户名和电子邮件。"
317
+
318
+ #: ../admin/basic-info.php:87
319
+ msgid "Customize Your Forms The Way You Want (*)"
320
+ msgstr "自定义表格用你想要的方式(*)"
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 "额外个人资料字段,根据您的项目需求你