User registration & user profile – Profile Builder - Version 2.2.7

Version Description

  • Translation Updates
Download this release

Release Info

Developer madalin.ungureanu
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 2.2.7
Comparing to
See all releases

Code changes from version 2.2.6 to 2.2.7

features/email-confirmation/email-confirmation.php CHANGED
@@ -538,6 +538,9 @@ function wppb_notify_user_registration_email( $bloginfo, $user_name, $email, $se
538
 
539
  $message_context = 'email_admin_approve';
540
  }
 
 
 
541
  } else {
542
  $message_content = apply_filters( 'wppb_register_admin_email_message_without_admin_approval', $message_content, $email, $password, $message_from, 'wppb_admin_emailc_default_registration_email_content' );
543
  }
@@ -594,6 +597,9 @@ function wppb_notify_user_registration_email( $bloginfo, $user_name, $email, $se
594
 
595
  $user_message_content = apply_filters( 'wppb_register_user_email_message_with_admin_approval', $user_message_content, $email, $password, $user_message_subject, 'wppb_user_emailc_registration_with_admin_approval_email_content' );
596
  }
 
 
 
597
  } else
598
  $user_message_content = apply_filters( 'wppb_register_user_email_message_without_admin_approval', $user_message_content, $email, $password, $user_message_subject, 'wppb_user_emailc_default_registration_email_content' );
599
 
538
 
539
  $message_context = 'email_admin_approve';
540
  }
541
+ else{
542
+ $message_content = apply_filters( 'wppb_register_admin_email_message_without_admin_approval', $message_content, $email, $password, $message_from, 'wppb_admin_emailc_default_registration_email_content' );
543
+ }
544
  } else {
545
  $message_content = apply_filters( 'wppb_register_admin_email_message_without_admin_approval', $message_content, $email, $password, $message_from, 'wppb_admin_emailc_default_registration_email_content' );
546
  }
597
 
598
  $user_message_content = apply_filters( 'wppb_register_user_email_message_with_admin_approval', $user_message_content, $email, $password, $user_message_subject, 'wppb_user_emailc_registration_with_admin_approval_email_content' );
599
  }
600
+ else{
601
+ $user_message_content = apply_filters( 'wppb_register_user_email_message_without_admin_approval', $user_message_content, $email, $password, $user_message_subject, 'wppb_user_emailc_default_registration_email_content' );
602
+ }
603
  } else
604
  $user_message_content = apply_filters( 'wppb_register_user_email_message_without_admin_approval', $user_message_content, $email, $password, $user_message_subject, 'wppb_user_emailc_default_registration_email_content' );
605
 
features/login-widget/login-widget.php CHANGED
@@ -94,4 +94,4 @@ function wppb_scroll_down_to_widget($content){
94
  function wppb_require_jquery(){
95
  wp_enqueue_script( 'jquery' );
96
  }
97
- //add_action( 'wp_enqueue_scripts', 'wppb_require_jquery' );
94
  function wppb_require_jquery(){
95
  wp_enqueue_script( 'jquery' );
96
  }
97
+ //add_action( 'wp_enqueue_scripts', 'wppb_require_jquery' );
front-end/class-formbuilder.php CHANGED
@@ -7,6 +7,7 @@ class Profile_Builder_Form_Creator{
7
  'role' => '', //used only for the register-form settings
8
  'redirect_url' => '',
9
  'redirect_priority' => 'normal',
 
10
  );
11
  private $args;
12
 
@@ -16,6 +17,11 @@ class Profile_Builder_Form_Creator{
16
  // Merge the input arguments and the defaults
17
  $this->args = wp_parse_args( $args, $this->defaults );
18
 
 
 
 
 
 
19
  global $wppb_shortcode_on_front;
20
  $wppb_shortcode_on_front = true;
21
 
@@ -34,6 +40,43 @@ class Profile_Builder_Form_Creator{
34
  if( ( !is_multisite() && current_user_can( 'edit_users' ) ) || ( is_multisite() && current_user_can( 'manage_network' ) ) )
35
  add_action( 'wppb_before_edit_profile_fields', array( &$this, 'wppb_edit_profile_select_user_to_edit' ) );
36
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
 
38
  function wppb_retrieve_custom_settings(){
39
  $this->args['login_after_register'] = apply_filters( 'wppb_automatically_login_after_register', 'No' ); //used only for the register-form settings
@@ -58,31 +101,25 @@ class Profile_Builder_Form_Creator{
58
  }
59
  $this->args['redirect_url'] = apply_filters( 'wppb_after_'.$this->args['form_type'].'_redirect_url', $this->args['redirect_url'] );
60
  $this->args['redirect_delay'] = apply_filters( 'wppb_redirect_default_duration', 3 );
61
-
62
- if ( $this->args['form_name'] != 'unspecified' ){
63
- $post_type = ( ( $this->args['form_type'] == 'register' ) ? 'wppb-rf-cpt' : 'wppb-epf-cpt' );
64
  $meta_name = ( ( $this->args['form_type'] == 'register' ) ? 'wppb_rf_page_settings' : 'wppb_epf_page_settings' );
65
-
66
- $ep_r_posts = get_posts( array( 'posts_per_page' => -1, 'post_status' => apply_filters ( 'wppb_get_ep_r_posts_on_front_end', array( 'publish' ) ), 'post_type' => $post_type, 'orderby' => 'post_date', 'order' => 'ASC' ) );
67
- foreach ( $ep_r_posts as $key => $value ){
68
- if ( trim( Wordpress_Creation_Kit_PB::wck_generate_slug( $value->post_title ) ) == $this->args['form_name'] ){
69
- $page_settings = get_post_meta( $value->ID, $meta_name, true );
70
-
71
- if( !empty( $page_settings[0]['set-role'] ) ){
72
- if( $page_settings[0]['set-role'] == 'default role' ){
73
- $selected_role = trim( get_option( 'default_role' ) );
74
- }
75
- else
76
- $selected_role = $page_settings[0]['set-role'];
77
- }
78
-
79
- $this->args['role'] = ( isset( $selected_role ) ? $selected_role : $this->args['role'] );
80
- $this->args['login_after_register'] = ( isset( $page_settings[0]['automatically-log-in'] ) ? $page_settings[0]['automatically-log-in'] : $this->args['login_after_register'] );
81
- $this->args['redirect_activated'] = ( isset( $page_settings[0]['redirect'] ) ? $page_settings[0]['redirect'] : $this->args['redirect_activated'] );
82
- $this->args['redirect_url'] = ( isset( $page_settings[0]['url'] ) ? $page_settings[0]['url'] : $this->args['redirect_url'] );
83
- $this->args['redirect_delay'] = ( isset( $page_settings[0]['display-messages'] ) ? $page_settings[0]['display-messages'] : $this->args['redirect_delay'] );
84
- }
85
- }
86
  }
87
  }
88
 
@@ -312,10 +349,17 @@ class Profile_Builder_Form_Creator{
312
 
313
  elseif( $this->args['form_type'] == 'edit_profile' )
314
  $button_name = __( 'Update', 'profile-builder' );
315
- ?>
316
  <input name="<?php echo $this->args['form_type']; ?>" type="submit" id="<?php echo $this->args['form_type']; ?>" class="submit button" value="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_button_name', $button_name ); ?>" />
317
  <input name="action" type="hidden" id="action" value="<?php echo $this->args['form_type']; ?>" />
318
  <input name="form_name" type="hidden" id="form_name" value="<?php echo $this->args['form_name']; ?>" />
 
 
 
 
 
 
 
319
  </p><!-- .form-submit -->
320
  <?php wp_nonce_field( 'verify_form_submission', $this->args['form_type'].'_nonce_field' ); ?>
321
  </form>
7
  'role' => '', //used only for the register-form settings
8
  'redirect_url' => '',
9
  'redirect_priority' => 'normal',
10
+ 'ID' => null
11
  );
12
  private $args;
13
 
17
  // Merge the input arguments and the defaults
18
  $this->args = wp_parse_args( $args, $this->defaults );
19
 
20
+ /* set up the ID here if it is a multi form */
21
+ if( $this->args['form_name'] != 'unspecified' ){
22
+ $this->args['ID'] = Profile_Builder_Form_Creator::wppb_get_form_id_from_form_name( $this->args['form_name'], $this->args['form_type'] );
23
+ }
24
+
25
  global $wppb_shortcode_on_front;
26
  $wppb_shortcode_on_front = true;
27
 
40
  if( ( !is_multisite() && current_user_can( 'edit_users' ) ) || ( is_multisite() && current_user_can( 'manage_network' ) ) )
41
  add_action( 'wppb_before_edit_profile_fields', array( &$this, 'wppb_edit_profile_select_user_to_edit' ) );
42
  }
43
+
44
+ /**
45
+ * @param $form_name The "slug" generated from the current Form Title
46
+ * @param $form_type the form type of the form: register, edit_profile
47
+ * @return null
48
+ */
49
+ static function wppb_get_form_id_from_form_name( $form_name, $form_type ){
50
+ global $wpdb;
51
+
52
+ if( $form_type == 'edit_profile' ){
53
+ $post_type = 'wppb-epf-cpt';
54
+ }elseif( $form_type == 'register' ){
55
+ $post_type = 'wppb-rf-cpt';
56
+ }
57
+
58
+ $all_forms = $wpdb->get_results(
59
+ "
60
+ SELECT ID, post_title
61
+ FROM $wpdb->posts
62
+ WHERE post_status = 'publish'
63
+ AND post_type = '$post_type'
64
+ "
65
+ );
66
+
67
+ if( !empty( $all_forms ) ) {
68
+ foreach ($all_forms as $form) {
69
+ if( empty( $form->post_title ) )
70
+ $form->post_title = '(no title)';
71
+
72
+ if ($form_name == Wordpress_Creation_Kit_PB::wck_generate_slug($form->post_title)) {
73
+ return $form->ID;
74
+ }
75
+ }
76
+ }
77
+
78
+ return null;
79
+ }
80
 
81
  function wppb_retrieve_custom_settings(){
82
  $this->args['login_after_register'] = apply_filters( 'wppb_automatically_login_after_register', 'No' ); //used only for the register-form settings
101
  }
102
  $this->args['redirect_url'] = apply_filters( 'wppb_after_'.$this->args['form_type'].'_redirect_url', $this->args['redirect_url'] );
103
  $this->args['redirect_delay'] = apply_filters( 'wppb_redirect_default_duration', 3 );
104
+
105
+ if ( !is_null( $this->args['ID'] ) ){
 
106
  $meta_name = ( ( $this->args['form_type'] == 'register' ) ? 'wppb_rf_page_settings' : 'wppb_epf_page_settings' );
107
+
108
+ $page_settings = get_post_meta( $this->args['ID'], $meta_name, true );
109
+
110
+ if( !empty( $page_settings[0]['set-role'] ) ){
111
+ if( $page_settings[0]['set-role'] == 'default role' ){
112
+ $selected_role = trim( get_option( 'default_role' ) );
113
+ }
114
+ else
115
+ $selected_role = $page_settings[0]['set-role'];
116
+ }
117
+
118
+ $this->args['role'] = ( isset( $selected_role ) ? $selected_role : $this->args['role'] );
119
+ $this->args['login_after_register'] = ( isset( $page_settings[0]['automatically-log-in'] ) ? $page_settings[0]['automatically-log-in'] : $this->args['login_after_register'] );
120
+ $this->args['redirect_activated'] = ( isset( $page_settings[0]['redirect'] ) ? $page_settings[0]['redirect'] : $this->args['redirect_activated'] );
121
+ $this->args['redirect_url'] = ( isset( $page_settings[0]['url'] ) ? $page_settings[0]['url'] : $this->args['redirect_url'] );
122
+ $this->args['redirect_delay'] = ( isset( $page_settings[0]['display-messages'] ) ? $page_settings[0]['display-messages'] : $this->args['redirect_delay'] );
 
 
 
 
 
123
  }
124
  }
125
 
349
 
350
  elseif( $this->args['form_type'] == 'edit_profile' )
351
  $button_name = __( 'Update', 'profile-builder' );
352
+ ?>
353
  <input name="<?php echo $this->args['form_type']; ?>" type="submit" id="<?php echo $this->args['form_type']; ?>" class="submit button" value="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_button_name', $button_name ); ?>" />
354
  <input name="action" type="hidden" id="action" value="<?php echo $this->args['form_type']; ?>" />
355
  <input name="form_name" type="hidden" id="form_name" value="<?php echo $this->args['form_name']; ?>" />
356
+ <?php
357
+ $wppb_module_settings = get_option( 'wppb_module_settings' );
358
+
359
+ if( isset( $wppb_module_settings['wppb_customRedirect'] ) && $wppb_module_settings['wppb_customRedirect'] == 'show' ) {
360
+ echo '<input type="hidden" name="wppb_referer_url" value="'.esc_url( isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '' ).'"/>';
361
+ }
362
+ ?>
363
  </p><!-- .form-submit -->
364
  <?php wp_nonce_field( 'verify_form_submission', $this->args['form_type'].'_nonce_field' ); ?>
365
  </form>
front-end/login.php CHANGED
@@ -215,7 +215,7 @@ function wppb_front_end_login( $atts ){
215
 
216
  $login_form .= '</div>';
217
  return $login_form;
218
-
219
  }else{
220
  $user_ID = get_current_user_id();
221
  $wppb_user = get_userdata( $user_ID );
215
 
216
  $login_form .= '</div>';
217
  return $login_form;
218
+
219
  }else{
220
  $user_ID = get_current_user_id();
221
  $wppb_user = get_userdata( $user_ID );
front-end/register.php CHANGED
@@ -138,12 +138,12 @@ function wppb_activate_signup( $key ) {
138
  if( $wppb_general_settings != 'not_found' && ! empty( $wppb_general_settings['adminApprovalOnUserRole'] ) ) {
139
  foreach( $user_data->roles as $role ) {
140
  if( in_array( $role, $wppb_general_settings['adminApprovalOnUserRole'] ) ) {
141
- return $success_message . $admin_approval_message;
142
  } else {
143
  wp_set_object_terms( $user_id, NULL, 'user_status' );
144
  clean_object_term_cache( $user_id, 'user_status' );
145
 
146
- return $success_message;
147
  }
148
  }
149
  } else {
138
  if( $wppb_general_settings != 'not_found' && ! empty( $wppb_general_settings['adminApprovalOnUserRole'] ) ) {
139
  foreach( $user_data->roles as $role ) {
140
  if( in_array( $role, $wppb_general_settings['adminApprovalOnUserRole'] ) ) {
141
+ return $success_message . $admin_approval_message. ( ! empty ( $wppb_cr_success_message ) ? $wppb_cr_success_message : '' );
142
  } else {
143
  wp_set_object_terms( $user_id, NULL, 'user_status' );
144
  clean_object_term_cache( $user_id, 'user_status' );
145
 
146
+ return $success_message. ( ! empty ( $wppb_cr_success_message ) ? $wppb_cr_success_message : '' );
147
  }
148
  }
149
  } else {
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.2.6
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
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.2.6' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__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.2.7
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: http://www.cozmoslabs.com/
9
  License: GPL2
73
  *
74
  *
75
  */
76
+ define('PROFILE_BUILDER_VERSION', '2.2.7' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__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,7 +5,7 @@ Tags: registration, user profile, user registration, custom field registration,
5
 
6
  Requires at least: 3.1
7
  Tested up to: 4.3.1
8
- Stable tag: 2.2.6
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -115,6 +115,9 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
115
  10. Profile Builder Login Widget
116
 
117
  == Changelog ==
 
 
 
118
  = 2.2.6 =
119
  * Email Confirmation can now be disabled on WordPress multisite
120
 
5
 
6
  Requires at least: 3.1
7
  Tested up to: 4.3.1
8
+ Stable tag: 2.2.7
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
115
  10. Profile Builder Login Widget
116
 
117
  == Changelog ==
118
+ = 2.2.7 =
119
+ * Translation Updates
120
+
121
  = 2.2.6 =
122
  * Email Confirmation can now be disabled on WordPress multisite
123
 
translation/profile-builder-da_DK.mo CHANGED
Binary file
translation/profile-builder-da_DK.po CHANGED
@@ -1,3838 +1,4056 @@
1
- # Translation of Profile Builder in Danish
2
- # This file is distributed under the same license as the Profile Builder package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2015-09-29 11:55:16+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
- #: ../admin/admin-functions.php:40
14
- msgid "Display name publicly as - only appears on the Edit Profile page!"
15
- msgstr ""
16
-
17
- #: ../admin/basic-info.php:37
18
- msgid "Friction-less login using %s shortcode or a widget."
19
- msgstr ""
20
-
21
- #: ../admin/basic-info.php:41
22
- msgid "Beautiful registration forms fully customizable using the %s shortcode."
23
- msgstr ""
24
-
25
- #: ../admin/basic-info.php:45
26
- msgid "Straight forward edit profile forms using %s shortcode."
27
- msgstr ""
28
-
29
- #: ../admin/basic-info.php:58
30
- msgid "Allow users to recover their password in the front-end using the %s."
31
- msgstr ""
32
-
33
- #: ../admin/basic-info.php:130
34
- msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
35
- msgstr ""
36
-
37
- #: ../admin/general-settings.php:125
38
- msgid "\"Admin Approval\" on User Role:"
39
- msgstr ""
40
-
41
- #: ../admin/general-settings.php:144
42
- msgid "Select on what user roles to activate Admin Approval."
43
- msgstr ""
44
-
45
- #: ../admin/manage-fields.php:109
46
- msgid "Display on PB forms"
47
- msgstr ""
48
-
49
- #: ../admin/manage-fields.php:109
50
- msgid "PB Login"
51
- msgstr ""
52
-
53
- #: ../admin/manage-fields.php:109
54
- msgid "PB Register"
55
- msgstr ""
56
-
57
- #: ../admin/manage-fields.php:109
58
- msgid "PB Recover Password"
59
- msgstr ""
60
-
61
- #: ../admin/manage-fields.php:109
62
- msgid "Select on which Profile Builder forms to display reCAPTCHA"
63
- msgstr ""
64
-
65
- #: ../admin/manage-fields.php:110
66
- msgid "Display on default WP forms"
67
- msgstr ""
68
-
69
- #: ../admin/manage-fields.php:110
70
- msgid "Default WP Login"
71
- msgstr ""
72
-
73
- #: ../admin/manage-fields.php:110
74
- msgid "Default WP Register"
75
- msgstr ""
76
-
77
- #: ../admin/manage-fields.php:110
78
- msgid "Default WP Recover Password"
79
- msgstr ""
80
-
81
- #: ../admin/manage-fields.php:110
82
- msgid "Select on which default WP forms to display reCAPTCHA"
83
- msgstr ""
84
-
85
- #: ../admin/manage-fields.php:116 ../admin/manage-fields.php:117
86
- msgid "Default option of the field"
87
- msgstr ""
88
-
89
- #: ../admin/manage-fields.php:237
90
- msgid "Afghanistan"
91
- msgstr "Afghanistan"
92
-
93
- #: ../admin/manage-fields.php:238
94
- msgid "Aland Islands"
95
- msgstr "Aland Islands"
96
-
97
- #: ../admin/manage-fields.php:239
98
- msgid "Albania"
99
- msgstr "Albania"
100
-
101
- #: ../admin/manage-fields.php:240
102
- msgid "Algeria"
103
- msgstr "Algeria"
104
-
105
- #: ../admin/manage-fields.php:241
106
- msgid "American Samoa"
107
- msgstr "American Samoa"
108
-
109
- #: ../admin/manage-fields.php:242
110
- msgid "Andorra"
111
- msgstr "Andorra"
112
-
113
- #: ../admin/manage-fields.php:243
114
- msgid "Angola"
115
- msgstr "Angola"
116
-
117
- #: ../admin/manage-fields.php:244
118
- msgid "Anguilla"
119
- msgstr "Anguilla"
120
-
121
- #: ../admin/manage-fields.php:245
122
- msgid "Antarctica"
123
- msgstr "Antarctica"
124
-
125
- #: ../admin/manage-fields.php:246
126
- msgid "Antigua and Barbuda"
127
- msgstr "Antigua and Barbuda"
128
-
129
- #: ../admin/manage-fields.php:247
130
- msgid "Argentina"
131
- msgstr "Argentina"
132
-
133
- #: ../admin/manage-fields.php:248
134
- msgid "Armenia"
135
- msgstr "Armenia"
136
-
137
- #: ../admin/manage-fields.php:249
138
- msgid "Aruba"
139
- msgstr "Aruba"
140
-
141
- #: ../admin/manage-fields.php:250
142
- msgid "Australia"
143
- msgstr "Australia"
144
-
145
- #: ../admin/manage-fields.php:251
146
- msgid "Austria"
147
- msgstr "Austria"
148
-
149
- #: ../admin/manage-fields.php:252
150
- msgid "Azerbaijan"
151
- msgstr "Azerbaijan"
152
-
153
- #: ../admin/manage-fields.php:253
154
- msgid "Bahamas"
155
- msgstr "Bahamas"
156
-
157
- #: ../admin/manage-fields.php:254
158
- msgid "Bahrain"
159
- msgstr "Bahrain"
160
-
161
- #: ../admin/manage-fields.php:255
162
- msgid "Bangladesh"
163
- msgstr "Bangladesh"
164
-
165
- #: ../admin/manage-fields.php:256
166
- msgid "Barbados"
167
- msgstr "Barbados"
168
-
169
- #: ../admin/manage-fields.php:257
170
- msgid "Belarus"
171
- msgstr "Belarus"
172
-
173
- #: ../admin/manage-fields.php:258
174
- msgid "Belgium"
175
- msgstr "Belgium"
176
-
177
- #: ../admin/manage-fields.php:259
178
- msgid "Belize"
179
- msgstr "Belize"
180
-
181
- #: ../admin/manage-fields.php:260
182
- msgid "Benin"
183
- msgstr "Benin"
184
-
185
- #: ../admin/manage-fields.php:261
186
- msgid "Bermuda"
187
- msgstr "Bermuda"
188
-
189
- #: ../admin/manage-fields.php:262
190
- msgid "Bhutan"
191
- msgstr "Bhutan"
192
-
193
- #: ../admin/manage-fields.php:263
194
- msgid "Bolivia"
195
- msgstr "Bolivia"
196
-
197
- #: ../admin/manage-fields.php:264
198
- msgid "Bonaire, Saint Eustatius and Saba"
199
- msgstr "Bonaire, Saint Eustatius and Saba"
200
-
201
- #: ../admin/manage-fields.php:265
202
- msgid "Bosnia and Herzegovina"
203
- msgstr "Bosnia and Herzegovina"
204
-
205
- #: ../admin/manage-fields.php:266
206
- msgid "Botswana"
207
- msgstr "Botswana"
208
-
209
- #: ../admin/manage-fields.php:267
210
- msgid "Bouvet Island"
211
- msgstr "Bouvet Island"
212
-
213
- #: ../admin/manage-fields.php:268
214
- msgid "Brazil"
215
- msgstr "Brazil"
216
-
217
- #: ../admin/manage-fields.php:269
218
- msgid "British Indian Ocean Territory"
219
- msgstr "British Indian Ocean Territory"
220
-
221
- #: ../admin/manage-fields.php:270
222
- msgid "British Virgin Islands"
223
- msgstr "British Virgin Islands"
224
-
225
- #: ../admin/manage-fields.php:271
226
- msgid "Brunei"
227
- msgstr "Brunei"
228
-
229
- #: ../admin/manage-fields.php:272
230
- msgid "Bulgaria"
231
- msgstr "Bulgaria"
232
-
233
- #: ../admin/manage-fields.php:273
234
- msgid "Burkina Faso"
235
- msgstr "Burkina Faso"
236
-
237
- #: ../admin/manage-fields.php:274
238
- msgid "Burundi"
239
- msgstr "Burundi"
240
-
241
- #: ../admin/manage-fields.php:275
242
- msgid "Cambodia"
243
- msgstr "Cambodia"
244
-
245
- #: ../admin/manage-fields.php:276
246
- msgid "Cameroon"
247
- msgstr "Cameroon"
248
-
249
- #: ../admin/manage-fields.php:277
250
- msgid "Canada"
251
- msgstr "Canada"
252
-
253
- #: ../admin/manage-fields.php:278
254
- msgid "Cape Verde"
255
- msgstr "Cape Verde"
256
-
257
- #: ../admin/manage-fields.php:279
258
- msgid "Cayman Islands"
259
- msgstr "Cayman Islands"
260
-
261
- #: ../admin/manage-fields.php:280
262
- msgid "Central African Republic"
263
- msgstr "Central African Republic"
264
-
265
- #: ../admin/manage-fields.php:281
266
- msgid "Chad"
267
- msgstr "Chad"
268
-
269
- #: ../admin/manage-fields.php:282
270
- msgid "Chile"
271
- msgstr "Chile"
272
-
273
- #: ../admin/manage-fields.php:283
274
- msgid "China"
275
- msgstr "China"
276
-
277
- #: ../admin/manage-fields.php:284
278
- msgid "Christmas Island"
279
- msgstr "Christmas Island"
280
-
281
- #: ../admin/manage-fields.php:285
282
- msgid "Cocos Islands"
283
- msgstr "Cocos Islands"
284
-
285
- #: ../admin/manage-fields.php:286
286
- msgid "Colombia"
287
- msgstr "Colombia"
288
-
289
- #: ../admin/manage-fields.php:287
290
- msgid "Comoros"
291
- msgstr "Comoros"
292
-
293
- #: ../admin/manage-fields.php:288
294
- msgid "Cook Islands"
295
- msgstr "Cook Islands"
296
-
297
- #: ../admin/manage-fields.php:289
298
- msgid "Costa Rica"
299
- msgstr "Costa Rica"
300
-
301
- #: ../admin/manage-fields.php:290
302
- msgid "Croatia"
303
- msgstr "Croatia"
304
-
305
- #: ../admin/manage-fields.php:291
306
- msgid "Cuba"
307
- msgstr "Cuba"
308
-
309
- #: ../admin/manage-fields.php:292
310
- msgid "Curacao"
311
- msgstr "Curacao"
312
-
313
- #: ../admin/manage-fields.php:293
314
- msgid "Cyprus"
315
- msgstr "Cyprus"
316
-
317
- #: ../admin/manage-fields.php:294
318
- msgid "Czech Republic"
319
- msgstr "Czech Republic"
320
-
321
- #: ../admin/manage-fields.php:295
322
- msgid "Democratic Republic of the Congo"
323
- msgstr "Democratic Republic of the Congo"
324
-
325
- #: ../admin/manage-fields.php:296
326
- msgid "Denmark"
327
- msgstr "Denmark"
328
-
329
- #: ../admin/manage-fields.php:297
330
- msgid "Djibouti"
331
- msgstr "Djibouti"
332
-
333
- #: ../admin/manage-fields.php:298
334
- msgid "Dominica"
335
- msgstr "Dominica"
336
-
337
- #: ../admin/manage-fields.php:299
338
- msgid "Dominican Republic"
339
- msgstr "Dominican Republic"
340
-
341
- #: ../admin/manage-fields.php:300
342
- msgid "East Timor"
343
- msgstr "East Timor"
344
-
345
- #: ../admin/manage-fields.php:301
346
- msgid "Ecuador"
347
- msgstr "Ecuador"
348
-
349
- #: ../admin/manage-fields.php:302
350
- msgid "Egypt"
351
- msgstr "Egypt"
352
-
353
- #: ../admin/manage-fields.php:303
354
- msgid "El Salvador"
355
- msgstr "El Salvador"
356
-
357
- #: ../admin/manage-fields.php:304
358
- msgid "Equatorial Guinea"
359
- msgstr "Equatorial Guinea"
360
-
361
- #: ../admin/manage-fields.php:305
362
- msgid "Eritrea"
363
- msgstr "Eritrea"
364
-
365
- #: ../admin/manage-fields.php:306
366
- msgid "Estonia"
367
- msgstr "Estonia"
368
-
369
- #: ../admin/manage-fields.php:307
370
- msgid "Ethiopia"
371
- msgstr "Ethiopia"
372
-
373
- #: ../admin/manage-fields.php:308
374
- msgid "Falkland Islands"
375
- msgstr "Falkland Islands"
376
-
377
- #: ../admin/manage-fields.php:309
378
- msgid "Faroe Islands"
379
- msgstr "Faroe Islands"
380
-
381
- #: ../admin/manage-fields.php:310
382
- msgid "Fiji"
383
- msgstr "Fiji"
384
-
385
- #: ../admin/manage-fields.php:311
386
- msgid "Finland"
387
- msgstr "Finland"
388
-
389
- #: ../admin/manage-fields.php:312
390
- msgid "France"
391
- msgstr "France"
392
-
393
- #: ../admin/manage-fields.php:313
394
- msgid "French Guiana"
395
- msgstr "French Guiana"
396
-
397
- #: ../admin/manage-fields.php:314
398
- msgid "French Polynesia"
399
- msgstr "French Polynesia"
400
-
401
- #: ../admin/manage-fields.php:315
402
- msgid "French Southern Territories"
403
- msgstr "French Southern Territories"
404
-
405
- #: ../admin/manage-fields.php:316
406
- msgid "Gabon"
407
- msgstr "Gabon"
408
-
409
- #: ../admin/manage-fields.php:317
410
- msgid "Gambia"
411
- msgstr "Gambia"
412
-
413
- #: ../admin/manage-fields.php:318
414
- msgid "Georgia"
415
- msgstr "Georgia"
416
-
417
- #: ../admin/manage-fields.php:319
418
- msgid "Germany"
419
- msgstr "Germany"
420
-
421
- #: ../admin/manage-fields.php:320
422
- msgid "Ghana"
423
- msgstr "Ghana"
424
-
425
- #: ../admin/manage-fields.php:321
426
- msgid "Gibraltar"
427
- msgstr "Gibraltar"
428
-
429
- #: ../admin/manage-fields.php:322
430
- msgid "Greece"
431
- msgstr "Greece"
432
-
433
- #: ../admin/manage-fields.php:323
434
- msgid "Greenland"
435
- msgstr "Greenland"
436
-
437
- #: ../admin/manage-fields.php:324
438
- msgid "Grenada"
439
- msgstr "Grenada"
440
-
441
- #: ../admin/manage-fields.php:325
442
- msgid "Guadeloupe"
443
- msgstr "Guadeloupe"
444
-
445
- #: ../admin/manage-fields.php:326
446
- msgid "Guam"
447
- msgstr "Guam"
448
-
449
- #: ../admin/manage-fields.php:327
450
- msgid "Guatemala"
451
- msgstr "Guatemala"
452
-
453
- #: ../admin/manage-fields.php:328
454
- msgid "Guernsey"
455
- msgstr "Guernsey"
456
-
457
- #: ../admin/manage-fields.php:329
458
- msgid "Guinea"
459
- msgstr "Guinea"
460
-
461
- #: ../admin/manage-fields.php:330
462
- msgid "Guinea-Bissau"
463
- msgstr "Guinea-Bissau"
464
-
465
- #: ../admin/manage-fields.php:331
466
- msgid "Guyana"
467
- msgstr "Guyana"
468
-
469
- #: ../admin/manage-fields.php:332
470
- msgid "Haiti"
471
- msgstr "Haiti"
472
-
473
- #: ../admin/manage-fields.php:333
474
- msgid "Heard Island and McDonald Islands"
475
- msgstr "Heard Island and McDonald Islands"
476
-
477
- #: ../admin/manage-fields.php:334
478
- msgid "Honduras"
479
- msgstr "Honduras"
480
-
481
- #: ../admin/manage-fields.php:335
482
- msgid "Hong Kong"
483
- msgstr "Hong Kong"
484
-
485
- #: ../admin/manage-fields.php:336
486
- msgid "Hungary"
487
- msgstr "Hungary"
488
-
489
- #: ../admin/manage-fields.php:337
490
- msgid "Iceland"
491
- msgstr "Iceland"
492
-
493
- #: ../admin/manage-fields.php:338
494
- msgid "India"
495
- msgstr "India"
496
-
497
- #: ../admin/manage-fields.php:339
498
- msgid "Indonesia"
499
- msgstr "Indonesia"
500
-
501
- #: ../admin/manage-fields.php:340
502
- msgid "Iran"
503
- msgstr "Iran"
504
-
505
- #: ../admin/manage-fields.php:341
506
- msgid "Iraq"
507
- msgstr "Iraq"
508
-
509
- #: ../admin/manage-fields.php:342
510
- msgid "Ireland"
511
- msgstr "Ireland"
512
-
513
- #: ../admin/manage-fields.php:343
514
- msgid "Isle of Man"
515
- msgstr "Isle of Man"
516
-
517
- #: ../admin/manage-fields.php:344
518
- msgid "Israel"
519
- msgstr "Israel"
520
-
521
- #: ../admin/manage-fields.php:345
522
- msgid "Italy"
523
- msgstr "Italy"
524
-
525
- #: ../admin/manage-fields.php:346
526
- msgid "Ivory Coast"
527
- msgstr "Ivory Coast"
528
-
529
- #: ../admin/manage-fields.php:347
530
- msgid "Jamaica"
531
- msgstr "Jamaica"
532
-
533
- #: ../admin/manage-fields.php:348
534
- msgid "Japan"
535
- msgstr "Japan"
536
-
537
- #: ../admin/manage-fields.php:349
538
- msgid "Jersey"
539
- msgstr "Jersey"
540
-
541
- #: ../admin/manage-fields.php:350
542
- msgid "Jordan"
543
- msgstr "Jordan"
544
-
545
- #: ../admin/manage-fields.php:351
546
- msgid "Kazakhstan"
547
- msgstr "Kazakhstan"
548
-
549
- #: ../admin/manage-fields.php:352
550
- msgid "Kenya"
551
- msgstr "Kenya"
552
-
553
- #: ../admin/manage-fields.php:353
554
- msgid "Kiribati"
555
- msgstr "Kiribati"
556
-
557
- #: ../admin/manage-fields.php:354
558
- msgid "Kosovo"
559
- msgstr "Kosovo"
560
-
561
- #: ../admin/manage-fields.php:355
562
- msgid "Kuwait"
563
- msgstr "Kuwait"
564
-
565
- #: ../admin/manage-fields.php:356
566
- msgid "Kyrgyzstan"
567
- msgstr "Kyrgyzstan"
568
-
569
- #: ../admin/manage-fields.php:357
570
- msgid "Laos"
571
- msgstr "Laos"
572
-
573
- #: ../admin/manage-fields.php:358
574
- msgid "Latvia"
575
- msgstr "Latvia"
576
-
577
- #: ../admin/manage-fields.php:359
578
- msgid "Lebanon"
579
- msgstr "Lebanon"
580
-
581
- #: ../admin/manage-fields.php:360
582
- msgid "Lesotho"
583
- msgstr "Lesotho"
584
-
585
- #: ../admin/manage-fields.php:361
586
- msgid "Liberia"
587
- msgstr "Liberia"
588
-
589
- #: ../admin/manage-fields.php:362
590
- msgid "Libya"
591
- msgstr "Libya"
592
-
593
- #: ../admin/manage-fields.php:363
594
- msgid "Liechtenstein"
595
- msgstr "Liechtenstein"
596
-
597
- #: ../admin/manage-fields.php:364
598
- msgid "Lithuania"
599
- msgstr "Lithuania"
600
-
601
- #: ../admin/manage-fields.php:365
602
- msgid "Luxembourg"
603
- msgstr "Luxembourg"
604
-
605
- #: ../admin/manage-fields.php:366
606
- msgid "Macao"
607
- msgstr "Macao"
608
-
609
- #: ../admin/manage-fields.php:367
610
- msgid "Macedonia"
611
- msgstr "Macedonia"
612
-
613
- #: ../admin/manage-fields.php:368
614
- msgid "Madagascar"
615
- msgstr "Madagascar"
616
-
617
- #: ../admin/manage-fields.php:369
618
- msgid "Malawi"
619
- msgstr "Malawi"
620
-
621
- #: ../admin/manage-fields.php:370
622
- msgid "Malaysia"
623
- msgstr "Malaysia"
624
-
625
- #: ../admin/manage-fields.php:371
626
- msgid "Maldives"
627
- msgstr "Maldives"
628
-
629
- #: ../admin/manage-fields.php:372
630
- msgid "Mali"
631
- msgstr "Mali"
632
-
633
- #: ../admin/manage-fields.php:373
634
- msgid "Malta"
635
- msgstr "Malta"
636
-
637
- #: ../admin/manage-fields.php:374
638
- msgid "Marshall Islands"
639
- msgstr "Marshall Islands"
640
-
641
- #: ../admin/manage-fields.php:375
642
- msgid "Martinique"
643
- msgstr "Martinique"
644
-
645
- #: ../admin/manage-fields.php:376
646
- msgid "Mauritania"
647
- msgstr "Mauritania"
648
-
649
- #: ../admin/manage-fields.php:377
650
- msgid "Mauritius"
651
- msgstr "Mauritius"
652
-
653
- #: ../admin/manage-fields.php:378
654
- msgid "Mayotte"
655
- msgstr "Mayotte"
656
-
657
- #: ../admin/manage-fields.php:379
658
- msgid "Mexico"
659
- msgstr "Mexico"
660
-
661
- #: ../admin/manage-fields.php:380
662
- msgid "Micronesia"
663
- msgstr "Micronesia"
664
-
665
- #: ../admin/manage-fields.php:381
666
- msgid "Moldova"
667
- msgstr "Moldova"
668
-
669
- #: ../admin/manage-fields.php:382
670
- msgid "Monaco"
671
- msgstr "Monaco"
672
-
673
- #: ../admin/manage-fields.php:383
674
- msgid "Mongolia"
675
- msgstr "Mongolia"
676
-
677
- #: ../admin/manage-fields.php:384
678
- msgid "Montenegro"
679
- msgstr "Montenegro"
680
-
681
- #: ../admin/manage-fields.php:385
682
- msgid "Montserrat"
683
- msgstr "Montserrat"
684
-
685
- #: ../admin/manage-fields.php:386
686
- msgid "Morocco"
687
- msgstr "Morocco"
688
-
689
- #: ../admin/manage-fields.php:387
690
- msgid "Mozambique"
691
- msgstr "Mozambique"
692
-
693
- #: ../admin/manage-fields.php:388
694
- msgid "Myanmar"
695
- msgstr "Myanmar"
696
-
697
- #: ../admin/manage-fields.php:389
698
- msgid "Namibia"
699
- msgstr "Namibia"
700
-
701
- #: ../admin/manage-fields.php:390
702
- msgid "Nauru"
703
- msgstr "Nauru"
704
-
705
- #: ../admin/manage-fields.php:391
706
- msgid "Nepal"
707
- msgstr "Nepal"
708
-
709
- #: ../admin/manage-fields.php:392
710
- msgid "Netherlands"
711
- msgstr "Netherlands"
712
-
713
- #: ../admin/manage-fields.php:393
714
- msgid "New Caledonia"
715
- msgstr "New Caledonia"
716
-
717
- #: ../admin/manage-fields.php:394
718
- msgid "New Zealand"
719
- msgstr "New Zealand"
720
-
721
- #: ../admin/manage-fields.php:395
722
- msgid "Nicaragua"
723
- msgstr "Nicaragua"
724
-
725
- #: ../admin/manage-fields.php:396
726
- msgid "Niger"
727
- msgstr "Niger"
728
-
729
- #: ../admin/manage-fields.php:397
730
- msgid "Nigeria"
731
- msgstr "Nigeria"
732
-
733
- #: ../admin/manage-fields.php:398
734
- msgid "Niue"
735
- msgstr "Niue"
736
-
737
- #: ../admin/manage-fields.php:399
738
- msgid "Norfolk Island"
739
- msgstr "Norfolk Island"
740
-
741
- #: ../admin/manage-fields.php:400
742
- msgid "North Korea"
743
- msgstr "North Korea"
744
-
745
- #: ../admin/manage-fields.php:401
746
- msgid "Northern Mariana Islands"
747
- msgstr "Northern Mariana Islands"
748
-
749
- #: ../admin/manage-fields.php:402
750
- msgid "Norway"
751
- msgstr "Norway"
752
-
753
- #: ../admin/manage-fields.php:403
754
- msgid "Oman"
755
- msgstr "Oman"
756
-
757
- #: ../admin/manage-fields.php:404
758
- msgid "Pakistan"
759
- msgstr "Pakistan"
760
-
761
- #: ../admin/manage-fields.php:405
762
- msgid "Palau"
763
- msgstr "Palau"
764
-
765
- #: ../admin/manage-fields.php:406
766
- msgid "Palestinian Territory"
767
- msgstr "Palestinian Territory"
768
-
769
- #: ../admin/manage-fields.php:407
770
- msgid "Panama"
771
- msgstr "Panama"
772
-
773
- #: ../admin/manage-fields.php:408
774
- msgid "Papua New Guinea"
775
- msgstr "Papua New Guinea"
776
-
777
- #: ../admin/manage-fields.php:409
778
- msgid "Paraguay"
779
- msgstr "Paraguay"
780
-
781
- #: ../admin/manage-fields.php:410
782
- msgid "Peru"
783
- msgstr "Peru"
784
-
785
- #: ../admin/manage-fields.php:411
786
- msgid "Philippines"
787
- msgstr "Philippines"
788
-
789
- #: ../admin/manage-fields.php:412
790
- msgid "Pitcairn"
791
- msgstr "Pitcairn"
792
-
793
- #: ../admin/manage-fields.php:413
794
- msgid "Poland"
795
- msgstr "Poland"
796
-
797
- #: ../admin/manage-fields.php:414
798
- msgid "Portugal"
799
- msgstr "Portugal"
800
-
801
- #: ../admin/manage-fields.php:415
802
- msgid "Puerto Rico"
803
- msgstr "Puerto Rico"
804
-
805
- #: ../admin/manage-fields.php:416
806
- msgid "Qatar"
807
- msgstr "Qatar"
808
-
809
- #: ../admin/manage-fields.php:417
810
- msgid "Republic of the Congo"
811
- msgstr "Republic of the Congo"
812
-
813
- #: ../admin/manage-fields.php:418
814
- msgid "Reunion"
815
- msgstr "Reunion"
816
-
817
- #: ../admin/manage-fields.php:419
818
- msgid "Romania"
819
- msgstr "Romania"
820
-
821
- #: ../admin/manage-fields.php:420
822
- msgid "Russia"
823
- msgstr "Russia"
824
-
825
- #: ../admin/manage-fields.php:421
826
- msgid "Rwanda"
827
- msgstr "Rwanda"
828
-
829
- #: ../admin/manage-fields.php:422
830
- msgid "Saint Barthelemy"
831
- msgstr "Saint Barthelemy"
832
-
833
- #: ../admin/manage-fields.php:423
834
- msgid "Saint Helena"
835
- msgstr "Saint Helena"
836
-
837
- #: ../admin/manage-fields.php:424
838
- msgid "Saint Kitts and Nevis"
839
- msgstr "Saint Kitts and Nevis"
840
-
841
- #: ../admin/manage-fields.php:425
842
- msgid "Saint Lucia"
843
- msgstr "Saint Lucia"
844
-
845
- #: ../admin/manage-fields.php:426
846
- msgid "Saint Martin"
847
- msgstr "Saint Martin"
848
-
849
- #: ../admin/manage-fields.php:427
850
- msgid "Saint Pierre and Miquelon"
851
- msgstr "Saint Pierre and Miquelon"
852
-
853
- #: ../admin/manage-fields.php:428
854
- msgid "Saint Vincent and the Grenadines"
855
- msgstr "Saint Vincent and the Grenadines"
856
-
857
- #: ../admin/manage-fields.php:429
858
- msgid "Samoa"
859
- msgstr "Samoa"
860
-
861
- #: ../admin/manage-fields.php:430
862
- msgid "San Marino"
863
- msgstr "San Marino"
864
-
865
- #: ../admin/manage-fields.php:431
866
- msgid "Sao Tome and Principe"
867
- msgstr "Sao Tome and Principe"
868
-
869
- #: ../admin/manage-fields.php:432
870
- msgid "Saudi Arabia"
871
- msgstr "Saudi Arabia"
872
-
873
- #: ../admin/manage-fields.php:433
874
- msgid "Senegal"
875
- msgstr "Senegal"
876
-
877
- #: ../admin/manage-fields.php:434
878
- msgid "Serbia"
879
- msgstr "Serbia"
880
-
881
- #: ../admin/manage-fields.php:435
882
- msgid "Seychelles"
883
- msgstr "Seychelles"
884
-
885
- #: ../admin/manage-fields.php:436
886
- msgid "Sierra Leone"
887
- msgstr "Sierra Leone"
888
-
889
- #: ../admin/manage-fields.php:437
890
- msgid "Singapore"
891
- msgstr "Singapore"
892
-
893
- #: ../admin/manage-fields.php:438
894
- msgid "Sint Maarten"
895
- msgstr "Sint Maarten"
896
-
897
- #: ../admin/manage-fields.php:439
898
- msgid "Slovakia"
899
- msgstr "Slovakia"
900
-
901
- #: ../admin/manage-fields.php:440
902
- msgid "Slovenia"
903
- msgstr "Slovenia"
904
-
905
- #: ../admin/manage-fields.php:441
906
- msgid "Solomon Islands"
907
- msgstr "Solomon Islands"
908
-
909
- #: ../admin/manage-fields.php:442
910
- msgid "Somalia"
911
- msgstr "Somalia"
912
-
913
- #: ../admin/manage-fields.php:443
914
- msgid "South Africa"
915
- msgstr "South Africa"
916
-
917
- #: ../admin/manage-fields.php:444
918
- msgid "South Georgia and the South Sandwich Islands"
919
- msgstr "South Georgia and the South Sandwich Islands"
920
-
921
- #: ../admin/manage-fields.php:445
922
- msgid "South Korea"
923
- msgstr "South Korea"
924
-
925
- #: ../admin/manage-fields.php:446
926
- msgid "South Sudan"
927
- msgstr "South Sudan"
928
-
929
- #: ../admin/manage-fields.php:447
930
- msgid "Spain"
931
- msgstr "Spain"
932
-
933
- #: ../admin/manage-fields.php:448
934
- msgid "Sri Lanka"
935
- msgstr "Sri Lanka"
936
-
937
- #: ../admin/manage-fields.php:449
938
- msgid "Sudan"
939
- msgstr "Sudan"
940
-
941
- #: ../admin/manage-fields.php:450
942
- msgid "Suriname"
943
- msgstr "Suriname"
944
-
945
- #: ../admin/manage-fields.php:451
946
- msgid "Svalbard and Jan Mayen"
947
- msgstr "Svalbard and Jan Mayen"
948
-
949
- #: ../admin/manage-fields.php:452
950
- msgid "Swaziland"
951
- msgstr "Swaziland"
952
-
953
- #: ../admin/manage-fields.php:453
954
- msgid "Sweden"
955
- msgstr "Sweden"
956
-
957
- #: ../admin/manage-fields.php:454
958
- msgid "Switzerland"
959
- msgstr "Switzerland"
960
-
961
- #: ../admin/manage-fields.php:455
962
- msgid "Syria"
963
- msgstr "Syria"
964
-
965
- #: ../admin/manage-fields.php:456
966
- msgid "Taiwan"
967
- msgstr "Taiwan"
968
-
969
- #: ../admin/manage-fields.php:457
970
- msgid "Tajikistan"
971
- msgstr "Tajikistan"
972
-
973
- #: ../admin/manage-fields.php:458
974
- msgid "Tanzania"
975
- msgstr "Tanzania"
976
-
977
- #: ../admin/manage-fields.php:459
978
- msgid "Thailand"
979
- msgstr "Thailand"
980
-
981
- #: ../admin/manage-fields.php:460
982
- msgid "Togo"
983
- msgstr "Togo"
984
-
985
- #: ../admin/manage-fields.php:461
986
- msgid "Tokelau"
987
- msgstr "Tokelau"
988
-
989
- #: ../admin/manage-fields.php:462
990
- msgid "Tonga"
991
- msgstr "Tonga"
992
-
993
- #: ../admin/manage-fields.php:463
994
- msgid "Trinidad and Tobago"
995
- msgstr "Trinidad and Tobago"
996
-
997
- #: ../admin/manage-fields.php:464
998
- msgid "Tunisia"
999
- msgstr "Tunisia"
1000
-
1001
- #: ../admin/manage-fields.php:465
1002
- msgid "Turkey"
1003
- msgstr "Turkey"
1004
-
1005
- #: ../admin/manage-fields.php:466
1006
- msgid "Turkmenistan"
1007
- msgstr "Turkmenistan"
1008
-
1009
- #: ../admin/manage-fields.php:467
1010
- msgid "Turks and Caicos Islands"
1011
- msgstr "Turks and Caicos Islands"
1012
-
1013
- #: ../admin/manage-fields.php:468
1014
- msgid "Tuvalu"
1015
- msgstr "Tuvalu"
1016
-
1017
- #: ../admin/manage-fields.php:469
1018
- msgid "U.S. Virgin Islands"
1019
- msgstr "U.S. Virgin Islands"
1020
-
1021
- #: ../admin/manage-fields.php:470
1022
- msgid "Uganda"
1023
- msgstr "Uganda"
1024
-
1025
- #: ../admin/manage-fields.php:471
1026
- msgid "Ukraine"
1027
- msgstr "Ukraine"
1028
-
1029
- #: ../admin/manage-fields.php:472
1030
- msgid "United Arab Emirates"
1031
- msgstr "United Arab Emirates"
1032
-
1033
- #: ../admin/manage-fields.php:473
1034
- msgid "United Kingdom"
1035
- msgstr "United Kingdom"
1036
-
1037
- #: ../admin/manage-fields.php:474
1038
- msgid "United States"
1039
- msgstr "United States"
1040
-
1041
- #: ../admin/manage-fields.php:475
1042
- msgid "United States Minor Outlying Islands"
1043
- msgstr "United States Minor Outlying Islands"
1044
-
1045
- #: ../admin/manage-fields.php:476
1046
- msgid "Uruguay"
1047
- msgstr "Uruguay"
1048
-
1049
- #: ../admin/manage-fields.php:477
1050
- msgid "Uzbekistan"
1051
- msgstr "Uzbekistan"
1052
-
1053
- #: ../admin/manage-fields.php:478
1054
- msgid "Vanuatu"
1055
- msgstr "Vanuatu"
1056
-
1057
- #: ../admin/manage-fields.php:479
1058
- msgid "Vatican"
1059
- msgstr "Vatican"
1060
-
1061
- #: ../admin/manage-fields.php:480
1062
- msgid "Venezuela"
1063
- msgstr "Venezuela"
1064
-
1065
- #: ../admin/manage-fields.php:481
1066
- msgid "Vietnam"
1067
- msgstr "Vietnam"
1068
-
1069
- #: ../admin/manage-fields.php:482
1070
- msgid "Wallis and Futuna"
1071
- msgstr "Wallis and Futuna"
1072
-
1073
- #: ../admin/manage-fields.php:483
1074
- msgid "Western Sahara"
1075
- msgstr "Western Sahara"
1076
-
1077
- #: ../admin/manage-fields.php:484
1078
- msgid "Yemen"
1079
- msgstr "Yemen"
1080
-
1081
- #: ../admin/manage-fields.php:485
1082
- msgid "Zambia"
1083
- msgstr "Zambia"
1084
-
1085
- #: ../admin/manage-fields.php:486
1086
- msgid "Zimbabwe"
1087
- msgstr "Zimbabwe"
1088
-
1089
- #: ../admin/manage-fields.php:843
1090
- msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
1091
- msgstr ""
1092
-
1093
- #: ../assets/misc/plugin-compatibilities.php:241
1094
- msgid "Your account has to be confirmed by an administrator before you can log in."
1095
- msgstr ""
1096
-
1097
- #: ../features/admin-approval/admin-approval.php:203
1098
- msgid "Your account has been successfully created!"
1099
- msgstr ""
1100
-
1101
- #: ../features/functions.php:607
1102
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:374
1103
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:379
1104
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1105
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:458
1106
- msgid "Please enter a (valid) reCAPTCHA value"
1107
- msgstr ""
1108
-
1109
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1110
- msgid "Click the BACK button on your browser, and try again."
1111
- msgstr ""
1112
-
1113
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:78
1114
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:87
1115
- msgid "Sorry, you cannot upload this file type for this field."
1116
- msgstr ""
1117
-
1118
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:94
1119
- msgid "An error occurred, please try again later."
1120
- msgstr ""
1121
-
1122
- #: ../modules/user-listing/userlisting.php:253
1123
- msgid "More"
1124
- msgstr ""
1125
-
1126
- #: ../modules/user-listing/userlisting.php:338
1127
- msgid "You do not have permission to view this user list."
1128
- msgstr ""
1129
-
1130
- #: ../modules/user-listing/userlisting.php:351
1131
- msgid "You do not have the required user role to view this user list."
1132
- msgstr ""
1133
-
1134
- #: ../modules/user-listing/userlisting.php:1287
1135
- msgid "Ascending"
1136
- msgstr ""
1137
-
1138
- #: ../modules/user-listing/userlisting.php:1288
1139
- msgid "Descending"
1140
- msgstr ""
1141
-
1142
- #: ../admin/add-ons.php:144
1143
- msgid "Download Now"
1144
- msgstr "Download nu"
1145
-
1146
- #: ../admin/admin-functions.php:197
1147
- msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
1148
- msgstr "Hvis du kan lide at bruge <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate os på WordPress.org</a>. Flere tilfredse brugere betyder flere features, færre fejl og bedre support til alle."
1149
-
1150
- #: ../admin/manage-fields.php:68
1151
- msgid "Choose one of the supported field types"
1152
- msgstr "Vælg en af de supporterede felttyper"
1153
-
1154
- #: ../admin/manage-fields.php:70
1155
- msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
1156
- msgstr ".Ekstra felttyper er tilgængelig i <a href=\"%s\">Hobbyist or PRO versions</a>."
1157
-
1158
- #: ../admin/manage-fields.php:107
1159
- msgid "Site Key"
1160
- msgstr "Site nøgle (Key)"
1161
-
1162
- #: ../admin/manage-fields.php:107
1163
- msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1164
- msgstr "Site nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1165
-
1166
- #: ../admin/manage-fields.php:108
1167
- msgid "Secret Key"
1168
- msgstr "Hemmelig nøgle (Key)"
1169
-
1170
- #: ../admin/manage-fields.php:108
1171
- msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1172
- msgstr "Den hemmelige nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1173
-
1174
- #: ../admin/manage-fields.php:660
1175
- msgid "You must enter the site key\n"
1176
- msgstr "Du skal enter site nøglen (Key)\n"
1177
-
1178
- #: ../admin/manage-fields.php:662
1179
- msgid "You must enter the secret key\n"
1180
- msgstr "Du skal enter den hemmelige nøgle (Key)\n"
1181
-
1182
- #: ../admin/add-ons.php:10 ../admin/add-ons.php:32
1183
- msgid "Add-Ons"
1184
- msgstr "Tilføjelser"
1185
-
1186
- #: ../admin/add-ons.php:34 ../admin/add-ons.php:124
1187
- msgid "Activate"
1188
- msgstr "Aktivér"
1189
-
1190
- #: ../admin/add-ons.php:36
1191
- msgid "Downloading and installing..."
1192
- msgstr "Dowloader og installerer...."
1193
-
1194
- #: ../admin/add-ons.php:37
1195
- msgid "Installation complete"
1196
- msgstr "Installationen gennemført"
1197
-
1198
- #: ../admin/add-ons.php:39
1199
- msgid "Add-On is Active"
1200
- msgstr "Tilføjelser er aktive"
1201
-
1202
- #: ../admin/add-ons.php:40
1203
- msgid "Add-On has been activated"
1204
- msgstr "Tilføjelser er blevet aktiveret"
1205
-
1206
- #: ../admin/add-ons.php:41
1207
- msgid "Retry Install"
1208
- msgstr "Geninstallér"
1209
-
1210
- #: ../admin/add-ons.php:43 ../admin/add-ons.php:135
1211
- msgid "Add-On is <strong>active</strong>"
1212
- msgstr "Tilføjelser (add-on) er <strong>active</strong>"
1213
-
1214
- #: ../admin/add-ons.php:44 ../admin/add-ons.php:133
1215
- msgid "Add-On is <strong>inactive</strong>"
1216
- msgstr "Tilføjelser (add-on) er <strong>inactive</strong>"
1217
-
1218
- #: ../admin/add-ons.php:46 ../admin/add-ons.php:128
1219
- msgid "Deactivate"
1220
- msgstr "Deaktivér"
1221
-
1222
- #: ../admin/add-ons.php:47
1223
- msgid "Add-On has been deactivated."
1224
- msgstr "Tilføjelser er blevet deaktiveret"
1225
-
1226
- #: ../admin/add-ons.php:59
1227
- msgid "Something went wrong, we could not connect to the server. Please try again later."
1228
- msgstr "Et eller andet gik galt, vi kunne ikke forbinde til serveren. Venligst prøv igen senere."
1229
-
1230
- #: ../admin/add-ons.php:144 ../admin/add-ons.php:147
1231
- msgid "Buy Now"
1232
- msgstr "Køb nu"
1233
-
1234
- #: ../admin/add-ons.php:147
1235
- msgid "Install Now"
1236
- msgstr "Installér nu"
1237
-
1238
- #: ../admin/add-ons.php:153
1239
- msgid "Compatible with your version of Profile Builder."
1240
- msgstr "Kompatibel med din version af Profile Builder."
1241
-
1242
- #: ../admin/add-ons.php:162
1243
- msgid "Upgrade Profile Builder"
1244
- msgstr "Opgradér Profile Builder"
1245
-
1246
- #: ../admin/add-ons.php:163
1247
- msgid "Not compatible with Profile Builder"
1248
- msgstr "Ikke kompatibel med Profile Builder"
1249
-
1250
- #: ../admin/add-ons.php:171
1251
- msgid "Not compatible with your version of Profile Builder."
1252
- msgstr "Ikke kompatibel med din version af Profile Builder"
1253
-
1254
- #: ../admin/add-ons.php:172
1255
- msgid "Minimum required Profile Builder version:"
1256
- msgstr "Minimum krævet version af Profile Builder:"
1257
-
1258
- #: ../admin/add-ons.php:177
1259
- msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1260
- msgstr "Kunne ikke installere tilføjelse (add-on). Prøv igen eller <a href=\"%s\" target=\"_blank\">install manually</a>."
1261
-
1262
- #: ../front-end/default-fields/email/email.php:48
1263
- msgid "You must enter a valid email address."
1264
- msgstr "Du skal indtaste en gyldig e-mail adresse."
1265
-
1266
- #: ../front-end/default-fields/username/username.php:53
1267
- #: ../front-end/default-fields/username/username.php:60
1268
- msgid "This username is invalid because it uses illegal characters."
1269
- msgstr "Dette brugernavn er ugyldigt, idet det indeholde karaterer / tegn som ikke er tilladte."
1270
-
1271
- #: ../front-end/default-fields/username/username.php:53
1272
- #: ../front-end/default-fields/username/username.php:60
1273
- msgid "Please enter a valid username."
1274
- msgstr "Venligst indtast et gyldigt brugernavn."
1275
-
1276
- #: ../front-end/extra-fields/user-role/user-role.php:67
1277
- #: ../front-end/extra-fields/user-role/user-role.php:80
1278
- msgid "Only administrators can see this field on edit profile forms."
1279
- msgstr "Kun administratorer kan se dette felt på rediger profilformularer."
1280
-
1281
- #: ../front-end/extra-fields/user-role/user-role.php:76
1282
- msgid "As an administrator you cannot change your role."
1283
- msgstr "Som administrator kan du ikke ændre din rolle."
1284
-
1285
- #: ../modules/email-customizer/admin-email-customizer.php:117
1286
- msgid ""
1287
- "\n"
1288
- "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
1289
- "<p>His/her new password is: {{password}}</p>\n"
1290
- msgstr ""
1291
- "\n"
1292
- "<p>{{username}} har foretaget en ændring af adgangskoden via genskab adgangskode.</p>\n"
1293
- "\n"
1294
- "<p>Hans/hendes nye adgangskode er: {{password}}</p>\n"
1295
- "\n"
1296
-
1297
- #: ../modules/email-customizer/admin-email-customizer.php:141
1298
- msgid "Admin Notification for User Password Reset"
1299
- msgstr "Admin meddelelse for genskabning af bruger adgangskode"
1300
-
1301
- #: ../modules/email-customizer/email-customizer.php:42
1302
- msgid "Reset Key"
1303
- msgstr "Genskab nøgle"
1304
-
1305
- #: ../modules/email-customizer/email-customizer.php:43
1306
- msgid "Reset Url"
1307
- msgstr "Genskab URL"
1308
-
1309
- #: ../modules/email-customizer/email-customizer.php:44
1310
- msgid "Reset Link"
1311
- msgstr "Genskab link"
1312
-
1313
- #: ../modules/email-customizer/user-email-customizer.php:204
1314
- msgid ""
1315
- "\n"
1316
- "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
1317
- "Username: {{username}}</p>\n"
1318
- "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
1319
- "<p>To reset your password, visit the following address:<br/>\n"
1320
- "{{{reset_link}}}</p>\n"
1321
- msgstr ""
1322
- "\n"
1323
- "<p>Nogen har foretaget en genskabning af adgangskoden for følgende konto: {{site_name}}<br/>\n"
1324
- "Brugernavn: {{username}}</p>\n"
1325
- "<p>Hvis dette var en fejl skal du blot se bort fra denne email og intet vil ske.</p>\n"
1326
- "<p>For at genskabe din adgangskode gå ind på følgende adresse:<br/>\n"
1327
- "{{{reset_link}}}</p>\n"
1328
-
1329
- #: ../modules/email-customizer/user-email-customizer.php:218
1330
- msgid "[{{site_name}}] Password Reset"
1331
- msgstr "[{{site_name}}] Nulstil adgangskode "
1332
-
1333
- #: ../modules/email-customizer/user-email-customizer.php:229
1334
- msgid "Password Reset Email"
1335
- msgstr "E-mail vedr. nulstilling af adgangskode"
1336
-
1337
- #: ../modules/email-customizer/user-email-customizer.php:235
1338
- msgid ""
1339
- "\n"
1340
- "<p>You have successfully reset your password to: {{password}}</p>\n"
1341
- msgstr ""
1342
- "\n"
1343
- "<p>Du har med succes nulstillet din adgangskode til: {{password}}</p>\n"
1344
- "\n"
1345
-
1346
- #: ../modules/email-customizer/user-email-customizer.php:245
1347
- msgid "[{{site_name}}] Password Reset Successfully"
1348
- msgstr "[{{site_name}}] Adgangskode nulstillet succesfuldt"
1349
-
1350
- #: ../modules/email-customizer/user-email-customizer.php:256
1351
- msgid "Password Reset Success Email"
1352
- msgstr "E-mail vedr. adgangskode nulstillet succesfuldt"
1353
-
1354
- #: ../modules/user-listing/userlisting.php:134
1355
- msgid "User Nicename"
1356
- msgstr "Bruger kaldenavn"
1357
-
1358
- #: ../modules/user-listing/userlisting.php:442
1359
- msgid "None"
1360
- msgstr "Ingen"
1361
-
1362
- #: ../admin/admin-functions.php:128
1363
- msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1364
- msgstr "<strong>FEJL</strong>: Adgangskoden skal bestå af mindst %s characters"
1365
-
1366
- #: ../admin/admin-functions.php:145
1367
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
1368
- msgstr "<strong>FEJL</strong>: Adgangskodens styrke skal være mindst: %s"
1369
-
1370
- #: ../admin/general-settings.php:170
1371
- msgid "Username and Email"
1372
- msgstr "Brugernavn og e-mail"
1373
-
1374
- #: ../admin/general-settings.php:175
1375
- msgid "\"Username and Email\" - users can Log In with both Username and Email."
1376
- msgstr "\"Brugernavn og e-mail\" - brugere kan logge ind med såvel brugernavn som e-mail."
1377
-
1378
- #: ../admin/general-settings.php:176
1379
- msgid "\"Username\" - users can Log In only with Username."
1380
- msgstr "\"Brugernavn\" - brugere kan kun logge ind med brugernavn."
1381
-
1382
- #: ../admin/general-settings.php:177
1383
- msgid "\"Email\" - users can Log In only with Email."
1384
- msgstr "\"E-mail\" - brugere kan kun logge ind med e-mail."
1385
-
1386
- #: ../admin/manage-fields.php:100
1387
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
1388
- msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default: .jpg,.jpeg,.gif,.png (.*)"
1389
-
1390
- #: ../admin/manage-fields.php:101
1391
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
1392
- msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default alle WordPress tilladte filformater (.*)"
1393
-
1394
- #: ../admin/manage-fields.php:111
1395
- msgid "User Roles"
1396
- msgstr "Brugerroller"
1397
-
1398
- #: ../admin/manage-fields.php:111
1399
- msgid "Select which user roles to show to the user ( drag and drop to re-order )"
1400
- msgstr "Vælg hvilke brugerroller der skal vises for brugerne (\"træk\" og \"slip\" for at om-organiserer)"
1401
-
1402
- #: ../admin/manage-fields.php:112
1403
- msgid "User Roles Order"
1404
- msgstr "Brugerroller orden"
1405
-
1406
- #: ../admin/manage-fields.php:112
1407
- msgid "Save the user role order from the user roles checkboxes"
1408
- msgstr "Gem brugerrolle ordenen fra brugerrollernes tjekbokse"
1409
-
1410
- #: ../admin/manage-fields.php:752
1411
- msgid "Please select at least one user role\n"
1412
- msgstr "Vælg venligst mindst en brugerrolle\n"
1413
-
1414
- #: ../admin/register-version.php:22
1415
- msgid "Profile Builder Register"
1416
- msgstr "Registrer Profile Builder"
1417
-
1418
- #: ../admin/register-version.php:81
1419
- msgid "The serial number is about to expire soon!"
1420
- msgstr "Serienummeret udløber snart!"
1421
-
1422
- #: ../admin/register-version.php:81
1423
- msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
1424
- msgstr "Dit serienummer er ved at udløbe, venligst %1$s forny din licens%2$s."
1425
-
1426
- #: ../admin/register-version.php:83
1427
- msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
1428
- msgstr " Dit serienummer er udløbet, venligst %1$s forny din licens%2$s."
1429
-
1430
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
1431
- msgid "Add Entry"
1432
- msgstr "Tilføj post"
1433
-
1434
- #: ../features/email-confirmation/class-email-confirmation.php:91
1435
- msgid "show"
1436
- msgstr "vis"
1437
-
1438
- #: ../features/functions.php:659
1439
- msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
1440
- msgstr "For at tillade brugere at registrere sig på din hjemmeside via Profile Builder, skal du først aktivere brugerregistrering. Gå til %1$sNetwork Settings%2$s, og under registreringsopsætningen sørg for at sætte markering ved “Brugerkonti må registreres.” %3$sDismiss%4$s"
1441
-
1442
- #: ../front-end/class-formbuilder.php:509
1443
- msgid "User to edit:"
1444
- msgstr "Bruger der skal redigeres:"
1445
-
1446
- #: ../front-end/default-fields/password/password.php:46
1447
- #: ../front-end/recover.php:245
1448
- msgid "The password must have the minimum length of %s characters"
1449
- msgstr "Adgangskoden skal have en minimumslængde %s karakterer"
1450
-
1451
- #: ../front-end/default-fields/password/password.php:50
1452
- #: ../front-end/recover.php:249
1453
- msgid "The password must have a minimum strength of %s"
1454
- msgstr "Adgangskoden skal minimum have en styrke på %s"
1455
-
1456
- #: ../front-end/extra-fields/user-role/user-role.php:112
1457
- msgid "You cannot register this user role"
1458
- msgstr "Du kan ikke registrere denne brugerrolle"
1459
-
1460
- #: ../front-end/login.php:105
1461
- msgid "username or email"
1462
- msgstr "brugernavn eller e-mail"
1463
-
1464
- #: ../front-end/login.php:174
1465
- msgid "Username or Email"
1466
- msgstr "Brugernavn eller e-mail"
1467
-
1468
- #: ../front-end/logout.php:15
1469
- msgid "You are currently logged in as %s. "
1470
- msgstr "Du er i øjeblikket logget ind som %s."
1471
-
1472
- #: ../front-end/logout.php:15
1473
- msgid "Log out &raquo;"
1474
- msgstr "Log ud &raquo;"
1475
-
1476
- #: ../modules/email-customizer/email-customizer.php:31
1477
- msgid "User Role"
1478
- msgstr "Brugerrolle"
1479
-
1480
- #: ../modules/user-listing/userlisting.php:1207
1481
- msgid "View all extra shortcode parameters"
1482
- msgstr "Se alle ekstra \"shortcode\" parametre"
1483
-
1484
- #: ../modules/user-listing/userlisting.php:1221
1485
- msgid "displays only the users that you specified the user_id for"
1486
- msgstr "vis kun de brugere som du specificerede 'user_id' for"
1487
-
1488
- #: ../modules/user-listing/userlisting.php:1227
1489
- msgid "displays all users except the ones you specified the user_id for"
1490
- msgstr "vis alle brugere undtagen dem som du specificerede 'user_id' for"
1491
-
1492
- #: ../features/functions.php:526
1493
- msgid "Minimum length of %d characters"
1494
- msgstr "Minimum længde på %d karakterer"
1495
-
1496
- #: ../front-end/class-formbuilder.php:99 ../front-end/class-formbuilder.php:102
1497
- msgid "This message is only visible by administrators"
1498
- msgstr "Denne meddelelse er kun synlig for administratorer"
1499
-
1500
- #: ../modules/user-listing/userlisting.php:364
1501
- msgid "User not found"
1502
- msgstr "Bruger ikke fundet"
1503
-
1504
- #: ../modules/email-customizer/admin-email-customizer.php:38
1505
- #: ../modules/email-customizer/user-email-customizer.php:38
1506
- msgid "Valid tags {{reply_to}} and {{site_name}}"
1507
- msgstr "Gyldige tags {{reply_to}} og{{site_name}}"
1508
-
1509
- #: ../admin/admin-bar.php:48
1510
- msgid "Choose which user roles view the admin bar in the front-end of the website."
1511
- msgstr "Vælg hvilke brugerroller der skal se kontrolpanelet på sitets 'front-end'."
1512
-
1513
- #: ../admin/manage-fields.php:105
1514
- 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"
1515
- msgstr "Indsæt en komma separeret liste med værdier<br/>Det kan være hvad som helst, idet værdierne er skjulte for brugeren. Men listen må ikke indeholde specielle karakterer eller apostroffer."
1516
-
1517
- #: ../admin/manage-fields.php:689
1518
- msgid "The meta-name cannot be empty\n"
1519
- msgstr "'Meta-name' kan ikke være tom\n"
1520
-
1521
- #: ../admin/register-version.php:69
1522
- msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
1523
- msgstr "Nu du har erhvervet en kopi af %s bør du tage dig tid til at registrere det med serienummeret som du modtog."
1524
-
1525
- #: ../admin/register-version.php:243
1526
- 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>"
1527
- msgstr "<p>Din<strong>Profile Builder</strong> serienummer er ugyldigt eller mangler. <br/>Venligst %1$sregistrer din kopi%2$s for at få adgang til automatiske opdateringer og support.Har du brug for en licensnøgle? %3$sPurchase one now%4$s</p>"
1528
-
1529
- #: ../admin/register-version.php:246
1530
- 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>"
1531
- msgstr "<p>Din<strong>Profile Builder</strong> licens er udløbet. <br/>Venligst %1$sForny din licens%2$s for fortsat at have adgang til produkt downloads, automatiske opdateringer og support. %3$sForny nu og få 50&#37; rabat %4$s %5$sAfvis%6$s</p>"
1532
-
1533
- #: ../admin/register-version.php:251
1534
- 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>"
1535
- msgstr "<p>Din<strong>Profile Builder</strong> licens udløber den %5$s. <br/>Venligst%1$sForny din licens%2$s for fortsat at have adgang til produkt downloads, automatiske opdateringer og support. %3$sForny nu og få 50&#37; rabat %4$s %6$sAfvis%7$s</p>"
1536
-
1537
- #: ../assets/lib/wck-api/fields/country select.php:14
1538
- #: ../assets/lib/wck-api/fields/cpt select.php:17
1539
- #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
1540
- #: select.php:15
1541
- msgid "...Choose"
1542
- msgstr "...Vælg"
1543
-
1544
- #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
1545
- msgid "1 item"
1546
- msgstr "1 emne"
1547
-
1548
- #: ../features/functions.php:512
1549
- msgid "Very Weak"
1550
- msgstr "Meget svag"
1551
-
1552
- #: ../features/functions.php:600
1553
- msgid "This field is required"
1554
- msgstr "Dette felt er obligatorisk"
1555
-
1556
- #: ../features/functions.php:627
1557
- msgid "Cancel"
1558
- msgstr "Annuller"
1559
-
1560
- #: ../features/functions.php:663
1561
- 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"
1562
- msgstr "For at tillade bruger at registrere sig på dit site via Profile Builder, skal du først aktiverer brugerregistrering. Gå til %1$sIndstillinger -> Generel%2$s fane, og under Medlemskab sørge for at markere “Alle kan registrere sig\". %3$sAfvis%4$s"
1563
-
1564
- #: ../front-end/login.php:96
1565
- msgid "Invalid username."
1566
- msgstr "Ugyldigt brugernavn"
1567
-
1568
- #: ../front-end/login.php:101 ../front-end/login.php:105
1569
- msgid "username"
1570
- msgstr "brugernavn"
1571
-
1572
- #: ../front-end/login.php:101
1573
- msgid "email"
1574
- msgstr "e-mail"
1575
-
1576
- #: ../front-end/login.php:208
1577
- msgid "Lost your password?"
1578
- msgstr "Mistet din adgangskode?"
1579
-
1580
- #: ../index.php:34
1581
- msgid " is also activated. You need to deactivate it before activating this version of the plugin."
1582
- msgstr "er også aktiveret. Du skal deaktivere det før aktivering af plugin'et."
1583
-
1584
- #: ../modules/email-customizer/admin-email-customizer.php:54
1585
- #: ../modules/email-customizer/user-email-customizer.php:54
1586
- msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
1587
- msgstr "Skal være en gyldig e-mail adresse eller {{reply_to}} som default for administrator e-mailen"
1588
-
1589
- #: ../features/email-confirmation/email-confirmation.php:554
1590
- #: ../features/email-confirmation/email-confirmation.php:557
1591
- #: ../modules/email-customizer/email-customizer.php:413
1592
- #: ../modules/email-customizer/email-customizer.php:420
1593
- #: ../modules/email-customizer/email-customizer.php:434
1594
- msgid "Your selected password at signup"
1595
- msgstr "Din valgte adgangskode ved oprettelse"
1596
-
1597
- #: ../modules/email-customizer/user-email-customizer.php:38
1598
- msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
1599
- msgstr "Disse indstillinger gemmes ligeledes på indstillingssiden på 'Admin Email Customizer', når de gemmes."
1600
-
1601
- #: ../modules/multiple-forms/edit-profile-forms.php:270
1602
- msgid "This form is empty."
1603
- msgstr "Denne formular er tom."
1604
-
1605
- #: ../modules/multiple-forms/multiple-forms.php:416
1606
- msgid "Delete all items"
1607
- msgstr "Slet alle emner"
1608
-
1609
- #: ../modules/multiple-forms/multiple-forms.php:416
1610
- msgid "Delete all"
1611
- msgstr "Slet alt"
1612
-
1613
- #: ../modules/multiple-forms/register-forms.php:226
1614
- msgid "Choose..."
1615
- msgstr "Vælg..."
1616
-
1617
- #: ../modules/user-listing/userlisting.php:1298
1618
- msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
1619
- msgstr "Angiv antallet af brugere som vises på hver side af den samlede brugeroversigt"
1620
-
1621
- #: ../admin/admin-bar.php:10
1622
- msgid "Show/Hide the Admin Bar on the Front-End"
1623
- msgstr "Vis/Skjul 'Admin menu' på 'Front-end'"
1624
-
1625
- #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
1626
- msgid "Admin Bar Settings"
1627
- msgstr "Admin menu indstillinger "
1628
-
1629
- #: ../admin/admin-bar.php:57
1630
- msgid "User-Role"
1631
- msgstr "Brugerrolle"
1632
-
1633
- #: ../admin/admin-bar.php:58
1634
- msgid "Visibility"
1635
- msgstr "Synlighed"
1636
-
1637
- #: ../admin/admin-bar.php:73
1638
- msgid "Default"
1639
- msgstr "Default"
1640
-
1641
- #: ../admin/admin-bar.php:74
1642
- msgid "Show"
1643
- msgstr "Vis"
1644
-
1645
- #: ../admin/admin-bar.php:75
1646
- msgid "Hide"
1647
- msgstr "Skjul"
1648
-
1649
- #: ../admin/admin-bar.php:86 ../admin/general-settings.php:215
1650
- #: ../admin/register-version.php:95 ../features/functions.php:620
1651
- #: ../modules/custom-redirects/custom-redirects.php:136
1652
- #: ../modules/modules.php:142
1653
- msgid "Save Changes"
1654
- msgstr "Gem ændringer"
1655
-
1656
- #: ../admin/admin-functions.php:34
1657
- 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 )"
1658
- msgstr "Login er indstillet til at blive foretaget ved hjælp af e-mail. Dette felt vil IKKE fremgå af 'front-end'! (du kan ændre disse indstillinger på \"%s\" fanen)"
1659
-
1660
- #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
1661
- #: ../admin/general-settings.php:38
1662
- msgid "General Settings"
1663
- msgstr "Generelle indstillinger"
1664
-
1665
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:201
1666
- msgid "Very weak"
1667
- msgstr "Meget svag"
1668
-
1669
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:202
1670
- #: ../features/functions.php:512
1671
- msgid "Weak"
1672
- msgstr "Svag"
1673
-
1674
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:203
1675
- #: ../features/functions.php:512
1676
- msgid "Medium"
1677
- msgstr "Middel"
1678
-
1679
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:204
1680
- #: ../features/functions.php:512
1681
- msgid "Strong"
1682
- msgstr "Stærk"
1683
-
1684
- #: ../admin/admin-functions.php:184
1685
- msgid "Add Field"
1686
- msgstr "Tilføj felt"
1687
-
1688
- #: ../admin/admin-functions.php:186
1689
- #: ../modules/class-mustache-templates/class-mustache-templates.php:374
1690
- msgid "Save Settings"
1691
- msgstr "Gem indstillinger"
1692
-
1693
- #: ../admin/basic-info.php:10
1694
- msgid "Basic Information"
1695
- msgstr "Basis information"
1696
-
1697
- #: ../admin/basic-info.php:29
1698
- msgid "Version %s"
1699
- msgstr "Version %s"
1700
-
1701
- #: ../admin/basic-info.php:30
1702
- msgid "<strong>Profile Builder </strong>"
1703
- msgstr "<strong>Profile Builder </strong>"
1704
-
1705
- #: ../admin/basic-info.php:31
1706
- msgid "The best way to add front-end registration, edit profile and login forms."
1707
- msgstr "Den bedste måde at tilføje 'front-end' registrering, redigere profile og login formularer på."
1708
-
1709
- #: ../admin/basic-info.php:33
1710
- msgid "For Modern User Interaction"
1711
- msgstr "Til 'Modern User Interaction'"
1712
-
1713
- #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
1714
- msgid "Login"
1715
- msgstr "Log ind"
1716
-
1717
- #: ../admin/basic-info.php:40
1718
- msgid "Registration"
1719
- msgstr "Registrering"
1720
-
1721
- #: ../admin/basic-info.php:44
1722
- msgid "Edit Profile"
1723
- msgstr "Rediger profil"
1724
-
1725
- #: ../admin/basic-info.php:51
1726
- msgid "Extra Features"
1727
- msgstr "Ekstra funktioner"
1728
-
1729
- #: ../admin/basic-info.php:52
1730
- msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
1731
- msgstr "Funktioner som giver dig mere kontrol over dine brugere, forbedret sikkerhed og hjælper dig med at bekæmpe spam ved brugerregistrering."
1732
-
1733
- #: ../admin/basic-info.php:53
1734
- msgid "Enable extra features"
1735
- msgstr "Aktiver ekstra funktioner"
1736
-
1737
- #: ../admin/basic-info.php:57
1738
- msgid "Recover Password"
1739
- msgstr "Genskab adgangskode"
1740
-
1741
- #: ../admin/basic-info.php:61
1742
- msgid "Admin Approval (*)"
1743
- msgstr "Admin godkendelse (*)"
1744
-
1745
- #: ../admin/basic-info.php:62
1746
- msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
1747
- msgstr "Du bestemmer hvem der er bruger på dit site. Få besked via e-mail eller godkende flere brugere ad gangen fra WordPress UI."
1748
-
1749
- #: ../admin/basic-info.php:65
1750
- msgid "Email Confirmation"
1751
- msgstr "E-mail bekræftelse"
1752
-
1753
- #: ../admin/basic-info.php:66
1754
- msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
1755
- msgstr "Sørg for at brugere registrerer med en ægte e-mail adresse. Ved registrering vil brugerne modtage en e-mail, hvori de skal bekræfte deres e-mail adresse."
1756
-
1757
- #: ../admin/basic-info.php:69
1758
- msgid "Minimum Password Length and Strength Meter"
1759
- msgstr "Minimum længde og styrke på adgangskode"
1760
-
1761
- #: ../admin/basic-info.php:70
1762
- msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
1763
- msgstr "Undgå svage adgangskoder ved at sætte et krav om min. længde samt sætte et krav om en vis styrke på adgangskoden."
1764
-
1765
- #: ../admin/basic-info.php:73
1766
- msgid "Login with Email or Username"
1767
- msgstr "Log ind med e-mail eller brugernavn"
1768
-
1769
- #: ../admin/basic-info.php:74
1770
- msgid "Allow users to log in with their email or username when accessing your site."
1771
- msgstr "Tillad brugere at logge ind med deres e-mail eller brugernavn når de logger ind på dit site."
1772
-
1773
- #: ../admin/basic-info.php:87
1774
- msgid "Customize Your Forms The Way You Want (*)"
1775
- msgstr "Tilpas dine formularer som du ønsker det (*)"
1776
-
1777
- #: ../admin/basic-info.php:88
1778
- msgid "With Extra Profile Fields you can create the exact registration form your project needs."
1779
- msgstr "Med ekstra profil felter kan du lave nøjagtigt den registreringsformular, som dit projekt har brug for. "
1780
-
1781
- #: ../admin/basic-info.php:90
1782
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
1783
- msgstr "Ekstra profilfelter er tilgængelig i Hobbyist og PRO versionerne"
1784
-
1785
- #: ../admin/basic-info.php:92
1786
- msgid "Get started with extra fields"
1787
- msgstr "Kom i gang med ekstra felter"
1788
-
1789
- #: ../admin/basic-info.php:95
1790
- msgid "Avatar Upload"
1791
- msgstr "Avatar upload"
1792
-
1793
- #: ../admin/basic-info.php:96
1794
- msgid "Generic Uploads"
1795
- msgstr "Generisk upload"
1796
-
1797
- #: ../admin/basic-info.php:97
1798
- msgid "Agree To Terms Checkbox"
1799
- msgstr "Accept af betingelser tjekboks"
1800
-
1801
- #: ../admin/basic-info.php:98
1802
- msgid "Datepicker"
1803
- msgstr "Datovælger"
1804
-
1805
- #: ../admin/basic-info.php:99
1806
- msgid "reCAPTCHA"
1807
- msgstr "reCAPTCHA"
1808
-
1809
- #: ../admin/basic-info.php:100
1810
- msgid "Country Select"
1811
- msgstr "Landevalg"
1812
-
1813
- #: ../admin/basic-info.php:101
1814
- msgid "Timezone Select"
1815
- msgstr "Tidszone valg"
1816
-
1817
- #: ../admin/basic-info.php:102
1818
- msgid "Input / Hidden Input"
1819
- msgstr "Input / Skjult input"
1820
-
1821
- #: ../admin/basic-info.php:103
1822
- msgid "Checkbox"
1823
- msgstr "Tjekboks"
1824
-
1825
- #: ../admin/basic-info.php:104
1826
- msgid "Select"
1827
- msgstr "Vælg"
1828
-
1829
- #: ../admin/basic-info.php:105
1830
- msgid "Radio Buttons"
1831
- msgstr "'Radio' knapper"
1832
-
1833
- #: ../admin/basic-info.php:106
1834
- msgid "Textarea"
1835
- msgstr "Tekstområde"
1836
-
1837
- #: ../admin/basic-info.php:115
1838
- msgid "Powerful Modules (**)"
1839
- msgstr "Stærke moduler (**)"
1840
-
1841
- #: ../admin/basic-info.php:116
1842
- msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
1843
- msgstr "Alt hvad du behøver for at håndtere dine brugere er formentlig allerede tilgængeligt ved at bruge Pro Moduler."
1844
-
1845
- #: ../admin/basic-info.php:118
1846
- msgid "Enable your modules"
1847
- msgstr "Aktiver dine moduler"
1848
-
1849
- #: ../admin/basic-info.php:121
1850
- msgid "Find out more about PRO Modules"
1851
- msgstr "Fin ud af mere om PRO Moduler"
1852
-
1853
- #: ../admin/basic-info.php:126 ../modules/modules.php:111
1854
- #: ../modules/user-listing/userlisting.php:11
1855
- #: ../modules/user-listing/userlisting.php:12
1856
- #: ../modules/user-listing/userlisting.php:17
1857
- #: ../modules/user-listing/userlisting.php:23
1858
- msgid "User Listing"
1859
- msgstr "Brugeroversigt"
1860
-
1861
- #: ../admin/basic-info.php:128
1862
- 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."
1863
- msgstr "Brugervenlige skabeloner gør det muligt at liste dit websites bruger ligesom du kan skabe enkelt bruger sider. Og så er det 'Shortcode' baseret, som gør det muligt for dig at tilpasse dine lister/oversigter. "
1864
-
1865
- #: ../admin/basic-info.php:134
1866
- msgid "Email Customizer"
1867
- msgstr "E-mail opsætning"
1868
-
1869
- #: ../admin/basic-info.php:135
1870
- msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
1871
- msgstr "Personaliser alle e-mails sendt til dine brugere eller administratorer. Ved registrering, e-mail bekræftelse, administrator godkendelse / afvisning."
1872
-
1873
- #: ../admin/basic-info.php:138
1874
- #: ../modules/custom-redirects/custom-redirects.php:29
1875
- #: ../modules/modules.php:32 ../modules/modules.php:132
1876
- msgid "Custom Redirects"
1877
- msgstr "Brugertilpassede omdirigeringer ('redirects')"
1878
-
1879
- #: ../admin/basic-info.php:139
1880
- 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."
1881
- msgstr "Hold dine brugere ud af Wordpress' kontrolpanel ('dashboard'), omdiriger dem til forsiden efter login eller registrering. Alt dette er kun nogle få klik væk."
1882
-
1883
- #: ../admin/basic-info.php:144 ../modules/modules.php:97
1884
- msgid "Multiple Registration Forms"
1885
- msgstr "Forskellige registreringsformularer"
1886
-
1887
- #: ../admin/basic-info.php:145
1888
- msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
1889
- msgstr "Opsæt forskellige registreringsformularer med forskellige felter tilpasset bestemte brugeroller. Indsaml forskelligt information fra forskellige brugertyper."
1890
-
1891
- #: ../admin/basic-info.php:148 ../modules/modules.php:104
1892
- msgid "Multiple Edit-profile Forms"
1893
- msgstr "Forskellige profil redigerings formularer"
1894
-
1895
- #: ../admin/basic-info.php:149
1896
- msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
1897
- msgstr "Tillad forskellige brugerroller at redigere deres specifikke information. Opsæt forskellige profil redigerings formularer med forskellige felter tilpasset bestemte brugerroller."
1898
-
1899
- #: ../admin/basic-info.php:161
1900
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
1901
- msgstr " * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s."
1902
-
1903
- #: ../admin/basic-info.php:162
1904
- msgid "** only available in the %1$sPro version%2$s."
1905
- msgstr "** kun tilgængelig i %1$sPro version%2$s."
1906
-
1907
- #: ../admin/general-settings.php:42
1908
- msgid "Load Profile Builder's own CSS file in the front-end:"
1909
- msgstr "Brug Profile Builders egen CSS fil i 'front-end':"
1910
-
1911
- #: ../admin/general-settings.php:45 ../admin/general-settings.php:60
1912
- #: ../admin/general-settings.php:114
1913
- #: ../modules/multiple-forms/register-forms.php:225
1914
- #: ../modules/multiple-forms/register-forms.php:226
1915
- #: ../modules/user-listing/userlisting.php:1303
1916
- msgid "Yes"
1917
- msgstr "Ja"
1918
-
1919
- #: ../admin/general-settings.php:47
1920
- msgid "You can find the default file here: %1$s"
1921
- msgstr "Du kan finde default filen her: %1$s"
1922
-
1923
- #: ../admin/general-settings.php:56
1924
- msgid "\"Email Confirmation\" Activated:"
1925
- msgstr "\"E-mail bekræftelse\" aktiveret:"
1926
-
1927
- #: ../admin/general-settings.php:61 ../admin/general-settings.php:115
1928
- #: ../modules/multiple-forms/register-forms.php:225
1929
- #: ../modules/multiple-forms/register-forms.php:226
1930
- msgid "No"
1931
- msgstr "Nej"
1932
-
1933
- #: ../admin/general-settings.php:64
1934
- 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."
1935
- msgstr "På 'single-site' installationer virker dette kun med 'front-end' formularer. Anbefalet at omdirigere WP default registrering til en adresse opsat i Profile Builder ved at anvende den brugertilpassede omdirigerings tilføjelse ('Custom Redirects')."
1936
-
1937
- #: ../admin/general-settings.php:65
1938
- msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
1939
- msgstr "\"E-mail bekræftelse\" funktionen er aktive (som standard) på WPMU installationer."
1940
-
1941
- #: ../admin/general-settings.php:67
1942
- msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
1943
- msgstr "Du kan finde en liste over ubekræftede e-mail adresser %1$sUsers > All Users > Email Confirmation%2$s."
1944
-
1945
- #: ../admin/general-settings.php:79
1946
- msgid "\"Email Confirmation\" Landing Page:"
1947
- msgstr "\"E-mail bekræftelse\" landings side:"
1948
-
1949
- #: ../admin/general-settings.php:84
1950
- msgid "Existing Pages"
1951
- msgstr "Eksisterende sider"
1952
-
1953
- #: ../admin/general-settings.php:99
1954
- 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."
1955
- msgstr "Angiv siden hvortil brugere bliver omdirigeret til når de bekræfter e-mail kontoen. Denne side kan være forskellig fra registrerings siden (siderne) og kan altid ændres. Hvis ingen er valgt vises der en simpel bekræftelsesside for brugeren."
1956
-
1957
- #: ../admin/general-settings.php:110
1958
- msgid "\"Admin Approval\" Activated:"
1959
- msgstr "\"Administrator godkendelse\" aktiveret:"
1960
-
1961
- #: ../admin/general-settings.php:118
1962
- msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
1963
- msgstr "Du kan finde en liste med brugere på %1$sUsers > All Users > Admin Approval%2$s."
1964
-
1965
- #: ../admin/general-settings.php:156
1966
- msgid "\"Admin Approval\" Feature:"
1967
- msgstr "\"Administrator godkendelse\" funktion:"
1968
-
1969
- #: ../admin/general-settings.php:159
1970
- 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."
1971
- msgstr "Du bestemmer hvem der er bruger på dit website. Bliv informeret via e-mail eller godkend flere brugere samlet ('bulk') via WordPress UI. Aktiver 'Administrator godkendelse' ved at opgradere til %1$sHobbyist or PRO versions%2$s."
1972
-
1973
- #: ../admin/general-settings.php:166
1974
- msgid "Allow Users to Log in With:"
1975
- msgstr "Tillad brugere at logge ind med:"
1976
-
1977
- #: ../admin/general-settings.php:171 ../admin/manage-fields.php:159
1978
- #: ../features/admin-approval/class-admin-approval.php:177
1979
- #: ../features/email-confirmation/class-email-confirmation.php:167
1980
- #: ../modules/email-customizer/email-customizer.php:28
1981
- #: ../modules/user-listing/userlisting.php:92
1982
- #: ../modules/user-listing/userlisting.php:248
1983
- #: ../modules/user-listing/userlisting.php:611
1984
- #: ../modules/user-listing/userlisting.php:1259
1985
- msgid "Username"
1986
- msgstr "Brugernavn"
1987
-
1988
- #: ../admin/general-settings.php:172 ../front-end/login.php:170
1989
- #: ../modules/email-customizer/email-customizer.php:29
1990
- #: ../modules/user-listing/userlisting.php:617
1991
- #: ../modules/user-listing/userlisting.php:1260
1992
- msgid "Email"
1993
- msgstr "E-mail"
1994
-
1995
- #: ../admin/general-settings.php:184
1996
- msgid "Minimum Password Length:"
1997
- msgstr "Min. længde på adgangskode:"
1998
-
1999
- #: ../admin/general-settings.php:189
2000
- msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
2001
- msgstr "Angiv minimum antallet af karakterer som adgangskoden skal bestå af. Lad feltet være tomt for ikke at have minimumsbegrænsning."
2002
-
2003
- #: ../admin/general-settings.php:196
2004
- msgid "Minimum Password Strength:"
2005
- msgstr "Minimum styrke på adgangskode:"
2006
-
2007
- #: ../admin/general-settings.php:200
2008
- msgid "Disabled"
2009
- msgstr "Deaktiver"
2010
-
2011
- #: ../admin/manage-fields.php:12
2012
- msgid "Manage Fields"
2013
- msgstr "Håndter felter"
2014
-
2015
- #: ../admin/manage-fields.php:13
2016
- msgid "Manage Default and Extra Fields"
2017
- msgstr "Håndter standard ('default') og ekstra felter"
2018
-
2019
- #: ../admin/manage-fields.php:94
2020
- msgid "Field Title"
2021
- msgstr "Felt titel"
2022
-
2023
- #: ../admin/manage-fields.php:94
2024
- msgid "Title of the field"
2025
- msgstr "Feltets titel"
2026
-
2027
- #: ../admin/manage-fields.php:95
2028
- #: ../modules/multiple-forms/edit-profile-forms.php:241
2029
- #: ../modules/multiple-forms/register-forms.php:262
2030
- msgid "Field"
2031
- msgstr "Felt"
2032
-
2033
- #: ../admin/manage-fields.php:96
2034
- msgid "Meta-name"
2035
- msgstr "Meta-navn"
2036
-
2037
- #: ../admin/manage-fields.php:96
2038
- 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"
2039
- msgstr "Bruges i sammen med WordPress funktioner til at vise værdien siden du vælger<br/> Udfyldes automatisk, men i visse tilfælde redigerbart (i sådanne tilfælde skal det være unikt)<br/>Ændring af dette kan take lang tid i tilfælde af et meget stort antal brugere."
2040
-
2041
- #: ../admin/manage-fields.php:97
2042
- #: ../modules/multiple-forms/edit-profile-forms.php:242
2043
- #: ../modules/multiple-forms/register-forms.php:263
2044
- msgid "ID"
2045
- msgstr "ID"
2046
-
2047
- #: ../admin/manage-fields.php:97
2048
- #: ../modules/multiple-forms/edit-profile-forms.php:242
2049
- #: ../modules/multiple-forms/register-forms.php:263
2050
- 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"
2051
- msgstr "En unik autogenereret ID for dette bestemte felt<br/>Du kan bruge dette sammen med filtre for at målrette dette element, hvis nødvendigt.<br/>Kan ikke redigeres "
2052
-
2053
- #: ../admin/manage-fields.php:98
2054
- msgid "Description"
2055
- msgstr "Beskrivelse"
2056
-
2057
- #: ../admin/manage-fields.php:98
2058
- msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
2059
- msgstr "Angiv en (detaljeret) beskrivelse til slutbrugerne af muligheden<br/>Valgfri"
2060
-
2061
- #: ../admin/manage-fields.php:99
2062
- msgid "Row Count"
2063
- msgstr "Række antal"
2064
-
2065
- #: ../admin/manage-fields.php:99
2066
- msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
2067
- msgstr "Angiv antallet af rækker i feltet 'Textarea'<br/>Hvis ikke angivet er default 5 rækker"
2068
-
2069
- #: ../admin/manage-fields.php:100
2070
- msgid "Allowed Image Extensions"
2071
- msgstr "Tilladte billedformater ('extensions')"
2072
-
2073
- #: ../admin/manage-fields.php:101
2074
- msgid "Allowed Upload Extensions"
2075
- msgstr "Tilladte upload formater ('extensions')"
2076
-
2077
- #: ../admin/manage-fields.php:102
2078
- msgid "Avatar Size"
2079
- msgstr "Avatar størrelse"
2080
-
2081
- #: ../admin/manage-fields.php:102
2082
- msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
2083
- msgstr "Angiv en værdi (mellem 20 og 200) for størrelsen af 'Avatar'<br/>Hvis ikke angivet er default sat til 100"
2084
-
2085
- #: ../admin/manage-fields.php:103
2086
- msgid "Date-format"
2087
- msgstr "Datoformat"
2088
-
2089
- #: ../admin/manage-fields.php:103
2090
- 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"
2091
- msgstr "Angiv datoformatet når du bruge datovælger ('Datepicker')<br/>Gyldige formater: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Hvis ikke angivet er default sat til mm/dd/yy"
2092
-
2093
- #: ../admin/manage-fields.php:104
2094
- msgid "Terms of Agreement"
2095
- msgstr "Aftalebetingelser"
2096
-
2097
- #: ../admin/manage-fields.php:104
2098
- 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;"
2099
- msgstr "Angiv en detaljeret beskrivelse til brugerne af aftalebetingelserne.<br/>Link kan indsætte ved at anvende standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
2100
-
2101
- #: ../admin/manage-fields.php:105
2102
- msgid "Options"
2103
- msgstr "Valgmuligheder"
2104
-
2105
- #: ../admin/manage-fields.php:106
2106
- msgid "Labels"
2107
- msgstr "Labels"
2108
-
2109
- #: ../admin/manage-fields.php:106
2110
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
2111
- msgstr "Angiv et komme separeret liste med labels<br/>Synlig for brugeren"
2112
-
2113
- #: ../admin/manage-fields.php:113
2114
- msgid "Default Value"
2115
- msgstr "Standard værdi"
2116
-
2117
- #: ../admin/manage-fields.php:113
2118
- msgid "Default value of the field"
2119
- msgstr "Feltets standardværdi"
2120
-
2121
- #: ../admin/manage-fields.php:114 ../admin/manage-fields.php:116
2122
- #: ../admin/manage-fields.php:117
2123
- msgid "Default Option"
2124
- msgstr "Standard indstillingsvalg"
2125
-
2126
- #: ../admin/manage-fields.php:114
2127
- msgid "Specify the option which should be selected by default"
2128
- msgstr "Angiv indstillingen som skal vælges som standard"
2129
-
2130
- #: ../admin/manage-fields.php:115
2131
- msgid "Default Option(s)"
2132
- msgstr "Standard indstillingsvalg (flere)"
2133
-
2134
- #: ../admin/manage-fields.php:115
2135
- msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
2136
- msgstr "Angiv indstillingen som skal vælges som standard<br/>Hvis der er flere valgmuligheder, separer dem med ',' (et komma)"
2137
-
2138
- #: ../admin/manage-fields.php:118
2139
- msgid "Default Content"
2140
- msgstr "Standard indhold"
2141
-
2142
- #: ../admin/manage-fields.php:118
2143
- msgid "Default value of the textarea"
2144
- msgstr "Standard værdi for tekstområdet ('textarea')"
2145
-
2146
- #: ../admin/manage-fields.php:119
2147
- msgid "Required"
2148
- msgstr "Krævet"
2149
-
2150
- #: ../admin/manage-fields.php:119
2151
- msgid "Whether the field is required or not"
2152
- msgstr "Om feltet er krævet eller ikke"
2153
-
2154
- #: ../admin/manage-fields.php:120
2155
- msgid "Overwrite Existing"
2156
- msgstr "Overskriv eksisterende"
2157
-
2158
- #: ../admin/manage-fields.php:120
2159
- 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"
2160
- msgstr "Ved at vælge 'Ja' tilføjes feltet til listen, men vil overskrive ethvert andet felt i databasen som har det samme meta-navn<br/>Brug dette på eget ansvar"
2161
-
2162
- #: ../admin/manage-fields.php:126
2163
- msgid "Field Properties"
2164
- msgstr "Felt indstillinger"
2165
-
2166
- #: ../admin/manage-fields.php:139
2167
- msgid "Registration & Edit Profile"
2168
- msgstr "Registrering & ændre profil"
2169
-
2170
- #: ../admin/manage-fields.php:158
2171
- msgid "Name"
2172
- msgstr "Navn"
2173
-
2174
- #: ../admin/manage-fields.php:159
2175
- msgid "Usernames cannot be changed."
2176
- msgstr "Brugernavn kan ikke ændres"
2177
-
2178
- #: ../admin/manage-fields.php:160
2179
- msgid "First Name"
2180
- msgstr "Fornavn"
2181
-
2182
- #: ../admin/manage-fields.php:161
2183
- msgid "Last Name"
2184
- msgstr "Efternavn"
2185
-
2186
- #: ../admin/manage-fields.php:162 ../modules/user-listing/userlisting.php:650
2187
- msgid "Nickname"
2188
- msgstr "Kælenavn"
2189
-
2190
- #: ../admin/manage-fields.php:163
2191
- msgid "Display name publicly as"
2192
- msgstr "Vis navn offentligt som"
2193
-
2194
- #: ../admin/manage-fields.php:164
2195
- msgid "Contact Info"
2196
- msgstr "Kontakt info"
2197
-
2198
- #: ../admin/manage-fields.php:165
2199
- #: ../features/admin-approval/class-admin-approval.php:180
2200
- #: ../features/email-confirmation/class-email-confirmation.php:168
2201
- #: ../modules/user-listing/userlisting.php:98
2202
- msgid "E-mail"
2203
- msgstr "E-mail"
2204
-
2205
- #: ../admin/manage-fields.php:166
2206
- #: ../modules/email-customizer/email-customizer.php:32
2207
- #: ../modules/user-listing/userlisting.php:101
2208
- #: ../modules/user-listing/userlisting.php:632
2209
- #: ../modules/user-listing/userlisting.php:1261
2210
- msgid "Website"
2211
- msgstr "Website"
2212
-
2213
- #: ../admin/manage-fields.php:170
2214
- msgid "AIM"
2215
- msgstr "AIM"
2216
-
2217
- #: ../admin/manage-fields.php:171
2218
- msgid "Yahoo IM"
2219
- msgstr "Yahoo IM"
2220
-
2221
- #: ../admin/manage-fields.php:172
2222
- msgid "Jabber / Google Talk"
2223
- msgstr "Jabber / Google Talk"
2224
-
2225
- #: ../admin/manage-fields.php:175
2226
- msgid "About Yourself"
2227
- msgstr "Om dig selv"
2228
-
2229
- #: ../admin/manage-fields.php:176 ../modules/user-listing/userlisting.php:104
2230
- #: ../modules/user-listing/userlisting.php:635
2231
- #: ../modules/user-listing/userlisting.php:1262
2232
- msgid "Biographical Info"
2233
- msgstr "Biografi info"
2234
-
2235
- #: ../admin/manage-fields.php:176
2236
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2237
- msgstr "Del en lille biografisk information for at fylde din profil ud. Dette kan blive vist offentligt."
2238
-
2239
- #: ../admin/manage-fields.php:177 ../front-end/recover.php:75
2240
- #: ../modules/email-customizer/email-customizer.php:30
2241
- msgid "Password"
2242
- msgstr "Kodeord"
2243
-
2244
- #: ../admin/manage-fields.php:177
2245
- msgid "Type your password."
2246
- msgstr "Skriv din kodeord."
2247
-
2248
- #: ../admin/manage-fields.php:178 ../front-end/recover.php:80
2249
- msgid "Repeat Password"
2250
- msgstr "Gentag dit kodeord"
2251
-
2252
- #: ../admin/manage-fields.php:178
2253
- msgid "Type your password again. "
2254
- msgstr "Skriv dit kodeord igen."
2255
-
2256
- #: ../admin/manage-fields.php:617 ../admin/manage-fields.php:761
2257
- msgid "You must select a field\n"
2258
- msgstr "Du skal vælge et felt\n"
2259
-
2260
- #: ../admin/manage-fields.php:627
2261
- msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
2262
- msgstr "Vælg venligst en anden felttype, da denne allerede eksistere i din formular. (skal være unik)\n"
2263
-
2264
- #: ../admin/manage-fields.php:638
2265
- msgid "The entered avatar size is not between 20 and 200\n"
2266
- msgstr "Den indsatte avatar størrelse er ikke mellem 20 og 200\n"
2267
-
2268
- #: ../admin/manage-fields.php:641
2269
- msgid "The entered avatar size is not numerical\n"
2270
- msgstr "Det indtastede rækkenummer er ikke nummereret\n"
2271
-
2272
- #: ../admin/manage-fields.php:649
2273
- msgid "The entered row number is not numerical\n"
2274
- msgstr "Det indsatte række nummer er ikke nummeret\n"
2275
-
2276
- #: ../admin/manage-fields.php:652
2277
- msgid "You must enter a value for the row number\n"
2278
- msgstr "Du skal indtaste en værdi for rækkenummeret\n"
2279
-
2280
- #: ../admin/manage-fields.php:670
2281
- msgid "The entered value for the Datepicker is not a valid date-format\n"
2282
- msgstr "Den indsatte værdi for datovælgeren er ikke korret datoformat\n"
2283
-
2284
- #: ../admin/manage-fields.php:673
2285
- msgid "You must enter a value for the date-format\n"
2286
- msgstr "Du skal indskrive en værdi for datoformatet\n"
2287
-
2288
- #: ../admin/manage-fields.php:701 ../admin/manage-fields.php:709
2289
- #: ../admin/manage-fields.php:719
2290
- msgid "That meta-name is already in use\n"
2291
- msgstr "Det meta-navn er allerede i brug\n"
2292
-
2293
- #: ../admin/manage-fields.php:741
2294
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
2295
- msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s\n"
2296
-
2297
- #: ../admin/manage-fields.php:745
2298
- msgid "The following option did not coincide with the ones in the options list: %s\n"
2299
- msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s \n"
2300
-
2301
- #: ../admin/manage-fields.php:768
2302
- msgid "That field is already added in this form\n"
2303
- msgstr "Det felt er allerede tilføjet denne formular\n"
2304
-
2305
- #: ../admin/manage-fields.php:817
2306
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
2307
- msgstr "<pre>titel</pre><pre>Type</pre><pre>Meta navn</pre><pre class=\"wppb-mb-head-required\">nødvendigt</pre>"
2308
-
2309
- #: ../admin/manage-fields.php:817
2310
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2311
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:529
2312
- #: ../features/admin-approval/class-admin-approval.php:119
2313
- #: ../features/functions.php:641 ../features/functions.php:648
2314
- #: ../modules/multiple-forms/multiple-forms.php:416
2315
- msgid "Edit"
2316
- msgstr "Rediger"
2317
-
2318
- #: ../admin/manage-fields.php:817
2319
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2320
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:530
2321
- #: ../features/admin-approval/class-admin-approval.php:124
2322
- #: ../features/admin-approval/class-admin-approval.php:235
2323
- #: ../features/email-confirmation/class-email-confirmation.php:120
2324
- #: ../features/email-confirmation/class-email-confirmation.php:217
2325
- #: ../features/functions.php:634 ../features/functions.php:648
2326
- msgid "Delete"
2327
- msgstr "Slet"
2328
-
2329
- #: ../admin/manage-fields.php:832
2330
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
2331
- msgstr "Benyt disse shortcodes på siden du vil have vist formularerne:"
2332
-
2333
- #: ../admin/manage-fields.php:841
2334
- 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."
2335
- msgstr "Hvis du er interesseret i at vise forskellige felter på registrering og min profil formularerne, brug da venligst Multi registrering & min profil formular tilføjelser. "
2336
-
2337
- #: ../admin/register-version.php:14
2338
- msgid "Register Your Version"
2339
- msgstr "Registrer din version"
2340
-
2341
- #: ../admin/register-version.php:14
2342
- msgid "Register Version"
2343
- msgstr "Registrer version"
2344
-
2345
- #: ../admin/register-version.php:70
2346
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
2347
- msgstr "Hvis du registrere denne version af Profile Builder, så vil du modtage information vedrørende opgraderinger, patches og teknisk support."
2348
-
2349
- #: ../admin/register-version.php:72
2350
- msgid " Serial Number:"
2351
- msgstr "Serie Nummer:"
2352
-
2353
- #: ../admin/register-version.php:77
2354
- msgid "The serial number was successfully validated!"
2355
- msgstr "Serienummeret blev godkendt!"
2356
-
2357
- #: ../admin/register-version.php:79
2358
- msgid "The serial number entered couldn't be validated!"
2359
- msgstr "Serienummeret som du har indsat er ikke korrekt!"
2360
-
2361
- #: ../admin/register-version.php:83
2362
- msgid "The serial number couldn't be validated because it expired!"
2363
- msgstr "Serienummeret kunne ikke godkendes da det er udløbet!"
2364
-
2365
- #: ../admin/register-version.php:85
2366
- 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!"
2367
- msgstr "Serienummeret kunne ikke valideres på grund af process time-out. Dette skyldes formentlig at serveren er nede. Venligst prøv igen senere!"
2368
-
2369
- #: ../admin/register-version.php:87
2370
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2371
- msgstr "(f.eks.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2372
-
2373
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2374
- #: ../features/functions.php:648
2375
- msgid "Content"
2376
- msgstr "Indhold"
2377
-
2378
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:529
2379
- msgid "Edit this item"
2380
- msgstr "Rediger denne"
2381
-
2382
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:530
2383
- msgid "Delete this item"
2384
- msgstr "Slet denne"
2385
-
2386
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:676
2387
- msgid "Please enter a value for the required field "
2388
- msgstr "Venligst indsæt en værdi for feltet"
2389
-
2390
- #: ../front-end/extra-fields/upload/upload.php:122
2391
- msgid "Select File"
2392
- msgstr ""
2393
-
2394
- #: ../assets/lib/wck-api/fields/upload.php:43
2395
- #: ../front-end/extra-fields/upload/upload.php:112
2396
- msgid "Remove"
2397
- msgstr "Fjern"
2398
-
2399
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1155
2400
- msgid "Syncronize WCK"
2401
- msgstr "Synkroniser WCK"
2402
-
2403
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1167
2404
- msgid "Syncronize WCK Translation"
2405
- msgstr "Synkroniser WCK oversættelse"
2406
-
2407
- #: ../assets/lib/wck-api/fields/nested repeater.php:8
2408
- msgid "You can add the information for the %s after you add a entry"
2409
- msgstr "Du kan tilføje information for %s efter du har indsat en indtastning"
2410
-
2411
- #: ../assets/lib/wck-api/fields/upload.php:75
2412
- #: ../front-end/extra-fields/upload/upload.php:128
2413
- msgid "Upload "
2414
- msgstr "Upload"
2415
-
2416
- #: ../features/class-list-table.php:184
2417
- msgid "No items found."
2418
- msgstr "Intet fundet."
2419
-
2420
- #: ../features/class-list-table.php:308
2421
- msgid "Bulk Actions"
2422
- msgstr "Mængde aktion"
2423
-
2424
- #: ../features/class-list-table.php:318
2425
- msgid "Apply"
2426
- msgstr "Tilføj"
2427
-
2428
- #: ../features/class-list-table.php:402
2429
- msgid "Show all dates"
2430
- msgstr "Vis alle datoer"
2431
-
2432
- #: ../features/class-list-table.php:415
2433
- msgid "%1$s %2$d"
2434
- msgstr "%1$s %2$d"
2435
-
2436
- #: ../features/class-list-table.php:431
2437
- msgid "List View"
2438
- msgstr "Listevisning"
2439
-
2440
- #: ../features/class-list-table.php:432
2441
- msgid "Excerpt View"
2442
- msgstr "Uddragsvisning"
2443
-
2444
- #: ../features/class-list-table.php:458
2445
- msgid "%s pending"
2446
- msgstr "%s afventer"
2447
-
2448
- #: ../features/class-list-table.php:566
2449
- msgid "%1$s of %2$s"
2450
- msgstr "%1$s of %2$s"
2451
-
2452
- #: ../features/class-list-table.php:713
2453
- msgid "Select All"
2454
- msgstr "Vælg alt"
2455
-
2456
- #: ../features/functions.php:281
2457
- msgid "The user-validation has failed - the avatar was not deleted!"
2458
- msgstr "Brugergodkendelsen er fejlet - Avatar blev ikke slettet!"
2459
-
2460
- #: ../features/functions.php:292
2461
- msgid "The user-validation has failed - the attachment was not deleted!"
2462
- msgstr "Brugervalideringen er fejlet - avatar'en blev ikke slettet!"
2463
-
2464
- #: ../features/functions.php:487
2465
- msgid "Strength indicator"
2466
- msgstr "Styrkeindikator"
2467
-
2468
- #: ../features/admin-approval/admin-approval.php:7
2469
- #: ../features/admin-approval/class-admin-approval.php:458
2470
- msgid "Admin Approval"
2471
- msgstr "Admin godkendelse"
2472
-
2473
- #: ../features/admin-approval/admin-approval.php:21
2474
- #: ../features/email-confirmation/email-confirmation.php:58
2475
- msgid "Do you want to"
2476
- msgstr "Vil du"
2477
-
2478
- #: ../features/admin-approval/admin-approval.php:44
2479
- msgid "Your session has expired! Please refresh the page and try again"
2480
- msgstr "Din session er udløbet! Venligst opdater siden og prøv igen"
2481
-
2482
- #: ../features/admin-approval/admin-approval.php:55
2483
- msgid "User successfully approved!"
2484
- msgstr "Bruger godkendt!"
2485
-
2486
- #: ../features/admin-approval/admin-approval.php:63
2487
- msgid "User successfully unapproved!"
2488
- msgstr "Bruger ikke godkendt!"
2489
-
2490
- #: ../features/admin-approval/admin-approval.php:69
2491
- msgid "User successfully deleted!"
2492
- msgstr "Bruger slettet!"
2493
-
2494
- #: ../features/admin-approval/admin-approval.php:74
2495
- #: ../features/admin-approval/admin-approval.php:118
2496
- #: ../features/email-confirmation/email-confirmation.php:135
2497
- msgid "You either don't have permission for that action or there was an error!"
2498
- msgstr "Enten har du ikke tilladelse til dette eller der var en felj!"
2499
-
2500
- #: ../features/admin-approval/admin-approval.php:85
2501
- msgid "Your session has expired! Please refresh the page and try again."
2502
- msgstr "Din session er udløbet! Opdater venligst siden og prøv igen."
2503
-
2504
- #: ../features/admin-approval/admin-approval.php:97
2505
- msgid "Users successfully approved!"
2506
- msgstr "Brugere godkendt!"
2507
-
2508
- #: ../features/admin-approval/admin-approval.php:106
2509
- msgid "Users successfully unapproved!"
2510
- msgstr "Brugere ikke godkendt med succes!"
2511
-
2512
- #: ../features/admin-approval/admin-approval.php:114
2513
- msgid "Users successfully deleted!"
2514
- msgstr "Brugere slettet!"
2515
-
2516
- #: ../features/admin-approval/admin-approval.php:134
2517
- msgid "Your account on %1$s has been approved!"
2518
- msgstr "Din konto på %1$s er blevet godkendt!"
2519
-
2520
- #: ../features/admin-approval/admin-approval.php:135
2521
- #: ../features/admin-approval/admin-approval.php:138
2522
- msgid "approved"
2523
- msgstr "godkendt"
2524
-
2525
- #: ../features/admin-approval/admin-approval.php:137
2526
- msgid "An administrator has just approved your account on %1$s (%2$s)."
2527
- msgstr "En administrator har netop godkendt din konto %1$s (%2$s)."
2528
-
2529
- #: ../features/admin-approval/admin-approval.php:142
2530
- msgid "Your account on %1$s has been unapproved!"
2531
- msgstr "Din konto på %1$s er blevet 'ikke-godkendt'!"
2532
-
2533
- #: ../features/admin-approval/admin-approval.php:143
2534
- #: ../features/admin-approval/admin-approval.php:146
2535
- msgid "unapproved"
2536
- msgstr "'ikke-godkendt'"
2537
-
2538
- #: ../features/admin-approval/admin-approval.php:145
2539
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
2540
- msgstr "En administrator har netop sat din konto til 'ikke-godkendt' på %1$s (%2$s)."
2541
-
2542
- #: ../features/admin-approval/admin-approval.php:164
2543
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
2544
- msgstr "<strong>ERROR</strong>: Din konto skal godkendes af en administrator før du kan logge ind."
2545
-
2546
- #: ../features/admin-approval/admin-approval.php:176
2547
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
2548
- msgstr "Din konto skal først være godkendt af en administrator før du kan bruge 'Genskab adgangskode'"
2549
-
2550
- #: ../features/admin-approval/class-admin-approval.php:124
2551
- msgid "delete this user?"
2552
- msgstr "slet denne bruger?"
2553
-
2554
- #: ../features/admin-approval/class-admin-approval.php:127
2555
- msgid "unapprove this user?"
2556
- msgstr "sæt denne bruge til 'ikke-godkendt'?"
2557
-
2558
- #: ../features/admin-approval/class-admin-approval.php:127
2559
- #: ../features/admin-approval/class-admin-approval.php:234
2560
- msgid "Unapprove"
2561
- msgstr "Ophæv godkendelsen"
2562
-
2563
- #: ../features/admin-approval/class-admin-approval.php:129
2564
- msgid "approve this user?"
2565
- msgstr "godkend denne bruger?"
2566
-
2567
- #: ../features/admin-approval/class-admin-approval.php:129
2568
- #: ../features/admin-approval/class-admin-approval.php:233
2569
- msgid "Approve"
2570
- msgstr "Godkend"
2571
-
2572
- #: ../features/admin-approval/class-admin-approval.php:178
2573
- #: ../modules/user-listing/userlisting.php:249
2574
- #: ../modules/user-listing/userlisting.php:623
2575
- #: ../modules/user-listing/userlisting.php:1264
2576
- msgid "Firstname"
2577
- msgstr "Fornavn"
2578
-
2579
- #: ../features/admin-approval/class-admin-approval.php:179
2580
- #: ../modules/user-listing/userlisting.php:626
2581
- #: ../modules/user-listing/userlisting.php:1265
2582
- msgid "Lastname"
2583
- msgstr "Efternavn"
2584
-
2585
- #: ../features/admin-approval/class-admin-approval.php:181
2586
- #: ../modules/user-listing/userlisting.php:124
2587
- #: ../modules/user-listing/userlisting.php:250
2588
- #: ../modules/user-listing/userlisting.php:653
2589
- #: ../modules/user-listing/userlisting.php:1268
2590
- msgid "Role"
2591
- msgstr "Rolle"
2592
-
2593
- #: ../features/admin-approval/class-admin-approval.php:182
2594
- #: ../features/email-confirmation/class-email-confirmation.php:169
2595
- msgid "Registered"
2596
- msgstr "Registreret"
2597
-
2598
- #: ../features/admin-approval/class-admin-approval.php:183
2599
- msgid "User-status"
2600
- msgstr "Brugerstatus"
2601
-
2602
- #: ../features/admin-approval/class-admin-approval.php:263
2603
- msgid "Do you want to bulk approve the selected users?"
2604
- msgstr "Ønsker du at godkende de valgte brugere på én gang?"
2605
-
2606
- #: ../features/admin-approval/class-admin-approval.php:271
2607
- msgid "Do you want to bulk unapprove the selected users?"
2608
- msgstr "Ønsker du at ophæve godkendelsen af de valgte brugere på én gang?"
2609
-
2610
- #: ../features/admin-approval/class-admin-approval.php:277
2611
- msgid "Do you want to bulk delete the selected users?"
2612
- msgstr "Ønsker du at slette de valgte brugere på én gang?"
2613
-
2614
- #: ../features/admin-approval/class-admin-approval.php:285
2615
- #: ../features/email-confirmation/class-email-confirmation.php:278
2616
- msgid "Sorry, but you don't have permission to do that!"
2617
- msgstr "Beklager, men du har ikke rettighederne til at gøre dette!"
2618
-
2619
- #: ../features/admin-approval/class-admin-approval.php:341
2620
- msgid "Approved"
2621
- msgstr "Godkendt"
2622
-
2623
- #: ../features/admin-approval/class-admin-approval.php:343
2624
- msgid "Unapproved"
2625
- msgstr "Ikke godkendt"
2626
-
2627
- #: ../features/admin-approval/class-admin-approval.php:461
2628
- #: ../features/email-confirmation/class-email-confirmation.php:469
2629
- msgid "All Users"
2630
- msgstr "Alle brugere"
2631
-
2632
- #: ../features/email-confirmation/class-email-confirmation.php:120
2633
- msgid "delete this user from the _signups table?"
2634
- msgstr "slet denne bruger fra tilmeldingstabellen (_signups table)?"
2635
-
2636
- #: ../features/email-confirmation/class-email-confirmation.php:121
2637
- msgid "confirm this email yourself?"
2638
- msgstr "bekræft selv denne e-mail?"
2639
-
2640
- #: ../features/email-confirmation/class-email-confirmation.php:121
2641
- #: ../features/email-confirmation/class-email-confirmation.php:218
2642
- msgid "Confirm Email"
2643
- msgstr "Bekræft e-mail"
2644
-
2645
- #: ../features/email-confirmation/class-email-confirmation.php:122
2646
- msgid "resend the activation link?"
2647
- msgstr "gen-send aktiveringslinket?"
2648
-
2649
- #: ../features/email-confirmation/class-email-confirmation.php:122
2650
- #: ../features/email-confirmation/class-email-confirmation.php:219
2651
- msgid "Resend Activation Email"
2652
- msgstr "Gen-send aktiverings e-mailen"
2653
-
2654
- #: ../features/email-confirmation/class-email-confirmation.php:249
2655
- msgid "%s couldn't be deleted"
2656
- msgstr "%s kunne ikke slettes"
2657
-
2658
- #: ../features/email-confirmation/class-email-confirmation.php:253
2659
- msgid "All users have been successfully deleted"
2660
- msgstr "Alle brugere er blevet slettet uden problemer"
2661
-
2662
- #: ../features/email-confirmation/class-email-confirmation.php:263
2663
- msgid "The selected users have been activated"
2664
- msgstr "De valgte brugere er blevet aktiveret"
2665
-
2666
- #: ../features/email-confirmation/class-email-confirmation.php:274
2667
- msgid "The selected users have had their activation emails resent"
2668
- msgstr "De valgte brugere har fået deres aktiverings e-mail gensendt"
2669
-
2670
- #: ../features/email-confirmation/class-email-confirmation.php:466
2671
- #: ../features/email-confirmation/email-confirmation.php:47
2672
- msgid "Users with Unconfirmed Email Address"
2673
- msgstr "Brugere med ubekræftede e-mail adresser"
2674
-
2675
- #: ../features/email-confirmation/email-confirmation.php:110
2676
- msgid "There was an error performing that action!"
2677
- msgstr "Der opstod en fejl ved udførelsen af denne handling!"
2678
-
2679
- #: ../features/email-confirmation/email-confirmation.php:118
2680
- msgid "The selected user couldn't be deleted"
2681
- msgstr "De valgte brugere kunne ikke slettes"
2682
-
2683
- #: ../features/email-confirmation/email-confirmation.php:129
2684
- msgid "Email notification resent to user"
2685
- msgstr "E-mail besked er gensendt til bruger"
2686
-
2687
- #: ../features/email-confirmation/email-confirmation.php:384
2688
- msgid "[%1$s] Activate %2$s"
2689
- msgstr "[%1$s] Aktivér %2$s"
2690
-
2691
- #: ../features/email-confirmation/email-confirmation.php:387
2692
- msgid ""
2693
- "To activate your user, please click the following link:\n"
2694
- "\n"
2695
- "%s%s%s\n"
2696
- "\n"
2697
- "After you activate it you will receive yet *another email* with your login."
2698
- msgstr ""
2699
- "For at aktivere din bruger bedes du klikke på følgende link:\n"
2700
- "\n"
2701
- "%s%s%s\n"
2702
- "\n"
2703
- "Efter du har aktiveret den vil du modtage *endnu en e-mail* med din login."
2704
-
2705
- #: ../features/email-confirmation/email-confirmation.php:428
2706
- #: ../front-end/register.php:68
2707
- msgid "Could not create user!"
2708
- msgstr "Kunne ikke oprette bruger!"
2709
-
2710
- #: ../features/email-confirmation/email-confirmation.php:431
2711
- msgid "That username is already activated!"
2712
- msgstr "Dette brugernavn er allerede i brug!"
2713
-
2714
- #: ../features/email-confirmation/email-confirmation.php:453
2715
- msgid "There was an error while trying to activate the user"
2716
- msgstr "Der skete en fejl ved forsøg på at aktivere brugeren"
2717
-
2718
- #: ../features/email-confirmation/email-confirmation.php:501
2719
- #: ../modules/email-customizer/admin-email-customizer.php:73
2720
- msgid "A new subscriber has (been) registered!"
2721
- msgstr "En ny abonnent ('subscriber') er blevet registreret!"
2722
-
2723
- #: ../features/email-confirmation/email-confirmation.php:504
2724
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
2725
- msgstr "Ny abonnent ('subscriber') på %1$s.<br/><br/>Brugernavn:%2$s<br/>E-mail:%3$s<br/>"
2726
-
2727
- #: ../features/email-confirmation/email-confirmation.php:605
2728
- 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!"
2729
- msgstr "\"Administrator godkendelses\" funktionen blev aktiveret på registreringstidspunktet, så vær venlig at huske at du skal godkende denne bruger før han/hun kan logge ind!"
2730
-
2731
- #: ../features/email-confirmation/email-confirmation.php:550
2732
- msgid "[%1$s] Your new account information"
2733
- msgstr "[%1$s] Din nye konto information"
2734
-
2735
- #: ../features/email-confirmation/email-confirmation.php:556
2736
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
2737
- msgstr "Velkommen til %1$s!<br/><br/><br/>Dit brugernavn er:%2$s og adgangskoden er:%3$s"
2738
-
2739
- #: ../features/email-confirmation/email-confirmation.php:613
2740
- #: ../front-end/register.php:116
2741
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
2742
- msgstr "Før du kan tilgå din konto skal en administrator først godkende det. Du bliver adviseret via a-mail."
2743
-
2744
- #: ../features/login-widget/login-widget.php:10
2745
- msgid "This login widget lets you add a login form in the sidebar."
2746
- msgstr "Denne login widget gør det muligt for dig at tilføje en formular i din sidebar."
2747
-
2748
- #: ../features/login-widget/login-widget.php:15
2749
- msgid "Profile Builder Login Widget"
2750
- msgstr "Profile Builder login widget"
2751
-
2752
- #: ../front-end/class-formbuilder.php:294 ../front-end/login.php:202
2753
- msgid "Register"
2754
- msgstr "Registrer"
2755
-
2756
- #: ../features/login-widget/login-widget.php:63
2757
- msgid "Title:"
2758
- msgstr "Titel:"
2759
-
2760
- #: ../features/login-widget/login-widget.php:68
2761
- msgid "After login redirect URL (optional):"
2762
- msgstr "Efter login URL omdirigering (valgfri):"
2763
-
2764
- #: ../features/login-widget/login-widget.php:73
2765
- msgid "Register page URL (optional):"
2766
- msgstr "Registrerings side URL (valgfri):"
2767
-
2768
- #: ../features/login-widget/login-widget.php:78
2769
- msgid "Password Recovery page URL (optional):"
2770
- msgstr "Adgangskode genskabnings side URL (valgfri)"
2771
-
2772
- #: ../features/upgrades/upgrades-functions.php:91
2773
- #: ../features/upgrades/upgrades-functions.php:134
2774
- msgid "The usernames cannot be changed."
2775
- msgstr "Brugernavnene kan ikke ændres."
2776
-
2777
- #: ../front-end/class-formbuilder.php:89
2778
- msgid "Only an administrator can add new users."
2779
- msgstr "Kun administrator kan tilføje nye brugere."
2780
-
2781
- #: ../front-end/class-formbuilder.php:99
2782
- msgid "Users can register themselves or you can manually create users here."
2783
- msgstr "Brugere kan registrere sig selv eller du kan manuelt oprette brugere her."
2784
-
2785
- #: ../front-end/class-formbuilder.php:102
2786
- msgid "Users cannot currently register themselves, but you can manually create users here."
2787
- msgstr "Brugere kan ikke i øjeblikket registrere sig selv, men du kan manuelt oprette brugere her."
2788
-
2789
- #: ../front-end/class-formbuilder.php:114
2790
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
2791
- msgstr "Du er i øjeblikket logget ind som %1s. Du har ikke brug for en anden konto. %2s"
2792
-
2793
- #: ../front-end/class-formbuilder.php:114
2794
- msgid "Log out of this account."
2795
- msgstr "Log ud fra denne konto."
2796
-
2797
- #: ../front-end/class-formbuilder.php:114
2798
- msgid "Logout"
2799
- msgstr "Log ud"
2800
-
2801
- #: ../front-end/class-formbuilder.php:120
2802
- msgid "You must be logged in to edit your profile."
2803
- msgstr "Du skal være logget ind for at redigere din profil."
2804
-
2805
- #: ../front-end/class-formbuilder.php:142
2806
- msgid "here"
2807
- msgstr "her"
2808
-
2809
- #: ../front-end/class-formbuilder.php:144
2810
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
2811
- msgstr "Du vil snart blive omdirigeret automatisk. Hvis du ser denne side i mere end %1$d seconds, klik venligst %2$s.%3$s"
2812
-
2813
- #: ../front-end/class-formbuilder.php:239
2814
- #: ../front-end/class-formbuilder.php:246
2815
- msgid "The account %1s has been successfully created!"
2816
- msgstr "Kontoen %1s er oprettet uden problemer!"
2817
-
2818
- #: ../front-end/class-formbuilder.php:242
2819
- #: ../front-end/class-formbuilder.php:252
2820
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
2821
- msgstr "Før du kan tilgå din konto %1s, skal du bekræfte din e-mail adresse. Tjek venligst din indbakke og klik på aktiveringslinket."
2822
-
2823
- #: ../front-end/class-formbuilder.php:248
2824
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
2825
- msgstr "Før du kan tilgå din konto %1s, skal en administrator godkende den. Du vil blive adviseret via e-mail."
2826
-
2827
- #: ../front-end/class-formbuilder.php:262
2828
- msgid "Your profile has been successfully updated!"
2829
- msgstr "Din profil er blevet opdateret uden problemer!"
2830
-
2831
- #: ../front-end/class-formbuilder.php:272
2832
- msgid "There was an error in the submitted form"
2833
- msgstr "Der var en fejl i den sendte formular. "
2834
-
2835
- #: ../front-end/class-formbuilder.php:294
2836
- msgid "Add User"
2837
- msgstr "Tilføj bruger"
2838
-
2839
- #: ../admin/add-ons.php:170 ../front-end/class-formbuilder.php:297
2840
- msgid "Update"
2841
- msgstr "Opdater"
2842
-
2843
- #: ../front-end/class-formbuilder.php:340
2844
- #: ../front-end/extra-fields/extra-fields.php:35
2845
- msgid "The avatar was successfully deleted!"
2846
- msgstr "'Avataren' blev slettet uden problemer."
2847
-
2848
- #: ../front-end/class-formbuilder.php:340
2849
- #: ../front-end/extra-fields/extra-fields.php:37
2850
- msgid "The following attachment was successfully deleted:"
2851
- msgstr "Følgende vedhæftning blev slettet uden problemer:"
2852
-
2853
- #: ../front-end/class-formbuilder.php:352
2854
- msgid "Send these credentials via email."
2855
- msgstr "Send disse legitimationsoplysninger via e-mail."
2856
-
2857
- #: ../front-end/extra-fields/extra-fields.php:99 ../front-end/login.php:89
2858
- #: ../front-end/login.php:96 ../front-end/login.php:110
2859
- #: ../front-end/recover.php:17 ../front-end/recover.php:228
2860
- msgid "ERROR"
2861
- msgstr "FEJL"
2862
-
2863
- #: ../front-end/login.php:89
2864
- msgid "The password you entered is incorrect."
2865
- msgstr "Adgangskoden du angav er forkert."
2866
-
2867
- #: ../front-end/login.php:90 ../front-end/login.php:97
2868
- msgid "Password Lost and Found."
2869
- msgstr "Adgangskode 'mistet og fundet'"
2870
-
2871
- #: ../front-end/login.php:90 ../front-end/login.php:97
2872
- msgid "Lost your password"
2873
- msgstr "Mistet din adgangskode"
2874
-
2875
- #: ../front-end/login.php:110
2876
- msgid "Both fields are empty."
2877
- msgstr "Begge felter er tomme."
2878
-
2879
- #: ../front-end/login.php:241
2880
- msgid "You are currently logged in as %1$s. %2$s"
2881
- msgstr "Du er i øjeblikket logget ind som %1$s. %2$s"
2882
-
2883
- #: ../front-end/login.php:240 ../front-end/logout.php:17
2884
- msgid "Log out of this account"
2885
- msgstr "Log ud af denne konto"
2886
-
2887
- #: ../front-end/login.php:240
2888
- msgid "Log out"
2889
- msgstr "Log ud"
2890
-
2891
- #: ../front-end/recover.php:17
2892
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
2893
- msgstr "Din konto skal først godkendes af en administrator før du kan bruge \"Genskab adgangskode\""
2894
-
2895
- #: ../front-end/recover.php:91
2896
- msgid "Reset Password"
2897
- msgstr "Genskab adgangskode"
2898
-
2899
- #: ../front-end/recover.php:111
2900
- msgid "Please enter your username or email address."
2901
- msgstr "Venligst angiv dit brugernavn eller e-mail adresse."
2902
-
2903
- #: ../front-end/recover.php:112
2904
- msgid "You will receive a link to create a new password via email."
2905
- msgstr "Du modtager et link via e-mail, så du kan oprette en ny adgangskode"
2906
-
2907
- #: ../front-end/recover.php:119
2908
- msgid "Username or E-mail"
2909
- msgstr "Brugernavn eller e-mail"
2910
-
2911
- #: ../front-end/recover.php:125
2912
- msgid "Get New Password"
2913
- msgstr "Anmod om ny adgangskode"
2914
-
2915
- #: ../front-end/recover.php:166
2916
- msgid "The username entered wasn't found in the database!"
2917
- msgstr "Det angivne brugernavn blev ikke fundet i databasen!"
2918
-
2919
- #: ../front-end/recover.php:166
2920
- msgid "Please check that you entered the correct username."
2921
- msgstr "Tjek venligst at du angav det korrekte brugernavn."
2922
-
2923
- #: ../front-end/recover.php:181
2924
- msgid "Check your e-mail for the confirmation link."
2925
- msgstr "Tjek din e-mail for bekræftelseslink."
2926
-
2927
- #: ../front-end/recover.php:216
2928
- 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"
2929
- msgstr "Nogen anmodede om at adgangskoden skulle genskabes for følgende konto: <b>%1$s</b><br/>Hvis dette var en fejltagelse, så se bare bort fra denne e-mail og intet vil ske. <br/>For at genskabe din adgangskode, følge dette link:%2$s"
2930
-
2931
- #: ../front-end/recover.php:219
2932
- msgid "Password Reset from \"%1$s\""
2933
- msgstr "Adgangskode genskab fra \"%1$s\""
2934
-
2935
- #: ../front-end/recover.php:228
2936
- msgid "There was an error while trying to send the activation link to %1$s!"
2937
- msgstr "Der opstod en fejl, da aktivireingslinket blev forsøgt sendt til %1$s!"
2938
-
2939
- #: ../front-end/recover.php:188
2940
- msgid "The email address entered wasn't found in the database!"
2941
- msgstr "Den angivne e-mail adresse blev ikke fundet i databasen!"
2942
-
2943
- #: ../front-end/recover.php:188
2944
- msgid "Please check that you entered the correct email address."
2945
- msgstr "Tjek venligst at du angav den korrekte e-mail adresse."
2946
-
2947
- #: ../front-end/recover.php:256
2948
- msgid "Your password has been successfully changed!"
2949
- msgstr "Din adgangskode er ændret uden problemer!"
2950
-
2951
- #: ../front-end/recover.php:275
2952
- msgid "You have successfully reset your password to: %1$s"
2953
- msgstr "Du har med succes genskabt din adgangskode til: %1$s"
2954
-
2955
- #: ../front-end/recover.php:278 ../front-end/recover.php:292
2956
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
2957
- msgstr "Adgangskoden ændret uden problemer for %1$s på \"%2$s\""
2958
-
2959
- #: ../front-end/recover.php:289
2960
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
2961
- msgstr "%1$s har anmodet om ændring af adgangskoden via 'Genskab adgangskode'.<br/>Hans/hendes nye adgagnskode er:%2$s"
2962
-
2963
- #: ../front-end/recover.php:308
2964
- msgid "The entered passwords don't match!"
2965
- msgstr "Den angivne adgangskode matcher ikke!"
2966
-
2967
- #: ../front-end/recover.php:353
2968
- msgid "ERROR:"
2969
- msgstr "FEJL:"
2970
-
2971
- #: ../front-end/recover.php:353
2972
- msgid "Invalid key!"
2973
- msgstr "Ugyldig nøgle!"
2974
-
2975
- #: ../front-end/register.php:46
2976
- msgid "Invalid activation key!"
2977
- msgstr "Ugyldig aktiveringsnøgle!"
2978
-
2979
- #: ../front-end/register.php:50
2980
- msgid "This username is now active!"
2981
- msgstr "Dette brugernavn er nu aktivt!"
2982
-
2983
- #: ../front-end/register.php:71
2984
- msgid "This username is already activated!"
2985
- msgstr "Dette brugernavn er allerede aktiveret!"
2986
-
2987
- #: ../front-end/register.php:115
2988
- msgid "Your email was successfully confirmed."
2989
- msgstr "Din e-mail blev bekræftet uden problemer."
2990
-
2991
- #: ../front-end/register.php:144
2992
- msgid "There was an error while trying to activate the user."
2993
- msgstr "Der skete en fejl under forsøget på at aktivere brugeren."
2994
-
2995
- #: ../front-end/default-fields/email/email.php:44
2996
- msgid "The email you entered is not a valid email address."
2997
- msgstr "E-mailen, som du angav, er ikke en gyldig e-mail adresse."
2998
-
2999
- #: ../front-end/default-fields/email/email.php:57
3000
- #: ../front-end/default-fields/email/email.php:64
3001
- msgid "This email is already reserved to be used soon."
3002
- msgstr "Denne e-mail er allerede reserveret til snart at blive anvendt."
3003
-
3004
- #: ../front-end/default-fields/email/email.php:57
3005
- #: ../front-end/default-fields/email/email.php:64
3006
- #: ../front-end/default-fields/email/email.php:73
3007
- #: ../front-end/default-fields/email/email.php:84
3008
- #: ../front-end/default-fields/username/username.php:50
3009
- #: ../front-end/default-fields/username/username.php:65
3010
- msgid "Please try a different one!"
3011
- msgstr "Venligst prøv en anden!"
3012
-
3013
- #: ../front-end/default-fields/email/email.php:73
3014
- #: ../front-end/default-fields/email/email.php:84
3015
- msgid "This email is already in use."
3016
- msgstr "Denne e-mail er allerede i brug."
3017
-
3018
- #: ../front-end/default-fields/password-repeat/password-repeat.php:37
3019
- #: ../front-end/default-fields/password-repeat/password-repeat.php:41
3020
- msgid "The passwords do not match"
3021
- msgstr "Adgangskoden matcher ikke"
3022
-
3023
- #: ../front-end/default-fields/username/username.php:50
3024
- msgid "This username already exists."
3025
- msgstr "Dette brugernavn eksisterer allerede."
3026
-
3027
- #: ../front-end/default-fields/username/username.php:65
3028
- msgid "This username is already reserved to be used soon."
3029
- msgstr "Dette brugernavn er allerede reserveret til snart at blive anvendt."
3030
-
3031
- #: ../modules/user-listing/userlisting.php:247
3032
- msgid "Avatar"
3033
- msgstr "Avatar"
3034
-
3035
- #: ../front-end/extra-fields/avatar/avatar.php:72
3036
- #: ../front-end/extra-fields/checkbox/checkbox.php:45
3037
- #: ../front-end/extra-fields/datepicker/datepicker.php:40
3038
- #: ../front-end/extra-fields/input-hidden/input-hidden.php:34
3039
- #: ../front-end/extra-fields/input/input.php:30
3040
- #: ../front-end/extra-fields/radio/radio.php:44
3041
- #: ../front-end/extra-fields/select-multiple/select-multiple.php:46
3042
- #: ../front-end/extra-fields/select-timezone/select-timezone.php:44
3043
- #: ../front-end/extra-fields/select/select.php:46
3044
- #: ../front-end/extra-fields/textarea/textarea.php:30
3045
- #: ../front-end/extra-fields/upload/upload.php:70
3046
- #: ../front-end/extra-fields/wysiwyg/wysiwyg.php:33
3047
- msgid "required"
3048
- msgstr "krævet"
3049
-
3050
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
3051
- msgid "To use reCAPTCHA you must get an API key from"
3052
- msgstr "For at bruge 'reCAPTCHA' skal du først have en API nøgle fra"
3053
-
3054
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:131
3055
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
3056
- msgstr "Af sikkerhedsmæssige grunde skal du angive 'remote' ip til 'reCAPTCHA'!"
3057
-
3058
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:192
3059
- msgid "To use reCAPTCHA you must get an API public key from:"
3060
- msgstr "For at bruge 'reCAPTCHA' skal du have en offentlig API nøgle fra:"
3061
-
3062
- #: ../modules/modules.php:11 ../modules/modules.php:80
3063
- msgid "Modules"
3064
- msgstr "Moduler"
3065
-
3066
- #: ../modules/modules.php:81
3067
- msgid "Here you can activate / deactivate available modules for Profile Builder."
3068
- msgstr "Her kan du aktivere / deaktivere tilgængelige moduler i Profile Builder."
3069
-
3070
- #: ../modules/modules.php:91
3071
- msgid "Name/Description"
3072
- msgstr "Navn/Beskrivelse"
3073
-
3074
- #: ../modules/modules.php:92
3075
- msgid "Status"
3076
- msgstr "Status"
3077
-
3078
- #: ../modules/custom-redirects/custom-redirects.php:48
3079
- #: ../modules/custom-redirects/custom-redirects.php:58
3080
- #: ../modules/custom-redirects/custom-redirects.php:68
3081
- #: ../modules/custom-redirects/custom-redirects.php:94
3082
- #: ../modules/custom-redirects/custom-redirects.php:104
3083
- #: ../modules/custom-redirects/custom-redirects.php:114
3084
- #: ../modules/custom-redirects/custom-redirects.php:124
3085
- #: ../modules/modules.php:99 ../modules/modules.php:106
3086
- #: ../modules/modules.php:113 ../modules/modules.php:120
3087
- #: ../modules/modules.php:127 ../modules/modules.php:134
3088
- msgid "Active"
3089
- msgstr "Aktiv"
3090
-
3091
- #: ../modules/custom-redirects/custom-redirects.php:49
3092
- #: ../modules/custom-redirects/custom-redirects.php:59
3093
- #: ../modules/custom-redirects/custom-redirects.php:69
3094
- #: ../modules/custom-redirects/custom-redirects.php:95
3095
- #: ../modules/custom-redirects/custom-redirects.php:105
3096
- #: ../modules/custom-redirects/custom-redirects.php:115
3097
- #: ../modules/custom-redirects/custom-redirects.php:125
3098
- #: ../modules/modules.php:100 ../modules/modules.php:107
3099
- #: ../modules/modules.php:114 ../modules/modules.php:121
3100
- #: ../modules/modules.php:128 ../modules/modules.php:135
3101
- msgid "Inactive"
3102
- msgstr "Inaktiv"
3103
-
3104
- #: ../modules/email-customizer/admin-email-customizer.php:11
3105
- #: ../modules/email-customizer/admin-email-customizer.php:12
3106
- #: ../modules/modules.php:118
3107
- msgid "Admin Email Customizer"
3108
- msgstr "Opsætning af administrator e-mails"
3109
-
3110
- #: ../modules/email-customizer/user-email-customizer.php:11
3111
- #: ../modules/email-customizer/user-email-customizer.php:12
3112
- #: ../modules/modules.php:125
3113
- msgid "User Email Customizer"
3114
- msgstr "Opsætning af bruger e-mails"
3115
-
3116
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
3117
- #: ../modules/class-mustache-templates/class-mustache-templates.php:242
3118
- msgid "Save"
3119
- msgstr "Gem"
3120
-
3121
- #: ../modules/custom-redirects/custom-redirects.php:35
3122
- msgid "Redirects on custom page requests:"
3123
- msgstr "Opsætning af omdirigering til tilpassede Profile Builder sider med 'short codes'"
3124
-
3125
- #: ../modules/custom-redirects/custom-redirects.php:39
3126
- #: ../modules/custom-redirects/custom-redirects.php:85
3127
- msgid "Action"
3128
- msgstr "Handling"
3129
-
3130
- #: ../modules/custom-redirects/custom-redirects.php:40
3131
- #: ../modules/custom-redirects/custom-redirects.php:86
3132
- #: ../modules/multiple-forms/edit-profile-forms.php:202
3133
- #: ../modules/multiple-forms/register-forms.php:226
3134
- msgid "Redirect"
3135
- msgstr "Omdiriger"
3136
-
3137
- #: ../modules/custom-redirects/custom-redirects.php:41
3138
- #: ../modules/custom-redirects/custom-redirects.php:87
3139
- #: ../modules/multiple-forms/edit-profile-forms.php:204
3140
- #: ../modules/multiple-forms/register-forms.php:228
3141
- msgid "URL"
3142
- msgstr "URL"
3143
-
3144
- #: ../modules/custom-redirects/custom-redirects.php:46
3145
- msgid "After Registration:"
3146
- msgstr "Efter registrering:"
3147
-
3148
- #: ../modules/custom-redirects/custom-redirects.php:56
3149
- msgid "After Login:"
3150
- msgstr "Efter log ind:"
3151
-
3152
- #: ../modules/custom-redirects/custom-redirects.php:66
3153
- msgid "Recover Password (*)"
3154
- msgstr "Genskab adgangskode (*)"
3155
-
3156
- #: ../modules/custom-redirects/custom-redirects.php:77
3157
- 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."
3158
- msgstr "Når denne funktion er aktiveret, vil brugeren blive omdirigeret fra såvel Wordpress' standardside for genskabning af adgangskode som fra 'Mistet adgangskode' linket som bruges af Profile Builder på log ind siden på 'front-end'."
3159
-
3160
- #: ../modules/custom-redirects/custom-redirects.php:81
3161
- msgid "Redirects on default WordPress page requests:"
3162
- msgstr "Opsætning af omdirigering fra WordPress standardside (til Profile Builder formularer):"
3163
-
3164
- #: ../modules/custom-redirects/custom-redirects.php:92
3165
- msgid "Default WordPress Login Page"
3166
- msgstr "Standard WordPress log ind side"
3167
-
3168
- #: ../modules/custom-redirects/custom-redirects.php:102
3169
- msgid "Default WordPress Logout Page"
3170
- msgstr "Standard WordPress log ud side"
3171
-
3172
- #: ../modules/custom-redirects/custom-redirects.php:112
3173
- msgid "Default WordPress Register Page"
3174
- msgstr "Standard WordPress registreringsside"
3175
-
3176
- #: ../modules/custom-redirects/custom-redirects.php:122
3177
- msgid "Default WordPress Dashboard (*)"
3178
- msgstr "Standard WordPress kontrolpanel (*)"
3179
-
3180
- #: ../modules/custom-redirects/custom-redirects.php:133
3181
- msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
3182
- msgstr "Omdirigerer hver eneste brugerrolle UNDTAGEN de som har administrator rettigheder (kan håndtere 'options')"
3183
-
3184
- #: ../modules/email-customizer/admin-email-customizer.php:38
3185
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
3186
- msgstr "Disse indstillinger bliver samtidig også gemt i \"Opsætning af bruger e-mails\" når de gemmes."
3187
-
3188
- #: ../modules/email-customizer/admin-email-customizer.php:41
3189
- #: ../modules/email-customizer/user-email-customizer.php:41
3190
- msgid "From (name)"
3191
- msgstr "Fra (navn)"
3192
-
3193
- #: ../modules/email-customizer/admin-email-customizer.php:49
3194
- #: ../modules/email-customizer/user-email-customizer.php:49
3195
- msgid "From (reply-to email)"
3196
- msgstr "Fra (svar-til e-mail)"
3197
-
3198
- #: ../modules/email-customizer/admin-email-customizer.php:57
3199
- #: ../modules/email-customizer/user-email-customizer.php:57
3200
- msgid "Common Settings"
3201
- msgstr "Fælles indstillinger"
3202
-
3203
- #: ../modules/email-customizer/admin-email-customizer.php:60
3204
- msgid ""
3205
- "\n"
3206
- "<p>New subscriber on {{site_name}}.</p>\n"
3207
- "<p>Username:{{username}}</p>\n"
3208
- "<p>E-mail:{{user_email}}</p>\n"
3209
- msgstr ""
3210
- "\n"
3211
- "<p>Ny abonnent på {{site_name}}.</p>\n"
3212
- "<p>Brugernavn:{{username}}</p>\n"
3213
- "<p>E-mail:{{user_email}}</p>\n"
3214
-
3215
- #: ../modules/email-customizer/admin-email-customizer.php:69
3216
- #: ../modules/email-customizer/admin-email-customizer.php:99
3217
- #: ../modules/email-customizer/admin-email-customizer.php:126
3218
- #: ../modules/email-customizer/user-email-customizer.php:71
3219
- #: ../modules/email-customizer/user-email-customizer.php:99
3220
- #: ../modules/email-customizer/user-email-customizer.php:128
3221
- #: ../modules/email-customizer/user-email-customizer.php:155
3222
- #: ../modules/email-customizer/user-email-customizer.php:183
3223
- #: ../modules/email-customizer/user-email-customizer.php:214
3224
- #: ../modules/email-customizer/user-email-customizer.php:241
3225
- msgid "Email Subject"
3226
- msgstr "E-mail emne"
3227
-
3228
- #: ../modules/email-customizer/admin-email-customizer.php:84
3229
- msgid "Default Registration & Registration with Email Confirmation"
3230
- msgstr "Standard registrering & registrering med e-mail bekræftelse"
3231
-
3232
- #: ../modules/email-customizer/admin-email-customizer.php:87
3233
- msgid ""
3234
- "\n"
3235
- "<p>New subscriber on {{site_name}}.</p>\n"
3236
- "<p>Username:{{username}}</p>\n"
3237
- "<p>E-mail:{{user_email}}</p>\n"
3238
- "<p>The Admin Approval feature was activated at the time of registration,\n"
3239
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
3240
- msgstr ""
3241
- "\n"
3242
- "<p>Ny abonnent{{site_name}}.</p>\n"
3243
- "<p>Brugernavn:{{username}}</p>\n"
3244
- "<p>E-mail:{{user_email}}</p>\n"
3245
- "<p>Administrator godkendelsesfunktione blev aktiveret tidspunktet for registrering,\n"
3246
- " husk venligst at du skal godkende denne bruger før han/hun kan logge ind!</p>\n"
3247
-
3248
- #: ../modules/email-customizer/admin-email-customizer.php:114
3249
- #: ../modules/email-customizer/user-email-customizer.php:143
3250
- msgid "Registration with Admin Approval"
3251
- msgstr "Registrering med administrator godkendelse"
3252
-
3253
- #: ../modules/email-customizer/email-customizer.php:7
3254
- msgid "Available Tags"
3255
- msgstr "Tilgængelige 'tags'"
3256
-
3257
- #: ../features/email-confirmation/class-email-confirmation.php:91
3258
- #: ../features/email-confirmation/class-email-confirmation.php:170
3259
- #: ../modules/email-customizer/email-customizer.php:11
3260
- msgid "User Meta"
3261
- msgstr "Bruger 'meta'"
3262
-
3263
- #: ../modules/email-customizer/email-customizer.php:21
3264
- msgid "Site Url"
3265
- msgstr "Site URL"
3266
-
3267
- #: ../modules/email-customizer/email-customizer.php:22
3268
- msgid "Site Name"
3269
- msgstr "Site navn"
3270
-
3271
- #: ../modules/email-customizer/email-customizer.php:25
3272
- #: ../modules/user-listing/userlisting.php:133
3273
- msgid "User Id"
3274
- msgstr "Bruger ID"
3275
-
3276
- #: ../modules/email-customizer/email-customizer.php:33
3277
- msgid "Reply To"
3278
- msgstr "Svar til"
3279
-
3280
- #: ../modules/email-customizer/email-customizer.php:36
3281
- msgid "Activation Key"
3282
- msgstr "Aktiveringsnøgle"
3283
-
3284
- #: ../modules/email-customizer/email-customizer.php:37
3285
- msgid "Activation Url"
3286
- msgstr "Aktiverings URL"
3287
-
3288
- #: ../modules/email-customizer/email-customizer.php:38
3289
- msgid "Activation Link"
3290
- msgstr "Aktiveringslink"
3291
-
3292
- #: ../modules/email-customizer/user-email-customizer.php:64
3293
- msgid ""
3294
- "\n"
3295
- "<h3>Welcome to {{site_name}}!</h3>\n"
3296
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3297
- msgstr ""
3298
- "\n"
3299
- "<h3>Velkommen til {{site_name}}!</h3>\n"
3300
- "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
3301
-
3302
- #: ../modules/email-customizer/user-email-customizer.php:85
3303
- msgid "Default Registration"
3304
- msgstr "Standard registrering"
3305
-
3306
- #: ../modules/email-customizer/user-email-customizer.php:91
3307
- msgid ""
3308
- "\n"
3309
- "<p>To activate your user, please click the following link:<br/>\n"
3310
- "{{{activation_link}}}</p>\n"
3311
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
3312
- msgstr ""
3313
- "\n"
3314
- "<p>For at aktivere din bruger klik venligst følgende link:<br/>\n"
3315
- "{{{activation_link}}}</p>\n"
3316
- "<p>Efter du aktiverer vil du modtage endnu en e-mail med dine legitimationsoplysninger.</p>\n"
3317
-
3318
- #: ../modules/email-customizer/user-email-customizer.php:103
3319
- msgid "[{{site_name}}] Activate {{username}}"
3320
- msgstr "[{{site_name}}] Aktivér {{username}}"
3321
-
3322
- #: ../modules/email-customizer/user-email-customizer.php:114
3323
- msgid "Registration with Email Confirmation"
3324
- msgstr "Registrering med e-mail bekræftelse"
3325
-
3326
- #: ../modules/email-customizer/user-email-customizer.php:120
3327
- msgid ""
3328
- "\n"
3329
- "<h3>Welcome to {{site_name}}!</h3>\n"
3330
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3331
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
3332
- msgstr ""
3333
- "\n"
3334
- "<h3>Velkommen til {{site_name}}!</h3>\n"
3335
- "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
3336
- "<p>Før du kan tilgå din konto skal en administrator først godkende den. Du vil få yderligere besked via e-mail.</p>\n"
3337
-
3338
- #: ../modules/email-customizer/user-email-customizer.php:132
3339
- msgid "A new account has been created for you on {{site_name}}"
3340
- msgstr "En ny konto er blevet oprettet til dig {{site_name}}"
3341
-
3342
- #: ../modules/email-customizer/user-email-customizer.php:148
3343
- msgid ""
3344
- "\n"
3345
- "<h3>Good News!</h3>\n"
3346
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
3347
- msgstr ""
3348
- "\n"
3349
- "<h3>Gode nyheder!</h3>\n"
3350
- "<p>En administrator har netop godkendt din konto: {{username}} på {{site_name}}.</p>\n"
3351
-
3352
- #: ../modules/email-customizer/user-email-customizer.php:159
3353
- msgid "Your account on {{site_name}} has been approved!"
3354
- msgstr "Din konto på {{site_name}} er blevet godkendt!"
3355
-
3356
- #: ../modules/email-customizer/user-email-customizer.php:170
3357
- msgid "User Approval Notification"
3358
- msgstr "Meddelelse om brugergodkendelse"
3359
-
3360
- #: ../modules/email-customizer/user-email-customizer.php:175
3361
- msgid ""
3362
- "\n"
3363
- "<h3>Hello,</h3>\n"
3364
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
3365
- msgstr ""
3366
- "\n"
3367
- "<h3>Hej,</h3>\n"
3368
- "<p>En administrator har desværre ophævet godkendelsen af din konto: {{username}} på {{site_name}}.</p>\n"
3369
-
3370
- #: ../modules/email-customizer/user-email-customizer.php:187
3371
- msgid "Your account on {{site_name}} has been unapproved!"
3372
- msgstr "Din konto på {{site_name}} er ikke længere godkendt!"
3373
-
3374
- #: ../modules/email-customizer/user-email-customizer.php:198
3375
- msgid "Unapproved User Notification"
3376
- msgstr "Meddelelse om ophævelse af brugerkonto"
3377
-
3378
- #: ../modules/multiple-forms/edit-profile-forms.php:11
3379
- #: ../modules/multiple-forms/edit-profile-forms.php:12
3380
- msgid "Edit-profile Form"
3381
- msgstr "Formular til profilredigering"
3382
-
3383
- #: ../modules/multiple-forms/edit-profile-forms.php:13
3384
- #: ../modules/multiple-forms/register-forms.php:13
3385
- #: ../modules/user-listing/userlisting.php:13
3386
- msgid "Add New"
3387
- msgstr "Tilføj ny"
3388
-
3389
- #: ../modules/multiple-forms/edit-profile-forms.php:14
3390
- msgid "Add new Edit-profile Form"
3391
- msgstr "Tilføj ny formular til profilredigering"
3392
-
3393
- #: ../modules/multiple-forms/edit-profile-forms.php:15
3394
- msgid "Edit the Edit-profile Forms"
3395
- msgstr "Rediger profilredigerings formularer"
3396
-
3397
- #: ../modules/multiple-forms/edit-profile-forms.php:16
3398
- msgid "New Edit-profile Form"
3399
- msgstr "Ny profilredigerings formular"
3400
-
3401
- #: ../modules/multiple-forms/edit-profile-forms.php:17
3402
- #: ../modules/multiple-forms/edit-profile-forms.php:23
3403
- msgid "Edit-profile Forms"
3404
- msgstr "Profilredigerings formularer"
3405
-
3406
- #: ../modules/multiple-forms/edit-profile-forms.php:18
3407
- msgid "View the Edit-profile Form"
3408
- msgstr "Vis profilredigerings formular"
3409
-
3410
- #: ../modules/multiple-forms/edit-profile-forms.php:19
3411
- msgid "Search the Edit-profile Forms"
3412
- msgstr "Søg profilredigerings formularer"
3413
-
3414
- #: ../modules/multiple-forms/edit-profile-forms.php:20
3415
- msgid "No Edit-profile Form found"
3416
- msgstr "Ingen profilredigerings formular fundet"
3417
-
3418
- #: ../modules/multiple-forms/edit-profile-forms.php:21
3419
- msgid "No Edit-profile Forms found in trash"
3420
- msgstr "Ingen profilredigerings formular fundet i papirkurven"
3421
-
3422
- #: ../modules/multiple-forms/edit-profile-forms.php:131
3423
- #: ../modules/multiple-forms/register-forms.php:134
3424
- #: ../modules/user-listing/userlisting.php:1155
3425
- msgid "Shortcode"
3426
- msgstr "'Shortcode'"
3427
-
3428
- #: ../modules/multiple-forms/edit-profile-forms.php:151
3429
- #: ../modules/multiple-forms/register-forms.php:155
3430
- #: ../modules/user-listing/userlisting.php:1176
3431
- msgid "(no title)"
3432
- msgstr "(ingen titel)"
3433
-
3434
- #: ../modules/multiple-forms/edit-profile-forms.php:171
3435
- #: ../modules/multiple-forms/register-forms.php:174
3436
- #: ../modules/user-listing/userlisting.php:1196
3437
- msgid "The shortcode will be available after you publish this form."
3438
- msgstr "'Shortcode' er tilgængelig efter du har publiceret denne formular."
3439
-
3440
- #: ../modules/multiple-forms/edit-profile-forms.php:173
3441
- #: ../modules/multiple-forms/register-forms.php:176
3442
- #: ../modules/user-listing/userlisting.php:1198
3443
- msgid "Use this shortcode on the page you want the form to be displayed:"
3444
- msgstr "Brug denne 'shortcode' på den side du ønsker formularen vist:"
3445
-
3446
- #: ../modules/multiple-forms/edit-profile-forms.php:177
3447
- #: ../modules/multiple-forms/register-forms.php:180
3448
- #: ../modules/user-listing/userlisting.php:1202
3449
- msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
3450
- msgstr "<span style=\"color:red;\">Bemærk:</span> ændring af denne formulars titel ændrer også 'shortcode'!"
3451
-
3452
- #: ../modules/multiple-forms/edit-profile-forms.php:183
3453
- #: ../modules/multiple-forms/register-forms.php:186
3454
- #: ../modules/user-listing/userlisting.php:1235
3455
- msgid "Form Shortcode"
3456
- msgstr "Formular 'shortcode'"
3457
-
3458
- #: ../modules/multiple-forms/edit-profile-forms.php:202
3459
- #: ../modules/multiple-forms/register-forms.php:226
3460
- msgid "Whether to redirect the user to a specific page or not"
3461
- msgstr "Hvorvidt brugeren skal omdirigeres til en bestemt side eller ikke"
3462
-
3463
- #: ../modules/multiple-forms/edit-profile-forms.php:203
3464
- #: ../modules/multiple-forms/register-forms.php:227
3465
- msgid "Display Messages"
3466
- msgstr "Vis meddelelser"
3467
-
3468
- #: ../modules/multiple-forms/edit-profile-forms.php:203
3469
- #: ../modules/multiple-forms/register-forms.php:227
3470
- msgid "Allowed time to display any success messages (in seconds)"
3471
- msgstr "Tilladt visningstid (i sekunder) for alle problemfrie meddelelser"
3472
-
3473
- #: ../modules/multiple-forms/edit-profile-forms.php:204
3474
- 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"
3475
- msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de opdaterer deres profil fra denne formular<br/>Brug følgende format: http://www.mysite.com"
3476
-
3477
- #: ../modules/multiple-forms/edit-profile-forms.php:211
3478
- msgid "After Profile Update..."
3479
- msgstr "Efter profilopdatering..."
3480
-
3481
- #: ../modules/multiple-forms/edit-profile-forms.php:237
3482
- #: ../modules/multiple-forms/register-forms.php:258
3483
- msgid "Add New Field to the List"
3484
- msgstr "Tilføj nyt felt til listen"
3485
-
3486
- #: ../modules/multiple-forms/edit-profile-forms.php:241
3487
- #: ../modules/multiple-forms/register-forms.php:262
3488
- msgid "Choose one of the supported fields you manage <a href=\""
3489
- msgstr "Vælg en af de understøttede felter som du administrerer <a href=\""
3490
-
3491
- #: ../modules/multiple-forms/multiple-forms.php:416
3492
- msgid "<pre>Title (Type)</pre>"
3493
- msgstr "<pre>Titel (Type)</pre>"
3494
-
3495
- #: ../modules/multiple-forms/multiple-forms.php:232
3496
- msgid "You need to specify the title of the form before creating it"
3497
- msgstr "Du skal specificere formularens titel før du opretter den"
3498
-
3499
- #: ../modules/multiple-forms/register-forms.php:11
3500
- #: ../modules/multiple-forms/register-forms.php:12
3501
- msgid "Registration Form"
3502
- msgstr "Registreringsformular"
3503
-
3504
- #: ../modules/multiple-forms/register-forms.php:14
3505
- msgid "Add new Registration Form"
3506
- msgstr "Tilføj ny registreringsformular"
3507
-
3508
- #: ../modules/multiple-forms/register-forms.php:15
3509
- msgid "Edit the Registration Forms"
3510
- msgstr "Rediger registreringsformularer"
3511
-
3512
- #: ../modules/multiple-forms/register-forms.php:16
3513
- msgid "New Registration Form"
3514
- msgstr "Ny registreringsformular"
3515
-
3516
- #: ../modules/multiple-forms/register-forms.php:17
3517
- #: ../modules/multiple-forms/register-forms.php:23
3518
- msgid "Registration Forms"
3519
- msgstr "Registreringsformularer"
3520
-
3521
- #: ../modules/multiple-forms/register-forms.php:18
3522
- msgid "View the Registration Form"
3523
- msgstr "Vis registrerinsformularen"
3524
-
3525
- #: ../modules/multiple-forms/register-forms.php:19
3526
- msgid "Search the Registration Forms"
3527
- msgstr "Søg registreringsformularer"
3528
-
3529
- #: ../modules/multiple-forms/register-forms.php:20
3530
- msgid "No Registration Form found"
3531
- msgstr "Ingen registreringsformular funder"
3532
-
3533
- #: ../modules/multiple-forms/register-forms.php:21
3534
- msgid "No Registration Forms found in trash"
3535
- msgstr "Ingen registreringsformularer fundet i papirkurven"
3536
-
3537
- #: ../modules/multiple-forms/register-forms.php:215
3538
- msgid "Default Role"
3539
- msgstr "Standard rolle"
3540
-
3541
- #: ../modules/multiple-forms/register-forms.php:224
3542
- msgid "Set Role"
3543
- msgstr "Indstil rolle"
3544
-
3545
- #: ../modules/multiple-forms/register-forms.php:224
3546
- 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"
3547
- msgstr "Vælg hvilken rolle brugeren får efter han/hun har registreret sig<br/>Hvis ikke specificeret, anvendes rollen der er sat som 'default' i WordPress indstillingerne"
3548
-
3549
- #: ../modules/multiple-forms/register-forms.php:225
3550
- msgid "Automatically Log In"
3551
- msgstr "Automatisk log ind"
3552
-
3553
- #: ../modules/multiple-forms/register-forms.php:225
3554
- 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"
3555
- msgstr "Hvorvidt nyligt registrerede brugere skal logges automatisk ind eller ikke<br/>Virker kun på 'single-sites' hvor \"Administrator godkendelse\" og \"E-mail bekræftelse\" ikke er aktiveret<br/>ADVARSEL: 'Caching' af registreringsformularer vil bevirke, at den automatiske log ind funktion ikke vil fungere"
3556
-
3557
- #: ../modules/multiple-forms/register-forms.php:228
3558
- 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"
3559
- msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de er registreret via denne formular.<br/>Brug følgende format: http://www.mysite.com"
3560
-
3561
- #: ../modules/multiple-forms/register-forms.php:234
3562
- msgid "After Registration..."
3563
- msgstr "Efter registrering..."
3564
-
3565
- #: ../modules/user-listing/class-userlisting.php:470
3566
- #: ../modules/user-listing/userlisting.php:724
3567
- #: ../modules/user-listing/userlisting.php:968
3568
- #: ../modules/user-listing/userlisting.php:1011
3569
- #: ../modules/user-listing/userlisting.php:1355
3570
- msgid "Search Users by All Fields"
3571
- msgstr "Søg brugere ved at bruge 'Alle felter'"
3572
-
3573
- #: ../modules/user-listing/userlisting.php:14
3574
- msgid "Add new User Listing"
3575
- msgstr "Tilføj ny brugeroversigt"
3576
-
3577
- #: ../modules/user-listing/userlisting.php:15
3578
- msgid "Edit the User Listing"
3579
- msgstr "Rediger brugeroversigten"
3580
-
3581
- #: ../modules/user-listing/userlisting.php:16
3582
- msgid "New User Listing"
3583
- msgstr "Ny brugeroversigt"
3584
-
3585
- #: ../modules/user-listing/userlisting.php:18
3586
- msgid "View the User Listing"
3587
- msgstr "Vis brugeroversigten"
3588
-
3589
- #: ../modules/user-listing/userlisting.php:19
3590
- msgid "Search the User Listing"
3591
- msgstr "Søg i brugeroversigt"
3592
-
3593
- #: ../modules/user-listing/userlisting.php:20
3594
- msgid "No User Listing found"
3595
- msgstr "Ingen brugeroversigt fundet"
3596
-
3597
- #: ../modules/user-listing/userlisting.php:21
3598
- msgid "No User Listing found in trash"
3599
- msgstr "Ingen brugeroversigt fundet i papirkurven"
3600
-
3601
- #: ../modules/user-listing/userlisting.php:95
3602
- msgid "Display name as"
3603
- msgstr "Vis navn som"
3604
-
3605
- #: ../modules/user-listing/userlisting.php:125
3606
- #: ../modules/user-listing/userlisting.php:1263
3607
- msgid "Registration Date"
3608
- msgstr "Registreringsdato"
3609
-
3610
- #: ../modules/user-listing/userlisting.php:126
3611
- #: ../modules/user-listing/userlisting.php:1267
3612
- msgid "Number of Posts"
3613
- msgstr "Antal poster"
3614
-
3615
- #: ../modules/user-listing/userlisting.php:130
3616
- msgid "More Info"
3617
- msgstr "Mere info"
3618
-
3619
- #: ../modules/user-listing/userlisting.php:131
3620
- msgid "More Info Url"
3621
- msgstr "Mere info URL"
3622
-
3623
- #: ../modules/user-listing/userlisting.php:132
3624
- msgid "Avatar or Gravatar"
3625
- msgstr "Avatar eller Gravatar"
3626
-
3627
- #: ../modules/user-listing/userlisting.php:161
3628
- msgid "Meta Variables"
3629
- msgstr "Meta variabler"
3630
-
3631
- #: ../modules/user-listing/userlisting.php:167
3632
- msgid "Sort Variables"
3633
- msgstr "Sortér variabler"
3634
-
3635
- #: ../modules/user-listing/userlisting.php:171
3636
- #: ../modules/user-listing/userlisting.php:198
3637
- msgid "Extra Functions"
3638
- msgstr "Ekstra funktioner"
3639
-
3640
- #: ../modules/user-listing/userlisting.php:173
3641
- msgid "Pagination"
3642
- msgstr "Sideopdeling"
3643
-
3644
- #: ../modules/user-listing/userlisting.php:174
3645
- msgid "Search all Fields"
3646
- msgstr "Søg 'Alle felter'"
3647
-
3648
- #: ../modules/user-listing/userlisting.php:200
3649
- msgid "Go Back Link"
3650
- msgstr "Tilbage link"
3651
-
3652
- #: ../modules/user-listing/userlisting.php:218
3653
- msgid "All-userlisting Template"
3654
- msgstr "Skabelon for flere-brugeroversigt"
3655
-
3656
- #: ../modules/user-listing/userlisting.php:221
3657
- msgid "Single-userlisting Template"
3658
- msgstr "Skabelon for enkelt-brugeroversigt"
3659
-
3660
- #: ../modules/user-listing/userlisting.php:614
3661
- msgid "First/Lastname"
3662
- msgstr "For-/Efternavn"
3663
-
3664
- #: ../modules/user-listing/userlisting.php:252
3665
- #: ../modules/user-listing/userlisting.php:620
3666
- msgid "Sign-up Date"
3667
- msgstr "Tilmeldingsdato"
3668
-
3669
- #: ../modules/user-listing/userlisting.php:629
3670
- #: ../modules/user-listing/userlisting.php:1266
3671
- msgid "Display Name"
3672
- msgstr "Vis navn som"
3673
-
3674
- #: ../modules/user-listing/userlisting.php:251
3675
- #: ../modules/user-listing/userlisting.php:638
3676
- msgid "Posts"
3677
- msgstr "Poster"
3678
-
3679
- #: ../modules/user-listing/userlisting.php:641
3680
- #: ../modules/user-listing/userlisting.php:1272
3681
- msgid "Aim"
3682
- msgstr "'Aim'"
3683
-
3684
- #: ../modules/user-listing/userlisting.php:644
3685
- #: ../modules/user-listing/userlisting.php:1273
3686
- msgid "Yim"
3687
- msgstr "'Yim'"
3688
-
3689
- #: ../modules/user-listing/userlisting.php:647
3690
- #: ../modules/user-listing/userlisting.php:1274
3691
- msgid "Jabber"
3692
- msgstr "'Jabber'"
3693
-
3694
- #: ../modules/user-listing/userlisting.php:827
3695
- msgid "Click here to see more information about this user"
3696
- msgstr "Klik her for at se mere information om denne bruger"
3697
-
3698
- #: ../modules/user-listing/userlisting.php:827
3699
- msgid "More..."
3700
- msgstr "Mere..."
3701
-
3702
- #: ../modules/user-listing/userlisting.php:830
3703
- msgid "Click here to see more information about this user."
3704
- msgstr "Klik her for at se mere information om denne bruger."
3705
-
3706
- #: ../modules/user-listing/userlisting.php:922
3707
- #: ../modules/user-listing/userlisting.php:925
3708
- msgid "Click here to go back"
3709
- msgstr "Klik her for at gå tilbage"
3710
-
3711
- #: ../modules/user-listing/userlisting.php:922
3712
- msgid "Back"
3713
- msgstr "Tilbage"
3714
-
3715
- #: ../modules/user-listing/userlisting.php:955
3716
- msgid "&laquo;&laquo; First"
3717
- msgstr "&laquo;&laquo; Først"
3718
-
3719
- #: ../modules/user-listing/userlisting.php:956
3720
- msgid "&laquo; Prev"
3721
- msgstr "&laquo; Forrige"
3722
-
3723
- #: ../modules/user-listing/userlisting.php:957
3724
- msgid "Next &raquo; "
3725
- msgstr "Næste &raquo; "
3726
-
3727
- #: ../modules/user-listing/userlisting.php:958
3728
- msgid "Last &raquo;&raquo;"
3729
- msgstr "Sidste &raquo;&raquo;"
3730
-
3731
- #: ../modules/user-listing/userlisting.php:987
3732
- msgid "You don't have any pagination settings on this userlisting!"
3733
- msgstr "Du har ingen sideopdeling (paginering) på denne brugeroversigt!"
3734
-
3735
- #: ../modules/user-listing/userlisting.php:1028
3736
- msgid "Search"
3737
- msgstr "Søg"
3738
-
3739
- #: ../modules/user-listing/userlisting.php:1029
3740
- msgid "Clear Results"
3741
- msgstr "Ryd resultatet"
3742
-
3743
- #: ../modules/user-listing/userlisting.php:1205
3744
- #: ../modules/user-listing/userlisting.php:1209
3745
- msgid "Extra shortcode parameters"
3746
- msgstr "Ekstra 'shortcode' parametre"
3747
-
3748
- #: ../modules/user-listing/userlisting.php:1212
3749
- msgid "displays users having a certain meta-value within a certain (extra) meta-field"
3750
- msgstr "viser brugere med en bestemt meta-værdi inden for et bestemt (ekstra) meta-felt"
3751
-
3752
- #: ../modules/user-listing/userlisting.php:1213
3753
- msgid "Example:"
3754
- msgstr "Eksempel:"
3755
-
3756
- #: ../modules/user-listing/userlisting.php:1215
3757
- msgid "Remember though, that the field-value combination must exist in the database."
3758
- msgstr "Husk dog, at feltværdi kombinationen skal eksistere i databasen."
3759
-
3760
- #: ../modules/user-listing/userlisting.php:1284
3761
- msgid "Random (very slow on large databases > 10K user)"
3762
- msgstr "Vilkårlig (meget langsom på store databaser > 10K brugere)"
3763
-
3764
- #: ../modules/user-listing/userlisting.php:1297
3765
- msgid "Roles to Display"
3766
- msgstr "Roller der skal vises"
3767
-
3768
- #: ../modules/user-listing/userlisting.php:1297
3769
- msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
3770
- msgstr "Begræns brugeroversigter til kun at omfatte disse udvalgte roller<br/>Hvis ikke specificeret, så bruges alle eksisterende roller"
3771
-
3772
- #: ../modules/user-listing/userlisting.php:1298
3773
- msgid "Number of Users/Page"
3774
- msgstr "Antal brugere/side"
3775
-
3776
- #: ../modules/user-listing/userlisting.php:1299
3777
- msgid "Default Sorting Criteria"
3778
- msgstr "Standard sorteringskriterie"
3779
-
3780
- #: ../modules/user-listing/userlisting.php:1299
3781
- msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
3782
- msgstr "Sæt standard sorteringskriteriet<br/>Denne kan ændres midlertidigt for hver ny session"
3783
-
3784
- #: ../modules/user-listing/userlisting.php:1300
3785
- msgid "Default Sorting Order"
3786
- msgstr "Standard sorteringsorden"
3787
-
3788
- #: ../modules/user-listing/userlisting.php:1300
3789
- msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
3790
- msgstr "Sæt standard sorteringsorden<br/>Denne kan ændres midlertidigt for hver ny session"
3791
-
3792
- #: ../modules/user-listing/userlisting.php:1301
3793
- msgid "Avatar Size (All-userlisting)"
3794
- msgstr "Avatar størrelse (Flere-brugeroversigt)"
3795
-
3796
- #: ../modules/user-listing/userlisting.php:1301
3797
- msgid "Set the avatar size on the all-userlisting only"
3798
- msgstr "Sæt avatar størrelsen på kun flere-brugeroversigten "
3799
-
3800
- #: ../modules/user-listing/userlisting.php:1302
3801
- msgid "Avatar Size (Single-userlisting)"
3802
- msgstr "Avatar størrelse (enkelt-brugeroversigt)"
3803
-
3804
- #: ../modules/user-listing/userlisting.php:1302
3805
- msgid "Set the avatar size on the single-userlisting only"
3806
- msgstr "Sæt avatar størrelsen på kun enkelt-brugeroversigten"
3807
-
3808
- #: ../modules/user-listing/userlisting.php:1303
3809
- msgid "Visible only to logged in users?"
3810
- msgstr "Synlig kun for brugere, der er logget ind?"
3811
-
3812
- #: ../modules/user-listing/userlisting.php:1303
3813
- msgid "The userlisting will only be visible only to the logged in users"
3814
- msgstr "Brugeroversigten vil kun være synlig for brugere, der er logget ind"
3815
-
3816
- #: ../modules/user-listing/userlisting.php:1304
3817
- msgid "Visible to following Roles"
3818
- msgstr "Synlig for følgende roller"
3819
-
3820
- #: ../modules/user-listing/userlisting.php:1304
3821
- msgid "The userlisting will only be visible to the following roles"
3822
- msgstr "Brugeroversigten vil kun være synlig for følgende roller"
3823
-
3824
- #: ../modules/user-listing/userlisting.php:1310
3825
- msgid "Userlisting Settings"
3826
- msgstr "Opsætning af brugeroversigt"
3827
-
3828
- #: ../modules/user-listing/userlisting.php:1331
3829
- msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
3830
- msgstr "Du skal aktivere brugeroversigts funktionen inde på fanen \"Moduler\"!"
3831
-
3832
- #: ../modules/user-listing/userlisting.php:1331
3833
- msgid "You can find it in the Profile Builder menu."
3834
- msgstr "Du kan finde det i Profile Builder menuen."
3835
-
3836
- #: ../modules/user-listing/userlisting.php:1494
3837
- msgid "No results found!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3838
  msgstr "Ingen resultater fundet!"
1
+ # Translation of Profile Builder in Danish
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2015-09-29 11:55:16+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
+ #: ../admin/add-ons.php:190
14
+ msgid "Recommended Plugins"
15
+ msgstr ""
16
+
17
+ #: ../admin/add-ons.php:219 ../admin/pms-cross-promotion.php:102
18
+ msgid "Free"
19
+ msgstr ""
20
+
21
+ #: ../admin/add-ons.php:221
22
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
23
+ msgstr ""
24
+
25
+ #: ../admin/add-ons.php:222 ../admin/pms-cross-promotion.php:105
26
+ msgid "More Details"
27
+ msgstr ""
28
+
29
+ #: ../admin/add-ons.php:240 ../admin/pms-cross-promotion.php:88
30
+ #: ../admin/pms-cross-promotion.php:123 ../admin/pms-cross-promotion.php:202
31
+ msgid "Plugin is <strong>inactive</strong>"
32
+ msgstr ""
33
+
34
+ #: ../admin/add-ons.php:242 ../admin/pms-cross-promotion.php:87
35
+ #: ../admin/pms-cross-promotion.php:125 ../admin/pms-cross-promotion.php:204
36
+ msgid "Plugin is <strong>active</strong>"
37
+ msgstr ""
38
+
39
+ #: ../admin/add-ons.php:263 ../admin/pms-cross-promotion.php:146
40
+ msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
41
+ msgstr ""
42
+
43
+ #: ../admin/general-settings.php:62
44
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
45
+ msgstr ""
46
+
47
+ #: ../admin/pms-cross-promotion.php:10
48
+ msgid "Paid Accounts"
49
+ msgstr ""
50
+
51
+ #: ../admin/pms-cross-promotion.php:33
52
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
53
+ msgstr ""
54
+
55
+ #: ../admin/pms-cross-promotion.php:37
56
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
57
+ msgstr ""
58
+
59
+ #: ../admin/pms-cross-promotion.php:40
60
+ msgid "Paid & Free Subscriptions"
61
+ msgstr ""
62
+
63
+ #: ../admin/pms-cross-promotion.php:41
64
+ msgid "Restrict Content"
65
+ msgstr ""
66
+
67
+ #: ../admin/pms-cross-promotion.php:42
68
+ msgid "Member Management"
69
+ msgstr ""
70
+
71
+ #: ../admin/pms-cross-promotion.php:43
72
+ msgid "Email Templates"
73
+ msgstr ""
74
+
75
+ #: ../admin/pms-cross-promotion.php:44
76
+ msgid "Account Management"
77
+ msgstr ""
78
+
79
+ #: ../admin/pms-cross-promotion.php:45
80
+ msgid "Subscription Management"
81
+ msgstr ""
82
+
83
+ #: ../admin/pms-cross-promotion.php:46
84
+ msgid "Payment Management"
85
+ msgstr ""
86
+
87
+ #: ../admin/pms-cross-promotion.php:83
88
+ msgid "Plugin is Active"
89
+ msgstr ""
90
+
91
+ #: ../admin/pms-cross-promotion.php:84
92
+ msgid "Plugin has been activated"
93
+ msgstr ""
94
+
95
+ #: ../admin/pms-cross-promotion.php:91
96
+ msgid "Plugin has been deactivated."
97
+ msgstr ""
98
+
99
+ #: ../admin/pms-cross-promotion.php:104
100
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
101
+ msgstr ""
102
+
103
+ #: ../admin/pms-cross-promotion.php:155
104
+ msgid "Step by Step Quick Setup"
105
+ msgstr ""
106
+
107
+ #: ../admin/pms-cross-promotion.php:239
108
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s. %3$sDismiss%4$s"
109
+ msgstr ""
110
+
111
+ #: ../features/email-confirmation/email-confirmation.php:392
112
+ msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
113
+ msgstr ""
114
+
115
+ #: ../front-end/register.php:130
116
+ msgid "You will soon be redirected automatically."
117
+ msgstr ""
118
+
119
+ #: ../modules/custom-redirects/custom_redirects_admin.php:45
120
+ msgid "After Login"
121
+ msgstr ""
122
+
123
+ #: ../modules/custom-redirects/custom_redirects_admin.php:46
124
+ msgid "After Logout"
125
+ msgstr ""
126
+
127
+ #: ../modules/custom-redirects/custom_redirects_admin.php:47
128
+ msgid "After Registration"
129
+ msgstr ""
130
+
131
+ #: ../modules/custom-redirects/custom_redirects_admin.php:48
132
+ msgid "After Edit Profile"
133
+ msgstr ""
134
+
135
+ #: ../modules/custom-redirects/custom_redirects_admin.php:49
136
+ msgid "After Successful Email Confirmation"
137
+ msgstr ""
138
+
139
+ #: ../modules/custom-redirects/custom_redirects_admin.php:50
140
+ msgid "After Successful Password Reset"
141
+ msgstr ""
142
+
143
+ #: ../modules/custom-redirects/custom_redirects_admin.php:51
144
+ msgid "Dashboard (redirect users from accessing the dashboard)"
145
+ msgstr ""
146
+
147
+ #: ../modules/custom-redirects/custom_redirects_admin.php:55
148
+ msgid "User ID"
149
+ msgstr ""
150
+
151
+ #: ../modules/custom-redirects/custom_redirects_admin.php:61
152
+ msgid "User ID or Username"
153
+ msgstr ""
154
+
155
+ #: ../modules/custom-redirects/custom_redirects_admin.php:62
156
+ msgid "User ID / Username"
157
+ msgstr ""
158
+
159
+ #: ../modules/custom-redirects/custom_redirects_admin.php:62
160
+ msgid "Please select and enter the ID or username of your user."
161
+ msgstr ""
162
+
163
+ #: ../modules/custom-redirects/custom_redirects_admin.php:63
164
+ #: ../modules/custom-redirects/custom_redirects_admin.php:93
165
+ #: ../modules/custom-redirects/custom_redirects_admin.php:112
166
+ #: ../modules/custom-redirects/custom_redirects_admin.php:131
167
+ msgid "Redirect Type"
168
+ msgstr ""
169
+
170
+ #: ../modules/custom-redirects/custom_redirects_admin.php:64
171
+ #: ../modules/custom-redirects/custom_redirects_admin.php:94
172
+ #: ../modules/custom-redirects/custom_redirects_admin.php:113
173
+ #: ../modules/custom-redirects/custom_redirects_admin.php:138
174
+ msgid "Redirect URL"
175
+ msgstr ""
176
+
177
+ #: ../modules/custom-redirects/custom_redirects_admin.php:64
178
+ #: ../modules/custom-redirects/custom_redirects_admin.php:94
179
+ #: ../modules/custom-redirects/custom_redirects_admin.php:113
180
+ #: ../modules/custom-redirects/custom_redirects_admin.php:138
181
+ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
182
+ msgstr ""
183
+
184
+ #: ../modules/custom-redirects/custom_redirects_admin.php:71
185
+ #: ../modules/custom-redirects/custom_redirects_admin.php:240
186
+ msgid "Individual User Redirects"
187
+ msgstr ""
188
+
189
+ #: ../modules/custom-redirects/custom_redirects_admin.php:84
190
+ msgid "... Choose"
191
+ msgstr ""
192
+
193
+ #: ../modules/custom-redirects/custom_redirects_admin.php:92
194
+ msgid "Select a user role."
195
+ msgstr ""
196
+
197
+ #: ../modules/custom-redirects/custom_redirects_admin.php:101
198
+ #: ../modules/custom-redirects/custom_redirects_admin.php:241
199
+ msgid "User Role based Redirects"
200
+ msgstr ""
201
+
202
+ #: ../modules/custom-redirects/custom_redirects_admin.php:120
203
+ #: ../modules/custom-redirects/custom_redirects_admin.php:242
204
+ msgid "Global Redirects"
205
+ msgstr ""
206
+
207
+ #: ../modules/custom-redirects/custom_redirects_admin.php:133
208
+ msgid "Login ( wp_login.php )"
209
+ msgstr ""
210
+
211
+ #: ../modules/custom-redirects/custom_redirects_admin.php:134
212
+ msgid "Register ( wp-login.php?action=register )"
213
+ msgstr ""
214
+
215
+ #: ../modules/custom-redirects/custom_redirects_admin.php:135
216
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
217
+ msgstr ""
218
+
219
+ #: ../modules/custom-redirects/custom_redirects_admin.php:136
220
+ msgid "Author Archive ( http://sitename.com/author/admin )"
221
+ msgstr ""
222
+
223
+ #: ../modules/custom-redirects/custom_redirects_admin.php:145
224
+ msgid "Redirect Default WordPress Forms and Pages"
225
+ msgstr ""
226
+
227
+ #: ../modules/custom-redirects/custom_redirects_admin.php:157
228
+ msgid "How does this work?"
229
+ msgstr ""
230
+
231
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
232
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
233
+ msgstr ""
234
+
235
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
236
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
237
+ msgstr ""
238
+
239
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
240
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
241
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
242
+ msgstr ""
243
+
244
+ #: ../modules/custom-redirects/custom_redirects_admin.php:236
245
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
246
+ msgstr ""
247
+
248
+ #: ../modules/custom-redirects/custom_redirects_admin.php:238
249
+ msgid "Which redirect happens depends on the following priority:"
250
+ msgstr ""
251
+
252
+ #: ../modules/custom-redirects/custom_redirects_admin.php:243
253
+ msgid "Individual redirects defined in shortcodes or in the Multiple Registration and Edit Profile form settings. (<strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects)"
254
+ msgstr ""
255
+
256
+ #: ../modules/custom-redirects/custom_redirects_admin.php:246
257
+ msgid "Redirect Default WordPress forms and pages"
258
+ msgstr ""
259
+
260
+ #: ../modules/custom-redirects/custom_redirects_admin.php:247
261
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
262
+ msgstr ""
263
+
264
+ #: ../modules/custom-redirects/custom_redirects_admin.php:249
265
+ msgid "Available tags for dynamic URLs"
266
+ msgstr ""
267
+
268
+ #: ../modules/custom-redirects/custom_redirects_admin.php:250
269
+ msgid "You use the following tags in your URLs to redirect users to various pages."
270
+ msgstr ""
271
+
272
+ #: ../modules/custom-redirects/custom_redirects_admin.php:252
273
+ msgid "generates a url of the current website homepage."
274
+ msgstr ""
275
+
276
+ #: ../modules/custom-redirects/custom_redirects_admin.php:253
277
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
278
+ msgstr ""
279
+
280
+ #: ../modules/custom-redirects/custom_redirects_admin.php:254
281
+ msgid "the ID of the user"
282
+ msgstr ""
283
+
284
+ #: ../modules/custom-redirects/custom_redirects_admin.php:255
285
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
286
+ msgstr ""
287
+
288
+ #: ../modules/custom-redirects/custom_redirects_admin.php:256
289
+ msgid "the URL of the previously visited page"
290
+ msgstr ""
291
+
292
+ #: ../modules/custom-redirects/custom_redirects_admin.php:339
293
+ #: ../modules/custom-redirects/custom_redirects_admin.php:345
294
+ #: ../modules/custom-redirects/custom_redirects_admin.php:351
295
+ msgid "You can't add duplicate redirects!"
296
+ msgstr ""
297
+
298
+ #: ../admin/admin-functions.php:40
299
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
300
+ msgstr ""
301
+
302
+ #: ../admin/basic-info.php:37
303
+ msgid "Friction-less login using %s shortcode or a widget."
304
+ msgstr ""
305
+
306
+ #: ../admin/basic-info.php:41
307
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
308
+ msgstr ""
309
+
310
+ #: ../admin/basic-info.php:45
311
+ msgid "Straight forward edit profile forms using %s shortcode."
312
+ msgstr ""
313
+
314
+ #: ../admin/basic-info.php:58
315
+ msgid "Allow users to recover their password in the front-end using the %s."
316
+ msgstr ""
317
+
318
+ #: ../admin/basic-info.php:130
319
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
320
+ msgstr ""
321
+
322
+ #: ../admin/general-settings.php:118
323
+ msgid "\"Admin Approval\" on User Role:"
324
+ msgstr ""
325
+
326
+ #: ../admin/general-settings.php:137
327
+ msgid "Select on what user roles to activate Admin Approval."
328
+ msgstr ""
329
+
330
+ #: ../admin/manage-fields.php:109
331
+ msgid "Display on PB forms"
332
+ msgstr ""
333
+
334
+ #: ../admin/manage-fields.php:109
335
+ msgid "PB Login"
336
+ msgstr ""
337
+
338
+ #: ../admin/manage-fields.php:109
339
+ msgid "PB Register"
340
+ msgstr ""
341
+
342
+ #: ../admin/manage-fields.php:109
343
+ msgid "PB Recover Password"
344
+ msgstr ""
345
+
346
+ #: ../admin/manage-fields.php:109
347
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
348
+ msgstr ""
349
+
350
+ #: ../admin/manage-fields.php:110
351
+ msgid "Display on default WP forms"
352
+ msgstr ""
353
+
354
+ #: ../admin/manage-fields.php:110
355
+ msgid "Default WP Login"
356
+ msgstr ""
357
+
358
+ #: ../admin/manage-fields.php:110
359
+ msgid "Default WP Register"
360
+ msgstr ""
361
+
362
+ #: ../admin/manage-fields.php:110
363
+ msgid "Default WP Recover Password"
364
+ msgstr ""
365
+
366
+ #: ../admin/manage-fields.php:110
367
+ msgid "Select on which default WP forms to display reCAPTCHA"
368
+ msgstr ""
369
+
370
+ #: ../admin/manage-fields.php:116 ../admin/manage-fields.php:117
371
+ msgid "Default option of the field"
372
+ msgstr ""
373
+
374
+ #: ../admin/manage-fields.php:237
375
+ msgid "Afghanistan"
376
+ msgstr "Afghanistan"
377
+
378
+ #: ../admin/manage-fields.php:238
379
+ msgid "Aland Islands"
380
+ msgstr "Aland Islands"
381
+
382
+ #: ../admin/manage-fields.php:239
383
+ msgid "Albania"
384
+ msgstr "Albania"
385
+
386
+ #: ../admin/manage-fields.php:240
387
+ msgid "Algeria"
388
+ msgstr "Algeria"
389
+
390
+ #: ../admin/manage-fields.php:241
391
+ msgid "American Samoa"
392
+ msgstr "American Samoa"
393
+
394
+ #: ../admin/manage-fields.php:242
395
+ msgid "Andorra"
396
+ msgstr "Andorra"
397
+
398
+ #: ../admin/manage-fields.php:243
399
+ msgid "Angola"
400
+ msgstr "Angola"
401
+
402
+ #: ../admin/manage-fields.php:244
403
+ msgid "Anguilla"
404
+ msgstr "Anguilla"
405
+
406
+ #: ../admin/manage-fields.php:245
407
+ msgid "Antarctica"
408
+ msgstr "Antarctica"
409
+
410
+ #: ../admin/manage-fields.php:246
411
+ msgid "Antigua and Barbuda"
412
+ msgstr "Antigua and Barbuda"
413
+
414
+ #: ../admin/manage-fields.php:247
415
+ msgid "Argentina"
416
+ msgstr "Argentina"
417
+
418
+ #: ../admin/manage-fields.php:248
419
+ msgid "Armenia"
420
+ msgstr "Armenia"
421
+
422
+ #: ../admin/manage-fields.php:249
423
+ msgid "Aruba"
424
+ msgstr "Aruba"
425
+
426
+ #: ../admin/manage-fields.php:250
427
+ msgid "Australia"
428
+ msgstr "Australia"
429
+
430
+ #: ../admin/manage-fields.php:251
431
+ msgid "Austria"
432
+ msgstr "Austria"
433
+
434
+ #: ../admin/manage-fields.php:252
435
+ msgid "Azerbaijan"
436
+ msgstr "Azerbaijan"
437
+
438
+ #: ../admin/manage-fields.php:253
439
+ msgid "Bahamas"
440
+ msgstr "Bahamas"
441
+
442
+ #: ../admin/manage-fields.php:254
443
+ msgid "Bahrain"
444
+ msgstr "Bahrain"
445
+
446
+ #: ../admin/manage-fields.php:255
447
+ msgid "Bangladesh"
448
+ msgstr "Bangladesh"
449
+
450
+ #: ../admin/manage-fields.php:256
451
+ msgid "Barbados"
452
+ msgstr "Barbados"
453
+
454
+ #: ../admin/manage-fields.php:257
455
+ msgid "Belarus"
456
+ msgstr "Belarus"
457
+
458
+ #: ../admin/manage-fields.php:258
459
+ msgid "Belgium"
460
+ msgstr "Belgium"
461
+
462
+ #: ../admin/manage-fields.php:259
463
+ msgid "Belize"
464
+ msgstr "Belize"
465
+
466
+ #: ../admin/manage-fields.php:260
467
+ msgid "Benin"
468
+ msgstr "Benin"
469
+
470
+ #: ../admin/manage-fields.php:261
471
+ msgid "Bermuda"
472
+ msgstr "Bermuda"
473
+
474
+ #: ../admin/manage-fields.php:262
475
+ msgid "Bhutan"
476
+ msgstr "Bhutan"
477
+
478
+ #: ../admin/manage-fields.php:263
479
+ msgid "Bolivia"
480
+ msgstr "Bolivia"
481
+
482
+ #: ../admin/manage-fields.php:264
483
+ msgid "Bonaire, Saint Eustatius and Saba"
484
+ msgstr "Bonaire, Saint Eustatius and Saba"
485
+
486
+ #: ../admin/manage-fields.php:265
487
+ msgid "Bosnia and Herzegovina"
488
+ msgstr "Bosnia and Herzegovina"
489
+
490
+ #: ../admin/manage-fields.php:266
491
+ msgid "Botswana"
492
+ msgstr "Botswana"
493
+
494
+ #: ../admin/manage-fields.php:267
495
+ msgid "Bouvet Island"
496
+ msgstr "Bouvet Island"
497
+
498
+ #: ../admin/manage-fields.php:268
499
+ msgid "Brazil"
500
+ msgstr "Brazil"
501
+
502
+ #: ../admin/manage-fields.php:269
503
+ msgid "British Indian Ocean Territory"
504
+ msgstr "British Indian Ocean Territory"
505
+
506
+ #: ../admin/manage-fields.php:270
507
+ msgid "British Virgin Islands"
508
+ msgstr "British Virgin Islands"
509
+
510
+ #: ../admin/manage-fields.php:271
511
+ msgid "Brunei"
512
+ msgstr "Brunei"
513
+
514
+ #: ../admin/manage-fields.php:272
515
+ msgid "Bulgaria"
516
+ msgstr "Bulgaria"
517
+
518
+ #: ../admin/manage-fields.php:273
519
+ msgid "Burkina Faso"
520
+ msgstr "Burkina Faso"
521
+
522
+ #: ../admin/manage-fields.php:274
523
+ msgid "Burundi"
524
+ msgstr "Burundi"
525
+
526
+ #: ../admin/manage-fields.php:275
527
+ msgid "Cambodia"
528
+ msgstr "Cambodia"
529
+
530
+ #: ../admin/manage-fields.php:276
531
+ msgid "Cameroon"
532
+ msgstr "Cameroon"
533
+
534
+ #: ../admin/manage-fields.php:277
535
+ msgid "Canada"
536
+ msgstr "Canada"
537
+
538
+ #: ../admin/manage-fields.php:278
539
+ msgid "Cape Verde"
540
+ msgstr "Cape Verde"
541
+
542
+ #: ../admin/manage-fields.php:279
543
+ msgid "Cayman Islands"
544
+ msgstr "Cayman Islands"
545
+
546
+ #: ../admin/manage-fields.php:280
547
+ msgid "Central African Republic"
548
+ msgstr "Central African Republic"
549
+
550
+ #: ../admin/manage-fields.php:281
551
+ msgid "Chad"
552
+ msgstr "Chad"
553
+
554
+ #: ../admin/manage-fields.php:282
555
+ msgid "Chile"
556
+ msgstr "Chile"
557
+
558
+ #: ../admin/manage-fields.php:283
559
+ msgid "China"
560
+ msgstr "China"
561
+
562
+ #: ../admin/manage-fields.php:284
563
+ msgid "Christmas Island"
564
+ msgstr "Christmas Island"
565
+
566
+ #: ../admin/manage-fields.php:285
567
+ msgid "Cocos Islands"
568
+ msgstr "Cocos Islands"
569
+
570
+ #: ../admin/manage-fields.php:286
571
+ msgid "Colombia"
572
+ msgstr "Colombia"
573
+
574
+ #: ../admin/manage-fields.php:287
575
+ msgid "Comoros"
576
+ msgstr "Comoros"
577
+
578
+ #: ../admin/manage-fields.php:288
579
+ msgid "Cook Islands"
580
+ msgstr "Cook Islands"
581
+
582
+ #: ../admin/manage-fields.php:289
583
+ msgid "Costa Rica"
584
+ msgstr "Costa Rica"
585
+
586
+ #: ../admin/manage-fields.php:290
587
+ msgid "Croatia"
588
+ msgstr "Croatia"
589
+
590
+ #: ../admin/manage-fields.php:291
591
+ msgid "Cuba"
592
+ msgstr "Cuba"
593
+
594
+ #: ../admin/manage-fields.php:292
595
+ msgid "Curacao"
596
+ msgstr "Curacao"
597
+
598
+ #: ../admin/manage-fields.php:293
599
+ msgid "Cyprus"
600
+ msgstr "Cyprus"
601
+
602
+ #: ../admin/manage-fields.php:294
603
+ msgid "Czech Republic"
604
+ msgstr "Czech Republic"
605
+
606
+ #: ../admin/manage-fields.php:295
607
+ msgid "Democratic Republic of the Congo"
608
+ msgstr "Democratic Republic of the Congo"
609
+
610
+ #: ../admin/manage-fields.php:296
611
+ msgid "Denmark"
612
+ msgstr "Denmark"
613
+
614
+ #: ../admin/manage-fields.php:297
615
+ msgid "Djibouti"
616
+ msgstr "Djibouti"
617
+
618
+ #: ../admin/manage-fields.php:298
619
+ msgid "Dominica"
620
+ msgstr "Dominica"
621
+
622
+ #: ../admin/manage-fields.php:299
623
+ msgid "Dominican Republic"
624
+ msgstr "Dominican Republic"
625
+
626
+ #: ../admin/manage-fields.php:300
627
+ msgid "East Timor"
628
+ msgstr "East Timor"
629
+
630
+ #: ../admin/manage-fields.php:301
631
+ msgid "Ecuador"
632
+ msgstr "Ecuador"
633
+
634
+ #: ../admin/manage-fields.php:302
635
+ msgid "Egypt"
636
+ msgstr "Egypt"
637
+
638
+ #: ../admin/manage-fields.php:303
639
+ msgid "El Salvador"
640
+ msgstr "El Salvador"
641
+
642
+ #: ../admin/manage-fields.php:304
643
+ msgid "Equatorial Guinea"
644
+ msgstr "Equatorial Guinea"
645
+
646
+ #: ../admin/manage-fields.php:305
647
+ msgid "Eritrea"
648
+ msgstr "Eritrea"
649
+
650
+ #: ../admin/manage-fields.php:306
651
+ msgid "Estonia"
652
+ msgstr "Estonia"
653
+
654
+ #: ../admin/manage-fields.php:307
655
+ msgid "Ethiopia"
656
+ msgstr "Ethiopia"
657
+
658
+ #: ../admin/manage-fields.php:308
659
+ msgid "Falkland Islands"
660
+ msgstr "Falkland Islands"
661
+
662
+ #: ../admin/manage-fields.php:309
663
+ msgid "Faroe Islands"
664
+ msgstr "Faroe Islands"
665
+
666
+ #: ../admin/manage-fields.php:310
667
+ msgid "Fiji"
668
+ msgstr "Fiji"
669
+
670
+ #: ../admin/manage-fields.php:311
671
+ msgid "Finland"
672
+ msgstr "Finland"
673
+
674
+ #: ../admin/manage-fields.php:312
675
+ msgid "France"
676
+ msgstr "France"
677
+
678
+ #: ../admin/manage-fields.php:313
679
+ msgid "French Guiana"
680
+ msgstr "French Guiana"
681
+
682
+ #: ../admin/manage-fields.php:314
683
+ msgid "French Polynesia"
684
+ msgstr "French Polynesia"
685
+
686
+ #: ../admin/manage-fields.php:315
687
+ msgid "French Southern Territories"
688
+ msgstr "French Southern Territories"
689
+
690
+ #: ../admin/manage-fields.php:316
691
+ msgid "Gabon"
692
+ msgstr "Gabon"
693
+
694
+ #: ../admin/manage-fields.php:317
695
+ msgid "Gambia"
696
+ msgstr "Gambia"
697
+
698
+ #: ../admin/manage-fields.php:318
699
+ msgid "Georgia"
700
+ msgstr "Georgia"
701
+
702
+ #: ../admin/manage-fields.php:319
703
+ msgid "Germany"
704
+ msgstr "Germany"
705
+
706
+ #: ../admin/manage-fields.php:320
707
+ msgid "Ghana"
708
+ msgstr "Ghana"
709
+
710
+ #: ../admin/manage-fields.php:321
711
+ msgid "Gibraltar"
712
+ msgstr "Gibraltar"
713
+
714
+ #: ../admin/manage-fields.php:322
715
+ msgid "Greece"
716
+ msgstr "Greece"
717
+
718
+ #: ../admin/manage-fields.php:323
719
+ msgid "Greenland"
720
+ msgstr "Greenland"
721
+
722
+ #: ../admin/manage-fields.php:324
723
+ msgid "Grenada"
724
+ msgstr "Grenada"
725
+
726
+ #: ../admin/manage-fields.php:325
727
+ msgid "Guadeloupe"
728
+ msgstr "Guadeloupe"
729
+
730
+ #: ../admin/manage-fields.php:326
731
+ msgid "Guam"
732
+ msgstr "Guam"
733
+
734
+ #: ../admin/manage-fields.php:327
735
+ msgid "Guatemala"
736
+ msgstr "Guatemala"
737
+
738
+ #: ../admin/manage-fields.php:328
739
+ msgid "Guernsey"
740
+ msgstr "Guernsey"
741
+
742
+ #: ../admin/manage-fields.php:329
743
+ msgid "Guinea"
744
+ msgstr "Guinea"
745
+
746
+ #: ../admin/manage-fields.php:330
747
+ msgid "Guinea-Bissau"
748
+ msgstr "Guinea-Bissau"
749
+
750
+ #: ../admin/manage-fields.php:331
751
+ msgid "Guyana"
752
+ msgstr "Guyana"
753
+
754
+ #: ../admin/manage-fields.php:332
755
+ msgid "Haiti"
756
+ msgstr "Haiti"
757
+
758
+ #: ../admin/manage-fields.php:333
759
+ msgid "Heard Island and McDonald Islands"
760
+ msgstr "Heard Island and McDonald Islands"
761
+
762
+ #: ../admin/manage-fields.php:334
763
+ msgid "Honduras"
764
+ msgstr "Honduras"
765
+
766
+ #: ../admin/manage-fields.php:335
767
+ msgid "Hong Kong"
768
+ msgstr "Hong Kong"
769
+
770
+ #: ../admin/manage-fields.php:336
771
+ msgid "Hungary"
772
+ msgstr "Hungary"
773
+
774
+ #: ../admin/manage-fields.php:337
775
+ msgid "Iceland"
776
+ msgstr "Iceland"
777
+
778
+ #: ../admin/manage-fields.php:338
779
+ msgid "India"
780
+ msgstr "India"
781
+
782
+ #: ../admin/manage-fields.php:339
783
+ msgid "Indonesia"
784
+ msgstr "Indonesia"
785
+
786
+ #: ../admin/manage-fields.php:340
787
+ msgid "Iran"
788
+ msgstr "Iran"
789
+
790
+ #: ../admin/manage-fields.php:341
791
+ msgid "Iraq"
792
+ msgstr "Iraq"
793
+
794
+ #: ../admin/manage-fields.php:342
795
+ msgid "Ireland"
796
+ msgstr "Ireland"
797
+
798
+ #: ../admin/manage-fields.php:343
799
+ msgid "Isle of Man"
800
+ msgstr "Isle of Man"
801
+
802
+ #: ../admin/manage-fields.php:344
803
+ msgid "Israel"
804
+ msgstr "Israel"
805
+
806
+ #: ../admin/manage-fields.php:345
807
+ msgid "Italy"
808
+ msgstr "Italy"
809
+
810
+ #: ../admin/manage-fields.php:346
811
+ msgid "Ivory Coast"
812
+ msgstr "Ivory Coast"
813
+
814
+ #: ../admin/manage-fields.php:347
815
+ msgid "Jamaica"
816
+ msgstr "Jamaica"
817
+
818
+ #: ../admin/manage-fields.php:348
819
+ msgid "Japan"
820
+ msgstr "Japan"
821
+
822
+ #: ../admin/manage-fields.php:349
823
+ msgid "Jersey"
824
+ msgstr "Jersey"
825
+
826
+ #: ../admin/manage-fields.php:350
827
+ msgid "Jordan"
828
+ msgstr "Jordan"
829
+
830
+ #: ../admin/manage-fields.php:351
831
+ msgid "Kazakhstan"
832
+ msgstr "Kazakhstan"
833
+
834
+ #: ../admin/manage-fields.php:352
835
+ msgid "Kenya"
836
+ msgstr "Kenya"
837
+
838
+ #: ../admin/manage-fields.php:353
839
+ msgid "Kiribati"
840
+ msgstr "Kiribati"
841
+
842
+ #: ../admin/manage-fields.php:354
843
+ msgid "Kosovo"
844
+ msgstr "Kosovo"
845
+
846
+ #: ../admin/manage-fields.php:355
847
+ msgid "Kuwait"
848
+ msgstr "Kuwait"
849
+
850
+ #: ../admin/manage-fields.php:356
851
+ msgid "Kyrgyzstan"
852
+ msgstr "Kyrgyzstan"
853
+
854
+ #: ../admin/manage-fields.php:357
855
+ msgid "Laos"
856
+ msgstr "Laos"
857
+
858
+ #: ../admin/manage-fields.php:358
859
+ msgid "Latvia"
860
+ msgstr "Latvia"
861
+
862
+ #: ../admin/manage-fields.php:359
863
+ msgid "Lebanon"
864
+ msgstr "Lebanon"
865
+
866
+ #: ../admin/manage-fields.php:360
867
+ msgid "Lesotho"
868
+ msgstr "Lesotho"
869
+
870
+ #: ../admin/manage-fields.php:361
871
+ msgid "Liberia"
872
+ msgstr "Liberia"
873
+
874
+ #: ../admin/manage-fields.php:362
875
+ msgid "Libya"
876
+ msgstr "Libya"
877
+
878
+ #: ../admin/manage-fields.php:363
879
+ msgid "Liechtenstein"
880
+ msgstr "Liechtenstein"
881
+
882
+ #: ../admin/manage-fields.php:364
883
+ msgid "Lithuania"
884
+ msgstr "Lithuania"
885
+
886
+ #: ../admin/manage-fields.php:365
887
+ msgid "Luxembourg"
888
+ msgstr "Luxembourg"
889
+
890
+ #: ../admin/manage-fields.php:366
891
+ msgid "Macao"
892
+ msgstr "Macao"
893
+
894
+ #: ../admin/manage-fields.php:367
895
+ msgid "Macedonia"
896
+ msgstr "Macedonia"
897
+
898
+ #: ../admin/manage-fields.php:368
899
+ msgid "Madagascar"
900
+ msgstr "Madagascar"
901
+
902
+ #: ../admin/manage-fields.php:369
903
+ msgid "Malawi"
904
+ msgstr "Malawi"
905
+
906
+ #: ../admin/manage-fields.php:370
907
+ msgid "Malaysia"
908
+ msgstr "Malaysia"
909
+
910
+ #: ../admin/manage-fields.php:371
911
+ msgid "Maldives"
912
+ msgstr "Maldives"
913
+
914
+ #: ../admin/manage-fields.php:372
915
+ msgid "Mali"
916
+ msgstr "Mali"
917
+
918
+ #: ../admin/manage-fields.php:373
919
+ msgid "Malta"
920
+ msgstr "Malta"
921
+
922
+ #: ../admin/manage-fields.php:374
923
+ msgid "Marshall Islands"
924
+ msgstr "Marshall Islands"
925
+
926
+ #: ../admin/manage-fields.php:375
927
+ msgid "Martinique"
928
+ msgstr "Martinique"
929
+
930
+ #: ../admin/manage-fields.php:376
931
+ msgid "Mauritania"
932
+ msgstr "Mauritania"
933
+
934
+ #: ../admin/manage-fields.php:377
935
+ msgid "Mauritius"
936
+ msgstr "Mauritius"
937
+
938
+ #: ../admin/manage-fields.php:378
939
+ msgid "Mayotte"
940
+ msgstr "Mayotte"
941
+
942
+ #: ../admin/manage-fields.php:379
943
+ msgid "Mexico"
944
+ msgstr "Mexico"
945
+
946
+ #: ../admin/manage-fields.php:380
947
+ msgid "Micronesia"
948
+ msgstr "Micronesia"
949
+
950
+ #: ../admin/manage-fields.php:381
951
+ msgid "Moldova"
952
+ msgstr "Moldova"
953
+
954
+ #: ../admin/manage-fields.php:382
955
+ msgid "Monaco"
956
+ msgstr "Monaco"
957
+
958
+ #: ../admin/manage-fields.php:383
959
+ msgid "Mongolia"
960
+ msgstr "Mongolia"
961
+
962
+ #: ../admin/manage-fields.php:384
963
+ msgid "Montenegro"
964
+ msgstr "Montenegro"
965
+
966
+ #: ../admin/manage-fields.php:385
967
+ msgid "Montserrat"
968
+ msgstr "Montserrat"
969
+
970
+ #: ../admin/manage-fields.php:386
971
+ msgid "Morocco"
972
+ msgstr "Morocco"
973
+
974
+ #: ../admin/manage-fields.php:387
975
+ msgid "Mozambique"
976
+ msgstr "Mozambique"
977
+
978
+ #: ../admin/manage-fields.php:388
979
+ msgid "Myanmar"
980
+ msgstr "Myanmar"
981
+
982
+ #: ../admin/manage-fields.php:389
983
+ msgid "Namibia"
984
+ msgstr "Namibia"
985
+
986
+ #: ../admin/manage-fields.php:390
987
+ msgid "Nauru"
988
+ msgstr "Nauru"
989
+
990
+ #: ../admin/manage-fields.php:391
991
+ msgid "Nepal"
992
+ msgstr "Nepal"
993
+
994
+ #: ../admin/manage-fields.php:392
995
+ msgid "Netherlands"
996
+ msgstr "Netherlands"
997
+
998
+ #: ../admin/manage-fields.php:393
999
+ msgid "New Caledonia"
1000
+ msgstr "New Caledonia"
1001
+
1002
+ #: ../admin/manage-fields.php:394
1003
+ msgid "New Zealand"
1004
+ msgstr "New Zealand"
1005
+
1006
+ #: ../admin/manage-fields.php:395
1007
+ msgid "Nicaragua"
1008
+ msgstr "Nicaragua"
1009
+
1010
+ #: ../admin/manage-fields.php:396
1011
+ msgid "Niger"
1012
+ msgstr "Niger"
1013
+
1014
+ #: ../admin/manage-fields.php:397
1015
+ msgid "Nigeria"
1016
+ msgstr "Nigeria"
1017
+
1018
+ #: ../admin/manage-fields.php:398
1019
+ msgid "Niue"
1020
+ msgstr "Niue"
1021
+
1022
+ #: ../admin/manage-fields.php:399
1023
+ msgid "Norfolk Island"
1024
+ msgstr "Norfolk Island"
1025
+
1026
+ #: ../admin/manage-fields.php:400
1027
+ msgid "North Korea"
1028
+ msgstr "North Korea"
1029
+
1030
+ #: ../admin/manage-fields.php:401
1031
+ msgid "Northern Mariana Islands"
1032
+ msgstr "Northern Mariana Islands"
1033
+
1034
+ #: ../admin/manage-fields.php:402
1035
+ msgid "Norway"
1036
+ msgstr "Norway"
1037
+
1038
+ #: ../admin/manage-fields.php:403
1039
+ msgid "Oman"
1040
+ msgstr "Oman"
1041
+
1042
+ #: ../admin/manage-fields.php:404
1043
+ msgid "Pakistan"
1044
+ msgstr "Pakistan"
1045
+
1046
+ #: ../admin/manage-fields.php:405
1047
+ msgid "Palau"
1048
+ msgstr "Palau"
1049
+
1050
+ #: ../admin/manage-fields.php:406
1051
+ msgid "Palestinian Territory"
1052
+ msgstr "Palestinian Territory"
1053
+
1054
+ #: ../admin/manage-fields.php:407
1055
+ msgid "Panama"
1056
+ msgstr "Panama"
1057
+
1058
+ #: ../admin/manage-fields.php:408
1059
+ msgid "Papua New Guinea"
1060
+ msgstr "Papua New Guinea"
1061
+
1062
+ #: ../admin/manage-fields.php:409
1063
+ msgid "Paraguay"
1064
+ msgstr "Paraguay"
1065
+
1066
+ #: ../admin/manage-fields.php:410
1067
+ msgid "Peru"
1068
+ msgstr "Peru"
1069
+
1070
+ #: ../admin/manage-fields.php:411
1071
+ msgid "Philippines"
1072
+ msgstr "Philippines"
1073
+
1074
+ #: ../admin/manage-fields.php:412
1075
+ msgid "Pitcairn"
1076
+ msgstr "Pitcairn"
1077
+
1078
+ #: ../admin/manage-fields.php:413
1079
+ msgid "Poland"
1080
+ msgstr "Poland"
1081
+
1082
+ #: ../admin/manage-fields.php:414
1083
+ msgid "Portugal"
1084
+ msgstr "Portugal"
1085
+
1086
+ #: ../admin/manage-fields.php:415
1087
+ msgid "Puerto Rico"
1088
+ msgstr "Puerto Rico"
1089
+
1090
+ #: ../admin/manage-fields.php:416
1091
+ msgid "Qatar"
1092
+ msgstr "Qatar"
1093
+
1094
+ #: ../admin/manage-fields.php:417
1095
+ msgid "Republic of the Congo"
1096
+ msgstr "Republic of the Congo"
1097
+
1098
+ #: ../admin/manage-fields.php:418
1099
+ msgid "Reunion"
1100
+ msgstr "Reunion"
1101
+
1102
+ #: ../admin/manage-fields.php:419
1103
+ msgid "Romania"
1104
+ msgstr "Romania"
1105
+
1106
+ #: ../admin/manage-fields.php:420
1107
+ msgid "Russia"
1108
+ msgstr "Russia"
1109
+
1110
+ #: ../admin/manage-fields.php:421
1111
+ msgid "Rwanda"
1112
+ msgstr "Rwanda"
1113
+
1114
+ #: ../admin/manage-fields.php:422
1115
+ msgid "Saint Barthelemy"
1116
+ msgstr "Saint Barthelemy"
1117
+
1118
+ #: ../admin/manage-fields.php:423
1119
+ msgid "Saint Helena"
1120
+ msgstr "Saint Helena"
1121
+
1122
+ #: ../admin/manage-fields.php:424
1123
+ msgid "Saint Kitts and Nevis"
1124
+ msgstr "Saint Kitts and Nevis"
1125
+
1126
+ #: ../admin/manage-fields.php:425
1127
+ msgid "Saint Lucia"
1128
+ msgstr "Saint Lucia"
1129
+
1130
+ #: ../admin/manage-fields.php:426
1131
+ msgid "Saint Martin"
1132
+ msgstr "Saint Martin"
1133
+
1134
+ #: ../admin/manage-fields.php:427
1135
+ msgid "Saint Pierre and Miquelon"
1136
+ msgstr "Saint Pierre and Miquelon"
1137
+
1138
+ #: ../admin/manage-fields.php:428
1139
+ msgid "Saint Vincent and the Grenadines"
1140
+ msgstr "Saint Vincent and the Grenadines"
1141
+
1142
+ #: ../admin/manage-fields.php:429
1143
+ msgid "Samoa"
1144
+ msgstr "Samoa"
1145
+
1146
+ #: ../admin/manage-fields.php:430
1147
+ msgid "San Marino"
1148
+ msgstr "San Marino"
1149
+
1150
+ #: ../admin/manage-fields.php:431
1151
+ msgid "Sao Tome and Principe"
1152
+ msgstr "Sao Tome and Principe"
1153
+
1154
+ #: ../admin/manage-fields.php:432
1155
+ msgid "Saudi Arabia"
1156
+ msgstr "Saudi Arabia"
1157
+
1158
+ #: ../admin/manage-fields.php:433
1159
+ msgid "Senegal"
1160
+ msgstr "Senegal"
1161
+
1162
+ #: ../admin/manage-fields.php:434
1163
+ msgid "Serbia"
1164
+ msgstr "Serbia"
1165
+
1166
+ #: ../admin/manage-fields.php:435
1167
+ msgid "Seychelles"
1168
+ msgstr "Seychelles"
1169
+
1170
+ #: ../admin/manage-fields.php:436
1171
+ msgid "Sierra Leone"
1172
+ msgstr "Sierra Leone"
1173
+
1174
+ #: ../admin/manage-fields.php:437
1175
+ msgid "Singapore"
1176
+ msgstr "Singapore"
1177
+
1178
+ #: ../admin/manage-fields.php:438
1179
+ msgid "Sint Maarten"
1180
+ msgstr "Sint Maarten"
1181
+
1182
+ #: ../admin/manage-fields.php:439
1183
+ msgid "Slovakia"
1184
+ msgstr "Slovakia"
1185
+
1186
+ #: ../admin/manage-fields.php:440
1187
+ msgid "Slovenia"
1188
+ msgstr "Slovenia"
1189
+
1190
+ #: ../admin/manage-fields.php:441
1191
+ msgid "Solomon Islands"
1192
+ msgstr "Solomon Islands"
1193
+
1194
+ #: ../admin/manage-fields.php:442
1195
+ msgid "Somalia"
1196
+ msgstr "Somalia"
1197
+
1198
+ #: ../admin/manage-fields.php:443
1199
+ msgid "South Africa"
1200
+ msgstr "South Africa"
1201
+
1202
+ #: ../admin/manage-fields.php:444
1203
+ msgid "South Georgia and the South Sandwich Islands"
1204
+ msgstr "South Georgia and the South Sandwich Islands"
1205
+
1206
+ #: ../admin/manage-fields.php:445
1207
+ msgid "South Korea"
1208
+ msgstr "South Korea"
1209
+
1210
+ #: ../admin/manage-fields.php:446
1211
+ msgid "South Sudan"
1212
+ msgstr "South Sudan"
1213
+
1214
+ #: ../admin/manage-fields.php:447
1215
+ msgid "Spain"
1216
+ msgstr "Spain"
1217
+
1218
+ #: ../admin/manage-fields.php:448
1219
+ msgid "Sri Lanka"
1220
+ msgstr "Sri Lanka"
1221
+
1222
+ #: ../admin/manage-fields.php:449
1223
+ msgid "Sudan"
1224
+ msgstr "Sudan"
1225
+
1226
+ #: ../admin/manage-fields.php:450
1227
+ msgid "Suriname"
1228
+ msgstr "Suriname"
1229
+
1230
+ #: ../admin/manage-fields.php:451
1231
+ msgid "Svalbard and Jan Mayen"
1232
+ msgstr "Svalbard and Jan Mayen"
1233
+
1234
+ #: ../admin/manage-fields.php:452
1235
+ msgid "Swaziland"
1236
+ msgstr "Swaziland"
1237
+
1238
+ #: ../admin/manage-fields.php:453
1239
+ msgid "Sweden"
1240
+ msgstr "Sweden"
1241
+
1242
+ #: ../admin/manage-fields.php:454
1243
+ msgid "Switzerland"
1244
+ msgstr "Switzerland"
1245
+
1246
+ #: ../admin/manage-fields.php:455
1247
+ msgid "Syria"
1248
+ msgstr "Syria"
1249
+
1250
+ #: ../admin/manage-fields.php:456
1251
+ msgid "Taiwan"
1252
+ msgstr "Taiwan"
1253
+
1254
+ #: ../admin/manage-fields.php:457
1255
+ msgid "Tajikistan"
1256
+ msgstr "Tajikistan"
1257
+
1258
+ #: ../admin/manage-fields.php:458
1259
+ msgid "Tanzania"
1260
+ msgstr "Tanzania"
1261
+
1262
+ #: ../admin/manage-fields.php:459
1263
+ msgid "Thailand"
1264
+ msgstr "Thailand"
1265
+
1266
+ #: ../admin/manage-fields.php:460
1267
+ msgid "Togo"
1268
+ msgstr "Togo"
1269
+
1270
+ #: ../admin/manage-fields.php:461
1271
+ msgid "Tokelau"
1272
+ msgstr "Tokelau"
1273
+
1274
+ #: ../admin/manage-fields.php:462
1275
+ msgid "Tonga"
1276
+ msgstr "Tonga"
1277
+
1278
+ #: ../admin/manage-fields.php:463
1279
+ msgid "Trinidad and Tobago"
1280
+ msgstr "Trinidad and Tobago"
1281
+
1282
+ #: ../admin/manage-fields.php:464
1283
+ msgid "Tunisia"
1284
+ msgstr "Tunisia"
1285
+
1286
+ #: ../admin/manage-fields.php:465
1287
+ msgid "Turkey"
1288
+ msgstr "Turkey"
1289
+
1290
+ #: ../admin/manage-fields.php:466
1291
+ msgid "Turkmenistan"
1292
+ msgstr "Turkmenistan"
1293
+
1294
+ #: ../admin/manage-fields.php:467
1295
+ msgid "Turks and Caicos Islands"
1296
+ msgstr "Turks and Caicos Islands"
1297
+
1298
+ #: ../admin/manage-fields.php:468
1299
+ msgid "Tuvalu"
1300
+ msgstr "Tuvalu"
1301
+
1302
+ #: ../admin/manage-fields.php:469
1303
+ msgid "U.S. Virgin Islands"
1304
+ msgstr "U.S. Virgin Islands"
1305
+
1306
+ #: ../admin/manage-fields.php:470
1307
+ msgid "Uganda"
1308
+ msgstr "Uganda"
1309
+
1310
+ #: ../admin/manage-fields.php:471
1311
+ msgid "Ukraine"
1312
+ msgstr "Ukraine"
1313
+
1314
+ #: ../admin/manage-fields.php:472
1315
+ msgid "United Arab Emirates"
1316
+ msgstr "United Arab Emirates"
1317
+
1318
+ #: ../admin/manage-fields.php:473
1319
+ msgid "United Kingdom"
1320
+ msgstr "United Kingdom"
1321
+
1322
+ #: ../admin/manage-fields.php:474
1323
+ msgid "United States"
1324
+ msgstr "United States"
1325
+
1326
+ #: ../admin/manage-fields.php:475
1327
+ msgid "United States Minor Outlying Islands"
1328
+ msgstr "United States Minor Outlying Islands"
1329
+
1330
+ #: ../admin/manage-fields.php:476
1331
+ msgid "Uruguay"
1332
+ msgstr "Uruguay"
1333
+
1334
+ #: ../admin/manage-fields.php:477
1335
+ msgid "Uzbekistan"
1336
+ msgstr "Uzbekistan"
1337
+
1338
+ #: ../admin/manage-fields.php:478
1339
+ msgid "Vanuatu"
1340
+ msgstr "Vanuatu"
1341
+
1342
+ #: ../admin/manage-fields.php:479
1343
+ msgid "Vatican"
1344
+ msgstr "Vatican"
1345
+
1346
+ #: ../admin/manage-fields.php:480
1347
+ msgid "Venezuela"
1348
+ msgstr "Venezuela"
1349
+
1350
+ #: ../admin/manage-fields.php:481
1351
+ msgid "Vietnam"
1352
+ msgstr "Vietnam"
1353
+
1354
+ #: ../admin/manage-fields.php:482
1355
+ msgid "Wallis and Futuna"
1356
+ msgstr "Wallis and Futuna"
1357
+
1358
+ #: ../admin/manage-fields.php:483
1359
+ msgid "Western Sahara"
1360
+ msgstr "Western Sahara"
1361
+
1362
+ #: ../admin/manage-fields.php:484
1363
+ msgid "Yemen"
1364
+ msgstr "Yemen"
1365
+
1366
+ #: ../admin/manage-fields.php:485
1367
+ msgid "Zambia"
1368
+ msgstr "Zambia"
1369
+
1370
+ #: ../admin/manage-fields.php:486
1371
+ msgid "Zimbabwe"
1372
+ msgstr "Zimbabwe"
1373
+
1374
+ #: ../admin/manage-fields.php:843
1375
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
1376
+ msgstr ""
1377
+
1378
+ #: ../assets/misc/plugin-compatibilities.php:241
1379
+ msgid "Your account has to be confirmed by an administrator before you can log in."
1380
+ msgstr ""
1381
+
1382
+ #: ../features/admin-approval/admin-approval.php:203
1383
+ msgid "Your account has been successfully created!"
1384
+ msgstr ""
1385
+
1386
+ #: ../features/functions.php:620
1387
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:374
1388
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:379
1389
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1390
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:458
1391
+ msgid "Please enter a (valid) reCAPTCHA value"
1392
+ msgstr ""
1393
+
1394
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1395
+ msgid "Click the BACK button on your browser, and try again."
1396
+ msgstr ""
1397
+
1398
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:78
1399
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:87
1400
+ msgid "Sorry, you cannot upload this file type for this field."
1401
+ msgstr ""
1402
+
1403
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:94
1404
+ msgid "An error occurred, please try again later."
1405
+ msgstr ""
1406
+
1407
+ #: ../modules/user-listing/userlisting.php:253
1408
+ msgid "More"
1409
+ msgstr ""
1410
+
1411
+ #: ../modules/user-listing/userlisting.php:338
1412
+ msgid "You do not have permission to view this user list."
1413
+ msgstr ""
1414
+
1415
+ #: ../modules/user-listing/userlisting.php:351
1416
+ msgid "You do not have the required user role to view this user list."
1417
+ msgstr ""
1418
+
1419
+ #: ../modules/user-listing/userlisting.php:1287
1420
+ msgid "Ascending"
1421
+ msgstr ""
1422
+
1423
+ #: ../modules/user-listing/userlisting.php:1288
1424
+ msgid "Descending"
1425
+ msgstr ""
1426
+
1427
+ #: ../admin/add-ons.php:144 ../admin/add-ons.php:251
1428
+ #: ../admin/pms-cross-promotion.php:134 ../admin/pms-cross-promotion.php:213
1429
+ msgid "Download Now"
1430
+ msgstr "Download nu"
1431
+
1432
+ #: ../admin/admin-functions.php:197
1433
+ msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
1434
+ msgstr "Hvis du kan lide at bruge <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate os på WordPress.org</a>. Flere tilfredse brugere betyder flere features, færre fejl og bedre support til alle."
1435
+
1436
+ #: ../admin/manage-fields.php:68
1437
+ msgid "Choose one of the supported field types"
1438
+ msgstr "Vælg en af de supporterede felttyper"
1439
+
1440
+ #: ../admin/manage-fields.php:70
1441
+ msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
1442
+ msgstr ".Ekstra felttyper er tilgængelig i <a href=\"%s\">Hobbyist or PRO versions</a>."
1443
+
1444
+ #: ../admin/manage-fields.php:107
1445
+ msgid "Site Key"
1446
+ msgstr "Site nøgle (Key)"
1447
+
1448
+ #: ../admin/manage-fields.php:107
1449
+ msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1450
+ msgstr "Site nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1451
+
1452
+ #: ../admin/manage-fields.php:108
1453
+ msgid "Secret Key"
1454
+ msgstr "Hemmelig nøgle (Key)"
1455
+
1456
+ #: ../admin/manage-fields.php:108
1457
+ msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1458
+ msgstr "Den hemmelige nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1459
+
1460
+ #: ../admin/manage-fields.php:660
1461
+ msgid "You must enter the site key\n"
1462
+ msgstr "Du skal enter site nøglen (Key)\n"
1463
+
1464
+ #: ../admin/manage-fields.php:662
1465
+ msgid "You must enter the secret key\n"
1466
+ msgstr "Du skal enter den hemmelige nøgle (Key)\n"
1467
+
1468
+ #: ../admin/add-ons.php:10 ../admin/add-ons.php:32
1469
+ msgid "Add-Ons"
1470
+ msgstr "Tilføjelser"
1471
+
1472
+ #: ../admin/add-ons.php:34 ../admin/add-ons.php:124 ../admin/add-ons.php:231
1473
+ #: ../admin/pms-cross-promotion.php:78 ../admin/pms-cross-promotion.php:114
1474
+ #: ../admin/pms-cross-promotion.php:193
1475
+ msgid "Activate"
1476
+ msgstr "Aktivér"
1477
+
1478
+ #: ../admin/add-ons.php:36 ../admin/pms-cross-promotion.php:80
1479
+ msgid "Downloading and installing..."
1480
+ msgstr "Dowloader og installerer...."
1481
+
1482
+ #: ../admin/add-ons.php:37 ../admin/pms-cross-promotion.php:81
1483
+ msgid "Installation complete"
1484
+ msgstr "Installationen gennemført"
1485
+
1486
+ #: ../admin/add-ons.php:39
1487
+ msgid "Add-On is Active"
1488
+ msgstr "Tilføjelser er aktive"
1489
+
1490
+ #: ../admin/add-ons.php:40
1491
+ msgid "Add-On has been activated"
1492
+ msgstr "Tilføjelser er blevet aktiveret"
1493
+
1494
+ #: ../admin/add-ons.php:41 ../admin/pms-cross-promotion.php:85
1495
+ msgid "Retry Install"
1496
+ msgstr "Geninstallér"
1497
+
1498
+ #: ../admin/add-ons.php:43 ../admin/add-ons.php:135
1499
+ msgid "Add-On is <strong>active</strong>"
1500
+ msgstr "Tilføjelser (add-on) er <strong>active</strong>"
1501
+
1502
+ #: ../admin/add-ons.php:44 ../admin/add-ons.php:133
1503
+ msgid "Add-On is <strong>inactive</strong>"
1504
+ msgstr "Tilføjelser (add-on) er <strong>inactive</strong>"
1505
+
1506
+ #: ../admin/add-ons.php:46 ../admin/add-ons.php:128 ../admin/add-ons.php:235
1507
+ #: ../admin/pms-cross-promotion.php:90 ../admin/pms-cross-promotion.php:118
1508
+ #: ../admin/pms-cross-promotion.php:197
1509
+ msgid "Deactivate"
1510
+ msgstr "Deaktivér"
1511
+
1512
+ #: ../admin/add-ons.php:47
1513
+ msgid "Add-On has been deactivated."
1514
+ msgstr "Tilføjelser er blevet deaktiveret"
1515
+
1516
+ #: ../admin/add-ons.php:59
1517
+ msgid "Something went wrong, we could not connect to the server. Please try again later."
1518
+ msgstr "Et eller andet gik galt, vi kunne ikke forbinde til serveren. Venligst prøv igen senere."
1519
+
1520
+ #: ../admin/add-ons.php:144 ../admin/add-ons.php:147
1521
+ msgid "Buy Now"
1522
+ msgstr "Køb nu"
1523
+
1524
+ #: ../admin/add-ons.php:147 ../admin/add-ons.php:254
1525
+ #: ../admin/pms-cross-promotion.php:137 ../admin/pms-cross-promotion.php:216
1526
+ msgid "Install Now"
1527
+ msgstr "Installér nu"
1528
+
1529
+ #: ../admin/add-ons.php:153 ../admin/add-ons.php:258
1530
+ #: ../admin/pms-cross-promotion.php:141 ../admin/pms-cross-promotion.php:220
1531
+ msgid "Compatible with your version of Profile Builder."
1532
+ msgstr "Kompatibel med din version af Profile Builder."
1533
+
1534
+ #: ../admin/add-ons.php:162
1535
+ msgid "Upgrade Profile Builder"
1536
+ msgstr "Opgradér Profile Builder"
1537
+
1538
+ #: ../admin/add-ons.php:163
1539
+ msgid "Not compatible with Profile Builder"
1540
+ msgstr "Ikke kompatibel med Profile Builder"
1541
+
1542
+ #: ../admin/add-ons.php:171
1543
+ msgid "Not compatible with your version of Profile Builder."
1544
+ msgstr "Ikke kompatibel med din version af Profile Builder"
1545
+
1546
+ #: ../admin/add-ons.php:172
1547
+ msgid "Minimum required Profile Builder version:"
1548
+ msgstr "Minimum krævet version af Profile Builder:"
1549
+
1550
+ #: ../admin/add-ons.php:177
1551
+ msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1552
+ msgstr "Kunne ikke installere tilføjelse (add-on). Prøv igen eller <a href=\"%s\" target=\"_blank\">install manually</a>."
1553
+
1554
+ #: ../front-end/default-fields/email/email.php:48
1555
+ msgid "You must enter a valid email address."
1556
+ msgstr "Du skal indtaste en gyldig e-mail adresse."
1557
+
1558
+ #: ../front-end/default-fields/username/username.php:53
1559
+ #: ../front-end/default-fields/username/username.php:60
1560
+ msgid "This username is invalid because it uses illegal characters."
1561
+ msgstr "Dette brugernavn er ugyldigt, idet det indeholde karaterer / tegn som ikke er tilladte."
1562
+
1563
+ #: ../front-end/default-fields/username/username.php:53
1564
+ #: ../front-end/default-fields/username/username.php:60
1565
+ msgid "Please enter a valid username."
1566
+ msgstr "Venligst indtast et gyldigt brugernavn."
1567
+
1568
+ #: ../front-end/extra-fields/user-role/user-role.php:67
1569
+ #: ../front-end/extra-fields/user-role/user-role.php:80
1570
+ msgid "Only administrators can see this field on edit profile forms."
1571
+ msgstr "Kun administratorer kan se dette felt på rediger profilformularer."
1572
+
1573
+ #: ../front-end/extra-fields/user-role/user-role.php:76
1574
+ msgid "As an administrator you cannot change your role."
1575
+ msgstr "Som administrator kan du ikke ændre din rolle."
1576
+
1577
+ #: ../modules/email-customizer/admin-email-customizer.php:117
1578
+ msgid ""
1579
+ "\n"
1580
+ "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
1581
+ "<p>His/her new password is: {{password}}</p>\n"
1582
+ msgstr ""
1583
+ "\n"
1584
+ "<p>{{username}} har foretaget en ændring af adgangskoden via genskab adgangskode.</p>\n"
1585
+ "\n"
1586
+ "<p>Hans/hendes nye adgangskode er: {{password}}</p>\n"
1587
+ "\n"
1588
+
1589
+ #: ../modules/email-customizer/admin-email-customizer.php:141
1590
+ msgid "Admin Notification for User Password Reset"
1591
+ msgstr "Admin meddelelse for genskabning af bruger adgangskode"
1592
+
1593
+ #: ../modules/email-customizer/email-customizer.php:42
1594
+ msgid "Reset Key"
1595
+ msgstr "Genskab nøgle"
1596
+
1597
+ #: ../modules/email-customizer/email-customizer.php:43
1598
+ msgid "Reset Url"
1599
+ msgstr "Genskab URL"
1600
+
1601
+ #: ../modules/email-customizer/email-customizer.php:44
1602
+ msgid "Reset Link"
1603
+ msgstr "Genskab link"
1604
+
1605
+ #: ../modules/email-customizer/user-email-customizer.php:204
1606
+ msgid ""
1607
+ "\n"
1608
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
1609
+ "Username: {{username}}</p>\n"
1610
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
1611
+ "<p>To reset your password, visit the following address:<br/>\n"
1612
+ "{{{reset_link}}}</p>\n"
1613
+ msgstr ""
1614
+ "\n"
1615
+ "<p>Nogen har foretaget en genskabning af adgangskoden for følgende konto: {{site_name}}<br/>\n"
1616
+ "Brugernavn: {{username}}</p>\n"
1617
+ "<p>Hvis dette var en fejl skal du blot se bort fra denne email og intet vil ske.</p>\n"
1618
+ "<p>For at genskabe din adgangskode ind følgende adresse:<br/>\n"
1619
+ "{{{reset_link}}}</p>\n"
1620
+
1621
+ #: ../modules/email-customizer/user-email-customizer.php:218
1622
+ msgid "[{{site_name}}] Password Reset"
1623
+ msgstr "[{{site_name}}] Nulstil adgangskode "
1624
+
1625
+ #: ../modules/email-customizer/user-email-customizer.php:229
1626
+ msgid "Password Reset Email"
1627
+ msgstr "E-mail vedr. nulstilling af adgangskode"
1628
+
1629
+ #: ../modules/email-customizer/user-email-customizer.php:235
1630
+ msgid ""
1631
+ "\n"
1632
+ "<p>You have successfully reset your password to: {{password}}</p>\n"
1633
+ msgstr ""
1634
+ "\n"
1635
+ "<p>Du har med succes nulstillet din adgangskode til: {{password}}</p>\n"
1636
+ "\n"
1637
+
1638
+ #: ../modules/email-customizer/user-email-customizer.php:245
1639
+ msgid "[{{site_name}}] Password Reset Successfully"
1640
+ msgstr "[{{site_name}}] Adgangskode nulstillet succesfuldt"
1641
+
1642
+ #: ../modules/email-customizer/user-email-customizer.php:256
1643
+ msgid "Password Reset Success Email"
1644
+ msgstr "E-mail vedr. adgangskode nulstillet succesfuldt"
1645
+
1646
+ #: ../modules/user-listing/userlisting.php:134
1647
+ msgid "User Nicename"
1648
+ msgstr "Bruger kaldenavn"
1649
+
1650
+ #: ../modules/user-listing/userlisting.php:442
1651
+ msgid "None"
1652
+ msgstr "Ingen"
1653
+
1654
+ #: ../admin/admin-functions.php:128
1655
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1656
+ msgstr "<strong>FEJL</strong>: Adgangskoden skal bestå af mindst %s characters"
1657
+
1658
+ #: ../admin/admin-functions.php:145
1659
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
1660
+ msgstr "<strong>FEJL</strong>: Adgangskodens styrke skal være mindst: %s"
1661
+
1662
+ #: ../admin/general-settings.php:163
1663
+ msgid "Username and Email"
1664
+ msgstr "Brugernavn og e-mail"
1665
+
1666
+ #: ../admin/general-settings.php:168
1667
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
1668
+ msgstr "\"Brugernavn og e-mail\" - brugere kan logge ind med såvel brugernavn som e-mail."
1669
+
1670
+ #: ../admin/general-settings.php:169
1671
+ msgid "\"Username\" - users can Log In only with Username."
1672
+ msgstr "\"Brugernavn\" - brugere kan kun logge ind med brugernavn."
1673
+
1674
+ #: ../admin/general-settings.php:170
1675
+ msgid "\"Email\" - users can Log In only with Email."
1676
+ msgstr "\"E-mail\" - brugere kan kun logge ind med e-mail."
1677
+
1678
+ #: ../admin/manage-fields.php:100
1679
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
1680
+ msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default: .jpg,.jpeg,.gif,.png (.*)"
1681
+
1682
+ #: ../admin/manage-fields.php:101
1683
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
1684
+ msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default alle WordPress tilladte filformater (.*)"
1685
+
1686
+ #: ../admin/manage-fields.php:111
1687
+ msgid "User Roles"
1688
+ msgstr "Brugerroller"
1689
+
1690
+ #: ../admin/manage-fields.php:111
1691
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
1692
+ msgstr "Vælg hvilke brugerroller der skal vises for brugerne (\"træk\" og \"slip\" for at om-organiserer)"
1693
+
1694
+ #: ../admin/manage-fields.php:112
1695
+ msgid "User Roles Order"
1696
+ msgstr "Brugerroller orden"
1697
+
1698
+ #: ../admin/manage-fields.php:112
1699
+ msgid "Save the user role order from the user roles checkboxes"
1700
+ msgstr "Gem brugerrolle ordenen fra brugerrollernes tjekbokse"
1701
+
1702
+ #: ../admin/manage-fields.php:752
1703
+ msgid "Please select at least one user role\n"
1704
+ msgstr "Vælg venligst mindst en brugerrolle\n"
1705
+
1706
+ #: ../admin/register-version.php:22
1707
+ msgid "Profile Builder Register"
1708
+ msgstr "Registrer Profile Builder"
1709
+
1710
+ #: ../admin/register-version.php:81
1711
+ msgid "The serial number is about to expire soon!"
1712
+ msgstr "Serienummeret udløber snart!"
1713
+
1714
+ #: ../admin/register-version.php:81
1715
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
1716
+ msgstr "Dit serienummer er ved at udløbe, venligst %1$s forny din licens%2$s."
1717
+
1718
+ #: ../admin/register-version.php:83
1719
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
1720
+ msgstr " Dit serienummer er udløbet, venligst %1$s forny din licens%2$s."
1721
+
1722
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
1723
+ msgid "Add Entry"
1724
+ msgstr "Tilføj post"
1725
+
1726
+ #: ../features/email-confirmation/class-email-confirmation.php:91
1727
+ msgid "show"
1728
+ msgstr "vis"
1729
+
1730
+ #: ../features/functions.php:672
1731
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
1732
+ msgstr "For at tillade brugere at registrere sig på din hjemmeside via Profile Builder, skal du først aktivere brugerregistrering. Gå til %1$sNetwork Settings%2$s, og under registreringsopsætningen sørg for at sætte markering ved “Brugerkonti må registreres.” %3$sDismiss%4$s"
1733
+
1734
+ #: ../front-end/class-formbuilder.php:562
1735
+ msgid "User to edit:"
1736
+ msgstr "Bruger der skal redigeres:"
1737
+
1738
+ #: ../front-end/default-fields/password/password.php:46
1739
+ #: ../front-end/recover.php:245
1740
+ msgid "The password must have the minimum length of %s characters"
1741
+ msgstr "Adgangskoden skal have en minimumslængde på %s karakterer"
1742
+
1743
+ #: ../front-end/default-fields/password/password.php:50
1744
+ #: ../front-end/recover.php:249
1745
+ msgid "The password must have a minimum strength of %s"
1746
+ msgstr "Adgangskoden skal minimum have en styrke %s"
1747
+
1748
+ #: ../front-end/extra-fields/user-role/user-role.php:112
1749
+ msgid "You cannot register this user role"
1750
+ msgstr "Du kan ikke registrere denne brugerrolle"
1751
+
1752
+ #: ../front-end/login.php:108
1753
+ msgid "username or email"
1754
+ msgstr "brugernavn eller e-mail"
1755
+
1756
+ #: ../front-end/login.php:177
1757
+ msgid "Username or Email"
1758
+ msgstr "Brugernavn eller e-mail"
1759
+
1760
+ #: ../front-end/logout.php:15
1761
+ msgid "You are currently logged in as %s. "
1762
+ msgstr "Du er i øjeblikket logget ind som %s."
1763
+
1764
+ #: ../front-end/logout.php:15
1765
+ msgid "Log out &raquo;"
1766
+ msgstr "Log ud &raquo;"
1767
+
1768
+ #: ../modules/custom-redirects/custom_redirects_admin.php:92
1769
+ #: ../modules/email-customizer/email-customizer.php:31
1770
+ msgid "User Role"
1771
+ msgstr "Brugerrolle"
1772
+
1773
+ #: ../modules/user-listing/userlisting.php:1207
1774
+ msgid "View all extra shortcode parameters"
1775
+ msgstr "Se alle ekstra \"shortcode\" parametre"
1776
+
1777
+ #: ../modules/user-listing/userlisting.php:1221
1778
+ msgid "displays only the users that you specified the user_id for"
1779
+ msgstr "vis kun de brugere som du specificerede 'user_id' for"
1780
+
1781
+ #: ../modules/user-listing/userlisting.php:1227
1782
+ msgid "displays all users except the ones you specified the user_id for"
1783
+ msgstr "vis alle brugere undtagen dem som du specificerede 'user_id' for"
1784
+
1785
+ #: ../features/functions.php:539
1786
+ msgid "Minimum length of %d characters"
1787
+ msgstr "Minimum længde %d karakterer"
1788
+
1789
+ #: ../front-end/class-formbuilder.php:142
1790
+ #: ../front-end/class-formbuilder.php:145
1791
+ msgid "This message is only visible by administrators"
1792
+ msgstr "Denne meddelelse er kun synlig for administratorer"
1793
+
1794
+ #: ../modules/user-listing/userlisting.php:364
1795
+ msgid "User not found"
1796
+ msgstr "Bruger ikke fundet"
1797
+
1798
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1799
+ #: ../modules/email-customizer/user-email-customizer.php:38
1800
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
1801
+ msgstr "Gyldige tags {{reply_to}} og{{site_name}}"
1802
+
1803
+ #: ../admin/admin-bar.php:48
1804
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
1805
+ msgstr "Vælg hvilke brugerroller der skal se kontrolpanelet på sitets 'front-end'."
1806
+
1807
+ #: ../admin/manage-fields.php:105
1808
+ 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"
1809
+ msgstr "Indsæt en komma separeret liste med værdier<br/>Det kan være hvad som helst, idet værdierne er skjulte for brugeren. Men listen må ikke indeholde specielle karakterer eller apostroffer."
1810
+
1811
+ #: ../admin/manage-fields.php:689
1812
+ msgid "The meta-name cannot be empty\n"
1813
+ msgstr "'Meta-name' kan ikke være tom\n"
1814
+
1815
+ #: ../admin/register-version.php:69
1816
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
1817
+ msgstr "Nu du har erhvervet en kopi af %s bør du tage dig tid til at registrere det med serienummeret som du modtog."
1818
+
1819
+ #: ../admin/register-version.php:243
1820
+ 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>"
1821
+ msgstr "<p>Din<strong>Profile Builder</strong> serienummer er ugyldigt eller mangler. <br/>Venligst %1$sregistrer din kopi%2$s for at få adgang til automatiske opdateringer og support.Har du brug for en licensnøgle? %3$sPurchase one now%4$s</p>"
1822
+
1823
+ #: ../admin/register-version.php:246
1824
+ 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>"
1825
+ msgstr "<p>Din<strong>Profile Builder</strong> licens er udløbet. <br/>Venligst %1$sForny din licens%2$s for fortsat at have adgang til produkt downloads, automatiske opdateringer og support. %3$sForny nu og få 50&#37; rabat %4$s %5$sAfvis%6$s</p>"
1826
+
1827
+ #: ../admin/register-version.php:251
1828
+ 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>"
1829
+ msgstr "<p>Din<strong>Profile Builder</strong> licens udløber den %5$s. <br/>Venligst%1$sForny din licens%2$s for fortsat at have adgang til produkt downloads, automatiske opdateringer og support. %3$sForny nu og få 50&#37; rabat %4$s %6$sAfvis%7$s</p>"
1830
+
1831
+ #: ../assets/lib/wck-api/fields/country select.php:14
1832
+ #: ../assets/lib/wck-api/fields/cpt select.php:17
1833
+ #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
1834
+ #: select.php:15
1835
+ msgid "...Choose"
1836
+ msgstr "...Vælg"
1837
+
1838
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
1839
+ msgid "1 item"
1840
+ msgstr "1 emne"
1841
+
1842
+ #: ../features/functions.php:525
1843
+ msgid "Very Weak"
1844
+ msgstr "Meget svag"
1845
+
1846
+ #: ../features/functions.php:613
1847
+ msgid "This field is required"
1848
+ msgstr "Dette felt er obligatorisk"
1849
+
1850
+ #: ../features/functions.php:640
1851
+ msgid "Cancel"
1852
+ msgstr "Annuller"
1853
+
1854
+ #: ../features/functions.php:676
1855
+ 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"
1856
+ msgstr "For at tillade bruger at registrere sig på dit site via Profile Builder, skal du først aktiverer brugerregistrering. Gå til %1$sIndstillinger -> Generel%2$s fane, og under Medlemskab sørge for at markere “Alle kan registrere sig\". %3$sAfvis%4$s"
1857
+
1858
+ #: ../front-end/login.php:99
1859
+ msgid "Invalid username."
1860
+ msgstr "Ugyldigt brugernavn"
1861
+
1862
+ #: ../front-end/login.php:104 ../front-end/login.php:108
1863
+ msgid "username"
1864
+ msgstr "brugernavn"
1865
+
1866
+ #: ../front-end/login.php:104
1867
+ msgid "email"
1868
+ msgstr "e-mail"
1869
+
1870
+ #: ../front-end/login.php:211
1871
+ msgid "Lost your password?"
1872
+ msgstr "Mistet din adgangskode?"
1873
+
1874
+ #: ../index.php:34
1875
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
1876
+ msgstr "er også aktiveret. Du skal deaktivere det før aktivering af plugin'et."
1877
+
1878
+ #: ../modules/email-customizer/admin-email-customizer.php:54
1879
+ #: ../modules/email-customizer/user-email-customizer.php:54
1880
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
1881
+ msgstr "Skal være en gyldig e-mail adresse eller {{reply_to}} som default for administrator e-mailen"
1882
+
1883
+ #: ../features/email-confirmation/email-confirmation.php:561
1884
+ #: ../features/email-confirmation/email-confirmation.php:564
1885
+ #: ../modules/email-customizer/email-customizer.php:413
1886
+ #: ../modules/email-customizer/email-customizer.php:420
1887
+ #: ../modules/email-customizer/email-customizer.php:434
1888
+ msgid "Your selected password at signup"
1889
+ msgstr "Din valgte adgangskode ved oprettelse"
1890
+
1891
+ #: ../modules/email-customizer/user-email-customizer.php:38
1892
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
1893
+ msgstr "Disse indstillinger gemmes ligeledes på indstillingssiden på 'Admin Email Customizer', når de gemmes."
1894
+
1895
+ #: ../modules/multiple-forms/edit-profile-forms.php:270
1896
+ msgid "This form is empty."
1897
+ msgstr "Denne formular er tom."
1898
+
1899
+ #: ../modules/multiple-forms/multiple-forms.php:399
1900
+ msgid "Delete all items"
1901
+ msgstr "Slet alle emner"
1902
+
1903
+ #: ../modules/multiple-forms/multiple-forms.php:399
1904
+ msgid "Delete all"
1905
+ msgstr "Slet alt"
1906
+
1907
+ #: ../modules/multiple-forms/register-forms.php:226
1908
+ msgid "Choose..."
1909
+ msgstr "Vælg..."
1910
+
1911
+ #: ../modules/user-listing/userlisting.php:1298
1912
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
1913
+ msgstr "Angiv antallet af brugere som vises på hver side af den samlede brugeroversigt"
1914
+
1915
+ #: ../admin/admin-bar.php:10
1916
+ msgid "Show/Hide the Admin Bar on the Front-End"
1917
+ msgstr "Vis/Skjul 'Admin menu' på 'Front-end'"
1918
+
1919
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
1920
+ msgid "Admin Bar Settings"
1921
+ msgstr "Admin menu indstillinger "
1922
+
1923
+ #: ../admin/admin-bar.php:57
1924
+ msgid "User-Role"
1925
+ msgstr "Brugerrolle"
1926
+
1927
+ #: ../admin/admin-bar.php:58
1928
+ msgid "Visibility"
1929
+ msgstr "Synlighed"
1930
+
1931
+ #: ../admin/admin-bar.php:73
1932
+ msgid "Default"
1933
+ msgstr "Default"
1934
+
1935
+ #: ../admin/admin-bar.php:74
1936
+ msgid "Show"
1937
+ msgstr "Vis"
1938
+
1939
+ #: ../admin/admin-bar.php:75
1940
+ msgid "Hide"
1941
+ msgstr "Skjul"
1942
+
1943
+ #: ../admin/admin-bar.php:86 ../admin/general-settings.php:208
1944
+ #: ../admin/register-version.php:95 ../features/functions.php:633
1945
+ #: ../modules/modules.php:117
1946
+ msgid "Save Changes"
1947
+ msgstr "Gem ændringer"
1948
+
1949
+ #: ../admin/admin-functions.php:34
1950
+ 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 )"
1951
+ msgstr "Login er indstillet til at blive foretaget ved hjælp af e-mail. Dette felt vil IKKE fremgå af 'front-end'! (du kan ændre disse indstillinger på \"%s\" fanen)"
1952
+
1953
+ #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
1954
+ #: ../admin/general-settings.php:38
1955
+ msgid "General Settings"
1956
+ msgstr "Generelle indstillinger"
1957
+
1958
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:194
1959
+ msgid "Very weak"
1960
+ msgstr "Meget svag"
1961
+
1962
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:195
1963
+ #: ../features/functions.php:525
1964
+ msgid "Weak"
1965
+ msgstr "Svag"
1966
+
1967
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:196
1968
+ #: ../features/functions.php:525
1969
+ msgid "Medium"
1970
+ msgstr "Middel"
1971
+
1972
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:197
1973
+ #: ../features/functions.php:525
1974
+ msgid "Strong"
1975
+ msgstr "Stærk"
1976
+
1977
+ #: ../admin/admin-functions.php:184
1978
+ msgid "Add Field"
1979
+ msgstr "Tilføj felt"
1980
+
1981
+ #: ../admin/admin-functions.php:186
1982
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:374
1983
+ msgid "Save Settings"
1984
+ msgstr "Gem indstillinger"
1985
+
1986
+ #: ../admin/basic-info.php:10
1987
+ msgid "Basic Information"
1988
+ msgstr "Basis information"
1989
+
1990
+ #: ../admin/basic-info.php:29
1991
+ msgid "Version %s"
1992
+ msgstr "Version %s"
1993
+
1994
+ #: ../admin/basic-info.php:30
1995
+ msgid "<strong>Profile Builder </strong>"
1996
+ msgstr "<strong>Profile Builder </strong>"
1997
+
1998
+ #: ../admin/basic-info.php:31
1999
+ msgid "The best way to add front-end registration, edit profile and login forms."
2000
+ msgstr "Den bedste måde at tilføje 'front-end' registrering, redigere profile og login formularer på."
2001
+
2002
+ #: ../admin/basic-info.php:33
2003
+ msgid "For Modern User Interaction"
2004
+ msgstr "Til 'Modern User Interaction'"
2005
+
2006
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
2007
+ msgid "Login"
2008
+ msgstr "Log ind"
2009
+
2010
+ #: ../admin/basic-info.php:40
2011
+ msgid "Registration"
2012
+ msgstr "Registrering"
2013
+
2014
+ #: ../admin/basic-info.php:44
2015
+ msgid "Edit Profile"
2016
+ msgstr "Rediger profil"
2017
+
2018
+ #: ../admin/basic-info.php:51
2019
+ msgid "Extra Features"
2020
+ msgstr "Ekstra funktioner"
2021
+
2022
+ #: ../admin/basic-info.php:52
2023
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
2024
+ msgstr "Funktioner som giver dig mere kontrol over dine brugere, forbedret sikkerhed og hjælper dig med at bekæmpe spam ved brugerregistrering."
2025
+
2026
+ #: ../admin/basic-info.php:53
2027
+ msgid "Enable extra features"
2028
+ msgstr "Aktiver ekstra funktioner"
2029
+
2030
+ #: ../admin/basic-info.php:57
2031
+ msgid "Recover Password"
2032
+ msgstr "Genskab adgangskode"
2033
+
2034
+ #: ../admin/basic-info.php:61
2035
+ msgid "Admin Approval (*)"
2036
+ msgstr "Admin godkendelse (*)"
2037
+
2038
+ #: ../admin/basic-info.php:62
2039
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
2040
+ msgstr "Du bestemmer hvem der er bruger på dit site. Få besked via e-mail eller godkende flere brugere ad gangen fra WordPress UI."
2041
+
2042
+ #: ../admin/basic-info.php:65
2043
+ msgid "Email Confirmation"
2044
+ msgstr "E-mail bekræftelse"
2045
+
2046
+ #: ../admin/basic-info.php:66
2047
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
2048
+ msgstr "Sørg for at brugere registrerer med en ægte e-mail adresse. Ved registrering vil brugerne modtage en e-mail, hvori de skal bekræfte deres e-mail adresse."
2049
+
2050
+ #: ../admin/basic-info.php:69
2051
+ msgid "Minimum Password Length and Strength Meter"
2052
+ msgstr "Minimum længde og styrke på adgangskode"
2053
+
2054
+ #: ../admin/basic-info.php:70
2055
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
2056
+ msgstr "Undgå svage adgangskoder ved at sætte et krav om min. længde samt sætte et krav om en vis styrke på adgangskoden."
2057
+
2058
+ #: ../admin/basic-info.php:73
2059
+ msgid "Login with Email or Username"
2060
+ msgstr "Log ind med e-mail eller brugernavn"
2061
+
2062
+ #: ../admin/basic-info.php:74
2063
+ msgid "Allow users to log in with their email or username when accessing your site."
2064
+ msgstr "Tillad brugere at logge ind med deres e-mail eller brugernavn når de logger ind på dit site."
2065
+
2066
+ #: ../admin/basic-info.php:87
2067
+ msgid "Customize Your Forms The Way You Want (*)"
2068
+ msgstr "Tilpas dine formularer som du ønsker det (*)"
2069
+
2070
+ #: ../admin/basic-info.php:88
2071
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
2072
+ msgstr "Med ekstra profil felter kan du lave nøjagtigt den registreringsformular, som dit projekt har brug for. "
2073
+
2074
+ #: ../admin/basic-info.php:90
2075
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
2076
+ msgstr "Ekstra profilfelter er tilgængelig i Hobbyist og PRO versionerne"
2077
+
2078
+ #: ../admin/basic-info.php:92
2079
+ msgid "Get started with extra fields"
2080
+ msgstr "Kom i gang med ekstra felter"
2081
+
2082
+ #: ../admin/basic-info.php:95
2083
+ msgid "Avatar Upload"
2084
+ msgstr "Avatar upload"
2085
+
2086
+ #: ../admin/basic-info.php:96
2087
+ msgid "Generic Uploads"
2088
+ msgstr "Generisk upload"
2089
+
2090
+ #: ../admin/basic-info.php:97
2091
+ msgid "Agree To Terms Checkbox"
2092
+ msgstr "Accept af betingelser tjekboks"
2093
+
2094
+ #: ../admin/basic-info.php:98
2095
+ msgid "Datepicker"
2096
+ msgstr "Datovælger"
2097
+
2098
+ #: ../admin/basic-info.php:99
2099
+ msgid "reCAPTCHA"
2100
+ msgstr "reCAPTCHA"
2101
+
2102
+ #: ../admin/basic-info.php:100
2103
+ msgid "Country Select"
2104
+ msgstr "Landevalg"
2105
+
2106
+ #: ../admin/basic-info.php:101
2107
+ msgid "Timezone Select"
2108
+ msgstr "Tidszone valg"
2109
+
2110
+ #: ../admin/basic-info.php:102
2111
+ msgid "Input / Hidden Input"
2112
+ msgstr "Input / Skjult input"
2113
+
2114
+ #: ../admin/basic-info.php:103
2115
+ msgid "Checkbox"
2116
+ msgstr "Tjekboks"
2117
+
2118
+ #: ../admin/basic-info.php:104
2119
+ msgid "Select"
2120
+ msgstr "Vælg"
2121
+
2122
+ #: ../admin/basic-info.php:105
2123
+ msgid "Radio Buttons"
2124
+ msgstr "'Radio' knapper"
2125
+
2126
+ #: ../admin/basic-info.php:106
2127
+ msgid "Textarea"
2128
+ msgstr "Tekstområde"
2129
+
2130
+ #: ../admin/basic-info.php:115
2131
+ msgid "Powerful Modules (**)"
2132
+ msgstr "Stærke moduler (**)"
2133
+
2134
+ #: ../admin/basic-info.php:116
2135
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
2136
+ msgstr "Alt hvad du behøver for at håndtere dine brugere er formentlig allerede tilgængeligt ved at bruge Pro Moduler."
2137
+
2138
+ #: ../admin/basic-info.php:118
2139
+ msgid "Enable your modules"
2140
+ msgstr "Aktiver dine moduler"
2141
+
2142
+ #: ../admin/basic-info.php:121
2143
+ msgid "Find out more about PRO Modules"
2144
+ msgstr "Fin ud af mere om PRO Moduler"
2145
+
2146
+ #: ../admin/basic-info.php:126 ../modules/modules.php:86
2147
+ #: ../modules/user-listing/userlisting.php:11
2148
+ #: ../modules/user-listing/userlisting.php:12
2149
+ #: ../modules/user-listing/userlisting.php:17
2150
+ #: ../modules/user-listing/userlisting.php:23
2151
+ msgid "User Listing"
2152
+ msgstr "Brugeroversigt"
2153
+
2154
+ #: ../admin/basic-info.php:128
2155
+ 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."
2156
+ msgstr "Brugervenlige skabeloner gør det muligt at liste dit websites bruger ligesom du kan skabe enkelt bruger sider. Og så er det 'Shortcode' baseret, som gør det muligt for dig at tilpasse dine lister/oversigter. "
2157
+
2158
+ #: ../admin/basic-info.php:134
2159
+ msgid "Email Customizer"
2160
+ msgstr "E-mail opsætning"
2161
+
2162
+ #: ../admin/basic-info.php:135
2163
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
2164
+ msgstr "Personaliser alle e-mails sendt til dine brugere eller administratorer. Ved registrering, e-mail bekræftelse, administrator godkendelse / afvisning."
2165
+
2166
+ #: ../admin/basic-info.php:138
2167
+ #: ../modules/custom-redirects/custom_redirects_admin.php:32
2168
+ #: ../modules/custom-redirects/custom_redirects_admin.php:33
2169
+ #: ../modules/modules.php:107
2170
+ msgid "Custom Redirects"
2171
+ msgstr "Brugertilpassede omdirigeringer ('redirects')"
2172
+
2173
+ #: ../admin/basic-info.php:139
2174
+ 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."
2175
+ msgstr "Hold dine brugere ud af Wordpress' kontrolpanel ('dashboard'), omdiriger dem til forsiden efter login eller registrering. Alt dette er kun nogle få klik væk."
2176
+
2177
+ #: ../admin/basic-info.php:144 ../modules/modules.php:72
2178
+ msgid "Multiple Registration Forms"
2179
+ msgstr "Forskellige registreringsformularer"
2180
+
2181
+ #: ../admin/basic-info.php:145
2182
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
2183
+ msgstr "Opsæt forskellige registreringsformularer med forskellige felter tilpasset bestemte brugeroller. Indsaml forskelligt information fra forskellige brugertyper."
2184
+
2185
+ #: ../admin/basic-info.php:148 ../modules/modules.php:79
2186
+ msgid "Multiple Edit-profile Forms"
2187
+ msgstr "Forskellige profil redigerings formularer"
2188
+
2189
+ #: ../admin/basic-info.php:149
2190
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
2191
+ msgstr "Tillad forskellige brugerroller at redigere deres specifikke information. Opsæt forskellige profil redigerings formularer med forskellige felter tilpasset bestemte brugerroller."
2192
+
2193
+ #: ../admin/basic-info.php:173
2194
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
2195
+ msgstr " * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s."
2196
+
2197
+ #: ../admin/basic-info.php:174
2198
+ msgid "** only available in the %1$sPro version%2$s."
2199
+ msgstr "** kun tilgængelig i %1$sPro version%2$s."
2200
+
2201
+ #: ../admin/general-settings.php:42
2202
+ msgid "Load Profile Builder's own CSS file in the front-end:"
2203
+ msgstr "Brug Profile Builders egen CSS fil i 'front-end':"
2204
+
2205
+ #: ../admin/general-settings.php:45 ../admin/general-settings.php:58
2206
+ #: ../admin/general-settings.php:107
2207
+ #: ../modules/multiple-forms/register-forms.php:225
2208
+ #: ../modules/multiple-forms/register-forms.php:226
2209
+ #: ../modules/user-listing/userlisting.php:1303
2210
+ msgid "Yes"
2211
+ msgstr "Ja"
2212
+
2213
+ #: ../admin/general-settings.php:47
2214
+ msgid "You can find the default file here: %1$s"
2215
+ msgstr "Du kan finde default filen her: %1$s"
2216
+
2217
+ #: ../admin/general-settings.php:54
2218
+ msgid "\"Email Confirmation\" Activated:"
2219
+ msgstr "\"E-mail bekræftelse\" aktiveret:"
2220
+
2221
+ #: ../admin/general-settings.php:59 ../admin/general-settings.php:108
2222
+ #: ../modules/multiple-forms/register-forms.php:225
2223
+ #: ../modules/multiple-forms/register-forms.php:226
2224
+ msgid "No"
2225
+ msgstr "Nej"
2226
+
2227
+ #: ../admin/general-settings.php:64
2228
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
2229
+ msgstr "Du kan finde en liste over ubekræftede e-mail adresser %1$sUsers > All Users > Email Confirmation%2$s."
2230
+
2231
+ #: ../admin/general-settings.php:72
2232
+ msgid "\"Email Confirmation\" Landing Page:"
2233
+ msgstr "\"E-mail bekræftelse\" landings side:"
2234
+
2235
+ #: ../admin/general-settings.php:77
2236
+ msgid "Existing Pages"
2237
+ msgstr "Eksisterende sider"
2238
+
2239
+ #: ../admin/general-settings.php:92
2240
+ 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."
2241
+ msgstr "Angiv siden hvortil brugere bliver omdirigeret til når de bekræfter e-mail kontoen. Denne side kan være forskellig fra registrerings siden (siderne) og kan altid ændres. Hvis ingen er valgt vises der en simpel bekræftelsesside for brugeren."
2242
+
2243
+ #: ../admin/general-settings.php:103
2244
+ msgid "\"Admin Approval\" Activated:"
2245
+ msgstr "\"Administrator godkendelse\" aktiveret:"
2246
+
2247
+ #: ../admin/general-settings.php:111
2248
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
2249
+ msgstr "Du kan finde en liste med brugere på %1$sUsers > All Users > Admin Approval%2$s."
2250
+
2251
+ #: ../admin/general-settings.php:149
2252
+ msgid "\"Admin Approval\" Feature:"
2253
+ msgstr "\"Administrator godkendelse\" funktion:"
2254
+
2255
+ #: ../admin/general-settings.php:152
2256
+ 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."
2257
+ msgstr "Du bestemmer hvem der er bruger på dit website. Bliv informeret via e-mail eller godkend flere brugere samlet ('bulk') via WordPress UI. Aktiver 'Administrator godkendelse' ved at opgradere til %1$sHobbyist or PRO versions%2$s."
2258
+
2259
+ #: ../admin/general-settings.php:159
2260
+ msgid "Allow Users to Log in With:"
2261
+ msgstr "Tillad brugere at logge ind med:"
2262
+
2263
+ #: ../admin/general-settings.php:164 ../admin/manage-fields.php:159
2264
+ #: ../features/admin-approval/class-admin-approval.php:177
2265
+ #: ../features/email-confirmation/class-email-confirmation.php:167
2266
+ #: ../modules/custom-redirects/custom_redirects_admin.php:56
2267
+ #: ../modules/email-customizer/email-customizer.php:28
2268
+ #: ../modules/user-listing/userlisting.php:92
2269
+ #: ../modules/user-listing/userlisting.php:248
2270
+ #: ../modules/user-listing/userlisting.php:611
2271
+ #: ../modules/user-listing/userlisting.php:1259
2272
+ msgid "Username"
2273
+ msgstr "Brugernavn"
2274
+
2275
+ #: ../admin/general-settings.php:165 ../front-end/login.php:173
2276
+ #: ../modules/email-customizer/email-customizer.php:29
2277
+ #: ../modules/user-listing/userlisting.php:617
2278
+ #: ../modules/user-listing/userlisting.php:1260
2279
+ msgid "Email"
2280
+ msgstr "E-mail"
2281
+
2282
+ #: ../admin/general-settings.php:177
2283
+ msgid "Minimum Password Length:"
2284
+ msgstr "Min. længde på adgangskode:"
2285
+
2286
+ #: ../admin/general-settings.php:182
2287
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
2288
+ msgstr "Angiv minimum antallet af karakterer som adgangskoden skal bestå af. Lad feltet være tomt for ikke at have minimumsbegrænsning."
2289
+
2290
+ #: ../admin/general-settings.php:189
2291
+ msgid "Minimum Password Strength:"
2292
+ msgstr "Minimum styrke på adgangskode:"
2293
+
2294
+ #: ../admin/general-settings.php:193
2295
+ msgid "Disabled"
2296
+ msgstr "Deaktiver"
2297
+
2298
+ #: ../admin/manage-fields.php:12
2299
+ msgid "Manage Fields"
2300
+ msgstr "Håndter felter"
2301
+
2302
+ #: ../admin/manage-fields.php:13
2303
+ msgid "Manage Default and Extra Fields"
2304
+ msgstr "Håndter standard ('default') og ekstra felter"
2305
+
2306
+ #: ../admin/manage-fields.php:94
2307
+ msgid "Field Title"
2308
+ msgstr "Felt titel"
2309
+
2310
+ #: ../admin/manage-fields.php:94
2311
+ msgid "Title of the field"
2312
+ msgstr "Feltets titel"
2313
+
2314
+ #: ../admin/manage-fields.php:95
2315
+ #: ../modules/multiple-forms/edit-profile-forms.php:241
2316
+ #: ../modules/multiple-forms/register-forms.php:262
2317
+ msgid "Field"
2318
+ msgstr "Felt"
2319
+
2320
+ #: ../admin/manage-fields.php:96
2321
+ msgid "Meta-name"
2322
+ msgstr "Meta-navn"
2323
+
2324
+ #: ../admin/manage-fields.php:96
2325
+ 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"
2326
+ msgstr "Bruges i sammen med WordPress funktioner til at vise værdien på siden du vælger<br/> Udfyldes automatisk, men i visse tilfælde redigerbart (i sådanne tilfælde skal det være unikt)<br/>Ændring af dette kan take lang tid i tilfælde af et meget stort antal brugere."
2327
+
2328
+ #: ../admin/manage-fields.php:97
2329
+ #: ../modules/custom-redirects/custom_redirects_admin.php:65
2330
+ #: ../modules/custom-redirects/custom_redirects_admin.php:95
2331
+ #: ../modules/custom-redirects/custom_redirects_admin.php:114
2332
+ #: ../modules/custom-redirects/custom_redirects_admin.php:139
2333
+ #: ../modules/multiple-forms/edit-profile-forms.php:242
2334
+ #: ../modules/multiple-forms/register-forms.php:263
2335
+ msgid "ID"
2336
+ msgstr "ID"
2337
+
2338
+ #: ../admin/manage-fields.php:97
2339
+ #: ../modules/multiple-forms/edit-profile-forms.php:242
2340
+ #: ../modules/multiple-forms/register-forms.php:263
2341
+ 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"
2342
+ msgstr "En unik autogenereret ID for dette bestemte felt<br/>Du kan bruge dette sammen med filtre for at målrette dette element, hvis nødvendigt.<br/>Kan ikke redigeres "
2343
+
2344
+ #: ../admin/manage-fields.php:98
2345
+ msgid "Description"
2346
+ msgstr "Beskrivelse"
2347
+
2348
+ #: ../admin/manage-fields.php:98
2349
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
2350
+ msgstr "Angiv en (detaljeret) beskrivelse til slutbrugerne af muligheden<br/>Valgfri"
2351
+
2352
+ #: ../admin/manage-fields.php:99
2353
+ msgid "Row Count"
2354
+ msgstr "Række antal"
2355
+
2356
+ #: ../admin/manage-fields.php:99
2357
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
2358
+ msgstr "Angiv antallet af rækker i feltet 'Textarea'<br/>Hvis ikke angivet er default 5 rækker"
2359
+
2360
+ #: ../admin/manage-fields.php:100
2361
+ msgid "Allowed Image Extensions"
2362
+ msgstr "Tilladte billedformater ('extensions')"
2363
+
2364
+ #: ../admin/manage-fields.php:101
2365
+ msgid "Allowed Upload Extensions"
2366
+ msgstr "Tilladte upload formater ('extensions')"
2367
+
2368
+ #: ../admin/manage-fields.php:102
2369
+ msgid "Avatar Size"
2370
+ msgstr "Avatar størrelse"
2371
+
2372
+ #: ../admin/manage-fields.php:102
2373
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
2374
+ msgstr "Angiv en værdi (mellem 20 og 200) for størrelsen af 'Avatar'<br/>Hvis ikke angivet er default sat til 100"
2375
+
2376
+ #: ../admin/manage-fields.php:103
2377
+ msgid "Date-format"
2378
+ msgstr "Datoformat"
2379
+
2380
+ #: ../admin/manage-fields.php:103
2381
+ 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"
2382
+ msgstr "Angiv datoformatet når du bruge datovælger ('Datepicker')<br/>Gyldige formater: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Hvis ikke angivet er default sat til mm/dd/yy"
2383
+
2384
+ #: ../admin/manage-fields.php:104
2385
+ msgid "Terms of Agreement"
2386
+ msgstr "Aftalebetingelser"
2387
+
2388
+ #: ../admin/manage-fields.php:104
2389
+ 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;"
2390
+ msgstr "Angiv en detaljeret beskrivelse til brugerne af aftalebetingelserne.<br/>Link kan indsætte ved at anvende standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
2391
+
2392
+ #: ../admin/manage-fields.php:105
2393
+ msgid "Options"
2394
+ msgstr "Valgmuligheder"
2395
+
2396
+ #: ../admin/manage-fields.php:106
2397
+ msgid "Labels"
2398
+ msgstr "Labels"
2399
+
2400
+ #: ../admin/manage-fields.php:106
2401
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
2402
+ msgstr "Angiv et komme separeret liste med labels<br/>Synlig for brugeren"
2403
+
2404
+ #: ../admin/manage-fields.php:113
2405
+ msgid "Default Value"
2406
+ msgstr "Standard værdi"
2407
+
2408
+ #: ../admin/manage-fields.php:113
2409
+ msgid "Default value of the field"
2410
+ msgstr "Feltets standardværdi"
2411
+
2412
+ #: ../admin/manage-fields.php:114 ../admin/manage-fields.php:116
2413
+ #: ../admin/manage-fields.php:117
2414
+ msgid "Default Option"
2415
+ msgstr "Standard indstillingsvalg"
2416
+
2417
+ #: ../admin/manage-fields.php:114
2418
+ msgid "Specify the option which should be selected by default"
2419
+ msgstr "Angiv indstillingen som skal vælges som standard"
2420
+
2421
+ #: ../admin/manage-fields.php:115
2422
+ msgid "Default Option(s)"
2423
+ msgstr "Standard indstillingsvalg (flere)"
2424
+
2425
+ #: ../admin/manage-fields.php:115
2426
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
2427
+ msgstr "Angiv indstillingen som skal vælges som standard<br/>Hvis der er flere valgmuligheder, separer dem med ',' (et komma)"
2428
+
2429
+ #: ../admin/manage-fields.php:118
2430
+ msgid "Default Content"
2431
+ msgstr "Standard indhold"
2432
+
2433
+ #: ../admin/manage-fields.php:118
2434
+ msgid "Default value of the textarea"
2435
+ msgstr "Standard værdi for tekstområdet ('textarea')"
2436
+
2437
+ #: ../admin/manage-fields.php:119
2438
+ msgid "Required"
2439
+ msgstr "Krævet"
2440
+
2441
+ #: ../admin/manage-fields.php:119
2442
+ msgid "Whether the field is required or not"
2443
+ msgstr "Om feltet er krævet eller ikke"
2444
+
2445
+ #: ../admin/manage-fields.php:120
2446
+ msgid "Overwrite Existing"
2447
+ msgstr "Overskriv eksisterende"
2448
+
2449
+ #: ../admin/manage-fields.php:120
2450
+ 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"
2451
+ msgstr "Ved at vælge 'Ja' tilføjes feltet til listen, men vil overskrive ethvert andet felt i databasen som har det samme meta-navn<br/>Brug dette på eget ansvar"
2452
+
2453
+ #: ../admin/manage-fields.php:126
2454
+ msgid "Field Properties"
2455
+ msgstr "Felt indstillinger"
2456
+
2457
+ #: ../admin/manage-fields.php:139
2458
+ msgid "Registration & Edit Profile"
2459
+ msgstr "Registrering & ændre profil"
2460
+
2461
+ #: ../admin/manage-fields.php:158
2462
+ msgid "Name"
2463
+ msgstr "Navn"
2464
+
2465
+ #: ../admin/manage-fields.php:159
2466
+ msgid "Usernames cannot be changed."
2467
+ msgstr "Brugernavn kan ikke ændres"
2468
+
2469
+ #: ../admin/manage-fields.php:160
2470
+ msgid "First Name"
2471
+ msgstr "Fornavn"
2472
+
2473
+ #: ../admin/manage-fields.php:161
2474
+ msgid "Last Name"
2475
+ msgstr "Efternavn"
2476
+
2477
+ #: ../admin/manage-fields.php:162 ../modules/user-listing/userlisting.php:650
2478
+ msgid "Nickname"
2479
+ msgstr "Kælenavn"
2480
+
2481
+ #: ../admin/manage-fields.php:163
2482
+ msgid "Display name publicly as"
2483
+ msgstr "Vis navn offentligt som"
2484
+
2485
+ #: ../admin/manage-fields.php:164
2486
+ msgid "Contact Info"
2487
+ msgstr "Kontakt info"
2488
+
2489
+ #: ../admin/manage-fields.php:165
2490
+ #: ../features/admin-approval/class-admin-approval.php:180
2491
+ #: ../features/email-confirmation/class-email-confirmation.php:168
2492
+ #: ../modules/user-listing/userlisting.php:98
2493
+ msgid "E-mail"
2494
+ msgstr "E-mail"
2495
+
2496
+ #: ../admin/manage-fields.php:166
2497
+ #: ../modules/email-customizer/email-customizer.php:32
2498
+ #: ../modules/user-listing/userlisting.php:101
2499
+ #: ../modules/user-listing/userlisting.php:632
2500
+ #: ../modules/user-listing/userlisting.php:1261
2501
+ msgid "Website"
2502
+ msgstr "Website"
2503
+
2504
+ #: ../admin/manage-fields.php:170
2505
+ msgid "AIM"
2506
+ msgstr "AIM"
2507
+
2508
+ #: ../admin/manage-fields.php:171
2509
+ msgid "Yahoo IM"
2510
+ msgstr "Yahoo IM"
2511
+
2512
+ #: ../admin/manage-fields.php:172
2513
+ msgid "Jabber / Google Talk"
2514
+ msgstr "Jabber / Google Talk"
2515
+
2516
+ #: ../admin/manage-fields.php:175
2517
+ msgid "About Yourself"
2518
+ msgstr "Om dig selv"
2519
+
2520
+ #: ../admin/manage-fields.php:176 ../modules/user-listing/userlisting.php:104
2521
+ #: ../modules/user-listing/userlisting.php:635
2522
+ #: ../modules/user-listing/userlisting.php:1262
2523
+ msgid "Biographical Info"
2524
+ msgstr "Biografi info"
2525
+
2526
+ #: ../admin/manage-fields.php:176
2527
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2528
+ msgstr "Del en lille biografisk information for at fylde din profil ud. Dette kan blive vist offentligt."
2529
+
2530
+ #: ../admin/manage-fields.php:177 ../front-end/recover.php:75
2531
+ #: ../modules/email-customizer/email-customizer.php:30
2532
+ msgid "Password"
2533
+ msgstr "Kodeord"
2534
+
2535
+ #: ../admin/manage-fields.php:177
2536
+ msgid "Type your password."
2537
+ msgstr "Skriv din kodeord."
2538
+
2539
+ #: ../admin/manage-fields.php:178 ../front-end/recover.php:80
2540
+ msgid "Repeat Password"
2541
+ msgstr "Gentag dit kodeord"
2542
+
2543
+ #: ../admin/manage-fields.php:178
2544
+ msgid "Type your password again. "
2545
+ msgstr "Skriv dit kodeord igen."
2546
+
2547
+ #: ../admin/manage-fields.php:617 ../admin/manage-fields.php:761
2548
+ msgid "You must select a field\n"
2549
+ msgstr "Du skal vælge et felt\n"
2550
+
2551
+ #: ../admin/manage-fields.php:627
2552
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
2553
+ msgstr "Vælg venligst en anden felttype, da denne allerede eksistere i din formular. (skal være unik)\n"
2554
+
2555
+ #: ../admin/manage-fields.php:638
2556
+ msgid "The entered avatar size is not between 20 and 200\n"
2557
+ msgstr "Den indsatte avatar størrelse er ikke mellem 20 og 200\n"
2558
+
2559
+ #: ../admin/manage-fields.php:641
2560
+ msgid "The entered avatar size is not numerical\n"
2561
+ msgstr "Det indtastede rækkenummer er ikke nummereret\n"
2562
+
2563
+ #: ../admin/manage-fields.php:649
2564
+ msgid "The entered row number is not numerical\n"
2565
+ msgstr "Det indsatte række nummer er ikke nummeret\n"
2566
+
2567
+ #: ../admin/manage-fields.php:652
2568
+ msgid "You must enter a value for the row number\n"
2569
+ msgstr "Du skal indtaste en værdi for rækkenummeret\n"
2570
+
2571
+ #: ../admin/manage-fields.php:670
2572
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
2573
+ msgstr "Den indsatte værdi for datovælgeren er ikke korret datoformat\n"
2574
+
2575
+ #: ../admin/manage-fields.php:673
2576
+ msgid "You must enter a value for the date-format\n"
2577
+ msgstr "Du skal indskrive en værdi for datoformatet\n"
2578
+
2579
+ #: ../admin/manage-fields.php:701 ../admin/manage-fields.php:709
2580
+ #: ../admin/manage-fields.php:719
2581
+ msgid "That meta-name is already in use\n"
2582
+ msgstr "Det meta-navn er allerede i brug\n"
2583
+
2584
+ #: ../admin/manage-fields.php:741
2585
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
2586
+ msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s\n"
2587
+
2588
+ #: ../admin/manage-fields.php:745
2589
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
2590
+ msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s \n"
2591
+
2592
+ #: ../admin/manage-fields.php:768
2593
+ msgid "That field is already added in this form\n"
2594
+ msgstr "Det felt er allerede tilføjet denne formular\n"
2595
+
2596
+ #: ../admin/manage-fields.php:817
2597
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
2598
+ msgstr "<pre>titel</pre><pre>Type</pre><pre>Meta navn</pre><pre class=\"wppb-mb-head-required\">nødvendigt</pre>"
2599
+
2600
+ #: ../admin/manage-fields.php:817
2601
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2602
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:531
2603
+ #: ../features/admin-approval/class-admin-approval.php:119
2604
+ #: ../features/functions.php:654 ../features/functions.php:661
2605
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
2606
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
2607
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
2608
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
2609
+ #: ../modules/multiple-forms/multiple-forms.php:399
2610
+ msgid "Edit"
2611
+ msgstr "Rediger"
2612
+
2613
+ #: ../admin/manage-fields.php:817
2614
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2615
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:532
2616
+ #: ../features/admin-approval/class-admin-approval.php:124
2617
+ #: ../features/admin-approval/class-admin-approval.php:235
2618
+ #: ../features/email-confirmation/class-email-confirmation.php:120
2619
+ #: ../features/email-confirmation/class-email-confirmation.php:217
2620
+ #: ../features/functions.php:647 ../features/functions.php:661
2621
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
2622
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
2623
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
2624
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
2625
+ msgid "Delete"
2626
+ msgstr "Slet"
2627
+
2628
+ #: ../admin/manage-fields.php:832
2629
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
2630
+ msgstr "Benyt disse shortcodes på siden du vil have vist formularerne:"
2631
+
2632
+ #: ../admin/manage-fields.php:841
2633
+ 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."
2634
+ msgstr "Hvis du er interesseret i at vise forskellige felter på registrering og min profil formularerne, brug da venligst Multi registrering & min profil formular tilføjelser. "
2635
+
2636
+ #: ../admin/register-version.php:14
2637
+ msgid "Register Your Version"
2638
+ msgstr "Registrer din version"
2639
+
2640
+ #: ../admin/register-version.php:14
2641
+ msgid "Register Version"
2642
+ msgstr "Registrer version"
2643
+
2644
+ #: ../admin/register-version.php:70
2645
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
2646
+ msgstr "Hvis du registrere denne version af Profile Builder, så vil du modtage information vedrørende opgraderinger, patches og teknisk support."
2647
+
2648
+ #: ../admin/register-version.php:72
2649
+ msgid " Serial Number:"
2650
+ msgstr "Serie Nummer:"
2651
+
2652
+ #: ../admin/register-version.php:77
2653
+ msgid "The serial number was successfully validated!"
2654
+ msgstr "Serienummeret blev godkendt!"
2655
+
2656
+ #: ../admin/register-version.php:79
2657
+ msgid "The serial number entered couldn't be validated!"
2658
+ msgstr "Serienummeret som du har indsat er ikke korrekt!"
2659
+
2660
+ #: ../admin/register-version.php:83
2661
+ msgid "The serial number couldn't be validated because it expired!"
2662
+ msgstr "Serienummeret kunne ikke godkendes da det er udløbet!"
2663
+
2664
+ #: ../admin/register-version.php:85
2665
+ 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!"
2666
+ msgstr "Serienummeret kunne ikke valideres på grund af process time-out. Dette skyldes formentlig at serveren er nede. Venligst prøv igen senere!"
2667
+
2668
+ #: ../admin/register-version.php:87
2669
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2670
+ msgstr "(f.eks.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2671
+
2672
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2673
+ #: ../features/functions.php:661
2674
+ msgid "Content"
2675
+ msgstr "Indhold"
2676
+
2677
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:531
2678
+ msgid "Edit this item"
2679
+ msgstr "Rediger denne"
2680
+
2681
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:532
2682
+ msgid "Delete this item"
2683
+ msgstr "Slet denne"
2684
+
2685
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:700
2686
+ msgid "Please enter a value for the required field "
2687
+ msgstr "Venligst indsæt en værdi for feltet"
2688
+
2689
+ #: ../front-end/extra-fields/upload/upload.php:122
2690
+ msgid "Select File"
2691
+ msgstr ""
2692
+
2693
+ #: ../assets/lib/wck-api/fields/upload.php:43
2694
+ #: ../front-end/extra-fields/upload/upload.php:112
2695
+ msgid "Remove"
2696
+ msgstr "Fjern"
2697
+
2698
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1179
2699
+ msgid "Syncronize WCK"
2700
+ msgstr "Synkroniser WCK"
2701
+
2702
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1191
2703
+ msgid "Syncronize WCK Translation"
2704
+ msgstr "Synkroniser WCK oversættelse"
2705
+
2706
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
2707
+ msgid "You can add the information for the %s after you add a entry"
2708
+ msgstr "Du kan tilføje information for %s efter du har indsat en indtastning"
2709
+
2710
+ #: ../assets/lib/wck-api/fields/upload.php:75
2711
+ #: ../front-end/extra-fields/upload/upload.php:128
2712
+ msgid "Upload "
2713
+ msgstr "Upload"
2714
+
2715
+ #: ../features/class-list-table.php:184
2716
+ msgid "No items found."
2717
+ msgstr "Intet fundet."
2718
+
2719
+ #: ../features/class-list-table.php:308
2720
+ msgid "Bulk Actions"
2721
+ msgstr "Mængde aktion"
2722
+
2723
+ #: ../features/class-list-table.php:318
2724
+ msgid "Apply"
2725
+ msgstr "Tilføj"
2726
+
2727
+ #: ../features/class-list-table.php:402
2728
+ msgid "Show all dates"
2729
+ msgstr "Vis alle datoer"
2730
+
2731
+ #: ../features/class-list-table.php:415
2732
+ msgid "%1$s %2$d"
2733
+ msgstr "%1$s %2$d"
2734
+
2735
+ #: ../features/class-list-table.php:431
2736
+ msgid "List View"
2737
+ msgstr "Listevisning"
2738
+
2739
+ #: ../features/class-list-table.php:432
2740
+ msgid "Excerpt View"
2741
+ msgstr "Uddragsvisning"
2742
+
2743
+ #: ../features/class-list-table.php:458
2744
+ msgid "%s pending"
2745
+ msgstr "%s afventer"
2746
+
2747
+ #: ../features/class-list-table.php:566
2748
+ msgid "%1$s of %2$s"
2749
+ msgstr "%1$s of %2$s"
2750
+
2751
+ #: ../features/class-list-table.php:713
2752
+ msgid "Select All"
2753
+ msgstr "Vælg alt"
2754
+
2755
+ #: ../features/functions.php:297
2756
+ msgid "The user-validation has failed - the avatar was not deleted!"
2757
+ msgstr "Brugergodkendelsen er fejlet - Avatar blev ikke slettet!"
2758
+
2759
+ #: ../features/functions.php:308
2760
+ msgid "The user-validation has failed - the attachment was not deleted!"
2761
+ msgstr "Brugervalideringen er fejlet - avatar'en blev ikke slettet!"
2762
+
2763
+ #: ../features/functions.php:500
2764
+ msgid "Strength indicator"
2765
+ msgstr "Styrkeindikator"
2766
+
2767
+ #: ../features/admin-approval/admin-approval.php:7
2768
+ #: ../features/admin-approval/class-admin-approval.php:458
2769
+ msgid "Admin Approval"
2770
+ msgstr "Admin godkendelse"
2771
+
2772
+ #: ../features/admin-approval/admin-approval.php:21
2773
+ #: ../features/email-confirmation/email-confirmation.php:58
2774
+ msgid "Do you want to"
2775
+ msgstr "Vil du"
2776
+
2777
+ #: ../features/admin-approval/admin-approval.php:44
2778
+ msgid "Your session has expired! Please refresh the page and try again"
2779
+ msgstr "Din session er udløbet! Venligst opdater siden og prøv igen"
2780
+
2781
+ #: ../features/admin-approval/admin-approval.php:55
2782
+ msgid "User successfully approved!"
2783
+ msgstr "Bruger godkendt!"
2784
+
2785
+ #: ../features/admin-approval/admin-approval.php:63
2786
+ msgid "User successfully unapproved!"
2787
+ msgstr "Bruger ikke godkendt!"
2788
+
2789
+ #: ../features/admin-approval/admin-approval.php:69
2790
+ msgid "User successfully deleted!"
2791
+ msgstr "Bruger slettet!"
2792
+
2793
+ #: ../features/admin-approval/admin-approval.php:74
2794
+ #: ../features/admin-approval/admin-approval.php:118
2795
+ #: ../features/email-confirmation/email-confirmation.php:135
2796
+ msgid "You either don't have permission for that action or there was an error!"
2797
+ msgstr "Enten har du ikke tilladelse til dette eller der var en felj!"
2798
+
2799
+ #: ../features/admin-approval/admin-approval.php:85
2800
+ msgid "Your session has expired! Please refresh the page and try again."
2801
+ msgstr "Din session er udløbet! Opdater venligst siden og prøv igen."
2802
+
2803
+ #: ../features/admin-approval/admin-approval.php:97
2804
+ msgid "Users successfully approved!"
2805
+ msgstr "Brugere godkendt!"
2806
+
2807
+ #: ../features/admin-approval/admin-approval.php:106
2808
+ msgid "Users successfully unapproved!"
2809
+ msgstr "Brugere ikke godkendt med succes!"
2810
+
2811
+ #: ../features/admin-approval/admin-approval.php:114
2812
+ msgid "Users successfully deleted!"
2813
+ msgstr "Brugere slettet!"
2814
+
2815
+ #: ../features/admin-approval/admin-approval.php:134
2816
+ msgid "Your account on %1$s has been approved!"
2817
+ msgstr "Din konto på %1$s er blevet godkendt!"
2818
+
2819
+ #: ../features/admin-approval/admin-approval.php:135
2820
+ #: ../features/admin-approval/admin-approval.php:138
2821
+ msgid "approved"
2822
+ msgstr "godkendt"
2823
+
2824
+ #: ../features/admin-approval/admin-approval.php:137
2825
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
2826
+ msgstr "En administrator har netop godkendt din konto på %1$s (%2$s)."
2827
+
2828
+ #: ../features/admin-approval/admin-approval.php:142
2829
+ msgid "Your account on %1$s has been unapproved!"
2830
+ msgstr "Din konto på %1$s er blevet 'ikke-godkendt'!"
2831
+
2832
+ #: ../features/admin-approval/admin-approval.php:143
2833
+ #: ../features/admin-approval/admin-approval.php:146
2834
+ msgid "unapproved"
2835
+ msgstr "'ikke-godkendt'"
2836
+
2837
+ #: ../features/admin-approval/admin-approval.php:145
2838
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
2839
+ msgstr "En administrator har netop sat din konto til 'ikke-godkendt' på %1$s (%2$s)."
2840
+
2841
+ #: ../features/admin-approval/admin-approval.php:164
2842
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
2843
+ msgstr "<strong>ERROR</strong>: Din konto skal godkendes af en administrator før du kan logge ind."
2844
+
2845
+ #: ../features/admin-approval/admin-approval.php:176
2846
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
2847
+ msgstr "Din konto skal først være godkendt af en administrator før du kan bruge 'Genskab adgangskode'"
2848
+
2849
+ #: ../features/admin-approval/class-admin-approval.php:124
2850
+ msgid "delete this user?"
2851
+ msgstr "slet denne bruger?"
2852
+
2853
+ #: ../features/admin-approval/class-admin-approval.php:127
2854
+ msgid "unapprove this user?"
2855
+ msgstr "sæt denne bruge til 'ikke-godkendt'?"
2856
+
2857
+ #: ../features/admin-approval/class-admin-approval.php:127
2858
+ #: ../features/admin-approval/class-admin-approval.php:234
2859
+ msgid "Unapprove"
2860
+ msgstr "Ophæv godkendelsen"
2861
+
2862
+ #: ../features/admin-approval/class-admin-approval.php:129
2863
+ msgid "approve this user?"
2864
+ msgstr "godkend denne bruger?"
2865
+
2866
+ #: ../features/admin-approval/class-admin-approval.php:129
2867
+ #: ../features/admin-approval/class-admin-approval.php:233
2868
+ msgid "Approve"
2869
+ msgstr "Godkend"
2870
+
2871
+ #: ../features/admin-approval/class-admin-approval.php:178
2872
+ #: ../modules/user-listing/userlisting.php:249
2873
+ #: ../modules/user-listing/userlisting.php:623
2874
+ #: ../modules/user-listing/userlisting.php:1264
2875
+ msgid "Firstname"
2876
+ msgstr "Fornavn"
2877
+
2878
+ #: ../features/admin-approval/class-admin-approval.php:179
2879
+ #: ../modules/user-listing/userlisting.php:626
2880
+ #: ../modules/user-listing/userlisting.php:1265
2881
+ msgid "Lastname"
2882
+ msgstr "Efternavn"
2883
+
2884
+ #: ../features/admin-approval/class-admin-approval.php:181
2885
+ #: ../modules/user-listing/userlisting.php:124
2886
+ #: ../modules/user-listing/userlisting.php:250
2887
+ #: ../modules/user-listing/userlisting.php:653
2888
+ #: ../modules/user-listing/userlisting.php:1268
2889
+ msgid "Role"
2890
+ msgstr "Rolle"
2891
+
2892
+ #: ../features/admin-approval/class-admin-approval.php:182
2893
+ #: ../features/email-confirmation/class-email-confirmation.php:169
2894
+ msgid "Registered"
2895
+ msgstr "Registreret"
2896
+
2897
+ #: ../features/admin-approval/class-admin-approval.php:183
2898
+ msgid "User-status"
2899
+ msgstr "Brugerstatus"
2900
+
2901
+ #: ../features/admin-approval/class-admin-approval.php:263
2902
+ msgid "Do you want to bulk approve the selected users?"
2903
+ msgstr "Ønsker du at godkende de valgte brugere på én gang?"
2904
+
2905
+ #: ../features/admin-approval/class-admin-approval.php:271
2906
+ msgid "Do you want to bulk unapprove the selected users?"
2907
+ msgstr "Ønsker du at ophæve godkendelsen af de valgte brugere på én gang?"
2908
+
2909
+ #: ../features/admin-approval/class-admin-approval.php:277
2910
+ msgid "Do you want to bulk delete the selected users?"
2911
+ msgstr "Ønsker du at slette de valgte brugere på én gang?"
2912
+
2913
+ #: ../features/admin-approval/class-admin-approval.php:285
2914
+ #: ../features/email-confirmation/class-email-confirmation.php:278
2915
+ msgid "Sorry, but you don't have permission to do that!"
2916
+ msgstr "Beklager, men du har ikke rettighederne til at gøre dette!"
2917
+
2918
+ #: ../features/admin-approval/class-admin-approval.php:341
2919
+ msgid "Approved"
2920
+ msgstr "Godkendt"
2921
+
2922
+ #: ../features/admin-approval/class-admin-approval.php:343
2923
+ msgid "Unapproved"
2924
+ msgstr "Ikke godkendt"
2925
+
2926
+ #: ../features/admin-approval/class-admin-approval.php:461
2927
+ #: ../features/email-confirmation/class-email-confirmation.php:465
2928
+ msgid "All Users"
2929
+ msgstr "Alle brugere"
2930
+
2931
+ #: ../features/email-confirmation/class-email-confirmation.php:120
2932
+ msgid "delete this user from the _signups table?"
2933
+ msgstr "slet denne bruger fra tilmeldingstabellen (_signups table)?"
2934
+
2935
+ #: ../features/email-confirmation/class-email-confirmation.php:121
2936
+ msgid "confirm this email yourself?"
2937
+ msgstr "bekræft selv denne e-mail?"
2938
+
2939
+ #: ../features/email-confirmation/class-email-confirmation.php:121
2940
+ #: ../features/email-confirmation/class-email-confirmation.php:218
2941
+ msgid "Confirm Email"
2942
+ msgstr "Bekræft e-mail"
2943
+
2944
+ #: ../features/email-confirmation/class-email-confirmation.php:122
2945
+ msgid "resend the activation link?"
2946
+ msgstr "gen-send aktiveringslinket?"
2947
+
2948
+ #: ../features/email-confirmation/class-email-confirmation.php:122
2949
+ #: ../features/email-confirmation/class-email-confirmation.php:219
2950
+ msgid "Resend Activation Email"
2951
+ msgstr "Gen-send aktiverings e-mailen"
2952
+
2953
+ #: ../features/email-confirmation/class-email-confirmation.php:249
2954
+ msgid "%s couldn't be deleted"
2955
+ msgstr "%s kunne ikke slettes"
2956
+
2957
+ #: ../features/email-confirmation/class-email-confirmation.php:253
2958
+ msgid "All users have been successfully deleted"
2959
+ msgstr "Alle brugere er blevet slettet uden problemer"
2960
+
2961
+ #: ../features/email-confirmation/class-email-confirmation.php:263
2962
+ msgid "The selected users have been activated"
2963
+ msgstr "De valgte brugere er blevet aktiveret"
2964
+
2965
+ #: ../features/email-confirmation/class-email-confirmation.php:274
2966
+ msgid "The selected users have had their activation emails resent"
2967
+ msgstr "De valgte brugere har fået deres aktiverings e-mail gensendt"
2968
+
2969
+ #: ../features/email-confirmation/class-email-confirmation.php:462
2970
+ #: ../features/email-confirmation/email-confirmation.php:47
2971
+ msgid "Users with Unconfirmed Email Address"
2972
+ msgstr "Brugere med ubekræftede e-mail adresser"
2973
+
2974
+ #: ../features/email-confirmation/email-confirmation.php:110
2975
+ msgid "There was an error performing that action!"
2976
+ msgstr "Der opstod en fejl ved udførelsen af denne handling!"
2977
+
2978
+ #: ../features/email-confirmation/email-confirmation.php:118
2979
+ msgid "The selected user couldn't be deleted"
2980
+ msgstr "De valgte brugere kunne ikke slettes"
2981
+
2982
+ #: ../features/email-confirmation/email-confirmation.php:129
2983
+ msgid "Email notification resent to user"
2984
+ msgstr "E-mail besked er gensendt til bruger"
2985
+
2986
+ #: ../features/email-confirmation/email-confirmation.php:389
2987
+ msgid "[%1$s] Activate %2$s"
2988
+ msgstr "[%1$s] Aktivér %2$s"
2989
+
2990
+ #: ../features/email-confirmation/email-confirmation.php:433
2991
+ #: ../front-end/register.php:68
2992
+ msgid "Could not create user!"
2993
+ msgstr "Kunne ikke oprette bruger!"
2994
+
2995
+ #: ../features/email-confirmation/email-confirmation.php:436
2996
+ msgid "That username is already activated!"
2997
+ msgstr "Dette brugernavn er allerede i brug!"
2998
+
2999
+ #: ../features/email-confirmation/email-confirmation.php:457
3000
+ msgid "There was an error while trying to activate the user"
3001
+ msgstr "Der skete en fejl ved forsøg at aktivere brugeren"
3002
+
3003
+ #: ../features/email-confirmation/email-confirmation.php:505
3004
+ #: ../modules/email-customizer/admin-email-customizer.php:73
3005
+ msgid "A new subscriber has (been) registered!"
3006
+ msgstr "En ny abonnent ('subscriber') er blevet registreret!"
3007
+
3008
+ #: ../features/email-confirmation/email-confirmation.php:508
3009
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
3010
+ msgstr "Ny abonnent ('subscriber') %1$s.<br/><br/>Brugernavn:%2$s<br/>E-mail:%3$s<br/>"
3011
+
3012
+ #: ../features/email-confirmation/email-confirmation.php:615
3013
+ 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!"
3014
+ msgstr "\"Administrator godkendelses\" funktionen blev aktiveret på registreringstidspunktet, så vær venlig at huske at du skal godkende denne bruger før han/hun kan logge ind!"
3015
+
3016
+ #: ../features/email-confirmation/email-confirmation.php:557
3017
+ msgid "[%1$s] Your new account information"
3018
+ msgstr "[%1$s] Din nye konto information"
3019
+
3020
+ #: ../features/email-confirmation/email-confirmation.php:563
3021
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
3022
+ msgstr "Velkommen til %1$s!<br/><br/><br/>Dit brugernavn er:%2$s og adgangskoden er:%3$s"
3023
+
3024
+ #: ../features/email-confirmation/email-confirmation.php:623
3025
+ #: ../front-end/register.php:127
3026
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
3027
+ msgstr "Før du kan tilgå din konto skal en administrator først godkende det. Du bliver adviseret via a-mail."
3028
+
3029
+ #: ../features/login-widget/login-widget.php:10
3030
+ msgid "This login widget lets you add a login form in the sidebar."
3031
+ msgstr "Denne login widget gør det muligt for dig at tilføje en formular i din sidebar."
3032
+
3033
+ #: ../features/login-widget/login-widget.php:15
3034
+ msgid "Profile Builder Login Widget"
3035
+ msgstr "Profile Builder login widget"
3036
+
3037
+ #: ../front-end/class-formbuilder.php:348 ../front-end/login.php:205
3038
+ msgid "Register"
3039
+ msgstr "Registrer"
3040
+
3041
+ #: ../features/login-widget/login-widget.php:63
3042
+ msgid "Title:"
3043
+ msgstr "Titel:"
3044
+
3045
+ #: ../features/login-widget/login-widget.php:68
3046
+ msgid "After login redirect URL (optional):"
3047
+ msgstr "Efter login URL omdirigering (valgfri):"
3048
+
3049
+ #: ../features/login-widget/login-widget.php:73
3050
+ msgid "Register page URL (optional):"
3051
+ msgstr "Registrerings side URL (valgfri):"
3052
+
3053
+ #: ../features/login-widget/login-widget.php:78
3054
+ msgid "Password Recovery page URL (optional):"
3055
+ msgstr "Adgangskode genskabnings side URL (valgfri)"
3056
+
3057
+ #: ../features/upgrades/upgrades-functions.php:91
3058
+ #: ../features/upgrades/upgrades-functions.php:134
3059
+ msgid "The usernames cannot be changed."
3060
+ msgstr "Brugernavnene kan ikke ændres."
3061
+
3062
+ #: ../front-end/class-formbuilder.php:132
3063
+ msgid "Only an administrator can add new users."
3064
+ msgstr "Kun administrator kan tilføje nye brugere."
3065
+
3066
+ #: ../front-end/class-formbuilder.php:142
3067
+ msgid "Users can register themselves or you can manually create users here."
3068
+ msgstr "Brugere kan registrere sig selv eller du kan manuelt oprette brugere her."
3069
+
3070
+ #: ../front-end/class-formbuilder.php:145
3071
+ msgid "Users cannot currently register themselves, but you can manually create users here."
3072
+ msgstr "Brugere kan ikke i øjeblikket registrere sig selv, men du kan manuelt oprette brugere her."
3073
+
3074
+ #: ../front-end/class-formbuilder.php:167
3075
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
3076
+ msgstr "Du er i øjeblikket logget ind som %1s. Du har ikke brug for en anden konto. %2s"
3077
+
3078
+ #: ../front-end/class-formbuilder.php:167
3079
+ msgid "Log out of this account."
3080
+ msgstr "Log ud fra denne konto."
3081
+
3082
+ #: ../front-end/class-formbuilder.php:167
3083
+ msgid "Logout"
3084
+ msgstr "Log ud"
3085
+
3086
+ #: ../front-end/class-formbuilder.php:174
3087
+ msgid "You must be logged in to edit your profile."
3088
+ msgstr "Du skal være logget ind for at redigere din profil."
3089
+
3090
+ #: ../front-end/class-formbuilder.php:203
3091
+ msgid "here"
3092
+ msgstr "her"
3093
+
3094
+ #: ../front-end/class-formbuilder.php:205
3095
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3096
+ msgstr "Du vil snart blive omdirigeret automatisk. Hvis du ser denne side i mere end %1$d seconds, klik venligst %2$s.%3$s"
3097
+
3098
+ #: ../front-end/class-formbuilder.php:293
3099
+ #: ../front-end/class-formbuilder.php:300
3100
+ msgid "The account %1s has been successfully created!"
3101
+ msgstr "Kontoen %1s er oprettet uden problemer!"
3102
+
3103
+ #: ../front-end/class-formbuilder.php:296
3104
+ #: ../front-end/class-formbuilder.php:306
3105
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3106
+ msgstr "Før du kan tilgå din konto %1s, skal du bekræfte din e-mail adresse. Tjek venligst din indbakke og klik på aktiveringslinket."
3107
+
3108
+ #: ../front-end/class-formbuilder.php:302
3109
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3110
+ msgstr "Før du kan tilgå din konto %1s, skal en administrator godkende den. Du vil blive adviseret via e-mail."
3111
+
3112
+ #: ../front-end/class-formbuilder.php:316
3113
+ msgid "Your profile has been successfully updated!"
3114
+ msgstr "Din profil er blevet opdateret uden problemer!"
3115
+
3116
+ #: ../front-end/class-formbuilder.php:326
3117
+ msgid "There was an error in the submitted form"
3118
+ msgstr "Der var en fejl i den sendte formular. "
3119
+
3120
+ #: ../front-end/class-formbuilder.php:348
3121
+ msgid "Add User"
3122
+ msgstr "Tilføj bruger"
3123
+
3124
+ #: ../admin/add-ons.php:170 ../front-end/class-formbuilder.php:351
3125
+ msgid "Update"
3126
+ msgstr "Opdater"
3127
+
3128
+ #: ../front-end/class-formbuilder.php:401
3129
+ #: ../front-end/extra-fields/extra-fields.php:35
3130
+ msgid "The avatar was successfully deleted!"
3131
+ msgstr "'Avataren' blev slettet uden problemer."
3132
+
3133
+ #: ../front-end/class-formbuilder.php:401
3134
+ #: ../front-end/extra-fields/extra-fields.php:37
3135
+ msgid "The following attachment was successfully deleted:"
3136
+ msgstr "Følgende vedhæftning blev slettet uden problemer:"
3137
+
3138
+ #: ../front-end/class-formbuilder.php:413
3139
+ msgid "Send these credentials via email."
3140
+ msgstr "Send disse legitimationsoplysninger via e-mail."
3141
+
3142
+ #: ../front-end/extra-fields/extra-fields.php:99 ../front-end/login.php:92
3143
+ #: ../front-end/login.php:99 ../front-end/login.php:113
3144
+ #: ../front-end/recover.php:17 ../front-end/recover.php:228
3145
+ msgid "ERROR"
3146
+ msgstr "FEJL"
3147
+
3148
+ #: ../front-end/login.php:92
3149
+ msgid "The password you entered is incorrect."
3150
+ msgstr "Adgangskoden du angav er forkert."
3151
+
3152
+ #: ../front-end/login.php:93 ../front-end/login.php:100
3153
+ msgid "Password Lost and Found."
3154
+ msgstr "Adgangskode 'mistet og fundet'"
3155
+
3156
+ #: ../front-end/login.php:93 ../front-end/login.php:100
3157
+ msgid "Lost your password"
3158
+ msgstr "Mistet din adgangskode"
3159
+
3160
+ #: ../front-end/login.php:113
3161
+ msgid "Both fields are empty."
3162
+ msgstr "Begge felter er tomme."
3163
+
3164
+ #: ../front-end/login.php:254
3165
+ msgid "You are currently logged in as %1$s. %2$s"
3166
+ msgstr "Du er i øjeblikket logget ind som %1$s. %2$s"
3167
+
3168
+ #: ../front-end/login.php:253 ../front-end/logout.php:26
3169
+ msgid "Log out of this account"
3170
+ msgstr "Log ud af denne konto"
3171
+
3172
+ #: ../front-end/login.php:253
3173
+ msgid "Log out"
3174
+ msgstr "Log ud"
3175
+
3176
+ #: ../front-end/recover.php:17
3177
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
3178
+ msgstr "Din konto skal først godkendes af en administrator før du kan bruge \"Genskab adgangskode\""
3179
+
3180
+ #: ../front-end/recover.php:91
3181
+ msgid "Reset Password"
3182
+ msgstr "Genskab adgangskode"
3183
+
3184
+ #: ../front-end/recover.php:111
3185
+ msgid "Please enter your username or email address."
3186
+ msgstr "Venligst angiv dit brugernavn eller e-mail adresse."
3187
+
3188
+ #: ../front-end/recover.php:112
3189
+ msgid "You will receive a link to create a new password via email."
3190
+ msgstr "Du modtager et link via e-mail, så du kan oprette en ny adgangskode"
3191
+
3192
+ #: ../front-end/recover.php:119
3193
+ msgid "Username or E-mail"
3194
+ msgstr "Brugernavn eller e-mail"
3195
+
3196
+ #: ../front-end/recover.php:125
3197
+ msgid "Get New Password"
3198
+ msgstr "Anmod om ny adgangskode"
3199
+
3200
+ #: ../front-end/recover.php:166
3201
+ msgid "The username entered wasn't found in the database!"
3202
+ msgstr "Det angivne brugernavn blev ikke fundet i databasen!"
3203
+
3204
+ #: ../front-end/recover.php:166
3205
+ msgid "Please check that you entered the correct username."
3206
+ msgstr "Tjek venligst at du angav det korrekte brugernavn."
3207
+
3208
+ #: ../front-end/recover.php:181
3209
+ msgid "Check your e-mail for the confirmation link."
3210
+ msgstr "Tjek din e-mail for bekræftelseslink."
3211
+
3212
+ #: ../front-end/recover.php:216
3213
+ 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"
3214
+ msgstr "Nogen anmodede om at adgangskoden skulle genskabes for følgende konto: <b>%1$s</b><br/>Hvis dette var en fejltagelse, så se bare bort fra denne e-mail og intet vil ske. <br/>For at genskabe din adgangskode, følge dette link:%2$s"
3215
+
3216
+ #: ../front-end/recover.php:219
3217
+ msgid "Password Reset from \"%1$s\""
3218
+ msgstr "Adgangskode genskab fra \"%1$s\""
3219
+
3220
+ #: ../front-end/recover.php:228
3221
+ msgid "There was an error while trying to send the activation link to %1$s!"
3222
+ msgstr "Der opstod en fejl, da aktivireingslinket blev forsøgt sendt til %1$s!"
3223
+
3224
+ #: ../front-end/recover.php:188
3225
+ msgid "The email address entered wasn't found in the database!"
3226
+ msgstr "Den angivne e-mail adresse blev ikke fundet i databasen!"
3227
+
3228
+ #: ../front-end/recover.php:188
3229
+ msgid "Please check that you entered the correct email address."
3230
+ msgstr "Tjek venligst at du angav den korrekte e-mail adresse."
3231
+
3232
+ #: ../front-end/recover.php:256
3233
+ msgid "Your password has been successfully changed!"
3234
+ msgstr "Din adgangskode er ændret uden problemer!"
3235
+
3236
+ #: ../front-end/recover.php:275
3237
+ msgid "You have successfully reset your password to: %1$s"
3238
+ msgstr "Du har med succes genskabt din adgangskode til: %1$s"
3239
+
3240
+ #: ../front-end/recover.php:278 ../front-end/recover.php:292
3241
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
3242
+ msgstr "Adgangskoden ændret uden problemer for %1$s \"%2$s\""
3243
+
3244
+ #: ../front-end/recover.php:289
3245
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
3246
+ msgstr "%1$s har anmodet om ændring af adgangskoden via 'Genskab adgangskode'.<br/>Hans/hendes nye adgagnskode er:%2$s"
3247
+
3248
+ #: ../front-end/recover.php:308
3249
+ msgid "The entered passwords don't match!"
3250
+ msgstr "Den angivne adgangskode matcher ikke!"
3251
+
3252
+ #: ../front-end/recover.php:375
3253
+ msgid "ERROR:"
3254
+ msgstr "FEJL:"
3255
+
3256
+ #: ../front-end/recover.php:375
3257
+ msgid "Invalid key!"
3258
+ msgstr "Ugyldig nøgle!"
3259
+
3260
+ #: ../front-end/register.php:46
3261
+ msgid "Invalid activation key!"
3262
+ msgstr "Ugyldig aktiveringsnøgle!"
3263
+
3264
+ #: ../front-end/register.php:50
3265
+ msgid "This username is now active!"
3266
+ msgstr "Dette brugernavn er nu aktivt!"
3267
+
3268
+ #: ../front-end/register.php:71
3269
+ msgid "This username is already activated!"
3270
+ msgstr "Dette brugernavn er allerede aktiveret!"
3271
+
3272
+ #: ../front-end/register.php:126
3273
+ msgid "Your email was successfully confirmed."
3274
+ msgstr "Din e-mail blev bekræftet uden problemer."
3275
+
3276
+ #: ../front-end/register.php:159
3277
+ msgid "There was an error while trying to activate the user."
3278
+ msgstr "Der skete en fejl under forsøget på at aktivere brugeren."
3279
+
3280
+ #: ../front-end/default-fields/email/email.php:44
3281
+ msgid "The email you entered is not a valid email address."
3282
+ msgstr "E-mailen, som du angav, er ikke en gyldig e-mail adresse."
3283
+
3284
+ #: ../front-end/default-fields/email/email.php:57
3285
+ #: ../front-end/default-fields/email/email.php:64
3286
+ msgid "This email is already reserved to be used soon."
3287
+ msgstr "Denne e-mail er allerede reserveret til snart at blive anvendt."
3288
+
3289
+ #: ../front-end/default-fields/email/email.php:57
3290
+ #: ../front-end/default-fields/email/email.php:64
3291
+ #: ../front-end/default-fields/email/email.php:73
3292
+ #: ../front-end/default-fields/email/email.php:84
3293
+ #: ../front-end/default-fields/username/username.php:50
3294
+ #: ../front-end/default-fields/username/username.php:65
3295
+ msgid "Please try a different one!"
3296
+ msgstr "Venligst prøv en anden!"
3297
+
3298
+ #: ../front-end/default-fields/email/email.php:73
3299
+ #: ../front-end/default-fields/email/email.php:84
3300
+ msgid "This email is already in use."
3301
+ msgstr "Denne e-mail er allerede i brug."
3302
+
3303
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:37
3304
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:41
3305
+ msgid "The passwords do not match"
3306
+ msgstr "Adgangskoden matcher ikke"
3307
+
3308
+ #: ../front-end/default-fields/username/username.php:50
3309
+ msgid "This username already exists."
3310
+ msgstr "Dette brugernavn eksisterer allerede."
3311
+
3312
+ #: ../front-end/default-fields/username/username.php:65
3313
+ msgid "This username is already reserved to be used soon."
3314
+ msgstr "Dette brugernavn er allerede reserveret til snart at blive anvendt."
3315
+
3316
+ #: ../modules/user-listing/userlisting.php:247
3317
+ msgid "Avatar"
3318
+ msgstr "Avatar"
3319
+
3320
+ #: ../front-end/extra-fields/avatar/avatar.php:72
3321
+ #: ../front-end/extra-fields/checkbox/checkbox.php:45
3322
+ #: ../front-end/extra-fields/datepicker/datepicker.php:40
3323
+ #: ../front-end/extra-fields/input-hidden/input-hidden.php:34
3324
+ #: ../front-end/extra-fields/input/input.php:30
3325
+ #: ../front-end/extra-fields/radio/radio.php:44
3326
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:46
3327
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:44
3328
+ #: ../front-end/extra-fields/select/select.php:46
3329
+ #: ../front-end/extra-fields/textarea/textarea.php:30
3330
+ #: ../front-end/extra-fields/upload/upload.php:70
3331
+ #: ../front-end/extra-fields/wysiwyg/wysiwyg.php:33
3332
+ msgid "required"
3333
+ msgstr "krævet"
3334
+
3335
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
3336
+ msgid "To use reCAPTCHA you must get an API key from"
3337
+ msgstr "For at bruge 'reCAPTCHA' skal du først have en API nøgle fra"
3338
+
3339
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:131
3340
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
3341
+ msgstr "Af sikkerhedsmæssige grunde skal du angive 'remote' ip til 'reCAPTCHA'!"
3342
+
3343
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:192
3344
+ msgid "To use reCAPTCHA you must get an API public key from:"
3345
+ msgstr "For at bruge 'reCAPTCHA' skal du have en offentlig API nøgle fra:"
3346
+
3347
+ #: ../modules/modules.php:11 ../modules/modules.php:55
3348
+ msgid "Modules"
3349
+ msgstr "Moduler"
3350
+
3351
+ #: ../modules/modules.php:56
3352
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
3353
+ msgstr "Her kan du aktivere / deaktivere tilgængelige moduler i Profile Builder."
3354
+
3355
+ #: ../modules/modules.php:66
3356
+ msgid "Name/Description"
3357
+ msgstr "Navn/Beskrivelse"
3358
+
3359
+ #: ../modules/modules.php:67
3360
+ msgid "Status"
3361
+ msgstr "Status"
3362
+
3363
+ #: ../modules/modules.php:74 ../modules/modules.php:81
3364
+ #: ../modules/modules.php:88 ../modules/modules.php:95
3365
+ #: ../modules/modules.php:102 ../modules/modules.php:109
3366
+ msgid "Active"
3367
+ msgstr "Aktiv"
3368
+
3369
+ #: ../modules/modules.php:75 ../modules/modules.php:82
3370
+ #: ../modules/modules.php:89 ../modules/modules.php:96
3371
+ #: ../modules/modules.php:103 ../modules/modules.php:110
3372
+ msgid "Inactive"
3373
+ msgstr "Inaktiv"
3374
+
3375
+ #: ../modules/email-customizer/admin-email-customizer.php:11
3376
+ #: ../modules/email-customizer/admin-email-customizer.php:12
3377
+ #: ../modules/modules.php:93
3378
+ msgid "Admin Email Customizer"
3379
+ msgstr "Opsætning af administrator e-mails"
3380
+
3381
+ #: ../modules/email-customizer/user-email-customizer.php:11
3382
+ #: ../modules/email-customizer/user-email-customizer.php:12
3383
+ #: ../modules/modules.php:100
3384
+ msgid "User Email Customizer"
3385
+ msgstr "Opsætning af bruger e-mails"
3386
+
3387
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
3388
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
3389
+ msgid "Save"
3390
+ msgstr "Gem"
3391
+
3392
+ #: ../modules/multiple-forms/edit-profile-forms.php:202
3393
+ #: ../modules/multiple-forms/register-forms.php:226
3394
+ msgid "Redirect"
3395
+ msgstr "Omdiriger"
3396
+
3397
+ #: ../modules/multiple-forms/edit-profile-forms.php:204
3398
+ #: ../modules/multiple-forms/register-forms.php:228
3399
+ msgid "URL"
3400
+ msgstr "URL"
3401
+
3402
+ #: ../modules/email-customizer/admin-email-customizer.php:38
3403
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
3404
+ msgstr "Disse indstillinger bliver samtidig også gemt i \"Opsætning af bruger e-mails\" når de gemmes."
3405
+
3406
+ #: ../modules/email-customizer/admin-email-customizer.php:41
3407
+ #: ../modules/email-customizer/user-email-customizer.php:41
3408
+ msgid "From (name)"
3409
+ msgstr "Fra (navn)"
3410
+
3411
+ #: ../modules/email-customizer/admin-email-customizer.php:49
3412
+ #: ../modules/email-customizer/user-email-customizer.php:49
3413
+ msgid "From (reply-to email)"
3414
+ msgstr "Fra (svar-til e-mail)"
3415
+
3416
+ #: ../modules/email-customizer/admin-email-customizer.php:57
3417
+ #: ../modules/email-customizer/user-email-customizer.php:57
3418
+ msgid "Common Settings"
3419
+ msgstr "Fælles indstillinger"
3420
+
3421
+ #: ../modules/email-customizer/admin-email-customizer.php:60
3422
+ msgid ""
3423
+ "\n"
3424
+ "<p>New subscriber on {{site_name}}.</p>\n"
3425
+ "<p>Username:{{username}}</p>\n"
3426
+ "<p>E-mail:{{user_email}}</p>\n"
3427
+ msgstr ""
3428
+ "\n"
3429
+ "<p>Ny abonnent på {{site_name}}.</p>\n"
3430
+ "<p>Brugernavn:{{username}}</p>\n"
3431
+ "<p>E-mail:{{user_email}}</p>\n"
3432
+
3433
+ #: ../modules/email-customizer/admin-email-customizer.php:69
3434
+ #: ../modules/email-customizer/admin-email-customizer.php:99
3435
+ #: ../modules/email-customizer/admin-email-customizer.php:126
3436
+ #: ../modules/email-customizer/user-email-customizer.php:71
3437
+ #: ../modules/email-customizer/user-email-customizer.php:99
3438
+ #: ../modules/email-customizer/user-email-customizer.php:128
3439
+ #: ../modules/email-customizer/user-email-customizer.php:155
3440
+ #: ../modules/email-customizer/user-email-customizer.php:183
3441
+ #: ../modules/email-customizer/user-email-customizer.php:214
3442
+ #: ../modules/email-customizer/user-email-customizer.php:241
3443
+ msgid "Email Subject"
3444
+ msgstr "E-mail emne"
3445
+
3446
+ #: ../modules/email-customizer/admin-email-customizer.php:84
3447
+ msgid "Default Registration & Registration with Email Confirmation"
3448
+ msgstr "Standard registrering & registrering med e-mail bekræftelse"
3449
+
3450
+ #: ../modules/email-customizer/admin-email-customizer.php:87
3451
+ msgid ""
3452
+ "\n"
3453
+ "<p>New subscriber on {{site_name}}.</p>\n"
3454
+ "<p>Username:{{username}}</p>\n"
3455
+ "<p>E-mail:{{user_email}}</p>\n"
3456
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
3457
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
3458
+ msgstr ""
3459
+ "\n"
3460
+ "<p>Ny abonnent {{site_name}}.</p>\n"
3461
+ "<p>Brugernavn:{{username}}</p>\n"
3462
+ "<p>E-mail:{{user_email}}</p>\n"
3463
+ "<p>Administrator godkendelsesfunktione blev aktiveret på tidspunktet for registrering,\n"
3464
+ "så husk venligst at du skal godkende denne bruger før han/hun kan logge ind!</p>\n"
3465
+
3466
+ #: ../modules/email-customizer/admin-email-customizer.php:114
3467
+ #: ../modules/email-customizer/user-email-customizer.php:143
3468
+ msgid "Registration with Admin Approval"
3469
+ msgstr "Registrering med administrator godkendelse"
3470
+
3471
+ #: ../modules/email-customizer/email-customizer.php:7
3472
+ msgid "Available Tags"
3473
+ msgstr "Tilgængelige 'tags'"
3474
+
3475
+ #: ../features/email-confirmation/class-email-confirmation.php:91
3476
+ #: ../features/email-confirmation/class-email-confirmation.php:170
3477
+ #: ../modules/email-customizer/email-customizer.php:11
3478
+ msgid "User Meta"
3479
+ msgstr "Bruger 'meta'"
3480
+
3481
+ #: ../modules/email-customizer/email-customizer.php:21
3482
+ msgid "Site Url"
3483
+ msgstr "Site URL"
3484
+
3485
+ #: ../modules/email-customizer/email-customizer.php:22
3486
+ msgid "Site Name"
3487
+ msgstr "Site navn"
3488
+
3489
+ #: ../modules/email-customizer/email-customizer.php:25
3490
+ #: ../modules/user-listing/userlisting.php:133
3491
+ msgid "User Id"
3492
+ msgstr "Bruger ID"
3493
+
3494
+ #: ../modules/email-customizer/email-customizer.php:33
3495
+ msgid "Reply To"
3496
+ msgstr "Svar til"
3497
+
3498
+ #: ../modules/email-customizer/email-customizer.php:36
3499
+ msgid "Activation Key"
3500
+ msgstr "Aktiveringsnøgle"
3501
+
3502
+ #: ../modules/email-customizer/email-customizer.php:37
3503
+ msgid "Activation Url"
3504
+ msgstr "Aktiverings URL"
3505
+
3506
+ #: ../modules/email-customizer/email-customizer.php:38
3507
+ msgid "Activation Link"
3508
+ msgstr "Aktiveringslink"
3509
+
3510
+ #: ../modules/email-customizer/user-email-customizer.php:64
3511
+ msgid ""
3512
+ "\n"
3513
+ "<h3>Welcome to {{site_name}}!</h3>\n"
3514
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3515
+ msgstr ""
3516
+ "\n"
3517
+ "<h3>Velkommen til {{site_name}}!</h3>\n"
3518
+ "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
3519
+
3520
+ #: ../modules/email-customizer/user-email-customizer.php:85
3521
+ msgid "Default Registration"
3522
+ msgstr "Standard registrering"
3523
+
3524
+ #: ../modules/email-customizer/user-email-customizer.php:91
3525
+ msgid ""
3526
+ "\n"
3527
+ "<p>To activate your user, please click the following link:<br/>\n"
3528
+ "{{{activation_link}}}</p>\n"
3529
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
3530
+ msgstr ""
3531
+ "\n"
3532
+ "<p>For at aktivere din bruger klik venligst på følgende link:<br/>\n"
3533
+ "{{{activation_link}}}</p>\n"
3534
+ "<p>Efter du aktiverer vil du modtage endnu en e-mail med dine legitimationsoplysninger.</p>\n"
3535
+
3536
+ #: ../modules/email-customizer/user-email-customizer.php:103
3537
+ msgid "[{{site_name}}] Activate {{username}}"
3538
+ msgstr "[{{site_name}}] Aktivér {{username}}"
3539
+
3540
+ #: ../modules/email-customizer/user-email-customizer.php:114
3541
+ msgid "Registration with Email Confirmation"
3542
+ msgstr "Registrering med e-mail bekræftelse"
3543
+
3544
+ #: ../modules/email-customizer/user-email-customizer.php:120
3545
+ msgid ""
3546
+ "\n"
3547
+ "<h3>Welcome to {{site_name}}!</h3>\n"
3548
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3549
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
3550
+ msgstr ""
3551
+ "\n"
3552
+ "<h3>Velkommen til {{site_name}}!</h3>\n"
3553
+ "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
3554
+ "<p>Før du kan tilgå din konto skal en administrator først godkende den. Du vil yderligere besked via e-mail.</p>\n"
3555
+
3556
+ #: ../modules/email-customizer/user-email-customizer.php:132
3557
+ msgid "A new account has been created for you on {{site_name}}"
3558
+ msgstr "En ny konto er blevet oprettet til dig {{site_name}}"
3559
+
3560
+ #: ../modules/email-customizer/user-email-customizer.php:148
3561
+ msgid ""
3562
+ "\n"
3563
+ "<h3>Good News!</h3>\n"
3564
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
3565
+ msgstr ""
3566
+ "\n"
3567
+ "<h3>Gode nyheder!</h3>\n"
3568
+ "<p>En administrator har netop godkendt din konto: {{username}} på {{site_name}}.</p>\n"
3569
+
3570
+ #: ../modules/email-customizer/user-email-customizer.php:159
3571
+ msgid "Your account on {{site_name}} has been approved!"
3572
+ msgstr "Din konto på {{site_name}} er blevet godkendt!"
3573
+
3574
+ #: ../modules/email-customizer/user-email-customizer.php:170
3575
+ msgid "User Approval Notification"
3576
+ msgstr "Meddelelse om brugergodkendelse"
3577
+
3578
+ #: ../modules/email-customizer/user-email-customizer.php:175
3579
+ msgid ""
3580
+ "\n"
3581
+ "<h3>Hello,</h3>\n"
3582
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
3583
+ msgstr ""
3584
+ "\n"
3585
+ "<h3>Hej,</h3>\n"
3586
+ "<p>En administrator har desværre ophævet godkendelsen af din konto: {{username}} på {{site_name}}.</p>\n"
3587
+
3588
+ #: ../modules/email-customizer/user-email-customizer.php:187
3589
+ msgid "Your account on {{site_name}} has been unapproved!"
3590
+ msgstr "Din konto {{site_name}} er ikke længere godkendt!"
3591
+
3592
+ #: ../modules/email-customizer/user-email-customizer.php:198
3593
+ msgid "Unapproved User Notification"
3594
+ msgstr "Meddelelse om ophævelse af brugerkonto"
3595
+
3596
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
3597
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
3598
+ msgid "Edit-profile Form"
3599
+ msgstr "Formular til profilredigering"
3600
+
3601
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
3602
+ #: ../modules/multiple-forms/register-forms.php:13
3603
+ #: ../modules/user-listing/userlisting.php:13
3604
+ msgid "Add New"
3605
+ msgstr "Tilføj ny"
3606
+
3607
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
3608
+ msgid "Add new Edit-profile Form"
3609
+ msgstr "Tilføj ny formular til profilredigering"
3610
+
3611
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
3612
+ msgid "Edit the Edit-profile Forms"
3613
+ msgstr "Rediger profilredigerings formularer"
3614
+
3615
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
3616
+ msgid "New Edit-profile Form"
3617
+ msgstr "Ny profilredigerings formular"
3618
+
3619
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
3620
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
3621
+ msgid "Edit-profile Forms"
3622
+ msgstr "Profilredigerings formularer"
3623
+
3624
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
3625
+ msgid "View the Edit-profile Form"
3626
+ msgstr "Vis profilredigerings formular"
3627
+
3628
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
3629
+ msgid "Search the Edit-profile Forms"
3630
+ msgstr "Søg profilredigerings formularer"
3631
+
3632
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
3633
+ msgid "No Edit-profile Form found"
3634
+ msgstr "Ingen profilredigerings formular fundet"
3635
+
3636
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
3637
+ msgid "No Edit-profile Forms found in trash"
3638
+ msgstr "Ingen profilredigerings formular fundet i papirkurven"
3639
+
3640
+ #: ../modules/multiple-forms/edit-profile-forms.php:131
3641
+ #: ../modules/multiple-forms/register-forms.php:134
3642
+ #: ../modules/user-listing/userlisting.php:1155
3643
+ msgid "Shortcode"
3644
+ msgstr "'Shortcode'"
3645
+
3646
+ #: ../modules/multiple-forms/edit-profile-forms.php:151
3647
+ #: ../modules/multiple-forms/register-forms.php:155
3648
+ #: ../modules/user-listing/userlisting.php:1176
3649
+ msgid "(no title)"
3650
+ msgstr "(ingen titel)"
3651
+
3652
+ #: ../modules/multiple-forms/edit-profile-forms.php:171
3653
+ #: ../modules/multiple-forms/register-forms.php:174
3654
+ #: ../modules/user-listing/userlisting.php:1196
3655
+ msgid "The shortcode will be available after you publish this form."
3656
+ msgstr "'Shortcode' er tilgængelig efter du har publiceret denne formular."
3657
+
3658
+ #: ../modules/multiple-forms/edit-profile-forms.php:173
3659
+ #: ../modules/multiple-forms/register-forms.php:176
3660
+ #: ../modules/user-listing/userlisting.php:1198
3661
+ msgid "Use this shortcode on the page you want the form to be displayed:"
3662
+ msgstr "Brug denne 'shortcode' på den side du ønsker formularen vist:"
3663
+
3664
+ #: ../modules/multiple-forms/edit-profile-forms.php:177
3665
+ #: ../modules/multiple-forms/register-forms.php:180
3666
+ #: ../modules/user-listing/userlisting.php:1202
3667
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
3668
+ msgstr "<span style=\"color:red;\">Bemærk:</span> ændring af denne formulars titel ændrer også 'shortcode'!"
3669
+
3670
+ #: ../modules/multiple-forms/edit-profile-forms.php:183
3671
+ #: ../modules/multiple-forms/register-forms.php:186
3672
+ #: ../modules/user-listing/userlisting.php:1235
3673
+ msgid "Form Shortcode"
3674
+ msgstr "Formular 'shortcode'"
3675
+
3676
+ #: ../modules/multiple-forms/edit-profile-forms.php:202
3677
+ #: ../modules/multiple-forms/register-forms.php:226
3678
+ msgid "Whether to redirect the user to a specific page or not"
3679
+ msgstr "Hvorvidt brugeren skal omdirigeres til en bestemt side eller ikke"
3680
+
3681
+ #: ../modules/multiple-forms/edit-profile-forms.php:203
3682
+ #: ../modules/multiple-forms/register-forms.php:227
3683
+ msgid "Display Messages"
3684
+ msgstr "Vis meddelelser"
3685
+
3686
+ #: ../modules/multiple-forms/edit-profile-forms.php:203
3687
+ #: ../modules/multiple-forms/register-forms.php:227
3688
+ msgid "Allowed time to display any success messages (in seconds)"
3689
+ msgstr "Tilladt visningstid (i sekunder) for alle problemfrie meddelelser"
3690
+
3691
+ #: ../modules/multiple-forms/edit-profile-forms.php:204
3692
+ 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"
3693
+ msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de opdaterer deres profil fra denne formular<br/>Brug følgende format: http://www.mysite.com"
3694
+
3695
+ #: ../modules/multiple-forms/edit-profile-forms.php:211
3696
+ msgid "After Profile Update..."
3697
+ msgstr "Efter profilopdatering..."
3698
+
3699
+ #: ../modules/multiple-forms/edit-profile-forms.php:237
3700
+ #: ../modules/multiple-forms/register-forms.php:258
3701
+ msgid "Add New Field to the List"
3702
+ msgstr "Tilføj nyt felt til listen"
3703
+
3704
+ #: ../modules/multiple-forms/edit-profile-forms.php:241
3705
+ #: ../modules/multiple-forms/register-forms.php:262
3706
+ msgid "Choose one of the supported fields you manage <a href=\""
3707
+ msgstr "Vælg en af de understøttede felter som du administrerer <a href=\""
3708
+
3709
+ #: ../modules/multiple-forms/multiple-forms.php:399
3710
+ msgid "<pre>Title (Type)</pre>"
3711
+ msgstr "<pre>Titel (Type)</pre>"
3712
+
3713
+ #: ../modules/multiple-forms/multiple-forms.php:215
3714
+ msgid "You need to specify the title of the form before creating it"
3715
+ msgstr "Du skal specificere formularens titel før du opretter den"
3716
+
3717
+ #: ../modules/multiple-forms/register-forms.php:11
3718
+ #: ../modules/multiple-forms/register-forms.php:12
3719
+ msgid "Registration Form"
3720
+ msgstr "Registreringsformular"
3721
+
3722
+ #: ../modules/multiple-forms/register-forms.php:14
3723
+ msgid "Add new Registration Form"
3724
+ msgstr "Tilføj ny registreringsformular"
3725
+
3726
+ #: ../modules/multiple-forms/register-forms.php:15
3727
+ msgid "Edit the Registration Forms"
3728
+ msgstr "Rediger registreringsformularer"
3729
+
3730
+ #: ../modules/multiple-forms/register-forms.php:16
3731
+ msgid "New Registration Form"
3732
+ msgstr "Ny registreringsformular"
3733
+
3734
+ #: ../modules/multiple-forms/register-forms.php:17
3735
+ #: ../modules/multiple-forms/register-forms.php:23
3736
+ msgid "Registration Forms"
3737
+ msgstr "Registreringsformularer"
3738
+
3739
+ #: ../modules/multiple-forms/register-forms.php:18
3740
+ msgid "View the Registration Form"
3741
+ msgstr "Vis registrerinsformularen"
3742
+
3743
+ #: ../modules/multiple-forms/register-forms.php:19
3744
+ msgid "Search the Registration Forms"
3745
+ msgstr "Søg registreringsformularer"
3746
+
3747
+ #: ../modules/multiple-forms/register-forms.php:20
3748
+ msgid "No Registration Form found"
3749
+ msgstr "Ingen registreringsformular funder"
3750
+
3751
+ #: ../modules/multiple-forms/register-forms.php:21
3752
+ msgid "No Registration Forms found in trash"
3753
+ msgstr "Ingen registreringsformularer fundet i papirkurven"
3754
+
3755
+ #: ../modules/multiple-forms/register-forms.php:215
3756
+ msgid "Default Role"
3757
+ msgstr "Standard rolle"
3758
+
3759
+ #: ../modules/multiple-forms/register-forms.php:224
3760
+ msgid "Set Role"
3761
+ msgstr "Indstil rolle"
3762
+
3763
+ #: ../modules/multiple-forms/register-forms.php:224
3764
+ 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"
3765
+ msgstr "Vælg hvilken rolle brugeren får efter han/hun har registreret sig<br/>Hvis ikke specificeret, anvendes rollen der er sat som 'default' i WordPress indstillingerne"
3766
+
3767
+ #: ../modules/multiple-forms/register-forms.php:225
3768
+ msgid "Automatically Log In"
3769
+ msgstr "Automatisk log ind"
3770
+
3771
+ #: ../modules/multiple-forms/register-forms.php:225
3772
+ 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"
3773
+ msgstr "Hvorvidt nyligt registrerede brugere skal logges automatisk ind eller ikke<br/>Virker kun på 'single-sites' hvor \"Administrator godkendelse\" og \"E-mail bekræftelse\" ikke er aktiveret<br/>ADVARSEL: 'Caching' af registreringsformularer vil bevirke, at den automatiske log ind funktion ikke vil fungere"
3774
+
3775
+ #: ../modules/multiple-forms/register-forms.php:228
3776
+ 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"
3777
+ msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de er registreret via denne formular.<br/>Brug følgende format: http://www.mysite.com"
3778
+
3779
+ #: ../modules/multiple-forms/register-forms.php:234
3780
+ msgid "After Registration..."
3781
+ msgstr "Efter registrering..."
3782
+
3783
+ #: ../modules/user-listing/class-userlisting.php:470
3784
+ #: ../modules/user-listing/userlisting.php:724
3785
+ #: ../modules/user-listing/userlisting.php:968
3786
+ #: ../modules/user-listing/userlisting.php:1011
3787
+ #: ../modules/user-listing/userlisting.php:1355
3788
+ msgid "Search Users by All Fields"
3789
+ msgstr "Søg brugere ved at bruge 'Alle felter'"
3790
+
3791
+ #: ../modules/user-listing/userlisting.php:14
3792
+ msgid "Add new User Listing"
3793
+ msgstr "Tilføj ny brugeroversigt"
3794
+
3795
+ #: ../modules/user-listing/userlisting.php:15
3796
+ msgid "Edit the User Listing"
3797
+ msgstr "Rediger brugeroversigten"
3798
+
3799
+ #: ../modules/user-listing/userlisting.php:16
3800
+ msgid "New User Listing"
3801
+ msgstr "Ny brugeroversigt"
3802
+
3803
+ #: ../modules/user-listing/userlisting.php:18
3804
+ msgid "View the User Listing"
3805
+ msgstr "Vis brugeroversigten"
3806
+
3807
+ #: ../modules/user-listing/userlisting.php:19
3808
+ msgid "Search the User Listing"
3809
+ msgstr "Søg i brugeroversigt"
3810
+
3811
+ #: ../modules/user-listing/userlisting.php:20
3812
+ msgid "No User Listing found"
3813
+ msgstr "Ingen brugeroversigt fundet"
3814
+
3815
+ #: ../modules/user-listing/userlisting.php:21
3816
+ msgid "No User Listing found in trash"
3817
+ msgstr "Ingen brugeroversigt fundet i papirkurven"
3818
+
3819
+ #: ../modules/user-listing/userlisting.php:95
3820
+ msgid "Display name as"
3821
+ msgstr "Vis navn som"
3822
+
3823
+ #: ../modules/user-listing/userlisting.php:125
3824
+ #: ../modules/user-listing/userlisting.php:1263
3825
+ msgid "Registration Date"
3826
+ msgstr "Registreringsdato"
3827
+
3828
+ #: ../modules/user-listing/userlisting.php:126
3829
+ #: ../modules/user-listing/userlisting.php:1267
3830
+ msgid "Number of Posts"
3831
+ msgstr "Antal poster"
3832
+
3833
+ #: ../modules/user-listing/userlisting.php:130
3834
+ msgid "More Info"
3835
+ msgstr "Mere info"
3836
+
3837
+ #: ../modules/user-listing/userlisting.php:131
3838
+ msgid "More Info Url"
3839
+ msgstr "Mere info URL"
3840
+
3841
+ #: ../modules/user-listing/userlisting.php:132
3842
+ msgid "Avatar or Gravatar"
3843
+ msgstr "Avatar eller Gravatar"
3844
+
3845
+ #: ../modules/user-listing/userlisting.php:161
3846
+ msgid "Meta Variables"
3847
+ msgstr "Meta variabler"
3848
+
3849
+ #: ../modules/user-listing/userlisting.php:167
3850
+ msgid "Sort Variables"
3851
+ msgstr "Sortér variabler"
3852
+
3853
+ #: ../modules/user-listing/userlisting.php:171
3854
+ #: ../modules/user-listing/userlisting.php:198
3855
+ msgid "Extra Functions"
3856
+ msgstr "Ekstra funktioner"
3857
+
3858
+ #: ../modules/user-listing/userlisting.php:173
3859
+ msgid "Pagination"
3860
+ msgstr "Sideopdeling"
3861
+
3862
+ #: ../modules/user-listing/userlisting.php:174
3863
+ msgid "Search all Fields"
3864
+ msgstr "Søg 'Alle felter'"
3865
+
3866
+ #: ../modules/user-listing/userlisting.php:200
3867
+ msgid "Go Back Link"
3868
+ msgstr "Tilbage link"
3869
+
3870
+ #: ../modules/user-listing/userlisting.php:218
3871
+ msgid "All-userlisting Template"
3872
+ msgstr "Skabelon for flere-brugeroversigt"
3873
+
3874
+ #: ../modules/user-listing/userlisting.php:221
3875
+ msgid "Single-userlisting Template"
3876
+ msgstr "Skabelon for enkelt-brugeroversigt"
3877
+
3878
+ #: ../modules/user-listing/userlisting.php:614
3879
+ msgid "First/Lastname"
3880
+ msgstr "For-/Efternavn"
3881
+
3882
+ #: ../modules/user-listing/userlisting.php:252
3883
+ #: ../modules/user-listing/userlisting.php:620
3884
+ msgid "Sign-up Date"
3885
+ msgstr "Tilmeldingsdato"
3886
+
3887
+ #: ../modules/user-listing/userlisting.php:629
3888
+ #: ../modules/user-listing/userlisting.php:1266
3889
+ msgid "Display Name"
3890
+ msgstr "Vis navn som"
3891
+
3892
+ #: ../modules/user-listing/userlisting.php:251
3893
+ #: ../modules/user-listing/userlisting.php:638
3894
+ msgid "Posts"
3895
+ msgstr "Poster"
3896
+
3897
+ #: ../modules/user-listing/userlisting.php:641
3898
+ #: ../modules/user-listing/userlisting.php:1272
3899
+ msgid "Aim"
3900
+ msgstr "'Aim'"
3901
+
3902
+ #: ../modules/user-listing/userlisting.php:644
3903
+ #: ../modules/user-listing/userlisting.php:1273
3904
+ msgid "Yim"
3905
+ msgstr "'Yim'"
3906
+
3907
+ #: ../modules/user-listing/userlisting.php:647
3908
+ #: ../modules/user-listing/userlisting.php:1274
3909
+ msgid "Jabber"
3910
+ msgstr "'Jabber'"
3911
+
3912
+ #: ../modules/user-listing/userlisting.php:827
3913
+ msgid "Click here to see more information about this user"
3914
+ msgstr "Klik her for at se mere information om denne bruger"
3915
+
3916
+ #: ../modules/user-listing/userlisting.php:827
3917
+ msgid "More..."
3918
+ msgstr "Mere..."
3919
+
3920
+ #: ../modules/user-listing/userlisting.php:830
3921
+ msgid "Click here to see more information about this user."
3922
+ msgstr "Klik her for at se mere information om denne bruger."
3923
+
3924
+ #: ../modules/user-listing/userlisting.php:922
3925
+ #: ../modules/user-listing/userlisting.php:925
3926
+ msgid "Click here to go back"
3927
+ msgstr "Klik her for at gå tilbage"
3928
+
3929
+ #: ../modules/user-listing/userlisting.php:922
3930
+ msgid "Back"
3931
+ msgstr "Tilbage"
3932
+
3933
+ #: ../modules/user-listing/userlisting.php:955
3934
+ msgid "&laquo;&laquo; First"
3935
+ msgstr "&laquo;&laquo; Først"
3936
+
3937
+ #: ../modules/user-listing/userlisting.php:956
3938
+ msgid "&laquo; Prev"
3939
+ msgstr "&laquo; Forrige"
3940
+
3941
+ #: ../modules/user-listing/userlisting.php:957
3942
+ msgid "Next &raquo; "
3943
+ msgstr "Næste &raquo; "
3944
+
3945
+ #: ../modules/user-listing/userlisting.php:958
3946
+ msgid "Last &raquo;&raquo;"
3947
+ msgstr "Sidste &raquo;&raquo;"
3948
+
3949
+ #: ../modules/user-listing/userlisting.php:987
3950
+ msgid "You don't have any pagination settings on this userlisting!"
3951
+ msgstr "Du har ingen sideopdeling (paginering) på denne brugeroversigt!"
3952
+
3953
+ #: ../modules/user-listing/userlisting.php:1028
3954
+ msgid "Search"
3955
+ msgstr "Søg"
3956
+
3957
+ #: ../modules/user-listing/userlisting.php:1029
3958
+ msgid "Clear Results"
3959
+ msgstr "Ryd resultatet"
3960
+
3961
+ #: ../modules/user-listing/userlisting.php:1205
3962
+ #: ../modules/user-listing/userlisting.php:1209
3963
+ msgid "Extra shortcode parameters"
3964
+ msgstr "Ekstra 'shortcode' parametre"
3965
+
3966
+ #: ../modules/user-listing/userlisting.php:1212
3967
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
3968
+ msgstr "viser brugere med en bestemt meta-værdi inden for et bestemt (ekstra) meta-felt"
3969
+
3970
+ #: ../modules/user-listing/userlisting.php:1213
3971
+ msgid "Example:"
3972
+ msgstr "Eksempel:"
3973
+
3974
+ #: ../modules/user-listing/userlisting.php:1215
3975
+ msgid "Remember though, that the field-value combination must exist in the database."
3976
+ msgstr "Husk dog, at feltværdi kombinationen skal eksistere i databasen."
3977
+
3978
+ #: ../modules/user-listing/userlisting.php:1284
3979
+ msgid "Random (very slow on large databases > 10K user)"
3980
+ msgstr "Vilkårlig (meget langsom på store databaser > 10K brugere)"
3981
+
3982
+ #: ../modules/user-listing/userlisting.php:1297
3983
+ msgid "Roles to Display"
3984
+ msgstr "Roller der skal vises"
3985
+
3986
+ #: ../modules/user-listing/userlisting.php:1297
3987
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
3988
+ msgstr "Begræns brugeroversigter til kun at omfatte disse udvalgte roller<br/>Hvis ikke specificeret, så bruges alle eksisterende roller"
3989
+
3990
+ #: ../modules/user-listing/userlisting.php:1298
3991
+ msgid "Number of Users/Page"
3992
+ msgstr "Antal brugere/side"
3993
+
3994
+ #: ../modules/user-listing/userlisting.php:1299
3995
+ msgid "Default Sorting Criteria"
3996
+ msgstr "Standard sorteringskriterie"
3997
+
3998
+ #: ../modules/user-listing/userlisting.php:1299
3999
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
4000
+ msgstr "Sæt standard sorteringskriteriet<br/>Denne kan ændres midlertidigt for hver ny session"
4001
+
4002
+ #: ../modules/user-listing/userlisting.php:1300
4003
+ msgid "Default Sorting Order"
4004
+ msgstr "Standard sorteringsorden"
4005
+
4006
+ #: ../modules/user-listing/userlisting.php:1300
4007
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
4008
+ msgstr "Sæt standard sorteringsorden<br/>Denne kan ændres midlertidigt for hver ny session"
4009
+
4010
+ #: ../modules/user-listing/userlisting.php:1301
4011
+ msgid "Avatar Size (All-userlisting)"
4012
+ msgstr "Avatar størrelse (Flere-brugeroversigt)"
4013
+
4014
+ #: ../modules/user-listing/userlisting.php:1301
4015
+ msgid "Set the avatar size on the all-userlisting only"
4016
+ msgstr "Sæt avatar størrelsen på kun flere-brugeroversigten "
4017
+
4018
+ #: ../modules/user-listing/userlisting.php:1302
4019
+ msgid "Avatar Size (Single-userlisting)"
4020
+ msgstr "Avatar størrelse (enkelt-brugeroversigt)"
4021
+
4022
+ #: ../modules/user-listing/userlisting.php:1302
4023
+ msgid "Set the avatar size on the single-userlisting only"
4024
+ msgstr "Sæt avatar størrelsen på kun enkelt-brugeroversigten"
4025
+
4026
+ #: ../modules/user-listing/userlisting.php:1303
4027
+ msgid "Visible only to logged in users?"
4028
+ msgstr "Synlig kun for brugere, der er logget ind?"
4029
+
4030
+ #: ../modules/user-listing/userlisting.php:1303
4031
+ msgid "The userlisting will only be visible only to the logged in users"
4032
+ msgstr "Brugeroversigten vil kun være synlig for brugere, der er logget ind"
4033
+
4034
+ #: ../modules/user-listing/userlisting.php:1304
4035
+ msgid "Visible to following Roles"
4036
+ msgstr "Synlig for følgende roller"
4037
+
4038
+ #: ../modules/user-listing/userlisting.php:1304
4039
+ msgid "The userlisting will only be visible to the following roles"
4040
+ msgstr "Brugeroversigten vil kun være synlig for følgende roller"
4041
+
4042
+ #: ../modules/user-listing/userlisting.php:1310
4043
+ msgid "Userlisting Settings"
4044
+ msgstr "Opsætning af brugeroversigt"
4045
+
4046
+ #: ../modules/user-listing/userlisting.php:1331
4047
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
4048
+ msgstr "Du skal aktivere brugeroversigts funktionen inde på fanen \"Moduler\"!"
4049
+
4050
+ #: ../modules/user-listing/userlisting.php:1331
4051
+ msgid "You can find it in the Profile Builder menu."
4052
+ msgstr "Du kan finde det i Profile Builder menuen."
4053
+
4054
+ #: ../modules/user-listing/userlisting.php:1494
4055
+ msgid "No results found!"
4056
  msgstr "Ingen resultater fundet!"
translation/profile-builder-de_DE.mo CHANGED
Binary file
translation/profile-builder-de_DE.po CHANGED
@@ -1,3828 +1,4046 @@
1
- # Translation of Profile Builder in German
2
- # This file is distributed under the same license as the Profile Builder package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2015-09-29 11:50:16+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
- #: ../admin/admin-functions.php:40
14
- msgid "Display name publicly as - only appears on the Edit Profile page!"
15
- msgstr ""
16
-
17
- #: ../admin/basic-info.php:37
18
- msgid "Friction-less login using %s shortcode or a widget."
19
- msgstr ""
20
-
21
- #: ../admin/basic-info.php:41
22
- msgid "Beautiful registration forms fully customizable using the %s shortcode."
23
- msgstr ""
24
-
25
- #: ../admin/basic-info.php:45
26
- msgid "Straight forward edit profile forms using %s shortcode."
27
- msgstr ""
28
-
29
- #: ../admin/basic-info.php:58
30
- msgid "Allow users to recover their password in the front-end using the %s."
31
- msgstr ""
32
-
33
- #: ../admin/basic-info.php:130
34
- msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
35
- msgstr ""
36
-
37
- #: ../admin/general-settings.php:125
38
- msgid "\"Admin Approval\" on User Role:"
39
- msgstr ""
40
-
41
- #: ../admin/general-settings.php:144
42
- msgid "Select on what user roles to activate Admin Approval."
43
- msgstr ""
44
-
45
- #: ../admin/manage-fields.php:109
46
- msgid "Display on PB forms"
47
- msgstr ""
48
-
49
- #: ../admin/manage-fields.php:109
50
- msgid "PB Login"
51
- msgstr ""
52
-
53
- #: ../admin/manage-fields.php:109
54
- msgid "PB Register"
55
- msgstr ""
56
-
57
- #: ../admin/manage-fields.php:109
58
- msgid "PB Recover Password"
59
- msgstr ""
60
-
61
- #: ../admin/manage-fields.php:109
62
- msgid "Select on which Profile Builder forms to display reCAPTCHA"
63
- msgstr ""
64
-
65
- #: ../admin/manage-fields.php:110
66
- msgid "Display on default WP forms"
67
- msgstr ""
68
-
69
- #: ../admin/manage-fields.php:110
70
- msgid "Default WP Login"
71
- msgstr ""
72
-
73
- #: ../admin/manage-fields.php:110
74
- msgid "Default WP Register"
75
- msgstr ""
76
-
77
- #: ../admin/manage-fields.php:110
78
- msgid "Default WP Recover Password"
79
- msgstr ""
80
-
81
- #: ../admin/manage-fields.php:110
82
- msgid "Select on which default WP forms to display reCAPTCHA"
83
- msgstr ""
84
-
85
- #: ../admin/manage-fields.php:116 ../admin/manage-fields.php:117
86
- msgid "Default option of the field"
87
- msgstr ""
88
-
89
- #: ../admin/manage-fields.php:237
90
- msgid "Afghanistan"
91
- msgstr "Afghanistan"
92
-
93
- #: ../admin/manage-fields.php:238
94
- msgid "Aland Islands"
95
- msgstr "Aland Islands"
96
-
97
- #: ../admin/manage-fields.php:239
98
- msgid "Albania"
99
- msgstr "Albania"
100
-
101
- #: ../admin/manage-fields.php:240
102
- msgid "Algeria"
103
- msgstr "Algeria"
104
-
105
- #: ../admin/manage-fields.php:241
106
- msgid "American Samoa"
107
- msgstr "American Samoa"
108
-
109
- #: ../admin/manage-fields.php:242
110
- msgid "Andorra"
111
- msgstr "Andorra"
112
-
113
- #: ../admin/manage-fields.php:243
114
- msgid "Angola"
115
- msgstr "Angola"
116
-
117
- #: ../admin/manage-fields.php:244
118
- msgid "Anguilla"
119
- msgstr "Anguilla"
120
-
121
- #: ../admin/manage-fields.php:245
122
- msgid "Antarctica"
123
- msgstr "Antarctica"
124
-
125
- #: ../admin/manage-fields.php:246
126
- msgid "Antigua and Barbuda"
127
- msgstr "Antigua and Barbuda"
128
-
129
- #: ../admin/manage-fields.php:247
130
- msgid "Argentina"
131
- msgstr "Argentina"
132
-
133
- #: ../admin/manage-fields.php:248
134
- msgid "Armenia"
135
- msgstr "Armenia"
136
-
137
- #: ../admin/manage-fields.php:249
138
- msgid "Aruba"
139
- msgstr "Aruba"
140
-
141
- #: ../admin/manage-fields.php:250
142
- msgid "Australia"
143
- msgstr "Australia"
144
-
145
- #: ../admin/manage-fields.php:251
146
- msgid "Austria"
147
- msgstr "Austria"
148
-
149
- #: ../admin/manage-fields.php:252
150
- msgid "Azerbaijan"
151
- msgstr "Azerbaijan"
152
-
153
- #: ../admin/manage-fields.php:253
154
- msgid "Bahamas"
155
- msgstr "Bahamas"
156
-
157
- #: ../admin/manage-fields.php:254
158
- msgid "Bahrain"
159
- msgstr "Bahrain"
160
-
161
- #: ../admin/manage-fields.php:255
162
- msgid "Bangladesh"
163
- msgstr "Bangladesh"
164
-
165
- #: ../admin/manage-fields.php:256
166
- msgid "Barbados"
167
- msgstr "Barbados"
168
-
169
- #: ../admin/manage-fields.php:257
170
- msgid "Belarus"
171
- msgstr "Belarus"
172
-
173
- #: ../admin/manage-fields.php:258
174
- msgid "Belgium"
175
- msgstr "Belgium"
176
-
177
- #: ../admin/manage-fields.php:259
178
- msgid "Belize"
179
- msgstr "Belize"
180
-
181
- #: ../admin/manage-fields.php:260
182
- msgid "Benin"
183
- msgstr "Benin"
184
-
185
- #: ../admin/manage-fields.php:261
186
- msgid "Bermuda"
187
- msgstr "Bermuda"
188
-
189
- #: ../admin/manage-fields.php:262
190
- msgid "Bhutan"
191
- msgstr "Bhutan"
192
-
193
- #: ../admin/manage-fields.php:263
194
- msgid "Bolivia"
195
- msgstr "Bolivia"
196
-
197
- #: ../admin/manage-fields.php:264
198
- msgid "Bonaire, Saint Eustatius and Saba"
199
- msgstr "Bonaire, Saint Eustatius and Saba"
200
-
201
- #: ../admin/manage-fields.php:265
202
- msgid "Bosnia and Herzegovina"
203
- msgstr "Bosnia and Herzegovina"
204
-
205
- #: ../admin/manage-fields.php:266
206
- msgid "Botswana"
207
- msgstr "Botswana"
208
-
209
- #: ../admin/manage-fields.php:267
210
- msgid "Bouvet Island"
211
- msgstr "Bouvet Island"
212
-
213
- #: ../admin/manage-fields.php:268
214
- msgid "Brazil"
215
- msgstr "Brazil"
216
-
217
- #: ../admin/manage-fields.php:269
218
- msgid "British Indian Ocean Territory"
219
- msgstr "British Indian Ocean Territory"
220
-
221
- #: ../admin/manage-fields.php:270
222
- msgid "British Virgin Islands"
223
- msgstr "British Virgin Islands"
224
-
225
- #: ../admin/manage-fields.php:271
226
- msgid "Brunei"
227
- msgstr "Brunei"
228
-
229
- #: ../admin/manage-fields.php:272
230
- msgid "Bulgaria"
231
- msgstr "Bulgaria"
232
-
233
- #: ../admin/manage-fields.php:273
234
- msgid "Burkina Faso"
235
- msgstr "Burkina Faso"
236
-
237
- #: ../admin/manage-fields.php:274
238
- msgid "Burundi"
239
- msgstr "Burundi"
240
-
241
- #: ../admin/manage-fields.php:275
242
- msgid "Cambodia"
243
- msgstr "Cambodia"
244
-
245
- #: ../admin/manage-fields.php:276
246
- msgid "Cameroon"
247
- msgstr "Cameroon"
248
-
249
- #: ../admin/manage-fields.php:277
250
- msgid "Canada"
251
- msgstr "Canada"
252
-
253
- #: ../admin/manage-fields.php:278
254
- msgid "Cape Verde"
255
- msgstr "Cape Verde"
256
-
257
- #: ../admin/manage-fields.php:279
258
- msgid "Cayman Islands"
259
- msgstr "Cayman Islands"
260
-
261
- #: ../admin/manage-fields.php:280
262
- msgid "Central African Republic"
263
- msgstr "Central African Republic"
264
-
265
- #: ../admin/manage-fields.php:281
266
- msgid "Chad"
267
- msgstr "Chad"
268
-
269
- #: ../admin/manage-fields.php:282
270
- msgid "Chile"
271
- msgstr "Chile"
272
-
273
- #: ../admin/manage-fields.php:283
274
- msgid "China"
275
- msgstr "China"
276
-
277
- #: ../admin/manage-fields.php:284
278
- msgid "Christmas Island"
279
- msgstr "Christmas Island"
280
-
281
- #: ../admin/manage-fields.php:285
282
- msgid "Cocos Islands"
283
- msgstr "Cocos Islands"
284
-
285
- #: ../admin/manage-fields.php:286
286
- msgid "Colombia"
287
- msgstr "Colombia"
288
-
289
- #: ../admin/manage-fields.php:287
290
- msgid "Comoros"
291
- msgstr "Comoros"
292
-
293
- #: ../admin/manage-fields.php:288
294
- msgid "Cook Islands"
295
- msgstr "Cook Islands"
296
-
297
- #: ../admin/manage-fields.php:289
298
- msgid "Costa Rica"
299
- msgstr "Costa Rica"
300
-
301
- #: ../admin/manage-fields.php:290
302
- msgid "Croatia"
303
- msgstr "Croatia"
304
-
305
- #: ../admin/manage-fields.php:291
306
- msgid "Cuba"
307
- msgstr "Cuba"
308
-
309
- #: ../admin/manage-fields.php:292
310
- msgid "Curacao"
311
- msgstr "Curacao"
312
-
313
- #: ../admin/manage-fields.php:293
314
- msgid "Cyprus"
315
- msgstr "Cyprus"
316
-
317
- #: ../admin/manage-fields.php:294
318
- msgid "Czech Republic"
319
- msgstr "Czech Republic"
320
-
321
- #: ../admin/manage-fields.php:295
322
- msgid "Democratic Republic of the Congo"
323
- msgstr "Democratic Republic of the Congo"
324
-
325
- #: ../admin/manage-fields.php:296
326
- msgid "Denmark"
327
- msgstr "Denmark"
328
-
329
- #: ../admin/manage-fields.php:297
330
- msgid "Djibouti"
331
- msgstr "Djibouti"
332
-
333
- #: ../admin/manage-fields.php:298
334
- msgid "Dominica"
335
- msgstr "Dominica"
336
-
337
- #: ../admin/manage-fields.php:299
338
- msgid "Dominican Republic"
339
- msgstr "Dominican Republic"
340
-
341
- #: ../admin/manage-fields.php:300
342
- msgid "East Timor"
343
- msgstr "East Timor"
344
-
345
- #: ../admin/manage-fields.php:301
346
- msgid "Ecuador"
347
- msgstr "Ecuador"
348
-
349
- #: ../admin/manage-fields.php:302
350
- msgid "Egypt"
351
- msgstr "Egypt"
352
-
353
- #: ../admin/manage-fields.php:303
354
- msgid "El Salvador"
355
- msgstr "El Salvador"
356
-
357
- #: ../admin/manage-fields.php:304
358
- msgid "Equatorial Guinea"
359
- msgstr "Equatorial Guinea"
360
-
361
- #: ../admin/manage-fields.php:305
362
- msgid "Eritrea"
363
- msgstr "Eritrea"
364
-
365
- #: ../admin/manage-fields.php:306
366
- msgid "Estonia"
367
- msgstr "Estonia"
368
-
369
- #: ../admin/manage-fields.php:307
370
- msgid "Ethiopia"
371
- msgstr "Ethiopia"
372
-
373
- #: ../admin/manage-fields.php:308
374
- msgid "Falkland Islands"
375
- msgstr "Falkland Islands"
376
-
377
- #: ../admin/manage-fields.php:309
378
- msgid "Faroe Islands"
379
- msgstr "Faroe Islands"
380
-
381
- #: ../admin/manage-fields.php:310
382
- msgid "Fiji"
383
- msgstr "Fiji"
384
-
385
- #: ../admin/manage-fields.php:311
386
- msgid "Finland"
387
- msgstr "Finland"
388
-
389
- #: ../admin/manage-fields.php:312
390
- msgid "France"
391
- msgstr "France"
392
-
393
- #: ../admin/manage-fields.php:313
394
- msgid "French Guiana"
395
- msgstr "French Guiana"
396
-
397
- #: ../admin/manage-fields.php:314
398
- msgid "French Polynesia"
399
- msgstr "French Polynesia"
400
-
401
- #: ../admin/manage-fields.php:315
402
- msgid "French Southern Territories"
403
- msgstr "French Southern Territories"
404
-
405
- #: ../admin/manage-fields.php:316
406
- msgid "Gabon"
407
- msgstr "Gabon"
408
-
409
- #: ../admin/manage-fields.php:317
410
- msgid "Gambia"
411
- msgstr "Gambia"
412
-
413
- #: ../admin/manage-fields.php:318
414
- msgid "Georgia"
415
- msgstr "Georgia"
416
-
417
- #: ../admin/manage-fields.php:319
418
- msgid "Germany"
419
- msgstr "Germany"
420
-
421
- #: ../admin/manage-fields.php:320
422
- msgid "Ghana"
423
- msgstr "Ghana"
424
-
425
- #: ../admin/manage-fields.php:321
426
- msgid "Gibraltar"
427
- msgstr "Gibraltar"
428
-
429
- #: ../admin/manage-fields.php:322
430
- msgid "Greece"
431
- msgstr "Greece"
432
-
433
- #: ../admin/manage-fields.php:323
434
- msgid "Greenland"
435
- msgstr "Greenland"
436
-
437
- #: ../admin/manage-fields.php:324
438
- msgid "Grenada"
439
- msgstr "Grenada"
440
-
441
- #: ../admin/manage-fields.php:325
442
- msgid "Guadeloupe"
443
- msgstr "Guadeloupe"
444
-
445
- #: ../admin/manage-fields.php:326
446
- msgid "Guam"
447
- msgstr "Guam"
448
-
449
- #: ../admin/manage-fields.php:327
450
- msgid "Guatemala"
451
- msgstr "Guatemala"
452
-
453
- #: ../admin/manage-fields.php:328
454
- msgid "Guernsey"
455
- msgstr "Guernsey"
456
-
457
- #: ../admin/manage-fields.php:329
458
- msgid "Guinea"
459
- msgstr "Guinea"
460
-
461
- #: ../admin/manage-fields.php:330
462
- msgid "Guinea-Bissau"
463
- msgstr "Guinea-Bissau"
464
-
465
- #: ../admin/manage-fields.php:331
466
- msgid "Guyana"
467
- msgstr "Guyana"
468
-
469
- #: ../admin/manage-fields.php:332
470
- msgid "Haiti"
471
- msgstr "Haiti"
472
-
473
- #: ../admin/manage-fields.php:333
474
- msgid "Heard Island and McDonald Islands"
475
- msgstr "Heard Island and McDonald Islands"
476
-
477
- #: ../admin/manage-fields.php:334
478
- msgid "Honduras"
479
- msgstr "Honduras"
480
-
481
- #: ../admin/manage-fields.php:335
482
- msgid "Hong Kong"
483
- msgstr "Hong Kong"
484
-
485
- #: ../admin/manage-fields.php:336
486
- msgid "Hungary"
487
- msgstr "Hungary"
488
-
489
- #: ../admin/manage-fields.php:337
490
- msgid "Iceland"
491
- msgstr "Iceland"
492
-
493
- #: ../admin/manage-fields.php:338
494
- msgid "India"
495
- msgstr "India"
496
-
497
- #: ../admin/manage-fields.php:339
498
- msgid "Indonesia"
499
- msgstr "Indonesia"
500
-
501
- #: ../admin/manage-fields.php:340
502
- msgid "Iran"
503
- msgstr "Iran"
504
-
505
- #: ../admin/manage-fields.php:341
506
- msgid "Iraq"
507
- msgstr "Iraq"
508
-
509
- #: ../admin/manage-fields.php:342
510
- msgid "Ireland"
511
- msgstr "Ireland"
512
-
513
- #: ../admin/manage-fields.php:343
514
- msgid "Isle of Man"
515
- msgstr "Isle of Man"
516
-
517
- #: ../admin/manage-fields.php:344
518
- msgid "Israel"
519
- msgstr "Israel"
520
-
521
- #: ../admin/manage-fields.php:345
522
- msgid "Italy"
523
- msgstr "Italy"
524
-
525
- #: ../admin/manage-fields.php:346
526
- msgid "Ivory Coast"
527
- msgstr "Ivory Coast"
528
-
529
- #: ../admin/manage-fields.php:347
530
- msgid "Jamaica"
531
- msgstr "Jamaica"
532
-
533
- #: ../admin/manage-fields.php:348
534
- msgid "Japan"
535
- msgstr "Japan"
536
-
537
- #: ../admin/manage-fields.php:349
538
- msgid "Jersey"
539
- msgstr "Jersey"
540
-
541
- #: ../admin/manage-fields.php:350
542
- msgid "Jordan"
543
- msgstr "Jordan"
544
-
545
- #: ../admin/manage-fields.php:351
546
- msgid "Kazakhstan"
547
- msgstr "Kazakhstan"
548
-
549
- #: ../admin/manage-fields.php:352
550
- msgid "Kenya"
551
- msgstr "Kenya"
552
-
553
- #: ../admin/manage-fields.php:353
554
- msgid "Kiribati"
555
- msgstr "Kiribati"
556
-
557
- #: ../admin/manage-fields.php:354
558
- msgid "Kosovo"
559
- msgstr "Kosovo"
560
-
561
- #: ../admin/manage-fields.php:355
562
- msgid "Kuwait"
563
- msgstr "Kuwait"
564
-
565
- #: ../admin/manage-fields.php:356
566
- msgid "Kyrgyzstan"
567
- msgstr "Kyrgyzstan"
568
-
569
- #: ../admin/manage-fields.php:357
570
- msgid "Laos"
571
- msgstr "Laos"
572
-
573
- #: ../admin/manage-fields.php:358
574
- msgid "Latvia"
575
- msgstr "Latvia"
576
-
577
- #: ../admin/manage-fields.php:359
578
- msgid "Lebanon"
579
- msgstr "Lebanon"
580
-
581
- #: ../admin/manage-fields.php:360
582
- msgid "Lesotho"
583
- msgstr "Lesotho"
584
-
585
- #: ../admin/manage-fields.php:361
586
- msgid "Liberia"
587
- msgstr "Liberia"
588
-
589
- #: ../admin/manage-fields.php:362
590
- msgid "Libya"
591
- msgstr "Libya"
592
-
593
- #: ../admin/manage-fields.php:363
594
- msgid "Liechtenstein"
595
- msgstr "Liechtenstein"
596
-
597
- #: ../admin/manage-fields.php:364
598
- msgid "Lithuania"
599
- msgstr "Lithuania"
600
-
601
- #: ../admin/manage-fields.php:365
602
- msgid "Luxembourg"
603
- msgstr "Luxembourg"
604
-
605
- #: ../admin/manage-fields.php:366
606
- msgid "Macao"
607
- msgstr "Macao"
608
-
609
- #: ../admin/manage-fields.php:367
610
- msgid "Macedonia"
611
- msgstr "Macedonia"
612
-
613
- #: ../admin/manage-fields.php:368
614
- msgid "Madagascar"
615
- msgstr "Madagascar"
616
-
617
- #: ../admin/manage-fields.php:369
618
- msgid "Malawi"
619
- msgstr "Malawi"
620
-
621
- #: ../admin/manage-fields.php:370
622
- msgid "Malaysia"
623
- msgstr "Malaysia"
624
-
625
- #: ../admin/manage-fields.php:371
626
- msgid "Maldives"
627
- msgstr "Maldives"
628
-
629
- #: ../admin/manage-fields.php:372
630
- msgid "Mali"
631
- msgstr "Mali"
632
-
633
- #: ../admin/manage-fields.php:373
634
- msgid "Malta"
635
- msgstr "Malta"
636
-
637
- #: ../admin/manage-fields.php:374
638
- msgid "Marshall Islands"
639
- msgstr "Marshall Islands"
640
-
641
- #: ../admin/manage-fields.php:375
642
- msgid "Martinique"
643
- msgstr "Martinique"
644
-
645
- #: ../admin/manage-fields.php:376
646
- msgid "Mauritania"
647
- msgstr "Mauritania"
648
-
649
- #: ../admin/manage-fields.php:377
650
- msgid "Mauritius"
651
- msgstr "Mauritius"
652
-
653
- #: ../admin/manage-fields.php:378
654
- msgid "Mayotte"
655
- msgstr "Mayotte"
656
-
657
- #: ../admin/manage-fields.php:379
658
- msgid "Mexico"
659
- msgstr "Mexico"
660
-
661
- #: ../admin/manage-fields.php:380
662
- msgid "Micronesia"
663
- msgstr "Micronesia"
664
-
665
- #: ../admin/manage-fields.php:381
666
- msgid "Moldova"
667
- msgstr "Moldova"
668
-
669
- #: ../admin/manage-fields.php:382
670
- msgid "Monaco"
671
- msgstr "Monaco"
672
-
673
- #: ../admin/manage-fields.php:383
674
- msgid "Mongolia"
675
- msgstr "Mongolia"
676
-
677
- #: ../admin/manage-fields.php:384
678
- msgid "Montenegro"
679
- msgstr "Montenegro"
680
-
681
- #: ../admin/manage-fields.php:385
682
- msgid "Montserrat"
683
- msgstr "Montserrat"
684
-
685
- #: ../admin/manage-fields.php:386
686
- msgid "Morocco"
687
- msgstr "Morocco"
688
-
689
- #: ../admin/manage-fields.php:387
690
- msgid "Mozambique"
691
- msgstr "Mozambique"
692
-
693
- #: ../admin/manage-fields.php:388
694
- msgid "Myanmar"
695
- msgstr "Myanmar"
696
-
697
- #: ../admin/manage-fields.php:389
698
- msgid "Namibia"
699
- msgstr "Namibia"
700
-
701
- #: ../admin/manage-fields.php:390
702
- msgid "Nauru"
703
- msgstr "Nauru"
704
-
705
- #: ../admin/manage-fields.php:391
706
- msgid "Nepal"
707
- msgstr "Nepal"
708
-
709
- #: ../admin/manage-fields.php:392
710
- msgid "Netherlands"
711
- msgstr "Netherlands"
712
-
713
- #: ../admin/manage-fields.php:393
714
- msgid "New Caledonia"
715
- msgstr "New Caledonia"
716
-
717
- #: ../admin/manage-fields.php:394
718
- msgid "New Zealand"
719
- msgstr "New Zealand"
720
-
721
- #: ../admin/manage-fields.php:395
722
- msgid "Nicaragua"
723
- msgstr "Nicaragua"
724
-
725
- #: ../admin/manage-fields.php:396
726
- msgid "Niger"
727
- msgstr "Niger"
728
-
729
- #: ../admin/manage-fields.php:397
730
- msgid "Nigeria"
731
- msgstr "Nigeria"
732
-
733
- #: ../admin/manage-fields.php:398
734
- msgid "Niue"
735
- msgstr "Niue"
736
-
737
- #: ../admin/manage-fields.php:399
738
- msgid "Norfolk Island"
739
- msgstr "Norfolk Island"
740
-
741
- #: ../admin/manage-fields.php:400
742
- msgid "North Korea"
743
- msgstr "North Korea"
744
-
745
- #: ../admin/manage-fields.php:401
746
- msgid "Northern Mariana Islands"
747
- msgstr "Northern Mariana Islands"
748
-
749
- #: ../admin/manage-fields.php:402
750
- msgid "Norway"
751
- msgstr "Norway"
752
-
753
- #: ../admin/manage-fields.php:403
754
- msgid "Oman"
755
- msgstr "Oman"
756
-
757
- #: ../admin/manage-fields.php:404
758
- msgid "Pakistan"
759
- msgstr "Pakistan"
760
-
761
- #: ../admin/manage-fields.php:405
762
- msgid "Palau"
763
- msgstr "Palau"
764
-
765
- #: ../admin/manage-fields.php:406
766
- msgid "Palestinian Territory"
767
- msgstr "Palestinian Territory"
768
-
769
- #: ../admin/manage-fields.php:407
770
- msgid "Panama"
771
- msgstr "Panama"
772
-
773
- #: ../admin/manage-fields.php:408
774
- msgid "Papua New Guinea"
775
- msgstr "Papua New Guinea"
776
-
777
- #: ../admin/manage-fields.php:409
778
- msgid "Paraguay"
779
- msgstr "Paraguay"
780
-
781
- #: ../admin/manage-fields.php:410
782
- msgid "Peru"
783
- msgstr "Peru"
784
-
785
- #: ../admin/manage-fields.php:411
786
- msgid "Philippines"
787
- msgstr "Philippines"
788
-
789
- #: ../admin/manage-fields.php:412
790
- msgid "Pitcairn"
791
- msgstr "Pitcairn"
792
-
793
- #: ../admin/manage-fields.php:413
794
- msgid "Poland"
795
- msgstr "Poland"
796
-
797
- #: ../admin/manage-fields.php:414
798
- msgid "Portugal"
799
- msgstr "Portugal"
800
-
801
- #: ../admin/manage-fields.php:415
802
- msgid "Puerto Rico"
803
- msgstr "Puerto Rico"
804
-
805
- #: ../admin/manage-fields.php:416
806
- msgid "Qatar"
807
- msgstr "Qatar"
808
-
809
- #: ../admin/manage-fields.php:417
810
- msgid "Republic of the Congo"
811
- msgstr "Republic of the Congo"
812
-
813
- #: ../admin/manage-fields.php:418
814
- msgid "Reunion"
815
- msgstr "Reunion"
816
-
817
- #: ../admin/manage-fields.php:419
818
- msgid "Romania"
819
- msgstr "Romania"
820
-
821
- #: ../admin/manage-fields.php:420
822
- msgid "Russia"
823
- msgstr "Russia"
824
-
825
- #: ../admin/manage-fields.php:421
826
- msgid "Rwanda"
827
- msgstr "Rwanda"
828
-
829
- #: ../admin/manage-fields.php:422
830
- msgid "Saint Barthelemy"
831
- msgstr "Saint Barthelemy"
832
-
833
- #: ../admin/manage-fields.php:423
834
- msgid "Saint Helena"
835
- msgstr "Saint Helena"
836
-
837
- #: ../admin/manage-fields.php:424
838
- msgid "Saint Kitts and Nevis"
839
- msgstr "Saint Kitts and Nevis"
840
-
841
- #: ../admin/manage-fields.php:425
842
- msgid "Saint Lucia"
843
- msgstr "Saint Lucia"
844
-
845
- #: ../admin/manage-fields.php:426
846
- msgid "Saint Martin"
847
- msgstr "Saint Martin"
848
-
849
- #: ../admin/manage-fields.php:427
850
- msgid "Saint Pierre and Miquelon"
851
- msgstr "Saint Pierre and Miquelon"
852
-
853
- #: ../admin/manage-fields.php:428
854
- msgid "Saint Vincent and the Grenadines"
855
- msgstr "Saint Vincent and the Grenadines"
856
-
857
- #: ../admin/manage-fields.php:429
858
- msgid "Samoa"
859
- msgstr "Samoa"
860
-
861
- #: ../admin/manage-fields.php:430
862
- msgid "San Marino"
863
- msgstr "San Marino"
864
-
865
- #: ../admin/manage-fields.php:431
866
- msgid "Sao Tome and Principe"
867
- msgstr "Sao Tome and Principe"
868
-
869
- #: ../admin/manage-fields.php:432
870
- msgid "Saudi Arabia"
871
- msgstr "Saudi Arabia"
872
-
873
- #: ../admin/manage-fields.php:433
874
- msgid "Senegal"
875
- msgstr "Senegal"
876
-
877
- #: ../admin/manage-fields.php:434
878
- msgid "Serbia"
879
- msgstr "Serbia"
880
-
881
- #: ../admin/manage-fields.php:435
882
- msgid "Seychelles"
883
- msgstr "Seychelles"
884
-
885
- #: ../admin/manage-fields.php:436
886
- msgid "Sierra Leone"
887
- msgstr "Sierra Leone"
888
-
889
- #: ../admin/manage-fields.php:437
890
- msgid "Singapore"
891
- msgstr "Singapore"
892
-
893
- #: ../admin/manage-fields.php:438
894
- msgid "Sint Maarten"
895
- msgstr "Sint Maarten"
896
-
897
- #: ../admin/manage-fields.php:439
898
- msgid "Slovakia"
899
- msgstr "Slovakia"
900
-
901
- #: ../admin/manage-fields.php:440
902
- msgid "Slovenia"
903
- msgstr "Slovenia"
904
-
905
- #: ../admin/manage-fields.php:441
906
- msgid "Solomon Islands"
907
- msgstr "Solomon Islands"
908
-
909
- #: ../admin/manage-fields.php:442
910
- msgid "Somalia"
911
- msgstr "Somalia"
912
-
913
- #: ../admin/manage-fields.php:443
914
- msgid "South Africa"
915
- msgstr "South Africa"
916
-
917
- #: ../admin/manage-fields.php:444
918
- msgid "South Georgia and the South Sandwich Islands"
919
- msgstr "South Georgia and the South Sandwich Islands"
920
-
921
- #: ../admin/manage-fields.php:445
922
- msgid "South Korea"
923
- msgstr "South Korea"
924
-
925
- #: ../admin/manage-fields.php:446
926
- msgid "South Sudan"
927
- msgstr "South Sudan"
928
-
929
- #: ../admin/manage-fields.php:447
930
- msgid "Spain"
931
- msgstr "Spain"
932
-
933
- #: ../admin/manage-fields.php:448
934
- msgid "Sri Lanka"
935
- msgstr "Sri Lanka"
936
-
937
- #: ../admin/manage-fields.php:449
938
- msgid "Sudan"
939
- msgstr "Sudan"
940
-
941
- #: ../admin/manage-fields.php:450
942
- msgid "Suriname"
943
- msgstr "Suriname"
944
-
945
- #: ../admin/manage-fields.php:451
946
- msgid "Svalbard and Jan Mayen"
947
- msgstr "Svalbard and Jan Mayen"
948
-
949
- #: ../admin/manage-fields.php:452
950
- msgid "Swaziland"
951
- msgstr "Swaziland"
952
-
953
- #: ../admin/manage-fields.php:453
954
- msgid "Sweden"
955
- msgstr "Sweden"
956
-
957
- #: ../admin/manage-fields.php:454
958
- msgid "Switzerland"
959
- msgstr "Switzerland"
960
-
961
- #: ../admin/manage-fields.php:455
962
- msgid "Syria"
963
- msgstr "Syria"
964
-
965
- #: ../admin/manage-fields.php:456
966
- msgid "Taiwan"
967
- msgstr "Taiwan"
968
-
969
- #: ../admin/manage-fields.php:457
970
- msgid "Tajikistan"
971
- msgstr "Tajikistan"
972
-
973
- #: ../admin/manage-fields.php:458
974
- msgid "Tanzania"
975
- msgstr "Tanzania"
976
-
977
- #: ../admin/manage-fields.php:459
978
- msgid "Thailand"
979
- msgstr "Thailand"
980
-
981
- #: ../admin/manage-fields.php:460
982
- msgid "Togo"
983
- msgstr "Togo"
984
-
985
- #: ../admin/manage-fields.php:461
986
- msgid "Tokelau"
987
- msgstr "Tokelau"
988
-
989
- #: ../admin/manage-fields.php:462
990
- msgid "Tonga"
991
- msgstr "Tonga"
992
-
993
- #: ../admin/manage-fields.php:463
994
- msgid "Trinidad and Tobago"
995
- msgstr "Trinidad and Tobago"
996
-
997
- #: ../admin/manage-fields.php:464
998
- msgid "Tunisia"
999
- msgstr "Tunisia"
1000
-
1001
- #: ../admin/manage-fields.php:465
1002
- msgid "Turkey"
1003
- msgstr "Turkey"
1004
-
1005
- #: ../admin/manage-fields.php:466
1006
- msgid "Turkmenistan"
1007
- msgstr "Turkmenistan"
1008
-
1009
- #: ../admin/manage-fields.php:467
1010
- msgid "Turks and Caicos Islands"
1011
- msgstr "Turks and Caicos Islands"
1012
-
1013
- #: ../admin/manage-fields.php:468
1014
- msgid "Tuvalu"
1015
- msgstr "Tuvalu"
1016
-
1017
- #: ../admin/manage-fields.php:469
1018
- msgid "U.S. Virgin Islands"
1019
- msgstr "U.S. Virgin Islands"
1020
-
1021
- #: ../admin/manage-fields.php:470
1022
- msgid "Uganda"
1023
- msgstr "Uganda"
1024
-
1025
- #: ../admin/manage-fields.php:471
1026
- msgid "Ukraine"
1027
- msgstr "Ukraine"
1028
-
1029
- #: ../admin/manage-fields.php:472
1030
- msgid "United Arab Emirates"
1031
- msgstr "United Arab Emirates"
1032
-
1033
- #: ../admin/manage-fields.php:473
1034
- msgid "United Kingdom"
1035
- msgstr "United Kingdom"
1036
-
1037
- #: ../admin/manage-fields.php:474
1038
- msgid "United States"
1039
- msgstr "United States"
1040
-
1041
- #: ../admin/manage-fields.php:475
1042
- msgid "United States Minor Outlying Islands"
1043
- msgstr "United States Minor Outlying Islands"
1044
-
1045
- #: ../admin/manage-fields.php:476
1046
- msgid "Uruguay"
1047
- msgstr "Uruguay"
1048
-
1049
- #: ../admin/manage-fields.php:477
1050
- msgid "Uzbekistan"
1051
- msgstr "Uzbekistan"
1052
-
1053
- #: ../admin/manage-fields.php:478
1054
- msgid "Vanuatu"
1055
- msgstr "Vanuatu"
1056
-
1057
- #: ../admin/manage-fields.php:479
1058
- msgid "Vatican"
1059
- msgstr "Vatican"
1060
-
1061
- #: ../admin/manage-fields.php:480
1062
- msgid "Venezuela"
1063
- msgstr "Venezuela"
1064
-
1065
- #: ../admin/manage-fields.php:481
1066
- msgid "Vietnam"
1067
- msgstr "Vietnam"
1068
-
1069
- #: ../admin/manage-fields.php:482
1070
- msgid "Wallis and Futuna"
1071
- msgstr "Wallis and Futuna"
1072
-
1073
- #: ../admin/manage-fields.php:483
1074
- msgid "Western Sahara"
1075
- msgstr "Western Sahara"
1076
-
1077
- #: ../admin/manage-fields.php:484
1078
- msgid "Yemen"
1079
- msgstr "Yemen"
1080
-
1081
- #: ../admin/manage-fields.php:485
1082
- msgid "Zambia"
1083
- msgstr "Zambia"
1084
-
1085
- #: ../admin/manage-fields.php:486
1086
- msgid "Zimbabwe"
1087
- msgstr "Zimbabwe"
1088
-
1089
- #: ../admin/manage-fields.php:843
1090
- msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
1091
- msgstr ""
1092
-
1093
- #: ../assets/misc/plugin-compatibilities.php:241
1094
- msgid "Your account has to be confirmed by an administrator before you can log in."
1095
- msgstr ""
1096
-
1097
- #: ../features/admin-approval/admin-approval.php:203
1098
- msgid "Your account has been successfully created!"
1099
- msgstr ""
1100
-
1101
- #: ../features/functions.php:607
1102
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:374
1103
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:379
1104
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1105
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:458
1106
- msgid "Please enter a (valid) reCAPTCHA value"
1107
- msgstr ""
1108
-
1109
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1110
- msgid "Click the BACK button on your browser, and try again."
1111
- msgstr ""
1112
-
1113
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:78
1114
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:87
1115
- msgid "Sorry, you cannot upload this file type for this field."
1116
- msgstr ""
1117
-
1118
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:94
1119
- msgid "An error occurred, please try again later."
1120
- msgstr ""
1121
-
1122
- #: ../modules/user-listing/userlisting.php:253
1123
- msgid "More"
1124
- msgstr ""
1125
-
1126
- #: ../modules/user-listing/userlisting.php:338
1127
- msgid "You do not have permission to view this user list."
1128
- msgstr ""
1129
-
1130
- #: ../modules/user-listing/userlisting.php:351
1131
- msgid "You do not have the required user role to view this user list."
1132
- msgstr ""
1133
-
1134
- #: ../modules/user-listing/userlisting.php:1287
1135
- msgid "Ascending"
1136
- msgstr ""
1137
-
1138
- #: ../modules/user-listing/userlisting.php:1288
1139
- msgid "Descending"
1140
- msgstr ""
1141
-
1142
- #: ../admin/add-ons.php:144
1143
- msgid "Download Now"
1144
- msgstr "Jetzt downloaden"
1145
-
1146
- #: ../admin/admin-functions.php:197
1147
- msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
1148
- msgstr "Gefällt dir <strong> %1$s </strong> dann <a href=\"%2$s\" target=\"_blank\">bewerte uns bitte auf WordPress.org</a>. Mehr glückliche Benutzer, bedeuten mehr Features, weniger Fehler und besseren Support für jeden."
1149
-
1150
- #: ../admin/manage-fields.php:68
1151
- msgid "Choose one of the supported field types"
1152
- msgstr "Wähle eins von den unterstützen Dateitypen."
1153
-
1154
- #: ../admin/manage-fields.php:70
1155
- msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
1156
- msgstr "Extra Feldtypen stehen in der <a href=\"%s\">Hobbyist oder PRO Version</a> zur Verfügung."
1157
-
1158
- #: ../admin/manage-fields.php:107
1159
- msgid "Site Key"
1160
- msgstr "Seitenschlüssel"
1161
-
1162
- #: ../admin/manage-fields.php:107
1163
- msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1164
- msgstr "Der Seitenschlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1165
-
1166
- #: ../admin/manage-fields.php:108
1167
- msgid "Secret Key"
1168
- msgstr "Geheimer Schlüssel"
1169
-
1170
- #: ../admin/manage-fields.php:108
1171
- msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1172
- msgstr "Der geheime Schlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1173
-
1174
- #: ../admin/manage-fields.php:660
1175
- msgid "You must enter the site key\n"
1176
- msgstr "Du musst den Seiten Schlüssel eingeben\n"
1177
-
1178
- #: ../admin/manage-fields.php:662
1179
- msgid "You must enter the secret key\n"
1180
- msgstr "Du musst den geheimen Schlüssel eingeben\n"
1181
-
1182
- #: ../admin/add-ons.php:10 ../admin/add-ons.php:32
1183
- msgid "Add-Ons"
1184
- msgstr "Add-Ons"
1185
-
1186
- #: ../admin/add-ons.php:34 ../admin/add-ons.php:124
1187
- msgid "Activate"
1188
- msgstr "Aktivieren"
1189
-
1190
- #: ../admin/add-ons.php:36
1191
- msgid "Downloading and installing..."
1192
- msgstr "Downloaden und installieren..."
1193
-
1194
- #: ../admin/add-ons.php:37
1195
- msgid "Installation complete"
1196
- msgstr "Installation abgeschlossen"
1197
-
1198
- #: ../admin/add-ons.php:39
1199
- msgid "Add-On is Active"
1200
- msgstr "Add-On ist aktiv"
1201
-
1202
- #: ../admin/add-ons.php:40
1203
- msgid "Add-On has been activated"
1204
- msgstr "Add-On wurde aktiviert"
1205
-
1206
- #: ../admin/add-ons.php:41
1207
- msgid "Retry Install"
1208
- msgstr "Installation erneut versuchen"
1209
-
1210
- #: ../admin/add-ons.php:43 ../admin/add-ons.php:135
1211
- msgid "Add-On is <strong>active</strong>"
1212
- msgstr "Add-On ist <strong>aktiv</strong>"
1213
-
1214
- #: ../admin/add-ons.php:44 ../admin/add-ons.php:133
1215
- msgid "Add-On is <strong>inactive</strong>"
1216
- msgstr "Add-On ist <strong>inaktiv</strong>"
1217
-
1218
- #: ../admin/add-ons.php:46 ../admin/add-ons.php:128
1219
- msgid "Deactivate"
1220
- msgstr "Deaktivieren"
1221
-
1222
- #: ../admin/add-ons.php:47
1223
- msgid "Add-On has been deactivated."
1224
- msgstr "Add-On wurde deaktiviert."
1225
-
1226
- #: ../admin/add-ons.php:59
1227
- msgid "Something went wrong, we could not connect to the server. Please try again later."
1228
- msgstr "Etwas ist falsch gelaufen, wir konnten uns nicht mit dem Server verbinden. Bitte versuche es später erneut."
1229
-
1230
- #: ../admin/add-ons.php:144 ../admin/add-ons.php:147
1231
- msgid "Buy Now"
1232
- msgstr "Jetzt kaufen"
1233
-
1234
- #: ../admin/add-ons.php:147
1235
- msgid "Install Now"
1236
- msgstr "Jetzt installieren"
1237
-
1238
- #: ../admin/add-ons.php:153
1239
- msgid "Compatible with your version of Profile Builder."
1240
- msgstr "Kompatibel mit deiner Version von Profile Builder."
1241
-
1242
- #: ../admin/add-ons.php:162
1243
- msgid "Upgrade Profile Builder"
1244
- msgstr "Profile Builder upgraden"
1245
-
1246
- #: ../admin/add-ons.php:163
1247
- msgid "Not compatible with Profile Builder"
1248
- msgstr "Nicht kompatibel mit Profile Builder"
1249
-
1250
- #: ../admin/add-ons.php:171
1251
- msgid "Not compatible with your version of Profile Builder."
1252
- msgstr "Nicht kompatibel mit deiner Version von Profile Builder."
1253
-
1254
- #: ../admin/add-ons.php:172
1255
- msgid "Minimum required Profile Builder version:"
1256
- msgstr "Minimal benötigte Version von Profile Builder:"
1257
-
1258
- #: ../admin/add-ons.php:177
1259
- msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1260
- msgstr "Add-On konnten nicht installiert werden. Erneut versuchen oder <a href=\"%s\" target=\"_blank\">manuell installieren</a>."
1261
-
1262
- #: ../front-end/default-fields/email/email.php:48
1263
- msgid "You must enter a valid email address."
1264
- msgstr "Du musst eine gültige E-Mail Adresse angeben."
1265
-
1266
- #: ../front-end/default-fields/username/username.php:53
1267
- #: ../front-end/default-fields/username/username.php:60
1268
- msgid "This username is invalid because it uses illegal characters."
1269
- msgstr "Der Benutzername ist ungültig, da dieser ungültige Zeichen enthält."
1270
-
1271
- #: ../front-end/default-fields/username/username.php:53
1272
- #: ../front-end/default-fields/username/username.php:60
1273
- msgid "Please enter a valid username."
1274
- msgstr "Bitte gebe einen gültigen Benutzernamen ein."
1275
-
1276
- #: ../front-end/extra-fields/user-role/user-role.php:67
1277
- #: ../front-end/extra-fields/user-role/user-role.php:80
1278
- msgid "Only administrators can see this field on edit profile forms."
1279
- msgstr "Nur Administratoren können dieses Feld beim editieren von Profilformularen sehen."
1280
-
1281
- #: ../front-end/extra-fields/user-role/user-role.php:76
1282
- msgid "As an administrator you cannot change your role."
1283
- msgstr "Als Administrator kannst du deine Berechtigungen nicht ändern."
1284
-
1285
- #: ../modules/email-customizer/admin-email-customizer.php:117
1286
- msgid ""
1287
- "\n"
1288
- "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
1289
- "<p>His/her new password is: {{password}}</p>\n"
1290
- msgstr ""
1291
-
1292
- #: ../modules/email-customizer/admin-email-customizer.php:141
1293
- msgid "Admin Notification for User Password Reset"
1294
- msgstr ""
1295
-
1296
- #: ../modules/email-customizer/email-customizer.php:42
1297
- msgid "Reset Key"
1298
- msgstr ""
1299
-
1300
- #: ../modules/email-customizer/email-customizer.php:43
1301
- msgid "Reset Url"
1302
- msgstr ""
1303
-
1304
- #: ../modules/email-customizer/email-customizer.php:44
1305
- msgid "Reset Link"
1306
- msgstr ""
1307
-
1308
- #: ../modules/email-customizer/user-email-customizer.php:204
1309
- msgid ""
1310
- "\n"
1311
- "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
1312
- "Username: {{username}}</p>\n"
1313
- "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
1314
- "<p>To reset your password, visit the following address:<br/>\n"
1315
- "{{{reset_link}}}</p>\n"
1316
- msgstr ""
1317
-
1318
- #: ../modules/email-customizer/user-email-customizer.php:218
1319
- msgid "[{{site_name}}] Password Reset"
1320
- msgstr "[{{site_name}}] Passwortzurücksetzung"
1321
-
1322
- #: ../modules/email-customizer/user-email-customizer.php:229
1323
- msgid "Password Reset Email"
1324
- msgstr "E-Mail für die Passwortzurücksetzung"
1325
-
1326
- #: ../modules/email-customizer/user-email-customizer.php:235
1327
- msgid ""
1328
- "\n"
1329
- "<p>You have successfully reset your password to: {{password}}</p>\n"
1330
- msgstr ""
1331
-
1332
- #: ../modules/email-customizer/user-email-customizer.php:245
1333
- msgid "[{{site_name}}] Password Reset Successfully"
1334
- msgstr "[{{site_name}}] Passwortzurücksetzung erfolgreich"
1335
-
1336
- #: ../modules/email-customizer/user-email-customizer.php:256
1337
- msgid "Password Reset Success Email"
1338
- msgstr ""
1339
-
1340
- #: ../modules/user-listing/userlisting.php:134
1341
- msgid "User Nicename"
1342
- msgstr "Benutzername"
1343
-
1344
- #: ../modules/user-listing/userlisting.php:442
1345
- msgid "None"
1346
- msgstr "Nichts"
1347
-
1348
- #: ../admin/admin-functions.php:128
1349
- msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1350
- msgstr "<strong>FEHLER</strong>: Das Passwort muss mindestens %s Zeichen lang sein"
1351
-
1352
- #: ../admin/admin-functions.php:145
1353
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
1354
- msgstr "<strong>FEHLER</strong>: Das Passwort muss eine Mindeststärke von %s haben"
1355
-
1356
- #: ../admin/general-settings.php:170
1357
- msgid "Username and Email"
1358
- msgstr "Benutzername und E-Mail"
1359
-
1360
- #: ../admin/general-settings.php:175
1361
- msgid "\"Username and Email\" - users can Log In with both Username and Email."
1362
- msgstr "\"Benutzername und E-Mail\" - Benutzer können sich mit Ihrem Benutzernamen und EMail-Adresse anmelden."
1363
-
1364
- #: ../admin/general-settings.php:176
1365
- msgid "\"Username\" - users can Log In only with Username."
1366
- msgstr "\"Benutzername\" - Benutzer können sich nur mit Ihrem Benutzernamen anmelden"
1367
-
1368
- #: ../admin/general-settings.php:177
1369
- msgid "\"Email\" - users can Log In only with Email."
1370
- msgstr "\"E-Mail\" - Benutzer können sich nur mit Ihrer E-Mail-Adresse anmelden."
1371
-
1372
- #: ../admin/manage-fields.php:100
1373
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
1374
- msgstr ""
1375
- "Geben Sie die Datei-Erweiterung(en) ein, die Sie für den Upload erlauben möchten<br/>\n"
1376
- "z. B.: .ext1,.ext2,.ext3<br/>Bei keiner Eingabe werden die Standard-Erweiterungen gesetzt: .jpg,.jpeg,.gif,.png (.*)"
1377
-
1378
- #: ../admin/manage-fields.php:101
1379
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
1380
- msgstr "Geben Sie die Datei-Erweiterung(en) ein, die Sie für den Upload erlauben möchten<br/> z. B.: .ext1,.ext2,.ext3<br/>Bei keiner Eingabe werden alle von WordPress erlaubten Datei-Erweiterungen gesetzt: (.*)"
1381
-
1382
- #: ../admin/manage-fields.php:111
1383
- msgid "User Roles"
1384
- msgstr "Benutzerrollen"
1385
-
1386
- #: ../admin/manage-fields.php:111
1387
- msgid "Select which user roles to show to the user ( drag and drop to re-order )"
1388
- msgstr "Wählen Sie, welche Benutzerrollen dem Benutzer gezeigt werden sollen (Drag & Drop zum neu sortieren)"
1389
-
1390
- #: ../admin/manage-fields.php:112
1391
- msgid "User Roles Order"
1392
- msgstr "Benutzerrollen Sortierung"
1393
-
1394
- #: ../admin/manage-fields.php:112
1395
- msgid "Save the user role order from the user roles checkboxes"
1396
- msgstr "Speichern Sie die Benutzerrolle von den Checkboxen der Benutzerrollen"
1397
-
1398
- #: ../admin/manage-fields.php:752
1399
- msgid "Please select at least one user role\n"
1400
- msgstr "Bitte wählen Sie mindestens eine Benutzerrolle\n"
1401
-
1402
- #: ../admin/register-version.php:22
1403
- msgid "Profile Builder Register"
1404
- msgstr "Profile Builder Registrierung"
1405
-
1406
- #: ../admin/register-version.php:81
1407
- msgid "The serial number is about to expire soon!"
1408
- msgstr "Die Seriennummer wird bald ablaufen!"
1409
-
1410
- #: ../admin/register-version.php:81
1411
- msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
1412
- msgstr "Ihre Seriennummer wird bald ablaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s."
1413
-
1414
- #: ../admin/register-version.php:83
1415
- msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
1416
- msgstr "Ihre Seriennummer ist ablaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s."
1417
-
1418
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
1419
- msgid "Add Entry"
1420
- msgstr "Eintrag hinzufügen"
1421
-
1422
- #: ../features/email-confirmation/class-email-confirmation.php:91
1423
- msgid "show"
1424
- msgstr "zeigen"
1425
-
1426
- #: ../features/functions.php:659
1427
- msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
1428
- msgstr "Damit sich Benutzer auf Ihre Website über Profile Builder registrieren können, müssen Sie zunächst die Benutzerregistrierung ermöglichen. Gehen Sie unter %1$sEinstellungen -> Allgemein%2$s und unter Mitgliedschaft stellen Sie sicher, dass das Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sVerwerfen%4$s"
1429
-
1430
- #: ../front-end/class-formbuilder.php:509
1431
- msgid "User to edit:"
1432
- msgstr "Benutzer editieren"
1433
-
1434
- #: ../front-end/default-fields/password/password.php:46
1435
- #: ../front-end/recover.php:245
1436
- msgid "The password must have the minimum length of %s characters"
1437
- msgstr "Das Passwort muss mindestes %s Zeichen haben"
1438
-
1439
- #: ../front-end/default-fields/password/password.php:50
1440
- #: ../front-end/recover.php:249
1441
- msgid "The password must have a minimum strength of %s"
1442
- msgstr "Das Passwort muss eine Mindeststärke von %s haben"
1443
-
1444
- #: ../front-end/extra-fields/user-role/user-role.php:112
1445
- msgid "You cannot register this user role"
1446
- msgstr "Sie können diese Benutzerrolle nicht registrieren"
1447
-
1448
- #: ../front-end/login.php:105
1449
- msgid "username or email"
1450
- msgstr "Benutzername oder E-Mail-Adresse"
1451
-
1452
- #: ../front-end/login.php:174
1453
- msgid "Username or Email"
1454
- msgstr "Benutzername oder E-Mail-Adresse"
1455
-
1456
- #: ../front-end/logout.php:15
1457
- msgid "You are currently logged in as %s. "
1458
- msgstr "Sie sind als %s eingeloggt."
1459
-
1460
- #: ../front-end/logout.php:15
1461
- msgid "Log out &raquo;"
1462
- msgstr "Ausloggen &raquo;"
1463
-
1464
- #: ../modules/email-customizer/email-customizer.php:31
1465
- msgid "User Role"
1466
- msgstr "Benutzerrolle"
1467
-
1468
- #: ../modules/user-listing/userlisting.php:1207
1469
- msgid "View all extra shortcode parameters"
1470
- msgstr "Alle zusätzlichen Shortcode-Parameter anzeigen"
1471
-
1472
- #: ../modules/user-listing/userlisting.php:1221
1473
- msgid "displays only the users that you specified the user_id for"
1474
- msgstr "nur die Benutzer anzeigen, denen Sie die user_id vergeben haben"
1475
-
1476
- #: ../modules/user-listing/userlisting.php:1227
1477
- msgid "displays all users except the ones you specified the user_id for"
1478
- msgstr "alle Benutzer anzeigen, außer denen Sie die user_id vergeben haben"
1479
-
1480
- #: ../features/functions.php:526
1481
- msgid "Minimum length of %d characters"
1482
- msgstr "Mindestlänge von %d Zeichen"
1483
-
1484
- #: ../front-end/class-formbuilder.php:99 ../front-end/class-formbuilder.php:102
1485
- msgid "This message is only visible by administrators"
1486
- msgstr "Diese Nachricht ist nur für Administratoren sichtbar"
1487
-
1488
- #: ../modules/user-listing/userlisting.php:364
1489
- msgid "User not found"
1490
- msgstr "Benutzer wurde nicht gefunden"
1491
-
1492
- #: ../modules/email-customizer/admin-email-customizer.php:38
1493
- #: ../modules/email-customizer/user-email-customizer.php:38
1494
- msgid "Valid tags {{reply_to}} and {{site_name}}"
1495
- msgstr "Gültige Tags {{reply_to}} und {{site_name}}"
1496
-
1497
- #: ../admin/admin-bar.php:48
1498
- msgid "Choose which user roles view the admin bar in the front-end of the website."
1499
- msgstr "Wählen Sie, welche Benutzerrollen Sie in der Admin Bar im Front-End der Website sehen wollen"
1500
-
1501
- #: ../admin/manage-fields.php:105
1502
- 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"
1503
- msgstr "Geben Sie eine kommagetrennte Liste von Werten ein<br/> Diese kann alles mögliche enthalten, da sie vor den Benutzern verborgen ist, sollte aber keine Sonderzeichen oder Apostrophe enthalten"
1504
-
1505
- #: ../admin/manage-fields.php:689
1506
- msgid "The meta-name cannot be empty\n"
1507
- msgstr "Der Meta-Name darf nicht leer sein\n"
1508
-
1509
- #: ../admin/register-version.php:69
1510
- msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
1511
- msgstr "Sie haben eine Kopie des %s erworben. Sie sollten sich die Zeit nehmen, um sich mit der Seriennummer, die Sie erhalten haben, zu registrieren"
1512
-
1513
- #: ../admin/register-version.php:243
1514
- 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>"
1515
- msgstr "<p> Ihre <strong> Profil Builder </strong> Seriennummer ist ungültig oder fehlt. <br/> Bitte %1$s registrieren Sie Ihre Kopien %2$s damit Sie Zugang zu automatischen Updates und Support erhalten. Brauchen Sie noch einen Lizenzschlüssel? %3$s Kaufen Sie jetzt eine%4$s </p>"
1516
-
1517
- #: ../admin/register-version.php:246
1518
- 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>"
1519
- msgstr ""
1520
- "<p> Ihre <strong> Profil Builder </strong> Lizenz ist abgelaufen. <br/> Bitte %1$serneuern Sie Ihre Lizenz%2$s so dass Sie weiterhin Zugang zu Produkt-Downloads, automatische Updates und Support erhalten . %3$sErneuern Sie jetzt und erhalten Sie 50&#37; Rabatt%4$s %5$s\n"
1521
- "entlassen%6$s </p>"
1522
-
1523
- #: ../admin/register-version.php:251
1524
- 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>"
1525
- msgstr "<p> Ihre <strong> Profil Builder </strong> Lizenz läuft in Kürze am %5$s ab. <br/> Bitte%1$serneuern Sie Ihre Lizenz%2$s so dass Sie weiterhin Zugang zu Produkt-Downloads, automatische Updates und Support erhalten. %3$sErneuern Sie jetzt und erhalten Sie 5050&#37; Rabatt%4$s %6$sentlassen%7$s </p>"
1526
-
1527
- #: ../assets/lib/wck-api/fields/country select.php:14
1528
- #: ../assets/lib/wck-api/fields/cpt select.php:17
1529
- #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
1530
- #: select.php:15
1531
- msgid "...Choose"
1532
- msgstr "... wähle"
1533
-
1534
- #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
1535
- msgid "1 item"
1536
- msgstr "1 Artikel"
1537
-
1538
- #: ../features/functions.php:512
1539
- msgid "Very Weak"
1540
- msgstr "sehr schwach"
1541
-
1542
- #: ../features/functions.php:600
1543
- msgid "This field is required"
1544
- msgstr "Dieses Feld ist erforderlich"
1545
-
1546
- #: ../features/functions.php:627
1547
- msgid "Cancel"
1548
- msgstr "Abbrechen"
1549
-
1550
- #: ../features/functions.php:663
1551
- 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"
1552
- msgstr ""
1553
- "Damit sich Benutzer auf Ihre Website über Profile Builder registrieren können, müssen Sie zunächst die Benutzerregistrierung ermöglichen. Gehen Sie unter %1$sEinstellungen -> Allgemein%2$s und unter Mitgliedschaft stellen Sie sicher, dass das\n"
1554
- "Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sentlassen%4$s"
1555
-
1556
- #: ../front-end/login.php:96
1557
- msgid "Invalid username."
1558
- msgstr "Ungültiger Benutzername."
1559
-
1560
- #: ../front-end/login.php:101 ../front-end/login.php:105
1561
- msgid "username"
1562
- msgstr "Benutzername"
1563
-
1564
- #: ../front-end/login.php:101
1565
- msgid "email"
1566
- msgstr "E-Mail-Adresse"
1567
-
1568
- #: ../front-end/login.php:208
1569
- msgid "Lost your password?"
1570
- msgstr "Passwort vergessen?"
1571
-
1572
- #: ../index.php:34
1573
- msgid " is also activated. You need to deactivate it before activating this version of the plugin."
1574
- msgstr "ist ebenfalls aktiviert. Sie müssen es vor der Aktivierung dieser Version des Plugins deaktivieren."
1575
-
1576
- #: ../modules/email-customizer/admin-email-customizer.php:54
1577
- #: ../modules/email-customizer/user-email-customizer.php:54
1578
- msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
1579
- msgstr "Es muss eine gültige E-Mail-Adresse oder der Tag {{reply_to}} sein der die Standardeinstellung für den E-Mail des Administrators ist."
1580
-
1581
- #: ../features/email-confirmation/email-confirmation.php:554
1582
- #: ../features/email-confirmation/email-confirmation.php:557
1583
- #: ../modules/email-customizer/email-customizer.php:413
1584
- #: ../modules/email-customizer/email-customizer.php:420
1585
- #: ../modules/email-customizer/email-customizer.php:434
1586
- msgid "Your selected password at signup"
1587
- msgstr "Das von Ihnen gewählte Anmeldepasswort"
1588
-
1589
- #: ../modules/email-customizer/user-email-customizer.php:38
1590
- msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
1591
- msgstr "Diese Einstellungen werden nach dem Abspeichern auch auf der Einstellungs-Seite \"Admin-E-Mail Anpassungen\" angezeigt."
1592
-
1593
- #: ../modules/multiple-forms/edit-profile-forms.php:270
1594
- msgid "This form is empty."
1595
- msgstr "Dieses Formular ist leer."
1596
-
1597
- #: ../modules/multiple-forms/multiple-forms.php:416
1598
- msgid "Delete all items"
1599
- msgstr "Löschen Sie alle Einträge"
1600
-
1601
- #: ../modules/multiple-forms/multiple-forms.php:416
1602
- msgid "Delete all"
1603
- msgstr "alles löschen"
1604
-
1605
- #: ../modules/multiple-forms/register-forms.php:226
1606
- msgid "Choose..."
1607
- msgstr "Wählen Sie ..."
1608
-
1609
- #: ../modules/user-listing/userlisting.php:1298
1610
- msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
1611
- msgstr "Bestimmen Sie die Anzahl der Benutzer die auf jeden paginierten Teil der gesamten Benutzer Auflistung angezeigt werden sollte"
1612
-
1613
- #: ../admin/admin-bar.php:10
1614
- msgid "Show/Hide the Admin Bar on the Front-End"
1615
- msgstr "Anzeigen/Verbergen der Admin Bar auf dem Front-End"
1616
-
1617
- #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
1618
- msgid "Admin Bar Settings"
1619
- msgstr "Admin Bar Einstellungen"
1620
-
1621
- #: ../admin/admin-bar.php:57
1622
- msgid "User-Role"
1623
- msgstr "Benutzerrolle"
1624
-
1625
- #: ../admin/admin-bar.php:58
1626
- msgid "Visibility"
1627
- msgstr "Sichtbarkeit"
1628
-
1629
- #: ../admin/admin-bar.php:73
1630
- msgid "Default"
1631
- msgstr "Default"
1632
-
1633
- #: ../admin/admin-bar.php:74
1634
- msgid "Show"
1635
- msgstr "Anzeigen"
1636
-
1637
- #: ../admin/admin-bar.php:75
1638
- msgid "Hide"
1639
- msgstr "Verbergen"
1640
-
1641
- #: ../admin/admin-bar.php:86 ../admin/general-settings.php:215
1642
- #: ../admin/register-version.php:95 ../features/functions.php:620
1643
- #: ../modules/custom-redirects/custom-redirects.php:136
1644
- #: ../modules/modules.php:142
1645
- msgid "Save Changes"
1646
- msgstr "Änderungen speichern"
1647
-
1648
- #: ../admin/admin-functions.php:34
1649
- 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 )"
1650
- msgstr "Anmeldung soll über die E-Mail-Adresse erfolgen. Dieses Feld erscheint NICHT im Front-End! (Sie können diese Einstellungen unter der Registerkarte \"%s\" ändern)"
1651
-
1652
- #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
1653
- #: ../admin/general-settings.php:38
1654
- msgid "General Settings"
1655
- msgstr "Allgemeine Einstellungen"
1656
-
1657
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:201
1658
- msgid "Very weak"
1659
- msgstr "Sehr schwach"
1660
-
1661
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:202
1662
- #: ../features/functions.php:512
1663
- msgid "Weak"
1664
- msgstr "schwach"
1665
-
1666
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:203
1667
- #: ../features/functions.php:512
1668
- msgid "Medium"
1669
- msgstr "Medium"
1670
-
1671
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:204
1672
- #: ../features/functions.php:512
1673
- msgid "Strong"
1674
- msgstr "stark"
1675
-
1676
- #: ../admin/admin-functions.php:184
1677
- msgid "Add Field"
1678
- msgstr "Feld hinzufügen"
1679
-
1680
- #: ../admin/admin-functions.php:186
1681
- #: ../modules/class-mustache-templates/class-mustache-templates.php:374
1682
- msgid "Save Settings"
1683
- msgstr "Einstellungen speichern"
1684
-
1685
- #: ../admin/basic-info.php:10
1686
- msgid "Basic Information"
1687
- msgstr "Grundlegende Informationen"
1688
-
1689
- #: ../admin/basic-info.php:29
1690
- msgid "Version %s"
1691
- msgstr "Version %s"
1692
-
1693
- #: ../admin/basic-info.php:30
1694
- msgid "<strong>Profile Builder </strong>"
1695
- msgstr "<strong>Profil Builder</strong>"
1696
-
1697
- #: ../admin/basic-info.php:31
1698
- msgid "The best way to add front-end registration, edit profile and login forms."
1699
- msgstr "Der beste Weg, um Front-End-Registrierung hinzufügen ist die Profil und Login-Formulare zu bearbeiten."
1700
-
1701
- #: ../admin/basic-info.php:33
1702
- msgid "For Modern User Interaction"
1703
- msgstr "Für die moderne Benutzerinteraktion"
1704
-
1705
- #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
1706
- msgid "Login"
1707
- msgstr "Login"
1708
-
1709
- #: ../admin/basic-info.php:40
1710
- msgid "Registration"
1711
- msgstr "Registrierung"
1712
-
1713
- #: ../admin/basic-info.php:44
1714
- msgid "Edit Profile"
1715
- msgstr "Profil bearbeiten"
1716
-
1717
- #: ../admin/basic-info.php:51
1718
- msgid "Extra Features"
1719
- msgstr "Extra-Features"
1720
-
1721
- #: ../admin/basic-info.php:52
1722
- msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
1723
- msgstr "Funktionen, die Ihnen mehr Kontrolle über Ihre Benutzer und erhöhte Sicherheit bietet und gegen Registrierungs-Spam von Nutzern hilft."
1724
-
1725
- #: ../admin/basic-info.php:53
1726
- msgid "Enable extra features"
1727
- msgstr "Zusätzliche Features aktivieren"
1728
-
1729
- #: ../admin/basic-info.php:57
1730
- msgid "Recover Password"
1731
- msgstr "Passwort wiederherstellen"
1732
-
1733
- #: ../admin/basic-info.php:61
1734
- msgid "Admin Approval (*)"
1735
- msgstr "Admin-Zulassung (*)"
1736
-
1737
- #: ../admin/basic-info.php:62
1738
- msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
1739
- msgstr "Sie entscheiden, wer ein Benutzer auf Ihrer Website ist. Sie können einzelne Benachrichtigungen per E-Mail bekommen oder mehrere Benutzer gleichzeitig über das WordPress-Dashboard genehmigen."
1740
-
1741
- #: ../admin/basic-info.php:65
1742
- msgid "Email Confirmation"
1743
- msgstr "E-Mail-Bestätigung"
1744
-
1745
- #: ../admin/basic-info.php:66
1746
- msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
1747
- msgstr "Stellen Sie sicher, dass Benutzer sich mit echten E-Mail-Adressen anmelden. Bei der Registrierung erhalten die Benutzer eine Benachrichtigung an diese E-Mail-Adresse, welche diese bestätigen müssen."
1748
-
1749
- #: ../admin/basic-info.php:69
1750
- msgid "Minimum Password Length and Strength Meter"
1751
- msgstr "Minimale Kennwortlänge und Feldstärke-Messgerät"
1752
-
1753
- #: ../admin/basic-info.php:70
1754
- msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
1755
- msgstr "Beseitigen Sie schwache Kennwörter insgesamt, indem Sie eine minimale Kennwortlänge und Durchsetzung einer bestimmten Passwortstärke setzten."
1756
-
1757
- #: ../admin/basic-info.php:73
1758
- msgid "Login with Email or Username"
1759
- msgstr "Login mit E-Mail oder Benutzername"
1760
-
1761
- #: ../admin/basic-info.php:74
1762
- msgid "Allow users to log in with their email or username when accessing your site."
1763
- msgstr "Erlauben Sie Benutzern, sich mit ihrer E-Mail-Adresse oder Benutzername anzumelden, wenn diese auf Ihre Seite zugreifen wollen. "
1764
-
1765
- #: ../admin/basic-info.php:87
1766
- msgid "Customize Your Forms The Way You Want (*)"
1767
- msgstr "Passen Sie die Formulare wie Sie wollen an (*)"
1768
-
1769
- #: ../admin/basic-info.php:88
1770
- msgid "With Extra Profile Fields you can create the exact registration form your project needs."
1771
- msgstr "Mit zusätzlichen Profil-Felder können Sie genauere Anmeldeformulare erstellen, welches Sie für Ihr Projekt brauchen."
1772
-
1773
- #: ../admin/basic-info.php:90
1774
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
1775
- msgstr "Zusätzliche Profil-Felder erhalten Sie mit den Hobbyist oder PRO Versionen. "
1776
-
1777
- #: ../admin/basic-info.php:92
1778
- msgid "Get started with extra fields"
1779
- msgstr "Erste Schritte mit extra Felder"
1780
-
1781
- #: ../admin/basic-info.php:95
1782
- msgid "Avatar Upload"
1783
- msgstr "Profilbild hochladen"
1784
-
1785
- #: ../admin/basic-info.php:96
1786
- msgid "Generic Uploads"
1787
- msgstr "Generische Uploads"
1788
-
1789
- #: ../admin/basic-info.php:97
1790
- msgid "Agree To Terms Checkbox"
1791
- msgstr "AGB-Checkbox"
1792
-
1793
- #: ../admin/basic-info.php:98
1794
- msgid "Datepicker"
1795
- msgstr "Datepicker"
1796
-
1797
- #: ../admin/basic-info.php:99
1798
- msgid "reCAPTCHA"
1799
- msgstr "reCAPTCHA"
1800
-
1801
- #: ../admin/basic-info.php:100
1802
- msgid "Country Select"
1803
- msgstr "Land auswählen"
1804
-
1805
- #: ../admin/basic-info.php:101
1806
- msgid "Timezone Select"
1807
- msgstr "Zeitzone auswählen"
1808
-
1809
- #: ../admin/basic-info.php:102
1810
- msgid "Input / Hidden Input"
1811
- msgstr "Eingabe / versteckte Eingabe"
1812
-
1813
- #: ../admin/basic-info.php:103
1814
- msgid "Checkbox"
1815
- msgstr "Checkbox"
1816
-
1817
- #: ../admin/basic-info.php:104
1818
- msgid "Select"
1819
- msgstr "Auswahl"
1820
-
1821
- #: ../admin/basic-info.php:105
1822
- msgid "Radio Buttons"
1823
- msgstr "Optionsfelder"
1824
-
1825
- #: ../admin/basic-info.php:106
1826
- msgid "Textarea"
1827
- msgstr "Text-bereich"
1828
-
1829
- #: ../admin/basic-info.php:115
1830
- msgid "Powerful Modules (**)"
1831
- msgstr "Leistungsstarke Module (*)"
1832
-
1833
- #: ../admin/basic-info.php:116
1834
- msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
1835
- msgstr "Alles, was Sie benötigen, um Ihre Benutzer zu verwalten ist wahrscheinlich schon über die Pro-Module verfügbar."
1836
-
1837
- #: ../admin/basic-info.php:118
1838
- msgid "Enable your modules"
1839
- msgstr "Aktivieren Sie Ihre Module"
1840
-
1841
- #: ../admin/basic-info.php:121
1842
- msgid "Find out more about PRO Modules"
1843
- msgstr "Erfahren Sie mehr über die PRO-Module"
1844
-
1845
- #: ../admin/basic-info.php:126 ../modules/modules.php:111
1846
- #: ../modules/user-listing/userlisting.php:11
1847
- #: ../modules/user-listing/userlisting.php:12
1848
- #: ../modules/user-listing/userlisting.php:17
1849
- #: ../modules/user-listing/userlisting.php:23
1850
- msgid "User Listing"
1851
- msgstr "Benutzer-Liste"
1852
-
1853
- #: ../admin/basic-info.php:128
1854
- 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."
1855
- msgstr "Einfache editierbare Vorlagen für die Auflistung Ihrer Website-Benutzer sowie für das Erstellen einzelner Benutzer-Seiten. Shortcode basiert , bietet viele Möglichkeiten, Ihre Auflistungen anzupassen."
1856
-
1857
- #: ../admin/basic-info.php:134
1858
- msgid "Email Customizer"
1859
- msgstr "E-Mail Anpassungen"
1860
-
1861
- #: ../admin/basic-info.php:135
1862
- msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
1863
- msgstr "Personalisieren Sie alle E-Mails die an Benutzer oder Administratoren gesendet werden. Bei der Registrierung, E-Mail-Bestätigung, Admin Genehmigung / un-Zulassung."
1864
-
1865
- #: ../admin/basic-info.php:138
1866
- #: ../modules/custom-redirects/custom-redirects.php:29
1867
- #: ../modules/modules.php:32 ../modules/modules.php:132
1868
- msgid "Custom Redirects"
1869
- msgstr "Benutzerdefinierte Umleitungen"
1870
-
1871
- #: ../admin/basic-info.php:139
1872
- 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."
1873
- msgstr "Halten Sie Ihre Benutzer heraus aus dem WordPress-Dashboard, leiten Sie sie an der Front-Seite nach dem Login oder Registrierung um, alles ist nur wenige Klicks entfernt."
1874
-
1875
- #: ../admin/basic-info.php:144 ../modules/modules.php:97
1876
- msgid "Multiple Registration Forms"
1877
- msgstr "Mehrere Anmeldeformulare"
1878
-
1879
- #: ../admin/basic-info.php:145
1880
- msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
1881
- msgstr "Richten Sie mehrere Anmeldeformulare mit verschiedenen Feldern für bestimmte Benutzerrollen ein. Erfassen Sie verschiedene Informationen von verschiedene Arten von Benutzern."
1882
-
1883
- #: ../admin/basic-info.php:148 ../modules/modules.php:104
1884
- msgid "Multiple Edit-profile Forms"
1885
- msgstr "Mehrere Profilbearbeitungs-Formulare"
1886
-
1887
- #: ../admin/basic-info.php:149
1888
- msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
1889
- msgstr "Ermöglichen Sie verschiedenen Benutzerrollen, ihre spezifischen Informationen zu bearbeiten. Errichten Sie mehrere Profil Bearbeitungs-Formulare mit verschiedenen Felder für bestimmte Benutzerrollen."
1890
-
1891
- #: ../admin/basic-info.php:161
1892
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
1893
- msgstr "* nur verfügbar in den %1$sHobbyist und Pro-Versionen %2$s."
1894
-
1895
- #: ../admin/basic-info.php:162
1896
- msgid "** only available in the %1$sPro version%2$s."
1897
- msgstr "** nur in der %1$sPro Version%2$s verfügbar."
1898
-
1899
- #: ../admin/general-settings.php:42
1900
- msgid "Load Profile Builder's own CSS file in the front-end:"
1901
- msgstr "Laden Sie die CSS-Datei vom Profil-Generator in die Front-End hoch"
1902
-
1903
- #: ../admin/general-settings.php:45 ../admin/general-settings.php:60
1904
- #: ../admin/general-settings.php:114
1905
- #: ../modules/multiple-forms/register-forms.php:225
1906
- #: ../modules/multiple-forms/register-forms.php:226
1907
- #: ../modules/user-listing/userlisting.php:1303
1908
- msgid "Yes"
1909
- msgstr "Ja"
1910
-
1911
- #: ../admin/general-settings.php:47
1912
- msgid "You can find the default file here: %1$s"
1913
- msgstr "Sie finden die Standard-Datei hier:%1$s"
1914
-
1915
- #: ../admin/general-settings.php:56
1916
- msgid "\"Email Confirmation\" Activated:"
1917
- msgstr "\"E-Mail-Bestätigung\" aktiviert:"
1918
-
1919
- #: ../admin/general-settings.php:61 ../admin/general-settings.php:115
1920
- #: ../modules/multiple-forms/register-forms.php:225
1921
- #: ../modules/multiple-forms/register-forms.php:226
1922
- msgid "No"
1923
- msgstr "Nein"
1924
-
1925
- #: ../admin/general-settings.php:64
1926
- 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."
1927
- msgstr "Auf Einzelstandort-Site Installationen funktioniert dieses nur mit Front-End-Formen . Es wird empfohlen die WP-Standard-Registrierung auf einen Profil-Generator umzuleiten, indem man das \"Custom Redirects\" Addon benutzt."
1928
-
1929
- #: ../admin/general-settings.php:65
1930
- msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
1931
- msgstr "Die Feature \"E-Mail-Bestätigung\" ist aktiv (standardmäßig) auf WPMU-Installationen."
1932
-
1933
- #: ../admin/general-settings.php:67
1934
- msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
1935
- msgstr "Sie können eine Liste der unbestätigten Emailadressen unter %1$sUsers > alle Benutzer > E-Mail Bestätigung%2$s finden."
1936
-
1937
- #: ../admin/general-settings.php:79
1938
- msgid "\"Email Confirmation\" Landing Page:"
1939
- msgstr "\"E-Mail-Bestätigung\" Landeseite:"
1940
-
1941
- #: ../admin/general-settings.php:84
1942
- msgid "Existing Pages"
1943
- msgstr "Vorhandene Seiten"
1944
-
1945
- #: ../admin/general-settings.php:99
1946
- 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."
1947
- msgstr "Geben Sie die Seite ein, wo der Benutzer umgeleitet werden sollte, wenn er sein E-Mail-Konto bestätigt. Diese Seite kann von der Registerungs- Seite(n) unterschiedlich sein und kann jederzeit geändert werden. Wenn nichts ausgewähltw wird, wird eine einfache Bestätigungsseite für den Benutzer angezeigt."
1948
-
1949
- #: ../admin/general-settings.php:110
1950
- msgid "\"Admin Approval\" Activated:"
1951
- msgstr "\"Admin Genehmigung\" aktiviert:"
1952
-
1953
- #: ../admin/general-settings.php:118
1954
- msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
1955
- msgstr "Sie können eine Liste mit allen Benutzer unter %1$sUsers > alle Benutzer > Admin Genehmigung%2$s finden."
1956
-
1957
- #: ../admin/general-settings.php:156
1958
- msgid "\"Admin Approval\" Feature:"
1959
- msgstr "\"Admin Genehmigung\" Feature:"
1960
-
1961
- #: ../admin/general-settings.php:159
1962
- 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."
1963
- msgstr "Sie entscheiden, wer ein Benutzer auf Ihrer Website ist. Sie können Benachrichtigungen per E-Mail bekommen oder können mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen. Aktivieren Sie die Admin-Genehmigung mit einem Upgrade auf %1$s der Hobbyist oder PRO Versionen %2$s."
1964
-
1965
- #: ../admin/general-settings.php:166
1966
- msgid "Allow Users to Log in With:"
1967
- msgstr "Benutzerberechtigungen zum Einloggen mit:"
1968
-
1969
- #: ../admin/general-settings.php:171 ../admin/manage-fields.php:159
1970
- #: ../features/admin-approval/class-admin-approval.php:177
1971
- #: ../features/email-confirmation/class-email-confirmation.php:167
1972
- #: ../modules/email-customizer/email-customizer.php:28
1973
- #: ../modules/user-listing/userlisting.php:92
1974
- #: ../modules/user-listing/userlisting.php:248
1975
- #: ../modules/user-listing/userlisting.php:611
1976
- #: ../modules/user-listing/userlisting.php:1259
1977
- msgid "Username"
1978
- msgstr "Benutzername"
1979
-
1980
- #: ../admin/general-settings.php:172 ../front-end/login.php:170
1981
- #: ../modules/email-customizer/email-customizer.php:29
1982
- #: ../modules/user-listing/userlisting.php:617
1983
- #: ../modules/user-listing/userlisting.php:1260
1984
- msgid "Email"
1985
- msgstr "E-Mail"
1986
-
1987
- #: ../admin/general-settings.php:184
1988
- msgid "Minimum Password Length:"
1989
- msgstr "Minimale Kennwortlänge:"
1990
-
1991
- #: ../admin/general-settings.php:189
1992
- msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
1993
- msgstr "Geben Sie die minimalen Zeichen ein, die das Kennwort haben sollten. Lassen Sie es leer für keine Untergrenze"
1994
-
1995
- #: ../admin/general-settings.php:196
1996
- msgid "Minimum Password Strength:"
1997
- msgstr "Minimale Passwortstärke:"
1998
-
1999
- #: ../admin/general-settings.php:200
2000
- msgid "Disabled"
2001
- msgstr "Deaktiviert"
2002
-
2003
- #: ../admin/manage-fields.php:12
2004
- msgid "Manage Fields"
2005
- msgstr "Felder verwalten"
2006
-
2007
- #: ../admin/manage-fields.php:13
2008
- msgid "Manage Default and Extra Fields"
2009
- msgstr "Verwalten von Standard- und Extra Felder"
2010
-
2011
- #: ../admin/manage-fields.php:94
2012
- msgid "Field Title"
2013
- msgstr "Feldtitel"
2014
-
2015
- #: ../admin/manage-fields.php:94
2016
- msgid "Title of the field"
2017
- msgstr "Titel des Feldes"
2018
-
2019
- #: ../admin/manage-fields.php:95
2020
- #: ../modules/multiple-forms/edit-profile-forms.php:241
2021
- #: ../modules/multiple-forms/register-forms.php:262
2022
- msgid "Field"
2023
- msgstr "Feld"
2024
-
2025
- #: ../admin/manage-fields.php:96
2026
- msgid "Meta-name"
2027
- msgstr "Meta-name "
2028
-
2029
- #: ../admin/manage-fields.php:96
2030
- 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"
2031
- msgstr "Benutzen Sie das in Verbindung mit den WordPress-Funktionen um den Wert in die Seite Ihrer Wahl anzuzeigen <br/> automatisch vervollständigt, aber in einigen Fällen editierbar (in diesem Fall muss es aber einzigartig sein) <br/> Die Änderung kann bei einer Anzahl von vielen Benutzer, lange dauern"
2032
-
2033
- #: ../admin/manage-fields.php:97
2034
- #: ../modules/multiple-forms/edit-profile-forms.php:242
2035
- #: ../modules/multiple-forms/register-forms.php:263
2036
- msgid "ID"
2037
- msgstr "ID"
2038
-
2039
- #: ../admin/manage-fields.php:97
2040
- #: ../modules/multiple-forms/edit-profile-forms.php:242
2041
- #: ../modules/multiple-forms/register-forms.php:263
2042
- 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"
2043
- msgstr "Ein einzigartiges, automatisch generiertes ID für dieses spezielle Feld<br/> Sie können dies in Verbindung mit Kriterien verwenden, um dieses Element bei Bedarf aufzuziehlen<br/> Nicht editierbar"
2044
-
2045
- #: ../admin/manage-fields.php:98
2046
- msgid "Description"
2047
- msgstr "Beschreibung"
2048
-
2049
- #: ../admin/manage-fields.php:98
2050
- msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
2051
- msgstr "Geben Sie eine (ausführliche) Beschreibung der Option ein die die Endbenutzer lesen können <br/> Optional"
2052
-
2053
- #: ../admin/manage-fields.php:99
2054
- msgid "Row Count"
2055
- msgstr "Zeilenanzahl"
2056
-
2057
- #: ../admin/manage-fields.php:99
2058
- msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
2059
- msgstr "Geben Sie die Anzahl der Zeilen für ein Text-Feld ein <br/> Wenn nicht angegeben, wird dieser standardmäßig auf 5 gesetzt."
2060
-
2061
- #: ../admin/manage-fields.php:100
2062
- msgid "Allowed Image Extensions"
2063
- msgstr "Erlaubte Bild-Extensions"
2064
-
2065
- #: ../admin/manage-fields.php:101
2066
- msgid "Allowed Upload Extensions"
2067
- msgstr "Zulässige Dateierweiterungen beim Hochladen"
2068
-
2069
- #: ../admin/manage-fields.php:102
2070
- msgid "Avatar Size"
2071
- msgstr "Profilbild-Größe"
2072
-
2073
- #: ../admin/manage-fields.php:102
2074
- msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
2075
- msgstr "Geben Sie einen Wert (zwischen 20 und 200) für die Größe des 'Profilbilds' ein<br/> Falls nicht angegeben, wird er standardmäßig auf 100 gesetzt"
2076
-
2077
- #: ../admin/manage-fields.php:103
2078
- msgid "Date-format"
2079
- msgstr "Datums-format"
2080
-
2081
- #: ../admin/manage-fields.php:103
2082
- 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"
2083
- msgstr "Geben Sie das Format des Datums beim Verwenden vom der Datumsauswahl ein<br/> gültige Optionen: MoMo/TT/JJ, MoMo/JJ/TT, TT/JJ/MoMo, TT/MoMo/JJ, JJ/TT/MoMo, JJ/MoMo/TT <br/> Wenn nicht angegeben, wird es standardmäßig auf MoMo/TT/JJ gesetzt. "
2084
-
2085
- #: ../admin/manage-fields.php:104
2086
- msgid "Terms of Agreement"
2087
- msgstr "Nutzungsbedingungen"
2088
-
2089
- #: ../admin/manage-fields.php:104
2090
- 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;"
2091
- msgstr "Geben Sie eine detaillierte Beschreibung der Bedingungen der Vereinbarung für den Benutzer zu lesen ein. <br/>Links können mit standard-HTML-Syntax eingefügt werden: &lt; a href =\"custom_url\"&gt;custom_text &lt;/a&gt;"
2092
-
2093
- #: ../admin/manage-fields.php:105
2094
- msgid "Options"
2095
- msgstr "Optionen"
2096
-
2097
- #: ../admin/manage-fields.php:106
2098
- msgid "Labels"
2099
- msgstr "Beschriftung "
2100
-
2101
- #: ../admin/manage-fields.php:106
2102
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
2103
- msgstr "Geben Sie eine durch Kommas getrennte Liste der Beschriftungen ein<br/>für den Benutzer sichtbar"
2104
-
2105
- #: ../admin/manage-fields.php:113
2106
- msgid "Default Value"
2107
- msgstr "Standardwert"
2108
-
2109
- #: ../admin/manage-fields.php:113
2110
- msgid "Default value of the field"
2111
- msgstr "Standardwert des Feldes"
2112
-
2113
- #: ../admin/manage-fields.php:114 ../admin/manage-fields.php:116
2114
- #: ../admin/manage-fields.php:117
2115
- msgid "Default Option"
2116
- msgstr "Standardoption"
2117
-
2118
- #: ../admin/manage-fields.php:114
2119
- msgid "Specify the option which should be selected by default"
2120
- msgstr "Geben Sie die Option, die standardmäßig ausgewählt werden sollte ein"
2121
-
2122
- #: ../admin/manage-fields.php:115
2123
- msgid "Default Option(s)"
2124
- msgstr "Standard Option(en)"
2125
-
2126
- #: ../admin/manage-fields.php:115
2127
- msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
2128
- msgstr "Geben Sie die Option, die standardmäßig überprüft werden sollten, ein <br/> Wenn mehrere Werte vorhanden sind, trennen Sie diese mit einem \",\" (Komma)"
2129
-
2130
- #: ../admin/manage-fields.php:118
2131
- msgid "Default Content"
2132
- msgstr "Standard-Inhalt"
2133
-
2134
- #: ../admin/manage-fields.php:118
2135
- msgid "Default value of the textarea"
2136
- msgstr "Standardwert der Textfeld-Komponente"
2137
-
2138
- #: ../admin/manage-fields.php:119
2139
- msgid "Required"
2140
- msgstr "Erforderlich"
2141
-
2142
- #: ../admin/manage-fields.php:119
2143
- msgid "Whether the field is required or not"
2144
- msgstr "Ob das Feld erforderlich ist oder nicht"
2145
-
2146
- #: ../admin/manage-fields.php:120
2147
- msgid "Overwrite Existing"
2148
- msgstr "Vvorhandenes überschreiben"
2149
-
2150
- #: ../admin/manage-fields.php:120
2151
- 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"
2152
- msgstr "Bei Auswahl von \"Ja\", wird das Feld in der Liste eingefügt, aber es werden alle anderen Felder aus der Datenbank, die den gleichen Meta Namen haben, überschrieben<br/> verwenden Sie dies auf eigene Gefahr"
2153
-
2154
- #: ../admin/manage-fields.php:126
2155
- msgid "Field Properties"
2156
- msgstr "Feldeigenschaften"
2157
-
2158
- #: ../admin/manage-fields.php:139
2159
- msgid "Registration & Edit Profile"
2160
- msgstr "Anmeldung & Profil Bearbeitung"
2161
-
2162
- #: ../admin/manage-fields.php:158
2163
- msgid "Name"
2164
- msgstr "Name"
2165
-
2166
- #: ../admin/manage-fields.php:159
2167
- msgid "Usernames cannot be changed."
2168
- msgstr "Benutzernamen können nicht geändert werden."
2169
-
2170
- #: ../admin/manage-fields.php:160
2171
- msgid "First Name"
2172
- msgstr "Vorname"
2173
-
2174
- #: ../admin/manage-fields.php:161
2175
- msgid "Last Name"
2176
- msgstr "Nachname"
2177
-
2178
- #: ../admin/manage-fields.php:162 ../modules/user-listing/userlisting.php:650
2179
- msgid "Nickname"
2180
- msgstr "Spitzname"
2181
-
2182
- #: ../admin/manage-fields.php:163
2183
- msgid "Display name publicly as"
2184
- msgstr "öffentlicher Anzeigename als "
2185
-
2186
- #: ../admin/manage-fields.php:164
2187
- msgid "Contact Info"
2188
- msgstr "Kontaktinformation"
2189
-
2190
- #: ../admin/manage-fields.php:165
2191
- #: ../features/admin-approval/class-admin-approval.php:180
2192
- #: ../features/email-confirmation/class-email-confirmation.php:168
2193
- #: ../modules/user-listing/userlisting.php:98
2194
- msgid "E-mail"
2195
- msgstr "E-Mail"
2196
-
2197
- #: ../admin/manage-fields.php:166
2198
- #: ../modules/email-customizer/email-customizer.php:32
2199
- #: ../modules/user-listing/userlisting.php:101
2200
- #: ../modules/user-listing/userlisting.php:632
2201
- #: ../modules/user-listing/userlisting.php:1261
2202
- msgid "Website"
2203
- msgstr "Webseite"
2204
-
2205
- #: ../admin/manage-fields.php:170
2206
- msgid "AIM"
2207
- msgstr "AIM"
2208
-
2209
- #: ../admin/manage-fields.php:171
2210
- msgid "Yahoo IM"
2211
- msgstr "Yahoo IM"
2212
-
2213
- #: ../admin/manage-fields.php:172
2214
- msgid "Jabber / Google Talk"
2215
- msgstr "Jabber / Google Talk"
2216
-
2217
- #: ../admin/manage-fields.php:175
2218
- msgid "About Yourself"
2219
- msgstr "Über sich selbst"
2220
-
2221
- #: ../admin/manage-fields.php:176 ../modules/user-listing/userlisting.php:104
2222
- #: ../modules/user-listing/userlisting.php:635
2223
- #: ../modules/user-listing/userlisting.php:1262
2224
- msgid "Biographical Info"
2225
- msgstr "Biografische Informationen"
2226
-
2227
- #: ../admin/manage-fields.php:176
2228
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2229
- msgstr "Füllen Sie ein paar biographische Informationen in dem Profil aus. Diese können auch öffentlich angezeigt werden."
2230
-
2231
- #: ../admin/manage-fields.php:177 ../front-end/recover.php:75
2232
- #: ../modules/email-customizer/email-customizer.php:30
2233
- msgid "Password"
2234
- msgstr "Kennwort"
2235
-
2236
- #: ../admin/manage-fields.php:177
2237
- msgid "Type your password."
2238
- msgstr "Geben Sie Ihr Kennwort ein."
2239
-
2240
- #: ../admin/manage-fields.php:178 ../front-end/recover.php:80
2241
- msgid "Repeat Password"
2242
- msgstr "Kennwort wiederholen"
2243
-
2244
- #: ../admin/manage-fields.php:178
2245
- msgid "Type your password again. "
2246
- msgstr "Geben Sie Ihr Kennwort erneut ein."
2247
-
2248
- #: ../admin/manage-fields.php:617 ../admin/manage-fields.php:761
2249
- msgid "You must select a field\n"
2250
- msgstr "Sie müssen ein Feld auswählen.\n"
2251
-
2252
- #: ../admin/manage-fields.php:627
2253
- msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
2254
- msgstr "Bitte wählen Sie ein anderes Feld aus. dieses ist bereits im Formular vorhanden (muss einzigartig sein)\n"
2255
-
2256
- #: ../admin/manage-fields.php:638
2257
- msgid "The entered avatar size is not between 20 and 200\n"
2258
- msgstr "Die eingegebene Profilbild-Größe ist nicht zwischen 20 und 200\n"
2259
-
2260
- #: ../admin/manage-fields.php:641
2261
- msgid "The entered avatar size is not numerical\n"
2262
- msgstr "Die eingegebenen Profilbild-Größe ist nicht numerisch\n"
2263
-
2264
- #: ../admin/manage-fields.php:649
2265
- msgid "The entered row number is not numerical\n"
2266
- msgstr "Die eingegebene Nummer der Zeile ist nicht numerisch\n"
2267
-
2268
- #: ../admin/manage-fields.php:652
2269
- msgid "You must enter a value for the row number\n"
2270
- msgstr "Sie müssen einen Wert für die Nummer der Zeile eingeben.\n"
2271
-
2272
- #: ../admin/manage-fields.php:670
2273
- msgid "The entered value for the Datepicker is not a valid date-format\n"
2274
- msgstr "Der eingegebene Wert für den Datums-picker ist kein gültiges Datumsformat\n"
2275
-
2276
- #: ../admin/manage-fields.php:673
2277
- msgid "You must enter a value for the date-format\n"
2278
- msgstr "Sie müssen einen Wert für das Datumsformat eingeben.\n"
2279
-
2280
- #: ../admin/manage-fields.php:701 ../admin/manage-fields.php:709
2281
- #: ../admin/manage-fields.php:719
2282
- msgid "That meta-name is already in use\n"
2283
- msgstr "Dieser Meta-Name wird bereits verwendet\n"
2284
-
2285
- #: ../admin/manage-fields.php:741
2286
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
2287
- msgstr "Die folgende Option(en) übereinstimmen nicht mit denen aus der Optionsliste :%s\n"
2288
-
2289
- #: ../admin/manage-fields.php:745
2290
- msgid "The following option did not coincide with the ones in the options list: %s\n"
2291
- msgstr "Die folgende Option übereinstimmt nicht mit denen, aus der Optionsliste: %s\n"
2292
-
2293
- #: ../admin/manage-fields.php:768
2294
- msgid "That field is already added in this form\n"
2295
- msgstr "Dieses Feld wurde bereits in dieser Form hinzugefügt.\n"
2296
-
2297
- #: ../admin/manage-fields.php:817
2298
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
2299
- msgstr "<pre>Titel</pre><pre>Typ</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\"> erforderlich</pre>"
2300
-
2301
- #: ../admin/manage-fields.php:817
2302
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2303
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:529
2304
- #: ../features/admin-approval/class-admin-approval.php:119
2305
- #: ../features/functions.php:641 ../features/functions.php:648
2306
- #: ../modules/multiple-forms/multiple-forms.php:416
2307
- msgid "Edit"
2308
- msgstr "Bearbeiten"
2309
-
2310
- #: ../admin/manage-fields.php:817
2311
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2312
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:530
2313
- #: ../features/admin-approval/class-admin-approval.php:124
2314
- #: ../features/admin-approval/class-admin-approval.php:235
2315
- #: ../features/email-confirmation/class-email-confirmation.php:120
2316
- #: ../features/email-confirmation/class-email-confirmation.php:217
2317
- #: ../features/functions.php:634 ../features/functions.php:648
2318
- msgid "Delete"
2319
- msgstr "Löschen"
2320
-
2321
- #: ../admin/manage-fields.php:832
2322
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
2323
- msgstr "Verwenden Sie folgende Shortcodes auf den Seiten, auf denen Sie die Formulare angezeigt haben wollen"
2324
-
2325
- #: ../admin/manage-fields.php:841
2326
- 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."
2327
- msgstr "Wenn Sie für die Anzeige verschiedener Felder bei der Registrierung und beim Bearbeiten von Profilformen interessiert sind, benutzen Sie bitte das mehrfache Anmelde & Profilbearbeitungs-Formular Addon."
2328
-
2329
- #: ../admin/register-version.php:14
2330
- msgid "Register Your Version"
2331
- msgstr "Registrieren Sie Ihre Version"
2332
-
2333
- #: ../admin/register-version.php:14
2334
- msgid "Register Version"
2335
- msgstr "Version registrieren"
2336
-
2337
- #: ../admin/register-version.php:70
2338
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
2339
- msgstr "Wenn Sie diese Version vom Profil-Generator registrieren, erhalten Sie Informationen zu Upgrades, Patches und technischen Support."
2340
-
2341
- #: ../admin/register-version.php:72
2342
- msgid " Serial Number:"
2343
- msgstr "Seriennummer:"
2344
-
2345
- #: ../admin/register-version.php:77
2346
- msgid "The serial number was successfully validated!"
2347
- msgstr "Die Seriennummer wurde erfolgreich überprüft!"
2348
-
2349
- #: ../admin/register-version.php:79
2350
- msgid "The serial number entered couldn't be validated!"
2351
- msgstr "Die eingegebene Seriennummer konnte nicht überprüft werden!"
2352
-
2353
- #: ../admin/register-version.php:83
2354
- msgid "The serial number couldn't be validated because it expired!"
2355
- msgstr "Die Seriennummer konnte nicht überprüft werden, da diese abgelaufen ist!"
2356
-
2357
- #: ../admin/register-version.php:85
2358
- 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!"
2359
- msgstr "Die Seriennummer konnte nicht überprüft werden, weil der Prozess einen timed out bekamm. Dies könnte passieren, wenn der Server nicht verfügbar ist. Bitte versuchen Sie es später erneut!"
2360
-
2361
- #: ../admin/register-version.php:87
2362
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2363
- msgstr "(z.B. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985) "
2364
-
2365
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2366
- #: ../features/functions.php:648
2367
- msgid "Content"
2368
- msgstr "Inhalt"
2369
-
2370
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:529
2371
- msgid "Edit this item"
2372
- msgstr "Dieses Element bearbeiten"
2373
-
2374
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:530
2375
- msgid "Delete this item"
2376
- msgstr "Dieses Element löschen"
2377
-
2378
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:676
2379
- msgid "Please enter a value for the required field "
2380
- msgstr "Bitte geben Sie einen Wert für das erforderliche Feld ein"
2381
-
2382
- #: ../front-end/extra-fields/upload/upload.php:122
2383
- msgid "Select File"
2384
- msgstr "Wählen Sie eine Datei"
2385
-
2386
- #: ../assets/lib/wck-api/fields/upload.php:43
2387
- #: ../front-end/extra-fields/upload/upload.php:112
2388
- msgid "Remove"
2389
- msgstr "Löschen"
2390
-
2391
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1155
2392
- msgid "Syncronize WCK"
2393
- msgstr "synchronisieren vom WCK"
2394
-
2395
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1167
2396
- msgid "Syncronize WCK Translation"
2397
- msgstr "Synchronisierung der WCK Übersetzung"
2398
-
2399
- #: ../assets/lib/wck-api/fields/nested repeater.php:8
2400
- msgid "You can add the information for the %s after you add a entry"
2401
- msgstr "Sie können die Informationen für \"%s\" hinzufügen, nachdem Sie einen Eintrag hinzufügen"
2402
-
2403
- #: ../assets/lib/wck-api/fields/upload.php:75
2404
- #: ../front-end/extra-fields/upload/upload.php:128
2405
- msgid "Upload "
2406
- msgstr "Hochladen"
2407
-
2408
- #: ../features/class-list-table.php:184
2409
- msgid "No items found."
2410
- msgstr "Keine Einträge wurden gefunden."
2411
-
2412
- #: ../features/class-list-table.php:308
2413
- msgid "Bulk Actions"
2414
- msgstr "Bulk Aktionen"
2415
-
2416
- #: ../features/class-list-table.php:318
2417
- msgid "Apply"
2418
- msgstr "anwenden"
2419
-
2420
- #: ../features/class-list-table.php:402
2421
- msgid "Show all dates"
2422
- msgstr "Alle Termine anzeigen"
2423
-
2424
- #: ../features/class-list-table.php:415
2425
- msgid "%1$s %2$d"
2426
- msgstr "%1$s %2$d "
2427
-
2428
- #: ../features/class-list-table.php:431
2429
- msgid "List View"
2430
- msgstr "Listenansicht"
2431
-
2432
- #: ../features/class-list-table.php:432
2433
- msgid "Excerpt View"
2434
- msgstr "Zitat Anzeigeseite"
2435
-
2436
- #: ../features/class-list-table.php:458
2437
- msgid "%s pending"
2438
- msgstr "%s ausstehende"
2439
-
2440
- #: ../features/class-list-table.php:566
2441
- msgid "%1$s of %2$s"
2442
- msgstr "%1$s von %2$s"
2443
-
2444
- #: ../features/class-list-table.php:713
2445
- msgid "Select All"
2446
- msgstr "Wählen Sie alle"
2447
-
2448
- #: ../features/functions.php:281
2449
- msgid "The user-validation has failed - the avatar was not deleted!"
2450
- msgstr "Die Benutzer-Validierung hat fehlgeschlagen - das Profilbild wurde nicht gelöscht!"
2451
-
2452
- #: ../features/functions.php:292
2453
- msgid "The user-validation has failed - the attachment was not deleted!"
2454
- msgstr "Die Benutzer-Validierung hat fehlgeschlagen - die Anlage wurde nicht gelöscht!"
2455
-
2456
- #: ../features/functions.php:487
2457
- msgid "Strength indicator"
2458
- msgstr "Stärkeanzeige"
2459
-
2460
- #: ../features/admin-approval/admin-approval.php:7
2461
- #: ../features/admin-approval/class-admin-approval.php:458
2462
- msgid "Admin Approval"
2463
- msgstr "Admin Bestätigung"
2464
-
2465
- #: ../features/admin-approval/admin-approval.php:21
2466
- #: ../features/email-confirmation/email-confirmation.php:58
2467
- msgid "Do you want to"
2468
- msgstr "Wollen Sie das"
2469
-
2470
- #: ../features/admin-approval/admin-approval.php:44
2471
- msgid "Your session has expired! Please refresh the page and try again"
2472
- msgstr "Ihre Sitzung ist abgelaufen! Bitte aktualisieren Sie die Seite und versuchen Sie es erneut"
2473
-
2474
- #: ../features/admin-approval/admin-approval.php:55
2475
- msgid "User successfully approved!"
2476
- msgstr "Der Benutzer wurde erfolgreich genehmigt!"
2477
-
2478
- #: ../features/admin-approval/admin-approval.php:63
2479
- msgid "User successfully unapproved!"
2480
- msgstr "Benutzer wurde erfolgreich abgelehnt!"
2481
-
2482
- #: ../features/admin-approval/admin-approval.php:69
2483
- msgid "User successfully deleted!"
2484
- msgstr "Benutzer wurde erfolgreich gelöscht!"
2485
-
2486
- #: ../features/admin-approval/admin-approval.php:74
2487
- #: ../features/admin-approval/admin-approval.php:118
2488
- #: ../features/email-confirmation/email-confirmation.php:135
2489
- msgid "You either don't have permission for that action or there was an error!"
2490
- msgstr "Sie haben entweder keine Berechtigungen für diese Aktion oder es ist ein Fehler aufgetreten!"
2491
-
2492
- #: ../features/admin-approval/admin-approval.php:85
2493
- msgid "Your session has expired! Please refresh the page and try again."
2494
- msgstr "Ihre Sitzung ist abgelaufen! Bitte aktualisieren Sie die Seite und versuchen Sie es erneut."
2495
-
2496
- #: ../features/admin-approval/admin-approval.php:97
2497
- msgid "Users successfully approved!"
2498
- msgstr "Benutzer wurden erfolgreich genehmigt!"
2499
-
2500
- #: ../features/admin-approval/admin-approval.php:106
2501
- msgid "Users successfully unapproved!"
2502
- msgstr "Benutzer wurden erfolgreich verwehrt!"
2503
-
2504
- #: ../features/admin-approval/admin-approval.php:114
2505
- msgid "Users successfully deleted!"
2506
- msgstr "Benutzer wurden erfolgreich gelöscht!"
2507
-
2508
- #: ../features/admin-approval/admin-approval.php:134
2509
- msgid "Your account on %1$s has been approved!"
2510
- msgstr "Ihr Konto auf %1$s wurde genehmigt!"
2511
-
2512
- #: ../features/admin-approval/admin-approval.php:135
2513
- #: ../features/admin-approval/admin-approval.php:138
2514
- msgid "approved"
2515
- msgstr "genehmigt"
2516
-
2517
- #: ../features/admin-approval/admin-approval.php:137
2518
- msgid "An administrator has just approved your account on %1$s (%2$s)."
2519
- msgstr "Ein Administrator hat gerade Ihr Konto %1$s (%2$s) genehmigt."
2520
-
2521
- #: ../features/admin-approval/admin-approval.php:142
2522
- msgid "Your account on %1$s has been unapproved!"
2523
- msgstr "Ihr Konto auf %1$s wurde nicht genehmigt!"
2524
-
2525
- #: ../features/admin-approval/admin-approval.php:143
2526
- #: ../features/admin-approval/admin-approval.php:146
2527
- msgid "unapproved"
2528
- msgstr "abgelehnt"
2529
-
2530
- #: ../features/admin-approval/admin-approval.php:145
2531
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
2532
- msgstr "Ein Administrator hat Ihr Konto auf %1$ s (%2$ s) nicht genehmigt. "
2533
-
2534
- #: ../features/admin-approval/admin-approval.php:164
2535
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
2536
- msgstr "<strong>Fehler</strong>: Ihr Konto muss bevor Sie sich anmelden können, vom Administrator bestätigt werden. "
2537
-
2538
- #: ../features/admin-approval/admin-approval.php:176
2539
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
2540
- msgstr "Ihr Konto muss von einem Administrator bestätigt werden, bevor Sie die \"Kennwort Wiederherstellungs\"-Funktion verwenden können."
2541
-
2542
- #: ../features/admin-approval/class-admin-approval.php:124
2543
- msgid "delete this user?"
2544
- msgstr "Wollen Sie diesen Benutzer löschen?"
2545
-
2546
- #: ../features/admin-approval/class-admin-approval.php:127
2547
- msgid "unapprove this user?"
2548
- msgstr "Ablehung dieses Benutzers?"
2549
-
2550
- #: ../features/admin-approval/class-admin-approval.php:127
2551
- #: ../features/admin-approval/class-admin-approval.php:234
2552
- msgid "Unapprove"
2553
- msgstr "nicht genehmigen"
2554
-
2555
- #: ../features/admin-approval/class-admin-approval.php:129
2556
- msgid "approve this user?"
2557
- msgstr "Wollen Sie diesen Benutzer genehmigen?"
2558
-
2559
- #: ../features/admin-approval/class-admin-approval.php:129
2560
- #: ../features/admin-approval/class-admin-approval.php:233
2561
- msgid "Approve"
2562
- msgstr "Genehmigen"
2563
-
2564
- #: ../features/admin-approval/class-admin-approval.php:178
2565
- #: ../modules/user-listing/userlisting.php:249
2566
- #: ../modules/user-listing/userlisting.php:623
2567
- #: ../modules/user-listing/userlisting.php:1264
2568
- msgid "Firstname"
2569
- msgstr "Vorname"
2570
-
2571
- #: ../features/admin-approval/class-admin-approval.php:179
2572
- #: ../modules/user-listing/userlisting.php:626
2573
- #: ../modules/user-listing/userlisting.php:1265
2574
- msgid "Lastname"
2575
- msgstr "Nachname"
2576
-
2577
- #: ../features/admin-approval/class-admin-approval.php:181
2578
- #: ../modules/user-listing/userlisting.php:124
2579
- #: ../modules/user-listing/userlisting.php:250
2580
- #: ../modules/user-listing/userlisting.php:653
2581
- #: ../modules/user-listing/userlisting.php:1268
2582
- msgid "Role"
2583
- msgstr "Rolle"
2584
-
2585
- #: ../features/admin-approval/class-admin-approval.php:182
2586
- #: ../features/email-confirmation/class-email-confirmation.php:169
2587
- msgid "Registered"
2588
- msgstr "Angemeldet"
2589
-
2590
- #: ../features/admin-approval/class-admin-approval.php:183
2591
- msgid "User-status"
2592
- msgstr "Benutzer-Status"
2593
-
2594
- #: ../features/admin-approval/class-admin-approval.php:263
2595
- msgid "Do you want to bulk approve the selected users?"
2596
- msgstr "Möchten Sie alle ausgewählten Benutzer genehmigen?"
2597
-
2598
- #: ../features/admin-approval/class-admin-approval.php:271
2599
- msgid "Do you want to bulk unapprove the selected users?"
2600
- msgstr "Möchten Sie alle ausgewählten Benutzer verwehren?"
2601
-
2602
- #: ../features/admin-approval/class-admin-approval.php:277
2603
- msgid "Do you want to bulk delete the selected users?"
2604
- msgstr "Möchten Sie alle ausgewählten Benutzer löschen?"
2605
-
2606
- #: ../features/admin-approval/class-admin-approval.php:285
2607
- #: ../features/email-confirmation/class-email-confirmation.php:278
2608
- msgid "Sorry, but you don't have permission to do that!"
2609
- msgstr "Tut uns leid, aber Sie haben keine Berechtigung dazu!"
2610
-
2611
- #: ../features/admin-approval/class-admin-approval.php:341
2612
- msgid "Approved"
2613
- msgstr "Genehmigt"
2614
-
2615
- #: ../features/admin-approval/class-admin-approval.php:343
2616
- msgid "Unapproved"
2617
- msgstr "Verwehrt"
2618
-
2619
- #: ../features/admin-approval/class-admin-approval.php:461
2620
- #: ../features/email-confirmation/class-email-confirmation.php:469
2621
- msgid "All Users"
2622
- msgstr "Alle Benutzer"
2623
-
2624
- #: ../features/email-confirmation/class-email-confirmation.php:120
2625
- msgid "delete this user from the _signups table?"
2626
- msgstr "Wollen Sie diesen Benutzer aus der _signups-Tabelle löschen?"
2627
-
2628
- #: ../features/email-confirmation/class-email-confirmation.php:121
2629
- msgid "confirm this email yourself?"
2630
- msgstr "Bestätigen Sie diese E-Mail selbst?"
2631
-
2632
- #: ../features/email-confirmation/class-email-confirmation.php:121
2633
- #: ../features/email-confirmation/class-email-confirmation.php:218
2634
- msgid "Confirm Email"
2635
- msgstr "E-Mail bestätigen"
2636
-
2637
- #: ../features/email-confirmation/class-email-confirmation.php:122
2638
- msgid "resend the activation link?"
2639
- msgstr "erneut den Aktivierungslink senden?"
2640
-
2641
- #: ../features/email-confirmation/class-email-confirmation.php:122
2642
- #: ../features/email-confirmation/class-email-confirmation.php:219
2643
- msgid "Resend Activation Email"
2644
- msgstr "Aktivierungs-E-Mail erneut senden"
2645
-
2646
- #: ../features/email-confirmation/class-email-confirmation.php:249
2647
- msgid "%s couldn't be deleted"
2648
- msgstr "%s konnte nicht gelöscht werden"
2649
-
2650
- #: ../features/email-confirmation/class-email-confirmation.php:253
2651
- msgid "All users have been successfully deleted"
2652
- msgstr "Alle Benutzer wurden erfolgreich gelöscht"
2653
-
2654
- #: ../features/email-confirmation/class-email-confirmation.php:263
2655
- msgid "The selected users have been activated"
2656
- msgstr "Die ausgewählten Benutzer wurden aktiviert"
2657
-
2658
- #: ../features/email-confirmation/class-email-confirmation.php:274
2659
- msgid "The selected users have had their activation emails resent"
2660
- msgstr "Die ausgewählten Benutzer haben ihre Aktivierung E-Mails erneut gesendet bekommen. "
2661
-
2662
- #: ../features/email-confirmation/class-email-confirmation.php:466
2663
- #: ../features/email-confirmation/email-confirmation.php:47
2664
- msgid "Users with Unconfirmed Email Address"
2665
- msgstr "Benutzer mit unbestätigte E-Mail-Adresse"
2666
-
2667
- #: ../features/email-confirmation/email-confirmation.php:110
2668
- msgid "There was an error performing that action!"
2669
- msgstr "Es gab einen Fehler bei der Durchführung dieser Aktion!"
2670
-
2671
- #: ../features/email-confirmation/email-confirmation.php:118
2672
- msgid "The selected user couldn't be deleted"
2673
- msgstr "Der ausgewählte Benutzer konnte nicht gelöscht werden"
2674
-
2675
- #: ../features/email-confirmation/email-confirmation.php:129
2676
- msgid "Email notification resent to user"
2677
- msgstr "Die E-Mail-Benachrichtigung wurde dem Benutzer erneut geschickt."
2678
-
2679
- #: ../features/email-confirmation/email-confirmation.php:384
2680
- msgid "[%1$s] Activate %2$s"
2681
- msgstr "[%1$s] Aktivieren %2$s"
2682
-
2683
- #: ../features/email-confirmation/email-confirmation.php:387
2684
- msgid ""
2685
- "To activate your user, please click the following link:\n"
2686
- "\n"
2687
- "%s%s%s\n"
2688
- "\n"
2689
- "After you activate it you will receive yet *another email* with your login."
2690
- msgstr ""
2691
- "Um den Benutzer zu aktivieren, klicken Sie bitte auf den folgenden Link:\n"
2692
- "\n"
2693
- " %s%s%s\n"
2694
- "\n"
2695
- "nach der Aktivierung werden Sie noch * eine weitere E-Mail * mit Ihrem Login erhalten."
2696
-
2697
- #: ../features/email-confirmation/email-confirmation.php:428
2698
- #: ../front-end/register.php:68
2699
- msgid "Could not create user!"
2700
- msgstr "Benutzer konnte nicht erstellt werden!"
2701
-
2702
- #: ../features/email-confirmation/email-confirmation.php:431
2703
- msgid "That username is already activated!"
2704
- msgstr "Dieser Benutzername ist bereits aktiviert worden!"
2705
-
2706
- #: ../features/email-confirmation/email-confirmation.php:453
2707
- msgid "There was an error while trying to activate the user"
2708
- msgstr "Es ist ein Fehler beim Versuch, den Benutzer zu aktivieren aufgetreten "
2709
-
2710
- #: ../features/email-confirmation/email-confirmation.php:501
2711
- #: ../modules/email-customizer/admin-email-customizer.php:73
2712
- msgid "A new subscriber has (been) registered!"
2713
- msgstr "Ein neuer Benutzer ist (wurde) registriert!"
2714
-
2715
- #: ../features/email-confirmation/email-confirmation.php:504
2716
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
2717
- msgstr "Neuen Abonnenten auf %1$s. <br/> <br/>Benutzername:%2$s <br/> E-Mail: %3$s <br/>"
2718
-
2719
- #: ../features/email-confirmation/email-confirmation.php:605
2720
- 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!"
2721
- msgstr "Das \"Admin Approval\" Feature war zum Zeitpunkt der Registrierung aktiv, also bitte denken Sie daran, dass man diesen Benutzer genehmigen muss, bevor er sich anmelden kann!"
2722
-
2723
- #: ../features/email-confirmation/email-confirmation.php:550
2724
- msgid "[%1$s] Your new account information"
2725
- msgstr "[%1$s] Ihre neuen Kontodaten"
2726
-
2727
- #: ../features/email-confirmation/email-confirmation.php:556
2728
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
2729
- msgstr "Willkommen bei %1$s! <br/> <br/> <br/>Ihr Benutzername ist: %2$s und das Kennwort: %3$s"
2730
-
2731
- #: ../features/email-confirmation/email-confirmation.php:613
2732
- #: ../front-end/register.php:116
2733
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
2734
- msgstr "Bevor Sie in ihrem Konto zugreifen können, muss ein Administrator diesen genehmigen. Sie werden per E-Mail dafür benachrichtigt."
2735
-
2736
- #: ../features/login-widget/login-widget.php:10
2737
- msgid "This login widget lets you add a login form in the sidebar."
2738
- msgstr "Mit diesem Login-Widget können Sie ein Anmeldeformular in der Seitenleiste hinzufügen."
2739
-
2740
- #: ../features/login-widget/login-widget.php:15
2741
- msgid "Profile Builder Login Widget"
2742
- msgstr "Profile Builder Login Widget"
2743
-
2744
- #: ../front-end/class-formbuilder.php:294 ../front-end/login.php:202
2745
- msgid "Register"
2746
- msgstr "Anmelden"
2747
-
2748
- #: ../features/login-widget/login-widget.php:63
2749
- msgid "Title:"
2750
- msgstr "Titel:"
2751
-
2752
- #: ../features/login-widget/login-widget.php:68
2753
- msgid "After login redirect URL (optional):"
2754
- msgstr "Umleitungs-URL nach der Anmeldung (optional):"
2755
-
2756
- #: ../features/login-widget/login-widget.php:73
2757
- msgid "Register page URL (optional):"
2758
- msgstr "Anmeldeseite-URL (optional):"
2759
-
2760
- #: ../features/login-widget/login-widget.php:78
2761
- msgid "Password Recovery page URL (optional):"
2762
- msgstr "Kennwort Wiederherstellungs-URL (optional):"
2763
-
2764
- #: ../features/upgrades/upgrades-functions.php:91
2765
- #: ../features/upgrades/upgrades-functions.php:134
2766
- msgid "The usernames cannot be changed."
2767
- msgstr "Die Benutzernamen können nicht geändert werden."
2768
-
2769
- #: ../front-end/class-formbuilder.php:89
2770
- msgid "Only an administrator can add new users."
2771
- msgstr "Nur ein Administrator kann neue Benutzer hinzufügen."
2772
-
2773
- #: ../front-end/class-formbuilder.php:99
2774
- msgid "Users can register themselves or you can manually create users here."
2775
- msgstr "Benutzer können sich selbst anmelden, oder Sie können bei Hand Benutzer hier erstellen."
2776
-
2777
- #: ../front-end/class-formbuilder.php:102
2778
- msgid "Users cannot currently register themselves, but you can manually create users here."
2779
- msgstr "Benutzer können sich derzeit sich selbst nicht registrieren, aber Sie können Benutzer hier manuell erstellen"
2780
-
2781
- #: ../front-end/class-formbuilder.php:114
2782
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
2783
- msgstr "Sie sind derzeit als %1S angemeldet . Sie brauchen kein anderes Konto. %2s"
2784
-
2785
- #: ../front-end/class-formbuilder.php:114
2786
- msgid "Log out of this account."
2787
- msgstr "Abmeldung von diesem Konto."
2788
-
2789
- #: ../front-end/class-formbuilder.php:114
2790
- msgid "Logout"
2791
- msgstr "Ausloggen"
2792
-
2793
- #: ../front-end/class-formbuilder.php:120
2794
- msgid "You must be logged in to edit your profile."
2795
- msgstr "Sie müssen angemeldet sein, um Ihr Profil zu bearbeiten."
2796
-
2797
- #: ../front-end/class-formbuilder.php:142
2798
- msgid "here"
2799
- msgstr "hier"
2800
-
2801
- #: ../front-end/class-formbuilder.php:144
2802
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
2803
- msgstr "Sie werden bald automatisch umgeleitet. Wenn Sie diese Seite mehr als %1$d Sekunden sehen, klicken Sie bitte hier %2$s.%3$s"
2804
-
2805
- #: ../front-end/class-formbuilder.php:239
2806
- #: ../front-end/class-formbuilder.php:246
2807
- msgid "The account %1s has been successfully created!"
2808
- msgstr "Das Konto %1S wurde erfolgreich erstellt!"
2809
-
2810
- #: ../front-end/class-formbuilder.php:242
2811
- #: ../front-end/class-formbuilder.php:252
2812
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
2813
- msgstr "Bevor Sie auf Ihr Konto %1S zugreifen können, müssen Sie Ihre E-Mail-Adresse bestätigen. Bitte überprüfen Sie Ihren Posteingang und klicken Sie auf den Aktivierungslink."
2814
-
2815
- #: ../front-end/class-formbuilder.php:248
2816
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
2817
- msgstr "Bevor Sie auf Ihr Konto %1S zugreifen können, muss ein Administrator diesen genehmigen. Sie werden darüber per E-Mail weiter benachrichtigt."
2818
-
2819
- #: ../front-end/class-formbuilder.php:262
2820
- msgid "Your profile has been successfully updated!"
2821
- msgstr "Ihr Profil wurde erfolgreich aktualisiert!"
2822
-
2823
- #: ../front-end/class-formbuilder.php:272
2824
- msgid "There was an error in the submitted form"
2825
- msgstr "Es gab einen Fehler in das gesendete Formular"
2826
-
2827
- #: ../front-end/class-formbuilder.php:294
2828
- msgid "Add User"
2829
- msgstr "Benutzer hinzufügen"
2830
-
2831
- #: ../admin/add-ons.php:170 ../front-end/class-formbuilder.php:297
2832
- msgid "Update"
2833
- msgstr "Aktualisierung"
2834
-
2835
- #: ../front-end/class-formbuilder.php:340
2836
- #: ../front-end/extra-fields/extra-fields.php:35
2837
- msgid "The avatar was successfully deleted!"
2838
- msgstr "Das Profilbild wurde erfolgreich gelöscht!"
2839
-
2840
- #: ../front-end/class-formbuilder.php:340
2841
- #: ../front-end/extra-fields/extra-fields.php:37
2842
- msgid "The following attachment was successfully deleted:"
2843
- msgstr "Die folgende Anlage wurde erfolgreich gelöscht:"
2844
-
2845
- #: ../front-end/class-formbuilder.php:352
2846
- msgid "Send these credentials via email."
2847
- msgstr "Senden Sie diese Anmeldeinformationen per E-Mail."
2848
-
2849
- #: ../front-end/extra-fields/extra-fields.php:99 ../front-end/login.php:89
2850
- #: ../front-end/login.php:96 ../front-end/login.php:110
2851
- #: ../front-end/recover.php:17 ../front-end/recover.php:228
2852
- msgid "ERROR"
2853
- msgstr "FEHLER"
2854
-
2855
- #: ../front-end/login.php:89
2856
- msgid "The password you entered is incorrect."
2857
- msgstr "Das eingegebene Kennwort ist falsch."
2858
-
2859
- #: ../front-end/login.php:90 ../front-end/login.php:97
2860
- msgid "Password Lost and Found."
2861
- msgstr "Kennwort vergessen und gefunden."
2862
-
2863
- #: ../front-end/login.php:90 ../front-end/login.php:97
2864
- msgid "Lost your password"
2865
- msgstr "Passwort vergessen"
2866
-
2867
- #: ../front-end/login.php:110
2868
- msgid "Both fields are empty."
2869
- msgstr "Beide Felder sind leer."
2870
-
2871
- #: ../front-end/login.php:241
2872
- msgid "You are currently logged in as %1$s. %2$s"
2873
- msgstr "Sie sind derzeit als %1$s angemeldet. %2$s "
2874
-
2875
- #: ../front-end/login.php:240 ../front-end/logout.php:17
2876
- msgid "Log out of this account"
2877
- msgstr "Von diesem Konto abmelden"
2878
-
2879
- #: ../front-end/login.php:240
2880
- msgid "Log out"
2881
- msgstr "Ausloggen"
2882
-
2883
- #: ../front-end/recover.php:17
2884
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
2885
- msgstr "Ihr Konto muss von einem Administrator bestätigt werden, bevor Sie das Feature \"Kennwort zurücksetzen\" verwenden können."
2886
-
2887
- #: ../front-end/recover.php:91
2888
- msgid "Reset Password"
2889
- msgstr "Passwort zurücksetzen"
2890
-
2891
- #: ../front-end/recover.php:111
2892
- msgid "Please enter your username or email address."
2893
- msgstr "Bitte geben Sie Ihren Benutzernamen oder E-Mail Adresse ein."
2894
-
2895
- #: ../front-end/recover.php:112
2896
- msgid "You will receive a link to create a new password via email."
2897
- msgstr "Sie werden einen Link, um ein neues Passwort zu erstellen, per E-Mail erhalten"
2898
-
2899
- #: ../front-end/recover.php:119
2900
- msgid "Username or E-mail"
2901
- msgstr "Benutzername oder E-mail"
2902
-
2903
- #: ../front-end/recover.php:125
2904
- msgid "Get New Password"
2905
- msgstr "Neues Passwort anfordern"
2906
-
2907
- #: ../front-end/recover.php:166
2908
- msgid "The username entered wasn't found in the database!"
2909
- msgstr "Der eingegebene Benutzername wurde nicht in der Datenbank gefunden!"
2910
-
2911
- #: ../front-end/recover.php:166
2912
- msgid "Please check that you entered the correct username."
2913
- msgstr "Bitte überprüfen Sie, ob Sie den richtigen Benutzernamen eingegeben haben."
2914
-
2915
- #: ../front-end/recover.php:181
2916
- msgid "Check your e-mail for the confirmation link."
2917
- msgstr "Überprüfen Sie Ihre E-mail für den Bestätigungs-Link."
2918
-
2919
- #: ../front-end/recover.php:216
2920
- 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"
2921
- msgstr "Jemand hat verlangt, dass das Kennwort für dieses Konto zurückgesetzt werden soll: <b>%1$s</b> <br/> Wenn das ein Fehler war, bitte diese E-Mail einfach ignorieren und es wird nichts geschehen <br/>Um Ihr Passwort zurückzusetzen, besuchen Sie folgenden Link: %2$s"
2922
-
2923
- #: ../front-end/recover.php:219
2924
- msgid "Password Reset from \"%1$s\""
2925
- msgstr "Zurücksetzen des Kennworts \"%1$s\""
2926
-
2927
- #: ../front-end/recover.php:228
2928
- msgid "There was an error while trying to send the activation link to %1$s!"
2929
- msgstr "Es gab einen Fehler beim Versuch den Aktivierungslink zu senden%1$s!"
2930
-
2931
- #: ../front-end/recover.php:188
2932
- msgid "The email address entered wasn't found in the database!"
2933
- msgstr "Die eingegebene E-Mail-Adresse wurde nicht in der Datenbank gefunden!"
2934
-
2935
- #: ../front-end/recover.php:188
2936
- msgid "Please check that you entered the correct email address."
2937
- msgstr "Bitte überprüfen Sie, ob Sie die richtige E-Mail-Adresse eingegeben haben."
2938
-
2939
- #: ../front-end/recover.php:256
2940
- msgid "Your password has been successfully changed!"
2941
- msgstr "Ihr Passwort wurde erfolgreich geändert!"
2942
-
2943
- #: ../front-end/recover.php:275
2944
- msgid "You have successfully reset your password to: %1$s"
2945
- msgstr "Sie haben Ihr Kennwort erfolgreich zurückgesetzt: %1$s"
2946
-
2947
- #: ../front-end/recover.php:278 ../front-end/recover.php:292
2948
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
2949
- msgstr "Kennwort erfolgreich zurückgesetzt für %1$s auf \"%2$s\""
2950
-
2951
- #: ../front-end/recover.php:289
2952
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
2953
- msgstr "%1$s hat eine Kennwortänderung über die Funktion \"Kennwort zurücksetzen\" angefordert. <br/>Ihr neues Passwort ist: %2$s"
2954
-
2955
- #: ../front-end/recover.php:308
2956
- msgid "The entered passwords don't match!"
2957
- msgstr "Die eingegebenen Kennworte stimmen nicht überein!"
2958
-
2959
- #: ../front-end/recover.php:353
2960
- msgid "ERROR:"
2961
- msgstr "FEHLER:"
2962
-
2963
- #: ../front-end/recover.php:353
2964
- msgid "Invalid key!"
2965
- msgstr "Ungültiger Schlüssel!"
2966
-
2967
- #: ../front-end/register.php:46
2968
- msgid "Invalid activation key!"
2969
- msgstr "Ungültiger Aktivierungsschlüssel!"
2970
-
2971
- #: ../front-end/register.php:50
2972
- msgid "This username is now active!"
2973
- msgstr "Dieser Benutzername ist jetzt aktiv!"
2974
-
2975
- #: ../front-end/register.php:71
2976
- msgid "This username is already activated!"
2977
- msgstr "Dieser Benutzername ist bereits aktiviert!"
2978
-
2979
- #: ../front-end/register.php:115
2980
- msgid "Your email was successfully confirmed."
2981
- msgstr "Ihre E-Mail wurde erfolgreich bestätigt."
2982
-
2983
- #: ../front-end/register.php:144
2984
- msgid "There was an error while trying to activate the user."
2985
- msgstr "Ein Fehler ist aufgetreten, während es versucht wurde den Benutzer zu aktivieren."
2986
-
2987
- #: ../front-end/default-fields/email/email.php:44
2988
- msgid "The email you entered is not a valid email address."
2989
- msgstr "Die E-Mail die Sie eingegeben haben, ist keine gültige e-Mail-Adresse."
2990
-
2991
- #: ../front-end/default-fields/email/email.php:57
2992
- #: ../front-end/default-fields/email/email.php:64
2993
- msgid "This email is already reserved to be used soon."
2994
- msgstr "Diese E-Mail ist bereits reserviert worden, um bald verwendet zu werden."
2995
-
2996
- #: ../front-end/default-fields/email/email.php:57
2997
- #: ../front-end/default-fields/email/email.php:64
2998
- #: ../front-end/default-fields/email/email.php:73
2999
- #: ../front-end/default-fields/email/email.php:84
3000
- #: ../front-end/default-fields/username/username.php:50
3001
- #: ../front-end/default-fields/username/username.php:65
3002
- msgid "Please try a different one!"
3003
- msgstr "Bitte versuchen Sie es mit einem anderen!"
3004
-
3005
- #: ../front-end/default-fields/email/email.php:73
3006
- #: ../front-end/default-fields/email/email.php:84
3007
- msgid "This email is already in use."
3008
- msgstr "Diese E-Mail ist bereits im Einsatz."
3009
-
3010
- #: ../front-end/default-fields/password-repeat/password-repeat.php:37
3011
- #: ../front-end/default-fields/password-repeat/password-repeat.php:41
3012
- msgid "The passwords do not match"
3013
- msgstr "Die Kennwörter stimmen nicht überein."
3014
-
3015
- #: ../front-end/default-fields/username/username.php:50
3016
- msgid "This username already exists."
3017
- msgstr "Dieser Benutzername ist bereits vorhanden."
3018
-
3019
- #: ../front-end/default-fields/username/username.php:65
3020
- msgid "This username is already reserved to be used soon."
3021
- msgstr "Dieser Benutzername ist bereits reserviert, um bald verwendet zu werden."
3022
-
3023
- #: ../modules/user-listing/userlisting.php:247
3024
- msgid "Avatar"
3025
- msgstr "Profil-Bild"
3026
-
3027
- #: ../front-end/extra-fields/avatar/avatar.php:72
3028
- #: ../front-end/extra-fields/checkbox/checkbox.php:45
3029
- #: ../front-end/extra-fields/datepicker/datepicker.php:40
3030
- #: ../front-end/extra-fields/input-hidden/input-hidden.php:34
3031
- #: ../front-end/extra-fields/input/input.php:30
3032
- #: ../front-end/extra-fields/radio/radio.php:44
3033
- #: ../front-end/extra-fields/select-multiple/select-multiple.php:46
3034
- #: ../front-end/extra-fields/select-timezone/select-timezone.php:44
3035
- #: ../front-end/extra-fields/select/select.php:46
3036
- #: ../front-end/extra-fields/textarea/textarea.php:30
3037
- #: ../front-end/extra-fields/upload/upload.php:70
3038
- #: ../front-end/extra-fields/wysiwyg/wysiwyg.php:33
3039
- msgid "required"
3040
- msgstr "Erforderlich"
3041
-
3042
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
3043
- msgid "To use reCAPTCHA you must get an API key from"
3044
- msgstr "Um ReCAPTCHA zu verwenden müssen Sie einen API-Schlüssel von hier nehmen:"
3045
-
3046
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:131
3047
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
3048
- msgstr "Aus Sicherheitsgründen müssen Sie den remote-Ip eingeben um ReCAPTCHA zu benutzen!"
3049
-
3050
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:192
3051
- msgid "To use reCAPTCHA you must get an API public key from:"
3052
- msgstr "Um ReCAPTCHA zu verwenden muss man eine öffentliche API-Key von hier hohlen:"
3053
-
3054
- #: ../modules/modules.php:11 ../modules/modules.php:80
3055
- msgid "Modules"
3056
- msgstr "Module"
3057
-
3058
- #: ../modules/modules.php:81
3059
- msgid "Here you can activate / deactivate available modules for Profile Builder."
3060
- msgstr "Hier können Sie die verfügbaren Module für Profil-Generator aktivieren/deaktivieren."
3061
-
3062
- #: ../modules/modules.php:91
3063
- msgid "Name/Description"
3064
- msgstr "Name/Beschreibung"
3065
-
3066
- #: ../modules/modules.php:92
3067
- msgid "Status"
3068
- msgstr "Status"
3069
-
3070
- #: ../modules/custom-redirects/custom-redirects.php:48
3071
- #: ../modules/custom-redirects/custom-redirects.php:58
3072
- #: ../modules/custom-redirects/custom-redirects.php:68
3073
- #: ../modules/custom-redirects/custom-redirects.php:94
3074
- #: ../modules/custom-redirects/custom-redirects.php:104
3075
- #: ../modules/custom-redirects/custom-redirects.php:114
3076
- #: ../modules/custom-redirects/custom-redirects.php:124
3077
- #: ../modules/modules.php:99 ../modules/modules.php:106
3078
- #: ../modules/modules.php:113 ../modules/modules.php:120
3079
- #: ../modules/modules.php:127 ../modules/modules.php:134
3080
- msgid "Active"
3081
- msgstr "Aktiv"
3082
-
3083
- #: ../modules/custom-redirects/custom-redirects.php:49
3084
- #: ../modules/custom-redirects/custom-redirects.php:59
3085
- #: ../modules/custom-redirects/custom-redirects.php:69
3086
- #: ../modules/custom-redirects/custom-redirects.php:95
3087
- #: ../modules/custom-redirects/custom-redirects.php:105
3088
- #: ../modules/custom-redirects/custom-redirects.php:115
3089
- #: ../modules/custom-redirects/custom-redirects.php:125
3090
- #: ../modules/modules.php:100 ../modules/modules.php:107
3091
- #: ../modules/modules.php:114 ../modules/modules.php:121
3092
- #: ../modules/modules.php:128 ../modules/modules.php:135
3093
- msgid "Inactive"
3094
- msgstr "inaktiv"
3095
-
3096
- #: ../modules/email-customizer/admin-email-customizer.php:11
3097
- #: ../modules/email-customizer/admin-email-customizer.php:12
3098
- #: ../modules/modules.php:118
3099
- msgid "Admin Email Customizer"
3100
- msgstr "Anpassen der Admin-E-Mails"
3101
-
3102
- #: ../modules/email-customizer/user-email-customizer.php:11
3103
- #: ../modules/email-customizer/user-email-customizer.php:12
3104
- #: ../modules/modules.php:125
3105
- msgid "User Email Customizer"
3106
- msgstr "Anpassen der Benutzer-E-Mails"
3107
-
3108
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
3109
- #: ../modules/class-mustache-templates/class-mustache-templates.php:242
3110
- msgid "Save"
3111
- msgstr "Speichern"
3112
-
3113
- #: ../modules/custom-redirects/custom-redirects.php:35
3114
- msgid "Redirects on custom page requests:"
3115
- msgstr "Umleitung auf benutzerdefinierte Seitenanfragen:"
3116
-
3117
- #: ../modules/custom-redirects/custom-redirects.php:39
3118
- #: ../modules/custom-redirects/custom-redirects.php:85
3119
- msgid "Action"
3120
- msgstr "Aktion"
3121
-
3122
- #: ../modules/custom-redirects/custom-redirects.php:40
3123
- #: ../modules/custom-redirects/custom-redirects.php:86
3124
- #: ../modules/multiple-forms/edit-profile-forms.php:202
3125
- #: ../modules/multiple-forms/register-forms.php:226
3126
- msgid "Redirect"
3127
- msgstr "Umadressierung "
3128
-
3129
- #: ../modules/custom-redirects/custom-redirects.php:41
3130
- #: ../modules/custom-redirects/custom-redirects.php:87
3131
- #: ../modules/multiple-forms/edit-profile-forms.php:204
3132
- #: ../modules/multiple-forms/register-forms.php:228
3133
- msgid "URL"
3134
- msgstr "URL"
3135
-
3136
- #: ../modules/custom-redirects/custom-redirects.php:46
3137
- msgid "After Registration:"
3138
- msgstr "Nach der Anmeldung:"
3139
-
3140
- #: ../modules/custom-redirects/custom-redirects.php:56
3141
- msgid "After Login:"
3142
- msgstr "Nach dem Login:"
3143
-
3144
- #: ../modules/custom-redirects/custom-redirects.php:66
3145
- msgid "Recover Password (*)"
3146
- msgstr "Kennwort zurücksetzen (*)"
3147
-
3148
- #: ../modules/custom-redirects/custom-redirects.php:77
3149
- 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."
3150
- msgstr "Wenn aktiviert, leitet diese Funktion den Benutzer auf der Standard-Wordpress-Kennwortwiederherstellungsseite und auf dem \"Kennwort vergessen?\"-Link der auf Front-End-Login-Seite von Profil-Generator verwendet wird, um."
3151
-
3152
- #: ../modules/custom-redirects/custom-redirects.php:81
3153
- msgid "Redirects on default WordPress page requests:"
3154
- msgstr "Leitet auf der Standard-WordPress-Seiten-Anforderungen um:"
3155
-
3156
- #: ../modules/custom-redirects/custom-redirects.php:92
3157
- msgid "Default WordPress Login Page"
3158
- msgstr "Standard WordPress Anmelde-Seite"
3159
-
3160
- #: ../modules/custom-redirects/custom-redirects.php:102
3161
- msgid "Default WordPress Logout Page"
3162
- msgstr "Standard WordPress-Abmeldeseite"
3163
-
3164
- #: ../modules/custom-redirects/custom-redirects.php:112
3165
- msgid "Default WordPress Register Page"
3166
- msgstr "Standard WordPress Registrierungs-Seite"
3167
-
3168
- #: ../modules/custom-redirects/custom-redirects.php:122
3169
- msgid "Default WordPress Dashboard (*)"
3170
- msgstr "Standard-WordPress-Dashboard (*)"
3171
-
3172
- #: ../modules/custom-redirects/custom-redirects.php:133
3173
- msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
3174
- msgstr "Leitet jede Benutzerrolle außer denen mit Administratorrechten (können Optionen verwalten) um."
3175
-
3176
- #: ../modules/email-customizer/admin-email-customizer.php:38
3177
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
3178
- msgstr "Diese Einstellungen werden auch auf der \"Benutzer E-Mail Kustomisierung\" Einstellungs-Seite beim Speichern repliziert."
3179
-
3180
- #: ../modules/email-customizer/admin-email-customizer.php:41
3181
- #: ../modules/email-customizer/user-email-customizer.php:41
3182
- msgid "From (name)"
3183
- msgstr "Von (Name)"
3184
-
3185
- #: ../modules/email-customizer/admin-email-customizer.php:49
3186
- #: ../modules/email-customizer/user-email-customizer.php:49
3187
- msgid "From (reply-to email)"
3188
- msgstr "Von (Antwort auf E-Mail)"
3189
-
3190
- #: ../modules/email-customizer/admin-email-customizer.php:57
3191
- #: ../modules/email-customizer/user-email-customizer.php:57
3192
- msgid "Common Settings"
3193
- msgstr "Allgemeine Einstellungen"
3194
-
3195
- #: ../modules/email-customizer/admin-email-customizer.php:60
3196
- msgid ""
3197
- "\n"
3198
- "<p>New subscriber on {{site_name}}.</p>\n"
3199
- "<p>Username:{{username}}</p>\n"
3200
- "<p>E-mail:{{user_email}}</p>\n"
3201
- msgstr ""
3202
- "\n"
3203
- "<p>Neue Abonnenten für {{site_name}}.</p>\n"
3204
- "<p>Benutzername:{{username}}</p>\n"
3205
- "<p>E-mail:{{user_email}}</p>\n"
3206
-
3207
- #: ../modules/email-customizer/admin-email-customizer.php:69
3208
- #: ../modules/email-customizer/admin-email-customizer.php:99
3209
- #: ../modules/email-customizer/admin-email-customizer.php:126
3210
- #: ../modules/email-customizer/user-email-customizer.php:71
3211
- #: ../modules/email-customizer/user-email-customizer.php:99
3212
- #: ../modules/email-customizer/user-email-customizer.php:128
3213
- #: ../modules/email-customizer/user-email-customizer.php:155
3214
- #: ../modules/email-customizer/user-email-customizer.php:183
3215
- #: ../modules/email-customizer/user-email-customizer.php:214
3216
- #: ../modules/email-customizer/user-email-customizer.php:241
3217
- msgid "Email Subject"
3218
- msgstr "E-Mail Betreff"
3219
-
3220
- #: ../modules/email-customizer/admin-email-customizer.php:84
3221
- msgid "Default Registration & Registration with Email Confirmation"
3222
- msgstr "Standard-Anmeldung & Anmeldung mit E-Mail-Bestätigung"
3223
-
3224
- #: ../modules/email-customizer/admin-email-customizer.php:87
3225
- msgid ""
3226
- "\n"
3227
- "<p>New subscriber on {{site_name}}.</p>\n"
3228
- "<p>Username:{{username}}</p>\n"
3229
- "<p>E-mail:{{user_email}}</p>\n"
3230
- "<p>The Admin Approval feature was activated at the time of registration,\n"
3231
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
3232
- msgstr ""
3233
- "<p>Neue Abonnenten für {{site_name}}.</p>\n"
3234
- "<p>Benutzername: {{username}}</p> \n"
3235
- "<p>E-Mail :{{user_email}}</p> \n"
3236
- "<p>Die Admin Genehmigung Feature wurde zum Zeitpunkt der Registrierung aktiviert.\n"
3237
- "Also bitte denken Sie daran, dass dieser Benutzer genehmigt sein muss, bevor er sich anmelden kann !</p>\n"
3238
-
3239
- #: ../modules/email-customizer/admin-email-customizer.php:114
3240
- #: ../modules/email-customizer/user-email-customizer.php:143
3241
- msgid "Registration with Admin Approval"
3242
- msgstr "Anmeldung mit Admin Genehmigung"
3243
-
3244
- #: ../modules/email-customizer/email-customizer.php:7
3245
- msgid "Available Tags"
3246
- msgstr "Verfügbare Tags"
3247
-
3248
- #: ../features/email-confirmation/class-email-confirmation.php:91
3249
- #: ../features/email-confirmation/class-email-confirmation.php:170
3250
- #: ../modules/email-customizer/email-customizer.php:11
3251
- msgid "User Meta"
3252
- msgstr "Benutzer-Meta"
3253
-
3254
- #: ../modules/email-customizer/email-customizer.php:21
3255
- msgid "Site Url"
3256
- msgstr "Website-Url"
3257
-
3258
- #: ../modules/email-customizer/email-customizer.php:22
3259
- msgid "Site Name"
3260
- msgstr "Website Name"
3261
-
3262
- #: ../modules/email-customizer/email-customizer.php:25
3263
- #: ../modules/user-listing/userlisting.php:133
3264
- msgid "User Id"
3265
- msgstr "Benutzer-Id"
3266
-
3267
- #: ../modules/email-customizer/email-customizer.php:33
3268
- msgid "Reply To"
3269
- msgstr "Antwort auf"
3270
-
3271
- #: ../modules/email-customizer/email-customizer.php:36
3272
- msgid "Activation Key"
3273
- msgstr "Aktivierungsschlüssel"
3274
-
3275
- #: ../modules/email-customizer/email-customizer.php:37
3276
- msgid "Activation Url"
3277
- msgstr "Aktivierungs-Url"
3278
-
3279
- #: ../modules/email-customizer/email-customizer.php:38
3280
- msgid "Activation Link"
3281
- msgstr "Aktivierungs-Link"
3282
-
3283
- #: ../modules/email-customizer/user-email-customizer.php:64
3284
- msgid ""
3285
- "\n"
3286
- "<h3>Welcome to {{site_name}}!</h3>\n"
3287
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3288
- msgstr ""
3289
- "\n"
3290
- "<h3>Willkommen bei {{Site_name}}!</h3> <p>Ihr Benutzername ist: {{Username}} und das Passwort ist: {{Passwort}}</p>\n"
3291
-
3292
- #: ../modules/email-customizer/user-email-customizer.php:85
3293
- msgid "Default Registration"
3294
- msgstr "Standard-Anmeldung"
3295
-
3296
- #: ../modules/email-customizer/user-email-customizer.php:91
3297
- msgid ""
3298
- "\n"
3299
- "<p>To activate your user, please click the following link:<br/>\n"
3300
- "{{{activation_link}}}</p>\n"
3301
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
3302
- msgstr ""
3303
- "\n"
3304
- "<p>Um Ihren Benutzer zu aktivieren, klicken Sie bitte auf den folgenden Link: <br/> \n"
3305
- "{{{activation_link}}}</p>\n"
3306
- "<p>Nach der Aktivierung erhalten Sie eine weitere E-Mail mit Ihren Anmeldeinformationen.</p>\n"
3307
-
3308
- #: ../modules/email-customizer/user-email-customizer.php:103
3309
- msgid "[{{site_name}}] Activate {{username}}"
3310
- msgstr "[{{site_name}}] Aktivieren {{username}}"
3311
-
3312
- #: ../modules/email-customizer/user-email-customizer.php:114
3313
- msgid "Registration with Email Confirmation"
3314
- msgstr "Anmeldung mit E-Mail-Bestätigung"
3315
-
3316
- #: ../modules/email-customizer/user-email-customizer.php:120
3317
- msgid ""
3318
- "\n"
3319
- "<h3>Welcome to {{site_name}}!</h3>\n"
3320
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3321
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
3322
- msgstr ""
3323
- "\n"
3324
- "<h3>Willkommen bei {{site_name}}!</h3>\n"
3325
- "<p>Ihr Benutzername ist:{{username}} und das Kennwort:{{password}}</p>\n"
3326
- "<p>Bevor Sie in Ihr Konto zugreifen können, muss ein Administrator diesen Benutzer genehmigen. Sie werden per E-Mail weiter benachrichtigt.</p>\n"
3327
-
3328
- #: ../modules/email-customizer/user-email-customizer.php:132
3329
- msgid "A new account has been created for you on {{site_name}}"
3330
- msgstr "Ein neues Konto wurde für Sie auf {{Site_name}} geschaffen"
3331
-
3332
- #: ../modules/email-customizer/user-email-customizer.php:148
3333
- msgid ""
3334
- "\n"
3335
- "<h3>Good News!</h3>\n"
3336
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
3337
- msgstr ""
3338
- "\n"
3339
- "<h3>Gute Nachricht!</h3>\n"
3340
- "<p>Ein Administrator hat Ihr Konto genehmigt: {{username}} auf {{site_name}}.</p>\n"
3341
-
3342
- #: ../modules/email-customizer/user-email-customizer.php:159
3343
- msgid "Your account on {{site_name}} has been approved!"
3344
- msgstr "Ihr Konto wurde auf {{site_name}} genehmigt!"
3345
-
3346
- #: ../modules/email-customizer/user-email-customizer.php:170
3347
- msgid "User Approval Notification"
3348
- msgstr "Benutzer Genehmigungs-Benachrichtigung"
3349
-
3350
- #: ../modules/email-customizer/user-email-customizer.php:175
3351
- msgid ""
3352
- "\n"
3353
- "<h3>Hello,</h3>\n"
3354
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
3355
- msgstr ""
3356
- "\n"
3357
- "<h3>Hallo,</h3>\n"
3358
- "<p>Leider hat ein Administrator Ihr Konto nicht genehmigt.</p>\n"
3359
-
3360
- #: ../modules/email-customizer/user-email-customizer.php:187
3361
- msgid "Your account on {{site_name}} has been unapproved!"
3362
- msgstr "Ihr Konto auf {{site_name}} wurde nicht genehmigt!"
3363
-
3364
- #: ../modules/email-customizer/user-email-customizer.php:198
3365
- msgid "Unapproved User Notification"
3366
- msgstr "Nicht genehmigte Benutzerbenachrichtigung"
3367
-
3368
- #: ../modules/multiple-forms/edit-profile-forms.php:11
3369
- #: ../modules/multiple-forms/edit-profile-forms.php:12
3370
- msgid "Edit-profile Form"
3371
- msgstr "Profil Bearbeitungs-Formular"
3372
-
3373
- #: ../modules/multiple-forms/edit-profile-forms.php:13
3374
- #: ../modules/multiple-forms/register-forms.php:13
3375
- #: ../modules/user-listing/userlisting.php:13
3376
- msgid "Add New"
3377
- msgstr "Neu hinzufügen"
3378
-
3379
- #: ../modules/multiple-forms/edit-profile-forms.php:14
3380
- msgid "Add new Edit-profile Form"
3381
- msgstr "Neues Profil Bearbeitungs-Formular hinzufügen"
3382
-
3383
- #: ../modules/multiple-forms/edit-profile-forms.php:15
3384
- msgid "Edit the Edit-profile Forms"
3385
- msgstr "Profil Bearbeitungs-Formular bearbeiten"
3386
-
3387
- #: ../modules/multiple-forms/edit-profile-forms.php:16
3388
- msgid "New Edit-profile Form"
3389
- msgstr "Neues Profil Bearbeitungs-Formular"
3390
-
3391
- #: ../modules/multiple-forms/edit-profile-forms.php:17
3392
- #: ../modules/multiple-forms/edit-profile-forms.php:23
3393
- msgid "Edit-profile Forms"
3394
- msgstr "Profil Bearbeitungs-Formular"
3395
-
3396
- #: ../modules/multiple-forms/edit-profile-forms.php:18
3397
- msgid "View the Edit-profile Form"
3398
- msgstr "Ansicht vom Profil Bearbeitungs-Formular"
3399
-
3400
- #: ../modules/multiple-forms/edit-profile-forms.php:19
3401
- msgid "Search the Edit-profile Forms"
3402
- msgstr "Suchen Sie nach Profil Bearbeitungs-Formulare"
3403
-
3404
- #: ../modules/multiple-forms/edit-profile-forms.php:20
3405
- msgid "No Edit-profile Form found"
3406
- msgstr "Kein Profil Bearbeitungs-Formular wurde gefunden"
3407
-
3408
- #: ../modules/multiple-forms/edit-profile-forms.php:21
3409
- msgid "No Edit-profile Forms found in trash"
3410
- msgstr "Keine Profil-bearbeitungs Formulare wurden im Papierkorb gefunden"
3411
-
3412
- #: ../modules/multiple-forms/edit-profile-forms.php:131
3413
- #: ../modules/multiple-forms/register-forms.php:134
3414
- #: ../modules/user-listing/userlisting.php:1155
3415
- msgid "Shortcode"
3416
- msgstr "Shortcode"
3417
-
3418
- #: ../modules/multiple-forms/edit-profile-forms.php:151
3419
- #: ../modules/multiple-forms/register-forms.php:155
3420
- #: ../modules/user-listing/userlisting.php:1176
3421
- msgid "(no title)"
3422
- msgstr "(kein Titel)"
3423
-
3424
- #: ../modules/multiple-forms/edit-profile-forms.php:171
3425
- #: ../modules/multiple-forms/register-forms.php:174
3426
- #: ../modules/user-listing/userlisting.php:1196
3427
- msgid "The shortcode will be available after you publish this form."
3428
- msgstr "Der Shortcode wird verfügbar sein, nachdem Sie dieses Formular veröffentlichen."
3429
-
3430
- #: ../modules/multiple-forms/edit-profile-forms.php:173
3431
- #: ../modules/multiple-forms/register-forms.php:176
3432
- #: ../modules/user-listing/userlisting.php:1198
3433
- msgid "Use this shortcode on the page you want the form to be displayed:"
3434
- msgstr "Verwenden Sie diesen Shortcode auf der Seite wo das Formular angezeigt werden sollte"
3435
-
3436
- #: ../modules/multiple-forms/edit-profile-forms.php:177
3437
- #: ../modules/multiple-forms/register-forms.php:180
3438
- #: ../modules/user-listing/userlisting.php:1202
3439
- msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
3440
- msgstr "<span style=\"color:red;\"> Hinweis:</span> die Änderung vom Formulartitel ändert auch den Shortcode!"
3441
-
3442
- #: ../modules/multiple-forms/edit-profile-forms.php:183
3443
- #: ../modules/multiple-forms/register-forms.php:186
3444
- #: ../modules/user-listing/userlisting.php:1235
3445
- msgid "Form Shortcode"
3446
- msgstr "Shortcode Formular "
3447
-
3448
- #: ../modules/multiple-forms/edit-profile-forms.php:202
3449
- #: ../modules/multiple-forms/register-forms.php:226
3450
- msgid "Whether to redirect the user to a specific page or not"
3451
- msgstr "Ob der Benutzer zu einer bestimmten Seite oder nicht umgeleiten werden sollte"
3452
-
3453
- #: ../modules/multiple-forms/edit-profile-forms.php:203
3454
- #: ../modules/multiple-forms/register-forms.php:227
3455
- msgid "Display Messages"
3456
- msgstr "Anzeige-Meldungen"
3457
-
3458
- #: ../modules/multiple-forms/edit-profile-forms.php:203
3459
- #: ../modules/multiple-forms/register-forms.php:227
3460
- msgid "Allowed time to display any success messages (in seconds)"
3461
- msgstr "Erlaubte Zeit um Erfolgsmeldungen (in Sekunden) anzuzeigen"
3462
-
3463
- #: ../modules/multiple-forms/edit-profile-forms.php:204
3464
- 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"
3465
- msgstr "Geben Sie das URL der Seite ein, wo die Benutzer umgeleitet werden sollten, sobald diese ihren Profil mit diesem Formular aktualisiert haben<br/> verwenden Sie folgendes Format: http://www.meineWebseite.com"
3466
-
3467
- #: ../modules/multiple-forms/edit-profile-forms.php:211
3468
- msgid "After Profile Update..."
3469
- msgstr "Nach Profil-Änderung..."
3470
-
3471
- #: ../modules/multiple-forms/edit-profile-forms.php:237
3472
- #: ../modules/multiple-forms/register-forms.php:258
3473
- msgid "Add New Field to the List"
3474
- msgstr "Neues Feld zur Liste hinzufügen"
3475
-
3476
- #: ../modules/multiple-forms/edit-profile-forms.php:241
3477
- #: ../modules/multiple-forms/register-forms.php:262
3478
- msgid "Choose one of the supported fields you manage <a href=\""
3479
- msgstr "Wählen Sie eines der unterstützten Felder, die Sie verwalten aus <a href=\""
3480
-
3481
- #: ../modules/multiple-forms/multiple-forms.php:416
3482
- msgid "<pre>Title (Type)</pre>"
3483
- msgstr "<pre>Titel (Type)</pre>"
3484
-
3485
- #: ../modules/multiple-forms/multiple-forms.php:232
3486
- msgid "You need to specify the title of the form before creating it"
3487
- msgstr "Sie müssen einen Titel dem Formular geben, bevor Sie diesen erstellen"
3488
-
3489
- #: ../modules/multiple-forms/register-forms.php:11
3490
- #: ../modules/multiple-forms/register-forms.php:12
3491
- msgid "Registration Form"
3492
- msgstr "Anmeldungsform"
3493
-
3494
- #: ../modules/multiple-forms/register-forms.php:14
3495
- msgid "Add new Registration Form"
3496
- msgstr "Fügen Sie ein neues Anmeldeformular ein"
3497
-
3498
- #: ../modules/multiple-forms/register-forms.php:15
3499
- msgid "Edit the Registration Forms"
3500
- msgstr "Bearbeitung der Anmeldeformulare"
3501
-
3502
- #: ../modules/multiple-forms/register-forms.php:16
3503
- msgid "New Registration Form"
3504
- msgstr "Neues Anmeldeformular"
3505
-
3506
- #: ../modules/multiple-forms/register-forms.php:17
3507
- #: ../modules/multiple-forms/register-forms.php:23
3508
- msgid "Registration Forms"
3509
- msgstr "Anmeldeformulare"
3510
-
3511
- #: ../modules/multiple-forms/register-forms.php:18
3512
- msgid "View the Registration Form"
3513
- msgstr "Ansicht des Anmeldeformulars"
3514
-
3515
- #: ../modules/multiple-forms/register-forms.php:19
3516
- msgid "Search the Registration Forms"
3517
- msgstr "Suchen Sie die Anmeldeformulare"
3518
-
3519
- #: ../modules/multiple-forms/register-forms.php:20
3520
- msgid "No Registration Form found"
3521
- msgstr "Kein Anmeldeformular wurde gefunden"
3522
-
3523
- #: ../modules/multiple-forms/register-forms.php:21
3524
- msgid "No Registration Forms found in trash"
3525
- msgstr "Keine Anmeldeformulare wurden im Müll gefunden"
3526
-
3527
- #: ../modules/multiple-forms/register-forms.php:215
3528
- msgid "Default Role"
3529
- msgstr "Standardrolle"
3530
-
3531
- #: ../modules/multiple-forms/register-forms.php:224
3532
- msgid "Set Role"
3533
- msgstr "Rolle einstellen"
3534
-
3535
- #: ../modules/multiple-forms/register-forms.php:224
3536
- 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"
3537
- msgstr "Wählen Sie aus, welche Rolle ein Benutzer nachdem er sich registriert hat, haben sollte. <br/> Falls nicht angegeben, wird standardmäßig die Rolle aus den WordPress-Einstellungen gesetzt. "
3538
-
3539
- #: ../modules/multiple-forms/register-forms.php:225
3540
- msgid "Automatically Log In"
3541
- msgstr "Automatisch einloggen"
3542
-
3543
- #: ../modules/multiple-forms/register-forms.php:225
3544
- 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"
3545
- msgstr "Ob man sich direkt automatisch als den neu registrierten Benutzer oder nicht anmelden soll. <br/> Funktioniert nur auf einzelnen Seiten ohne dass die \"Admin Approval\" und \"E-Mail-Bestätigung\" Features aktiviert sind <br/> Warnung: Caching das Registrierungsformular bricht die automatische Anmeldungung"
3546
-
3547
- #: ../modules/multiple-forms/register-forms.php:228
3548
- 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"
3549
- msgstr "Geben Sie den URL der Seite ein, wo die Benutzer nach der Anmeldung mit diesem Formular umgeleitet werden sollten <br/> verwenden Sie folgendes Format: http://www.meineseite.com"
3550
-
3551
- #: ../modules/multiple-forms/register-forms.php:234
3552
- msgid "After Registration..."
3553
- msgstr "Nach der Anmeldung..."
3554
-
3555
- #: ../modules/user-listing/class-userlisting.php:470
3556
- #: ../modules/user-listing/userlisting.php:724
3557
- #: ../modules/user-listing/userlisting.php:968
3558
- #: ../modules/user-listing/userlisting.php:1011
3559
- #: ../modules/user-listing/userlisting.php:1355
3560
- msgid "Search Users by All Fields"
3561
- msgstr "Suche Benutzer nach allen Feldern"
3562
-
3563
- #: ../modules/user-listing/userlisting.php:14
3564
- msgid "Add new User Listing"
3565
- msgstr "Einfügen von neuen Benutzer-Auflisten"
3566
-
3567
- #: ../modules/user-listing/userlisting.php:15
3568
- msgid "Edit the User Listing"
3569
- msgstr "Bearbeiten Sie das Benutzer-Auflisten"
3570
-
3571
- #: ../modules/user-listing/userlisting.php:16
3572
- msgid "New User Listing"
3573
- msgstr "neues Benutzer-Auflisten"
3574
-
3575
- #: ../modules/user-listing/userlisting.php:18
3576
- msgid "View the User Listing"
3577
- msgstr "Ansicht von Benutzer-Auflisten"
3578
-
3579
- #: ../modules/user-listing/userlisting.php:19
3580
- msgid "Search the User Listing"
3581
- msgstr "Suchen in der Benutzer-Liste"
3582
-
3583
- #: ../modules/user-listing/userlisting.php:20
3584
- msgid "No User Listing found"
3585
- msgstr "Keine Benutzereinträge gefunden"
3586
-
3587
- #: ../modules/user-listing/userlisting.php:21
3588
- msgid "No User Listing found in trash"
3589
- msgstr "Keine Benutzerliste wurde im Papierkorb gefunden"
3590
-
3591
- #: ../modules/user-listing/userlisting.php:95
3592
- msgid "Display name as"
3593
- msgstr "Anzeigename als"
3594
-
3595
- #: ../modules/user-listing/userlisting.php:125
3596
- #: ../modules/user-listing/userlisting.php:1263
3597
- msgid "Registration Date"
3598
- msgstr "Datum der Anmeldung"
3599
-
3600
- #: ../modules/user-listing/userlisting.php:126
3601
- #: ../modules/user-listing/userlisting.php:1267
3602
- msgid "Number of Posts"
3603
- msgstr "Anzahl der Beiträge"
3604
-
3605
- #: ../modules/user-listing/userlisting.php:130
3606
- msgid "More Info"
3607
- msgstr "Mehr Info"
3608
-
3609
- #: ../modules/user-listing/userlisting.php:131
3610
- msgid "More Info Url"
3611
- msgstr "Url für weitere Informationen"
3612
-
3613
- #: ../modules/user-listing/userlisting.php:132
3614
- msgid "Avatar or Gravatar"
3615
- msgstr "Profilbild oder Gravatar"
3616
-
3617
- #: ../modules/user-listing/userlisting.php:161
3618
- msgid "Meta Variables"
3619
- msgstr "Meta-Variablen"
3620
-
3621
- #: ../modules/user-listing/userlisting.php:167
3622
- msgid "Sort Variables"
3623
- msgstr "Variablen sortieren"
3624
-
3625
- #: ../modules/user-listing/userlisting.php:171
3626
- #: ../modules/user-listing/userlisting.php:198
3627
- msgid "Extra Functions"
3628
- msgstr "Zusatzfunktionen"
3629
-
3630
- #: ../modules/user-listing/userlisting.php:173
3631
- msgid "Pagination"
3632
- msgstr "Paginierung"
3633
-
3634
- #: ../modules/user-listing/userlisting.php:174
3635
- msgid "Search all Fields"
3636
- msgstr "Alle Felder durchsuchen"
3637
-
3638
- #: ../modules/user-listing/userlisting.php:200
3639
- msgid "Go Back Link"
3640
- msgstr "Link zurück"
3641
-
3642
- #: ../modules/user-listing/userlisting.php:218
3643
- msgid "All-userlisting Template"
3644
- msgstr "Alle-Benutzeranzeige Vorlage "
3645
-
3646
- #: ../modules/user-listing/userlisting.php:221
3647
- msgid "Single-userlisting Template"
3648
- msgstr "Einzel-Benutzeranzeige Vorlage"
3649
-
3650
- #: ../modules/user-listing/userlisting.php:614
3651
- msgid "First/Lastname"
3652
- msgstr "Vor/Nachname"
3653
-
3654
- #: ../modules/user-listing/userlisting.php:252
3655
- #: ../modules/user-listing/userlisting.php:620
3656
- msgid "Sign-up Date"
3657
- msgstr "Anmeldungsdatum"
3658
-
3659
- #: ../modules/user-listing/userlisting.php:629
3660
- #: ../modules/user-listing/userlisting.php:1266
3661
- msgid "Display Name"
3662
- msgstr "Anzeigenamen"
3663
-
3664
- #: ../modules/user-listing/userlisting.php:251
3665
- #: ../modules/user-listing/userlisting.php:638
3666
- msgid "Posts"
3667
- msgstr "Beiträge"
3668
-
3669
- #: ../modules/user-listing/userlisting.php:641
3670
- #: ../modules/user-listing/userlisting.php:1272
3671
- msgid "Aim"
3672
- msgstr "Ziel"
3673
-
3674
- #: ../modules/user-listing/userlisting.php:644
3675
- #: ../modules/user-listing/userlisting.php:1273
3676
- msgid "Yim"
3677
- msgstr "Yim"
3678
-
3679
- #: ../modules/user-listing/userlisting.php:647
3680
- #: ../modules/user-listing/userlisting.php:1274
3681
- msgid "Jabber"
3682
- msgstr "Jabber"
3683
-
3684
- #: ../modules/user-listing/userlisting.php:827
3685
- msgid "Click here to see more information about this user"
3686
- msgstr "Klicken Sie hier für weitere Informationen über diesen Benutzer"
3687
-
3688
- #: ../modules/user-listing/userlisting.php:827
3689
- msgid "More..."
3690
- msgstr "Mehr..."
3691
-
3692
- #: ../modules/user-listing/userlisting.php:830
3693
- msgid "Click here to see more information about this user."
3694
- msgstr "Klicken Sie hier für weitere Informationen über diesen Benutzer "
3695
-
3696
- #: ../modules/user-listing/userlisting.php:922
3697
- #: ../modules/user-listing/userlisting.php:925
3698
- msgid "Click here to go back"
3699
- msgstr "Klicken Sie hier, um zurück zu gehen"
3700
-
3701
- #: ../modules/user-listing/userlisting.php:922
3702
- msgid "Back"
3703
- msgstr "Zurück"
3704
-
3705
- #: ../modules/user-listing/userlisting.php:955
3706
- msgid "&laquo;&laquo; First"
3707
- msgstr "&laquo;&laquo; Erster"
3708
-
3709
- #: ../modules/user-listing/userlisting.php:956
3710
- msgid "&laquo; Prev"
3711
- msgstr "&laquo; Zurück"
3712
-
3713
- #: ../modules/user-listing/userlisting.php:957
3714
- msgid "Next &raquo; "
3715
- msgstr "Nächste Seite &raquo; "
3716
-
3717
- #: ../modules/user-listing/userlisting.php:958
3718
- msgid "Last &raquo;&raquo;"
3719
- msgstr "Letzter &raquo;&raquo;"
3720
-
3721
- #: ../modules/user-listing/userlisting.php:987
3722
- msgid "You don't have any pagination settings on this userlisting!"
3723
- msgstr "Sie haben noch keine Paginierungs-Einstellungen auf dieser Benutzerliste!"
3724
-
3725
- #: ../modules/user-listing/userlisting.php:1028
3726
- msgid "Search"
3727
- msgstr "Suchen"
3728
-
3729
- #: ../modules/user-listing/userlisting.php:1029
3730
- msgid "Clear Results"
3731
- msgstr "Ergebnisse löschen"
3732
-
3733
- #: ../modules/user-listing/userlisting.php:1205
3734
- #: ../modules/user-listing/userlisting.php:1209
3735
- msgid "Extra shortcode parameters"
3736
- msgstr "Zusätzliche Shortcode-Parameters"
3737
-
3738
- #: ../modules/user-listing/userlisting.php:1212
3739
- msgid "displays users having a certain meta-value within a certain (extra) meta-field"
3740
- msgstr "Anzeige von Benutzer die einen bestimmten Meta-Wert innerhalb eines bestimmten (extra) Meta-Feld haben"
3741
-
3742
- #: ../modules/user-listing/userlisting.php:1213
3743
- msgid "Example:"
3744
- msgstr "Beispiel:"
3745
-
3746
- #: ../modules/user-listing/userlisting.php:1215
3747
- msgid "Remember though, that the field-value combination must exist in the database."
3748
- msgstr "Denken Sie daran, dass die Feld-Wert Kombination in der Datenbank vorhanden sein muss."
3749
-
3750
- #: ../modules/user-listing/userlisting.php:1284
3751
- msgid "Random (very slow on large databases > 10K user)"
3752
- msgstr "Random (sehr langsam auf große Datenbanken > 10K Benutzer)"
3753
-
3754
- #: ../modules/user-listing/userlisting.php:1297
3755
- msgid "Roles to Display"
3756
- msgstr "Rollen anzeigen"
3757
-
3758
- #: ../modules/user-listing/userlisting.php:1297
3759
- msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
3760
- msgstr "Beschränken Sie die Benutzerlisten nur für diese ausgewählten Rollen <br/> Wenn nicht angegeben, wird standardmäßig auf allen vorhandenen Rollen die Beschränkung gesetzt"
3761
-
3762
- #: ../modules/user-listing/userlisting.php:1298
3763
- msgid "Number of Users/Page"
3764
- msgstr "Anzahl Benutzer/Seite"
3765
-
3766
- #: ../modules/user-listing/userlisting.php:1299
3767
- msgid "Default Sorting Criteria"
3768
- msgstr "Standardmäßige Sortierkriterien"
3769
-
3770
- #: ../modules/user-listing/userlisting.php:1299
3771
- msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
3772
- msgstr "Festlegen der standard Sortierungskriterien <br/> Dieses kann temporär für jede neue Sitzung geändert werden"
3773
-
3774
- #: ../modules/user-listing/userlisting.php:1300
3775
- msgid "Default Sorting Order"
3776
- msgstr "Standard-Sortierreihenfolge"
3777
-
3778
- #: ../modules/user-listing/userlisting.php:1300
3779
- msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
3780
- msgstr "Festlegen der standard Sortierungskriterien <br/> Dieses kann temporär für jede neue Sitzung geändert werden"
3781
-
3782
- #: ../modules/user-listing/userlisting.php:1301
3783
- msgid "Avatar Size (All-userlisting)"
3784
- msgstr "Profilbild-Größe (alle Benutzereinträge)"
3785
-
3786
- #: ../modules/user-listing/userlisting.php:1301
3787
- msgid "Set the avatar size on the all-userlisting only"
3788
- msgstr "Legen Sie die Profilbildgröße für alle Benutzer-Listen fest."
3789
-
3790
- #: ../modules/user-listing/userlisting.php:1302
3791
- msgid "Avatar Size (Single-userlisting)"
3792
- msgstr "Profilbild-Größe (Einzel-Benutzeranzeige)"
3793
-
3794
- #: ../modules/user-listing/userlisting.php:1302
3795
- msgid "Set the avatar size on the single-userlisting only"
3796
- msgstr "Setzen Sie die Profilbild-Größe (nur für die Einzel-Benutzeranzeige)"
3797
-
3798
- #: ../modules/user-listing/userlisting.php:1303
3799
- msgid "Visible only to logged in users?"
3800
- msgstr "Nur für angemeldete Benutzer sichtbar?"
3801
-
3802
- #: ../modules/user-listing/userlisting.php:1303
3803
- msgid "The userlisting will only be visible only to the logged in users"
3804
- msgstr "Die Benutzeranzeigen werden nur für die angemeldeten Benutzer sichtbar sein"
3805
-
3806
- #: ../modules/user-listing/userlisting.php:1304
3807
- msgid "Visible to following Roles"
3808
- msgstr "Für folgende Rollen sichtbar"
3809
-
3810
- #: ../modules/user-listing/userlisting.php:1304
3811
- msgid "The userlisting will only be visible to the following roles"
3812
- msgstr " Die Benutzeranzeige wird nur für folgende Rollen sichtbar sein."
3813
-
3814
- #: ../modules/user-listing/userlisting.php:1310
3815
- msgid "Userlisting Settings"
3816
- msgstr "Benutzereinträge Einstellungen"
3817
-
3818
- #: ../modules/user-listing/userlisting.php:1331
3819
- msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
3820
- msgstr "Sie müssen die Benutzeranzeige-Funktion innerhalb des Tabs \"Module\" aktivieren!"
3821
-
3822
- #: ../modules/user-listing/userlisting.php:1331
3823
- msgid "You can find it in the Profile Builder menu."
3824
- msgstr "Sie finden es im Menü vom Profile Builder"
3825
-
3826
- #: ../modules/user-listing/userlisting.php:1494
3827
- msgid "No results found!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3828
  msgstr "Keine Ergebnisse wurden gefunden!"
1
+ # Translation of Profile Builder in German
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2015-10-27 13:39:55+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
+ #: ../admin/add-ons.php:190
14
+ msgid "Recommended Plugins"
15
+ msgstr ""
16
+
17
+ #: ../admin/add-ons.php:219 ../admin/pms-cross-promotion.php:102
18
+ msgid "Free"
19
+ msgstr ""
20
+
21
+ #: ../admin/add-ons.php:221
22
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
23
+ msgstr ""
24
+
25
+ #: ../admin/add-ons.php:222 ../admin/pms-cross-promotion.php:105
26
+ msgid "More Details"
27
+ msgstr ""
28
+
29
+ #: ../admin/add-ons.php:240 ../admin/pms-cross-promotion.php:88
30
+ #: ../admin/pms-cross-promotion.php:123 ../admin/pms-cross-promotion.php:202
31
+ msgid "Plugin is <strong>inactive</strong>"
32
+ msgstr ""
33
+
34
+ #: ../admin/add-ons.php:242 ../admin/pms-cross-promotion.php:87
35
+ #: ../admin/pms-cross-promotion.php:125 ../admin/pms-cross-promotion.php:204
36
+ msgid "Plugin is <strong>active</strong>"
37
+ msgstr ""
38
+
39
+ #: ../admin/add-ons.php:263 ../admin/pms-cross-promotion.php:146
40
+ msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
41
+ msgstr ""
42
+
43
+ #: ../admin/general-settings.php:62
44
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
45
+ msgstr ""
46
+
47
+ #: ../admin/pms-cross-promotion.php:10
48
+ msgid "Paid Accounts"
49
+ msgstr ""
50
+
51
+ #: ../admin/pms-cross-promotion.php:33
52
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
53
+ msgstr ""
54
+
55
+ #: ../admin/pms-cross-promotion.php:37
56
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
57
+ msgstr ""
58
+
59
+ #: ../admin/pms-cross-promotion.php:40
60
+ msgid "Paid & Free Subscriptions"
61
+ msgstr ""
62
+
63
+ #: ../admin/pms-cross-promotion.php:41
64
+ msgid "Restrict Content"
65
+ msgstr ""
66
+
67
+ #: ../admin/pms-cross-promotion.php:42
68
+ msgid "Member Management"
69
+ msgstr ""
70
+
71
+ #: ../admin/pms-cross-promotion.php:43
72
+ msgid "Email Templates"
73
+ msgstr ""
74
+
75
+ #: ../admin/pms-cross-promotion.php:44
76
+ msgid "Account Management"
77
+ msgstr ""
78
+
79
+ #: ../admin/pms-cross-promotion.php:45
80
+ msgid "Subscription Management"
81
+ msgstr ""
82
+
83
+ #: ../admin/pms-cross-promotion.php:46
84
+ msgid "Payment Management"
85
+ msgstr ""
86
+
87
+ #: ../admin/pms-cross-promotion.php:83
88
+ msgid "Plugin is Active"
89
+ msgstr ""
90
+
91
+ #: ../admin/pms-cross-promotion.php:84
92
+ msgid "Plugin has been activated"
93
+ msgstr ""
94
+
95
+ #: ../admin/pms-cross-promotion.php:91
96
+ msgid "Plugin has been deactivated."
97
+ msgstr ""
98
+
99
+ #: ../admin/pms-cross-promotion.php:104
100
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
101
+ msgstr ""
102
+
103
+ #: ../admin/pms-cross-promotion.php:155
104
+ msgid "Step by Step Quick Setup"
105
+ msgstr ""
106
+
107
+ #: ../admin/pms-cross-promotion.php:239
108
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s. %3$sDismiss%4$s"
109
+ msgstr ""
110
+
111
+ #: ../features/email-confirmation/email-confirmation.php:392
112
+ msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
113
+ msgstr ""
114
+
115
+ #: ../front-end/register.php:130
116
+ msgid "You will soon be redirected automatically."
117
+ msgstr ""
118
+
119
+ #: ../modules/custom-redirects/custom_redirects_admin.php:45
120
+ msgid "After Login"
121
+ msgstr ""
122
+
123
+ #: ../modules/custom-redirects/custom_redirects_admin.php:46
124
+ msgid "After Logout"
125
+ msgstr ""
126
+
127
+ #: ../modules/custom-redirects/custom_redirects_admin.php:47
128
+ msgid "After Registration"
129
+ msgstr ""
130
+
131
+ #: ../modules/custom-redirects/custom_redirects_admin.php:48
132
+ msgid "After Edit Profile"
133
+ msgstr ""
134
+
135
+ #: ../modules/custom-redirects/custom_redirects_admin.php:49
136
+ msgid "After Successful Email Confirmation"
137
+ msgstr ""
138
+
139
+ #: ../modules/custom-redirects/custom_redirects_admin.php:50
140
+ msgid "After Successful Password Reset"
141
+ msgstr ""
142
+
143
+ #: ../modules/custom-redirects/custom_redirects_admin.php:51
144
+ msgid "Dashboard (redirect users from accessing the dashboard)"
145
+ msgstr ""
146
+
147
+ #: ../modules/custom-redirects/custom_redirects_admin.php:55
148
+ msgid "User ID"
149
+ msgstr ""
150
+
151
+ #: ../modules/custom-redirects/custom_redirects_admin.php:61
152
+ msgid "User ID or Username"
153
+ msgstr ""
154
+
155
+ #: ../modules/custom-redirects/custom_redirects_admin.php:62
156
+ msgid "User ID / Username"
157
+ msgstr ""
158
+
159
+ #: ../modules/custom-redirects/custom_redirects_admin.php:62
160
+ msgid "Please select and enter the ID or username of your user."
161
+ msgstr ""
162
+
163
+ #: ../modules/custom-redirects/custom_redirects_admin.php:63
164
+ #: ../modules/custom-redirects/custom_redirects_admin.php:93
165
+ #: ../modules/custom-redirects/custom_redirects_admin.php:112
166
+ #: ../modules/custom-redirects/custom_redirects_admin.php:131
167
+ msgid "Redirect Type"
168
+ msgstr ""
169
+
170
+ #: ../modules/custom-redirects/custom_redirects_admin.php:64
171
+ #: ../modules/custom-redirects/custom_redirects_admin.php:94
172
+ #: ../modules/custom-redirects/custom_redirects_admin.php:113
173
+ #: ../modules/custom-redirects/custom_redirects_admin.php:138
174
+ msgid "Redirect URL"
175
+ msgstr ""
176
+
177
+ #: ../modules/custom-redirects/custom_redirects_admin.php:64
178
+ #: ../modules/custom-redirects/custom_redirects_admin.php:94
179
+ #: ../modules/custom-redirects/custom_redirects_admin.php:113
180
+ #: ../modules/custom-redirects/custom_redirects_admin.php:138
181
+ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
182
+ msgstr ""
183
+
184
+ #: ../modules/custom-redirects/custom_redirects_admin.php:71
185
+ #: ../modules/custom-redirects/custom_redirects_admin.php:240
186
+ msgid "Individual User Redirects"
187
+ msgstr ""
188
+
189
+ #: ../modules/custom-redirects/custom_redirects_admin.php:84
190
+ msgid "... Choose"
191
+ msgstr ""
192
+
193
+ #: ../modules/custom-redirects/custom_redirects_admin.php:92
194
+ msgid "Select a user role."
195
+ msgstr ""
196
+
197
+ #: ../modules/custom-redirects/custom_redirects_admin.php:101
198
+ #: ../modules/custom-redirects/custom_redirects_admin.php:241
199
+ msgid "User Role based Redirects"
200
+ msgstr ""
201
+
202
+ #: ../modules/custom-redirects/custom_redirects_admin.php:120
203
+ #: ../modules/custom-redirects/custom_redirects_admin.php:242
204
+ msgid "Global Redirects"
205
+ msgstr ""
206
+
207
+ #: ../modules/custom-redirects/custom_redirects_admin.php:133
208
+ msgid "Login ( wp_login.php )"
209
+ msgstr ""
210
+
211
+ #: ../modules/custom-redirects/custom_redirects_admin.php:134
212
+ msgid "Register ( wp-login.php?action=register )"
213
+ msgstr ""
214
+
215
+ #: ../modules/custom-redirects/custom_redirects_admin.php:135
216
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
217
+ msgstr ""
218
+
219
+ #: ../modules/custom-redirects/custom_redirects_admin.php:136
220
+ msgid "Author Archive ( http://sitename.com/author/admin )"
221
+ msgstr ""
222
+
223
+ #: ../modules/custom-redirects/custom_redirects_admin.php:145
224
+ msgid "Redirect Default WordPress Forms and Pages"
225
+ msgstr ""
226
+
227
+ #: ../modules/custom-redirects/custom_redirects_admin.php:157
228
+ msgid "How does this work?"
229
+ msgstr ""
230
+
231
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
232
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
233
+ msgstr ""
234
+
235
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
236
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
237
+ msgstr ""
238
+
239
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
240
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
241
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
242
+ msgstr ""
243
+
244
+ #: ../modules/custom-redirects/custom_redirects_admin.php:236
245
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
246
+ msgstr ""
247
+
248
+ #: ../modules/custom-redirects/custom_redirects_admin.php:238
249
+ msgid "Which redirect happens depends on the following priority:"
250
+ msgstr ""
251
+
252
+ #: ../modules/custom-redirects/custom_redirects_admin.php:243
253
+ msgid "Individual redirects defined in shortcodes or in the Multiple Registration and Edit Profile form settings. (<strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects)"
254
+ msgstr ""
255
+
256
+ #: ../modules/custom-redirects/custom_redirects_admin.php:246
257
+ msgid "Redirect Default WordPress forms and pages"
258
+ msgstr ""
259
+
260
+ #: ../modules/custom-redirects/custom_redirects_admin.php:247
261
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
262
+ msgstr ""
263
+
264
+ #: ../modules/custom-redirects/custom_redirects_admin.php:249
265
+ msgid "Available tags for dynamic URLs"
266
+ msgstr ""
267
+
268
+ #: ../modules/custom-redirects/custom_redirects_admin.php:250
269
+ msgid "You use the following tags in your URLs to redirect users to various pages."
270
+ msgstr ""
271
+
272
+ #: ../modules/custom-redirects/custom_redirects_admin.php:252
273
+ msgid "generates a url of the current website homepage."
274
+ msgstr ""
275
+
276
+ #: ../modules/custom-redirects/custom_redirects_admin.php:253
277
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
278
+ msgstr ""
279
+
280
+ #: ../modules/custom-redirects/custom_redirects_admin.php:254
281
+ msgid "the ID of the user"
282
+ msgstr ""
283
+
284
+ #: ../modules/custom-redirects/custom_redirects_admin.php:255
285
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
286
+ msgstr ""
287
+
288
+ #: ../modules/custom-redirects/custom_redirects_admin.php:256
289
+ msgid "the URL of the previously visited page"
290
+ msgstr ""
291
+
292
+ #: ../modules/custom-redirects/custom_redirects_admin.php:339
293
+ #: ../modules/custom-redirects/custom_redirects_admin.php:345
294
+ #: ../modules/custom-redirects/custom_redirects_admin.php:351
295
+ msgid "You can't add duplicate redirects!"
296
+ msgstr ""
297
+
298
+ #: ../admin/admin-functions.php:40
299
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
300
+ msgstr "Den Namen öffentlich anzeigen - erscheint nur auf der Edit Profile Seite!"
301
+
302
+ #: ../admin/basic-info.php:37
303
+ msgid "Friction-less login using %s shortcode or a widget."
304
+ msgstr "Reibungsloser Login indem man %s oder ein Widget benutzt."
305
+
306
+ #: ../admin/basic-info.php:41
307
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
308
+ msgstr "Wunderschöne und voll anpassbare Registrierformulare mit der Nutzung von %s Shortcode."
309
+
310
+ #: ../admin/basic-info.php:45
311
+ msgid "Straight forward edit profile forms using %s shortcode."
312
+ msgstr ""
313
+
314
+ #: ../admin/basic-info.php:58
315
+ msgid "Allow users to recover their password in the front-end using the %s."
316
+ msgstr ""
317
+
318
+ #: ../admin/basic-info.php:130
319
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
320
+ msgstr ""
321
+
322
+ #: ../admin/general-settings.php:118
323
+ msgid "\"Admin Approval\" on User Role:"
324
+ msgstr ""
325
+
326
+ #: ../admin/general-settings.php:137
327
+ msgid "Select on what user roles to activate Admin Approval."
328
+ msgstr ""
329
+
330
+ #: ../admin/manage-fields.php:109
331
+ msgid "Display on PB forms"
332
+ msgstr ""
333
+
334
+ #: ../admin/manage-fields.php:109
335
+ msgid "PB Login"
336
+ msgstr ""
337
+
338
+ #: ../admin/manage-fields.php:109
339
+ msgid "PB Register"
340
+ msgstr ""
341
+
342
+ #: ../admin/manage-fields.php:109
343
+ msgid "PB Recover Password"
344
+ msgstr ""
345
+
346
+ #: ../admin/manage-fields.php:109
347
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
348
+ msgstr ""
349
+
350
+ #: ../admin/manage-fields.php:110
351
+ msgid "Display on default WP forms"
352
+ msgstr ""
353
+
354
+ #: ../admin/manage-fields.php:110
355
+ msgid "Default WP Login"
356
+ msgstr ""
357
+
358
+ #: ../admin/manage-fields.php:110
359
+ msgid "Default WP Register"
360
+ msgstr ""
361
+
362
+ #: ../admin/manage-fields.php:110
363
+ msgid "Default WP Recover Password"
364
+ msgstr ""
365
+
366
+ #: ../admin/manage-fields.php:110
367
+ msgid "Select on which default WP forms to display reCAPTCHA"
368
+ msgstr ""
369
+
370
+ #: ../admin/manage-fields.php:116 ../admin/manage-fields.php:117
371
+ msgid "Default option of the field"
372
+ msgstr ""
373
+
374
+ #: ../admin/manage-fields.php:237
375
+ msgid "Afghanistan"
376
+ msgstr "Afghanistan"
377
+
378
+ #: ../admin/manage-fields.php:238
379
+ msgid "Aland Islands"
380
+ msgstr "Aland Islands"
381
+
382
+ #: ../admin/manage-fields.php:239
383
+ msgid "Albania"
384
+ msgstr "Albania"
385
+
386
+ #: ../admin/manage-fields.php:240
387
+ msgid "Algeria"
388
+ msgstr "Algeria"
389
+
390
+ #: ../admin/manage-fields.php:241
391
+ msgid "American Samoa"
392
+ msgstr "American Samoa"
393
+
394
+ #: ../admin/manage-fields.php:242
395
+ msgid "Andorra"
396
+ msgstr "Andorra"
397
+
398
+ #: ../admin/manage-fields.php:243
399
+ msgid "Angola"
400
+ msgstr "Angola"
401
+
402
+ #: ../admin/manage-fields.php:244
403
+ msgid "Anguilla"
404
+ msgstr "Anguilla"
405
+
406
+ #: ../admin/manage-fields.php:245
407
+ msgid "Antarctica"
408
+ msgstr "Antarctica"
409
+
410
+ #: ../admin/manage-fields.php:246
411
+ msgid "Antigua and Barbuda"
412
+ msgstr "Antigua and Barbuda"
413
+
414
+ #: ../admin/manage-fields.php:247
415
+ msgid "Argentina"
416
+ msgstr "Argentina"
417
+
418
+ #: ../admin/manage-fields.php:248
419
+ msgid "Armenia"
420
+ msgstr "Armenia"
421
+
422
+ #: ../admin/manage-fields.php:249
423
+ msgid "Aruba"
424
+ msgstr "Aruba"
425
+
426
+ #: ../admin/manage-fields.php:250
427
+ msgid "Australia"
428
+ msgstr "Australia"
429
+
430
+ #: ../admin/manage-fields.php:251
431
+ msgid "Austria"
432
+ msgstr "Austria"
433
+
434
+ #: ../admin/manage-fields.php:252
435
+ msgid "Azerbaijan"
436
+ msgstr "Azerbaijan"
437
+
438
+ #: ../admin/manage-fields.php:253
439
+ msgid "Bahamas"
440
+ msgstr "Bahamas"
441
+
442
+ #: ../admin/manage-fields.php:254
443
+ msgid "Bahrain"
444
+ msgstr "Bahrain"
445
+
446
+ #: ../admin/manage-fields.php:255
447
+ msgid "Bangladesh"
448
+ msgstr "Bangladesh"
449
+
450
+ #: ../admin/manage-fields.php:256
451
+ msgid "Barbados"
452
+ msgstr "Barbados"
453
+
454
+ #: ../admin/manage-fields.php:257
455
+ msgid "Belarus"
456
+ msgstr "Belarus"
457
+
458
+ #: ../admin/manage-fields.php:258
459
+ msgid "Belgium"
460
+ msgstr "Belgium"
461
+
462
+ #: ../admin/manage-fields.php:259
463
+ msgid "Belize"
464
+ msgstr "Belize"
465
+
466
+ #: ../admin/manage-fields.php:260
467
+ msgid "Benin"
468
+ msgstr "Benin"
469
+
470
+ #: ../admin/manage-fields.php:261
471
+ msgid "Bermuda"
472
+ msgstr "Bermuda"
473
+
474
+ #: ../admin/manage-fields.php:262
475
+ msgid "Bhutan"
476
+ msgstr "Bhutan"
477
+
478
+ #: ../admin/manage-fields.php:263
479
+ msgid "Bolivia"
480
+ msgstr "Bolivia"
481
+
482
+ #: ../admin/manage-fields.php:264
483
+ msgid "Bonaire, Saint Eustatius and Saba"
484
+ msgstr "Bonaire, Saint Eustatius and Saba"
485
+
486
+ #: ../admin/manage-fields.php:265
487
+ msgid "Bosnia and Herzegovina"
488
+ msgstr "Bosnia and Herzegovina"
489
+
490
+ #: ../admin/manage-fields.php:266
491
+ msgid "Botswana"
492
+ msgstr "Botswana"
493
+
494
+ #: ../admin/manage-fields.php:267
495
+ msgid "Bouvet Island"
496
+ msgstr "Bouvet Island"
497
+
498
+ #: ../admin/manage-fields.php:268
499
+ msgid "Brazil"
500
+ msgstr "Brazil"
501
+
502
+ #: ../admin/manage-fields.php:269
503
+ msgid "British Indian Ocean Territory"
504
+ msgstr "British Indian Ocean Territory"
505
+
506
+ #: ../admin/manage-fields.php:270
507
+ msgid "British Virgin Islands"
508
+ msgstr "British Virgin Islands"
509
+
510
+ #: ../admin/manage-fields.php:271
511
+ msgid "Brunei"
512
+ msgstr "Brunei"
513
+
514
+ #: ../admin/manage-fields.php:272
515
+ msgid "Bulgaria"
516
+ msgstr "Bulgaria"
517
+
518
+ #: ../admin/manage-fields.php:273
519
+ msgid "Burkina Faso"
520
+ msgstr "Burkina Faso"
521
+
522
+ #: ../admin/manage-fields.php:274
523
+ msgid "Burundi"
524
+ msgstr "Burundi"
525
+
526
+ #: ../admin/manage-fields.php:275
527
+ msgid "Cambodia"
528
+ msgstr "Cambodia"
529
+
530
+ #: ../admin/manage-fields.php:276
531
+ msgid "Cameroon"
532
+ msgstr "Cameroon"
533
+
534
+ #: ../admin/manage-fields.php:277
535
+ msgid "Canada"
536
+ msgstr "Canada"
537
+
538
+ #: ../admin/manage-fields.php:278
539
+ msgid "Cape Verde"
540
+ msgstr "Cape Verde"
541
+
542
+ #: ../admin/manage-fields.php:279
543
+ msgid "Cayman Islands"
544
+ msgstr "Cayman Islands"
545
+
546
+ #: ../admin/manage-fields.php:280
547
+ msgid "Central African Republic"
548
+ msgstr "Central African Republic"
549
+
550
+ #: ../admin/manage-fields.php:281
551
+ msgid "Chad"
552
+ msgstr "Chad"
553
+
554
+ #: ../admin/manage-fields.php:282
555
+ msgid "Chile"
556
+ msgstr "Chile"
557
+
558
+ #: ../admin/manage-fields.php:283
559
+ msgid "China"
560
+ msgstr "China"
561
+
562
+ #: ../admin/manage-fields.php:284
563
+ msgid "Christmas Island"
564
+ msgstr "Christmas Island"
565
+
566
+ #: ../admin/manage-fields.php:285
567
+ msgid "Cocos Islands"
568
+ msgstr "Cocos Islands"
569
+
570
+ #: ../admin/manage-fields.php:286
571
+ msgid "Colombia"
572
+ msgstr "Colombia"
573
+
574
+ #: ../admin/manage-fields.php:287
575
+ msgid "Comoros"
576
+ msgstr "Comoros"
577
+
578
+ #: ../admin/manage-fields.php:288
579
+ msgid "Cook Islands"
580
+ msgstr "Cook Islands"
581
+
582
+ #: ../admin/manage-fields.php:289
583
+ msgid "Costa Rica"
584
+ msgstr "Costa Rica"
585
+
586
+ #: ../admin/manage-fields.php:290
587
+ msgid "Croatia"
588
+ msgstr "Croatia"
589
+
590
+ #: ../admin/manage-fields.php:291
591
+ msgid "Cuba"
592
+ msgstr "Cuba"
593
+
594
+ #: ../admin/manage-fields.php:292
595
+ msgid "Curacao"
596
+ msgstr "Curacao"
597
+
598
+ #: ../admin/manage-fields.php:293
599
+ msgid "Cyprus"
600
+ msgstr "Cyprus"
601
+
602
+ #: ../admin/manage-fields.php:294
603
+ msgid "Czech Republic"
604
+ msgstr "Czech Republic"
605
+
606
+ #: ../admin/manage-fields.php:295
607
+ msgid "Democratic Republic of the Congo"
608
+ msgstr "Democratic Republic of the Congo"
609
+
610
+ #: ../admin/manage-fields.php:296
611
+ msgid "Denmark"
612
+ msgstr "Denmark"
613
+
614
+ #: ../admin/manage-fields.php:297
615
+ msgid "Djibouti"
616
+ msgstr "Djibouti"
617
+
618
+ #: ../admin/manage-fields.php:298
619
+ msgid "Dominica"
620
+ msgstr "Dominica"
621
+
622
+ #: ../admin/manage-fields.php:299
623
+ msgid "Dominican Republic"
624
+ msgstr "Dominican Republic"
625
+
626
+ #: ../admin/manage-fields.php:300
627
+ msgid "East Timor"
628
+ msgstr "East Timor"
629
+
630
+ #: ../admin/manage-fields.php:301
631
+ msgid "Ecuador"
632
+ msgstr "Ecuador"
633
+
634
+ #: ../admin/manage-fields.php:302
635
+ msgid "Egypt"
636
+ msgstr "Egypt"
637
+
638
+ #: ../admin/manage-fields.php:303
639
+ msgid "El Salvador"
640
+ msgstr "El Salvador"
641
+
642
+ #: ../admin/manage-fields.php:304
643
+ msgid "Equatorial Guinea"
644
+ msgstr "Equatorial Guinea"
645
+
646
+ #: ../admin/manage-fields.php:305
647
+ msgid "Eritrea"
648
+ msgstr "Eritrea"
649
+
650
+ #: ../admin/manage-fields.php:306
651
+ msgid "Estonia"
652
+ msgstr "Estonia"
653
+
654
+ #: ../admin/manage-fields.php:307
655
+ msgid "Ethiopia"
656
+ msgstr "Ethiopia"
657
+
658
+ #: ../admin/manage-fields.php:308
659
+ msgid "Falkland Islands"
660
+ msgstr "Falkland Islands"
661
+
662
+ #: ../admin/manage-fields.php:309
663
+ msgid "Faroe Islands"
664
+ msgstr "Faroe Islands"
665
+
666
+ #: ../admin/manage-fields.php:310
667
+ msgid "Fiji"
668
+ msgstr "Fiji"
669
+
670
+ #: ../admin/manage-fields.php:311
671
+ msgid "Finland"
672
+ msgstr "Finland"
673
+
674
+ #: ../admin/manage-fields.php:312
675
+ msgid "France"
676
+ msgstr "France"
677
+
678
+ #: ../admin/manage-fields.php:313
679
+ msgid "French Guiana"
680
+ msgstr "French Guiana"
681
+
682
+ #: ../admin/manage-fields.php:314
683
+ msgid "French Polynesia"
684
+ msgstr "French Polynesia"
685
+
686
+ #: ../admin/manage-fields.php:315
687
+ msgid "French Southern Territories"
688
+ msgstr "French Southern Territories"
689
+
690
+ #: ../admin/manage-fields.php:316
691
+ msgid "Gabon"
692
+ msgstr "Gabon"
693
+
694
+ #: ../admin/manage-fields.php:317
695
+ msgid "Gambia"
696
+ msgstr "Gambia"
697
+
698
+ #: ../admin/manage-fields.php:318
699
+ msgid "Georgia"
700
+ msgstr "Georgia"
701
+
702
+ #: ../admin/manage-fields.php:319
703
+ msgid "Germany"
704
+ msgstr "Germany"
705
+
706
+ #: ../admin/manage-fields.php:320
707
+ msgid "Ghana"
708
+ msgstr "Ghana"
709
+
710
+ #: ../admin/manage-fields.php:321
711
+ msgid "Gibraltar"
712
+ msgstr "Gibraltar"
713
+
714
+ #: ../admin/manage-fields.php:322
715
+ msgid "Greece"
716
+ msgstr "Greece"
717
+
718
+ #: ../admin/manage-fields.php:323
719
+ msgid "Greenland"
720
+ msgstr "Greenland"
721
+
722
+ #: ../admin/manage-fields.php:324
723
+ msgid "Grenada"
724
+ msgstr "Grenada"
725
+
726
+ #: ../admin/manage-fields.php:325
727
+ msgid "Guadeloupe"
728
+ msgstr "Guadeloupe"
729
+
730
+ #: ../admin/manage-fields.php:326
731
+ msgid "Guam"
732
+ msgstr "Guam"
733
+
734
+ #: ../admin/manage-fields.php:327
735
+ msgid "Guatemala"
736
+ msgstr "Guatemala"
737
+
738
+ #: ../admin/manage-fields.php:328
739
+ msgid "Guernsey"
740
+ msgstr "Guernsey"
741
+
742
+ #: ../admin/manage-fields.php:329
743
+ msgid "Guinea"
744
+ msgstr "Guinea"
745
+
746
+ #: ../admin/manage-fields.php:330
747
+ msgid "Guinea-Bissau"
748
+ msgstr "Guinea-Bissau"
749
+
750
+ #: ../admin/manage-fields.php:331
751
+ msgid "Guyana"
752
+ msgstr "Guyana"
753
+
754
+ #: ../admin/manage-fields.php:332
755
+ msgid "Haiti"
756
+ msgstr "Haiti"
757
+
758
+ #: ../admin/manage-fields.php:333
759
+ msgid "Heard Island and McDonald Islands"
760
+ msgstr "Heard Island and McDonald Islands"
761
+
762
+ #: ../admin/manage-fields.php:334
763
+ msgid "Honduras"
764
+ msgstr "Honduras"
765
+
766
+ #: ../admin/manage-fields.php:335
767
+ msgid "Hong Kong"
768
+ msgstr "Hong Kong"
769
+
770
+ #: ../admin/manage-fields.php:336
771
+ msgid "Hungary"
772
+ msgstr "Hungary"
773
+
774
+ #: ../admin/manage-fields.php:337
775
+ msgid "Iceland"
776
+ msgstr "Iceland"
777
+
778
+ #: ../admin/manage-fields.php:338
779
+ msgid "India"
780
+ msgstr "India"
781
+
782
+ #: ../admin/manage-fields.php:339
783
+ msgid "Indonesia"
784
+ msgstr "Indonesia"
785
+
786
+ #: ../admin/manage-fields.php:340
787
+ msgid "Iran"
788
+ msgstr "Iran"
789
+
790
+ #: ../admin/manage-fields.php:341
791
+ msgid "Iraq"
792
+ msgstr "Iraq"
793
+
794
+ #: ../admin/manage-fields.php:342
795
+ msgid "Ireland"
796
+ msgstr "Ireland"
797
+
798
+ #: ../admin/manage-fields.php:343
799
+ msgid "Isle of Man"
800
+ msgstr "Isle of Man"
801
+
802
+ #: ../admin/manage-fields.php:344
803
+ msgid "Israel"
804
+ msgstr "Israel"
805
+
806
+ #: ../admin/manage-fields.php:345
807
+ msgid "Italy"
808
+ msgstr "Italy"
809
+
810
+ #: ../admin/manage-fields.php:346
811
+ msgid "Ivory Coast"
812
+ msgstr "Ivory Coast"
813
+
814
+ #: ../admin/manage-fields.php:347
815
+ msgid "Jamaica"
816
+ msgstr "Jamaica"
817
+
818
+ #: ../admin/manage-fields.php:348
819
+ msgid "Japan"
820
+ msgstr "Japan"
821
+
822
+ #: ../admin/manage-fields.php:349
823
+ msgid "Jersey"
824
+ msgstr "Jersey"
825
+
826
+ #: ../admin/manage-fields.php:350
827
+ msgid "Jordan"
828
+ msgstr "Jordan"
829
+
830
+ #: ../admin/manage-fields.php:351
831
+ msgid "Kazakhstan"
832
+ msgstr "Kazakhstan"
833
+
834
+ #: ../admin/manage-fields.php:352
835
+ msgid "Kenya"
836
+ msgstr "Kenya"
837
+
838
+ #: ../admin/manage-fields.php:353
839
+ msgid "Kiribati"
840
+ msgstr "Kiribati"
841
+
842
+ #: ../admin/manage-fields.php:354
843
+ msgid "Kosovo"
844
+ msgstr "Kosovo"
845
+
846
+ #: ../admin/manage-fields.php:355
847
+ msgid "Kuwait"
848
+ msgstr "Kuwait"
849
+
850
+ #: ../admin/manage-fields.php:356
851
+ msgid "Kyrgyzstan"
852
+ msgstr "Kyrgyzstan"
853
+
854
+ #: ../admin/manage-fields.php:357
855
+ msgid "Laos"
856
+ msgstr "Laos"
857
+
858
+ #: ../admin/manage-fields.php:358
859
+ msgid "Latvia"
860
+ msgstr "Latvia"
861
+
862
+ #: ../admin/manage-fields.php:359
863
+ msgid "Lebanon"
864
+ msgstr "Lebanon"
865
+
866
+ #: ../admin/manage-fields.php:360
867
+ msgid "Lesotho"
868
+ msgstr "Lesotho"
869
+
870
+ #: ../admin/manage-fields.php:361
871
+ msgid "Liberia"
872
+ msgstr "Liberia"
873
+
874
+ #: ../admin/manage-fields.php:362
875
+ msgid "Libya"
876
+ msgstr "Libya"
877
+
878
+ #: ../admin/manage-fields.php:363
879
+ msgid "Liechtenstein"
880
+ msgstr "Liechtenstein"
881
+
882
+ #: ../admin/manage-fields.php:364
883
+ msgid "Lithuania"
884
+ msgstr "Lithuania"
885
+
886
+ #: ../admin/manage-fields.php:365
887
+ msgid "Luxembourg"
888
+ msgstr "Luxembourg"
889
+
890
+ #: ../admin/manage-fields.php:366
891
+ msgid "Macao"
892
+ msgstr "Macao"
893
+
894
+ #: ../admin/manage-fields.php:367
895
+ msgid "Macedonia"
896
+ msgstr "Macedonia"
897
+
898
+ #: ../admin/manage-fields.php:368
899
+ msgid "Madagascar"
900
+ msgstr "Madagascar"
901
+
902
+ #: ../admin/manage-fields.php:369
903
+ msgid "Malawi"
904
+ msgstr "Malawi"
905
+
906
+ #: ../admin/manage-fields.php:370
907
+ msgid "Malaysia"
908
+ msgstr "Malaysia"
909
+
910
+ #: ../admin/manage-fields.php:371
911
+ msgid "Maldives"
912
+ msgstr "Maldives"
913
+
914
+ #: ../admin/manage-fields.php:372
915
+ msgid "Mali"
916
+ msgstr "Mali"
917
+
918
+ #: ../admin/manage-fields.php:373
919
+ msgid "Malta"
920
+ msgstr "Malta"
921
+
922
+ #: ../admin/manage-fields.php:374
923
+ msgid "Marshall Islands"
924
+ msgstr "Marshall Islands"
925
+
926
+ #: ../admin/manage-fields.php:375
927
+ msgid "Martinique"
928
+ msgstr "Martinique"
929
+
930
+ #: ../admin/manage-fields.php:376
931
+ msgid "Mauritania"
932
+ msgstr "Mauritania"
933
+
934
+ #: ../admin/manage-fields.php:377
935
+ msgid "Mauritius"
936
+ msgstr "Mauritius"
937
+
938
+ #: ../admin/manage-fields.php:378
939
+ msgid "Mayotte"
940
+ msgstr "Mayotte"
941
+
942
+ #: ../admin/manage-fields.php:379
943
+ msgid "Mexico"
944
+ msgstr "Mexico"
945
+
946
+ #: ../admin/manage-fields.php:380
947
+ msgid "Micronesia"
948
+ msgstr "Micronesia"
949
+
950
+ #: ../admin/manage-fields.php:381
951
+ msgid "Moldova"
952
+ msgstr "Moldova"
953
+
954
+ #: ../admin/manage-fields.php:382
955
+ msgid "Monaco"
956
+ msgstr "Monaco"
957
+
958
+ #: ../admin/manage-fields.php:383
959
+ msgid "Mongolia"
960
+ msgstr "Mongolia"
961
+
962
+ #: ../admin/manage-fields.php:384
963
+ msgid "Montenegro"
964
+ msgstr "Montenegro"
965
+
966
+ #: ../admin/manage-fields.php:385
967
+ msgid "Montserrat"
968
+ msgstr "Montserrat"
969
+
970
+ #: ../admin/manage-fields.php:386
971
+ msgid "Morocco"
972
+ msgstr "Morocco"
973
+
974
+ #: ../admin/manage-fields.php:387
975
+ msgid "Mozambique"
976
+ msgstr "Mozambique"
977
+
978
+ #: ../admin/manage-fields.php:388
979
+ msgid "Myanmar"
980
+ msgstr "Myanmar"
981
+
982
+ #: ../admin/manage-fields.php:389
983
+ msgid "Namibia"
984
+ msgstr "Namibia"
985
+
986
+ #: ../admin/manage-fields.php:390
987
+ msgid "Nauru"
988
+ msgstr "Nauru"
989
+
990
+ #: ../admin/manage-fields.php:391
991
+ msgid "Nepal"
992
+ msgstr "Nepal"
993
+
994
+ #: ../admin/manage-fields.php:392
995
+ msgid "Netherlands"
996
+ msgstr "Netherlands"
997
+
998
+ #: ../admin/manage-fields.php:393
999
+ msgid "New Caledonia"
1000
+ msgstr "New Caledonia"
1001
+
1002
+ #: ../admin/manage-fields.php:394
1003
+ msgid "New Zealand"
1004
+ msgstr "New Zealand"
1005
+
1006
+ #: ../admin/manage-fields.php:395
1007
+ msgid "Nicaragua"
1008
+ msgstr "Nicaragua"
1009
+
1010
+ #: ../admin/manage-fields.php:396
1011
+ msgid "Niger"
1012
+ msgstr "Niger"
1013
+
1014
+ #: ../admin/manage-fields.php:397
1015
+ msgid "Nigeria"
1016
+ msgstr "Nigeria"
1017
+
1018
+ #: ../admin/manage-fields.php:398
1019
+ msgid "Niue"
1020
+ msgstr "Niue"
1021
+
1022
+ #: ../admin/manage-fields.php:399
1023
+ msgid "Norfolk Island"
1024
+ msgstr "Norfolk Island"
1025
+
1026
+ #: ../admin/manage-fields.php:400
1027
+ msgid "North Korea"
1028
+ msgstr "North Korea"
1029
+
1030
+ #: ../admin/manage-fields.php:401
1031
+ msgid "Northern Mariana Islands"
1032
+ msgstr "Northern Mariana Islands"
1033
+
1034
+ #: ../admin/manage-fields.php:402
1035
+ msgid "Norway"
1036
+ msgstr "Norway"
1037
+
1038
+ #: ../admin/manage-fields.php:403
1039
+ msgid "Oman"
1040
+ msgstr "Oman"
1041
+
1042
+ #: ../admin/manage-fields.php:404
1043
+ msgid "Pakistan"
1044
+ msgstr "Pakistan"
1045
+
1046
+ #: ../admin/manage-fields.php:405
1047
+ msgid "Palau"
1048
+ msgstr "Palau"
1049
+
1050
+ #: ../admin/manage-fields.php:406
1051
+ msgid "Palestinian Territory"
1052
+ msgstr "Palestinian Territory"
1053
+
1054
+ #: ../admin/manage-fields.php:407
1055
+ msgid "Panama"
1056
+ msgstr "Panama"
1057
+
1058
+ #: ../admin/manage-fields.php:408
1059
+ msgid "Papua New Guinea"
1060
+ msgstr "Papua New Guinea"
1061
+
1062
+ #: ../admin/manage-fields.php:409
1063
+ msgid "Paraguay"
1064
+ msgstr "Paraguay"
1065
+
1066
+ #: ../admin/manage-fields.php:410
1067
+ msgid "Peru"
1068
+ msgstr "Peru"
1069
+
1070
+ #: ../admin/manage-fields.php:411
1071
+ msgid "Philippines"
1072
+ msgstr "Philippines"
1073
+
1074
+ #: ../admin/manage-fields.php:412
1075
+ msgid "Pitcairn"
1076
+ msgstr "Pitcairn"
1077
+
1078
+ #: ../admin/manage-fields.php:413
1079
+ msgid "Poland"
1080
+ msgstr "Poland"
1081
+
1082
+ #: ../admin/manage-fields.php:414
1083
+ msgid "Portugal"
1084
+ msgstr "Portugal"
1085
+
1086
+ #: ../admin/manage-fields.php:415
1087
+ msgid "Puerto Rico"
1088
+ msgstr "Puerto Rico"
1089
+
1090
+ #: ../admin/manage-fields.php:416
1091
+ msgid "Qatar"
1092
+ msgstr "Qatar"
1093
+
1094
+ #: ../admin/manage-fields.php:417
1095
+ msgid "Republic of the Congo"
1096
+ msgstr "Republic of the Congo"
1097
+
1098
+ #: ../admin/manage-fields.php:418
1099
+ msgid "Reunion"
1100
+ msgstr "Reunion"
1101
+
1102
+ #: ../admin/manage-fields.php:419
1103
+ msgid "Romania"
1104
+ msgstr "Romania"
1105
+
1106
+ #: ../admin/manage-fields.php:420
1107
+ msgid "Russia"
1108
+ msgstr "Russia"
1109
+
1110
+ #: ../admin/manage-fields.php:421
1111
+ msgid "Rwanda"
1112
+ msgstr "Rwanda"
1113
+
1114
+ #: ../admin/manage-fields.php:422
1115
+ msgid "Saint Barthelemy"
1116
+ msgstr "Saint Barthelemy"
1117
+
1118
+ #: ../admin/manage-fields.php:423
1119
+ msgid "Saint Helena"
1120
+ msgstr "Saint Helena"
1121
+
1122
+ #: ../admin/manage-fields.php:424
1123
+ msgid "Saint Kitts and Nevis"
1124
+ msgstr "Saint Kitts and Nevis"
1125
+
1126
+ #: ../admin/manage-fields.php:425
1127
+ msgid "Saint Lucia"
1128
+ msgstr "Saint Lucia"
1129
+
1130
+ #: ../admin/manage-fields.php:426
1131
+ msgid "Saint Martin"
1132
+ msgstr "Saint Martin"
1133
+
1134
+ #: ../admin/manage-fields.php:427
1135
+ msgid "Saint Pierre and Miquelon"
1136
+ msgstr "Saint Pierre and Miquelon"
1137
+
1138
+ #: ../admin/manage-fields.php:428
1139
+ msgid "Saint Vincent and the Grenadines"
1140
+ msgstr "Saint Vincent and the Grenadines"
1141
+
1142
+ #: ../admin/manage-fields.php:429
1143
+ msgid "Samoa"
1144
+ msgstr "Samoa"
1145
+
1146
+ #: ../admin/manage-fields.php:430
1147
+ msgid "San Marino"
1148
+ msgstr "San Marino"
1149
+
1150
+ #: ../admin/manage-fields.php:431
1151
+ msgid "Sao Tome and Principe"
1152
+ msgstr "Sao Tome and Principe"
1153
+
1154
+ #: ../admin/manage-fields.php:432
1155
+ msgid "Saudi Arabia"
1156
+ msgstr "Saudi Arabia"
1157
+
1158
+ #: ../admin/manage-fields.php:433
1159
+ msgid "Senegal"
1160
+ msgstr "Senegal"
1161
+
1162
+ #: ../admin/manage-fields.php:434
1163
+ msgid "Serbia"
1164
+ msgstr "Serbia"
1165
+
1166
+ #: ../admin/manage-fields.php:435
1167
+ msgid "Seychelles"
1168
+ msgstr "Seychelles"
1169
+
1170
+ #: ../admin/manage-fields.php:436
1171
+ msgid "Sierra Leone"
1172
+ msgstr "Sierra Leone"
1173
+
1174
+ #: ../admin/manage-fields.php:437
1175
+ msgid "Singapore"
1176
+ msgstr "Singapore"
1177
+
1178
+ #: ../admin/manage-fields.php:438
1179
+ msgid "Sint Maarten"
1180
+ msgstr "Sint Maarten"
1181
+
1182
+ #: ../admin/manage-fields.php:439
1183
+ msgid "Slovakia"
1184
+ msgstr "Slovakia"
1185
+
1186
+ #: ../admin/manage-fields.php:440
1187
+ msgid "Slovenia"
1188
+ msgstr "Slovenia"
1189
+
1190
+ #: ../admin/manage-fields.php:441
1191
+ msgid "Solomon Islands"
1192
+ msgstr "Solomon Islands"
1193
+
1194
+ #: ../admin/manage-fields.php:442
1195
+ msgid "Somalia"
1196
+ msgstr "Somalia"
1197
+
1198
+ #: ../admin/manage-fields.php:443
1199
+ msgid "South Africa"
1200
+ msgstr "South Africa"
1201
+
1202
+ #: ../admin/manage-fields.php:444
1203
+ msgid "South Georgia and the South Sandwich Islands"
1204
+ msgstr "South Georgia and the South Sandwich Islands"
1205
+
1206
+ #: ../admin/manage-fields.php:445
1207
+ msgid "South Korea"
1208
+ msgstr "South Korea"
1209
+
1210
+ #: ../admin/manage-fields.php:446
1211
+ msgid "South Sudan"
1212
+ msgstr "South Sudan"
1213
+
1214
+ #: ../admin/manage-fields.php:447
1215
+ msgid "Spain"
1216
+ msgstr "Spain"
1217
+
1218
+ #: ../admin/manage-fields.php:448
1219
+ msgid "Sri Lanka"
1220
+ msgstr "Sri Lanka"
1221
+
1222
+ #: ../admin/manage-fields.php:449
1223
+ msgid "Sudan"
1224
+ msgstr "Sudan"
1225
+
1226
+ #: ../admin/manage-fields.php:450
1227
+ msgid "Suriname"
1228
+ msgstr "Suriname"
1229
+
1230
+ #: ../admin/manage-fields.php:451
1231
+ msgid "Svalbard and Jan Mayen"
1232
+ msgstr "Svalbard and Jan Mayen"
1233
+
1234
+ #: ../admin/manage-fields.php:452
1235
+ msgid "Swaziland"
1236
+ msgstr "Swaziland"
1237
+
1238
+ #: ../admin/manage-fields.php:453
1239
+ msgid "Sweden"
1240
+ msgstr "Sweden"
1241
+
1242
+ #: ../admin/manage-fields.php:454
1243
+ msgid "Switzerland"
1244
+ msgstr "Switzerland"
1245
+
1246
+ #: ../admin/manage-fields.php:455
1247
+ msgid "Syria"
1248
+ msgstr "Syria"
1249
+
1250
+ #: ../admin/manage-fields.php:456
1251
+ msgid "Taiwan"
1252
+ msgstr "Taiwan"
1253
+
1254
+ #: ../admin/manage-fields.php:457
1255
+ msgid "Tajikistan"
1256
+ msgstr "Tajikistan"
1257
+
1258
+ #: ../admin/manage-fields.php:458
1259
+ msgid "Tanzania"
1260
+ msgstr "Tanzania"
1261
+
1262
+ #: ../admin/manage-fields.php:459
1263
+ msgid "Thailand"
1264
+ msgstr "Thailand"
1265
+
1266
+ #: ../admin/manage-fields.php:460
1267
+ msgid "Togo"
1268
+ msgstr "Togo"
1269
+
1270
+ #: ../admin/manage-fields.php:461
1271
+ msgid "Tokelau"
1272
+ msgstr "Tokelau"
1273
+
1274
+ #: ../admin/manage-fields.php:462
1275
+ msgid "Tonga"
1276
+ msgstr "Tonga"
1277
+
1278
+ #: ../admin/manage-fields.php:463
1279
+ msgid "Trinidad and Tobago"
1280
+ msgstr "Trinidad and Tobago"
1281
+
1282
+ #: ../admin/manage-fields.php:464
1283
+ msgid "Tunisia"
1284
+ msgstr "Tunisia"
1285
+
1286
+ #: ../admin/manage-fields.php:465
1287
+ msgid "Turkey"
1288
+ msgstr "Turkey"
1289
+
1290
+ #: ../admin/manage-fields.php:466
1291
+ msgid "Turkmenistan"
1292
+ msgstr "Turkmenistan"
1293
+
1294
+ #: ../admin/manage-fields.php:467
1295
+ msgid "Turks and Caicos Islands"
1296
+ msgstr "Turks and Caicos Islands"
1297
+
1298
+ #: ../admin/manage-fields.php:468
1299
+ msgid "Tuvalu"
1300
+ msgstr "Tuvalu"
1301
+
1302
+ #: ../admin/manage-fields.php:469
1303
+ msgid "U.S. Virgin Islands"
1304
+ msgstr "U.S. Virgin Islands"
1305
+
1306
+ #: ../admin/manage-fields.php:470
1307
+ msgid "Uganda"
1308
+ msgstr "Uganda"
1309
+
1310
+ #: ../admin/manage-fields.php:471
1311
+ msgid "Ukraine"
1312
+ msgstr "Ukraine"
1313
+
1314
+ #: ../admin/manage-fields.php:472
1315
+ msgid "United Arab Emirates"
1316
+ msgstr "United Arab Emirates"
1317
+
1318
+ #: ../admin/manage-fields.php:473
1319
+ msgid "United Kingdom"
1320
+ msgstr "United Kingdom"
1321
+
1322
+ #: ../admin/manage-fields.php:474
1323
+ msgid "United States"
1324
+ msgstr "United States"
1325
+
1326
+ #: ../admin/manage-fields.php:475
1327
+ msgid "United States Minor Outlying Islands"
1328
+ msgstr "United States Minor Outlying Islands"
1329
+
1330
+ #: ../admin/manage-fields.php:476
1331
+ msgid "Uruguay"
1332
+ msgstr "Uruguay"
1333
+
1334
+ #: ../admin/manage-fields.php:477
1335
+ msgid "Uzbekistan"
1336
+ msgstr "Uzbekistan"
1337
+
1338
+ #: ../admin/manage-fields.php:478
1339
+ msgid "Vanuatu"
1340
+ msgstr "Vanuatu"
1341
+
1342
+ #: ../admin/manage-fields.php:479
1343
+ msgid "Vatican"
1344
+ msgstr "Vatican"
1345
+
1346
+ #: ../admin/manage-fields.php:480
1347
+ msgid "Venezuela"
1348
+ msgstr "Venezuela"
1349
+
1350
+ #: ../admin/manage-fields.php:481
1351
+ msgid "Vietnam"
1352
+ msgstr "Vietnam"
1353
+
1354
+ #: ../admin/manage-fields.php:482
1355
+ msgid "Wallis and Futuna"
1356
+ msgstr "Wallis and Futuna"
1357
+
1358
+ #: ../admin/manage-fields.php:483
1359
+ msgid "Western Sahara"
1360
+ msgstr "Western Sahara"
1361
+
1362
+ #: ../admin/manage-fields.php:484
1363
+ msgid "Yemen"
1364
+ msgstr "Yemen"
1365
+
1366
+ #: ../admin/manage-fields.php:485
1367
+ msgid "Zambia"
1368
+ msgstr "Zambia"
1369
+
1370
+ #: ../admin/manage-fields.php:486
1371
+ msgid "Zimbabwe"
1372
+ msgstr "Zimbabwe"
1373
+
1374
+ #: ../admin/manage-fields.php:843
1375
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
1376
+ msgstr ""
1377
+
1378
+ #: ../assets/misc/plugin-compatibilities.php:241
1379
+ msgid "Your account has to be confirmed by an administrator before you can log in."
1380
+ msgstr ""
1381
+
1382
+ #: ../features/admin-approval/admin-approval.php:203
1383
+ msgid "Your account has been successfully created!"
1384
+ msgstr ""
1385
+
1386
+ #: ../features/functions.php:620
1387
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:374
1388
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:379
1389
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1390
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:458
1391
+ msgid "Please enter a (valid) reCAPTCHA value"
1392
+ msgstr ""
1393
+
1394
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1395
+ msgid "Click the BACK button on your browser, and try again."
1396
+ msgstr ""
1397
+
1398
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:78
1399
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:87
1400
+ msgid "Sorry, you cannot upload this file type for this field."
1401
+ msgstr ""
1402
+
1403
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:94
1404
+ msgid "An error occurred, please try again later."
1405
+ msgstr ""
1406
+
1407
+ #: ../modules/user-listing/userlisting.php:253
1408
+ msgid "More"
1409
+ msgstr ""
1410
+
1411
+ #: ../modules/user-listing/userlisting.php:338
1412
+ msgid "You do not have permission to view this user list."
1413
+ msgstr ""
1414
+
1415
+ #: ../modules/user-listing/userlisting.php:351
1416
+ msgid "You do not have the required user role to view this user list."
1417
+ msgstr ""
1418
+
1419
+ #: ../modules/user-listing/userlisting.php:1287
1420
+ msgid "Ascending"
1421
+ msgstr ""
1422
+
1423
+ #: ../modules/user-listing/userlisting.php:1288
1424
+ msgid "Descending"
1425
+ msgstr ""
1426
+
1427
+ #: ../admin/add-ons.php:144 ../admin/add-ons.php:251
1428
+ #: ../admin/pms-cross-promotion.php:134 ../admin/pms-cross-promotion.php:213
1429
+ msgid "Download Now"
1430
+ msgstr "Jetzt downloaden"
1431
+
1432
+ #: ../admin/admin-functions.php:197
1433
+ msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
1434
+ msgstr "Gefällt dir <strong> %1$s </strong> dann <a href=\"%2$s\" target=\"_blank\">bewerte uns bitte auf WordPress.org</a>. Mehr glückliche Benutzer, bedeuten mehr Features, weniger Fehler und besseren Support für jeden."
1435
+
1436
+ #: ../admin/manage-fields.php:68
1437
+ msgid "Choose one of the supported field types"
1438
+ msgstr "Wähle eins von den unterstützen Dateitypen."
1439
+
1440
+ #: ../admin/manage-fields.php:70
1441
+ msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
1442
+ msgstr "Extra Feldtypen stehen in der <a href=\"%s\">Hobbyist oder PRO Version</a> zur Verfügung."
1443
+
1444
+ #: ../admin/manage-fields.php:107
1445
+ msgid "Site Key"
1446
+ msgstr "Seitenschlüssel"
1447
+
1448
+ #: ../admin/manage-fields.php:107
1449
+ msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1450
+ msgstr "Der Seitenschlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1451
+
1452
+ #: ../admin/manage-fields.php:108
1453
+ msgid "Secret Key"
1454
+ msgstr "Geheimer Schlüssel"
1455
+
1456
+ #: ../admin/manage-fields.php:108
1457
+ msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1458
+ msgstr "Der geheime Schlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1459
+
1460
+ #: ../admin/manage-fields.php:660
1461
+ msgid "You must enter the site key\n"
1462
+ msgstr "Du musst den Seiten Schlüssel eingeben\n"
1463
+
1464
+ #: ../admin/manage-fields.php:662
1465
+ msgid "You must enter the secret key\n"
1466
+ msgstr "Du musst den geheimen Schlüssel eingeben\n"
1467
+
1468
+ #: ../admin/add-ons.php:10 ../admin/add-ons.php:32
1469
+ msgid "Add-Ons"
1470
+ msgstr "Add-Ons"
1471
+
1472
+ #: ../admin/add-ons.php:34 ../admin/add-ons.php:124 ../admin/add-ons.php:231
1473
+ #: ../admin/pms-cross-promotion.php:78 ../admin/pms-cross-promotion.php:114
1474
+ #: ../admin/pms-cross-promotion.php:193
1475
+ msgid "Activate"
1476
+ msgstr "Aktivieren"
1477
+
1478
+ #: ../admin/add-ons.php:36 ../admin/pms-cross-promotion.php:80
1479
+ msgid "Downloading and installing..."
1480
+ msgstr "Downloaden und installieren..."
1481
+
1482
+ #: ../admin/add-ons.php:37 ../admin/pms-cross-promotion.php:81
1483
+ msgid "Installation complete"
1484
+ msgstr "Installation abgeschlossen"
1485
+
1486
+ #: ../admin/add-ons.php:39
1487
+ msgid "Add-On is Active"
1488
+ msgstr "Add-On ist aktiv"
1489
+
1490
+ #: ../admin/add-ons.php:40
1491
+ msgid "Add-On has been activated"
1492
+ msgstr "Add-On wurde aktiviert"
1493
+
1494
+ #: ../admin/add-ons.php:41 ../admin/pms-cross-promotion.php:85
1495
+ msgid "Retry Install"
1496
+ msgstr "Installation erneut versuchen"
1497
+
1498
+ #: ../admin/add-ons.php:43 ../admin/add-ons.php:135
1499
+ msgid "Add-On is <strong>active</strong>"
1500
+ msgstr "Add-On ist <strong>aktiv</strong>"
1501
+
1502
+ #: ../admin/add-ons.php:44 ../admin/add-ons.php:133
1503
+ msgid "Add-On is <strong>inactive</strong>"
1504
+ msgstr "Add-On ist <strong>inaktiv</strong>"
1505
+
1506
+ #: ../admin/add-ons.php:46 ../admin/add-ons.php:128 ../admin/add-ons.php:235
1507
+ #: ../admin/pms-cross-promotion.php:90 ../admin/pms-cross-promotion.php:118
1508
+ #: ../admin/pms-cross-promotion.php:197
1509
+ msgid "Deactivate"
1510
+ msgstr "Deaktivieren"
1511
+
1512
+ #: ../admin/add-ons.php:47
1513
+ msgid "Add-On has been deactivated."
1514
+ msgstr "Add-On wurde deaktiviert."
1515
+
1516
+ #: ../admin/add-ons.php:59
1517
+ msgid "Something went wrong, we could not connect to the server. Please try again later."
1518
+ msgstr "Etwas ist falsch gelaufen, wir konnten uns nicht mit dem Server verbinden. Bitte versuche es später erneut."
1519
+
1520
+ #: ../admin/add-ons.php:144 ../admin/add-ons.php:147
1521
+ msgid "Buy Now"
1522
+ msgstr "Jetzt kaufen"
1523
+
1524
+ #: ../admin/add-ons.php:147 ../admin/add-ons.php:254
1525
+ #: ../admin/pms-cross-promotion.php:137 ../admin/pms-cross-promotion.php:216
1526
+ msgid "Install Now"
1527
+ msgstr "Jetzt installieren"
1528
+
1529
+ #: ../admin/add-ons.php:153 ../admin/add-ons.php:258
1530
+ #: ../admin/pms-cross-promotion.php:141 ../admin/pms-cross-promotion.php:220
1531
+ msgid "Compatible with your version of Profile Builder."
1532
+ msgstr "Kompatibel mit deiner Version von Profile Builder."
1533
+
1534
+ #: ../admin/add-ons.php:162
1535
+ msgid "Upgrade Profile Builder"
1536
+ msgstr "Profile Builder upgraden"
1537
+
1538
+ #: ../admin/add-ons.php:163
1539
+ msgid "Not compatible with Profile Builder"
1540
+ msgstr "Nicht kompatibel mit Profile Builder"
1541
+
1542
+ #: ../admin/add-ons.php:171
1543
+ msgid "Not compatible with your version of Profile Builder."
1544
+ msgstr "Nicht kompatibel mit deiner Version von Profile Builder."
1545
+
1546
+ #: ../admin/add-ons.php:172
1547
+ msgid "Minimum required Profile Builder version:"
1548
+ msgstr "Minimal benötigte Version von Profile Builder:"
1549
+
1550
+ #: ../admin/add-ons.php:177
1551
+ msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1552
+ msgstr "Add-On konnten nicht installiert werden. Erneut versuchen oder <a href=\"%s\" target=\"_blank\">manuell installieren</a>."
1553
+
1554
+ #: ../front-end/default-fields/email/email.php:48
1555
+ msgid "You must enter a valid email address."
1556
+ msgstr "Du musst eine gültige E-Mail Adresse angeben."
1557
+
1558
+ #: ../front-end/default-fields/username/username.php:53
1559
+ #: ../front-end/default-fields/username/username.php:60
1560
+ msgid "This username is invalid because it uses illegal characters."
1561
+ msgstr "Der Benutzername ist ungültig, da dieser ungültige Zeichen enthält."
1562
+
1563
+ #: ../front-end/default-fields/username/username.php:53
1564
+ #: ../front-end/default-fields/username/username.php:60
1565
+ msgid "Please enter a valid username."
1566
+ msgstr "Bitte gebe einen gültigen Benutzernamen ein."
1567
+
1568
+ #: ../front-end/extra-fields/user-role/user-role.php:67
1569
+ #: ../front-end/extra-fields/user-role/user-role.php:80
1570
+ msgid "Only administrators can see this field on edit profile forms."
1571
+ msgstr "Nur Administratoren können dieses Feld beim editieren von Profilformularen sehen."
1572
+
1573
+ #: ../front-end/extra-fields/user-role/user-role.php:76
1574
+ msgid "As an administrator you cannot change your role."
1575
+ msgstr "Als Administrator kannst du deine Berechtigungen nicht ändern."
1576
+
1577
+ #: ../modules/email-customizer/admin-email-customizer.php:117
1578
+ msgid ""
1579
+ "\n"
1580
+ "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
1581
+ "<p>His/her new password is: {{password}}</p>\n"
1582
+ msgstr ""
1583
+
1584
+ #: ../modules/email-customizer/admin-email-customizer.php:141
1585
+ msgid "Admin Notification for User Password Reset"
1586
+ msgstr ""
1587
+
1588
+ #: ../modules/email-customizer/email-customizer.php:42
1589
+ msgid "Reset Key"
1590
+ msgstr ""
1591
+
1592
+ #: ../modules/email-customizer/email-customizer.php:43
1593
+ msgid "Reset Url"
1594
+ msgstr ""
1595
+
1596
+ #: ../modules/email-customizer/email-customizer.php:44
1597
+ msgid "Reset Link"
1598
+ msgstr ""
1599
+
1600
+ #: ../modules/email-customizer/user-email-customizer.php:204
1601
+ msgid ""
1602
+ "\n"
1603
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
1604
+ "Username: {{username}}</p>\n"
1605
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
1606
+ "<p>To reset your password, visit the following address:<br/>\n"
1607
+ "{{{reset_link}}}</p>\n"
1608
+ msgstr ""
1609
+
1610
+ #: ../modules/email-customizer/user-email-customizer.php:218
1611
+ msgid "[{{site_name}}] Password Reset"
1612
+ msgstr "[{{site_name}}] Passwortzurücksetzung"
1613
+
1614
+ #: ../modules/email-customizer/user-email-customizer.php:229
1615
+ msgid "Password Reset Email"
1616
+ msgstr "E-Mail für die Passwortzurücksetzung"
1617
+
1618
+ #: ../modules/email-customizer/user-email-customizer.php:235
1619
+ msgid ""
1620
+ "\n"
1621
+ "<p>You have successfully reset your password to: {{password}}</p>\n"
1622
+ msgstr ""
1623
+
1624
+ #: ../modules/email-customizer/user-email-customizer.php:245
1625
+ msgid "[{{site_name}}] Password Reset Successfully"
1626
+ msgstr "[{{site_name}}] Passwortzurücksetzung erfolgreich"
1627
+
1628
+ #: ../modules/email-customizer/user-email-customizer.php:256
1629
+ msgid "Password Reset Success Email"
1630
+ msgstr ""
1631
+
1632
+ #: ../modules/user-listing/userlisting.php:134
1633
+ msgid "User Nicename"
1634
+ msgstr "Benutzername"
1635
+
1636
+ #: ../modules/user-listing/userlisting.php:442
1637
+ msgid "None"
1638
+ msgstr "Nichts"
1639
+
1640
+ #: ../admin/admin-functions.php:128
1641
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1642
+ msgstr "<strong>FEHLER</strong>: Das Passwort muss mindestens %s Zeichen lang sein"
1643
+
1644
+ #: ../admin/admin-functions.php:145
1645
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
1646
+ msgstr "<strong>FEHLER</strong>: Das Passwort muss eine Mindeststärke von %s haben"
1647
+
1648
+ #: ../admin/general-settings.php:163
1649
+ msgid "Username and Email"
1650
+ msgstr "Benutzername und E-Mail"
1651
+
1652
+ #: ../admin/general-settings.php:168
1653
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
1654
+ msgstr "\"Benutzername und E-Mail\" - Benutzer können sich mit Ihrem Benutzernamen und EMail-Adresse anmelden."
1655
+
1656
+ #: ../admin/general-settings.php:169
1657
+ msgid "\"Username\" - users can Log In only with Username."
1658
+ msgstr "\"Benutzername\" - Benutzer können sich nur mit Ihrem Benutzernamen anmelden"
1659
+
1660
+ #: ../admin/general-settings.php:170
1661
+ msgid "\"Email\" - users can Log In only with Email."
1662
+ msgstr "\"E-Mail\" - Benutzer können sich nur mit Ihrer E-Mail-Adresse anmelden."
1663
+
1664
+ #: ../admin/manage-fields.php:100
1665
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
1666
+ msgstr ""
1667
+ "Geben Sie die Datei-Erweiterung(en) ein, die Sie für den Upload erlauben möchten<br/>\n"
1668
+ "z. B.: .ext1,.ext2,.ext3<br/>Bei keiner Eingabe werden die Standard-Erweiterungen gesetzt: .jpg,.jpeg,.gif,.png (.*)"
1669
+
1670
+ #: ../admin/manage-fields.php:101
1671
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
1672
+ msgstr "Geben Sie die Datei-Erweiterung(en) ein, die Sie für den Upload erlauben möchten<br/> z. B.: .ext1,.ext2,.ext3<br/>Bei keiner Eingabe werden alle von WordPress erlaubten Datei-Erweiterungen gesetzt: (.*)"
1673
+
1674
+ #: ../admin/manage-fields.php:111
1675
+ msgid "User Roles"
1676
+ msgstr "Benutzerrollen"
1677
+
1678
+ #: ../admin/manage-fields.php:111
1679
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
1680
+ msgstr "Wählen Sie, welche Benutzerrollen dem Benutzer gezeigt werden sollen (Drag & Drop zum neu sortieren)"
1681
+
1682
+ #: ../admin/manage-fields.php:112
1683
+ msgid "User Roles Order"
1684
+ msgstr "Benutzerrollen Sortierung"
1685
+
1686
+ #: ../admin/manage-fields.php:112
1687
+ msgid "Save the user role order from the user roles checkboxes"
1688
+ msgstr "Speichern Sie die Benutzerrolle von den Checkboxen der Benutzerrollen"
1689
+
1690
+ #: ../admin/manage-fields.php:752
1691
+ msgid "Please select at least one user role\n"
1692
+ msgstr "Bitte wählen Sie mindestens eine Benutzerrolle\n"
1693
+
1694
+ #: ../admin/register-version.php:22
1695
+ msgid "Profile Builder Register"
1696
+ msgstr "Profile Builder Registrierung"
1697
+
1698
+ #: ../admin/register-version.php:81
1699
+ msgid "The serial number is about to expire soon!"
1700
+ msgstr "Die Seriennummer wird bald ablaufen!"
1701
+
1702
+ #: ../admin/register-version.php:81
1703
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
1704
+ msgstr "Ihre Seriennummer wird bald ablaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s."
1705
+
1706
+ #: ../admin/register-version.php:83
1707
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
1708
+ msgstr "Ihre Seriennummer ist ablaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s."
1709
+
1710
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
1711
+ msgid "Add Entry"
1712
+ msgstr "Eintrag hinzufügen"
1713
+
1714
+ #: ../features/email-confirmation/class-email-confirmation.php:91
1715
+ msgid "show"
1716
+ msgstr "zeigen"
1717
+
1718
+ #: ../features/functions.php:672
1719
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
1720
+ msgstr "Damit sich Benutzer auf Ihre Website über Profile Builder registrieren können, müssen Sie zunächst die Benutzerregistrierung ermöglichen. Gehen Sie unter %1$sEinstellungen -> Allgemein%2$s und unter Mitgliedschaft stellen Sie sicher, dass das Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sVerwerfen%4$s"
1721
+
1722
+ #: ../front-end/class-formbuilder.php:562
1723
+ msgid "User to edit:"
1724
+ msgstr "Benutzer editieren"
1725
+
1726
+ #: ../front-end/default-fields/password/password.php:46
1727
+ #: ../front-end/recover.php:245
1728
+ msgid "The password must have the minimum length of %s characters"
1729
+ msgstr "Das Passwort muss mindestes %s Zeichen haben"
1730
+
1731
+ #: ../front-end/default-fields/password/password.php:50
1732
+ #: ../front-end/recover.php:249
1733
+ msgid "The password must have a minimum strength of %s"
1734
+ msgstr "Das Passwort muss eine Mindeststärke von %s haben"
1735
+
1736
+ #: ../front-end/extra-fields/user-role/user-role.php:112
1737
+ msgid "You cannot register this user role"
1738
+ msgstr "Sie können diese Benutzerrolle nicht registrieren"
1739
+
1740
+ #: ../front-end/login.php:108
1741
+ msgid "username or email"
1742
+ msgstr "Benutzername oder E-Mail-Adresse"
1743
+
1744
+ #: ../front-end/login.php:177
1745
+ msgid "Username or Email"
1746
+ msgstr "Benutzername oder E-Mail-Adresse"
1747
+
1748
+ #: ../front-end/logout.php:15
1749
+ msgid "You are currently logged in as %s. "
1750
+ msgstr "Sie sind als %s eingeloggt."
1751
+
1752
+ #: ../front-end/logout.php:15
1753
+ msgid "Log out &raquo;"
1754
+ msgstr "Ausloggen &raquo;"
1755
+
1756
+ #: ../modules/custom-redirects/custom_redirects_admin.php:92
1757
+ #: ../modules/email-customizer/email-customizer.php:31
1758
+ msgid "User Role"
1759
+ msgstr "Benutzerrolle"
1760
+
1761
+ #: ../modules/user-listing/userlisting.php:1207
1762
+ msgid "View all extra shortcode parameters"
1763
+ msgstr "Alle zusätzlichen Shortcode-Parameter anzeigen"
1764
+
1765
+ #: ../modules/user-listing/userlisting.php:1221
1766
+ msgid "displays only the users that you specified the user_id for"
1767
+ msgstr "nur die Benutzer anzeigen, denen Sie die user_id vergeben haben"
1768
+
1769
+ #: ../modules/user-listing/userlisting.php:1227
1770
+ msgid "displays all users except the ones you specified the user_id for"
1771
+ msgstr "alle Benutzer anzeigen, außer denen Sie die user_id vergeben haben"
1772
+
1773
+ #: ../features/functions.php:539
1774
+ msgid "Minimum length of %d characters"
1775
+ msgstr "Mindestlänge von %d Zeichen"
1776
+
1777
+ #: ../front-end/class-formbuilder.php:142
1778
+ #: ../front-end/class-formbuilder.php:145
1779
+ msgid "This message is only visible by administrators"
1780
+ msgstr "Diese Nachricht ist nur für Administratoren sichtbar"
1781
+
1782
+ #: ../modules/user-listing/userlisting.php:364
1783
+ msgid "User not found"
1784
+ msgstr "Benutzer wurde nicht gefunden"
1785
+
1786
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1787
+ #: ../modules/email-customizer/user-email-customizer.php:38
1788
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
1789
+ msgstr "Gültige Tags {{reply_to}} und {{site_name}}"
1790
+
1791
+ #: ../admin/admin-bar.php:48
1792
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
1793
+ msgstr "Wählen Sie, welche Benutzerrollen Sie in der Admin Bar im Front-End der Website sehen wollen"
1794
+
1795
+ #: ../admin/manage-fields.php:105
1796
+ 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"
1797
+ msgstr "Geben Sie eine kommagetrennte Liste von Werten ein<br/> Diese kann alles mögliche enthalten, da sie vor den Benutzern verborgen ist, sollte aber keine Sonderzeichen oder Apostrophe enthalten"
1798
+
1799
+ #: ../admin/manage-fields.php:689
1800
+ msgid "The meta-name cannot be empty\n"
1801
+ msgstr "Der Meta-Name darf nicht leer sein\n"
1802
+
1803
+ #: ../admin/register-version.php:69
1804
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
1805
+ msgstr "Sie haben eine Kopie des %s erworben. Sie sollten sich die Zeit nehmen, um sich mit der Seriennummer, die Sie erhalten haben, zu registrieren"
1806
+
1807
+ #: ../admin/register-version.php:243
1808
+ 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>"
1809
+ msgstr "<p> Ihre <strong> Profil Builder </strong> Seriennummer ist ungültig oder fehlt. <br/> Bitte %1$s registrieren Sie Ihre Kopien %2$s damit Sie Zugang zu automatischen Updates und Support erhalten. Brauchen Sie noch einen Lizenzschlüssel? %3$s Kaufen Sie jetzt eine%4$s </p>"
1810
+
1811
+ #: ../admin/register-version.php:246
1812
+ 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>"
1813
+ msgstr ""
1814
+ "<p> Ihre <strong> Profil Builder </strong> Lizenz ist abgelaufen. <br/> Bitte %1$serneuern Sie Ihre Lizenz%2$s so dass Sie weiterhin Zugang zu Produkt-Downloads, automatische Updates und Support erhalten . %3$sErneuern Sie jetzt und erhalten Sie 50&#37; Rabatt%4$s %5$s\n"
1815
+ "entlassen%6$s </p>"
1816
+
1817
+ #: ../admin/register-version.php:251
1818
+ 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>"
1819
+ msgstr "<p> Ihre <strong> Profil Builder </strong> Lizenz läuft in Kürze am %5$s ab. <br/> Bitte%1$serneuern Sie Ihre Lizenz%2$s so dass Sie weiterhin Zugang zu Produkt-Downloads, automatische Updates und Support erhalten. %3$sErneuern Sie jetzt und erhalten Sie 5050&#37; Rabatt%4$s %6$sentlassen%7$s </p>"
1820
+
1821
+ #: ../assets/lib/wck-api/fields/country select.php:14
1822
+ #: ../assets/lib/wck-api/fields/cpt select.php:17
1823
+ #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
1824
+ #: select.php:15
1825
+ msgid "...Choose"
1826
+ msgstr "... wähle"
1827
+
1828
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
1829
+ msgid "1 item"
1830
+ msgstr "1 Artikel"
1831
+
1832
+ #: ../features/functions.php:525
1833
+ msgid "Very Weak"
1834
+ msgstr "sehr schwach"
1835
+
1836
+ #: ../features/functions.php:613
1837
+ msgid "This field is required"
1838
+ msgstr "Dieses Feld ist erforderlich"
1839
+
1840
+ #: ../features/functions.php:640
1841
+ msgid "Cancel"
1842
+ msgstr "Abbrechen"
1843
+
1844
+ #: ../features/functions.php:676
1845
+ 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"
1846
+ msgstr ""
1847
+ "Damit sich Benutzer auf Ihre Website über Profile Builder registrieren können, müssen Sie zunächst die Benutzerregistrierung ermöglichen. Gehen Sie unter %1$sEinstellungen -> Allgemein%2$s und unter Mitgliedschaft stellen Sie sicher, dass das\n"
1848
+ "Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sentlassen%4$s"
1849
+
1850
+ #: ../front-end/login.php:99
1851
+ msgid "Invalid username."
1852
+ msgstr "Ungültiger Benutzername."
1853
+
1854
+ #: ../front-end/login.php:104 ../front-end/login.php:108
1855
+ msgid "username"
1856
+ msgstr "Benutzername"
1857
+
1858
+ #: ../front-end/login.php:104
1859
+ msgid "email"
1860
+ msgstr "E-Mail-Adresse"
1861
+
1862
+ #: ../front-end/login.php:211
1863
+ msgid "Lost your password?"
1864
+ msgstr "Passwort vergessen?"
1865
+
1866
+ #: ../index.php:34
1867
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
1868
+ msgstr "ist ebenfalls aktiviert. Sie müssen es vor der Aktivierung dieser Version des Plugins deaktivieren."
1869
+
1870
+ #: ../modules/email-customizer/admin-email-customizer.php:54
1871
+ #: ../modules/email-customizer/user-email-customizer.php:54
1872
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
1873
+ msgstr "Es muss eine gültige E-Mail-Adresse oder der Tag {{reply_to}} sein der die Standardeinstellung für den E-Mail des Administrators ist."
1874
+
1875
+ #: ../features/email-confirmation/email-confirmation.php:561
1876
+ #: ../features/email-confirmation/email-confirmation.php:564
1877
+ #: ../modules/email-customizer/email-customizer.php:413
1878
+ #: ../modules/email-customizer/email-customizer.php:420
1879
+ #: ../modules/email-customizer/email-customizer.php:434
1880
+ msgid "Your selected password at signup"
1881
+ msgstr "Das von Ihnen gewählte Anmeldepasswort"
1882
+
1883
+ #: ../modules/email-customizer/user-email-customizer.php:38
1884
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
1885
+ msgstr "Diese Einstellungen werden nach dem Abspeichern auch auf der Einstellungs-Seite \"Admin-E-Mail Anpassungen\" angezeigt."
1886
+
1887
+ #: ../modules/multiple-forms/edit-profile-forms.php:270
1888
+ msgid "This form is empty."
1889
+ msgstr "Dieses Formular ist leer."
1890
+
1891
+ #: ../modules/multiple-forms/multiple-forms.php:399
1892
+ msgid "Delete all items"
1893
+ msgstr "Löschen Sie alle Einträge"
1894
+
1895
+ #: ../modules/multiple-forms/multiple-forms.php:399
1896
+ msgid "Delete all"
1897
+ msgstr "alles löschen"
1898
+
1899
+ #: ../modules/multiple-forms/register-forms.php:226
1900
+ msgid "Choose..."
1901
+ msgstr "Wählen Sie ..."
1902
+
1903
+ #: ../modules/user-listing/userlisting.php:1298
1904
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
1905
+ msgstr "Bestimmen Sie die Anzahl der Benutzer die auf jeden paginierten Teil der gesamten Benutzer Auflistung angezeigt werden sollte"
1906
+
1907
+ #: ../admin/admin-bar.php:10
1908
+ msgid "Show/Hide the Admin Bar on the Front-End"
1909
+ msgstr "Anzeigen/Verbergen der Admin Bar auf dem Front-End"
1910
+
1911
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
1912
+ msgid "Admin Bar Settings"
1913
+ msgstr "Admin Bar Einstellungen"
1914
+
1915
+ #: ../admin/admin-bar.php:57
1916
+ msgid "User-Role"
1917
+ msgstr "Benutzerrolle"
1918
+
1919
+ #: ../admin/admin-bar.php:58
1920
+ msgid "Visibility"
1921
+ msgstr "Sichtbarkeit"
1922
+
1923
+ #: ../admin/admin-bar.php:73
1924
+ msgid "Default"
1925
+ msgstr "Default"
1926
+
1927
+ #: ../admin/admin-bar.php:74
1928
+ msgid "Show"
1929
+ msgstr "Anzeigen"
1930
+
1931
+ #: ../admin/admin-bar.php:75
1932
+ msgid "Hide"
1933
+ msgstr "Verbergen"
1934
+
1935
+ #: ../admin/admin-bar.php:86 ../admin/general-settings.php:208
1936
+ #: ../admin/register-version.php:95 ../features/functions.php:633
1937
+ #: ../modules/modules.php:117
1938
+ msgid "Save Changes"
1939
+ msgstr "Änderungen speichern"
1940
+
1941
+ #: ../admin/admin-functions.php:34
1942
+ 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 )"
1943
+ msgstr "Anmeldung soll über die E-Mail-Adresse erfolgen. Dieses Feld erscheint NICHT im Front-End! (Sie können diese Einstellungen unter der Registerkarte \"%s\" ändern)"
1944
+
1945
+ #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
1946
+ #: ../admin/general-settings.php:38
1947
+ msgid "General Settings"
1948
+ msgstr "Allgemeine Einstellungen"
1949
+
1950
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:194
1951
+ msgid "Very weak"
1952
+ msgstr "Sehr schwach"
1953
+
1954
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:195
1955
+ #: ../features/functions.php:525
1956
+ msgid "Weak"
1957
+ msgstr "schwach"
1958
+
1959
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:196
1960
+ #: ../features/functions.php:525
1961
+ msgid "Medium"
1962
+ msgstr "Medium"
1963
+
1964
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:197
1965
+ #: ../features/functions.php:525
1966
+ msgid "Strong"
1967
+ msgstr "stark"
1968
+
1969
+ #: ../admin/admin-functions.php:184
1970
+ msgid "Add Field"
1971
+ msgstr "Feld hinzufügen"
1972
+
1973
+ #: ../admin/admin-functions.php:186
1974
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:374
1975
+ msgid "Save Settings"
1976
+ msgstr "Einstellungen speichern"
1977
+
1978
+ #: ../admin/basic-info.php:10
1979
+ msgid "Basic Information"
1980
+ msgstr "Grundlegende Informationen"
1981
+
1982
+ #: ../admin/basic-info.php:29
1983
+ msgid "Version %s"
1984
+ msgstr "Version %s"
1985
+
1986
+ #: ../admin/basic-info.php:30
1987
+ msgid "<strong>Profile Builder </strong>"
1988
+ msgstr "<strong>Profil Builder</strong>"
1989
+
1990
+ #: ../admin/basic-info.php:31
1991
+ msgid "The best way to add front-end registration, edit profile and login forms."
1992
+ msgstr "Der beste Weg, um Front-End-Registrierung hinzufügen ist die Profil und Login-Formulare zu bearbeiten."
1993
+
1994
+ #: ../admin/basic-info.php:33
1995
+ msgid "For Modern User Interaction"
1996
+ msgstr "Für die moderne Benutzerinteraktion"
1997
+
1998
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
1999
+ msgid "Login"
2000
+ msgstr "Login"
2001
+
2002
+ #: ../admin/basic-info.php:40
2003
+ msgid "Registration"
2004
+ msgstr "Registrierung"
2005
+
2006
+ #: ../admin/basic-info.php:44
2007
+ msgid "Edit Profile"
2008
+ msgstr "Profil bearbeiten"
2009
+
2010
+ #: ../admin/basic-info.php:51
2011
+ msgid "Extra Features"
2012
+ msgstr "Extra-Features"
2013
+
2014
+ #: ../admin/basic-info.php:52
2015
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
2016
+ msgstr "Funktionen, die Ihnen mehr Kontrolle über Ihre Benutzer und erhöhte Sicherheit bietet und gegen Registrierungs-Spam von Nutzern hilft."
2017
+
2018
+ #: ../admin/basic-info.php:53
2019
+ msgid "Enable extra features"
2020
+ msgstr "Zusätzliche Features aktivieren"
2021
+
2022
+ #: ../admin/basic-info.php:57
2023
+ msgid "Recover Password"
2024
+ msgstr "Passwort wiederherstellen"
2025
+
2026
+ #: ../admin/basic-info.php:61
2027
+ msgid "Admin Approval (*)"
2028
+ msgstr "Admin-Zulassung (*)"
2029
+
2030
+ #: ../admin/basic-info.php:62
2031
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
2032
+ msgstr "Sie entscheiden, wer ein Benutzer auf Ihrer Website ist. Sie können einzelne Benachrichtigungen per E-Mail bekommen oder mehrere Benutzer gleichzeitig über das WordPress-Dashboard genehmigen."
2033
+
2034
+ #: ../admin/basic-info.php:65
2035
+ msgid "Email Confirmation"
2036
+ msgstr "E-Mail-Bestätigung"
2037
+
2038
+ #: ../admin/basic-info.php:66
2039
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
2040
+ msgstr "Stellen Sie sicher, dass Benutzer sich mit echten E-Mail-Adressen anmelden. Bei der Registrierung erhalten die Benutzer eine Benachrichtigung an diese E-Mail-Adresse, welche diese bestätigen müssen."
2041
+
2042
+ #: ../admin/basic-info.php:69
2043
+ msgid "Minimum Password Length and Strength Meter"
2044
+ msgstr "Minimale Kennwortlänge und Feldstärke-Messgerät"
2045
+
2046
+ #: ../admin/basic-info.php:70
2047
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
2048
+ msgstr "Beseitigen Sie schwache Kennwörter insgesamt, indem Sie eine minimale Kennwortlänge und Durchsetzung einer bestimmten Passwortstärke setzten."
2049
+
2050
+ #: ../admin/basic-info.php:73
2051
+ msgid "Login with Email or Username"
2052
+ msgstr "Login mit E-Mail oder Benutzername"
2053
+
2054
+ #: ../admin/basic-info.php:74
2055
+ msgid "Allow users to log in with their email or username when accessing your site."
2056
+ msgstr "Erlauben Sie Benutzern, sich mit ihrer E-Mail-Adresse oder Benutzername anzumelden, wenn diese auf Ihre Seite zugreifen wollen. "
2057
+
2058
+ #: ../admin/basic-info.php:87
2059
+ msgid "Customize Your Forms The Way You Want (*)"
2060
+ msgstr "Passen Sie die Formulare wie Sie wollen an (*)"
2061
+
2062
+ #: ../admin/basic-info.php:88
2063
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
2064
+ msgstr "Mit zusätzlichen Profil-Felder können Sie genauere Anmeldeformulare erstellen, welches Sie für Ihr Projekt brauchen."
2065
+
2066
+ #: ../admin/basic-info.php:90
2067
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
2068
+ msgstr "Zusätzliche Profil-Felder erhalten Sie mit den Hobbyist oder PRO Versionen. "
2069
+
2070
+ #: ../admin/basic-info.php:92
2071
+ msgid "Get started with extra fields"
2072
+ msgstr "Erste Schritte mit extra Felder"
2073
+
2074
+ #: ../admin/basic-info.php:95
2075
+ msgid "Avatar Upload"
2076
+ msgstr "Profilbild hochladen"
2077
+
2078
+ #: ../admin/basic-info.php:96
2079
+ msgid "Generic Uploads"
2080
+ msgstr "Generische Uploads"
2081
+
2082
+ #: ../admin/basic-info.php:97
2083
+ msgid "Agree To Terms Checkbox"
2084
+ msgstr "AGB-Checkbox"
2085
+
2086
+ #: ../admin/basic-info.php:98
2087
+ msgid "Datepicker"
2088
+ msgstr "Datepicker"
2089
+
2090
+ #: ../admin/basic-info.php:99
2091
+ msgid "reCAPTCHA"
2092
+ msgstr "reCAPTCHA"
2093
+
2094
+ #: ../admin/basic-info.php:100
2095
+ msgid "Country Select"
2096
+ msgstr "Land auswählen"
2097
+
2098
+ #: ../admin/basic-info.php:101
2099
+ msgid "Timezone Select"
2100
+ msgstr "Zeitzone auswählen"
2101
+
2102
+ #: ../admin/basic-info.php:102
2103
+ msgid "Input / Hidden Input"
2104
+ msgstr "Eingabe / versteckte Eingabe"
2105
+
2106
+ #: ../admin/basic-info.php:103
2107
+ msgid "Checkbox"
2108
+ msgstr "Checkbox"
2109
+
2110
+ #: ../admin/basic-info.php:104
2111
+ msgid "Select"
2112
+ msgstr "Auswahl"
2113
+
2114
+ #: ../admin/basic-info.php:105
2115
+ msgid "Radio Buttons"
2116
+ msgstr "Optionsfelder"
2117
+
2118
+ #: ../admin/basic-info.php:106
2119
+ msgid "Textarea"
2120
+ msgstr "Text-bereich"
2121
+
2122
+ #: ../admin/basic-info.php:115
2123
+ msgid "Powerful Modules (**)"
2124
+ msgstr "Leistungsstarke Module (*)"
2125
+
2126
+ #: ../admin/basic-info.php:116
2127
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
2128
+ msgstr "Alles, was Sie benötigen, um Ihre Benutzer zu verwalten ist wahrscheinlich schon über die Pro-Module verfügbar."
2129
+
2130
+ #: ../admin/basic-info.php:118
2131
+ msgid "Enable your modules"
2132
+ msgstr "Aktivieren Sie Ihre Module"
2133
+
2134
+ #: ../admin/basic-info.php:121
2135
+ msgid "Find out more about PRO Modules"
2136
+ msgstr "Erfahren Sie mehr über die PRO-Module"
2137
+
2138
+ #: ../admin/basic-info.php:126 ../modules/modules.php:86
2139
+ #: ../modules/user-listing/userlisting.php:11
2140
+ #: ../modules/user-listing/userlisting.php:12
2141
+ #: ../modules/user-listing/userlisting.php:17
2142
+ #: ../modules/user-listing/userlisting.php:23
2143
+ msgid "User Listing"
2144
+ msgstr "Benutzer-Liste"
2145
+
2146
+ #: ../admin/basic-info.php:128
2147
+ 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."
2148
+ msgstr "Einfache editierbare Vorlagen für die Auflistung Ihrer Website-Benutzer sowie für das Erstellen einzelner Benutzer-Seiten. Shortcode basiert , bietet viele Möglichkeiten, Ihre Auflistungen anzupassen."
2149
+
2150
+ #: ../admin/basic-info.php:134
2151
+ msgid "Email Customizer"
2152
+ msgstr "E-Mail Anpassungen"
2153
+
2154
+ #: ../admin/basic-info.php:135
2155
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
2156
+ msgstr "Personalisieren Sie alle E-Mails die an Benutzer oder Administratoren gesendet werden. Bei der Registrierung, E-Mail-Bestätigung, Admin Genehmigung / un-Zulassung."
2157
+
2158
+ #: ../admin/basic-info.php:138
2159
+ #: ../modules/custom-redirects/custom_redirects_admin.php:32
2160
+ #: ../modules/custom-redirects/custom_redirects_admin.php:33
2161
+ #: ../modules/modules.php:107
2162
+ msgid "Custom Redirects"
2163
+ msgstr "Benutzerdefinierte Umleitungen"
2164
+
2165
+ #: ../admin/basic-info.php:139
2166
+ 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."
2167
+ msgstr "Halten Sie Ihre Benutzer heraus aus dem WordPress-Dashboard, leiten Sie sie an der Front-Seite nach dem Login oder Registrierung um, alles ist nur wenige Klicks entfernt."
2168
+
2169
+ #: ../admin/basic-info.php:144 ../modules/modules.php:72
2170
+ msgid "Multiple Registration Forms"
2171
+ msgstr "Mehrere Anmeldeformulare"
2172
+
2173
+ #: ../admin/basic-info.php:145
2174
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
2175
+ msgstr "Richten Sie mehrere Anmeldeformulare mit verschiedenen Feldern für bestimmte Benutzerrollen ein. Erfassen Sie verschiedene Informationen von verschiedene Arten von Benutzern."
2176
+
2177
+ #: ../admin/basic-info.php:148 ../modules/modules.php:79
2178
+ msgid "Multiple Edit-profile Forms"
2179
+ msgstr "Mehrere Profilbearbeitungs-Formulare"
2180
+
2181
+ #: ../admin/basic-info.php:149
2182
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
2183
+ msgstr "Ermöglichen Sie verschiedenen Benutzerrollen, ihre spezifischen Informationen zu bearbeiten. Errichten Sie mehrere Profil Bearbeitungs-Formulare mit verschiedenen Felder für bestimmte Benutzerrollen."
2184
+
2185
+ #: ../admin/basic-info.php:173
2186
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
2187
+ msgstr "* nur verfügbar in den %1$sHobbyist und Pro-Versionen %2$s."
2188
+
2189
+ #: ../admin/basic-info.php:174
2190
+ msgid "** only available in the %1$sPro version%2$s."
2191
+ msgstr "** nur in der %1$sPro Version%2$s verfügbar."
2192
+
2193
+ #: ../admin/general-settings.php:42
2194
+ msgid "Load Profile Builder's own CSS file in the front-end:"
2195
+ msgstr "Laden Sie die CSS-Datei vom Profil-Generator in die Front-End hoch"
2196
+
2197
+ #: ../admin/general-settings.php:45 ../admin/general-settings.php:58
2198
+ #: ../admin/general-settings.php:107
2199
+ #: ../modules/multiple-forms/register-forms.php:225
2200
+ #: ../modules/multiple-forms/register-forms.php:226
2201
+ #: ../modules/user-listing/userlisting.php:1303
2202
+ msgid "Yes"
2203
+ msgstr "Ja"
2204
+
2205
+ #: ../admin/general-settings.php:47
2206
+ msgid "You can find the default file here: %1$s"
2207
+ msgstr "Sie finden die Standard-Datei hier:%1$s"
2208
+
2209
+ #: ../admin/general-settings.php:54
2210
+ msgid "\"Email Confirmation\" Activated:"
2211
+ msgstr "\"E-Mail-Bestätigung\" aktiviert:"
2212
+
2213
+ #: ../admin/general-settings.php:59 ../admin/general-settings.php:108
2214
+ #: ../modules/multiple-forms/register-forms.php:225
2215
+ #: ../modules/multiple-forms/register-forms.php:226
2216
+ msgid "No"
2217
+ msgstr "Nein"
2218
+
2219
+ #: ../admin/general-settings.php:64
2220
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
2221
+ msgstr "Sie können eine Liste der unbestätigten Emailadressen unter %1$sUsers > alle Benutzer > E-Mail Bestätigung%2$s finden."
2222
+
2223
+ #: ../admin/general-settings.php:72
2224
+ msgid "\"Email Confirmation\" Landing Page:"
2225
+ msgstr "\"E-Mail-Bestätigung\" Landeseite:"
2226
+
2227
+ #: ../admin/general-settings.php:77
2228
+ msgid "Existing Pages"
2229
+ msgstr "Vorhandene Seiten"
2230
+
2231
+ #: ../admin/general-settings.php:92
2232
+ 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."
2233
+ msgstr "Geben Sie die Seite ein, wo der Benutzer umgeleitet werden sollte, wenn er sein E-Mail-Konto bestätigt. Diese Seite kann von der Registerungs- Seite(n) unterschiedlich sein und kann jederzeit geändert werden. Wenn nichts ausgewähltw wird, wird eine einfache Bestätigungsseite für den Benutzer angezeigt."
2234
+
2235
+ #: ../admin/general-settings.php:103
2236
+ msgid "\"Admin Approval\" Activated:"
2237
+ msgstr "\"Admin Genehmigung\" aktiviert:"
2238
+
2239
+ #: ../admin/general-settings.php:111
2240
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
2241
+ msgstr "Sie können eine Liste mit allen Benutzer unter %1$sUsers > alle Benutzer > Admin Genehmigung%2$s finden."
2242
+
2243
+ #: ../admin/general-settings.php:149
2244
+ msgid "\"Admin Approval\" Feature:"
2245
+ msgstr "\"Admin Genehmigung\" Feature:"
2246
+
2247
+ #: ../admin/general-settings.php:152
2248
+ 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."
2249
+ msgstr "Sie entscheiden, wer ein Benutzer auf Ihrer Website ist. Sie können Benachrichtigungen per E-Mail bekommen oder können mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen. Aktivieren Sie die Admin-Genehmigung mit einem Upgrade auf %1$s der Hobbyist oder PRO Versionen %2$s."
2250
+
2251
+ #: ../admin/general-settings.php:159
2252
+ msgid "Allow Users to Log in With:"
2253
+ msgstr "Benutzerberechtigungen zum Einloggen mit:"
2254
+
2255
+ #: ../admin/general-settings.php:164 ../admin/manage-fields.php:159
2256
+ #: ../features/admin-approval/class-admin-approval.php:177
2257
+ #: ../features/email-confirmation/class-email-confirmation.php:167
2258
+ #: ../modules/custom-redirects/custom_redirects_admin.php:56
2259
+ #: ../modules/email-customizer/email-customizer.php:28
2260
+ #: ../modules/user-listing/userlisting.php:92
2261
+ #: ../modules/user-listing/userlisting.php:248
2262
+ #: ../modules/user-listing/userlisting.php:611
2263
+ #: ../modules/user-listing/userlisting.php:1259
2264
+ msgid "Username"
2265
+ msgstr "Benutzername"
2266
+
2267
+ #: ../admin/general-settings.php:165 ../front-end/login.php:173
2268
+ #: ../modules/email-customizer/email-customizer.php:29
2269
+ #: ../modules/user-listing/userlisting.php:617
2270
+ #: ../modules/user-listing/userlisting.php:1260
2271
+ msgid "Email"
2272
+ msgstr "E-Mail"
2273
+
2274
+ #: ../admin/general-settings.php:177
2275
+ msgid "Minimum Password Length:"
2276
+ msgstr "Minimale Kennwortlänge:"
2277
+
2278
+ #: ../admin/general-settings.php:182
2279
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
2280
+ msgstr "Geben Sie die minimalen Zeichen ein, die das Kennwort haben sollten. Lassen Sie es leer für keine Untergrenze"
2281
+
2282
+ #: ../admin/general-settings.php:189
2283
+ msgid "Minimum Password Strength:"
2284
+ msgstr "Minimale Passwortstärke:"
2285
+
2286
+ #: ../admin/general-settings.php:193
2287
+ msgid "Disabled"
2288
+ msgstr "Deaktiviert"
2289
+
2290
+ #: ../admin/manage-fields.php:12
2291
+ msgid "Manage Fields"
2292
+ msgstr "Felder verwalten"
2293
+
2294
+ #: ../admin/manage-fields.php:13
2295
+ msgid "Manage Default and Extra Fields"
2296
+ msgstr "Verwalten von Standard- und Extra Felder"
2297
+
2298
+ #: ../admin/manage-fields.php:94
2299
+ msgid "Field Title"
2300
+ msgstr "Feldtitel"
2301
+
2302
+ #: ../admin/manage-fields.php:94
2303
+ msgid "Title of the field"
2304
+ msgstr "Titel des Feldes"
2305
+
2306
+ #: ../admin/manage-fields.php:95
2307
+ #: ../modules/multiple-forms/edit-profile-forms.php:241
2308
+ #: ../modules/multiple-forms/register-forms.php:262
2309
+ msgid "Field"
2310
+ msgstr "Feld"
2311
+
2312
+ #: ../admin/manage-fields.php:96
2313
+ msgid "Meta-name"
2314
+ msgstr "Meta-name "
2315
+
2316
+ #: ../admin/manage-fields.php:96
2317
+ 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"
2318
+ msgstr "Benutzen Sie das in Verbindung mit den WordPress-Funktionen um den Wert in die Seite Ihrer Wahl anzuzeigen <br/> automatisch vervollständigt, aber in einigen Fällen editierbar (in diesem Fall muss es aber einzigartig sein) <br/> Die Änderung kann bei einer Anzahl von vielen Benutzer, lange dauern"
2319
+
2320
+ #: ../admin/manage-fields.php:97
2321
+ #: ../modules/custom-redirects/custom_redirects_admin.php:65
2322
+ #: ../modules/custom-redirects/custom_redirects_admin.php:95
2323
+ #: ../modules/custom-redirects/custom_redirects_admin.php:114
2324
+ #: ../modules/custom-redirects/custom_redirects_admin.php:139
2325
+ #: ../modules/multiple-forms/edit-profile-forms.php:242
2326
+ #: ../modules/multiple-forms/register-forms.php:263
2327
+ msgid "ID"
2328
+ msgstr "ID"
2329
+
2330
+ #: ../admin/manage-fields.php:97
2331
+ #: ../modules/multiple-forms/edit-profile-forms.php:242
2332
+ #: ../modules/multiple-forms/register-forms.php:263
2333
+ 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"
2334
+ msgstr "Ein einzigartiges, automatisch generiertes ID für dieses spezielle Feld<br/> Sie können dies in Verbindung mit Kriterien verwenden, um dieses Element bei Bedarf aufzuziehlen<br/> Nicht editierbar"
2335
+
2336
+ #: ../admin/manage-fields.php:98
2337
+ msgid "Description"
2338
+ msgstr "Beschreibung"
2339
+
2340
+ #: ../admin/manage-fields.php:98
2341
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
2342
+ msgstr "Geben Sie eine (ausführliche) Beschreibung der Option ein die die Endbenutzer lesen können <br/> Optional"
2343
+
2344
+ #: ../admin/manage-fields.php:99
2345
+ msgid "Row Count"
2346
+ msgstr "Zeilenanzahl"
2347
+
2348
+ #: ../admin/manage-fields.php:99
2349
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
2350
+ msgstr "Geben Sie die Anzahl der Zeilen für ein Text-Feld ein <br/> Wenn nicht angegeben, wird dieser standardmäßig auf 5 gesetzt."
2351
+
2352
+ #: ../admin/manage-fields.php:100
2353
+ msgid "Allowed Image Extensions"
2354
+ msgstr "Erlaubte Bild-Extensions"
2355
+
2356
+ #: ../admin/manage-fields.php:101
2357
+ msgid "Allowed Upload Extensions"
2358
+ msgstr "Zulässige Dateierweiterungen beim Hochladen"
2359
+
2360
+ #: ../admin/manage-fields.php:102
2361
+ msgid "Avatar Size"
2362
+ msgstr "Profilbild-Größe"
2363
+
2364
+ #: ../admin/manage-fields.php:102
2365
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
2366
+ msgstr "Geben Sie einen Wert (zwischen 20 und 200) für die Größe des 'Profilbilds' ein<br/> Falls nicht angegeben, wird er standardmäßig auf 100 gesetzt"
2367
+
2368
+ #: ../admin/manage-fields.php:103
2369
+ msgid "Date-format"
2370
+ msgstr "Datums-format"
2371
+
2372
+ #: ../admin/manage-fields.php:103
2373
+ 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"
2374
+ msgstr "Geben Sie das Format des Datums beim Verwenden vom der Datumsauswahl ein<br/> gültige Optionen: MoMo/TT/JJ, MoMo/JJ/TT, TT/JJ/MoMo, TT/MoMo/JJ, JJ/TT/MoMo, JJ/MoMo/TT <br/> Wenn nicht angegeben, wird es standardmäßig auf MoMo/TT/JJ gesetzt. "
2375
+
2376
+ #: ../admin/manage-fields.php:104
2377
+ msgid "Terms of Agreement"
2378
+ msgstr "Nutzungsbedingungen"
2379
+
2380
+ #: ../admin/manage-fields.php:104
2381
+ 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;"
2382
+ msgstr "Geben Sie eine detaillierte Beschreibung der Bedingungen der Vereinbarung für den Benutzer zu lesen ein. <br/>Links können mit standard-HTML-Syntax eingefügt werden: &lt; a href =\"custom_url\"&gt;custom_text &lt;/a&gt;"
2383
+
2384
+ #: ../admin/manage-fields.php:105
2385
+ msgid "Options"
2386
+ msgstr "Optionen"
2387
+
2388
+ #: ../admin/manage-fields.php:106
2389
+ msgid "Labels"
2390
+ msgstr "Beschriftung "
2391
+
2392
+ #: ../admin/manage-fields.php:106
2393
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
2394
+ msgstr "Geben Sie eine durch Kommas getrennte Liste der Beschriftungen ein<br/>für den Benutzer sichtbar"
2395
+
2396
+ #: ../admin/manage-fields.php:113
2397
+ msgid "Default Value"
2398
+ msgstr "Standardwert"
2399
+
2400
+ #: ../admin/manage-fields.php:113
2401
+ msgid "Default value of the field"
2402
+ msgstr "Standardwert des Feldes"
2403
+
2404
+ #: ../admin/manage-fields.php:114 ../admin/manage-fields.php:116
2405
+ #: ../admin/manage-fields.php:117
2406
+ msgid "Default Option"
2407
+ msgstr "Standardoption"
2408
+
2409
+ #: ../admin/manage-fields.php:114
2410
+ msgid "Specify the option which should be selected by default"
2411
+ msgstr "Geben Sie die Option, die standardmäßig ausgewählt werden sollte ein"
2412
+
2413
+ #: ../admin/manage-fields.php:115
2414
+ msgid "Default Option(s)"
2415
+ msgstr "Standard Option(en)"
2416
+
2417
+ #: ../admin/manage-fields.php:115
2418
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
2419
+ msgstr "Geben Sie die Option, die standardmäßig überprüft werden sollten, ein <br/> Wenn mehrere Werte vorhanden sind, trennen Sie diese mit einem \",\" (Komma)"
2420
+
2421
+ #: ../admin/manage-fields.php:118
2422
+ msgid "Default Content"
2423
+ msgstr "Standard-Inhalt"
2424
+
2425
+ #: ../admin/manage-fields.php:118
2426
+ msgid "Default value of the textarea"
2427
+ msgstr "Standardwert der Textfeld-Komponente"
2428
+
2429
+ #: ../admin/manage-fields.php:119
2430
+ msgid "Required"
2431
+ msgstr "Erforderlich"
2432
+
2433
+ #: ../admin/manage-fields.php:119
2434
+ msgid "Whether the field is required or not"
2435
+ msgstr "Ob das Feld erforderlich ist oder nicht"
2436
+
2437
+ #: ../admin/manage-fields.php:120
2438
+ msgid "Overwrite Existing"
2439
+ msgstr "Vvorhandenes überschreiben"
2440
+
2441
+ #: ../admin/manage-fields.php:120
2442
+ 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"
2443
+ msgstr "Bei Auswahl von \"Ja\", wird das Feld in der Liste eingefügt, aber es werden alle anderen Felder aus der Datenbank, die den gleichen Meta Namen haben, überschrieben<br/> verwenden Sie dies auf eigene Gefahr"
2444
+
2445
+ #: ../admin/manage-fields.php:126
2446
+ msgid "Field Properties"
2447
+ msgstr "Feldeigenschaften"
2448
+
2449
+ #: ../admin/manage-fields.php:139
2450
+ msgid "Registration & Edit Profile"
2451
+ msgstr "Anmeldung & Profil Bearbeitung"
2452
+
2453
+ #: ../admin/manage-fields.php:158
2454
+ msgid "Name"
2455
+ msgstr "Name"
2456
+
2457
+ #: ../admin/manage-fields.php:159
2458
+ msgid "Usernames cannot be changed."
2459
+ msgstr "Benutzernamen können nicht geändert werden."
2460
+
2461
+ #: ../admin/manage-fields.php:160
2462
+ msgid "First Name"
2463
+ msgstr "Vorname"
2464
+
2465
+ #: ../admin/manage-fields.php:161
2466
+ msgid "Last Name"
2467
+ msgstr "Nachname"
2468
+
2469
+ #: ../admin/manage-fields.php:162 ../modules/user-listing/userlisting.php:650
2470
+ msgid "Nickname"
2471
+ msgstr "Spitzname"
2472
+
2473
+ #: ../admin/manage-fields.php:163
2474
+ msgid "Display name publicly as"
2475
+ msgstr "öffentlicher Anzeigename als "
2476
+
2477
+ #: ../admin/manage-fields.php:164
2478
+ msgid "Contact Info"
2479
+ msgstr "Kontaktinformation"
2480
+
2481
+ #: ../admin/manage-fields.php:165
2482
+ #: ../features/admin-approval/class-admin-approval.php:180
2483
+ #: ../features/email-confirmation/class-email-confirmation.php:168
2484
+ #: ../modules/user-listing/userlisting.php:98
2485
+ msgid "E-mail"
2486
+ msgstr "E-Mail"
2487
+
2488
+ #: ../admin/manage-fields.php:166
2489
+ #: ../modules/email-customizer/email-customizer.php:32
2490
+ #: ../modules/user-listing/userlisting.php:101
2491
+ #: ../modules/user-listing/userlisting.php:632
2492
+ #: ../modules/user-listing/userlisting.php:1261
2493
+ msgid "Website"
2494
+ msgstr "Webseite"
2495
+
2496
+ #: ../admin/manage-fields.php:170
2497
+ msgid "AIM"
2498
+ msgstr "AIM"
2499
+
2500
+ #: ../admin/manage-fields.php:171
2501
+ msgid "Yahoo IM"
2502
+ msgstr "Yahoo IM"
2503
+
2504
+ #: ../admin/manage-fields.php:172
2505
+ msgid "Jabber / Google Talk"
2506
+ msgstr "Jabber / Google Talk"
2507
+
2508
+ #: ../admin/manage-fields.php:175
2509
+ msgid "About Yourself"
2510
+ msgstr "Über sich selbst"
2511
+
2512
+ #: ../admin/manage-fields.php:176 ../modules/user-listing/userlisting.php:104
2513
+ #: ../modules/user-listing/userlisting.php:635
2514
+ #: ../modules/user-listing/userlisting.php:1262
2515
+ msgid "Biographical Info"
2516
+ msgstr "Biografische Informationen"
2517
+
2518
+ #: ../admin/manage-fields.php:176
2519
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2520
+ msgstr "Füllen Sie ein paar biographische Informationen in dem Profil aus. Diese können auch öffentlich angezeigt werden."
2521
+
2522
+ #: ../admin/manage-fields.php:177 ../front-end/recover.php:75
2523
+ #: ../modules/email-customizer/email-customizer.php:30
2524
+ msgid "Password"
2525
+ msgstr "Kennwort"
2526
+
2527
+ #: ../admin/manage-fields.php:177
2528
+ msgid "Type your password."
2529
+ msgstr "Geben Sie Ihr Kennwort ein."
2530
+
2531
+ #: ../admin/manage-fields.php:178 ../front-end/recover.php:80
2532
+ msgid "Repeat Password"
2533
+ msgstr "Kennwort wiederholen"
2534
+
2535
+ #: ../admin/manage-fields.php:178
2536
+ msgid "Type your password again. "
2537
+ msgstr "Geben Sie Ihr Kennwort erneut ein."
2538
+
2539
+ #: ../admin/manage-fields.php:617 ../admin/manage-fields.php:761
2540
+ msgid "You must select a field\n"
2541
+ msgstr "Sie müssen ein Feld auswählen.\n"
2542
+
2543
+ #: ../admin/manage-fields.php:627
2544
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
2545
+ msgstr "Bitte wählen Sie ein anderes Feld aus. dieses ist bereits im Formular vorhanden (muss einzigartig sein)\n"
2546
+
2547
+ #: ../admin/manage-fields.php:638
2548
+ msgid "The entered avatar size is not between 20 and 200\n"
2549
+ msgstr "Die eingegebene Profilbild-Größe ist nicht zwischen 20 und 200\n"
2550
+
2551
+ #: ../admin/manage-fields.php:641
2552
+ msgid "The entered avatar size is not numerical\n"
2553
+ msgstr "Die eingegebenen Profilbild-Größe ist nicht numerisch\n"
2554
+
2555
+ #: ../admin/manage-fields.php:649
2556
+ msgid "The entered row number is not numerical\n"
2557
+ msgstr "Die eingegebene Nummer der Zeile ist nicht numerisch\n"
2558
+
2559
+ #: ../admin/manage-fields.php:652
2560
+ msgid "You must enter a value for the row number\n"
2561
+ msgstr "Sie müssen einen Wert für die Nummer der Zeile eingeben.\n"
2562
+
2563
+ #: ../admin/manage-fields.php:670
2564
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
2565
+ msgstr "Der eingegebene Wert für den Datums-picker ist kein gültiges Datumsformat\n"
2566
+
2567
+ #: ../admin/manage-fields.php:673
2568
+ msgid "You must enter a value for the date-format\n"
2569
+ msgstr "Sie müssen einen Wert für das Datumsformat eingeben.\n"
2570
+
2571
+ #: ../admin/manage-fields.php:701 ../admin/manage-fields.php:709
2572
+ #: ../admin/manage-fields.php:719
2573
+ msgid "That meta-name is already in use\n"
2574
+ msgstr "Dieser Meta-Name wird bereits verwendet\n"
2575
+
2576
+ #: ../admin/manage-fields.php:741
2577
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
2578
+ msgstr "Die folgende Option(en) übereinstimmen nicht mit denen aus der Optionsliste :%s\n"
2579
+
2580
+ #: ../admin/manage-fields.php:745
2581
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
2582
+ msgstr "Die folgende Option übereinstimmt nicht mit denen, aus der Optionsliste: %s\n"
2583
+
2584
+ #: ../admin/manage-fields.php:768
2585
+ msgid "That field is already added in this form\n"
2586
+ msgstr "Dieses Feld wurde bereits in dieser Form hinzugefügt.\n"
2587
+
2588
+ #: ../admin/manage-fields.php:817
2589
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
2590
+ msgstr "<pre>Titel</pre><pre>Typ</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\"> erforderlich</pre>"
2591
+
2592
+ #: ../admin/manage-fields.php:817
2593
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2594
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:531
2595
+ #: ../features/admin-approval/class-admin-approval.php:119
2596
+ #: ../features/functions.php:654 ../features/functions.php:661
2597
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
2598
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
2599
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
2600
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
2601
+ #: ../modules/multiple-forms/multiple-forms.php:399
2602
+ msgid "Edit"
2603
+ msgstr "Bearbeiten"
2604
+
2605
+ #: ../admin/manage-fields.php:817
2606
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2607
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:532
2608
+ #: ../features/admin-approval/class-admin-approval.php:124
2609
+ #: ../features/admin-approval/class-admin-approval.php:235
2610
+ #: ../features/email-confirmation/class-email-confirmation.php:120
2611
+ #: ../features/email-confirmation/class-email-confirmation.php:217
2612
+ #: ../features/functions.php:647 ../features/functions.php:661
2613
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
2614
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
2615
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
2616
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
2617
+ msgid "Delete"
2618
+ msgstr "Löschen"
2619
+
2620
+ #: ../admin/manage-fields.php:832
2621
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
2622
+ msgstr "Verwenden Sie folgende Shortcodes auf den Seiten, auf denen Sie die Formulare angezeigt haben wollen"
2623
+
2624
+ #: ../admin/manage-fields.php:841
2625
+ 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."
2626
+ msgstr "Wenn Sie für die Anzeige verschiedener Felder bei der Registrierung und beim Bearbeiten von Profilformen interessiert sind, benutzen Sie bitte das mehrfache Anmelde & Profilbearbeitungs-Formular Addon."
2627
+
2628
+ #: ../admin/register-version.php:14
2629
+ msgid "Register Your Version"
2630
+ msgstr "Registrieren Sie Ihre Version"
2631
+
2632
+ #: ../admin/register-version.php:14
2633
+ msgid "Register Version"
2634
+ msgstr "Version registrieren"
2635
+
2636
+ #: ../admin/register-version.php:70
2637
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
2638
+ msgstr "Wenn Sie diese Version vom Profil-Generator registrieren, erhalten Sie Informationen zu Upgrades, Patches und technischen Support."
2639
+
2640
+ #: ../admin/register-version.php:72
2641
+ msgid " Serial Number:"
2642
+ msgstr "Seriennummer:"
2643
+
2644
+ #: ../admin/register-version.php:77
2645
+ msgid "The serial number was successfully validated!"
2646
+ msgstr "Die Seriennummer wurde erfolgreich überprüft!"
2647
+
2648
+ #: ../admin/register-version.php:79
2649
+ msgid "The serial number entered couldn't be validated!"
2650
+ msgstr "Die eingegebene Seriennummer konnte nicht überprüft werden!"
2651
+
2652
+ #: ../admin/register-version.php:83
2653
+ msgid "The serial number couldn't be validated because it expired!"
2654
+ msgstr "Die Seriennummer konnte nicht überprüft werden, da diese abgelaufen ist!"
2655
+
2656
+ #: ../admin/register-version.php:85
2657
+ 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!"
2658
+ msgstr "Die Seriennummer konnte nicht überprüft werden, weil der Prozess einen timed out bekamm. Dies könnte passieren, wenn der Server nicht verfügbar ist. Bitte versuchen Sie es später erneut!"
2659
+
2660
+ #: ../admin/register-version.php:87
2661
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2662
+ msgstr "(z.B. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985) "
2663
+
2664
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2665
+ #: ../features/functions.php:661
2666
+ msgid "Content"
2667
+ msgstr "Inhalt"
2668
+
2669
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:531
2670
+ msgid "Edit this item"
2671
+ msgstr "Dieses Element bearbeiten"
2672
+
2673
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:532
2674
+ msgid "Delete this item"
2675
+ msgstr "Dieses Element löschen"
2676
+
2677
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:700
2678
+ msgid "Please enter a value for the required field "
2679
+ msgstr "Bitte geben Sie einen Wert für das erforderliche Feld ein"
2680
+
2681
+ #: ../front-end/extra-fields/upload/upload.php:122
2682
+ msgid "Select File"
2683
+ msgstr "Wählen Sie eine Datei"
2684
+
2685
+ #: ../assets/lib/wck-api/fields/upload.php:43
2686
+ #: ../front-end/extra-fields/upload/upload.php:112
2687
+ msgid "Remove"
2688
+ msgstr "Löschen"
2689
+
2690
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1179
2691
+ msgid "Syncronize WCK"
2692
+ msgstr "synchronisieren vom WCK"
2693
+
2694
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1191
2695
+ msgid "Syncronize WCK Translation"
2696
+ msgstr "Synchronisierung der WCK Übersetzung"
2697
+
2698
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
2699
+ msgid "You can add the information for the %s after you add a entry"
2700
+ msgstr "Sie können die Informationen für \"%s\" hinzufügen, nachdem Sie einen Eintrag hinzufügen"
2701
+
2702
+ #: ../assets/lib/wck-api/fields/upload.php:75
2703
+ #: ../front-end/extra-fields/upload/upload.php:128
2704
+ msgid "Upload "
2705
+ msgstr "Hochladen"
2706
+
2707
+ #: ../features/class-list-table.php:184
2708
+ msgid "No items found."
2709
+ msgstr "Keine Einträge wurden gefunden."
2710
+
2711
+ #: ../features/class-list-table.php:308
2712
+ msgid "Bulk Actions"
2713
+ msgstr "Bulk Aktionen"
2714
+
2715
+ #: ../features/class-list-table.php:318
2716
+ msgid "Apply"
2717
+ msgstr "anwenden"
2718
+
2719
+ #: ../features/class-list-table.php:402
2720
+ msgid "Show all dates"
2721
+ msgstr "Alle Termine anzeigen"
2722
+
2723
+ #: ../features/class-list-table.php:415
2724
+ msgid "%1$s %2$d"
2725
+ msgstr "%1$s %2$d "
2726
+
2727
+ #: ../features/class-list-table.php:431
2728
+ msgid "List View"
2729
+ msgstr "Listenansicht"
2730
+
2731
+ #: ../features/class-list-table.php:432
2732
+ msgid "Excerpt View"
2733
+ msgstr "Zitat Anzeigeseite"
2734
+
2735
+ #: ../features/class-list-table.php:458
2736
+ msgid "%s pending"
2737
+ msgstr "%s ausstehende"
2738
+
2739
+ #: ../features/class-list-table.php:566
2740
+ msgid "%1$s of %2$s"
2741
+ msgstr "%1$s von %2$s"
2742
+
2743
+ #: ../features/class-list-table.php:713
2744
+ msgid "Select All"
2745
+ msgstr "Wählen Sie alle"
2746
+
2747
+ #: ../features/functions.php:297
2748
+ msgid "The user-validation has failed - the avatar was not deleted!"
2749
+ msgstr "Die Benutzer-Validierung hat fehlgeschlagen - das Profilbild wurde nicht gelöscht!"
2750
+
2751
+ #: ../features/functions.php:308
2752
+ msgid "The user-validation has failed - the attachment was not deleted!"
2753
+ msgstr "Die Benutzer-Validierung hat fehlgeschlagen - die Anlage wurde nicht gelöscht!"
2754
+
2755
+ #: ../features/functions.php:500
2756
+ msgid "Strength indicator"
2757
+ msgstr "Stärkeanzeige"
2758
+
2759
+ #: ../features/admin-approval/admin-approval.php:7
2760
+ #: ../features/admin-approval/class-admin-approval.php:458
2761
+ msgid "Admin Approval"
2762
+ msgstr "Admin Bestätigung"
2763
+
2764
+ #: ../features/admin-approval/admin-approval.php:21
2765
+ #: ../features/email-confirmation/email-confirmation.php:58
2766
+ msgid "Do you want to"
2767
+ msgstr "Wollen Sie das"
2768
+
2769
+ #: ../features/admin-approval/admin-approval.php:44
2770
+ msgid "Your session has expired! Please refresh the page and try again"
2771
+ msgstr "Ihre Sitzung ist abgelaufen! Bitte aktualisieren Sie die Seite und versuchen Sie es erneut"
2772
+
2773
+ #: ../features/admin-approval/admin-approval.php:55
2774
+ msgid "User successfully approved!"
2775
+ msgstr "Der Benutzer wurde erfolgreich genehmigt!"
2776
+
2777
+ #: ../features/admin-approval/admin-approval.php:63
2778
+ msgid "User successfully unapproved!"
2779
+ msgstr "Benutzer wurde erfolgreich abgelehnt!"
2780
+
2781
+ #: ../features/admin-approval/admin-approval.php:69
2782
+ msgid "User successfully deleted!"
2783
+ msgstr "Benutzer wurde erfolgreich gelöscht!"
2784
+
2785
+ #: ../features/admin-approval/admin-approval.php:74
2786
+ #: ../features/admin-approval/admin-approval.php:118
2787
+ #: ../features/email-confirmation/email-confirmation.php:135
2788
+ msgid "You either don't have permission for that action or there was an error!"
2789
+ msgstr "Sie haben entweder keine Berechtigungen für diese Aktion oder es ist ein Fehler aufgetreten!"
2790
+
2791
+ #: ../features/admin-approval/admin-approval.php:85
2792
+ msgid "Your session has expired! Please refresh the page and try again."
2793
+ msgstr "Ihre Sitzung ist abgelaufen! Bitte aktualisieren Sie die Seite und versuchen Sie es erneut."
2794
+
2795
+ #: ../features/admin-approval/admin-approval.php:97
2796
+ msgid "Users successfully approved!"
2797
+ msgstr "Benutzer wurden erfolgreich genehmigt!"
2798
+
2799
+ #: ../features/admin-approval/admin-approval.php:106
2800
+ msgid "Users successfully unapproved!"
2801
+ msgstr "Benutzer wurden erfolgreich verwehrt!"
2802
+
2803
+ #: ../features/admin-approval/admin-approval.php:114
2804
+ msgid "Users successfully deleted!"
2805
+ msgstr "Benutzer wurden erfolgreich gelöscht!"
2806
+
2807
+ #: ../features/admin-approval/admin-approval.php:134
2808
+ msgid "Your account on %1$s has been approved!"
2809
+ msgstr "Ihr Konto auf %1$s wurde genehmigt!"
2810
+
2811
+ #: ../features/admin-approval/admin-approval.php:135
2812
+ #: ../features/admin-approval/admin-approval.php:138
2813
+ msgid "approved"
2814
+ msgstr "genehmigt"
2815
+
2816
+ #: ../features/admin-approval/admin-approval.php:137
2817
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
2818
+ msgstr "Ein Administrator hat gerade Ihr Konto %1$s (%2$s) genehmigt."
2819
+
2820
+ #: ../features/admin-approval/admin-approval.php:142
2821
+ msgid "Your account on %1$s has been unapproved!"
2822
+ msgstr "Ihr Konto auf %1$s wurde nicht genehmigt!"
2823
+
2824
+ #: ../features/admin-approval/admin-approval.php:143
2825
+ #: ../features/admin-approval/admin-approval.php:146
2826
+ msgid "unapproved"
2827
+ msgstr "abgelehnt"
2828
+
2829
+ #: ../features/admin-approval/admin-approval.php:145
2830
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
2831
+ msgstr "Ein Administrator hat Ihr Konto auf %1$ s (%2$ s) nicht genehmigt. "
2832
+
2833
+ #: ../features/admin-approval/admin-approval.php:164
2834
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
2835
+ msgstr "<strong>Fehler</strong>: Ihr Konto muss bevor Sie sich anmelden können, vom Administrator bestätigt werden. "
2836
+
2837
+ #: ../features/admin-approval/admin-approval.php:176
2838
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
2839
+ msgstr "Ihr Konto muss von einem Administrator bestätigt werden, bevor Sie die \"Kennwort Wiederherstellungs\"-Funktion verwenden können."
2840
+
2841
+ #: ../features/admin-approval/class-admin-approval.php:124
2842
+ msgid "delete this user?"
2843
+ msgstr "Wollen Sie diesen Benutzer löschen?"
2844
+
2845
+ #: ../features/admin-approval/class-admin-approval.php:127
2846
+ msgid "unapprove this user?"
2847
+ msgstr "Ablehung dieses Benutzers?"
2848
+
2849
+ #: ../features/admin-approval/class-admin-approval.php:127
2850
+ #: ../features/admin-approval/class-admin-approval.php:234
2851
+ msgid "Unapprove"
2852
+ msgstr "nicht genehmigen"
2853
+
2854
+ #: ../features/admin-approval/class-admin-approval.php:129
2855
+ msgid "approve this user?"
2856
+ msgstr "Wollen Sie diesen Benutzer genehmigen?"
2857
+
2858
+ #: ../features/admin-approval/class-admin-approval.php:129
2859
+ #: ../features/admin-approval/class-admin-approval.php:233
2860
+ msgid "Approve"
2861
+ msgstr "Genehmigen"
2862
+
2863
+ #: ../features/admin-approval/class-admin-approval.php:178
2864
+ #: ../modules/user-listing/userlisting.php:249
2865
+ #: ../modules/user-listing/userlisting.php:623
2866
+ #: ../modules/user-listing/userlisting.php:1264
2867
+ msgid "Firstname"
2868
+ msgstr "Vorname"
2869
+
2870
+ #: ../features/admin-approval/class-admin-approval.php:179
2871
+ #: ../modules/user-listing/userlisting.php:626
2872
+ #: ../modules/user-listing/userlisting.php:1265
2873
+ msgid "Lastname"
2874
+ msgstr "Nachname"
2875
+
2876
+ #: ../features/admin-approval/class-admin-approval.php:181
2877
+ #: ../modules/user-listing/userlisting.php:124
2878
+ #: ../modules/user-listing/userlisting.php:250
2879
+ #: ../modules/user-listing/userlisting.php:653
2880
+ #: ../modules/user-listing/userlisting.php:1268
2881
+ msgid "Role"
2882
+ msgstr "Rolle"
2883
+
2884
+ #: ../features/admin-approval/class-admin-approval.php:182
2885
+ #: ../features/email-confirmation/class-email-confirmation.php:169
2886
+ msgid "Registered"
2887
+ msgstr "Angemeldet"
2888
+
2889
+ #: ../features/admin-approval/class-admin-approval.php:183
2890
+ msgid "User-status"
2891
+ msgstr "Benutzer-Status"
2892
+
2893
+ #: ../features/admin-approval/class-admin-approval.php:263
2894
+ msgid "Do you want to bulk approve the selected users?"
2895
+ msgstr "Möchten Sie alle ausgewählten Benutzer genehmigen?"
2896
+
2897
+ #: ../features/admin-approval/class-admin-approval.php:271
2898
+ msgid "Do you want to bulk unapprove the selected users?"
2899
+ msgstr "Möchten Sie alle ausgewählten Benutzer verwehren?"
2900
+
2901
+ #: ../features/admin-approval/class-admin-approval.php:277
2902
+ msgid "Do you want to bulk delete the selected users?"
2903
+ msgstr "Möchten Sie alle ausgewählten Benutzer löschen?"
2904
+
2905
+ #: ../features/admin-approval/class-admin-approval.php:285
2906
+ #: ../features/email-confirmation/class-email-confirmation.php:278
2907
+ msgid "Sorry, but you don't have permission to do that!"
2908
+ msgstr "Tut uns leid, aber Sie haben keine Berechtigung dazu!"
2909
+
2910
+ #: ../features/admin-approval/class-admin-approval.php:341
2911
+ msgid "Approved"
2912
+ msgstr "Genehmigt"
2913
+
2914
+ #: ../features/admin-approval/class-admin-approval.php:343
2915
+ msgid "Unapproved"
2916
+ msgstr "Verwehrt"
2917
+
2918
+ #: ../features/admin-approval/class-admin-approval.php:461
2919
+ #: ../features/email-confirmation/class-email-confirmation.php:465
2920
+ msgid "All Users"
2921
+ msgstr "Alle Benutzer"
2922
+
2923
+ #: ../features/email-confirmation/class-email-confirmation.php:120
2924
+ msgid "delete this user from the _signups table?"
2925
+ msgstr "Wollen Sie diesen Benutzer aus der _signups-Tabelle löschen?"
2926
+
2927
+ #: ../features/email-confirmation/class-email-confirmation.php:121
2928
+ msgid "confirm this email yourself?"
2929
+ msgstr "Bestätigen Sie diese E-Mail selbst?"
2930
+
2931
+ #: ../features/email-confirmation/class-email-confirmation.php:121
2932
+ #: ../features/email-confirmation/class-email-confirmation.php:218
2933
+ msgid "Confirm Email"
2934
+ msgstr "E-Mail bestätigen"
2935
+
2936
+ #: ../features/email-confirmation/class-email-confirmation.php:122
2937
+ msgid "resend the activation link?"
2938
+ msgstr "erneut den Aktivierungslink senden?"
2939
+
2940
+ #: ../features/email-confirmation/class-email-confirmation.php:122
2941
+ #: ../features/email-confirmation/class-email-confirmation.php:219
2942
+ msgid "Resend Activation Email"
2943
+ msgstr "Aktivierungs-E-Mail erneut senden"
2944
+
2945
+ #: ../features/email-confirmation/class-email-confirmation.php:249
2946
+ msgid "%s couldn't be deleted"
2947
+ msgstr "%s konnte nicht gelöscht werden"
2948
+
2949
+ #: ../features/email-confirmation/class-email-confirmation.php:253
2950
+ msgid "All users have been successfully deleted"
2951
+ msgstr "Alle Benutzer wurden erfolgreich gelöscht"
2952
+
2953
+ #: ../features/email-confirmation/class-email-confirmation.php:263
2954
+ msgid "The selected users have been activated"
2955
+ msgstr "Die ausgewählten Benutzer wurden aktiviert"
2956
+
2957
+ #: ../features/email-confirmation/class-email-confirmation.php:274
2958
+ msgid "The selected users have had their activation emails resent"
2959
+ msgstr "Die ausgewählten Benutzer haben ihre Aktivierung E-Mails erneut gesendet bekommen. "
2960
+
2961
+ #: ../features/email-confirmation/class-email-confirmation.php:462
2962
+ #: ../features/email-confirmation/email-confirmation.php:47
2963
+ msgid "Users with Unconfirmed Email Address"
2964
+ msgstr "Benutzer mit unbestätigte E-Mail-Adresse"
2965
+
2966
+ #: ../features/email-confirmation/email-confirmation.php:110
2967
+ msgid "There was an error performing that action!"
2968
+ msgstr "Es gab einen Fehler bei der Durchführung dieser Aktion!"
2969
+
2970
+ #: ../features/email-confirmation/email-confirmation.php:118
2971
+ msgid "The selected user couldn't be deleted"
2972
+ msgstr "Der ausgewählte Benutzer konnte nicht gelöscht werden"
2973
+
2974
+ #: ../features/email-confirmation/email-confirmation.php:129
2975
+ msgid "Email notification resent to user"
2976
+ msgstr "Die E-Mail-Benachrichtigung wurde dem Benutzer erneut geschickt."
2977
+
2978
+ #: ../features/email-confirmation/email-confirmation.php:389
2979
+ msgid "[%1$s] Activate %2$s"
2980
+ msgstr "[%1$s] Aktivieren %2$s"
2981
+
2982
+ #: ../features/email-confirmation/email-confirmation.php:433
2983
+ #: ../front-end/register.php:68
2984
+ msgid "Could not create user!"
2985
+ msgstr "Benutzer konnte nicht erstellt werden!"
2986
+
2987
+ #: ../features/email-confirmation/email-confirmation.php:436
2988
+ msgid "That username is already activated!"
2989
+ msgstr "Dieser Benutzername ist bereits aktiviert worden!"
2990
+
2991
+ #: ../features/email-confirmation/email-confirmation.php:457
2992
+ msgid "There was an error while trying to activate the user"
2993
+ msgstr "Es ist ein Fehler beim Versuch, den Benutzer zu aktivieren aufgetreten "
2994
+
2995
+ #: ../features/email-confirmation/email-confirmation.php:505
2996
+ #: ../modules/email-customizer/admin-email-customizer.php:73
2997
+ msgid "A new subscriber has (been) registered!"
2998
+ msgstr "Ein neuer Benutzer ist (wurde) registriert!"
2999
+
3000
+ #: ../features/email-confirmation/email-confirmation.php:508
3001
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
3002
+ msgstr "Neuen Abonnenten auf %1$s. <br/> <br/>Benutzername:%2$s <br/> E-Mail: %3$s <br/>"
3003
+
3004
+ #: ../features/email-confirmation/email-confirmation.php:615
3005
+ 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!"
3006
+ msgstr "Das \"Admin Approval\" Feature war zum Zeitpunkt der Registrierung aktiv, also bitte denken Sie daran, dass man diesen Benutzer genehmigen muss, bevor er sich anmelden kann!"
3007
+
3008
+ #: ../features/email-confirmation/email-confirmation.php:557
3009
+ msgid "[%1$s] Your new account information"
3010
+ msgstr "[%1$s] Ihre neuen Kontodaten"
3011
+
3012
+ #: ../features/email-confirmation/email-confirmation.php:563
3013
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
3014
+ msgstr "Willkommen bei %1$s! <br/> <br/> <br/>Ihr Benutzername ist: %2$s und das Kennwort: %3$s"
3015
+
3016
+ #: ../features/email-confirmation/email-confirmation.php:623
3017
+ #: ../front-end/register.php:127
3018
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
3019
+ msgstr "Bevor Sie in ihrem Konto zugreifen können, muss ein Administrator diesen genehmigen. Sie werden per E-Mail dafür benachrichtigt."
3020
+
3021
+ #: ../features/login-widget/login-widget.php:10
3022
+ msgid "This login widget lets you add a login form in the sidebar."
3023
+ msgstr "Mit diesem Login-Widget können Sie ein Anmeldeformular in der Seitenleiste hinzufügen."
3024
+
3025
+ #: ../features/login-widget/login-widget.php:15
3026
+ msgid "Profile Builder Login Widget"
3027
+ msgstr "Profile Builder Login Widget"
3028
+
3029
+ #: ../front-end/class-formbuilder.php:348 ../front-end/login.php:205
3030
+ msgid "Register"
3031
+ msgstr "Anmelden"
3032
+
3033
+ #: ../features/login-widget/login-widget.php:63
3034
+ msgid "Title:"
3035
+ msgstr "Titel:"
3036
+
3037
+ #: ../features/login-widget/login-widget.php:68
3038
+ msgid "After login redirect URL (optional):"
3039
+ msgstr "Umleitungs-URL nach der Anmeldung (optional):"
3040
+
3041
+ #: ../features/login-widget/login-widget.php:73
3042
+ msgid "Register page URL (optional):"
3043
+ msgstr "Anmeldeseite-URL (optional):"
3044
+
3045
+ #: ../features/login-widget/login-widget.php:78
3046
+ msgid "Password Recovery page URL (optional):"
3047
+ msgstr "Kennwort Wiederherstellungs-URL (optional):"
3048
+
3049
+ #: ../features/upgrades/upgrades-functions.php:91
3050
+ #: ../features/upgrades/upgrades-functions.php:134
3051
+ msgid "The usernames cannot be changed."
3052
+ msgstr "Die Benutzernamen können nicht geändert werden."
3053
+
3054
+ #: ../front-end/class-formbuilder.php:132
3055
+ msgid "Only an administrator can add new users."
3056
+ msgstr "Nur ein Administrator kann neue Benutzer hinzufügen."
3057
+
3058
+ #: ../front-end/class-formbuilder.php:142
3059
+ msgid "Users can register themselves or you can manually create users here."
3060
+ msgstr "Benutzer können sich selbst anmelden, oder Sie können bei Hand Benutzer hier erstellen."
3061
+
3062
+ #: ../front-end/class-formbuilder.php:145
3063
+ msgid "Users cannot currently register themselves, but you can manually create users here."
3064
+ msgstr "Benutzer können sich derzeit sich selbst nicht registrieren, aber Sie können Benutzer hier manuell erstellen"
3065
+
3066
+ #: ../front-end/class-formbuilder.php:167
3067
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
3068
+ msgstr "Sie sind derzeit als %1S angemeldet . Sie brauchen kein anderes Konto. %2s"
3069
+
3070
+ #: ../front-end/class-formbuilder.php:167
3071
+ msgid "Log out of this account."
3072
+ msgstr "Abmeldung von diesem Konto."
3073
+
3074
+ #: ../front-end/class-formbuilder.php:167
3075
+ msgid "Logout"
3076
+ msgstr "Ausloggen"
3077
+
3078
+ #: ../front-end/class-formbuilder.php:174
3079
+ msgid "You must be logged in to edit your profile."
3080
+ msgstr "Sie müssen angemeldet sein, um Ihr Profil zu bearbeiten."
3081
+
3082
+ #: ../front-end/class-formbuilder.php:203
3083
+ msgid "here"
3084
+ msgstr "hier"
3085
+
3086
+ #: ../front-end/class-formbuilder.php:205
3087
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3088
+ msgstr "Sie werden bald automatisch umgeleitet. Wenn Sie diese Seite mehr als %1$d Sekunden sehen, klicken Sie bitte hier %2$s.%3$s"
3089
+
3090
+ #: ../front-end/class-formbuilder.php:293
3091
+ #: ../front-end/class-formbuilder.php:300
3092
+ msgid "The account %1s has been successfully created!"
3093
+ msgstr "Das Konto %1S wurde erfolgreich erstellt!"
3094
+
3095
+ #: ../front-end/class-formbuilder.php:296
3096
+ #: ../front-end/class-formbuilder.php:306
3097
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3098
+ msgstr "Bevor Sie auf Ihr Konto %1S zugreifen können, müssen Sie Ihre E-Mail-Adresse bestätigen. Bitte überprüfen Sie Ihren Posteingang und klicken Sie auf den Aktivierungslink."
3099
+
3100
+ #: ../front-end/class-formbuilder.php:302
3101
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3102
+ msgstr "Bevor Sie auf Ihr Konto %1S zugreifen können, muss ein Administrator diesen genehmigen. Sie werden darüber per E-Mail weiter benachrichtigt."
3103
+
3104
+ #: ../front-end/class-formbuilder.php:316
3105
+ msgid "Your profile has been successfully updated!"
3106
+ msgstr "Ihr Profil wurde erfolgreich aktualisiert!"
3107
+
3108
+ #: ../front-end/class-formbuilder.php:326
3109
+ msgid "There was an error in the submitted form"
3110
+ msgstr "Es gab einen Fehler in das gesendete Formular"
3111
+
3112
+ #: ../front-end/class-formbuilder.php:348
3113
+ msgid "Add User"
3114
+ msgstr "Benutzer hinzufügen"
3115
+
3116
+ #: ../admin/add-ons.php:170 ../front-end/class-formbuilder.php:351
3117
+ msgid "Update"
3118
+ msgstr "Aktualisierung"
3119
+
3120
+ #: ../front-end/class-formbuilder.php:401
3121
+ #: ../front-end/extra-fields/extra-fields.php:35
3122
+ msgid "The avatar was successfully deleted!"
3123
+ msgstr "Das Profilbild wurde erfolgreich gelöscht!"
3124
+
3125
+ #: ../front-end/class-formbuilder.php:401
3126
+ #: ../front-end/extra-fields/extra-fields.php:37
3127
+ msgid "The following attachment was successfully deleted:"
3128
+ msgstr "Die folgende Anlage wurde erfolgreich gelöscht:"
3129
+
3130
+ #: ../front-end/class-formbuilder.php:413
3131
+ msgid "Send these credentials via email."
3132
+ msgstr "Senden Sie diese Anmeldeinformationen per E-Mail."
3133
+
3134
+ #: ../front-end/extra-fields/extra-fields.php:99 ../front-end/login.php:92
3135
+ #: ../front-end/login.php:99 ../front-end/login.php:113
3136
+ #: ../front-end/recover.php:17 ../front-end/recover.php:228
3137
+ msgid "ERROR"
3138
+ msgstr "FEHLER"
3139
+
3140
+ #: ../front-end/login.php:92
3141
+ msgid "The password you entered is incorrect."
3142
+ msgstr "Das eingegebene Kennwort ist falsch."
3143
+
3144
+ #: ../front-end/login.php:93 ../front-end/login.php:100
3145
+ msgid "Password Lost and Found."
3146
+ msgstr "Kennwort vergessen und gefunden."
3147
+
3148
+ #: ../front-end/login.php:93 ../front-end/login.php:100
3149
+ msgid "Lost your password"
3150
+ msgstr "Passwort vergessen"
3151
+
3152
+ #: ../front-end/login.php:113
3153
+ msgid "Both fields are empty."
3154
+ msgstr "Beide Felder sind leer."
3155
+
3156
+ #: ../front-end/login.php:254
3157
+ msgid "You are currently logged in as %1$s. %2$s"
3158
+ msgstr "Sie sind derzeit als %1$s angemeldet. %2$s "
3159
+
3160
+ #: ../front-end/login.php:253 ../front-end/logout.php:26
3161
+ msgid "Log out of this account"
3162
+ msgstr "Von diesem Konto abmelden"
3163
+
3164
+ #: ../front-end/login.php:253
3165
+ msgid "Log out"
3166
+ msgstr "Ausloggen"
3167
+
3168
+ #: ../front-end/recover.php:17
3169
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
3170
+ msgstr "Ihr Konto muss von einem Administrator bestätigt werden, bevor Sie das Feature \"Kennwort zurücksetzen\" verwenden können."
3171
+
3172
+ #: ../front-end/recover.php:91
3173
+ msgid "Reset Password"
3174
+ msgstr "Passwort zurücksetzen"
3175
+
3176
+ #: ../front-end/recover.php:111
3177
+ msgid "Please enter your username or email address."
3178
+ msgstr "Bitte geben Sie Ihren Benutzernamen oder E-Mail Adresse ein."
3179
+
3180
+ #: ../front-end/recover.php:112
3181
+ msgid "You will receive a link to create a new password via email."
3182
+ msgstr "Sie werden einen Link, um ein neues Passwort zu erstellen, per E-Mail erhalten"
3183
+
3184
+ #: ../front-end/recover.php:119
3185
+ msgid "Username or E-mail"
3186
+ msgstr "Benutzername oder E-mail"
3187
+
3188
+ #: ../front-end/recover.php:125
3189
+ msgid "Get New Password"
3190
+ msgstr "Neues Passwort anfordern"
3191
+
3192
+ #: ../front-end/recover.php:166
3193
+ msgid "The username entered wasn't found in the database!"
3194
+ msgstr "Der eingegebene Benutzername wurde nicht in der Datenbank gefunden!"
3195
+
3196
+ #: ../front-end/recover.php:166
3197
+ msgid "Please check that you entered the correct username."
3198
+ msgstr "Bitte überprüfen Sie, ob Sie den richtigen Benutzernamen eingegeben haben."
3199
+
3200
+ #: ../front-end/recover.php:181
3201
+ msgid "Check your e-mail for the confirmation link."
3202
+ msgstr "Überprüfen Sie Ihre E-mail für den Bestätigungs-Link."
3203
+
3204
+ #: ../front-end/recover.php:216
3205
+ 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"
3206
+ msgstr "Jemand hat verlangt, dass das Kennwort für dieses Konto zurückgesetzt werden soll: <b>%1$s</b> <br/> Wenn das ein Fehler war, bitte diese E-Mail einfach ignorieren und es wird nichts geschehen <br/>Um Ihr Passwort zurückzusetzen, besuchen Sie folgenden Link: %2$s"
3207
+
3208
+ #: ../front-end/recover.php:219
3209
+ msgid "Password Reset from \"%1$s\""
3210
+ msgstr "Zurücksetzen des Kennworts \"%1$s\""
3211
+
3212
+ #: ../front-end/recover.php:228
3213
+ msgid "There was an error while trying to send the activation link to %1$s!"
3214
+ msgstr "Es gab einen Fehler beim Versuch den Aktivierungslink zu senden%1$s!"
3215
+
3216
+ #: ../front-end/recover.php:188
3217
+ msgid "The email address entered wasn't found in the database!"
3218
+ msgstr "Die eingegebene E-Mail-Adresse wurde nicht in der Datenbank gefunden!"
3219
+
3220
+ #: ../front-end/recover.php:188
3221
+ msgid "Please check that you entered the correct email address."
3222
+ msgstr "Bitte überprüfen Sie, ob Sie die richtige E-Mail-Adresse eingegeben haben."
3223
+
3224
+ #: ../front-end/recover.php:256
3225
+ msgid "Your password has been successfully changed!"
3226
+ msgstr "Ihr Passwort wurde erfolgreich geändert!"
3227
+
3228
+ #: ../front-end/recover.php:275
3229
+ msgid "You have successfully reset your password to: %1$s"
3230
+ msgstr "Sie haben Ihr Kennwort erfolgreich zurückgesetzt: %1$s"
3231
+
3232
+ #: ../front-end/recover.php:278 ../front-end/recover.php:292
3233
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
3234
+ msgstr "Kennwort erfolgreich zurückgesetzt für %1$s auf \"%2$s\""
3235
+
3236
+ #: ../front-end/recover.php:289
3237
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
3238
+ msgstr "%1$s hat eine Kennwortänderung über die Funktion \"Kennwort zurücksetzen\" angefordert. <br/>Ihr neues Passwort ist: %2$s"
3239
+
3240
+ #: ../front-end/recover.php:308
3241
+ msgid "The entered passwords don't match!"
3242
+ msgstr "Die eingegebenen Kennworte stimmen nicht überein!"
3243
+
3244
+ #: ../front-end/recover.php:375
3245
+ msgid "ERROR:"
3246
+ msgstr "FEHLER:"
3247
+
3248
+ #: ../front-end/recover.php:375
3249
+ msgid "Invalid key!"
3250
+ msgstr "Ungültiger Schlüssel!"
3251
+
3252
+ #: ../front-end/register.php:46
3253
+ msgid "Invalid activation key!"
3254
+ msgstr "Ungültiger Aktivierungsschlüssel!"
3255
+
3256
+ #: ../front-end/register.php:50
3257
+ msgid "This username is now active!"
3258
+ msgstr "Dieser Benutzername ist jetzt aktiv!"
3259
+
3260
+ #: ../front-end/register.php:71
3261
+ msgid "This username is already activated!"
3262
+ msgstr "Dieser Benutzername ist bereits aktiviert!"
3263
+
3264
+ #: ../front-end/register.php:126
3265
+ msgid "Your email was successfully confirmed."
3266
+ msgstr "Ihre E-Mail wurde erfolgreich bestätigt."
3267
+
3268
+ #: ../front-end/register.php:159
3269
+ msgid "There was an error while trying to activate the user."
3270
+ msgstr "Ein Fehler ist aufgetreten, während es versucht wurde den Benutzer zu aktivieren."
3271
+
3272
+ #: ../front-end/default-fields/email/email.php:44
3273
+ msgid "The email you entered is not a valid email address."
3274
+ msgstr "Die E-Mail die Sie eingegeben haben, ist keine gültige e-Mail-Adresse."
3275
+
3276
+ #: ../front-end/default-fields/email/email.php:57
3277
+ #: ../front-end/default-fields/email/email.php:64
3278
+ msgid "This email is already reserved to be used soon."
3279
+ msgstr "Diese E-Mail ist bereits reserviert worden, um bald verwendet zu werden."
3280
+
3281
+ #: ../front-end/default-fields/email/email.php:57
3282
+ #: ../front-end/default-fields/email/email.php:64
3283
+ #: ../front-end/default-fields/email/email.php:73
3284
+ #: ../front-end/default-fields/email/email.php:84
3285
+ #: ../front-end/default-fields/username/username.php:50
3286
+ #: ../front-end/default-fields/username/username.php:65
3287
+ msgid "Please try a different one!"
3288
+ msgstr "Bitte versuchen Sie es mit einem anderen!"
3289
+
3290
+ #: ../front-end/default-fields/email/email.php:73
3291
+ #: ../front-end/default-fields/email/email.php:84
3292
+ msgid "This email is already in use."
3293
+ msgstr "Diese E-Mail ist bereits im Einsatz."
3294
+
3295
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:37
3296
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:41
3297
+ msgid "The passwords do not match"
3298
+ msgstr "Die Kennwörter stimmen nicht überein."
3299
+
3300
+ #: ../front-end/default-fields/username/username.php:50
3301
+ msgid "This username already exists."
3302
+ msgstr "Dieser Benutzername ist bereits vorhanden."
3303
+
3304
+ #: ../front-end/default-fields/username/username.php:65
3305
+ msgid "This username is already reserved to be used soon."
3306
+ msgstr "Dieser Benutzername ist bereits reserviert, um bald verwendet zu werden."
3307
+
3308
+ #: ../modules/user-listing/userlisting.php:247
3309
+ msgid "Avatar"
3310
+ msgstr "Profil-Bild"
3311
+
3312
+ #: ../front-end/extra-fields/avatar/avatar.php:72
3313
+ #: ../front-end/extra-fields/checkbox/checkbox.php:45
3314
+ #: ../front-end/extra-fields/datepicker/datepicker.php:40
3315
+ #: ../front-end/extra-fields/input-hidden/input-hidden.php:34
3316
+ #: ../front-end/extra-fields/input/input.php:30
3317
+ #: ../front-end/extra-fields/radio/radio.php:44
3318
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:46
3319
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:44
3320
+ #: ../front-end/extra-fields/select/select.php:46
3321
+ #: ../front-end/extra-fields/textarea/textarea.php:30
3322
+ #: ../front-end/extra-fields/upload/upload.php:70
3323
+ #: ../front-end/extra-fields/wysiwyg/wysiwyg.php:33
3324
+ msgid "required"
3325
+ msgstr "Erforderlich"
3326
+
3327
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
3328
+ msgid "To use reCAPTCHA you must get an API key from"
3329
+ msgstr "Um ReCAPTCHA zu verwenden müssen Sie einen API-Schlüssel von hier nehmen:"
3330
+
3331
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:131
3332
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
3333
+ msgstr "Aus Sicherheitsgründen müssen Sie den remote-Ip eingeben um ReCAPTCHA zu benutzen!"
3334
+
3335
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:192
3336
+ msgid "To use reCAPTCHA you must get an API public key from:"
3337
+ msgstr "Um ReCAPTCHA zu verwenden muss man eine öffentliche API-Key von hier hohlen:"
3338
+
3339
+ #: ../modules/modules.php:11 ../modules/modules.php:55
3340
+ msgid "Modules"
3341
+ msgstr "Module"
3342
+
3343
+ #: ../modules/modules.php:56
3344
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
3345
+ msgstr "Hier können Sie die verfügbaren Module für Profil-Generator aktivieren/deaktivieren."
3346
+
3347
+ #: ../modules/modules.php:66
3348
+ msgid "Name/Description"
3349
+ msgstr "Name/Beschreibung"
3350
+
3351
+ #: ../modules/modules.php:67
3352
+ msgid "Status"
3353
+ msgstr "Status"
3354
+
3355
+ #: ../modules/modules.php:74 ../modules/modules.php:81
3356
+ #: ../modules/modules.php:88 ../modules/modules.php:95
3357
+ #: ../modules/modules.php:102 ../modules/modules.php:109
3358
+ msgid "Active"
3359
+ msgstr "Aktiv"
3360
+
3361
+ #: ../modules/modules.php:75 ../modules/modules.php:82
3362
+ #: ../modules/modules.php:89 ../modules/modules.php:96
3363
+ #: ../modules/modules.php:103 ../modules/modules.php:110
3364
+ msgid "Inactive"
3365
+ msgstr "inaktiv"
3366
+
3367
+ #: ../modules/email-customizer/admin-email-customizer.php:11
3368
+ #: ../modules/email-customizer/admin-email-customizer.php:12
3369
+ #: ../modules/modules.php:93
3370
+ msgid "Admin Email Customizer"
3371
+ msgstr "Anpassen der Admin-E-Mails"
3372
+
3373
+ #: ../modules/email-customizer/user-email-customizer.php:11
3374
+ #: ../modules/email-customizer/user-email-customizer.php:12
3375
+ #: ../modules/modules.php:100
3376
+ msgid "User Email Customizer"
3377
+ msgstr "Anpassen der Benutzer-E-Mails"
3378
+
3379
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
3380
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
3381
+ msgid "Save"
3382
+ msgstr "Speichern"
3383
+
3384
+ #: ../modules/multiple-forms/edit-profile-forms.php:202
3385
+ #: ../modules/multiple-forms/register-forms.php:226
3386
+ msgid "Redirect"
3387
+ msgstr "Umadressierung "
3388
+
3389
+ #: ../modules/multiple-forms/edit-profile-forms.php:204
3390
+ #: ../modules/multiple-forms/register-forms.php:228
3391
+ msgid "URL"
3392
+ msgstr "URL"
3393
+
3394
+ #: ../modules/email-customizer/admin-email-customizer.php:38
3395
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
3396
+ msgstr "Diese Einstellungen werden auch auf der \"Benutzer E-Mail Kustomisierung\" Einstellungs-Seite beim Speichern repliziert."
3397
+
3398
+ #: ../modules/email-customizer/admin-email-customizer.php:41
3399
+ #: ../modules/email-customizer/user-email-customizer.php:41
3400
+ msgid "From (name)"
3401
+ msgstr "Von (Name)"
3402
+
3403
+ #: ../modules/email-customizer/admin-email-customizer.php:49
3404
+ #: ../modules/email-customizer/user-email-customizer.php:49
3405
+ msgid "From (reply-to email)"
3406
+ msgstr "Von (Antwort auf E-Mail)"
3407
+
3408
+ #: ../modules/email-customizer/admin-email-customizer.php:57
3409
+ #: ../modules/email-customizer/user-email-customizer.php:57
3410
+ msgid "Common Settings"
3411
+ msgstr "Allgemeine Einstellungen"
3412
+
3413
+ #: ../modules/email-customizer/admin-email-customizer.php:60
3414
+ msgid ""
3415
+ "\n"
3416
+ "<p>New subscriber on {{site_name}}.</p>\n"
3417
+ "<p>Username:{{username}}</p>\n"
3418
+ "<p>E-mail:{{user_email}}</p>\n"
3419
+ msgstr ""
3420
+ "\n"
3421
+ "<p>Neue Abonnenten für {{site_name}}.</p>\n"
3422
+ "<p>Benutzername:{{username}}</p>\n"
3423
+ "<p>E-mail:{{user_email}}</p>\n"
3424
+
3425
+ #: ../modules/email-customizer/admin-email-customizer.php:69
3426
+ #: ../modules/email-customizer/admin-email-customizer.php:99
3427
+ #: ../modules/email-customizer/admin-email-customizer.php:126
3428
+ #: ../modules/email-customizer/user-email-customizer.php:71
3429
+ #: ../modules/email-customizer/user-email-customizer.php:99
3430
+ #: ../modules/email-customizer/user-email-customizer.php:128
3431
+ #: ../modules/email-customizer/user-email-customizer.php:155
3432
+ #: ../modules/email-customizer/user-email-customizer.php:183
3433
+ #: ../modules/email-customizer/user-email-customizer.php:214
3434
+ #: ../modules/email-customizer/user-email-customizer.php:241
3435
+ msgid "Email Subject"
3436
+ msgstr "E-Mail Betreff"
3437
+
3438
+ #: ../modules/email-customizer/admin-email-customizer.php:84
3439
+ msgid "Default Registration & Registration with Email Confirmation"
3440
+ msgstr "Standard-Anmeldung & Anmeldung mit E-Mail-Bestätigung"
3441
+
3442
+ #: ../modules/email-customizer/admin-email-customizer.php:87
3443
+ msgid ""
3444
+ "\n"
3445
+ "<p>New subscriber on {{site_name}}.</p>\n"
3446
+ "<p>Username:{{username}}</p>\n"
3447
+ "<p>E-mail:{{user_email}}</p>\n"
3448
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
3449
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
3450
+ msgstr ""
3451
+ "<p>Neue Abonnenten für {{site_name}}.</p>\n"
3452
+ "<p>Benutzername: {{username}}</p> \n"
3453
+ "<p>E-Mail :{{user_email}}</p> \n"
3454
+ "<p>Die Admin Genehmigung Feature wurde zum Zeitpunkt der Registrierung aktiviert.\n"
3455
+ "Also bitte denken Sie daran, dass dieser Benutzer genehmigt sein muss, bevor er sich anmelden kann !</p>\n"
3456
+
3457
+ #: ../modules/email-customizer/admin-email-customizer.php:114
3458
+ #: ../modules/email-customizer/user-email-customizer.php:143
3459
+ msgid "Registration with Admin Approval"
3460
+ msgstr "Anmeldung mit Admin Genehmigung"
3461
+
3462
+ #: ../modules/email-customizer/email-customizer.php:7
3463
+ msgid "Available Tags"
3464
+ msgstr "Verfügbare Tags"
3465
+
3466
+ #: ../features/email-confirmation/class-email-confirmation.php:91
3467
+ #: ../features/email-confirmation/class-email-confirmation.php:170
3468
+ #: ../modules/email-customizer/email-customizer.php:11
3469
+ msgid "User Meta"
3470
+ msgstr "Benutzer-Meta"
3471
+
3472
+ #: ../modules/email-customizer/email-customizer.php:21
3473
+ msgid "Site Url"
3474
+ msgstr "Website-Url"
3475
+
3476
+ #: ../modules/email-customizer/email-customizer.php:22
3477
+ msgid "Site Name"
3478
+ msgstr "Website Name"
3479
+
3480
+ #: ../modules/email-customizer/email-customizer.php:25
3481
+ #: ../modules/user-listing/userlisting.php:133
3482
+ msgid "User Id"
3483
+ msgstr "Benutzer-Id"
3484
+
3485
+ #: ../modules/email-customizer/email-customizer.php:33
3486
+ msgid "Reply To"
3487
+ msgstr "Antwort auf"
3488
+
3489
+ #: ../modules/email-customizer/email-customizer.php:36
3490
+ msgid "Activation Key"
3491
+ msgstr "Aktivierungsschlüssel"
3492
+
3493
+ #: ../modules/email-customizer/email-customizer.php:37
3494
+ msgid "Activation Url"
3495
+ msgstr "Aktivierungs-Url"
3496
+
3497
+ #: ../modules/email-customizer/email-customizer.php:38
3498
+ msgid "Activation Link"
3499
+ msgstr "Aktivierungs-Link"
3500
+
3501
+ #: ../modules/email-customizer/user-email-customizer.php:64
3502
+ msgid ""
3503
+ "\n"
3504
+ "<h3>Welcome to {{site_name}}!</h3>\n"
3505
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3506
+ msgstr ""
3507
+ "\n"
3508
+ "<h3>Willkommen bei {{Site_name}}!</h3> <p>Ihr Benutzername ist: {{Username}} und das Passwort ist: {{Passwort}}</p>\n"
3509
+
3510
+ #: ../modules/email-customizer/user-email-customizer.php:85
3511
+ msgid "Default Registration"
3512
+ msgstr "Standard-Anmeldung"
3513
+
3514
+ #: ../modules/email-customizer/user-email-customizer.php:91
3515
+ msgid ""
3516
+ "\n"
3517
+ "<p>To activate your user, please click the following link:<br/>\n"
3518
+ "{{{activation_link}}}</p>\n"
3519
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
3520
+ msgstr ""
3521
+ "\n"
3522
+ "<p>Um Ihren Benutzer zu aktivieren, klicken Sie bitte auf den folgenden Link: <br/> \n"
3523
+ "{{{activation_link}}}</p>\n"
3524
+ "<p>Nach der Aktivierung erhalten Sie eine weitere E-Mail mit Ihren Anmeldeinformationen.</p>\n"
3525
+
3526
+ #: ../modules/email-customizer/user-email-customizer.php:103
3527
+ msgid "[{{site_name}}] Activate {{username}}"
3528
+ msgstr "[{{site_name}}] Aktivieren {{username}}"
3529
+
3530
+ #: ../modules/email-customizer/user-email-customizer.php:114
3531
+ msgid "Registration with Email Confirmation"
3532
+ msgstr "Anmeldung mit E-Mail-Bestätigung"
3533
+
3534
+ #: ../modules/email-customizer/user-email-customizer.php:120
3535
+ msgid ""
3536
+ "\n"
3537
+ "<h3>Welcome to {{site_name}}!</h3>\n"
3538
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3539
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
3540
+ msgstr ""
3541
+ "\n"
3542
+ "<h3>Willkommen bei {{site_name}}!</h3>\n"
3543
+ "<p>Ihr Benutzername ist:{{username}} und das Kennwort:{{password}}</p>\n"
3544
+ "<p>Bevor Sie in Ihr Konto zugreifen können, muss ein Administrator diesen Benutzer genehmigen. Sie werden per E-Mail weiter benachrichtigt.</p>\n"
3545
+
3546
+ #: ../modules/email-customizer/user-email-customizer.php:132
3547
+ msgid "A new account has been created for you on {{site_name}}"
3548
+ msgstr "Ein neues Konto wurde für Sie auf {{Site_name}} geschaffen"
3549
+
3550
+ #: ../modules/email-customizer/user-email-customizer.php:148
3551
+ msgid ""
3552
+ "\n"
3553
+ "<h3>Good News!</h3>\n"
3554
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
3555
+ msgstr ""
3556
+ "\n"
3557
+ "<h3>Gute Nachricht!</h3>\n"
3558
+ "<p>Ein Administrator hat Ihr Konto genehmigt: {{username}} auf {{site_name}}.</p>\n"
3559
+
3560
+ #: ../modules/email-customizer/user-email-customizer.php:159
3561
+ msgid "Your account on {{site_name}} has been approved!"
3562
+ msgstr "Ihr Konto wurde auf {{site_name}} genehmigt!"
3563
+
3564
+ #: ../modules/email-customizer/user-email-customizer.php:170
3565
+ msgid "User Approval Notification"
3566
+ msgstr "Benutzer Genehmigungs-Benachrichtigung"
3567
+
3568
+ #: ../modules/email-customizer/user-email-customizer.php:175
3569
+ msgid ""
3570
+ "\n"
3571
+ "<h3>Hello,</h3>\n"
3572
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
3573
+ msgstr ""
3574
+ "\n"
3575
+ "<h3>Hallo,</h3>\n"
3576
+ "<p>Leider hat ein Administrator Ihr Konto nicht genehmigt.</p>\n"
3577
+
3578
+ #: ../modules/email-customizer/user-email-customizer.php:187
3579
+ msgid "Your account on {{site_name}} has been unapproved!"
3580
+ msgstr "Ihr Konto auf {{site_name}} wurde nicht genehmigt!"
3581
+
3582
+ #: ../modules/email-customizer/user-email-customizer.php:198
3583
+ msgid "Unapproved User Notification"
3584
+ msgstr "Nicht genehmigte Benutzerbenachrichtigung"
3585
+
3586
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
3587
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
3588
+ msgid "Edit-profile Form"
3589
+ msgstr "Profil Bearbeitungs-Formular"
3590
+
3591
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
3592
+ #: ../modules/multiple-forms/register-forms.php:13
3593
+ #: ../modules/user-listing/userlisting.php:13
3594
+ msgid "Add New"
3595
+ msgstr "Neu hinzufügen"
3596
+
3597
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
3598
+ msgid "Add new Edit-profile Form"
3599
+ msgstr "Neues Profil Bearbeitungs-Formular hinzufügen"
3600
+
3601
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
3602
+ msgid "Edit the Edit-profile Forms"
3603
+ msgstr "Profil Bearbeitungs-Formular bearbeiten"
3604
+
3605
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
3606
+ msgid "New Edit-profile Form"
3607
+ msgstr "Neues Profil Bearbeitungs-Formular"
3608
+
3609
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
3610
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
3611
+ msgid "Edit-profile Forms"
3612
+ msgstr "Profil Bearbeitungs-Formular"
3613
+
3614
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
3615
+ msgid "View the Edit-profile Form"
3616
+ msgstr "Ansicht vom Profil Bearbeitungs-Formular"
3617
+
3618
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
3619
+ msgid "Search the Edit-profile Forms"
3620
+ msgstr "Suchen Sie nach Profil Bearbeitungs-Formulare"
3621
+
3622
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
3623
+ msgid "No Edit-profile Form found"
3624
+ msgstr "Kein Profil Bearbeitungs-Formular wurde gefunden"
3625
+
3626
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
3627
+ msgid "No Edit-profile Forms found in trash"
3628
+ msgstr "Keine Profil-bearbeitungs Formulare wurden im Papierkorb gefunden"
3629
+
3630
+ #: ../modules/multiple-forms/edit-profile-forms.php:131
3631
+ #: ../modules/multiple-forms/register-forms.php:134
3632
+ #: ../modules/user-listing/userlisting.php:1155
3633
+ msgid "Shortcode"
3634
+ msgstr "Shortcode"
3635
+
3636
+ #: ../modules/multiple-forms/edit-profile-forms.php:151
3637
+ #: ../modules/multiple-forms/register-forms.php:155
3638
+ #: ../modules/user-listing/userlisting.php:1176
3639
+ msgid "(no title)"
3640
+ msgstr "(kein Titel)"
3641
+
3642
+ #: ../modules/multiple-forms/edit-profile-forms.php:171
3643
+ #: ../modules/multiple-forms/register-forms.php:174
3644
+ #: ../modules/user-listing/userlisting.php:1196
3645
+ msgid "The shortcode will be available after you publish this form."
3646
+ msgstr "Der Shortcode wird verfügbar sein, nachdem Sie dieses Formular veröffentlichen."
3647
+
3648
+ #: ../modules/multiple-forms/edit-profile-forms.php:173
3649
+ #: ../modules/multiple-forms/register-forms.php:176
3650
+ #: ../modules/user-listing/userlisting.php:1198
3651
+ msgid "Use this shortcode on the page you want the form to be displayed:"
3652
+ msgstr "Verwenden Sie diesen Shortcode auf der Seite wo das Formular angezeigt werden sollte"
3653
+
3654
+ #: ../modules/multiple-forms/edit-profile-forms.php:177
3655
+ #: ../modules/multiple-forms/register-forms.php:180
3656
+ #: ../modules/user-listing/userlisting.php:1202
3657
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
3658
+ msgstr "<span style=\"color:red;\"> Hinweis:</span> die Änderung vom Formulartitel ändert auch den Shortcode!"
3659
+
3660
+ #: ../modules/multiple-forms/edit-profile-forms.php:183
3661
+ #: ../modules/multiple-forms/register-forms.php:186
3662
+ #: ../modules/user-listing/userlisting.php:1235
3663
+ msgid "Form Shortcode"
3664
+ msgstr "Shortcode Formular "
3665
+
3666
+ #: ../modules/multiple-forms/edit-profile-forms.php:202
3667
+ #: ../modules/multiple-forms/register-forms.php:226
3668
+ msgid "Whether to redirect the user to a specific page or not"
3669
+ msgstr "Ob der Benutzer zu einer bestimmten Seite oder nicht umgeleiten werden sollte"
3670
+
3671
+ #: ../modules/multiple-forms/edit-profile-forms.php:203
3672
+ #: ../modules/multiple-forms/register-forms.php:227
3673
+ msgid "Display Messages"
3674
+ msgstr "Anzeige-Meldungen"
3675
+
3676
+ #: ../modules/multiple-forms/edit-profile-forms.php:203
3677
+ #: ../modules/multiple-forms/register-forms.php:227
3678
+ msgid "Allowed time to display any success messages (in seconds)"
3679
+ msgstr "Erlaubte Zeit um Erfolgsmeldungen (in Sekunden) anzuzeigen"
3680
+
3681
+ #: ../modules/multiple-forms/edit-profile-forms.php:204
3682
+ 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"
3683
+ msgstr "Geben Sie das URL der Seite ein, wo die Benutzer umgeleitet werden sollten, sobald diese ihren Profil mit diesem Formular aktualisiert haben<br/> verwenden Sie folgendes Format: http://www.meineWebseite.com"
3684
+
3685
+ #: ../modules/multiple-forms/edit-profile-forms.php:211
3686
+ msgid "After Profile Update..."
3687
+ msgstr "Nach Profil-Änderung..."
3688
+
3689
+ #: ../modules/multiple-forms/edit-profile-forms.php:237
3690
+ #: ../modules/multiple-forms/register-forms.php:258
3691
+ msgid "Add New Field to the List"
3692
+ msgstr "Neues Feld zur Liste hinzufügen"
3693
+
3694
+ #: ../modules/multiple-forms/edit-profile-forms.php:241
3695
+ #: ../modules/multiple-forms/register-forms.php:262
3696
+ msgid "Choose one of the supported fields you manage <a href=\""
3697
+ msgstr "Wählen Sie eines der unterstützten Felder, die Sie verwalten aus <a href=\""
3698
+
3699
+ #: ../modules/multiple-forms/multiple-forms.php:399
3700
+ msgid "<pre>Title (Type)</pre>"
3701
+ msgstr "<pre>Titel (Type)</pre>"
3702
+
3703
+ #: ../modules/multiple-forms/multiple-forms.php:215
3704
+ msgid "You need to specify the title of the form before creating it"
3705
+ msgstr "Sie müssen einen Titel dem Formular geben, bevor Sie diesen erstellen"
3706
+
3707
+ #: ../modules/multiple-forms/register-forms.php:11
3708
+ #: ../modules/multiple-forms/register-forms.php:12
3709
+ msgid "Registration Form"
3710
+ msgstr "Anmeldungsform"
3711
+
3712
+ #: ../modules/multiple-forms/register-forms.php:14
3713
+ msgid "Add new Registration Form"
3714
+ msgstr "Fügen Sie ein neues Anmeldeformular ein"
3715
+
3716
+ #: ../modules/multiple-forms/register-forms.php:15
3717
+ msgid "Edit the Registration Forms"
3718
+ msgstr "Bearbeitung der Anmeldeformulare"
3719
+
3720
+ #: ../modules/multiple-forms/register-forms.php:16
3721
+ msgid "New Registration Form"
3722
+ msgstr "Neues Anmeldeformular"
3723
+
3724
+ #: ../modules/multiple-forms/register-forms.php:17
3725
+ #: ../modules/multiple-forms/register-forms.php:23
3726
+ msgid "Registration Forms"
3727
+ msgstr "Anmeldeformulare"
3728
+
3729
+ #: ../modules/multiple-forms/register-forms.php:18
3730
+ msgid "View the Registration Form"
3731
+ msgstr "Ansicht des Anmeldeformulars"
3732
+
3733
+ #: ../modules/multiple-forms/register-forms.php:19
3734
+ msgid "Search the Registration Forms"
3735
+ msgstr "Suchen Sie die Anmeldeformulare"
3736
+
3737
+ #: ../modules/multiple-forms/register-forms.php:20
3738
+ msgid "No Registration Form found"
3739
+ msgstr "Kein Anmeldeformular wurde gefunden"
3740
+
3741
+ #: ../modules/multiple-forms/register-forms.php:21
3742
+ msgid "No Registration Forms found in trash"
3743
+ msgstr "Keine Anmeldeformulare wurden im Müll gefunden"
3744
+
3745
+ #: ../modules/multiple-forms/register-forms.php:215
3746
+ msgid "Default Role"
3747
+ msgstr "Standardrolle"
3748
+
3749
+ #: ../modules/multiple-forms/register-forms.php:224
3750
+ msgid "Set Role"
3751
+ msgstr "Rolle einstellen"
3752
+
3753
+ #: ../modules/multiple-forms/register-forms.php:224
3754
+ 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"
3755
+ msgstr "Wählen Sie aus, welche Rolle ein Benutzer nachdem er sich registriert hat, haben sollte. <br/> Falls nicht angegeben, wird standardmäßig die Rolle aus den WordPress-Einstellungen gesetzt. "
3756
+
3757
+ #: ../modules/multiple-forms/register-forms.php:225
3758
+ msgid "Automatically Log In"
3759
+ msgstr "Automatisch einloggen"
3760
+
3761
+ #: ../modules/multiple-forms/register-forms.php:225
3762
+ 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"
3763
+ msgstr "Ob man sich direkt automatisch als den neu registrierten Benutzer oder nicht anmelden soll. <br/> Funktioniert nur auf einzelnen Seiten ohne dass die \"Admin Approval\" und \"E-Mail-Bestätigung\" Features aktiviert sind <br/> Warnung: Caching das Registrierungsformular bricht die automatische Anmeldungung"
3764
+
3765
+ #: ../modules/multiple-forms/register-forms.php:228
3766
+ 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"
3767
+ msgstr "Geben Sie den URL der Seite ein, wo die Benutzer nach der Anmeldung mit diesem Formular umgeleitet werden sollten <br/> verwenden Sie folgendes Format: http://www.meineseite.com"
3768
+
3769
+ #: ../modules/multiple-forms/register-forms.php:234
3770
+ msgid "After Registration..."
3771
+ msgstr "Nach der Anmeldung..."
3772
+
3773
+ #: ../modules/user-listing/class-userlisting.php:470
3774
+ #: ../modules/user-listing/userlisting.php:724
3775
+ #: ../modules/user-listing/userlisting.php:968
3776
+ #: ../modules/user-listing/userlisting.php:1011
3777
+ #: ../modules/user-listing/userlisting.php:1355
3778
+ msgid "Search Users by All Fields"
3779
+ msgstr "Suche Benutzer nach allen Feldern"
3780
+
3781
+ #: ../modules/user-listing/userlisting.php:14
3782
+ msgid "Add new User Listing"
3783
+ msgstr "Einfügen von neuen Benutzer-Auflisten"
3784
+
3785
+ #: ../modules/user-listing/userlisting.php:15
3786
+ msgid "Edit the User Listing"
3787
+ msgstr "Bearbeiten Sie das Benutzer-Auflisten"
3788
+
3789
+ #: ../modules/user-listing/userlisting.php:16
3790
+ msgid "New User Listing"
3791
+ msgstr "neues Benutzer-Auflisten"
3792
+
3793
+ #: ../modules/user-listing/userlisting.php:18
3794
+ msgid "View the User Listing"
3795
+ msgstr "Ansicht von Benutzer-Auflisten"
3796
+
3797
+ #: ../modules/user-listing/userlisting.php:19
3798
+ msgid "Search the User Listing"
3799
+ msgstr "Suchen in der Benutzer-Liste"
3800
+
3801
+ #: ../modules/user-listing/userlisting.php:20
3802
+ msgid "No User Listing found"
3803
+ msgstr "Keine Benutzereinträge gefunden"
3804
+
3805
+ #: ../modules/user-listing/userlisting.php:21
3806
+ msgid "No User Listing found in trash"
3807
+ msgstr "Keine Benutzerliste wurde im Papierkorb gefunden"
3808
+
3809
+ #: ../modules/user-listing/userlisting.php:95
3810
+ msgid "Display name as"
3811
+ msgstr "Anzeigename als"
3812
+
3813
+ #: ../modules/user-listing/userlisting.php:125
3814
+ #: ../modules/user-listing/userlisting.php:1263
3815
+ msgid "Registration Date"
3816
+ msgstr "Datum der Anmeldung"
3817
+
3818
+ #: ../modules/user-listing/userlisting.php:126
3819
+ #: ../modules/user-listing/userlisting.php:1267
3820
+ msgid "Number of Posts"
3821
+ msgstr "Anzahl der Beiträge"
3822
+
3823
+ #: ../modules/user-listing/userlisting.php:130
3824
+ msgid "More Info"
3825
+ msgstr "Mehr Info"
3826
+
3827
+ #: ../modules/user-listing/userlisting.php:131
3828
+ msgid "More Info Url"
3829
+ msgstr "Url für weitere Informationen"
3830
+
3831
+ #: ../modules/user-listing/userlisting.php:132
3832
+ msgid "Avatar or Gravatar"
3833
+ msgstr "Profilbild oder Gravatar"
3834
+
3835
+ #: ../modules/user-listing/userlisting.php:161
3836
+ msgid "Meta Variables"
3837
+ msgstr "Meta-Variablen"
3838
+
3839
+ #: ../modules/user-listing/userlisting.php:167
3840
+ msgid "Sort Variables"
3841
+ msgstr "Variablen sortieren"
3842
+
3843
+ #: ../modules/user-listing/userlisting.php:171
3844
+ #: ../modules/user-listing/userlisting.php:198
3845
+ msgid "Extra Functions"
3846
+ msgstr "Zusatzfunktionen"
3847
+
3848
+ #: ../modules/user-listing/userlisting.php:173
3849
+ msgid "Pagination"
3850
+ msgstr "Paginierung"
3851
+
3852
+ #: ../modules/user-listing/userlisting.php:174
3853
+ msgid "Search all Fields"
3854
+ msgstr "Alle Felder durchsuchen"
3855
+
3856
+ #: ../modules/user-listing/userlisting.php:200
3857
+ msgid "Go Back Link"
3858
+ msgstr "Link zurück"
3859
+
3860
+ #: ../modules/user-listing/userlisting.php:218
3861
+ msgid "All-userlisting Template"
3862
+ msgstr "Alle-Benutzeranzeige Vorlage "
3863
+
3864
+ #: ../modules/user-listing/userlisting.php:221
3865
+ msgid "Single-userlisting Template"
3866
+ msgstr "Einzel-Benutzeranzeige Vorlage"
3867
+
3868
+ #: ../modules/user-listing/userlisting.php:614
3869
+ msgid "First/Lastname"
3870
+ msgstr "Vor/Nachname"
3871
+
3872
+ #: ../modules/user-listing/userlisting.php:252
3873
+ #: ../modules/user-listing/userlisting.php:620
3874
+ msgid "Sign-up Date"
3875
+ msgstr "Anmeldungsdatum"
3876
+
3877
+ #: ../modules/user-listing/userlisting.php:629
3878
+ #: ../modules/user-listing/userlisting.php:1266
3879
+ msgid "Display Name"
3880
+ msgstr "Anzeigenamen"
3881
+
3882
+ #: ../modules/user-listing/userlisting.php:251
3883
+ #: ../modules/user-listing/userlisting.php:638
3884
+ msgid "Posts"
3885
+ msgstr "Beiträge"
3886
+
3887
+ #: ../modules/user-listing/userlisting.php:641
3888
+ #: ../modules/user-listing/userlisting.php:1272
3889
+ msgid "Aim"
3890
+ msgstr "Ziel"
3891
+
3892
+ #: ../modules/user-listing/userlisting.php:644
3893
+ #: ../modules/user-listing/userlisting.php:1273
3894
+ msgid "Yim"
3895
+ msgstr "Yim"
3896
+
3897
+ #: ../modules/user-listing/userlisting.php:647
3898
+ #: ../modules/user-listing/userlisting.php:1274
3899
+ msgid "Jabber"
3900
+ msgstr "Jabber"
3901
+
3902
+ #: ../modules/user-listing/userlisting.php:827
3903
+ msgid "Click here to see more information about this user"
3904
+ msgstr "Klicken Sie hier für weitere Informationen über diesen Benutzer"
3905
+
3906
+ #: ../modules/user-listing/userlisting.php:827
3907
+ msgid "More..."
3908
+ msgstr "Mehr..."
3909
+
3910
+ #: ../modules/user-listing/userlisting.php:830
3911
+ msgid "Click here to see more information about this user."
3912
+ msgstr "Klicken Sie hier für weitere Informationen über diesen Benutzer "
3913
+
3914
+ #: ../modules/user-listing/userlisting.php:922
3915
+ #: ../modules/user-listing/userlisting.php:925
3916
+ msgid "Click here to go back"
3917
+ msgstr "Klicken Sie hier, um zurück zu gehen"
3918
+
3919
+ #: ../modules/user-listing/userlisting.php:922
3920
+ msgid "Back"
3921
+ msgstr "Zurück"
3922
+
3923
+ #: ../modules/user-listing/userlisting.php:955
3924
+ msgid "&laquo;&laquo; First"
3925
+ msgstr "&laquo;&laquo; Erster"
3926
+
3927
+ #: ../modules/user-listing/userlisting.php:956
3928
+ msgid "&laquo; Prev"
3929
+ msgstr "&laquo; Zurück"
3930
+
3931
+ #: ../modules/user-listing/userlisting.php:957
3932
+ msgid "Next &raquo; "
3933
+ msgstr "Nächste Seite &raquo; "
3934
+
3935
+ #: ../modules/user-listing/userlisting.php:958
3936
+ msgid "Last &raquo;&raquo;"
3937
+ msgstr "Letzter &raquo;&raquo;"
3938
+
3939
+ #: ../modules/user-listing/userlisting.php:987
3940
+ msgid "You don't have any pagination settings on this userlisting!"
3941
+ msgstr "Sie haben noch keine Paginierungs-Einstellungen auf dieser Benutzerliste!"
3942
+
3943
+ #: ../modules/user-listing/userlisting.php:1028
3944
+ msgid "Search"
3945
+ msgstr "Suchen"
3946
+
3947
+ #: ../modules/user-listing/userlisting.php:1029
3948
+ msgid "Clear Results"
3949
+ msgstr "Ergebnisse löschen"
3950
+
3951
+ #: ../modules/user-listing/userlisting.php:1205
3952
+ #: ../modules/user-listing/userlisting.php:1209
3953
+ msgid "Extra shortcode parameters"
3954
+ msgstr "Zusätzliche Shortcode-Parameters"
3955
+
3956
+ #: ../modules/user-listing/userlisting.php:1212
3957
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
3958
+ msgstr "Anzeige von Benutzer die einen bestimmten Meta-Wert innerhalb eines bestimmten (extra) Meta-Feld haben"
3959
+
3960
+ #: ../modules/user-listing/userlisting.php:1213
3961
+ msgid "Example:"
3962
+ msgstr "Beispiel:"
3963
+
3964
+ #: ../modules/user-listing/userlisting.php:1215
3965
+ msgid "Remember though, that the field-value combination must exist in the database."
3966
+ msgstr "Denken Sie daran, dass die Feld-Wert Kombination in der Datenbank vorhanden sein muss."
3967
+
3968
+ #: ../modules/user-listing/userlisting.php:1284
3969
+ msgid "Random (very slow on large databases > 10K user)"
3970
+ msgstr "Random (sehr langsam auf große Datenbanken > 10K Benutzer)"
3971
+
3972
+ #: ../modules/user-listing/userlisting.php:1297
3973
+ msgid "Roles to Display"
3974
+ msgstr "Rollen anzeigen"
3975
+
3976
+ #: ../modules/user-listing/userlisting.php:1297
3977
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
3978
+ msgstr "Beschränken Sie die Benutzerlisten nur für diese ausgewählten Rollen <br/> Wenn nicht angegeben, wird standardmäßig auf allen vorhandenen Rollen die Beschränkung gesetzt"
3979
+
3980
+ #: ../modules/user-listing/userlisting.php:1298
3981
+ msgid "Number of Users/Page"
3982
+ msgstr "Anzahl Benutzer/Seite"
3983
+
3984
+ #: ../modules/user-listing/userlisting.php:1299
3985
+ msgid "Default Sorting Criteria"
3986
+ msgstr "Standardmäßige Sortierkriterien"
3987
+
3988
+ #: ../modules/user-listing/userlisting.php:1299
3989
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
3990
+ msgstr "Festlegen der standard Sortierungskriterien <br/> Dieses kann temporär für jede neue Sitzung geändert werden"
3991
+
3992
+ #: ../modules/user-listing/userlisting.php:1300
3993
+ msgid "Default Sorting Order"
3994
+ msgstr "Standard-Sortierreihenfolge"
3995
+
3996
+ #: ../modules/user-listing/userlisting.php:1300
3997
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
3998
+ msgstr "Festlegen der standard Sortierungskriterien <br/> Dieses kann temporär für jede neue Sitzung geändert werden"
3999
+
4000
+ #: ../modules/user-listing/userlisting.php:1301
4001
+ msgid "Avatar Size (All-userlisting)"
4002
+ msgstr "Profilbild-Größe (alle Benutzereinträge)"
4003
+
4004
+ #: ../modules/user-listing/userlisting.php:1301
4005
+ msgid "Set the avatar size on the all-userlisting only"
4006
+ msgstr "Legen Sie die Profilbildgröße für alle Benutzer-Listen fest."
4007
+
4008
+ #: ../modules/user-listing/userlisting.php:1302
4009
+ msgid "Avatar Size (Single-userlisting)"
4010
+ msgstr "Profilbild-Größe (Einzel-Benutzeranzeige)"
4011
+
4012
+ #: ../modules/user-listing/userlisting.php:1302
4013
+ msgid "Set the avatar size on the single-userlisting only"
4014
+ msgstr "Setzen Sie die Profilbild-Größe (nur für die Einzel-Benutzeranzeige)"
4015
+
4016
+ #: ../modules/user-listing/userlisting.php:1303
4017
+ msgid "Visible only to logged in users?"
4018
+ msgstr "Nur für angemeldete Benutzer sichtbar?"
4019
+
4020
+ #: ../modules/user-listing/userlisting.php:1303
4021
+ msgid "The userlisting will only be visible only to the logged in users"
4022
+ msgstr "Die Benutzeranzeigen werden nur für die angemeldeten Benutzer sichtbar sein"
4023
+
4024
+ #: ../modules/user-listing/userlisting.php:1304
4025
+ msgid "Visible to following Roles"
4026
+ msgstr "Für folgende Rollen sichtbar"
4027
+
4028
+ #: ../modules/user-listing/userlisting.php:1304
4029
+ msgid "The userlisting will only be visible to the following roles"
4030
+ msgstr " Die Benutzeranzeige wird nur für folgende Rollen sichtbar sein."
4031
+
4032
+ #: ../modules/user-listing/userlisting.php:1310
4033
+ msgid "Userlisting Settings"
4034
+ msgstr "Benutzereinträge Einstellungen"
4035
+
4036
+ #: ../modules/user-listing/userlisting.php:1331
4037
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
4038
+ msgstr "Sie müssen die Benutzeranzeige-Funktion innerhalb des Tabs \"Module\" aktivieren!"
4039
+
4040
+ #: ../modules/user-listing/userlisting.php:1331
4041
+ msgid "You can find it in the Profile Builder menu."
4042
+ msgstr "Sie finden es im Menü vom Profile Builder"
4043
+
4044
+ #: ../modules/user-listing/userlisting.php:1494
4045
+ msgid "No results found!"
4046
  msgstr "Keine Ergebnisse wurden gefunden!"
translation/profile-builder-es_ES.mo CHANGED
Binary file
translation/profile-builder-es_ES.po CHANGED
@@ -1,3823 +1,4041 @@
1
- # Translation of Profile Builder in Spanish (Spain)
2
- # This file is distributed under the same license as the Profile Builder package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2015-09-29 11:53:40+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
- #: ../admin/admin-functions.php:40
14
- msgid "Display name publicly as - only appears on the Edit Profile page!"
15
- msgstr ""
16
-
17
- #: ../admin/basic-info.php:37
18
- msgid "Friction-less login using %s shortcode or a widget."
19
- msgstr ""
20
-
21
- #: ../admin/basic-info.php:41
22
- msgid "Beautiful registration forms fully customizable using the %s shortcode."
23
- msgstr ""
24
-
25
- #: ../admin/basic-info.php:45
26
- msgid "Straight forward edit profile forms using %s shortcode."
27
- msgstr ""
28
-
29
- #: ../admin/basic-info.php:58
30
- msgid "Allow users to recover their password in the front-end using the %s."
31
- msgstr ""
32
-
33
- #: ../admin/basic-info.php:130
34
- msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
35
- msgstr ""
36
-
37
- #: ../admin/general-settings.php:125
38
- msgid "\"Admin Approval\" on User Role:"
39
- msgstr ""
40
-
41
- #: ../admin/general-settings.php:144
42
- msgid "Select on what user roles to activate Admin Approval."
43
- msgstr ""
44
-
45
- #: ../admin/manage-fields.php:109
46
- msgid "Display on PB forms"
47
- msgstr ""
48
-
49
- #: ../admin/manage-fields.php:109
50
- msgid "PB Login"
51
- msgstr ""
52
-
53
- #: ../admin/manage-fields.php:109
54
- msgid "PB Register"
55
- msgstr ""
56
-
57
- #: ../admin/manage-fields.php:109
58
- msgid "PB Recover Password"
59
- msgstr ""
60
-
61
- #: ../admin/manage-fields.php:109
62
- msgid "Select on which Profile Builder forms to display reCAPTCHA"
63
- msgstr ""
64
-
65
- #: ../admin/manage-fields.php:110
66
- msgid "Display on default WP forms"
67
- msgstr ""
68
-
69
- #: ../admin/manage-fields.php:110
70
- msgid "Default WP Login"
71
- msgstr ""
72
-
73
- #: ../admin/manage-fields.php:110
74
- msgid "Default WP Register"
75
- msgstr ""
76
-
77
- #: ../admin/manage-fields.php:110
78
- msgid "Default WP Recover Password"
79
- msgstr ""
80
-
81
- #: ../admin/manage-fields.php:110
82
- msgid "Select on which default WP forms to display reCAPTCHA"
83
- msgstr ""
84
-
85
- #: ../admin/manage-fields.php:116 ../admin/manage-fields.php:117
86
- msgid "Default option of the field"
87
- msgstr ""
88
-
89
- #: ../admin/manage-fields.php:237
90
- msgid "Afghanistan"
91
- msgstr "Afghanistan"
92
-
93
- #: ../admin/manage-fields.php:238
94
- msgid "Aland Islands"
95
- msgstr "Aland Islands"
96
-
97
- #: ../admin/manage-fields.php:239
98
- msgid "Albania"
99
- msgstr "Albania"
100
-
101
- #: ../admin/manage-fields.php:240
102
- msgid "Algeria"
103
- msgstr "Algeria"
104
-
105
- #: ../admin/manage-fields.php:241
106
- msgid "American Samoa"
107
- msgstr "American Samoa"
108
-
109
- #: ../admin/manage-fields.php:242
110
- msgid "Andorra"
111
- msgstr "Andorra"
112
-
113
- #: ../admin/manage-fields.php:243
114
- msgid "Angola"
115
- msgstr "Angola"
116
-
117
- #: ../admin/manage-fields.php:244
118
- msgid "Anguilla"
119
- msgstr "Anguilla"
120
-
121
- #: ../admin/manage-fields.php:245
122
- msgid "Antarctica"
123
- msgstr "Antarctica"
124
-
125
- #: ../admin/manage-fields.php:246
126
- msgid "Antigua and Barbuda"
127
- msgstr "Antigua and Barbuda"
128
-
129
- #: ../admin/manage-fields.php:247
130
- msgid "Argentina"
131
- msgstr "Argentina"
132
-
133
- #: ../admin/manage-fields.php:248
134
- msgid "Armenia"
135
- msgstr "Armenia"
136
-
137
- #: ../admin/manage-fields.php:249
138
- msgid "Aruba"
139
- msgstr "Aruba"
140
-
141
- #: ../admin/manage-fields.php:250
142
- msgid "Australia"
143
- msgstr "Australia"
144
-
145
- #: ../admin/manage-fields.php:251
146
- msgid "Austria"
147
- msgstr "Austria"
148
-
149
- #: ../admin/manage-fields.php:252
150
- msgid "Azerbaijan"
151
- msgstr "Azerbaijan"
152
-
153
- #: ../admin/manage-fields.php:253
154
- msgid "Bahamas"
155
- msgstr "Bahamas"
156
-
157
- #: ../admin/manage-fields.php:254
158
- msgid "Bahrain"
159
- msgstr "Bahrain"
160
-
161
- #: ../admin/manage-fields.php:255
162
- msgid "Bangladesh"
163
- msgstr "Bangladesh"
164
-
165
- #: ../admin/manage-fields.php:256
166
- msgid "Barbados"
167
- msgstr "Barbados"
168
-
169
- #: ../admin/manage-fields.php:257
170
- msgid "Belarus"
171
- msgstr "Belarus"
172
-
173
- #: ../admin/manage-fields.php:258
174
- msgid "Belgium"
175
- msgstr "Belgium"
176
-
177
- #: ../admin/manage-fields.php:259
178
- msgid "Belize"
179
- msgstr "Belize"
180
-
181
- #: ../admin/manage-fields.php:260
182
- msgid "Benin"
183
- msgstr "Benin"
184
-
185
- #: ../admin/manage-fields.php:261
186
- msgid "Bermuda"
187
- msgstr "Bermuda"
188
-
189
- #: ../admin/manage-fields.php:262
190
- msgid "Bhutan"
191
- msgstr "Bhutan"
192
-
193
- #: ../admin/manage-fields.php:263
194
- msgid "Bolivia"
195
- msgstr "Bolivia"
196
-
197
- #: ../admin/manage-fields.php:264
198
- msgid "Bonaire, Saint Eustatius and Saba"
199
- msgstr "Bonaire, Saint Eustatius and Saba"
200
-
201
- #: ../admin/manage-fields.php:265
202
- msgid "Bosnia and Herzegovina"
203
- msgstr "Bosnia and Herzegovina"
204
-
205
- #: ../admin/manage-fields.php:266
206
- msgid "Botswana"
207
- msgstr "Botswana"
208
-
209
- #: ../admin/manage-fields.php:267
210
- msgid "Bouvet Island"
211
- msgstr "Bouvet Island"
212
-
213
- #: ../admin/manage-fields.php:268
214
- msgid "Brazil"
215
- msgstr "Brazil"
216
-
217
- #: ../admin/manage-fields.php:269
218
- msgid "British Indian Ocean Territory"
219
- msgstr "British Indian Ocean Territory"
220
-
221
- #: ../admin/manage-fields.php:270
222
- msgid "British Virgin Islands"
223
- msgstr "British Virgin Islands"
224
-
225
- #: ../admin/manage-fields.php:271
226
- msgid "Brunei"
227
- msgstr "Brunei"
228
-
229
- #: ../admin/manage-fields.php:272
230
- msgid "Bulgaria"
231
- msgstr "Bulgaria"
232
-
233
- #: ../admin/manage-fields.php:273
234
- msgid "Burkina Faso"
235
- msgstr "Burkina Faso"
236
-
237
- #: ../admin/manage-fields.php:274
238
- msgid "Burundi"
239
- msgstr "Burundi"
240
-
241
- #: ../admin/manage-fields.php:275
242
- msgid "Cambodia"
243
- msgstr "Cambodia"
244
-
245
- #: ../admin/manage-fields.php:276
246
- msgid "Cameroon"
247
- msgstr "Cameroon"
248
-
249
- #: ../admin/manage-fields.php:277
250
- msgid "Canada"
251
- msgstr "Canada"
252
-
253
- #: ../admin/manage-fields.php:278
254
- msgid "Cape Verde"
255
- msgstr "Cape Verde"
256
-
257
- #: ../admin/manage-fields.php:279
258
- msgid "Cayman Islands"
259
- msgstr "Cayman Islands"
260
-
261
- #: ../admin/manage-fields.php:280
262
- msgid "Central African Republic"
263
- msgstr "Central African Republic"
264
-
265
- #: ../admin/manage-fields.php:281
266
- msgid "Chad"
267
- msgstr "Chad"
268
-
269
- #: ../admin/manage-fields.php:282
270
- msgid "Chile"
271
- msgstr "Chile"
272
-
273
- #: ../admin/manage-fields.php:283
274
- msgid "China"
275
- msgstr "China"
276
-
277
- #: ../admin/manage-fields.php:284
278
- msgid "Christmas Island"
279
- msgstr "Christmas Island"
280
-
281
- #: ../admin/manage-fields.php:285
282
- msgid "Cocos Islands"
283
- msgstr "Cocos Islands"
284
-
285
- #: ../admin/manage-fields.php:286
286
- msgid "Colombia"
287
- msgstr "Colombia"
288
-
289
- #: ../admin/manage-fields.php:287
290
- msgid "Comoros"
291
- msgstr "Comoros"
292
-
293
- #: ../admin/manage-fields.php:288
294
- msgid "Cook Islands"
295
- msgstr "Cook Islands"
296
-
297
- #: ../admin/manage-fields.php:289
298
- msgid "Costa Rica"
299
- msgstr "Costa Rica"
300
-
301
- #: ../admin/manage-fields.php:290
302
- msgid "Croatia"
303
- msgstr "Croatia"
304
-
305
- #: ../admin/manage-fields.php:291
306
- msgid "Cuba"
307
- msgstr "Cuba"
308
-
309
- #: ../admin/manage-fields.php:292
310
- msgid "Curacao"
311
- msgstr "Curacao"
312
-
313
- #: ../admin/manage-fields.php:293
314
- msgid "Cyprus"
315
- msgstr "Cyprus"
316
-
317
- #: ../admin/manage-fields.php:294
318
- msgid "Czech Republic"
319
- msgstr "Czech Republic"
320
-
321
- #: ../admin/manage-fields.php:295
322
- msgid "Democratic Republic of the Congo"
323
- msgstr "Democratic Republic of the Congo"
324
-
325
- #: ../admin/manage-fields.php:296
326
- msgid "Denmark"
327
- msgstr "Denmark"
328
-
329
- #: ../admin/manage-fields.php:297
330
- msgid "Djibouti"
331
- msgstr "Djibouti"
332
-
333
- #: ../admin/manage-fields.php:298
334
- msgid "Dominica"
335
- msgstr "Dominica"
336
-
337
- #: ../admin/manage-fields.php:299
338
- msgid "Dominican Republic"
339
- msgstr "Dominican Republic"
340
-
341
- #: ../admin/manage-fields.php:300
342
- msgid "East Timor"
343
- msgstr "East Timor"
344
-
345
- #: ../admin/manage-fields.php:301
346
- msgid "Ecuador"
347
- msgstr "Ecuador"
348
-
349
- #: ../admin/manage-fields.php:302
350
- msgid "Egypt"
351
- msgstr "Egypt"
352
-
353
- #: ../admin/manage-fields.php:303
354
- msgid "El Salvador"
355
- msgstr "El Salvador"
356
-
357
- #: ../admin/manage-fields.php:304
358
- msgid "Equatorial Guinea"
359
- msgstr "Equatorial Guinea"
360
-
361
- #: ../admin/manage-fields.php:305
362
- msgid "Eritrea"
363
- msgstr "Eritrea"
364
-
365
- #: ../admin/manage-fields.php:306
366
- msgid "Estonia"
367
- msgstr "Estonia"
368
-
369
- #: ../admin/manage-fields.php:307
370
- msgid "Ethiopia"
371
- msgstr "Ethiopia"
372
-
373
- #: ../admin/manage-fields.php:308
374
- msgid "Falkland Islands"
375
- msgstr "Falkland Islands"
376
-
377
- #: ../admin/manage-fields.php:309
378
- msgid "Faroe Islands"
379
- msgstr "Faroe Islands"
380
-
381
- #: ../admin/manage-fields.php:310
382
- msgid "Fiji"
383
- msgstr "Fiji"
384
-
385
- #: ../admin/manage-fields.php:311
386
- msgid "Finland"
387
- msgstr "Finland"
388
-
389
- #: ../admin/manage-fields.php:312
390
- msgid "France"
391
- msgstr "France"
392
-
393
- #: ../admin/manage-fields.php:313
394
- msgid "French Guiana"
395
- msgstr "French Guiana"
396
-
397
- #: ../admin/manage-fields.php:314
398
- msgid "French Polynesia"
399
- msgstr "French Polynesia"
400
-
401
- #: ../admin/manage-fields.php:315
402
- msgid "French Southern Territories"
403
- msgstr "French Southern Territories"
404
-
405
- #: ../admin/manage-fields.php:316
406
- msgid "Gabon"
407
- msgstr "Gabon"
408
-
409
- #: ../admin/manage-fields.php:317
410
- msgid "Gambia"
411
- msgstr "Gambia"
412
-
413
- #: ../admin/manage-fields.php:318
414
- msgid "Georgia"
415
- msgstr "Georgia"
416
-
417
- #: ../admin/manage-fields.php:319
418
- msgid "Germany"
419
- msgstr "Germany"
420
-
421
- #: ../admin/manage-fields.php:320
422
- msgid "Ghana"
423
- msgstr "Ghana"
424
-
425
- #: ../admin/manage-fields.php:321
426
- msgid "Gibraltar"
427
- msgstr "Gibraltar"
428
-
429
- #: ../admin/manage-fields.php:322
430
- msgid "Greece"
431
- msgstr "Greece"
432
-
433
- #: ../admin/manage-fields.php:323
434
- msgid "Greenland"
435
- msgstr "Greenland"
436
-
437
- #: ../admin/manage-fields.php:324
438
- msgid "Grenada"
439
- msgstr "Grenada"
440
-
441
- #: ../admin/manage-fields.php:325
442
- msgid "Guadeloupe"
443
- msgstr "Guadeloupe"
444
-
445
- #: ../admin/manage-fields.php:326
446
- msgid "Guam"
447
- msgstr "Guam"
448
-
449
- #: ../admin/manage-fields.php:327
450
- msgid "Guatemala"
451
- msgstr "Guatemala"
452
-
453
- #: ../admin/manage-fields.php:328
454
- msgid "Guernsey"
455
- msgstr "Guernsey"
456
-
457
- #: ../admin/manage-fields.php:329
458
- msgid "Guinea"
459
- msgstr "Guinea"
460
-
461
- #: ../admin/manage-fields.php:330
462
- msgid "Guinea-Bissau"
463
- msgstr "Guinea-Bissau"
464
-
465
- #: ../admin/manage-fields.php:331
466
- msgid "Guyana"
467
- msgstr "Guyana"
468
-
469
- #: ../admin/manage-fields.php:332
470
- msgid "Haiti"
471
- msgstr "Haiti"
472
-
473
- #: ../admin/manage-fields.php:333
474
- msgid "Heard Island and McDonald Islands"
475
- msgstr "Heard Island and McDonald Islands"
476
-
477
- #: ../admin/manage-fields.php:334
478
- msgid "Honduras"
479
- msgstr "Honduras"
480
-
481
- #: ../admin/manage-fields.php:335
482
- msgid "Hong Kong"
483
- msgstr "Hong Kong"
484
-
485
- #: ../admin/manage-fields.php:336
486
- msgid "Hungary"
487
- msgstr "Hungary"
488
-
489
- #: ../admin/manage-fields.php:337
490
- msgid "Iceland"
491
- msgstr "Iceland"
492
-
493
- #: ../admin/manage-fields.php:338
494
- msgid "India"
495
- msgstr "India"
496
-
497
- #: ../admin/manage-fields.php:339
498
- msgid "Indonesia"
499
- msgstr "Indonesia"
500
-
501
- #: ../admin/manage-fields.php:340
502
- msgid "Iran"
503
- msgstr "Iran"
504
-
505
- #: ../admin/manage-fields.php:341
506
- msgid "Iraq"
507
- msgstr "Iraq"
508
-
509
- #: ../admin/manage-fields.php:342
510
- msgid "Ireland"
511
- msgstr "Ireland"
512
-
513
- #: ../admin/manage-fields.php:343
514
- msgid "Isle of Man"
515
- msgstr "Isle of Man"
516
-
517
- #: ../admin/manage-fields.php:344
518
- msgid "Israel"
519
- msgstr "Israel"
520
-
521
- #: ../admin/manage-fields.php:345
522
- msgid "Italy"
523
- msgstr "Italy"
524
-
525
- #: ../admin/manage-fields.php:346
526
- msgid "Ivory Coast"
527
- msgstr "Ivory Coast"
528
-
529
- #: ../admin/manage-fields.php:347
530
- msgid "Jamaica"
531
- msgstr "Jamaica"
532
-
533
- #: ../admin/manage-fields.php:348
534
- msgid "Japan"
535
- msgstr "Japan"
536
-
537
- #: ../admin/manage-fields.php:349
538
- msgid "Jersey"
539
- msgstr "Jersey"
540
-
541
- #: ../admin/manage-fields.php:350
542
- msgid "Jordan"
543
- msgstr "Jordan"
544
-
545
- #: ../admin/manage-fields.php:351
546
- msgid "Kazakhstan"
547
- msgstr "Kazakhstan"
548
-
549
- #: ../admin/manage-fields.php:352
550
- msgid "Kenya"
551
- msgstr "Kenya"
552
-
553
- #: ../admin/manage-fields.php:353
554
- msgid "Kiribati"
555
- msgstr "Kiribati"
556
-
557
- #: ../admin/manage-fields.php:354
558
- msgid "Kosovo"
559
- msgstr "Kosovo"
560
-
561
- #: ../admin/manage-fields.php:355
562
- msgid "Kuwait"
563
- msgstr "Kuwait"
564
-
565
- #: ../admin/manage-fields.php:356
566
- msgid "Kyrgyzstan"
567
- msgstr "Kyrgyzstan"
568
-
569
- #: ../admin/manage-fields.php:357
570
- msgid "Laos"
571
- msgstr "Laos"
572
-
573
- #: ../admin/manage-fields.php:358
574
- msgid "Latvia"
575
- msgstr "Latvia"
576
-
577
- #: ../admin/manage-fields.php:359
578
- msgid "Lebanon"
579
- msgstr "Lebanon"
580
-
581
- #: ../admin/manage-fields.php:360
582
- msgid "Lesotho"
583
- msgstr "Lesotho"
584
-
585
- #: ../admin/manage-fields.php:361
586
- msgid "Liberia"
587
- msgstr "Liberia"
588
-
589
- #: ../admin/manage-fields.php:362
590
- msgid "Libya"
591
- msgstr "Libya"
592
-
593
- #: ../admin/manage-fields.php:363
594
- msgid "Liechtenstein"
595
- msgstr "Liechtenstein"
596
-
597
- #: ../admin/manage-fields.php:364
598
- msgid "Lithuania"
599
- msgstr "Lithuania"
600
-
601
- #: ../admin/manage-fields.php:365
602
- msgid "Luxembourg"
603
- msgstr "Luxembourg"
604
-
605
- #: ../admin/manage-fields.php:366
606
- msgid "Macao"
607
- msgstr "Macao"
608
-
609
- #: ../admin/manage-fields.php:367
610
- msgid "Macedonia"
611
- msgstr "Macedonia"
612
-
613
- #: ../admin/manage-fields.php:368
614
- msgid "Madagascar"
615
- msgstr "Madagascar"
616
-
617
- #: ../admin/manage-fields.php:369
618
- msgid "Malawi"
619
- msgstr "Malawi"
620
-
621
- #: ../admin/manage-fields.php:370
622
- msgid "Malaysia"
623
- msgstr "Malaysia"
624
-
625
- #: ../admin/manage-fields.php:371
626
- msgid "Maldives"
627
- msgstr "Maldives"
628
-
629
- #: ../admin/manage-fields.php:372
630
- msgid "Mali"
631
- msgstr "Mali"
632
-
633
- #: ../admin/manage-fields.php:373
634
- msgid "Malta"
635
- msgstr "Malta"
636
-
637
- #: ../admin/manage-fields.php:374
638
- msgid "Marshall Islands"
639
- msgstr "Marshall Islands"
640
-
641
- #: ../admin/manage-fields.php:375
642
- msgid "Martinique"
643
- msgstr "Martinique"
644
-
645
- #: ../admin/manage-fields.php:376
646
- msgid "Mauritania"
647
- msgstr "Mauritania"
648
-
649
- #: ../admin/manage-fields.php:377
650
- msgid "Mauritius"
651
- msgstr "Mauritius"
652
-
653
- #: ../admin/manage-fields.php:378
654
- msgid "Mayotte"
655
- msgstr "Mayotte"
656
-
657
- #: ../admin/manage-fields.php:379
658
- msgid "Mexico"
659
- msgstr "Mexico"
660
-
661
- #: ../admin/manage-fields.php:380
662
- msgid "Micronesia"
663
- msgstr "Micronesia"
664
-
665
- #: ../admin/manage-fields.php:381
666
- msgid "Moldova"
667
- msgstr "Moldova"
668
-
669
- #: ../admin/manage-fields.php:382
670
- msgid "Monaco"
671
- msgstr "Monaco"
672
-
673
- #: ../admin/manage-fields.php:383
674
- msgid "Mongolia"
675
- msgstr "Mongolia"
676
-
677
- #: ../admin/manage-fields.php:384
678
- msgid "Montenegro"
679
- msgstr "Montenegro"
680
-
681
- #: ../admin/manage-fields.php:385
682
- msgid "Montserrat"
683
- msgstr "Montserrat"
684
-
685
- #: ../admin/manage-fields.php:386
686
- msgid "Morocco"
687
- msgstr "Morocco"
688
-
689
- #: ../admin/manage-fields.php:387
690
- msgid "Mozambique"
691
- msgstr "Mozambique"
692
-
693
- #: ../admin/manage-fields.php:388
694
- msgid "Myanmar"
695
- msgstr "Myanmar"
696
-
697
- #: ../admin/manage-fields.php:389
698
- msgid "Namibia"
699
- msgstr "Namibia"
700
-
701
- #: ../admin/manage-fields.php:390
702
- msgid "Nauru"
703
- msgstr "Nauru"
704
-
705
- #: ../admin/manage-fields.php:391
706
- msgid "Nepal"
707
- msgstr "Nepal"
708
-
709
- #: ../admin/manage-fields.php:392
710
- msgid "Netherlands"
711
- msgstr "Netherlands"
712
-
713
- #: ../admin/manage-fields.php:393
714
- msgid "New Caledonia"
715
- msgstr "New Caledonia"
716
-
717
- #: ../admin/manage-fields.php:394
718
- msgid "New Zealand"
719
- msgstr "New Zealand"
720
-
721
- #: ../admin/manage-fields.php:395
722
- msgid "Nicaragua"
723
- msgstr "Nicaragua"
724
-
725
- #: ../admin/manage-fields.php:396
726
- msgid "Niger"
727
- msgstr "Niger"
728
-
729
- #: ../admin/manage-fields.php:397
730
- msgid "Nigeria"
731
- msgstr "Nigeria"
732
-
733
- #: ../admin/manage-fields.php:398
734
- msgid "Niue"
735
- msgstr "Niue"
736
-
737
- #: ../admin/manage-fields.php:399
738
- msgid "Norfolk Island"
739
- msgstr "Norfolk Island"
740
-
741
- #: ../admin/manage-fields.php:400
742
- msgid "North Korea"
743
- msgstr "North Korea"
744
-
745
- #: ../admin/manage-fields.php:401
746
- msgid "Northern Mariana Islands"
747
- msgstr "Northern Mariana Islands"
748
-
749
- #: ../admin/manage-fields.php:402
750
- msgid "Norway"
751
- msgstr "Norway"
752
-
753
- #: ../admin/manage-fields.php:403
754
- msgid "Oman"
755
- msgstr "Oman"
756
-
757
- #: ../admin/manage-fields.php:404
758
- msgid "Pakistan"
759
- msgstr "Pakistan"
760
-
761
- #: ../admin/manage-fields.php:405
762
- msgid "Palau"
763
- msgstr "Palau"
764
-
765
- #: ../admin/manage-fields.php:406
766
- msgid "Palestinian Territory"
767
- msgstr "Palestinian Territory"
768
-
769
- #: ../admin/manage-fields.php:407
770
- msgid "Panama"
771
- msgstr "Panama"
772
-
773
- #: ../admin/manage-fields.php:408
774
- msgid "Papua New Guinea"
775
- msgstr "Papua New Guinea"
776
-
777
- #: ../admin/manage-fields.php:409
778
- msgid "Paraguay"
779
- msgstr "Paraguay"
780
-
781
- #: ../admin/manage-fields.php:410
782
- msgid "Peru"
783
- msgstr "Peru"
784
-
785
- #: ../admin/manage-fields.php:411
786
- msgid "Philippines"
787
- msgstr "Philippines"
788
-
789
- #: ../admin/manage-fields.php:412
790
- msgid "Pitcairn"
791
- msgstr "Pitcairn"
792
-
793
- #: ../admin/manage-fields.php:413
794
- msgid "Poland"
795
- msgstr "Poland"
796
-
797
- #: ../admin/manage-fields.php:414
798
- msgid "Portugal"
799
- msgstr "Portugal"
800
-
801
- #: ../admin/manage-fields.php:415
802
- msgid "Puerto Rico"
803
- msgstr "Puerto Rico"
804
-
805
- #: ../admin/manage-fields.php:416
806
- msgid "Qatar"
807
- msgstr "Qatar"
808
-
809
- #: ../admin/manage-fields.php:417
810
- msgid "Republic of the Congo"
811
- msgstr "Republic of the Congo"
812
-
813
- #: ../admin/manage-fields.php:418
814
- msgid "Reunion"
815
- msgstr "Reunion"
816
-
817
- #: ../admin/manage-fields.php:419
818
- msgid "Romania"
819
- msgstr "Romania"
820
-
821
- #: ../admin/manage-fields.php:420
822
- msgid "Russia"
823
- msgstr "Russia"
824
-
825
- #: ../admin/manage-fields.php:421
826
- msgid "Rwanda"
827
- msgstr "Rwanda"
828
-
829
- #: ../admin/manage-fields.php:422
830
- msgid "Saint Barthelemy"
831
- msgstr "Saint Barthelemy"
832
-
833
- #: ../admin/manage-fields.php:423
834
- msgid "Saint Helena"
835
- msgstr "Saint Helena"
836
-
837
- #: ../admin/manage-fields.php:424
838
- msgid "Saint Kitts and Nevis"
839
- msgstr "Saint Kitts and Nevis"
840
-
841
- #: ../admin/manage-fields.php:425
842
- msgid "Saint Lucia"
843
- msgstr "Saint Lucia"
844
-
845
- #: ../admin/manage-fields.php:426
846
- msgid "Saint Martin"
847
- msgstr "Saint Martin"
848
-
849
- #: ../admin/manage-fields.php:427
850
- msgid "Saint Pierre and Miquelon"
851
- msgstr "Saint Pierre and Miquelon"
852
-
853
- #: ../admin/manage-fields.php:428
854
- msgid "Saint Vincent and the Grenadines"
855
- msgstr "Saint Vincent and the Grenadines"
856
-
857
- #: ../admin/manage-fields.php:429
858
- msgid "Samoa"
859
- msgstr "Samoa"
860
-
861
- #: ../admin/manage-fields.php:430
862
- msgid "San Marino"
863
- msgstr "San Marino"
864
-
865
- #: ../admin/manage-fields.php:431
866
- msgid "Sao Tome and Principe"
867
- msgstr "Sao Tome and Principe"
868
-
869
- #: ../admin/manage-fields.php:432
870
- msgid "Saudi Arabia"
871
- msgstr "Saudi Arabia"
872
-
873
- #: ../admin/manage-fields.php:433
874
- msgid "Senegal"
875
- msgstr "Senegal"
876
-
877
- #: ../admin/manage-fields.php:434
878
- msgid "Serbia"
879
- msgstr "Serbia"
880
-
881
- #: ../admin/manage-fields.php:435
882
- msgid "Seychelles"
883
- msgstr "Seychelles"
884
-
885
- #: ../admin/manage-fields.php:436
886
- msgid "Sierra Leone"
887
- msgstr "Sierra Leone"
888
-
889
- #: ../admin/manage-fields.php:437
890
- msgid "Singapore"
891
- msgstr "Singapore"
892
-
893
- #: ../admin/manage-fields.php:438
894
- msgid "Sint Maarten"
895
- msgstr "Sint Maarten"
896
-
897
- #: ../admin/manage-fields.php:439
898
- msgid "Slovakia"
899
- msgstr "Slovakia"
900
-
901
- #: ../admin/manage-fields.php:440
902
- msgid "Slovenia"
903
- msgstr "Slovenia"
904
-
905
- #: ../admin/manage-fields.php:441
906
- msgid "Solomon Islands"
907
- msgstr "Solomon Islands"
908
-
909
- #: ../admin/manage-fields.php:442
910
- msgid "Somalia"
911
- msgstr "Somalia"
912
-
913
- #: ../admin/manage-fields.php:443
914
- msgid "South Africa"
915
- msgstr "South Africa"
916
-
917
- #: ../admin/manage-fields.php:444
918
- msgid "South Georgia and the South Sandwich Islands"
919
- msgstr "South Georgia and the South Sandwich Islands"
920
-
921
- #: ../admin/manage-fields.php:445
922
- msgid "South Korea"
923
- msgstr "South Korea"
924
-
925
- #: ../admin/manage-fields.php:446
926
- msgid "South Sudan"
927
- msgstr "South Sudan"
928
-
929
- #: ../admin/manage-fields.php:447
930
- msgid "Spain"
931
- msgstr "Spain"
932
-
933
- #: ../admin/manage-fields.php:448
934
- msgid "Sri Lanka"
935
- msgstr "Sri Lanka"
936
-
937
- #: ../admin/manage-fields.php:449
938
- msgid "Sudan"
939
- msgstr "Sudan"
940
-
941
- #: ../admin/manage-fields.php:450
942
- msgid "Suriname"
943
- msgstr "Suriname"
944
-
945
- #: ../admin/manage-fields.php:451
946
- msgid "Svalbard and Jan Mayen"
947
- msgstr "Svalbard and Jan Mayen"
948
-
949
- #: ../admin/manage-fields.php:452
950
- msgid "Swaziland"
951
- msgstr "Swaziland"
952
-
953
- #: ../admin/manage-fields.php:453
954
- msgid "Sweden"
955
- msgstr "Sweden"
956
-
957
- #: ../admin/manage-fields.php:454
958
- msgid "Switzerland"
959
- msgstr "Switzerland"
960
-
961
- #: ../admin/manage-fields.php:455
962
- msgid "Syria"
963
- msgstr "Syria"
964
-
965
- #: ../admin/manage-fields.php:456
966
- msgid "Taiwan"
967
- msgstr "Taiwan"
968
-
969
- #: ../admin/manage-fields.php:457
970
- msgid "Tajikistan"
971
- msgstr "Tajikistan"
972
-
973
- #: ../admin/manage-fields.php:458
974
- msgid "Tanzania"
975
- msgstr "Tanzania"
976
-
977
- #: ../admin/manage-fields.php:459
978
- msgid "Thailand"
979
- msgstr "Thailand"
980
-
981
- #: ../admin/manage-fields.php:460
982
- msgid "Togo"
983
- msgstr "Togo"
984
-
985
- #: ../admin/manage-fields.php:461
986
- msgid "Tokelau"
987
- msgstr "Tokelau"
988
-
989
- #: ../admin/manage-fields.php:462
990
- msgid "Tonga"
991
- msgstr "Tonga"
992
-
993
- #: ../admin/manage-fields.php:463
994
- msgid "Trinidad and Tobago"
995
- msgstr "Trinidad and Tobago"
996
-
997
- #: ../admin/manage-fields.php:464
998
- msgid "Tunisia"
999
- msgstr "Tunisia"
1000
-
1001
- #: ../admin/manage-fields.php:465
1002
- msgid "Turkey"
1003
- msgstr "Turkey"
1004
-
1005
- #: ../admin/manage-fields.php:466
1006
- msgid "Turkmenistan"
1007
- msgstr "Turkmenistan"
1008
-
1009
- #: ../admin/manage-fields.php:467
1010
- msgid "Turks and Caicos Islands"
1011
- msgstr "Turks and Caicos Islands"
1012
-
1013
- #: ../admin/manage-fields.php:468
1014
- msgid "Tuvalu"
1015
- msgstr "Tuvalu"
1016
-
1017
- #: ../admin/manage-fields.php:469
1018
- msgid "U.S. Virgin Islands"
1019
- msgstr "U.S. Virgin Islands"
1020
-
1021
- #: ../admin/manage-fields.php:470
1022
- msgid "Uganda"
1023
- msgstr "Uganda"
1024
-
1025
- #: ../admin/manage-fields.php:471
1026
- msgid "Ukraine"
1027
- msgstr "Ukraine"
1028
-
1029
- #: ../admin/manage-fields.php:472
1030
- msgid "United Arab Emirates"
1031
- msgstr "United Arab Emirates"
1032
-
1033
- #: ../admin/manage-fields.php:473
1034
- msgid "United Kingdom"
1035
- msgstr "United Kingdom"
1036
-
1037
- #: ../admin/manage-fields.php:474
1038
- msgid "United States"
1039
- msgstr "United States"
1040
-
1041
- #: ../admin/manage-fields.php:475
1042
- msgid "United States Minor Outlying Islands"
1043
- msgstr "United States Minor Outlying Islands"
1044
-
1045
- #: ../admin/manage-fields.php:476
1046
- msgid "Uruguay"
1047
- msgstr "Uruguay"
1048
-
1049
- #: ../admin/manage-fields.php:477
1050
- msgid "Uzbekistan"
1051
- msgstr "Uzbekistan"
1052
-
1053
- #: ../admin/manage-fields.php:478
1054
- msgid "Vanuatu"
1055
- msgstr "Vanuatu"
1056
-
1057
- #: ../admin/manage-fields.php:479
1058
- msgid "Vatican"
1059
- msgstr "Vatican"
1060
-
1061
- #: ../admin/manage-fields.php:480
1062
- msgid "Venezuela"
1063
- msgstr "Venezuela"
1064
-
1065
- #: ../admin/manage-fields.php:481
1066
- msgid "Vietnam"
1067
- msgstr "Vietnam"
1068
-
1069
- #: ../admin/manage-fields.php:482
1070
- msgid "Wallis and Futuna"
1071
- msgstr "Wallis and Futuna"
1072
-
1073
- #: ../admin/manage-fields.php:483
1074
- msgid "Western Sahara"
1075
- msgstr "Western Sahara"
1076
-
1077
- #: ../admin/manage-fields.php:484
1078
- msgid "Yemen"
1079
- msgstr "Yemen"
1080
-
1081
- #: ../admin/manage-fields.php:485
1082
- msgid "Zambia"
1083
- msgstr "Zambia"
1084
-
1085
- #: ../admin/manage-fields.php:486
1086
- msgid "Zimbabwe"
1087
- msgstr "Zimbabwe"
1088
-
1089
- #: ../admin/manage-fields.php:843
1090
- msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
1091
- msgstr ""
1092
-
1093
- #: ../assets/misc/plugin-compatibilities.php:241
1094
- msgid "Your account has to be confirmed by an administrator before you can log in."
1095
- msgstr ""
1096
-
1097
- #: ../features/admin-approval/admin-approval.php:203
1098
- msgid "Your account has been successfully created!"
1099
- msgstr ""
1100
-
1101
- #: ../features/functions.php:607
1102
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:374
1103
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:379
1104
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1105
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:458
1106
- msgid "Please enter a (valid) reCAPTCHA value"
1107
- msgstr ""
1108
-
1109
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1110
- msgid "Click the BACK button on your browser, and try again."
1111
- msgstr ""
1112
-
1113
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:78
1114
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:87
1115
- msgid "Sorry, you cannot upload this file type for this field."
1116
- msgstr ""
1117
-
1118
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:94
1119
- msgid "An error occurred, please try again later."
1120
- msgstr ""
1121
-
1122
- #: ../modules/user-listing/userlisting.php:253
1123
- msgid "More"
1124
- msgstr ""
1125
-
1126
- #: ../modules/user-listing/userlisting.php:338
1127
- msgid "You do not have permission to view this user list."
1128
- msgstr ""
1129
-
1130
- #: ../modules/user-listing/userlisting.php:351
1131
- msgid "You do not have the required user role to view this user list."
1132
- msgstr ""
1133
-
1134
- #: ../modules/user-listing/userlisting.php:1287
1135
- msgid "Ascending"
1136
- msgstr ""
1137
-
1138
- #: ../modules/user-listing/userlisting.php:1288
1139
- msgid "Descending"
1140
- msgstr ""
1141
-
1142
- #: ../admin/add-ons.php:144
1143
- msgid "Download Now"
1144
- msgstr "Descargar"
1145
-
1146
- #: ../admin/admin-functions.php:197
1147
- msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
1148
- msgstr ""
1149
-
1150
- #: ../admin/manage-fields.php:68
1151
- msgid "Choose one of the supported field types"
1152
- msgstr "Escoja uno de los campos disponibles"
1153
-
1154
- #: ../admin/manage-fields.php:70
1155
- msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
1156
- msgstr ""
1157
-
1158
- #: ../admin/manage-fields.php:107
1159
- msgid "Site Key"
1160
- msgstr "Sitio clave"
1161
-
1162
- #: ../admin/manage-fields.php:107
1163
- msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1164
- msgstr ""
1165
-
1166
- #: ../admin/manage-fields.php:108
1167
- msgid "Secret Key"
1168
- msgstr "Clave secreta"
1169
-
1170
- #: ../admin/manage-fields.php:108
1171
- msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1172
- msgstr ""
1173
-
1174
- #: ../admin/manage-fields.php:660
1175
- msgid "You must enter the site key\n"
1176
- msgstr "Debes ingresar la clave del sitio\n"
1177
-
1178
- #: ../admin/manage-fields.php:662
1179
- msgid "You must enter the secret key\n"
1180
- msgstr ""
1181
-
1182
- #: ../admin/add-ons.php:10 ../admin/add-ons.php:32
1183
- msgid "Add-Ons"
1184
- msgstr "Add-Ons"
1185
-
1186
- #: ../admin/add-ons.php:34 ../admin/add-ons.php:124
1187
- msgid "Activate"
1188
- msgstr "Activar"
1189
-
1190
- #: ../admin/add-ons.php:36
1191
- msgid "Downloading and installing..."
1192
- msgstr "Bajando e instalando..."
1193
-
1194
- #: ../admin/add-ons.php:37
1195
- msgid "Installation complete"
1196
- msgstr "Instalación completada"
1197
-
1198
- #: ../admin/add-ons.php:39
1199
- msgid "Add-On is Active"
1200
- msgstr "El Add-Ons está activado"
1201
-
1202
- #: ../admin/add-ons.php:40
1203
- msgid "Add-On has been activated"
1204
- msgstr "El Add-On ha sido activado"
1205
-
1206
- #: ../admin/add-ons.php:41
1207
- msgid "Retry Install"
1208
- msgstr "Reintentar Instalación"
1209
-
1210
- #: ../admin/add-ons.php:43 ../admin/add-ons.php:135
1211
- msgid "Add-On is <strong>active</strong>"
1212
- msgstr ""
1213
-
1214
- #: ../admin/add-ons.php:44 ../admin/add-ons.php:133
1215
- msgid "Add-On is <strong>inactive</strong>"
1216
- msgstr ""
1217
-
1218
- #: ../admin/add-ons.php:46 ../admin/add-ons.php:128
1219
- msgid "Deactivate"
1220
- msgstr ""
1221
-
1222
- #: ../admin/add-ons.php:47
1223
- msgid "Add-On has been deactivated."
1224
- msgstr ""
1225
-
1226
- #: ../admin/add-ons.php:59
1227
- msgid "Something went wrong, we could not connect to the server. Please try again later."
1228
- msgstr ""
1229
-
1230
- #: ../admin/add-ons.php:144 ../admin/add-ons.php:147
1231
- msgid "Buy Now"
1232
- msgstr ""
1233
-
1234
- #: ../admin/add-ons.php:147
1235
- msgid "Install Now"
1236
- msgstr ""
1237
-
1238
- #: ../admin/add-ons.php:153
1239
- msgid "Compatible with your version of Profile Builder."
1240
- msgstr ""
1241
-
1242
- #: ../admin/add-ons.php:162
1243
- msgid "Upgrade Profile Builder"
1244
- msgstr ""
1245
-
1246
- #: ../admin/add-ons.php:163
1247
- msgid "Not compatible with Profile Builder"
1248
- msgstr ""
1249
-
1250
- #: ../admin/add-ons.php:171
1251
- msgid "Not compatible with your version of Profile Builder."
1252
- msgstr ""
1253
-
1254
- #: ../admin/add-ons.php:172
1255
- msgid "Minimum required Profile Builder version:"
1256
- msgstr ""
1257
-
1258
- #: ../admin/add-ons.php:177
1259
- msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1260
- msgstr ""
1261
-
1262
- #: ../front-end/default-fields/email/email.php:48
1263
- msgid "You must enter a valid email address."
1264
- msgstr "Debe ingresar una dirección válida de email"
1265
-
1266
- #: ../front-end/default-fields/username/username.php:53
1267
- #: ../front-end/default-fields/username/username.php:60
1268
- msgid "This username is invalid because it uses illegal characters."
1269
- msgstr ""
1270
-
1271
- #: ../front-end/default-fields/username/username.php:53
1272
- #: ../front-end/default-fields/username/username.php:60
1273
- msgid "Please enter a valid username."
1274
- msgstr "Por favor ingrese un nombre de usuario válido"
1275
-
1276
- #: ../front-end/extra-fields/user-role/user-role.php:67
1277
- #: ../front-end/extra-fields/user-role/user-role.php:80
1278
- msgid "Only administrators can see this field on edit profile forms."
1279
- msgstr ""
1280
-
1281
- #: ../front-end/extra-fields/user-role/user-role.php:76
1282
- msgid "As an administrator you cannot change your role."
1283
- msgstr ""
1284
-
1285
- #: ../modules/email-customizer/admin-email-customizer.php:117
1286
- msgid ""
1287
- "\n"
1288
- "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
1289
- "<p>His/her new password is: {{password}}</p>\n"
1290
- msgstr ""
1291
-
1292
- #: ../modules/email-customizer/admin-email-customizer.php:141
1293
- msgid "Admin Notification for User Password Reset"
1294
- msgstr ""
1295
-
1296
- #: ../modules/email-customizer/email-customizer.php:42
1297
- msgid "Reset Key"
1298
- msgstr ""
1299
-
1300
- #: ../modules/email-customizer/email-customizer.php:43
1301
- msgid "Reset Url"
1302
- msgstr ""
1303
-
1304
- #: ../modules/email-customizer/email-customizer.php:44
1305
- msgid "Reset Link"
1306
- msgstr ""
1307
-
1308
- #: ../modules/email-customizer/user-email-customizer.php:204
1309
- msgid ""
1310
- "\n"
1311
- "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
1312
- "Username: {{username}}</p>\n"
1313
- "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
1314
- "<p>To reset your password, visit the following address:<br/>\n"
1315
- "{{{reset_link}}}</p>\n"
1316
- msgstr ""
1317
-
1318
- #: ../modules/email-customizer/user-email-customizer.php:218
1319
- msgid "[{{site_name}}] Password Reset"
1320
- msgstr ""
1321
-
1322
- #: ../modules/email-customizer/user-email-customizer.php:229
1323
- msgid "Password Reset Email"
1324
- msgstr ""
1325
-
1326
- #: ../modules/email-customizer/user-email-customizer.php:235
1327
- msgid ""
1328
- "\n"
1329
- "<p>You have successfully reset your password to: {{password}}</p>\n"
1330
- msgstr ""
1331
-
1332
- #: ../modules/email-customizer/user-email-customizer.php:245
1333
- msgid "[{{site_name}}] Password Reset Successfully"
1334
- msgstr ""
1335
-
1336
- #: ../modules/email-customizer/user-email-customizer.php:256
1337
- msgid "Password Reset Success Email"
1338
- msgstr ""
1339
-
1340
- #: ../modules/user-listing/userlisting.php:134
1341
- msgid "User Nicename"
1342
- msgstr ""
1343
-
1344
- #: ../modules/user-listing/userlisting.php:442
1345
- msgid "None"
1346
- msgstr ""
1347
-
1348
- #: ../admin/admin-functions.php:128
1349
- msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1350
- msgstr "<strong>ERROR</strong>: La contraseña tiene que tener un tamaño mínimo de %s caracteres"
1351
-
1352
- #: ../admin/admin-functions.php:145
1353
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
1354
- msgstr "<strong>ERROR</strong>: La contraseña tiene que tener una fortaleza mínima de %s"
1355
-
1356
- #: ../admin/general-settings.php:170
1357
- msgid "Username and Email"
1358
- msgstr "Usuario o Email"
1359
-
1360
- #: ../admin/general-settings.php:175
1361
- msgid "\"Username and Email\" - users can Log In with both Username and Email."
1362
- msgstr "\"Nombre de Usuario y Email\" - los usuarios pueden Autenticarse tanto con el Nombre de Usuario como con el Email."
1363
-
1364
- #: ../admin/general-settings.php:176
1365
- msgid "\"Username\" - users can Log In only with Username."
1366
- msgstr "\"Nombre de Usuario\" - los usuarios pueden Autenticarse con el Nombre de Usuario."
1367
-
1368
- #: ../admin/general-settings.php:177
1369
- msgid "\"Email\" - users can Log In only with Email."
1370
- msgstr "\"Email\" - los usuarios pueden Autenticarse con el Email."
1371
-
1372
- #: ../admin/manage-fields.php:100
1373
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
1374
- msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto:.jpg,.jpeg,.gif,.png (.*)"
1375
-
1376
- #: ../admin/manage-fields.php:101
1377
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
1378
- msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto todas las extensiones de archivos permitidas por WordPress (.*)"
1379
-
1380
- #: ../admin/manage-fields.php:111
1381
- msgid "User Roles"
1382
- msgstr "Roles de Usuario"
1383
-
1384
- #: ../admin/manage-fields.php:111
1385
- msgid "Select which user roles to show to the user ( drag and drop to re-order )"
1386
- msgstr "Seleccionar cuáles roles de usuario mostrar al usuario (arrastre y suelte para reorganizar)"
1387
-
1388
- #: ../admin/manage-fields.php:112
1389
- msgid "User Roles Order"
1390
- msgstr "Orden de Roles de Usuario"
1391
-
1392
- #: ../admin/manage-fields.php:112
1393
- msgid "Save the user role order from the user roles checkboxes"
1394
- msgstr "Salvar el orden de roles de usuario de las casillas de roles de usuario"
1395
-
1396
- #: ../admin/manage-fields.php:752
1397
- msgid "Please select at least one user role\n"
1398
- msgstr "Por favor seleccione al menos un rol de usuario\n"
1399
-
1400
- #: ../admin/register-version.php:22
1401
- msgid "Profile Builder Register"
1402
- msgstr "Registro de Profile Builder"
1403
-
1404
- #: ../admin/register-version.php:81
1405
- msgid "The serial number is about to expire soon!"
1406
- msgstr "¡El número de serie está a punto de expirar!"
1407
-
1408
- #: ../admin/register-version.php:81
1409
- msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
1410
- msgstr "Su número de serie está a punto de expirar, por favor %1$s Renueve Su Licencia%2$s."
1411
-
1412
- #: ../admin/register-version.php:83
1413
- msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
1414
- msgstr "Su número de serie expiró, por favor %1$s Renueve Su Licencia%2$s."
1415
-
1416
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
1417
- msgid "Add Entry"
1418
- msgstr "Adicionar Entrada"
1419
-
1420
- #: ../features/email-confirmation/class-email-confirmation.php:91
1421
- msgid "show"
1422
- msgstr "mostrar"
1423
-
1424
- #: ../features/functions.php:659
1425
- msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
1426
- msgstr "Para permitir a los usuarios registrarse en su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a %1$sAjustes de Red%2$s, y en Ajustes de Registros esté seguro de seleccionar “Las cuentas de usuario pueden ser registradas”. %3$sDescartar%4$s"
1427
-
1428
- #: ../front-end/class-formbuilder.php:509
1429
- msgid "User to edit:"
1430
- msgstr "Usuarios a editar:"
1431
-
1432
- #: ../front-end/default-fields/password/password.php:46
1433
- #: ../front-end/recover.php:245
1434
- msgid "The password must have the minimum length of %s characters"
1435
- msgstr "La contraseña tiene que tener un tamaño mínimo de %s caracteres"
1436
-
1437
- #: ../front-end/default-fields/password/password.php:50
1438
- #: ../front-end/recover.php:249
1439
- msgid "The password must have a minimum strength of %s"
1440
- msgstr "La contraseña tiene que tener una fortaleza mínima de %s"
1441
-
1442
- #: ../front-end/extra-fields/user-role/user-role.php:112
1443
- msgid "You cannot register this user role"
1444
- msgstr "Usted no puede registrar este rol de usuario"
1445
-
1446
- #: ../front-end/login.php:105
1447
- msgid "username or email"
1448
- msgstr "nombre de usuario o email"
1449
-
1450
- #: ../front-end/login.php:174
1451
- msgid "Username or Email"
1452
- msgstr "Usuario o Email"
1453
-
1454
- #: ../front-end/logout.php:15
1455
- msgid "You are currently logged in as %s. "
1456
- msgstr "Usted está autenticado actualmente como %s"
1457
-
1458
- #: ../front-end/logout.php:15
1459
- msgid "Log out &raquo;"
1460
- msgstr "Salir &raquo;"
1461
-
1462
- #: ../modules/email-customizer/email-customizer.php:31
1463
- msgid "User Role"
1464
- msgstr "Role del Usuario"
1465
-
1466
- #: ../modules/user-listing/userlisting.php:1207
1467
- msgid "View all extra shortcode parameters"
1468
- msgstr "Ver todos los parámetros de código corto adicionales"
1469
-
1470
- #: ../modules/user-listing/userlisting.php:1221
1471
- msgid "displays only the users that you specified the user_id for"
1472
- msgstr "muestra solamente los usuarios para los que usted ha especificado el user_id"
1473
-
1474
- #: ../modules/user-listing/userlisting.php:1227
1475
- msgid "displays all users except the ones you specified the user_id for"
1476
- msgstr "muestra todos los usuarios excepto aquellos para los que usted ha especificado el user_id"
1477
-
1478
- #: ../features/functions.php:526
1479
- msgid "Minimum length of %d characters"
1480
- msgstr "Mínimo de %d caracteres. "
1481
-
1482
- #: ../front-end/class-formbuilder.php:99 ../front-end/class-formbuilder.php:102
1483
- msgid "This message is only visible by administrators"
1484
- msgstr "Este mensaje está visible solamente por administradores"
1485
-
1486
- #: ../modules/user-listing/userlisting.php:364
1487
- msgid "User not found"
1488
- msgstr "Usuario no encontrado"
1489
-
1490
- #: ../modules/email-customizer/admin-email-customizer.php:38
1491
- #: ../modules/email-customizer/user-email-customizer.php:38
1492
- msgid "Valid tags {{reply_to}} and {{site_name}}"
1493
- msgstr "Etiquetas válidas {{reply_to}} y {{site_name}}"
1494
-
1495
- #: ../admin/admin-bar.php:48
1496
- msgid "Choose which user roles view the admin bar in the front-end of the website."
1497
- msgstr "Escoger qué roles de usuario ve el admin bar en la vista pública del sitio web."
1498
-
1499
- #: ../admin/manage-fields.php:105
1500
- 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"
1501
- msgstr "Entrar una lista de valores separada por coma<br/>Esto puede ser cualquier cosa, como está oculto al usuario, pero no debería contener caracteres especiales o apóstrofes"
1502
-
1503
- #: ../admin/manage-fields.php:689
1504
- msgid "The meta-name cannot be empty\n"
1505
- msgstr "El meta-nombre no puede ser vacío\n"
1506
-
1507
- #: ../admin/register-version.php:69
1508
- msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
1509
- msgstr "Ahora que ha adquirido una copia de %s, usted debería tomarse un tiempo y registrarlo con el número de serie que recibió"
1510
-
1511
- #: ../admin/register-version.php:243
1512
- 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>"
1513
- msgstr "<p>Su número de serie de <strong>Profile Builder</strong> es inválido o no se encuentra. <br/>Por favor %1$sregistre su copia%2$s para recibir acceso a actualizaciones automáticas y soporte. ¿Necesita una llave de licencia? %3$sCompre una ahora%4$s</p>"
1514
-
1515
- #: ../admin/register-version.php:246
1516
- 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>"
1517
- msgstr "<p>Su licencia de <strong>Profile Builder</strong> ha expirado.<br/>Por favor %1$sRenueve Su Licencia%2$s para continuar recibiendo acceso a descargas de producto, actualizaciones automáticas y soporte.%3$sRenueve ahora y obtenga 50&#37; % de descuento4$s %5$sDescartar%6$s</p>"
1518
-
1519
- #: ../admin/register-version.php:251
1520
- 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>"
1521
- msgstr "<p>Su licencia de <strong>Profile Builder</strong> está a punto de expirar el %5$s. <br/>Por favor %1$sRenueve Su Licencia%2$s para continuar recibiendo acceso a descargas de producto, actualizaciones automáticas y soporte.%3$sRenueve ahora y obtenga 50&#37; % de descuento4$s %5$sDescartar%6$s</p>"
1522
-
1523
- #: ../assets/lib/wck-api/fields/country select.php:14
1524
- #: ../assets/lib/wck-api/fields/cpt select.php:17
1525
- #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
1526
- #: select.php:15
1527
- msgid "...Choose"
1528
- msgstr "...Escoger"
1529
-
1530
- #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
1531
- msgid "1 item"
1532
- msgstr "1 elemento"
1533
-
1534
- #: ../features/functions.php:512
1535
- msgid "Very Weak"
1536
- msgstr "Muy Débil"
1537
-
1538
- #: ../features/functions.php:600
1539
- msgid "This field is required"
1540
- msgstr "Campo requerido"
1541
-
1542
- #: ../features/functions.php:627
1543
- msgid "Cancel"
1544
- msgstr "Cancelar"
1545
-
1546
- #: ../features/functions.php:663
1547
- 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"
1548
- msgstr "Para permitir a los usuarios registrarse para su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a la pestaña %1$sAjustes -> General%2$s, y en Membresía esté seguro de seleccionar “Cualquiera puede registrarse”. %3$sDescartar%4$s"
1549
-
1550
- #: ../front-end/login.php:96
1551
- msgid "Invalid username."
1552
- msgstr "Nombre de usuario inválido."
1553
-
1554
- #: ../front-end/login.php:101 ../front-end/login.php:105
1555
- msgid "username"
1556
- msgstr "nombre de usuario"
1557
-
1558
- #: ../front-end/login.php:101
1559
- msgid "email"
1560
- msgstr "email"
1561
-
1562
- #: ../front-end/login.php:208
1563
- msgid "Lost your password?"
1564
- msgstr "¿Perdió su contraseña?"
1565
-
1566
- #: ../index.php:34
1567
- msgid " is also activated. You need to deactivate it before activating this version of the plugin."
1568
- msgstr "está también activado. Necesita desactivarlo antes de activar está versión del plugin."
1569
-
1570
- #: ../modules/email-customizer/admin-email-customizer.php:54
1571
- #: ../modules/email-customizer/user-email-customizer.php:54
1572
- msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
1573
- msgstr "Tiene que ser una dirección de email válida o la etiqueta {{reply_to}} que tiene por defecto el email del administrador"
1574
-
1575
- #: ../features/email-confirmation/email-confirmation.php:554
1576
- #: ../features/email-confirmation/email-confirmation.php:557
1577
- #: ../modules/email-customizer/email-customizer.php:413
1578
- #: ../modules/email-customizer/email-customizer.php:420
1579
- #: ../modules/email-customizer/email-customizer.php:434
1580
- msgid "Your selected password at signup"
1581
- msgstr "Su contraseña seleccionada al inscribirse"
1582
-
1583
- #: ../modules/email-customizer/user-email-customizer.php:38
1584
- msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
1585
- msgstr "Estos ajustes también se replican en la página de ajustes de \"Personalizador de Email de Admin\" al salvar."
1586
-
1587
- #: ../modules/multiple-forms/edit-profile-forms.php:270
1588
- msgid "This form is empty."
1589
- msgstr "Esta forma está vacía."
1590
-
1591
- #: ../modules/multiple-forms/multiple-forms.php:416
1592
- msgid "Delete all items"
1593
- msgstr "Borrar todos los elementos"
1594
-
1595
- #: ../modules/multiple-forms/multiple-forms.php:416
1596
- msgid "Delete all"
1597
- msgstr "Borrar todo"
1598
-
1599
- #: ../modules/multiple-forms/register-forms.php:226
1600
- msgid "Choose..."
1601
- msgstr "Escoger..."
1602
-
1603
- #: ../modules/user-listing/userlisting.php:1298
1604
- msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
1605
- msgstr "Establecer el número de usuarios a mostrarse en cada parte paginada del all-userlisting"
1606
-
1607
- #: ../admin/admin-bar.php:10
1608
- msgid "Show/Hide the Admin Bar on the Front-End"
1609
- msgstr "Mostrar/Ocultar el Admin Bar en la Vista Pública"
1610
-
1611
- #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
1612
- msgid "Admin Bar Settings"
1613
- msgstr "Ajustes de Admin Bar"
1614
-
1615
- #: ../admin/admin-bar.php:57
1616
- msgid "User-Role"
1617
- msgstr "Usuario-Rol"
1618
-
1619
- #: ../admin/admin-bar.php:58
1620
- msgid "Visibility"
1621
- msgstr "Visibilidad"
1622
-
1623
- #: ../admin/admin-bar.php:73
1624
- msgid "Default"
1625
- msgstr "Valor Por Defecto"
1626
-
1627
- #: ../admin/admin-bar.php:74
1628
- msgid "Show"
1629
- msgstr "Mostrar"
1630
-
1631
- #: ../admin/admin-bar.php:75
1632
- msgid "Hide"
1633
- msgstr "Ocultar"
1634
-
1635
- #: ../admin/admin-bar.php:86 ../admin/general-settings.php:215
1636
- #: ../admin/register-version.php:95 ../features/functions.php:620
1637
- #: ../modules/custom-redirects/custom-redirects.php:136
1638
- #: ../modules/modules.php:142
1639
- msgid "Save Changes"
1640
- msgstr "Salvar Cambios"
1641
-
1642
- #: ../admin/admin-functions.php:34
1643
- 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 )"
1644
- msgstr "La Autenticación está establecida para realizarse usando el E-mail. ¡Este campo NO aparecerá en la parte pública! (usted puede cambiar estos ajustes en la pestaña \"%s\") "
1645
-
1646
- #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
1647
- #: ../admin/general-settings.php:38
1648
- msgid "General Settings"
1649
- msgstr "Ajustes Generales"
1650
-
1651
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:201
1652
- msgid "Very weak"
1653
- msgstr "Muy débil"
1654
-
1655
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:202
1656
- #: ../features/functions.php:512
1657
- msgid "Weak"
1658
- msgstr "Débil"
1659
-
1660
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:203
1661
- #: ../features/functions.php:512
1662
- msgid "Medium"
1663
- msgstr "Media"
1664
-
1665
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:204
1666
- #: ../features/functions.php:512
1667
- msgid "Strong"
1668
- msgstr "Fuerte"
1669
-
1670
- #: ../admin/admin-functions.php:184
1671
- msgid "Add Field"
1672
- msgstr "Adicionar Campo"
1673
-
1674
- #: ../admin/admin-functions.php:186
1675
- #: ../modules/class-mustache-templates/class-mustache-templates.php:374
1676
- msgid "Save Settings"
1677
- msgstr "Salvar Ajustes"
1678
-
1679
- #: ../admin/basic-info.php:10
1680
- msgid "Basic Information"
1681
- msgstr "Información Básica"
1682
-
1683
- #: ../admin/basic-info.php:29
1684
- msgid "Version %s"
1685
- msgstr "Versión %s"
1686
-
1687
- #: ../admin/basic-info.php:30
1688
- msgid "<strong>Profile Builder </strong>"
1689
- msgstr "<strong>Profile Builder </strong>"
1690
-
1691
- #: ../admin/basic-info.php:31
1692
- msgid "The best way to add front-end registration, edit profile and login forms."
1693
- msgstr "La mejor forma de adicionar el registro en la vista pública, editar el perfil y las formas de autenticación."
1694
-
1695
- #: ../admin/basic-info.php:33
1696
- msgid "For Modern User Interaction"
1697
- msgstr "Para la Interacción del Usuario Moderno"
1698
-
1699
- #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
1700
- msgid "Login"
1701
- msgstr "Autenticación"
1702
-
1703
- #: ../admin/basic-info.php:40
1704
- msgid "Registration"
1705
- msgstr "Registro"
1706
-
1707
- #: ../admin/basic-info.php:44
1708
- msgid "Edit Profile"
1709
- msgstr "Editar Perfil"
1710
-
1711
- #: ../admin/basic-info.php:51
1712
- msgid "Extra Features"
1713
- msgstr "Características extras."
1714
-
1715
- #: ../admin/basic-info.php:52
1716
- msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
1717
- msgstr "Características que le dan más control sobre sus usuarios, incrementando la seguridad y ayudándolo a evitar los registros spams de usuarios."
1718
-
1719
- #: ../admin/basic-info.php:53
1720
- msgid "Enable extra features"
1721
- msgstr "Habilitar características extras"
1722
-
1723
- #: ../admin/basic-info.php:57
1724
- msgid "Recover Password"
1725
- msgstr "Recuperar contraseña"
1726
-
1727
- #: ../admin/basic-info.php:61
1728
- msgid "Admin Approval (*)"
1729
- msgstr "Aprobación del Admin (*)"
1730
-
1731
- #: ../admin/basic-info.php:62
1732
- msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
1733
- msgstr "Usted decide quién es un usuario en su sitio web. Obtenga notificación via email o apruebe usuarios múltiples a la vez desde la Interfaz de Usuario de WordPress."
1734
-
1735
- #: ../admin/basic-info.php:65
1736
- msgid "Email Confirmation"
1737
- msgstr "Confirmación de Email"
1738
-
1739
- #: ../admin/basic-info.php:66
1740
- msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
1741
- msgstr "Esté seguro que los usuarios se autentican con emails genuinos. En el registro los usuarios recibirán una notificación para confirmar sus direcciones de email."
1742
-
1743
- #: ../admin/basic-info.php:69
1744
- msgid "Minimum Password Length and Strength Meter"
1745
- msgstr "Tamaño Mínimo de Contraseña y Medidor de Fortaleza"
1746
-
1747
- #: ../admin/basic-info.php:70
1748
- msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
1749
- msgstr "Elimine contraseñas débiles estableciendo un tamaño mínimo de contraseña y forzando una cierta fortaleza de contraseña."
1750
-
1751
- #: ../admin/basic-info.php:73
1752
- msgid "Login with Email or Username"
1753
- msgstr "Autenticación con Email o Nombre de Usuario"
1754
-
1755
- #: ../admin/basic-info.php:74
1756
- msgid "Allow users to log in with their email or username when accessing your site."
1757
- msgstr "Permite a usuarios autenticarse con su correo o nombre de usuario cuando se accede al sitio."
1758
-
1759
- #: ../admin/basic-info.php:87
1760
- msgid "Customize Your Forms The Way You Want (*)"
1761
- msgstr "Personalice Sus Formas De La Manera Que Quiera (*)"
1762
-
1763
- #: ../admin/basic-info.php:88
1764
- msgid "With Extra Profile Fields you can create the exact registration form your project needs."
1765
- msgstr "Con Campos Extras del Perfil usted puede crear la forma exacta de registro de sus necesidades del proyecto."
1766
-
1767
- #: ../admin/basic-info.php:90
1768
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
1769
- msgstr "Los Campos Extras del Perfil están disponibles en versiones de Hobbyist o PRO"
1770
-
1771
- #: ../admin/basic-info.php:92
1772
- msgid "Get started with extra fields"
1773
- msgstr "Comience con los campos extras"
1774
-
1775
- #: ../admin/basic-info.php:95
1776
- msgid "Avatar Upload"
1777
- msgstr "Subida de Avatar"
1778
-
1779
- #: ../admin/basic-info.php:96
1780
- msgid "Generic Uploads"
1781
- msgstr "Subidas Genéricas"
1782
-
1783
- #: ../admin/basic-info.php:97
1784
- msgid "Agree To Terms Checkbox"
1785
- msgstr "Casilla de Aceptar los Términos"
1786
-
1787
- #: ../admin/basic-info.php:98
1788
- msgid "Datepicker"
1789
- msgstr "Selector de Fecha"
1790
-
1791
- #: ../admin/basic-info.php:99
1792
- msgid "reCAPTCHA"
1793
- msgstr "reCAPTCHA"
1794
-
1795
- #: ../admin/basic-info.php:100
1796
- msgid "Country Select"
1797
- msgstr "Selector de País"
1798
-
1799
- #: ../admin/basic-info.php:101
1800
- msgid "Timezone Select"
1801
- msgstr "Selector de Zona Horaria"
1802
-
1803
- #: ../admin/basic-info.php:102
1804
- msgid "Input / Hidden Input"
1805
- msgstr "Input / Input Oculto"
1806
-
1807
- #: ../admin/basic-info.php:103
1808
- msgid "Checkbox"
1809
- msgstr "Casilla"
1810
-
1811
- #: ../admin/basic-info.php:104
1812
- msgid "Select"
1813
- msgstr "Selector"
1814
-
1815
- #: ../admin/basic-info.php:105
1816
- msgid "Radio Buttons"
1817
- msgstr "Botones Redondos"
1818
-
1819
- #: ../admin/basic-info.php:106
1820
- msgid "Textarea"
1821
- msgstr "Área de Texto"
1822
-
1823
- #: ../admin/basic-info.php:115
1824
- msgid "Powerful Modules (**)"
1825
- msgstr "Módulos Potentes (**)"
1826
-
1827
- #: ../admin/basic-info.php:116
1828
- msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
1829
- msgstr "Todo lo que necesite para gestionar sus usuarios está probablemente disponible utilizando el Pro Modules. "
1830
-
1831
- #: ../admin/basic-info.php:118
1832
- msgid "Enable your modules"
1833
- msgstr "Habilitar sus módulos"
1834
-
1835
- #: ../admin/basic-info.php:121
1836
- msgid "Find out more about PRO Modules"
1837
- msgstr "Descubra más acerca de PRO Modules"
1838
-
1839
- #: ../admin/basic-info.php:126 ../modules/modules.php:111
1840
- #: ../modules/user-listing/userlisting.php:11
1841
- #: ../modules/user-listing/userlisting.php:12
1842
- #: ../modules/user-listing/userlisting.php:17
1843
- #: ../modules/user-listing/userlisting.php:23
1844
- msgid "User Listing"
1845
- msgstr "Listado de Usuario"
1846
-
1847
- #: ../admin/basic-info.php:128
1848
- 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."
1849
- msgstr "Plantillas fácil de editar para listar sus usuarios del sitio web así como crear páginas de un usuario simple. Basado en código corto, ofrece muchas opciones para personalizar sus listados."
1850
-
1851
- #: ../admin/basic-info.php:134
1852
- msgid "Email Customizer"
1853
- msgstr "Personalizador de Email"
1854
-
1855
- #: ../admin/basic-info.php:135
1856
- msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
1857
- msgstr "Personalice todos los emails enviados a sus usuarios o administradores. En el registro, la confirmación de email y la aprobación/desaprobación de admin."
1858
-
1859
- #: ../admin/basic-info.php:138
1860
- #: ../modules/custom-redirects/custom-redirects.php:29
1861
- #: ../modules/modules.php:32 ../modules/modules.php:132
1862
- msgid "Custom Redirects"
1863
- msgstr "Redirecciones Personalizadas"
1864
-
1865
- #: ../admin/basic-info.php:139
1866
- 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."
1867
- msgstr "Mantenga sus usuarios fuera del panel de control de WordPRess, redirecciónelos a la vista pública luego de la autenticación o registro, todo está a unos clics."
1868
-
1869
- #: ../admin/basic-info.php:144 ../modules/modules.php:97
1870
- msgid "Multiple Registration Forms"
1871
- msgstr "Formas de Registro Múltiple"
1872
-
1873
- #: ../admin/basic-info.php:145
1874
- msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
1875
- msgstr "Establecer formas de registro múltiples con diferentes campos para ciertos roles de usuario. Capturar diferentes informaciones de diferentes tipos de usuarios."
1876
-
1877
- #: ../admin/basic-info.php:148 ../modules/modules.php:104
1878
- msgid "Multiple Edit-profile Forms"
1879
- msgstr "Formas de Edición de Múltiples Perfiles"
1880
-
1881
- #: ../admin/basic-info.php:149
1882
- msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
1883
- msgstr "Permite a diferentes roles de usuario editar sus informaciones específicas. Establezca las formas de edición de múltiples perfiles con diferentes campos para ciertos roles de usuario."
1884
-
1885
- #: ../admin/basic-info.php:161
1886
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
1887
- msgstr "* solamente disponible en las %1$sversiones Hobbyist y Pro%2$s."
1888
-
1889
- #: ../admin/basic-info.php:162
1890
- msgid "** only available in the %1$sPro version%2$s."
1891
- msgstr "* solamente disponible en la %1$sversión Pro%2$s."
1892
-
1893
- #: ../admin/general-settings.php:42
1894
- msgid "Load Profile Builder's own CSS file in the front-end:"
1895
- msgstr "El propio CSS de Load Profile Builder en la vista pública:"
1896
-
1897
- #: ../admin/general-settings.php:45 ../admin/general-settings.php:60
1898
- #: ../admin/general-settings.php:114
1899
- #: ../modules/multiple-forms/register-forms.php:225
1900
- #: ../modules/multiple-forms/register-forms.php:226
1901
- #: ../modules/user-listing/userlisting.php:1303
1902
- msgid "Yes"
1903
- msgstr "Si"
1904
-
1905
- #: ../admin/general-settings.php:47
1906
- msgid "You can find the default file here: %1$s"
1907
- msgstr "Usted puede encontrar el archivo por defecto aquí: %1$s"
1908
-
1909
- #: ../admin/general-settings.php:56
1910
- msgid "\"Email Confirmation\" Activated:"
1911
- msgstr "\"Confirmación de Email\" Activada:"
1912
-
1913
- #: ../admin/general-settings.php:61 ../admin/general-settings.php:115
1914
- #: ../modules/multiple-forms/register-forms.php:225
1915
- #: ../modules/multiple-forms/register-forms.php:226
1916
- msgid "No"
1917
- msgstr "No"
1918
-
1919
- #: ../admin/general-settings.php:64
1920
- 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."
1921
- msgstr "En instalaciones de un sitio simple esto funciona con formas de vista pública solamente. Recomendado para redireccionar registro de WP por defecto al Profile Builder que está utilizando el addon \"Redirecciones Personalizadas\"."
1922
-
1923
- #: ../admin/general-settings.php:65
1924
- msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
1925
- msgstr "La característica \"Confirmación de Email\" está activa (por defecto) en las instalaciones WPMU ."
1926
-
1927
- #: ../admin/general-settings.php:67
1928
- msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
1929
- msgstr "Usted puede encontrar una lista de direcciones de email no confirmadas %1$sUsers > All Users > Email Confirmation%2$s."
1930
-
1931
- #: ../admin/general-settings.php:79
1932
- msgid "\"Email Confirmation\" Landing Page:"
1933
- msgstr "Página de llegada de \"Confirmación de Email\":"
1934
-
1935
- #: ../admin/general-settings.php:84
1936
- msgid "Existing Pages"
1937
- msgstr "Páginas Existentes"
1938
-
1939
- #: ../admin/general-settings.php:99
1940
- 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."
1941
- msgstr "Especificar la página donde los usuarios serán redirigidos cuando se confirma la cuenta de email. Esta página puede ser diferente a la(s) página(s) de registro y puede ser cambiada en cualquier momento."
1942
-
1943
- #: ../admin/general-settings.php:110
1944
- msgid "\"Admin Approval\" Activated:"
1945
- msgstr "\"Aprobación del Admin\" Activada:"
1946
-
1947
- #: ../admin/general-settings.php:118
1948
- msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
1949
- msgstr "Usted puede encontrar una lista de usuario en %1$sUsers > All Users > Admin Approval%2$s."
1950
-
1951
- #: ../admin/general-settings.php:156
1952
- msgid "\"Admin Approval\" Feature:"
1953
- msgstr "Característica \"Aprobación del Admin\":"
1954
-
1955
- #: ../admin/general-settings.php:159
1956
- 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."
1957
- msgstr "Usted decide quien es un usuario en su sitio web. Obtenga notificaciones a través de email o apruebe múltiples usuarios a la vez desde la Interfaz de Usuario de WordPRess. Habilite Aprobación del Amin actualizando a las %1$sversiones Hobbyist o Pro%2$s."
1958
-
1959
- #: ../admin/general-settings.php:166
1960
- msgid "Allow Users to Log in With:"
1961
- msgstr "Permitir a los Usuaios Autenticarse Con:"
1962
-
1963
- #: ../admin/general-settings.php:171 ../admin/manage-fields.php:159
1964
- #: ../features/admin-approval/class-admin-approval.php:177
1965
- #: ../features/email-confirmation/class-email-confirmation.php:167
1966
- #: ../modules/email-customizer/email-customizer.php:28
1967
- #: ../modules/user-listing/userlisting.php:92
1968
- #: ../modules/user-listing/userlisting.php:248
1969
- #: ../modules/user-listing/userlisting.php:611
1970
- #: ../modules/user-listing/userlisting.php:1259
1971
- msgid "Username"
1972
- msgstr "Nombre de Usuario"
1973
-
1974
- #: ../admin/general-settings.php:172 ../front-end/login.php:170
1975
- #: ../modules/email-customizer/email-customizer.php:29
1976
- #: ../modules/user-listing/userlisting.php:617
1977
- #: ../modules/user-listing/userlisting.php:1260
1978
- msgid "Email"
1979
- msgstr "Email"
1980
-
1981
- #: ../admin/general-settings.php:184
1982
- msgid "Minimum Password Length:"
1983
- msgstr "Tamaño Mínimo de Contraseña:"
1984
-
1985
- #: ../admin/general-settings.php:189
1986
- msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
1987
- msgstr "Entre los caracteres mínimos que la contraseña debe tener. Deje en blanco para no límite mínimo."
1988
-
1989
- #: ../admin/general-settings.php:196
1990
- msgid "Minimum Password Strength:"
1991
- msgstr "Fortaleza Mínima de Contraseña:"
1992
-
1993
- #: ../admin/general-settings.php:200
1994
- msgid "Disabled"
1995
- msgstr "Deshabilitado"
1996
-
1997
- #: ../admin/manage-fields.php:12
1998
- msgid "Manage Fields"
1999
- msgstr "Gestionar Campos"
2000
-
2001
- #: ../admin/manage-fields.php:13
2002
- msgid "Manage Default and Extra Fields"
2003
- msgstr "Gestionar Campos Por Defecto y Adicionales"
2004
-
2005
- #: ../admin/manage-fields.php:94
2006
- msgid "Field Title"
2007
- msgstr "Título del Campo"
2008
-
2009
- #: ../admin/manage-fields.php:94
2010
- msgid "Title of the field"
2011
- msgstr "Título del Campo"
2012
-
2013
- #: ../admin/manage-fields.php:95
2014
- #: ../modules/multiple-forms/edit-profile-forms.php:241
2015
- #: ../modules/multiple-forms/register-forms.php:262
2016
- msgid "Field"
2017
- msgstr "Campo"
2018
-
2019
- #: ../admin/manage-fields.php:96
2020
- msgid "Meta-name"
2021
- msgstr "Meta-nombre"
2022
-
2023
- #: ../admin/manage-fields.php:96
2024
- 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"
2025
- msgstr "Utilice esto en conjunción con las funciones de WordPress para mostrar el valor de la página de su selección<br/> Auto-completado pero en algunos casos editable (en cuyo caso tiene que ser único)<br/> Cambiar esto puede tomar mucho tiempo en caso de una cantidad de usuarios muy grande"
2026
-
2027
- #: ../admin/manage-fields.php:97
2028
- #: ../modules/multiple-forms/edit-profile-forms.php:242
2029
- #: ../modules/multiple-forms/register-forms.php:263
2030
- msgid "ID"
2031
- msgstr "ID"
2032
-
2033
- #: ../admin/manage-fields.php:97
2034
- #: ../modules/multiple-forms/edit-profile-forms.php:242
2035
- #: ../modules/multiple-forms/register-forms.php:263
2036
- 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"
2037
- msgstr "Un ID único y auto-generado para este campo particular<br/> Usted puede usar esto en conjunción con filtros para apuntar a este elemento si se necesita<br/>No puede ser editado"
2038
-
2039
- #: ../admin/manage-fields.php:98
2040
- msgid "Description"
2041
- msgstr "Descripción"
2042
-
2043
- #: ../admin/manage-fields.php:98
2044
- msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
2045
- msgstr "Entre una descripción (detallada) de la opción para que los usuarios finales lean<br/>Opcional"
2046
-
2047
- #: ../admin/manage-fields.php:99
2048
- msgid "Row Count"
2049
- msgstr "Cantidad de Filas"
2050
-
2051
- #: ../admin/manage-fields.php:99
2052
- msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
2053
- msgstr "Especificar el número de filas para un campo 'Textarea'<br/>"
2054
-
2055
- #: ../admin/manage-fields.php:100
2056
- msgid "Allowed Image Extensions"
2057
- msgstr "Extensiones de Imagen Permitidas"
2058
-
2059
- #: ../admin/manage-fields.php:101
2060
- msgid "Allowed Upload Extensions"
2061
- msgstr "Extensiones de Subida Permitidas"
2062
-
2063
- #: ../admin/manage-fields.php:102
2064
- msgid "Avatar Size"
2065
- msgstr "Tamaño del Avatar"
2066
-
2067
- #: ../admin/manage-fields.php:102
2068
- msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
2069
- msgstr "Entrar un valor (entre 20 y 200) para el tamaño del 'Avatar'<br/>Si no se especifica, deja por defecto 100"
2070
-
2071
- #: ../admin/manage-fields.php:103
2072
- msgid "Date-format"
2073
- msgstr "Formato de fecha"
2074
-
2075
- #: ../admin/manage-fields.php:103
2076
- 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"
2077
- msgstr "Especificar el formato de la fecha cuando se usa el Datepicker<br/>Opciones válidas:mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Si no se especifica, deja por defecto mm/dd/yy"
2078
-
2079
- #: ../admin/manage-fields.php:104
2080
- msgid "Terms of Agreement"
2081
- msgstr "Términos del Acuerdo"
2082
-
2083
- #: ../admin/manage-fields.php:104
2084
- 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;"
2085
- msgstr "Entrar una descripción detallada de los términos del acuerdo para que el usuario lea.<br/> Los enlaces pueden ser insertados usando sintaxis HTML estándar:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
2086
-
2087
- #: ../admin/manage-fields.php:105
2088
- msgid "Options"
2089
- msgstr "Opciones"
2090
-
2091
- #: ../admin/manage-fields.php:106
2092
- msgid "Labels"
2093
- msgstr "Etiquetas"
2094
-
2095
- #: ../admin/manage-fields.php:106
2096
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
2097
- msgstr "Entrar una lista separada por coma de etiquetas<br/>Visible para los usuarios"
2098
-
2099
- #: ../admin/manage-fields.php:113
2100
- msgid "Default Value"
2101
- msgstr "Valor Por Defecto"
2102
-
2103
- #: ../admin/manage-fields.php:113
2104
- msgid "Default value of the field"
2105
- msgstr "Valor por defecto del campo"
2106
-
2107
- #: ../admin/manage-fields.php:114 ../admin/manage-fields.php:116
2108
- #: ../admin/manage-fields.php:117
2109
- msgid "Default Option"
2110
- msgstr "Opción Por Defecto"
2111
-
2112
- #: ../admin/manage-fields.php:114
2113
- msgid "Specify the option which should be selected by default"
2114
- msgstr "Especificar la opción que debería ser seleccionada por defecto"
2115
-
2116
- #: ../admin/manage-fields.php:115
2117
- msgid "Default Option(s)"
2118
- msgstr "Opción(es) Por Defecto"
2119
-
2120
- #: ../admin/manage-fields.php:115
2121
- msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
2122
- msgstr "Especificar la opción que debería ser seleccionada por defecto<br/>Si hay valores múltiples, separarlos con una ',' (coma)"
2123
-
2124
- #: ../admin/manage-fields.php:118
2125
- msgid "Default Content"
2126
- msgstr "Contenido Por Defecto"
2127
-
2128
- #: ../admin/manage-fields.php:118
2129
- msgid "Default value of the textarea"
2130
- msgstr "Valor por defecto del textarea"
2131
-
2132
- #: ../admin/manage-fields.php:119
2133
- msgid "Required"
2134
- msgstr "Requerido"
2135
-
2136
- #: ../admin/manage-fields.php:119
2137
- msgid "Whether the field is required or not"
2138
- msgstr "Si el campo es requerido o no"
2139
-
2140
- #: ../admin/manage-fields.php:120
2141
- msgid "Overwrite Existing"
2142
- msgstr "Sobrescribir Existente"
2143
-
2144
- #: ../admin/manage-fields.php:120
2145
- 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"
2146
- msgstr "Seleccionar 'Sí' adicionará el campo a la lista, pero sobrescribirá cualquier otro campo en la base de datos que tiene el mismo meta-nombre<br/>Usar esto bajo su propio riesgo "
2147
-
2148
- #: ../admin/manage-fields.php:126
2149
- msgid "Field Properties"
2150
- msgstr "Propiedades del campo"
2151
-
2152
- #: ../admin/manage-fields.php:139
2153
- msgid "Registration & Edit Profile"
2154
- msgstr "Registro y Edición del Perfil"
2155
-
2156
- #: ../admin/manage-fields.php:158
2157
- msgid "Name"
2158
- msgstr "Nombre"
2159
-
2160
- #: ../admin/manage-fields.php:159
2161
- msgid "Usernames cannot be changed."
2162
- msgstr "Los nombres de usuario no pueden ser cambiados."
2163
-
2164
- #: ../admin/manage-fields.php:160
2165
- msgid "First Name"
2166
- msgstr "Primer Nombre"
2167
-
2168
- #: ../admin/manage-fields.php:161
2169
- msgid "Last Name"
2170
- msgstr "Apellidos"
2171
-
2172
- #: ../admin/manage-fields.php:162 ../modules/user-listing/userlisting.php:650
2173
- msgid "Nickname"
2174
- msgstr "Apodo"
2175
-
2176
- #: ../admin/manage-fields.php:163
2177
- msgid "Display name publicly as"
2178
- msgstr "Mostrar el nombre públicamente como"
2179
-
2180
- #: ../admin/manage-fields.php:164
2181
- msgid "Contact Info"
2182
- msgstr "Información de Contacto"
2183
-
2184
- #: ../admin/manage-fields.php:165
2185
- #: ../features/admin-approval/class-admin-approval.php:180
2186
- #: ../features/email-confirmation/class-email-confirmation.php:168
2187
- #: ../modules/user-listing/userlisting.php:98
2188
- msgid "E-mail"
2189
- msgstr "E-mail"
2190
-
2191
- #: ../admin/manage-fields.php:166
2192
- #: ../modules/email-customizer/email-customizer.php:32
2193
- #: ../modules/user-listing/userlisting.php:101
2194
- #: ../modules/user-listing/userlisting.php:632
2195
- #: ../modules/user-listing/userlisting.php:1261
2196
- msgid "Website"
2197
- msgstr "Sitio Web"
2198
-
2199
- #: ../admin/manage-fields.php:170
2200
- msgid "AIM"
2201
- msgstr "AIM"
2202
-
2203
- #: ../admin/manage-fields.php:171
2204
- msgid "Yahoo IM"
2205
- msgstr "Yahoo IM"
2206
-
2207
- #: ../admin/manage-fields.php:172
2208
- msgid "Jabber / Google Talk"
2209
- msgstr "Jabber / Google Talk"
2210
-
2211
- #: ../admin/manage-fields.php:175
2212
- msgid "About Yourself"
2213
- msgstr "Acerca de Usted"
2214
-
2215
- #: ../admin/manage-fields.php:176 ../modules/user-listing/userlisting.php:104
2216
- #: ../modules/user-listing/userlisting.php:635
2217
- #: ../modules/user-listing/userlisting.php:1262
2218
- msgid "Biographical Info"
2219
- msgstr "Información Biográfica"
2220
-
2221
- #: ../admin/manage-fields.php:176
2222
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2223
- msgstr "Compartir una pequeña información biográfica para llenar su perfil. Esto puede mostrarse públicamente. "
2224
-
2225
- #: ../admin/manage-fields.php:177 ../front-end/recover.php:75
2226
- #: ../modules/email-customizer/email-customizer.php:30
2227
- msgid "Password"
2228
- msgstr "Contraseña"
2229
-
2230
- #: ../admin/manage-fields.php:177
2231
- msgid "Type your password."
2232
- msgstr "Escriba su contraseña."
2233
-
2234
- #: ../admin/manage-fields.php:178 ../front-end/recover.php:80
2235
- msgid "Repeat Password"
2236
- msgstr "Repetir contraseña"
2237
-
2238
- #: ../admin/manage-fields.php:178
2239
- msgid "Type your password again. "
2240
- msgstr "Escriba su contraseña nuevamente."
2241
-
2242
- #: ../admin/manage-fields.php:617 ../admin/manage-fields.php:761
2243
- msgid "You must select a field\n"
2244
- msgstr "Tiene que seleccionar un campo\n"
2245
-
2246
- #: ../admin/manage-fields.php:627
2247
- msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
2248
- msgstr "Por favor escoja un tipo de campo diferente dado que este solo existe en su forma (debe ser único)\n"
2249
-
2250
- #: ../admin/manage-fields.php:638
2251
- msgid "The entered avatar size is not between 20 and 200\n"
2252
- msgstr "El tamaño del avatar entrado no está entre 20 y 200\n"
2253
-
2254
- #: ../admin/manage-fields.php:641
2255
- msgid "The entered avatar size is not numerical\n"
2256
- msgstr "El tamaño del avatar entrado no es numérico\n"
2257
-
2258
- #: ../admin/manage-fields.php:649
2259
- msgid "The entered row number is not numerical\n"
2260
- msgstr "El número de la fila entrado no es numérico\n"
2261
-
2262
- #: ../admin/manage-fields.php:652
2263
- msgid "You must enter a value for the row number\n"
2264
- msgstr "Usted tiene que entrar un valor para el número de la fila\n"
2265
-
2266
- #: ../admin/manage-fields.php:670
2267
- msgid "The entered value for the Datepicker is not a valid date-format\n"
2268
- msgstr "El valor entrado para el Datepicker no es un formato de fecha válido\n"
2269
-
2270
- #: ../admin/manage-fields.php:673
2271
- msgid "You must enter a value for the date-format\n"
2272
- msgstr "Usted tiene que entrar un valor para el formato de fecha\n"
2273
-
2274
- #: ../admin/manage-fields.php:701 ../admin/manage-fields.php:709
2275
- #: ../admin/manage-fields.php:719
2276
- msgid "That meta-name is already in use\n"
2277
- msgstr "Ese meta nombre ya está en uso\n"
2278
-
2279
- #: ../admin/manage-fields.php:741
2280
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
2281
- msgstr "La(s) siguiente(s) opción(es) no coincide(n) con aquellas en la lista de opciones:%s\n"
2282
-
2283
- #: ../admin/manage-fields.php:745
2284
- msgid "The following option did not coincide with the ones in the options list: %s\n"
2285
- msgstr "La siguiente opción no coincidió con aquellas de la lista de opciones: %s\n"
2286
-
2287
- #: ../admin/manage-fields.php:768
2288
- msgid "That field is already added in this form\n"
2289
- msgstr "Ese campo ya está añadido en esta forma\n"
2290
-
2291
- #: ../admin/manage-fields.php:817
2292
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
2293
- msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Nombre</pre><pre class=\"wppb-mb-head-required\">Requerido</pre>"
2294
-
2295
- #: ../admin/manage-fields.php:817
2296
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2297
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:529
2298
- #: ../features/admin-approval/class-admin-approval.php:119
2299
- #: ../features/functions.php:641 ../features/functions.php:648
2300
- #: ../modules/multiple-forms/multiple-forms.php:416
2301
- msgid "Edit"
2302
- msgstr "Editar"
2303
-
2304
- #: ../admin/manage-fields.php:817
2305
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2306
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:530
2307
- #: ../features/admin-approval/class-admin-approval.php:124
2308
- #: ../features/admin-approval/class-admin-approval.php:235
2309
- #: ../features/email-confirmation/class-email-confirmation.php:120
2310
- #: ../features/email-confirmation/class-email-confirmation.php:217
2311
- #: ../features/functions.php:634 ../features/functions.php:648
2312
- msgid "Delete"
2313
- msgstr "Editar"
2314
-
2315
- #: ../admin/manage-fields.php:832
2316
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
2317
- msgstr "Usar estos códigos cortos en las páginas en las que quiere que las formas se muestren:"
2318
-
2319
- #: ../admin/manage-fields.php:841
2320
- 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."
2321
- msgstr "Si está interesado en mostrar diferentes campos en las formas de edición del perfil y el registro, por favor use El Addon Multiple Registration & Edit Profile Forms."
2322
-
2323
- #: ../admin/register-version.php:14
2324
- msgid "Register Your Version"
2325
- msgstr "Si está interesado en mostrar diferentes campos en las formas de edición del perfil y el registro, por favor use El Addon Multiple Registration & Edit Profile Forms."
2326
-
2327
- #: ../admin/register-version.php:14
2328
- msgid "Register Version"
2329
- msgstr "Registre la Versión"
2330
-
2331
- #: ../admin/register-version.php:70
2332
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
2333
- msgstr "Si usted registra esta versión de Profile Builder, recibirá información referente a actualizaciones, parches, y soporte técnico."
2334
-
2335
- #: ../admin/register-version.php:72
2336
- msgid " Serial Number:"
2337
- msgstr "Número de Serie:"
2338
-
2339
- #: ../admin/register-version.php:77
2340
- msgid "The serial number was successfully validated!"
2341
- msgstr "¡El número de serie fue validado satisfactoriamente!"
2342
-
2343
- #: ../admin/register-version.php:79
2344
- msgid "The serial number entered couldn't be validated!"
2345
- msgstr "¡El número de serie está a punto de expirar!"
2346
-
2347
- #: ../admin/register-version.php:83
2348
- msgid "The serial number couldn't be validated because it expired!"
2349
- msgstr "¡El número de serie no ha podido ser validado porque expiró!"
2350
-
2351
- #: ../admin/register-version.php:85
2352
- 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!"
2353
- msgstr "El número de serie no ha podido ser validado porque el proceso sobrepasó el tiempo de espera. Esto es posible debido a que el server está caido.¡ Por favor intente luego! "
2354
-
2355
- #: ../admin/register-version.php:87
2356
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2357
- msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2358
-
2359
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2360
- #: ../features/functions.php:648
2361
- msgid "Content"
2362
- msgstr "Contenido"
2363
-
2364
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:529
2365
- msgid "Edit this item"
2366
- msgstr "Editar este elemento"
2367
-
2368
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:530
2369
- msgid "Delete this item"
2370
- msgstr "Borrar este elemento"
2371
-
2372
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:676
2373
- msgid "Please enter a value for the required field "
2374
- msgstr "Por favor entre un valor para el campo requerido"
2375
-
2376
- #: ../front-end/extra-fields/upload/upload.php:122
2377
- msgid "Select File"
2378
- msgstr "Seleccionar archivo"
2379
-
2380
- #: ../assets/lib/wck-api/fields/upload.php:43
2381
- #: ../front-end/extra-fields/upload/upload.php:112
2382
- msgid "Remove"
2383
- msgstr "Eliminar"
2384
-
2385
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1155
2386
- msgid "Syncronize WCK"
2387
- msgstr "Sincronizar WCK"
2388
-
2389
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1167
2390
- msgid "Syncronize WCK Translation"
2391
- msgstr "Sincronizar WCK Translation"
2392
-
2393
- #: ../assets/lib/wck-api/fields/nested repeater.php:8
2394
- msgid "You can add the information for the %s after you add a entry"
2395
- msgstr "Usted puede adicionar la información para el %s luego de que adicione una entrada"
2396
-
2397
- #: ../assets/lib/wck-api/fields/upload.php:75
2398
- #: ../front-end/extra-fields/upload/upload.php:128
2399
- msgid "Upload "
2400
- msgstr "Subir"
2401
-
2402
- #: ../features/class-list-table.php:184
2403
- msgid "No items found."
2404
- msgstr "No se encontraron elementos."
2405
-
2406
- #: ../features/class-list-table.php:308
2407
- msgid "Bulk Actions"
2408
- msgstr "Acciones en Bloque"
2409
-
2410
- #: ../features/class-list-table.php:318
2411
- msgid "Apply"
2412
- msgstr "Aplicar"
2413
-
2414
- #: ../features/class-list-table.php:402
2415
- msgid "Show all dates"
2416
- msgstr "Mostrar todas las fechas"
2417
-
2418
- #: ../features/class-list-table.php:415
2419
- msgid "%1$s %2$d"
2420
- msgstr "%1$s %2$d"
2421
-
2422
- #: ../features/class-list-table.php:431
2423
- msgid "List View"
2424
- msgstr "Vista de Lista"
2425
-
2426
- #: ../features/class-list-table.php:432
2427
- msgid "Excerpt View"
2428
- msgstr "Vista de Extracto"
2429
-
2430
- #: ../features/class-list-table.php:458
2431
- msgid "%s pending"
2432
- msgstr "%s pendiente"
2433
-
2434
- #: ../features/class-list-table.php:566
2435
- msgid "%1$s of %2$s"
2436
- msgstr "%1$s de %2$s"
2437
-
2438
- #: ../features/class-list-table.php:713
2439
- msgid "Select All"
2440
- msgstr "Seleccionar Todo"
2441
-
2442
- #: ../features/functions.php:281
2443
- msgid "The user-validation has failed - the avatar was not deleted!"
2444
- msgstr "La validación del usuario ha fallado - ¡el avatar no fue eliminado!"
2445
-
2446
- #: ../features/functions.php:292
2447
- msgid "The user-validation has failed - the attachment was not deleted!"
2448
- msgstr "La validación del usuario ha fallado - ¡el adjunto no fue eliminado!"
2449
-
2450
- #: ../features/functions.php:487
2451
- msgid "Strength indicator"
2452
- msgstr "Indicador de Fortaleza"
2453
-
2454
- #: ../features/admin-approval/admin-approval.php:7
2455
- #: ../features/admin-approval/class-admin-approval.php:458
2456
- msgid "Admin Approval"
2457
- msgstr "Aprobación del Admin"
2458
-
2459
- #: ../features/admin-approval/admin-approval.php:21
2460
- #: ../features/email-confirmation/email-confirmation.php:58
2461
- msgid "Do you want to"
2462
- msgstr "¿Usted desea"
2463
-
2464
- #: ../features/admin-approval/admin-approval.php:44
2465
- msgid "Your session has expired! Please refresh the page and try again"
2466
- msgstr "¡Su sesión ha expirado! Por favor refresque la página y trate nuevamente"
2467
-
2468
- #: ../features/admin-approval/admin-approval.php:55
2469
- msgid "User successfully approved!"
2470
- msgstr "¡Usuario aprobado satisfactoriamente!"
2471
-
2472
- #: ../features/admin-approval/admin-approval.php:63
2473
- msgid "User successfully unapproved!"
2474
- msgstr "¡Usuario desaprobado satisfactoriamente!"
2475
-
2476
- #: ../features/admin-approval/admin-approval.php:69
2477
- msgid "User successfully deleted!"
2478
- msgstr "¡Usuario eliminado satisfactoriamente!"
2479
-
2480
- #: ../features/admin-approval/admin-approval.php:74
2481
- #: ../features/admin-approval/admin-approval.php:118
2482
- #: ../features/email-confirmation/email-confirmation.php:135
2483
- msgid "You either don't have permission for that action or there was an error!"
2484
- msgstr "¡Usted o no tiene permiso para esa acción o hubo un error"
2485
-
2486
- #: ../features/admin-approval/admin-approval.php:85
2487
- msgid "Your session has expired! Please refresh the page and try again."
2488
- msgstr "¡Su sesión ha expirado! Por favor refresque la página e intente nuevamente."
2489
-
2490
- #: ../features/admin-approval/admin-approval.php:97
2491
- msgid "Users successfully approved!"
2492
- msgstr "¡Usuario aprobado satisfactoriamente!"
2493
-
2494
- #: ../features/admin-approval/admin-approval.php:106
2495
- msgid "Users successfully unapproved!"
2496
- msgstr "¡Usuario desaprobado satisfactoriamente!"
2497
-
2498
- #: ../features/admin-approval/admin-approval.php:114
2499
- msgid "Users successfully deleted!"
2500
- msgstr "¡Usuario eliminado satisfactoriamente!"
2501
-
2502
- #: ../features/admin-approval/admin-approval.php:134
2503
- msgid "Your account on %1$s has been approved!"
2504
- msgstr "¡Su cuenta el %1$s ha sido aprobada!"
2505
-
2506
- #: ../features/admin-approval/admin-approval.php:135
2507
- #: ../features/admin-approval/admin-approval.php:138
2508
- msgid "approved"
2509
- msgstr "aprobada"
2510
-
2511
- #: ../features/admin-approval/admin-approval.php:137
2512
- msgid "An administrator has just approved your account on %1$s (%2$s)."
2513
- msgstr "Un administrador ha aprobado su cuenta el %1$s (%2$s)."
2514
-
2515
- #: ../features/admin-approval/admin-approval.php:142
2516
- msgid "Your account on %1$s has been unapproved!"
2517
- msgstr "¡Su cuenta ha sido desaprobada el %1$s!"
2518
-
2519
- #: ../features/admin-approval/admin-approval.php:143
2520
- #: ../features/admin-approval/admin-approval.php:146
2521
- msgid "unapproved"
2522
- msgstr "desaprobado"
2523
-
2524
- #: ../features/admin-approval/admin-approval.php:145
2525
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
2526
- msgstr "Un administrador ha desaprobado su cuenta el %1$s (%2$s)."
2527
-
2528
- #: ../features/admin-approval/admin-approval.php:164
2529
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
2530
- msgstr "<strong>ERROR</strong>: Su cuenta tiene que ser confirmada por un administrador antes de que pueda autenticarse."
2531
-
2532
- #: ../features/admin-approval/admin-approval.php:176
2533
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
2534
- msgstr "Su cuenta tiene que ser confirmada por un administrador antes de que pueda usar la característica \"Recuperar Contraseña\""
2535
-
2536
- #: ../features/admin-approval/class-admin-approval.php:124
2537
- msgid "delete this user?"
2538
- msgstr "¿eliminar este usuario?"
2539
-
2540
- #: ../features/admin-approval/class-admin-approval.php:127
2541
- msgid "unapprove this user?"
2542
- msgstr "¿desaprobar este usuario?"
2543
-
2544
- #: ../features/admin-approval/class-admin-approval.php:127
2545
- #: ../features/admin-approval/class-admin-approval.php:234
2546
- msgid "Unapprove"
2547
- msgstr "Desaprobar"
2548
-
2549
- #: ../features/admin-approval/class-admin-approval.php:129
2550
- msgid "approve this user?"
2551
- msgstr "¿Aprobar este usuario?"
2552
-
2553
- #: ../features/admin-approval/class-admin-approval.php:129
2554
- #: ../features/admin-approval/class-admin-approval.php:233
2555
- msgid "Approve"
2556
- msgstr "Aprobar"
2557
-
2558
- #: ../features/admin-approval/class-admin-approval.php:178
2559
- #: ../modules/user-listing/userlisting.php:249
2560
- #: ../modules/user-listing/userlisting.php:623
2561
- #: ../modules/user-listing/userlisting.php:1264
2562
- msgid "Firstname"
2563
- msgstr "Primer Nombre"
2564
-
2565
- #: ../features/admin-approval/class-admin-approval.php:179
2566
- #: ../modules/user-listing/userlisting.php:626
2567
- #: ../modules/user-listing/userlisting.php:1265
2568
- msgid "Lastname"
2569
- msgstr "Apellidos"
2570
-
2571
- #: ../features/admin-approval/class-admin-approval.php:181
2572
- #: ../modules/user-listing/userlisting.php:124
2573
- #: ../modules/user-listing/userlisting.php:250
2574
- #: ../modules/user-listing/userlisting.php:653
2575
- #: ../modules/user-listing/userlisting.php:1268
2576
- msgid "Role"
2577
- msgstr "Rol"
2578
-
2579
- #: ../features/admin-approval/class-admin-approval.php:182
2580
- #: ../features/email-confirmation/class-email-confirmation.php:169
2581
- msgid "Registered"
2582
- msgstr "Registrado"
2583
-
2584
- #: ../features/admin-approval/class-admin-approval.php:183
2585
- msgid "User-status"
2586
- msgstr "Estado del usuario"
2587
-
2588
- #: ../features/admin-approval/class-admin-approval.php:263
2589
- msgid "Do you want to bulk approve the selected users?"
2590
- msgstr "¿Desea aprobar en bloque los usuarios seleccionados?"
2591
-
2592
- #: ../features/admin-approval/class-admin-approval.php:271
2593
- msgid "Do you want to bulk unapprove the selected users?"
2594
- msgstr "¿Desea desaprobar en bloque los usuarios seleccionados?"
2595
-
2596
- #: ../features/admin-approval/class-admin-approval.php:277
2597
- msgid "Do you want to bulk delete the selected users?"
2598
- msgstr "¿Desea eliminar en bloque los usuarios seleccionados?"
2599
-
2600
- #: ../features/admin-approval/class-admin-approval.php:285
2601
- #: ../features/email-confirmation/class-email-confirmation.php:278
2602
- msgid "Sorry, but you don't have permission to do that!"
2603
- msgstr "Disculpe, ¡pero no tiene permisos para hacer eso!"
2604
-
2605
- #: ../features/admin-approval/class-admin-approval.php:341
2606
- msgid "Approved"
2607
- msgstr "Aprobado"
2608
-
2609
- #: ../features/admin-approval/class-admin-approval.php:343
2610
- msgid "Unapproved"
2611
- msgstr "Desaprobado"
2612
-
2613
- #: ../features/admin-approval/class-admin-approval.php:461
2614
- #: ../features/email-confirmation/class-email-confirmation.php:469
2615
- msgid "All Users"
2616
- msgstr "Todos los Usuarios"
2617
-
2618
- #: ../features/email-confirmation/class-email-confirmation.php:120
2619
- msgid "delete this user from the _signups table?"
2620
- msgstr "¿eliminar este usuario de la tabla _signups?"
2621
-
2622
- #: ../features/email-confirmation/class-email-confirmation.php:121
2623
- msgid "confirm this email yourself?"
2624
- msgstr "¿confirmar este email usted mismo?"
2625
-
2626
- #: ../features/email-confirmation/class-email-confirmation.php:121
2627
- #: ../features/email-confirmation/class-email-confirmation.php:218
2628
- msgid "Confirm Email"
2629
- msgstr "Confirmar Email"
2630
-
2631
- #: ../features/email-confirmation/class-email-confirmation.php:122
2632
- msgid "resend the activation link?"
2633
- msgstr "¿reenviar el enlace de activación?"
2634
-
2635
- #: ../features/email-confirmation/class-email-confirmation.php:122
2636
- #: ../features/email-confirmation/class-email-confirmation.php:219
2637
- msgid "Resend Activation Email"
2638
- msgstr "Reenviar Email de Activación"
2639
-
2640
- #: ../features/email-confirmation/class-email-confirmation.php:249
2641
- msgid "%s couldn't be deleted"
2642
- msgstr "%s no pudo ser eliminado"
2643
-
2644
- #: ../features/email-confirmation/class-email-confirmation.php:253
2645
- msgid "All users have been successfully deleted"
2646
- msgstr "Todos los usuarios han sido eliminados satisfactoriamenet"
2647
-
2648
- #: ../features/email-confirmation/class-email-confirmation.php:263
2649
- msgid "The selected users have been activated"
2650
- msgstr "Los usuarios seleccionados han sido activados"
2651
-
2652
- #: ../features/email-confirmation/class-email-confirmation.php:274
2653
- msgid "The selected users have had their activation emails resent"
2654
- msgstr "Los usuarios seleccionados han tenido sus email de activación reenviados"
2655
-
2656
- #: ../features/email-confirmation/class-email-confirmation.php:466
2657
- #: ../features/email-confirmation/email-confirmation.php:47
2658
- msgid "Users with Unconfirmed Email Address"
2659
- msgstr "Usuarios con Direcciones de Email Sin Confirmar"
2660
-
2661
- #: ../features/email-confirmation/email-confirmation.php:110
2662
- msgid "There was an error performing that action!"
2663
- msgstr "¡Hubo un error ejecutando esa acción!"
2664
-
2665
- #: ../features/email-confirmation/email-confirmation.php:118
2666
- msgid "The selected user couldn't be deleted"
2667
- msgstr "El usuario seleccionado no pudo ser eliminado"
2668
-
2669
- #: ../features/email-confirmation/email-confirmation.php:129
2670
- msgid "Email notification resent to user"
2671
- msgstr "Notificación de Email reenviada al usuario"
2672
-
2673
- #: ../features/email-confirmation/email-confirmation.php:384
2674
- msgid "[%1$s] Activate %2$s"
2675
- msgstr "[%1$s] Activar %2$s"
2676
-
2677
- #: ../features/email-confirmation/email-confirmation.php:387
2678
- msgid ""
2679
- "To activate your user, please click the following link:\n"
2680
- "\n"
2681
- "%s%s%s\n"
2682
- "\n"
2683
- "After you activate it you will receive yet *another email* with your login."
2684
- msgstr ""
2685
- "Para activar su usuario, por favor haga clic en el siguiente enlace:\n"
2686
- "\n"
2687
- "%s%s%s\n"
2688
- "\n"
2689
- "Luego de activarlo recibirá *otro email* con su nombre de usuario."
2690
-
2691
- #: ../features/email-confirmation/email-confirmation.php:428
2692
- #: ../front-end/register.php:68
2693
- msgid "Could not create user!"
2694
- msgstr "¡No se pudo crear el usuario!"
2695
-
2696
- #: ../features/email-confirmation/email-confirmation.php:431
2697
- msgid "That username is already activated!"
2698
- msgstr "¡Ese nombre de usuario ya está activado!"
2699
-
2700
- #: ../features/email-confirmation/email-confirmation.php:453
2701
- msgid "There was an error while trying to activate the user"
2702
- msgstr "Hubo un error intentando activar el usuario"
2703
-
2704
- #: ../features/email-confirmation/email-confirmation.php:501
2705
- #: ../modules/email-customizer/admin-email-customizer.php:73
2706
- msgid "A new subscriber has (been) registered!"
2707
- msgstr "¡Un nuevo suscriptor ha sido registrado!"
2708
-
2709
- #: ../features/email-confirmation/email-confirmation.php:504
2710
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
2711
- msgstr "Nuevo suscriptor el %1$s.<br/><br/>Nombre de Usuario:%2$s<br/>E-mail:%3$s<br/>"
2712
-
2713
- #: ../features/email-confirmation/email-confirmation.php:605
2714
- 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!"
2715
- msgstr "La característica \"Aprobación del Admin\" fue activada en el tiempo de registro, ¡por favor recuerde que necesita aprobar a este usuario antes de que él/ella pueda autenticarse!"
2716
-
2717
- #: ../features/email-confirmation/email-confirmation.php:550
2718
- msgid "[%1$s] Your new account information"
2719
- msgstr "[%1$s] La información de su nueva cuenta"
2720
-
2721
- #: ../features/email-confirmation/email-confirmation.php:556
2722
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
2723
- msgstr "¡Bienvenido a %1$s!<br/><br/><br/>Su nombre de usuario es:%2$s y contraseña:%3$s"
2724
-
2725
- #: ../features/email-confirmation/email-confirmation.php:613
2726
- #: ../front-end/register.php:116
2727
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
2728
- msgstr "Antes de que pueda acceder su cuenta, un administrador necesita aprobarla. Usted será notificado via email."
2729
-
2730
- #: ../features/login-widget/login-widget.php:10
2731
- msgid "This login widget lets you add a login form in the sidebar."
2732
- msgstr "El widget de autenticación le permite añadir una forma de autenticación en la barra lateral."
2733
-
2734
- #: ../features/login-widget/login-widget.php:15
2735
- msgid "Profile Builder Login Widget"
2736
- msgstr "Widget de Autenticación de Profile Builder"
2737
-
2738
- #: ../front-end/class-formbuilder.php:294 ../front-end/login.php:202
2739
- msgid "Register"
2740
- msgstr "Registrar"
2741
-
2742
- #: ../features/login-widget/login-widget.php:63
2743
- msgid "Title:"
2744
- msgstr "Título:"
2745
-
2746
- #: ../features/login-widget/login-widget.php:68
2747
- msgid "After login redirect URL (optional):"
2748
- msgstr "URL de redirección luego de autenticarse (opcional):"
2749
-
2750
- #: ../features/login-widget/login-widget.php:73
2751
- msgid "Register page URL (optional):"
2752
- msgstr "URL de página de registro (opcional):"
2753
-
2754
- #: ../features/login-widget/login-widget.php:78
2755
- msgid "Password Recovery page URL (optional):"
2756
- msgstr "URL de página de Recuperar Contraseña (opcional):"
2757
-
2758
- #: ../features/upgrades/upgrades-functions.php:91
2759
- #: ../features/upgrades/upgrades-functions.php:134
2760
- msgid "The usernames cannot be changed."
2761
- msgstr "Los nombres de usuario no pueden ser cambiados."
2762
-
2763
- #: ../front-end/class-formbuilder.php:89
2764
- msgid "Only an administrator can add new users."
2765
- msgstr "Solamente un administrador puede adicionar nuevos usuarios."
2766
-
2767
- #: ../front-end/class-formbuilder.php:99
2768
- msgid "Users can register themselves or you can manually create users here."
2769
- msgstr "Los usuarios pueden registrarse ellos mismos o usted puede manualmente crear usuarios aquí."
2770
-
2771
- #: ../front-end/class-formbuilder.php:102
2772
- msgid "Users cannot currently register themselves, but you can manually create users here."
2773
- msgstr "Los usuarios no pueden registrarse ellos mismos actualmente, pero usted puede crear usuarios manualmente aquí."
2774
-
2775
- #: ../front-end/class-formbuilder.php:114
2776
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
2777
- msgstr "Usted está autenticado actualmente como %1s. Usted no necesita otra cuenta. %2s"
2778
-
2779
- #: ../front-end/class-formbuilder.php:114
2780
- msgid "Log out of this account."
2781
- msgstr "Salir de esta cuenta."
2782
-
2783
- #: ../front-end/class-formbuilder.php:114
2784
- msgid "Logout"
2785
- msgstr "Salir"
2786
-
2787
- #: ../front-end/class-formbuilder.php:120
2788
- msgid "You must be logged in to edit your profile."
2789
- msgstr "Usted tiene que estar autenticado para editar su perfil."
2790
-
2791
- #: ../front-end/class-formbuilder.php:142
2792
- msgid "here"
2793
- msgstr "aquí"
2794
-
2795
- #: ../front-end/class-formbuilder.php:144
2796
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
2797
- msgstr "Usted pronto será redirigido automáticamente. Si ve esta página por más de %1$d segundos, por favor haga clic en %2$s.%3$s"
2798
-
2799
- #: ../front-end/class-formbuilder.php:239
2800
- #: ../front-end/class-formbuilder.php:246
2801
- msgid "The account %1s has been successfully created!"
2802
- msgstr "¡La cuenta %1s ha sido creada satisfactoriamente!"
2803
-
2804
- #: ../front-end/class-formbuilder.php:242
2805
- #: ../front-end/class-formbuilder.php:252
2806
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
2807
- msgstr "Antes de que pueda acceder a su cuenta %1s, necesita confirmar su dirección de email. Por favor chequee su bandeja de entrada y haga clic en el enlace de activación."
2808
-
2809
- #: ../front-end/class-formbuilder.php:248
2810
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
2811
- msgstr "Antes de que pueda acceder a su cuenta %1s, un administrador tiene que aprobarla. Usted será notificado via email."
2812
-
2813
- #: ../front-end/class-formbuilder.php:262
2814
- msgid "Your profile has been successfully updated!"
2815
- msgstr "¡Su perfil ha sido actualizado satisfactoriamente!"
2816
-
2817
- #: ../front-end/class-formbuilder.php:272
2818
- msgid "There was an error in the submitted form"
2819
- msgstr "Hubo un error en la forma enviada"
2820
-
2821
- #: ../front-end/class-formbuilder.php:294
2822
- msgid "Add User"
2823
- msgstr "Adicionar Usuario"
2824
-
2825
- #: ../admin/add-ons.php:170 ../front-end/class-formbuilder.php:297
2826
- msgid "Update"
2827
- msgstr "Actualizar"
2828
-
2829
- #: ../front-end/class-formbuilder.php:340
2830
- #: ../front-end/extra-fields/extra-fields.php:35
2831
- msgid "The avatar was successfully deleted!"
2832
- msgstr "¡El avatar ha sido eliminado satisfactoriamente!"
2833
-
2834
- #: ../front-end/class-formbuilder.php:340
2835
- #: ../front-end/extra-fields/extra-fields.php:37
2836
- msgid "The following attachment was successfully deleted:"
2837
- msgstr "El siguiente adjunto fue borrado satisfactoriamente:"
2838
-
2839
- #: ../front-end/class-formbuilder.php:352
2840
- msgid "Send these credentials via email."
2841
- msgstr "Enviar estas credenciales via email."
2842
-
2843
- #: ../front-end/extra-fields/extra-fields.php:99 ../front-end/login.php:89
2844
- #: ../front-end/login.php:96 ../front-end/login.php:110
2845
- #: ../front-end/recover.php:17 ../front-end/recover.php:228
2846
- msgid "ERROR"
2847
- msgstr "ERROR"
2848
-
2849
- #: ../front-end/login.php:89
2850
- msgid "The password you entered is incorrect."
2851
- msgstr "La contraseña que entró es incorrecta."
2852
-
2853
- #: ../front-end/login.php:90 ../front-end/login.php:97
2854
- msgid "Password Lost and Found."
2855
- msgstr "Perdido y Encontrado de Contraseña."
2856
-
2857
- #: ../front-end/login.php:90 ../front-end/login.php:97
2858
- msgid "Lost your password"
2859
- msgstr "Perdió su contraseña"
2860
-
2861
- #: ../front-end/login.php:110
2862
- msgid "Both fields are empty."
2863
- msgstr "Ambos campos están vacíos."
2864
-
2865
- #: ../front-end/login.php:241
2866
- msgid "You are currently logged in as %1$s. %2$s"
2867
- msgstr "Usted está autenticado actualmente como %1$s. %2$s"
2868
-
2869
- #: ../front-end/login.php:240 ../front-end/logout.php:17
2870
- msgid "Log out of this account"
2871
- msgstr "Salir de esta cuenta"
2872
-
2873
- #: ../front-end/login.php:240
2874
- msgid "Log out"
2875
- msgstr "Salir"
2876
-
2877
- #: ../front-end/recover.php:17
2878
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
2879
- msgstr "Su cuenta tiene que ser confirmada por un administrador antes de que pueda usar la característica \"Resetear Contraseña\"."
2880
-
2881
- #: ../front-end/recover.php:91
2882
- msgid "Reset Password"
2883
- msgstr "Resetear Contraseña"
2884
-
2885
- #: ../front-end/recover.php:111
2886
- msgid "Please enter your username or email address."
2887
- msgstr "Por favor entre su nombre de usuario o dirección de email."
2888
-
2889
- #: ../front-end/recover.php:112
2890
- msgid "You will receive a link to create a new password via email."
2891
- msgstr "Usted recibirá un enlace para crear una nueva contraseña via email."
2892
-
2893
- #: ../front-end/recover.php:119
2894
- msgid "Username or E-mail"
2895
- msgstr " Nombre de Usuario o E-mail"
2896
-
2897
- #: ../front-end/recover.php:125
2898
- msgid "Get New Password"
2899
- msgstr "Obtener Nueva Contraseña"
2900
-
2901
- #: ../front-end/recover.php:166
2902
- msgid "The username entered wasn't found in the database!"
2903
- msgstr "¡El nombre de usuario entrado no se encontró en la base de datos!"
2904
-
2905
- #: ../front-end/recover.php:166
2906
- msgid "Please check that you entered the correct username."
2907
- msgstr "Por favor chequee que entró el nombre de usuario correcto."
2908
-
2909
- #: ../front-end/recover.php:181
2910
- msgid "Check your e-mail for the confirmation link."
2911
- msgstr "Chequee su e-mail para el enlace de confirmación."
2912
-
2913
- #: ../front-end/recover.php:216
2914
- 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"
2915
- msgstr "Alguien pidió que la contraseña sea reseteada para la siguiente cuenta:<b>%1$s</b><br/>Si esto fue un error, solamente ignore este email y nada ocurrirá.<br/>Para resetear su contraseña, visite el siguiente enlace:%2$s"
2916
-
2917
- #: ../front-end/recover.php:219
2918
- msgid "Password Reset from \"%1$s\""
2919
- msgstr "Reseteo de Contraseña desde \"%1$s\""
2920
-
2921
- #: ../front-end/recover.php:228
2922
- msgid "There was an error while trying to send the activation link to %1$s!"
2923
- msgstr "¡Hubo un error mientras se intentaba enviar el enlace de activación a %1$s!"
2924
-
2925
- #: ../front-end/recover.php:188
2926
- msgid "The email address entered wasn't found in the database!"
2927
- msgstr "¡La dirección de email entrada no se encontró en la base de datos!"
2928
-
2929
- #: ../front-end/recover.php:188
2930
- msgid "Please check that you entered the correct email address."
2931
- msgstr "Por favor chequee que entró la dirección de email correcta."
2932
-
2933
- #: ../front-end/recover.php:256
2934
- msgid "Your password has been successfully changed!"
2935
- msgstr "¡Su contraseña ha sido cambiada satisfactoriamente!"
2936
-
2937
- #: ../front-end/recover.php:275
2938
- msgid "You have successfully reset your password to: %1$s"
2939
- msgstr "Usted ha reseteado satisfactoriamente su contraseña a: %1$s"
2940
-
2941
- #: ../front-end/recover.php:278 ../front-end/recover.php:292
2942
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
2943
- msgstr "Contraseña Reseteada Satisfactoriamente para %1$s el \"%2$s\""
2944
-
2945
- #: ../front-end/recover.php:289
2946
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
2947
- msgstr "%1$s ha pedido un cambio de contraseña via la característica de reseteo de contraseña.<br/>Su nueva contraseña es:%2$s"
2948
-
2949
- #: ../front-end/recover.php:308
2950
- msgid "The entered passwords don't match!"
2951
- msgstr "¡Las contraseñas entradas no coinciden!"
2952
-
2953
- #: ../front-end/recover.php:353
2954
- msgid "ERROR:"
2955
- msgstr "ERROR:"
2956
-
2957
- #: ../front-end/recover.php:353
2958
- msgid "Invalid key!"
2959
- msgstr "¡Llave inválida!"
2960
-
2961
- #: ../front-end/register.php:46
2962
- msgid "Invalid activation key!"
2963
- msgstr "¡Llave de activación inválida!"
2964
-
2965
- #: ../front-end/register.php:50
2966
- msgid "This username is now active!"
2967
- msgstr "¡Este nombre de usuario está ahora activo!"
2968
-
2969
- #: ../front-end/register.php:71
2970
- msgid "This username is already activated!"
2971
- msgstr "¡Este nombre de usuario está ya activado!"
2972
-
2973
- #: ../front-end/register.php:115
2974
- msgid "Your email was successfully confirmed."
2975
- msgstr "Su email fue confirmado satisfactoriamente."
2976
-
2977
- #: ../front-end/register.php:144
2978
- msgid "There was an error while trying to activate the user."
2979
- msgstr "Hubo un error mientras se trataba de activar el usuario."
2980
-
2981
- #: ../front-end/default-fields/email/email.php:44
2982
- msgid "The email you entered is not a valid email address."
2983
- msgstr "El email que ha entrado no es una dirección de email válida."
2984
-
2985
- #: ../front-end/default-fields/email/email.php:57
2986
- #: ../front-end/default-fields/email/email.php:64
2987
- msgid "This email is already reserved to be used soon."
2988
- msgstr "Este email ya está reservado para ser usado pronto."
2989
-
2990
- #: ../front-end/default-fields/email/email.php:57
2991
- #: ../front-end/default-fields/email/email.php:64
2992
- #: ../front-end/default-fields/email/email.php:73
2993
- #: ../front-end/default-fields/email/email.php:84
2994
- #: ../front-end/default-fields/username/username.php:50
2995
- #: ../front-end/default-fields/username/username.php:65
2996
- msgid "Please try a different one!"
2997
- msgstr "¡Por favor trate con uno diferente!"
2998
-
2999
- #: ../front-end/default-fields/email/email.php:73
3000
- #: ../front-end/default-fields/email/email.php:84
3001
- msgid "This email is already in use."
3002
- msgstr "Este email ya está en uso."
3003
-
3004
- #: ../front-end/default-fields/password-repeat/password-repeat.php:37
3005
- #: ../front-end/default-fields/password-repeat/password-repeat.php:41
3006
- msgid "The passwords do not match"
3007
- msgstr "Las contraseñas no coinciden"
3008
-
3009
- #: ../front-end/default-fields/username/username.php:50
3010
- msgid "This username already exists."
3011
- msgstr "El nombre de usuario ya existe."
3012
-
3013
- #: ../front-end/default-fields/username/username.php:65
3014
- msgid "This username is already reserved to be used soon."
3015
- msgstr "El nombre de usuario ya está reservado para ser usado pronto."
3016
-
3017
- #: ../modules/user-listing/userlisting.php:247
3018
- msgid "Avatar"
3019
- msgstr "Avatar"
3020
-
3021
- #: ../front-end/extra-fields/avatar/avatar.php:72
3022
- #: ../front-end/extra-fields/checkbox/checkbox.php:45
3023
- #: ../front-end/extra-fields/datepicker/datepicker.php:40
3024
- #: ../front-end/extra-fields/input-hidden/input-hidden.php:34
3025
- #: ../front-end/extra-fields/input/input.php:30
3026
- #: ../front-end/extra-fields/radio/radio.php:44
3027
- #: ../front-end/extra-fields/select-multiple/select-multiple.php:46
3028
- #: ../front-end/extra-fields/select-timezone/select-timezone.php:44
3029
- #: ../front-end/extra-fields/select/select.php:46
3030
- #: ../front-end/extra-fields/textarea/textarea.php:30
3031
- #: ../front-end/extra-fields/upload/upload.php:70
3032
- #: ../front-end/extra-fields/wysiwyg/wysiwyg.php:33
3033
- msgid "required"
3034
- msgstr "requerido"
3035
-
3036
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
3037
- msgid "To use reCAPTCHA you must get an API key from"
3038
- msgstr "Para utilizar reCAPTCHA usted tiene que obtener la llave de API desde"
3039
-
3040
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:131
3041
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
3042
- msgstr "¡Por razones de seguridad, usted tiene que para el ip remoto a reCAPTCHA!"
3043
-
3044
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:192
3045
- msgid "To use reCAPTCHA you must get an API public key from:"
3046
- msgstr "Para utilizar reCAPTCHA usted tiene que obtener una llave pública API desde:"
3047
-
3048
- #: ../modules/modules.php:11 ../modules/modules.php:80
3049
- msgid "Modules"
3050
- msgstr "Módulos"
3051
-
3052
- #: ../modules/modules.php:81
3053
- msgid "Here you can activate / deactivate available modules for Profile Builder."
3054
- msgstr "Aquí usted puede activar/desactivar los módulos disponibles para Profile Builder."
3055
-
3056
- #: ../modules/modules.php:91
3057
- msgid "Name/Description"
3058
- msgstr "Nombre/Descripción"
3059
-
3060
- #: ../modules/modules.php:92
3061
- msgid "Status"
3062
- msgstr "Estado"
3063
-
3064
- #: ../modules/custom-redirects/custom-redirects.php:48
3065
- #: ../modules/custom-redirects/custom-redirects.php:58
3066
- #: ../modules/custom-redirects/custom-redirects.php:68
3067
- #: ../modules/custom-redirects/custom-redirects.php:94
3068
- #: ../modules/custom-redirects/custom-redirects.php:104
3069
- #: ../modules/custom-redirects/custom-redirects.php:114
3070
- #: ../modules/custom-redirects/custom-redirects.php:124
3071
- #: ../modules/modules.php:99 ../modules/modules.php:106
3072
- #: ../modules/modules.php:113 ../modules/modules.php:120
3073
- #: ../modules/modules.php:127 ../modules/modules.php:134
3074
- msgid "Active"
3075
- msgstr "Activo"
3076
-
3077
- #: ../modules/custom-redirects/custom-redirects.php:49
3078
- #: ../modules/custom-redirects/custom-redirects.php:59
3079
- #: ../modules/custom-redirects/custom-redirects.php:69
3080
- #: ../modules/custom-redirects/custom-redirects.php:95
3081
- #: ../modules/custom-redirects/custom-redirects.php:105
3082
- #: ../modules/custom-redirects/custom-redirects.php:115
3083
- #: ../modules/custom-redirects/custom-redirects.php:125
3084
- #: ../modules/modules.php:100 ../modules/modules.php:107
3085
- #: ../modules/modules.php:114 ../modules/modules.php:121
3086
- #: ../modules/modules.php:128 ../modules/modules.php:135
3087
- msgid "Inactive"
3088
- msgstr "Inactivo"
3089
-
3090
- #: ../modules/email-customizer/admin-email-customizer.php:11
3091
- #: ../modules/email-customizer/admin-email-customizer.php:12
3092
- #: ../modules/modules.php:118
3093
- msgid "Admin Email Customizer"
3094
- msgstr "Personalizador de Email de Admin"
3095
-
3096
- #: ../modules/email-customizer/user-email-customizer.php:11
3097
- #: ../modules/email-customizer/user-email-customizer.php:12
3098
- #: ../modules/modules.php:125
3099
- msgid "User Email Customizer"
3100
- msgstr "Personalizador de Email de Usuario"
3101
-
3102
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
3103
- #: ../modules/class-mustache-templates/class-mustache-templates.php:242
3104
- msgid "Save"
3105
- msgstr "Salvar"
3106
-
3107
- #: ../modules/custom-redirects/custom-redirects.php:35
3108
- msgid "Redirects on custom page requests:"
3109
- msgstr "Redirecciona en llamados de página personalizados:"
3110
-
3111
- #: ../modules/custom-redirects/custom-redirects.php:39
3112
- #: ../modules/custom-redirects/custom-redirects.php:85
3113
- msgid "Action"
3114
- msgstr "Acción"
3115
-
3116
- #: ../modules/custom-redirects/custom-redirects.php:40
3117
- #: ../modules/custom-redirects/custom-redirects.php:86
3118
- #: ../modules/multiple-forms/edit-profile-forms.php:202
3119
- #: ../modules/multiple-forms/register-forms.php:226
3120
- msgid "Redirect"
3121
- msgstr "Redireccionar"
3122
-
3123
- #: ../modules/custom-redirects/custom-redirects.php:41
3124
- #: ../modules/custom-redirects/custom-redirects.php:87
3125
- #: ../modules/multiple-forms/edit-profile-forms.php:204
3126
- #: ../modules/multiple-forms/register-forms.php:228
3127
- msgid "URL"
3128
- msgstr "URL"
3129
-
3130
- #: ../modules/custom-redirects/custom-redirects.php:46
3131
- msgid "After Registration:"
3132
- msgstr "Luego del Registro:"
3133
-
3134
- #: ../modules/custom-redirects/custom-redirects.php:56
3135
- msgid "After Login:"
3136
- msgstr "Luego de la Autenticación:"
3137
-
3138
- #: ../modules/custom-redirects/custom-redirects.php:66
3139
- msgid "Recover Password (*)"
3140
- msgstr "Recuperar Contraseña (*)"
3141
-
3142
- #: ../modules/custom-redirects/custom-redirects.php:77
3143
- 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."
3144
- msgstr "Cuando se activa esta característica se redireccionará al usuario a ambas la página de recuperación de contraseña por defecto de WordPRess y al enlace \"¿Perdió su contraseña?\" usado por Profile Builder en la página de autenticación de la vista pública."
3145
-
3146
- #: ../modules/custom-redirects/custom-redirects.php:81
3147
- msgid "Redirects on default WordPress page requests:"
3148
- msgstr "Redirecciona en los llamados de página por defecto de WordPress:"
3149
-
3150
- #: ../modules/custom-redirects/custom-redirects.php:92
3151
- msgid "Default WordPress Login Page"
3152
- msgstr "Página de Autenticación de WordPress Por Defecto"
3153
-
3154
- #: ../modules/custom-redirects/custom-redirects.php:102
3155
- msgid "Default WordPress Logout Page"
3156
- msgstr "Página de Salir de WordPress Por Defecto"
3157
-
3158
- #: ../modules/custom-redirects/custom-redirects.php:112
3159
- msgid "Default WordPress Register Page"
3160
- msgstr "Página de Registro de WordPress Por Defecto"
3161
-
3162
- #: ../modules/custom-redirects/custom-redirects.php:122
3163
- msgid "Default WordPress Dashboard (*)"
3164
- msgstr "Panel de Control de WordPress Por Defecto (*)"
3165
-
3166
- #: ../modules/custom-redirects/custom-redirects.php:133
3167
- msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
3168
- msgstr "Redirecciona cada rol de usuario EXCEPTO aquellos con privilegios de administración (puede manejar opciones)."
3169
-
3170
- #: ../modules/email-customizer/admin-email-customizer.php:38
3171
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
3172
- msgstr "Estos ajustes están también replicados en la página de ajustes de \"Personalizador de Email de Usuario\" al salvar."
3173
-
3174
- #: ../modules/email-customizer/admin-email-customizer.php:41
3175
- #: ../modules/email-customizer/user-email-customizer.php:41
3176
- msgid "From (name)"
3177
- msgstr "De (nombre)"
3178
-
3179
- #: ../modules/email-customizer/admin-email-customizer.php:49
3180
- #: ../modules/email-customizer/user-email-customizer.php:49
3181
- msgid "From (reply-to email)"
3182
- msgstr "De (email de responder-a)"
3183
-
3184
- #: ../modules/email-customizer/admin-email-customizer.php:57
3185
- #: ../modules/email-customizer/user-email-customizer.php:57
3186
- msgid "Common Settings"
3187
- msgstr "Ajustes Comunes"
3188
-
3189
- #: ../modules/email-customizer/admin-email-customizer.php:60
3190
- msgid ""
3191
- "\n"
3192
- "<p>New subscriber on {{site_name}}.</p>\n"
3193
- "<p>Username:{{username}}</p>\n"
3194
- "<p>E-mail:{{user_email}}</p>\n"
3195
- msgstr ""
3196
- "\n"
3197
- "<p>Nuevo suscriptor en {{site_name}}.</p>\n"
3198
- "<p>Nombre de Usuario:{{username}}</p>\n"
3199
-
3200
- #: ../modules/email-customizer/admin-email-customizer.php:69
3201
- #: ../modules/email-customizer/admin-email-customizer.php:99
3202
- #: ../modules/email-customizer/admin-email-customizer.php:126
3203
- #: ../modules/email-customizer/user-email-customizer.php:71
3204
- #: ../modules/email-customizer/user-email-customizer.php:99
3205
- #: ../modules/email-customizer/user-email-customizer.php:128
3206
- #: ../modules/email-customizer/user-email-customizer.php:155
3207
- #: ../modules/email-customizer/user-email-customizer.php:183
3208
- #: ../modules/email-customizer/user-email-customizer.php:214
3209
- #: ../modules/email-customizer/user-email-customizer.php:241
3210
- msgid "Email Subject"
3211
- msgstr "Asunto del Email"
3212
-
3213
- #: ../modules/email-customizer/admin-email-customizer.php:84
3214
- msgid "Default Registration & Registration with Email Confirmation"
3215
- msgstr "Registro Por Defecto y Registro con Confirmación de Email"
3216
-
3217
- #: ../modules/email-customizer/admin-email-customizer.php:87
3218
- msgid ""
3219
- "\n"
3220
- "<p>New subscriber on {{site_name}}.</p>\n"
3221
- "<p>Username:{{username}}</p>\n"
3222
- "<p>E-mail:{{user_email}}</p>\n"
3223
- "<p>The Admin Approval feature was activated at the time of registration,\n"
3224
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
3225
- msgstr ""
3226
- "\n"
3227
- "<p>Nuevo suscriptor en {{site_name}}.</p>\n"
3228
- "<p>Nombre de Usuario:{{username}}</p>\n"
3229
- "<p>E-mail:{{user_email}}</p>\n"
3230
- "<p>La característica de Aprobación del Admin fue activada en el tiempo de registro,\n"
3231
- "así que por favor recuerde que ¡necesita aprobar a este usuario antes de que pueda autenticarse!</p>\n"
3232
-
3233
- #: ../modules/email-customizer/admin-email-customizer.php:114
3234
- #: ../modules/email-customizer/user-email-customizer.php:143
3235
- msgid "Registration with Admin Approval"
3236
- msgstr "Registro con Aprobación de Admin"
3237
-
3238
- #: ../modules/email-customizer/email-customizer.php:7
3239
- msgid "Available Tags"
3240
- msgstr "Etiquetas Disponibles"
3241
-
3242
- #: ../features/email-confirmation/class-email-confirmation.php:91
3243
- #: ../features/email-confirmation/class-email-confirmation.php:170
3244
- #: ../modules/email-customizer/email-customizer.php:11
3245
- msgid "User Meta"
3246
- msgstr "Meta del Usuario"
3247
-
3248
- #: ../modules/email-customizer/email-customizer.php:21
3249
- msgid "Site Url"
3250
- msgstr "Url del Sitio"
3251
-
3252
- #: ../modules/email-customizer/email-customizer.php:22
3253
- msgid "Site Name"
3254
- msgstr "Nombre del Sitio"
3255
-
3256
- #: ../modules/email-customizer/email-customizer.php:25
3257
- #: ../modules/user-listing/userlisting.php:133
3258
- msgid "User Id"
3259
- msgstr "Id del Usuario"
3260
-
3261
- #: ../modules/email-customizer/email-customizer.php:33
3262
- msgid "Reply To"
3263
- msgstr "Responder a"
3264
-
3265
- #: ../modules/email-customizer/email-customizer.php:36
3266
- msgid "Activation Key"
3267
- msgstr "Llave de Activación"
3268
-
3269
- #: ../modules/email-customizer/email-customizer.php:37
3270
- msgid "Activation Url"
3271
- msgstr "URL de Activación"
3272
-
3273
- #: ../modules/email-customizer/email-customizer.php:38
3274
- msgid "Activation Link"
3275
- msgstr "Enlace de Activación"
3276
-
3277
- #: ../modules/email-customizer/user-email-customizer.php:64
3278
- msgid ""
3279
- "\n"
3280
- "<h3>Welcome to {{site_name}}!</h3>\n"
3281
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3282
- msgstr ""
3283
- "\n"
3284
- "<h3>¡Bienvenido a {{site_name}}!</h3>\n"
3285
- "<p>Su nombre de usuario es:{{username}} y su contraseña:{{password}}</p>\n"
3286
-
3287
- #: ../modules/email-customizer/user-email-customizer.php:85
3288
- msgid "Default Registration"
3289
- msgstr "Registro Por Defecto"
3290
-
3291
- #: ../modules/email-customizer/user-email-customizer.php:91
3292
- msgid ""
3293
- "\n"
3294
- "<p>To activate your user, please click the following link:<br/>\n"
3295
- "{{{activation_link}}}</p>\n"
3296
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
3297
- msgstr ""
3298
- "\n"
3299
- "<p>Para activar su usuario, por favor haga clic en el enlace siguiente:<br/>\n"
3300
- "{{{activation_link}}}</p>\n"
3301
- "<p>Luego de activar, recibirá otro email con sus credenciales.</p>\n"
3302
-
3303
- #: ../modules/email-customizer/user-email-customizer.php:103
3304
- msgid "[{{site_name}}] Activate {{username}}"
3305
- msgstr "[{{site_name}}] Activar {{username}}"
3306
-
3307
- #: ../modules/email-customizer/user-email-customizer.php:114
3308
- msgid "Registration with Email Confirmation"
3309
- msgstr "Registro con Confirmación de Email"
3310
-
3311
- #: ../modules/email-customizer/user-email-customizer.php:120
3312
- msgid ""
3313
- "\n"
3314
- "<h3>Welcome to {{site_name}}!</h3>\n"
3315
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3316
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
3317
- msgstr ""
3318
- "\n"
3319
- "<h3>¡Bienvenido a {{site_name}}!</h3>\n"
3320
- "<p>Su nombre de usuario es:{{username}} y su contraseña:{{password}}</p>\n"
3321
- "<p>Antes de que pueda acceder a su cuenta, un administrador necesita aprobarla. Usted será notificado via email..</p>\n"
3322
-
3323
- #: ../modules/email-customizer/user-email-customizer.php:132
3324
- msgid "A new account has been created for you on {{site_name}}"
3325
- msgstr "Una nueva cuenta ha sido creada para usted en {{site_name}}"
3326
-
3327
- #: ../modules/email-customizer/user-email-customizer.php:148
3328
- msgid ""
3329
- "\n"
3330
- "<h3>Good News!</h3>\n"
3331
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
3332
- msgstr ""
3333
- "\n"
3334
- "<h3>¡Buenas Noticias!</h3>\n"
3335
- "<p>Un administrador ha aprobado su cuenta: {{username}} en {{site_name}}.</p>\n"
3336
-
3337
- #: ../modules/email-customizer/user-email-customizer.php:159
3338
- msgid "Your account on {{site_name}} has been approved!"
3339
- msgstr "¡Su cuenta en {{site_name}} ha sido aprobada!"
3340
-
3341
- #: ../modules/email-customizer/user-email-customizer.php:170
3342
- msgid "User Approval Notification"
3343
- msgstr "Notificación de Aprobación de Usuario"
3344
-
3345
- #: ../modules/email-customizer/user-email-customizer.php:175
3346
- msgid ""
3347
- "\n"
3348
- "<h3>Hello,</h3>\n"
3349
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
3350
- msgstr ""
3351
- "\n"
3352
- "<h3>Hola,</h3>\n"
3353
- "<p>Desafortunadamente un administrador ha desaprobado su cuenta: {{username}} en {{site_name}}.</p>\n"
3354
-
3355
- #: ../modules/email-customizer/user-email-customizer.php:187
3356
- msgid "Your account on {{site_name}} has been unapproved!"
3357
- msgstr "¡Su cuenta en {{site_name}} ha sido desaprobada!"
3358
-
3359
- #: ../modules/email-customizer/user-email-customizer.php:198
3360
- msgid "Unapproved User Notification"
3361
- msgstr "Notificación de Usuario Desaprobado"
3362
-
3363
- #: ../modules/multiple-forms/edit-profile-forms.php:11
3364
- #: ../modules/multiple-forms/edit-profile-forms.php:12
3365
- msgid "Edit-profile Form"
3366
- msgstr "Forma de Editar Perfil"
3367
-
3368
- #: ../modules/multiple-forms/edit-profile-forms.php:13
3369
- #: ../modules/multiple-forms/register-forms.php:13
3370
- #: ../modules/user-listing/userlisting.php:13
3371
- msgid "Add New"
3372
- msgstr "Adicionar Nuevo"
3373
-
3374
- #: ../modules/multiple-forms/edit-profile-forms.php:14
3375
- msgid "Add new Edit-profile Form"
3376
- msgstr "Adicionar nueva Forma de Editar Perfil "
3377
-
3378
- #: ../modules/multiple-forms/edit-profile-forms.php:15
3379
- msgid "Edit the Edit-profile Forms"
3380
- msgstr "Editar las Formas de Editar Perfil"
3381
-
3382
- #: ../modules/multiple-forms/edit-profile-forms.php:16
3383
- msgid "New Edit-profile Form"
3384
- msgstr "Nueva Forma de Editar Perfil"
3385
-
3386
- #: ../modules/multiple-forms/edit-profile-forms.php:17
3387
- #: ../modules/multiple-forms/edit-profile-forms.php:23
3388
- msgid "Edit-profile Forms"
3389
- msgstr "Formas de Editar Perfil"
3390
-
3391
- #: ../modules/multiple-forms/edit-profile-forms.php:18
3392
- msgid "View the Edit-profile Form"
3393
- msgstr "Ver la Forma de Editar Perfil "
3394
-
3395
- #: ../modules/multiple-forms/edit-profile-forms.php:19
3396
- msgid "Search the Edit-profile Forms"
3397
- msgstr "Buscar las Formas de Editar Perfil"
3398
-
3399
- #: ../modules/multiple-forms/edit-profile-forms.php:20
3400
- msgid "No Edit-profile Form found"
3401
- msgstr "No se encontró Forma de Editar Perfil"
3402
-
3403
- #: ../modules/multiple-forms/edit-profile-forms.php:21
3404
- msgid "No Edit-profile Forms found in trash"
3405
- msgstr "No se encontró Forma de Editar Perfil en la papelera"
3406
-
3407
- #: ../modules/multiple-forms/edit-profile-forms.php:131
3408
- #: ../modules/multiple-forms/register-forms.php:134
3409
- #: ../modules/user-listing/userlisting.php:1155
3410
- msgid "Shortcode"
3411
- msgstr "Código corto"
3412
-
3413
- #: ../modules/multiple-forms/edit-profile-forms.php:151
3414
- #: ../modules/multiple-forms/register-forms.php:155
3415
- #: ../modules/user-listing/userlisting.php:1176
3416
- msgid "(no title)"
3417
- msgstr "(sin título)"
3418
-
3419
- #: ../modules/multiple-forms/edit-profile-forms.php:171
3420
- #: ../modules/multiple-forms/register-forms.php:174
3421
- #: ../modules/user-listing/userlisting.php:1196
3422
- msgid "The shortcode will be available after you publish this form."
3423
- msgstr "El código corto estará disponible luego de que publique esta forma."
3424
-
3425
- #: ../modules/multiple-forms/edit-profile-forms.php:173
3426
- #: ../modules/multiple-forms/register-forms.php:176
3427
- #: ../modules/user-listing/userlisting.php:1198
3428
- msgid "Use this shortcode on the page you want the form to be displayed:"
3429
- msgstr "Utilice este código corto en la página en la que desea que la forma se muestre:"
3430
-
3431
- #: ../modules/multiple-forms/edit-profile-forms.php:177
3432
- #: ../modules/multiple-forms/register-forms.php:180
3433
- #: ../modules/user-listing/userlisting.php:1202
3434
- msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
3435
- msgstr "<span style=\"color:red;\">Nota:</span> ¡cambiar el título de la forma también cambia el código corto!"
3436
-
3437
- #: ../modules/multiple-forms/edit-profile-forms.php:183
3438
- #: ../modules/multiple-forms/register-forms.php:186
3439
- #: ../modules/user-listing/userlisting.php:1235
3440
- msgid "Form Shortcode"
3441
- msgstr "Código Corto de la Forma"
3442
-
3443
- #: ../modules/multiple-forms/edit-profile-forms.php:202
3444
- #: ../modules/multiple-forms/register-forms.php:226
3445
- msgid "Whether to redirect the user to a specific page or not"
3446
- msgstr "Cuando redireccionar al usuario a una página específica o no"
3447
-
3448
- #: ../modules/multiple-forms/edit-profile-forms.php:203
3449
- #: ../modules/multiple-forms/register-forms.php:227
3450
- msgid "Display Messages"
3451
- msgstr "Mostrar Mensajes"
3452
-
3453
- #: ../modules/multiple-forms/edit-profile-forms.php:203
3454
- #: ../modules/multiple-forms/register-forms.php:227
3455
- msgid "Allowed time to display any success messages (in seconds)"
3456
- msgstr "Tiempo permitido para mostrar cualquier mensajes satisfactorios (en segundos)"
3457
-
3458
- #: ../modules/multiple-forms/edit-profile-forms.php:204
3459
- 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"
3460
- msgstr "Especificar la URL de la página a la que los usuarios serán redireccionados una vez que actualizaron su perfil usando esta forma<br/>Utilizar el siguiente formato: http://www.mysite.com"
3461
-
3462
- #: ../modules/multiple-forms/edit-profile-forms.php:211
3463
- msgid "After Profile Update..."
3464
- msgstr "Luego de la Actualización del Perfil..."
3465
-
3466
- #: ../modules/multiple-forms/edit-profile-forms.php:237
3467
- #: ../modules/multiple-forms/register-forms.php:258
3468
- msgid "Add New Field to the List"
3469
- msgstr "Adicionar Nuevo Campo a la Lista"
3470
-
3471
- #: ../modules/multiple-forms/edit-profile-forms.php:241
3472
- #: ../modules/multiple-forms/register-forms.php:262
3473
- msgid "Choose one of the supported fields you manage <a href=\""
3474
- msgstr "Escoger uno de los campos soportados que usted gestiona <a href=\""
3475
-
3476
- #: ../modules/multiple-forms/multiple-forms.php:416
3477
- msgid "<pre>Title (Type)</pre>"
3478
- msgstr "<pre>Título (Tipo)</pre>"
3479
-
3480
- #: ../modules/multiple-forms/multiple-forms.php:232
3481
- msgid "You need to specify the title of the form before creating it"
3482
- msgstr "Usted necesita especificar el título de la forma antes de crearla"
3483
-
3484
- #: ../modules/multiple-forms/register-forms.php:11
3485
- #: ../modules/multiple-forms/register-forms.php:12
3486
- msgid "Registration Form"
3487
- msgstr "Forma de Registro"
3488
-
3489
- #: ../modules/multiple-forms/register-forms.php:14
3490
- msgid "Add new Registration Form"
3491
- msgstr "Adicionar nueva Forma de Registro"
3492
-
3493
- #: ../modules/multiple-forms/register-forms.php:15
3494
- msgid "Edit the Registration Forms"
3495
- msgstr "Editar las Formas de Registro"
3496
-
3497
- #: ../modules/multiple-forms/register-forms.php:16
3498
- msgid "New Registration Form"
3499
- msgstr "Nueva Forma de Registro"
3500
-
3501
- #: ../modules/multiple-forms/register-forms.php:17
3502
- #: ../modules/multiple-forms/register-forms.php:23
3503
- msgid "Registration Forms"
3504
- msgstr "Formas de Registro"
3505
-
3506
- #: ../modules/multiple-forms/register-forms.php:18
3507
- msgid "View the Registration Form"
3508
- msgstr "Ver la Forma de Registro"
3509
-
3510
- #: ../modules/multiple-forms/register-forms.php:19
3511
- msgid "Search the Registration Forms"
3512
- msgstr "Buscar las Formas de Registro"
3513
-
3514
- #: ../modules/multiple-forms/register-forms.php:20
3515
- msgid "No Registration Form found"
3516
- msgstr "No se encontró Forma de Registro"
3517
-
3518
- #: ../modules/multiple-forms/register-forms.php:21
3519
- msgid "No Registration Forms found in trash"
3520
- msgstr "No se encontraron Formas de Registro en la papelera"
3521
-
3522
- #: ../modules/multiple-forms/register-forms.php:215
3523
- msgid "Default Role"
3524
- msgstr "Rol Por Defecto"
3525
-
3526
- #: ../modules/multiple-forms/register-forms.php:224
3527
- msgid "Set Role"
3528
- msgstr "Establecer Rol"
3529
-
3530
- #: ../modules/multiple-forms/register-forms.php:224
3531
- 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"
3532
- msgstr "Escoger qué rol el usuario va a tener luego de que se registra<br/>Si no se especifica, se le asigna por defecto el rol establecido en los ajustes de WordPress"
3533
-
3534
- #: ../modules/multiple-forms/register-forms.php:225
3535
- msgid "Automatically Log In"
3536
- msgstr "Autenticarse Automáticamente"
3537
-
3538
- #: ../modules/multiple-forms/register-forms.php:225
3539
- 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"
3540
- msgstr "Cuando autenticarse automáticamente en el nuevo usuario registrado o no<br/>Solamente funciona en sitios simples sin las características \"Aprobación de Admin\" y \"Confirmación por Email\" activadas<br/>ADVERTENCIA: Hacer caché en la forma de registro va a hacer que la autenticación automática no funcione"
3541
-
3542
- #: ../modules/multiple-forms/register-forms.php:228
3543
- 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"
3544
- msgstr "Especificar la URL de la página a la que los usuarios serán redirigidos una vez registrados usando esta forma<br/>Utilice el siguiente formato: http://www.mysite.com"
3545
-
3546
- #: ../modules/multiple-forms/register-forms.php:234
3547
- msgid "After Registration..."
3548
- msgstr "Luego del Registro..."
3549
-
3550
- #: ../modules/user-listing/class-userlisting.php:470
3551
- #: ../modules/user-listing/userlisting.php:724
3552
- #: ../modules/user-listing/userlisting.php:968
3553
- #: ../modules/user-listing/userlisting.php:1011
3554
- #: ../modules/user-listing/userlisting.php:1355
3555
- msgid "Search Users by All Fields"
3556
- msgstr "Buscar Usuarios por Todos los Campos"
3557
-
3558
- #: ../modules/user-listing/userlisting.php:14
3559
- msgid "Add new User Listing"
3560
- msgstr "Adicionar Nuevo Listado de Usuario"
3561
-
3562
- #: ../modules/user-listing/userlisting.php:15
3563
- msgid "Edit the User Listing"
3564
- msgstr "Editar el Listado de Usuario"
3565
-
3566
- #: ../modules/user-listing/userlisting.php:16
3567
- msgid "New User Listing"
3568
- msgstr "Nuevo Listado de Usuario"
3569
-
3570
- #: ../modules/user-listing/userlisting.php:18
3571
- msgid "View the User Listing"
3572
- msgstr "Ver el Listado de Usuario"
3573
-
3574
- #: ../modules/user-listing/userlisting.php:19
3575
- msgid "Search the User Listing"
3576
- msgstr "Buscar el Listado de Usuario"
3577
-
3578
- #: ../modules/user-listing/userlisting.php:20
3579
- msgid "No User Listing found"
3580
- msgstr "No se encontró Listado de Usuario"
3581
-
3582
- #: ../modules/user-listing/userlisting.php:21
3583
- msgid "No User Listing found in trash"
3584
- msgstr "No se encontró Listado de Usuario en la papelera"
3585
-
3586
- #: ../modules/user-listing/userlisting.php:95
3587
- msgid "Display name as"
3588
- msgstr "Mostrar nombre como"
3589
-
3590
- #: ../modules/user-listing/userlisting.php:125
3591
- #: ../modules/user-listing/userlisting.php:1263
3592
- msgid "Registration Date"
3593
- msgstr "Fecha de Registro"
3594
-
3595
- #: ../modules/user-listing/userlisting.php:126
3596
- #: ../modules/user-listing/userlisting.php:1267
3597
- msgid "Number of Posts"
3598
- msgstr "Número de Posts"
3599
-
3600
- #: ../modules/user-listing/userlisting.php:130
3601
- msgid "More Info"
3602
- msgstr "Más Info"
3603
-
3604
- #: ../modules/user-listing/userlisting.php:131
3605
- msgid "More Info Url"
3606
- msgstr "Url de Más Info"
3607
-
3608
- #: ../modules/user-listing/userlisting.php:132
3609
- msgid "Avatar or Gravatar"
3610
- msgstr "Avatar o Gravatar"
3611
-
3612
- #: ../modules/user-listing/userlisting.php:161
3613
- msgid "Meta Variables"
3614
- msgstr "Variables Meta"
3615
-
3616
- #: ../modules/user-listing/userlisting.php:167
3617
- msgid "Sort Variables"
3618
- msgstr "Variables de Organización"
3619
-
3620
- #: ../modules/user-listing/userlisting.php:171
3621
- #: ../modules/user-listing/userlisting.php:198
3622
- msgid "Extra Functions"
3623
- msgstr "Funciones Adicionales"
3624
-
3625
- #: ../modules/user-listing/userlisting.php:173
3626
- msgid "Pagination"
3627
- msgstr "Paginación"
3628
-
3629
- #: ../modules/user-listing/userlisting.php:174
3630
- msgid "Search all Fields"
3631
- msgstr "Buscar todos los Campos"
3632
-
3633
- #: ../modules/user-listing/userlisting.php:200
3634
- msgid "Go Back Link"
3635
- msgstr "Enlace de Volver"
3636
-
3637
- #: ../modules/user-listing/userlisting.php:218
3638
- msgid "All-userlisting Template"
3639
- msgstr "Plantilla All-userlisting"
3640
-
3641
- #: ../modules/user-listing/userlisting.php:221
3642
- msgid "Single-userlisting Template"
3643
- msgstr "Plantilla Single-userlisting"
3644
-
3645
- #: ../modules/user-listing/userlisting.php:614
3646
- msgid "First/Lastname"
3647
- msgstr "Nombre/Apellidos"
3648
-
3649
- #: ../modules/user-listing/userlisting.php:252
3650
- #: ../modules/user-listing/userlisting.php:620
3651
- msgid "Sign-up Date"
3652
- msgstr "Fecha de Registro"
3653
-
3654
- #: ../modules/user-listing/userlisting.php:629
3655
- #: ../modules/user-listing/userlisting.php:1266
3656
- msgid "Display Name"
3657
- msgstr "Nombre a Mostrar"
3658
-
3659
- #: ../modules/user-listing/userlisting.php:251
3660
- #: ../modules/user-listing/userlisting.php:638
3661
- msgid "Posts"
3662
- msgstr "Posts"
3663
-
3664
- #: ../modules/user-listing/userlisting.php:641
3665
- #: ../modules/user-listing/userlisting.php:1272
3666
- msgid "Aim"
3667
- msgstr "Aim"
3668
-
3669
- #: ../modules/user-listing/userlisting.php:644
3670
- #: ../modules/user-listing/userlisting.php:1273
3671
- msgid "Yim"
3672
- msgstr "Yim"
3673
-
3674
- #: ../modules/user-listing/userlisting.php:647
3675
- #: ../modules/user-listing/userlisting.php:1274
3676
- msgid "Jabber"
3677
- msgstr "Jabber"
3678
-
3679
- #: ../modules/user-listing/userlisting.php:827
3680
- msgid "Click here to see more information about this user"
3681
- msgstr "Haga clic aquí para ver más información acerca de este usuario"
3682
-
3683
- #: ../modules/user-listing/userlisting.php:827
3684
- msgid "More..."
3685
- msgstr "Más..."
3686
-
3687
- #: ../modules/user-listing/userlisting.php:830
3688
- msgid "Click here to see more information about this user."
3689
- msgstr "Haga clic aquí para ver más información acerca de este usuario."
3690
-
3691
- #: ../modules/user-listing/userlisting.php:922
3692
- #: ../modules/user-listing/userlisting.php:925
3693
- msgid "Click here to go back"
3694
- msgstr "Haga clic aquí para volver"
3695
-
3696
- #: ../modules/user-listing/userlisting.php:922
3697
- msgid "Back"
3698
- msgstr "Atrás"
3699
-
3700
- #: ../modules/user-listing/userlisting.php:955
3701
- msgid "&laquo;&laquo; First"
3702
- msgstr "&laquo;&laquo; Primero"
3703
-
3704
- #: ../modules/user-listing/userlisting.php:956
3705
- msgid "&laquo; Prev"
3706
- msgstr "&laquo; Ant"
3707
-
3708
- #: ../modules/user-listing/userlisting.php:957
3709
- msgid "Next &raquo; "
3710
- msgstr "Sigu &raquo;"
3711
-
3712
- #: ../modules/user-listing/userlisting.php:958
3713
- msgid "Last &raquo;&raquo;"
3714
- msgstr "Último &raquo;&raquo;"
3715
-
3716
- #: ../modules/user-listing/userlisting.php:987
3717
- msgid "You don't have any pagination settings on this userlisting!"
3718
- msgstr "¡Usted no tiene ningún ajuste de paginación en esta lista de usuario!"
3719
-
3720
- #: ../modules/user-listing/userlisting.php:1028
3721
- msgid "Search"
3722
- msgstr "Buscar"
3723
-
3724
- #: ../modules/user-listing/userlisting.php:1029
3725
- msgid "Clear Results"
3726
- msgstr "Limpiar Resultados"
3727
-
3728
- #: ../modules/user-listing/userlisting.php:1205
3729
- #: ../modules/user-listing/userlisting.php:1209
3730
- msgid "Extra shortcode parameters"
3731
- msgstr "Parámetros de código corto adicionales"
3732
-
3733
- #: ../modules/user-listing/userlisting.php:1212
3734
- msgid "displays users having a certain meta-value within a certain (extra) meta-field"
3735
- msgstr "muestra usuarios que tienen cierto meta valor en un cierto meta campo (adicional)"
3736
-
3737
- #: ../modules/user-listing/userlisting.php:1213
3738
- msgid "Example:"
3739
- msgstr "Ejemplo:"
3740
-
3741
- #: ../modules/user-listing/userlisting.php:1215
3742
- msgid "Remember though, that the field-value combination must exist in the database."
3743
- msgstr "Recuerde sin embargo, que la combinación campo-valor tiene que existir en la base de datos."
3744
-
3745
- #: ../modules/user-listing/userlisting.php:1284
3746
- msgid "Random (very slow on large databases > 10K user)"
3747
- msgstr "Aleatorio (muy lento en bases de datos grandes > 10k usuarios)"
3748
-
3749
- #: ../modules/user-listing/userlisting.php:1297
3750
- msgid "Roles to Display"
3751
- msgstr "Roles a Mostrar"
3752
-
3753
- #: ../modules/user-listing/userlisting.php:1297
3754
- msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
3755
- msgstr "Restringir la lista de usuario solamente a los roles seleccionados<br/>Si no se especifica, se amplía a todos los roles existentes"
3756
-
3757
- #: ../modules/user-listing/userlisting.php:1298
3758
- msgid "Number of Users/Page"
3759
- msgstr "Número de Usuarios/Página"
3760
-
3761
- #: ../modules/user-listing/userlisting.php:1299
3762
- msgid "Default Sorting Criteria"
3763
- msgstr "Criterio de Ordenamiento Por Defecto"
3764
-
3765
- #: ../modules/user-listing/userlisting.php:1299
3766
- msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
3767
- msgstr "Establecer el criterio de ordenamiento por defecto<br/>Esto puede temporalmente ser cambiado para cada nueva sesión"
3768
-
3769
- #: ../modules/user-listing/userlisting.php:1300
3770
- msgid "Default Sorting Order"
3771
- msgstr "Orden de Ordenamiento Por Defecto"
3772
-
3773
- #: ../modules/user-listing/userlisting.php:1300
3774
- msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
3775
- msgstr "Establecer el orden de ordenamiento por defecto<br/>Esto puede temporalmente ser cambiado para cada nueva sesión"
3776
-
3777
- #: ../modules/user-listing/userlisting.php:1301
3778
- msgid "Avatar Size (All-userlisting)"
3779
- msgstr "Tamaño del Avatar (All-userlisting) "
3780
-
3781
- #: ../modules/user-listing/userlisting.php:1301
3782
- msgid "Set the avatar size on the all-userlisting only"
3783
- msgstr "Establecer el tamaño del avatar solamente en el all-userlisting"
3784
-
3785
- #: ../modules/user-listing/userlisting.php:1302
3786
- msgid "Avatar Size (Single-userlisting)"
3787
- msgstr "Tamaño del Avatar (Single-userlisting) "
3788
-
3789
- #: ../modules/user-listing/userlisting.php:1302
3790
- msgid "Set the avatar size on the single-userlisting only"
3791
- msgstr "Establecer el tamaño del avatar solamente en el single-userlisting"
3792
-
3793
- #: ../modules/user-listing/userlisting.php:1303
3794
- msgid "Visible only to logged in users?"
3795
- msgstr "¿Visible solamente a los usuario autenticados?"
3796
-
3797
- #: ../modules/user-listing/userlisting.php:1303
3798
- msgid "The userlisting will only be visible only to the logged in users"
3799
- msgstr "La lista de usuario solamente será visible a los usuarios autenticados"
3800
-
3801
- #: ../modules/user-listing/userlisting.php:1304
3802
- msgid "Visible to following Roles"
3803
- msgstr "Visible a los Roles siguientes"
3804
-
3805
- #: ../modules/user-listing/userlisting.php:1304
3806
- msgid "The userlisting will only be visible to the following roles"
3807
- msgstr "La lista de usuario solamente será visible a los roles siguientes"
3808
-
3809
- #: ../modules/user-listing/userlisting.php:1310
3810
- msgid "Userlisting Settings"
3811
- msgstr "Ajustes de Userlisting "
3812
-
3813
- #: ../modules/user-listing/userlisting.php:1331
3814
- msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
3815
- msgstr "¡Usted necesita activar la característica de Userlisting en la pestaña \"Módulos\"!"
3816
-
3817
- #: ../modules/user-listing/userlisting.php:1331
3818
- msgid "You can find it in the Profile Builder menu."
3819
- msgstr "Usted puede encontrarla en el menú de Profile Builder"
3820
-
3821
- #: ../modules/user-listing/userlisting.php:1494
3822
- msgid "No results found!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3823
  msgstr "¡No se encontraron resultados!"
1
+ # Translation of Profile Builder in Spanish (Spain)
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2015-09-29 11:53:40+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
+ #: ../admin/add-ons.php:190
14
+ msgid "Recommended Plugins"
15
+ msgstr ""
16
+
17
+ #: ../admin/add-ons.php:219 ../admin/pms-cross-promotion.php:102
18
+ msgid "Free"
19
+ msgstr ""
20
+
21
+ #: ../admin/add-ons.php:221
22
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
23
+ msgstr ""
24
+
25
+ #: ../admin/add-ons.php:222 ../admin/pms-cross-promotion.php:105
26
+ msgid "More Details"
27
+ msgstr ""
28
+
29
+ #: ../admin/add-ons.php:240 ../admin/pms-cross-promotion.php:88
30
+ #: ../admin/pms-cross-promotion.php:123 ../admin/pms-cross-promotion.php:202
31
+ msgid "Plugin is <strong>inactive</strong>"
32
+ msgstr ""
33
+
34
+ #: ../admin/add-ons.php:242 ../admin/pms-cross-promotion.php:87
35
+ #: ../admin/pms-cross-promotion.php:125 ../admin/pms-cross-promotion.php:204
36
+ msgid "Plugin is <strong>active</strong>"
37
+ msgstr ""
38
+
39
+ #: ../admin/add-ons.php:263 ../admin/pms-cross-promotion.php:146
40
+ msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
41
+ msgstr ""
42
+
43
+ #: ../admin/general-settings.php:62
44
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
45
+ msgstr ""
46
+
47
+ #: ../admin/pms-cross-promotion.php:10
48
+ msgid "Paid Accounts"
49
+ msgstr ""
50
+
51
+ #: ../admin/pms-cross-promotion.php:33
52
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
53
+ msgstr ""
54
+
55
+ #: ../admin/pms-cross-promotion.php:37
56
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
57
+ msgstr ""
58
+
59
+ #: ../admin/pms-cross-promotion.php:40
60
+ msgid "Paid & Free Subscriptions"
61
+ msgstr ""
62
+
63
+ #: ../admin/pms-cross-promotion.php:41
64
+ msgid "Restrict Content"
65
+ msgstr ""
66
+
67
+ #: ../admin/pms-cross-promotion.php:42
68
+ msgid "Member Management"
69
+ msgstr ""
70
+
71
+ #: ../admin/pms-cross-promotion.php:43
72
+ msgid "Email Templates"
73
+ msgstr ""
74
+
75
+ #: ../admin/pms-cross-promotion.php:44
76
+ msgid "Account Management"
77
+ msgstr ""
78
+
79
+ #: ../admin/pms-cross-promotion.php:45
80
+ msgid "Subscription Management"
81
+ msgstr ""
82
+
83
+ #: ../admin/pms-cross-promotion.php:46
84
+ msgid "Payment Management"
85
+ msgstr ""
86
+
87
+ #: ../admin/pms-cross-promotion.php:83
88
+ msgid "Plugin is Active"
89
+ msgstr ""
90
+
91
+ #: ../admin/pms-cross-promotion.php:84
92
+ msgid "Plugin has been activated"
93
+ msgstr ""
94
+
95
+ #: ../admin/pms-cross-promotion.php:91
96
+ msgid "Plugin has been deactivated."
97
+ msgstr ""
98
+
99
+ #: ../admin/pms-cross-promotion.php:104
100
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
101
+ msgstr ""
102
+
103
+ #: ../admin/pms-cross-promotion.php:155
104
+ msgid "Step by Step Quick Setup"
105
+ msgstr ""
106
+
107
+ #: ../admin/pms-cross-promotion.php:239
108
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s. %3$sDismiss%4$s"
109
+ msgstr ""
110
+
111
+ #: ../features/email-confirmation/email-confirmation.php:392
112
+ msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
113
+ msgstr ""
114
+
115
+ #: ../front-end/register.php:130
116
+ msgid "You will soon be redirected automatically."
117
+ msgstr ""
118
+
119
+ #: ../modules/custom-redirects/custom_redirects_admin.php:45
120
+ msgid "After Login"
121
+ msgstr ""
122
+
123
+ #: ../modules/custom-redirects/custom_redirects_admin.php:46
124
+ msgid "After Logout"
125
+ msgstr ""
126
+
127
+ #: ../modules/custom-redirects/custom_redirects_admin.php:47
128
+ msgid "After Registration"
129
+ msgstr ""
130
+
131
+ #: ../modules/custom-redirects/custom_redirects_admin.php:48
132
+ msgid "After Edit Profile"
133
+ msgstr ""
134
+
135
+ #: ../modules/custom-redirects/custom_redirects_admin.php:49
136
+ msgid "After Successful Email Confirmation"
137
+ msgstr ""
138
+
139
+ #: ../modules/custom-redirects/custom_redirects_admin.php:50
140
+ msgid "After Successful Password Reset"
141
+ msgstr ""
142
+
143
+ #: ../modules/custom-redirects/custom_redirects_admin.php:51
144
+ msgid "Dashboard (redirect users from accessing the dashboard)"
145
+ msgstr ""
146
+
147
+ #: ../modules/custom-redirects/custom_redirects_admin.php:55
148
+ msgid "User ID"
149
+ msgstr ""
150
+
151
+ #: ../modules/custom-redirects/custom_redirects_admin.php:61
152
+ msgid "User ID or Username"
153
+ msgstr ""
154
+
155
+ #: ../modules/custom-redirects/custom_redirects_admin.php:62
156
+ msgid "User ID / Username"
157
+ msgstr ""
158
+
159
+ #: ../modules/custom-redirects/custom_redirects_admin.php:62
160
+ msgid "Please select and enter the ID or username of your user."
161
+ msgstr ""
162
+
163
+ #: ../modules/custom-redirects/custom_redirects_admin.php:63
164
+ #: ../modules/custom-redirects/custom_redirects_admin.php:93
165
+ #: ../modules/custom-redirects/custom_redirects_admin.php:112
166
+ #: ../modules/custom-redirects/custom_redirects_admin.php:131
167
+ msgid "Redirect Type"
168
+ msgstr ""
169
+
170
+ #: ../modules/custom-redirects/custom_redirects_admin.php:64
171
+ #: ../modules/custom-redirects/custom_redirects_admin.php:94
172
+ #: ../modules/custom-redirects/custom_redirects_admin.php:113
173
+ #: ../modules/custom-redirects/custom_redirects_admin.php:138
174
+ msgid "Redirect URL"
175
+ msgstr ""
176
+
177
+ #: ../modules/custom-redirects/custom_redirects_admin.php:64
178
+ #: ../modules/custom-redirects/custom_redirects_admin.php:94
179
+ #: ../modules/custom-redirects/custom_redirects_admin.php:113
180
+ #: ../modules/custom-redirects/custom_redirects_admin.php:138
181
+ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
182
+ msgstr ""
183
+
184
+ #: ../modules/custom-redirects/custom_redirects_admin.php:71
185
+ #: ../modules/custom-redirects/custom_redirects_admin.php:240
186
+ msgid "Individual User Redirects"
187
+ msgstr ""
188
+
189
+ #: ../modules/custom-redirects/custom_redirects_admin.php:84
190
+ msgid "... Choose"
191
+ msgstr ""
192
+
193
+ #: ../modules/custom-redirects/custom_redirects_admin.php:92
194
+ msgid "Select a user role."
195
+ msgstr ""
196
+
197
+ #: ../modules/custom-redirects/custom_redirects_admin.php:101
198
+ #: ../modules/custom-redirects/custom_redirects_admin.php:241
199
+ msgid "User Role based Redirects"
200
+ msgstr ""
201
+
202
+ #: ../modules/custom-redirects/custom_redirects_admin.php:120
203
+ #: ../modules/custom-redirects/custom_redirects_admin.php:242
204
+ msgid "Global Redirects"
205
+ msgstr ""
206
+
207
+ #: ../modules/custom-redirects/custom_redirects_admin.php:133
208
+ msgid "Login ( wp_login.php )"
209
+ msgstr ""
210
+
211
+ #: ../modules/custom-redirects/custom_redirects_admin.php:134
212
+ msgid "Register ( wp-login.php?action=register )"
213
+ msgstr ""
214
+
215
+ #: ../modules/custom-redirects/custom_redirects_admin.php:135
216
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
217
+ msgstr ""
218
+
219
+ #: ../modules/custom-redirects/custom_redirects_admin.php:136
220
+ msgid "Author Archive ( http://sitename.com/author/admin )"
221
+ msgstr ""
222
+
223
+ #: ../modules/custom-redirects/custom_redirects_admin.php:145
224
+ msgid "Redirect Default WordPress Forms and Pages"
225
+ msgstr ""
226
+
227
+ #: ../modules/custom-redirects/custom_redirects_admin.php:157
228
+ msgid "How does this work?"
229
+ msgstr ""
230
+
231
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
232
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
233
+ msgstr ""
234
+
235
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
236
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
237
+ msgstr ""
238
+
239
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
240
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
241
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
242
+ msgstr ""
243
+
244
+ #: ../modules/custom-redirects/custom_redirects_admin.php:236
245
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
246
+ msgstr ""
247
+
248
+ #: ../modules/custom-redirects/custom_redirects_admin.php:238
249
+ msgid "Which redirect happens depends on the following priority:"
250
+ msgstr ""
251
+
252
+ #: ../modules/custom-redirects/custom_redirects_admin.php:243
253
+ msgid "Individual redirects defined in shortcodes or in the Multiple Registration and Edit Profile form settings. (<strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects)"
254
+ msgstr ""
255
+
256
+ #: ../modules/custom-redirects/custom_redirects_admin.php:246
257
+ msgid "Redirect Default WordPress forms and pages"
258
+ msgstr ""
259
+
260
+ #: ../modules/custom-redirects/custom_redirects_admin.php:247
261
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
262
+ msgstr ""
263
+
264
+ #: ../modules/custom-redirects/custom_redirects_admin.php:249
265
+ msgid "Available tags for dynamic URLs"
266
+ msgstr ""
267
+
268
+ #: ../modules/custom-redirects/custom_redirects_admin.php:250
269
+ msgid "You use the following tags in your URLs to redirect users to various pages."
270
+ msgstr ""
271
+
272
+ #: ../modules/custom-redirects/custom_redirects_admin.php:252
273
+ msgid "generates a url of the current website homepage."
274
+ msgstr ""
275
+
276
+ #: ../modules/custom-redirects/custom_redirects_admin.php:253
277
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
278
+ msgstr ""
279
+
280
+ #: ../modules/custom-redirects/custom_redirects_admin.php:254
281
+ msgid "the ID of the user"
282
+ msgstr ""
283
+
284
+ #: ../modules/custom-redirects/custom_redirects_admin.php:255
285
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
286
+ msgstr ""
287
+
288
+ #: ../modules/custom-redirects/custom_redirects_admin.php:256
289
+ msgid "the URL of the previously visited page"
290
+ msgstr ""
291
+
292
+ #: ../modules/custom-redirects/custom_redirects_admin.php:339
293
+ #: ../modules/custom-redirects/custom_redirects_admin.php:345
294
+ #: ../modules/custom-redirects/custom_redirects_admin.php:351
295
+ msgid "You can't add duplicate redirects!"
296
+ msgstr ""
297
+
298
+ #: ../admin/admin-functions.php:40
299
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
300
+ msgstr ""
301
+
302
+ #: ../admin/basic-info.php:37
303
+ msgid "Friction-less login using %s shortcode or a widget."
304
+ msgstr ""
305
+
306
+ #: ../admin/basic-info.php:41
307
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
308
+ msgstr ""
309
+
310
+ #: ../admin/basic-info.php:45
311
+ msgid "Straight forward edit profile forms using %s shortcode."
312
+ msgstr ""
313
+
314
+ #: ../admin/basic-info.php:58
315
+ msgid "Allow users to recover their password in the front-end using the %s."
316
+ msgstr ""
317
+
318
+ #: ../admin/basic-info.php:130
319
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
320
+ msgstr ""
321
+
322
+ #: ../admin/general-settings.php:118
323
+ msgid "\"Admin Approval\" on User Role:"
324
+ msgstr ""
325
+
326
+ #: ../admin/general-settings.php:137
327
+ msgid "Select on what user roles to activate Admin Approval."
328
+ msgstr ""
329
+
330
+ #: ../admin/manage-fields.php:109
331
+ msgid "Display on PB forms"
332
+ msgstr ""
333
+
334
+ #: ../admin/manage-fields.php:109
335
+ msgid "PB Login"
336
+ msgstr ""
337
+
338
+ #: ../admin/manage-fields.php:109
339
+ msgid "PB Register"
340
+ msgstr ""
341
+
342
+ #: ../admin/manage-fields.php:109
343
+ msgid "PB Recover Password"
344
+ msgstr ""
345
+
346
+ #: ../admin/manage-fields.php:109
347
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
348
+ msgstr ""
349
+
350
+ #: ../admin/manage-fields.php:110
351
+ msgid "Display on default WP forms"
352
+ msgstr ""
353
+
354
+ #: ../admin/manage-fields.php:110
355
+ msgid "Default WP Login"
356
+ msgstr ""
357
+
358
+ #: ../admin/manage-fields.php:110
359
+ msgid "Default WP Register"
360
+ msgstr ""
361
+
362
+ #: ../admin/manage-fields.php:110
363
+ msgid "Default WP Recover Password"
364
+ msgstr ""
365
+
366
+ #: ../admin/manage-fields.php:110
367
+ msgid "Select on which default WP forms to display reCAPTCHA"
368
+ msgstr ""
369
+
370
+ #: ../admin/manage-fields.php:116 ../admin/manage-fields.php:117
371
+ msgid "Default option of the field"
372
+ msgstr ""
373
+
374
+ #: ../admin/manage-fields.php:237
375
+ msgid "Afghanistan"
376
+ msgstr "Afghanistan"
377
+
378
+ #: ../admin/manage-fields.php:238
379
+ msgid "Aland Islands"
380
+ msgstr "Aland Islands"
381
+
382
+ #: ../admin/manage-fields.php:239
383
+ msgid "Albania"
384
+ msgstr "Albania"
385
+
386
+ #: ../admin/manage-fields.php:240
387
+ msgid "Algeria"
388
+ msgstr "Algeria"
389
+
390
+ #: ../admin/manage-fields.php:241
391
+ msgid "American Samoa"
392
+ msgstr "American Samoa"
393
+
394
+ #: ../admin/manage-fields.php:242
395
+ msgid "Andorra"
396
+ msgstr "Andorra"
397
+
398
+ #: ../admin/manage-fields.php:243
399
+ msgid "Angola"
400
+ msgstr "Angola"
401
+
402
+ #: ../admin/manage-fields.php:244
403
+ msgid "Anguilla"
404
+ msgstr "Anguilla"
405
+
406
+ #: ../admin/manage-fields.php:245
407
+ msgid "Antarctica"
408
+ msgstr "Antarctica"
409
+
410
+ #: ../admin/manage-fields.php:246
411
+ msgid "Antigua and Barbuda"
412
+ msgstr "Antigua and Barbuda"
413
+
414
+ #: ../admin/manage-fields.php:247
415
+ msgid "Argentina"
416
+ msgstr "Argentina"
417
+
418
+ #: ../admin/manage-fields.php:248
419
+ msgid "Armenia"
420
+ msgstr "Armenia"
421
+
422
+ #: ../admin/manage-fields.php:249
423
+ msgid "Aruba"
424
+ msgstr "Aruba"
425
+
426
+ #: ../admin/manage-fields.php:250
427
+ msgid "Australia"
428
+ msgstr "Australia"
429
+
430
+ #: ../admin/manage-fields.php:251
431
+ msgid "Austria"
432
+ msgstr "Austria"
433
+
434
+ #: ../admin/manage-fields.php:252
435
+ msgid "Azerbaijan"
436
+ msgstr "Azerbaijan"
437
+
438
+ #: ../admin/manage-fields.php:253
439
+ msgid "Bahamas"
440
+ msgstr "Bahamas"
441
+
442
+ #: ../admin/manage-fields.php:254
443
+ msgid "Bahrain"
444
+ msgstr "Bahrain"
445
+
446
+ #: ../admin/manage-fields.php:255
447
+ msgid "Bangladesh"
448
+ msgstr "Bangladesh"
449
+
450
+ #: ../admin/manage-fields.php:256
451
+ msgid "Barbados"
452
+ msgstr "Barbados"
453
+
454
+ #: ../admin/manage-fields.php:257
455
+ msgid "Belarus"
456
+ msgstr "Belarus"
457
+
458
+ #: ../admin/manage-fields.php:258
459
+ msgid "Belgium"
460
+ msgstr "Belgium"
461
+
462
+ #: ../admin/manage-fields.php:259
463
+ msgid "Belize"
464
+ msgstr "Belize"
465
+
466
+ #: ../admin/manage-fields.php:260
467
+ msgid "Benin"
468
+ msgstr "Benin"
469
+
470
+ #: ../admin/manage-fields.php:261
471
+ msgid "Bermuda"
472
+ msgstr "Bermuda"
473
+
474
+ #: ../admin/manage-fields.php:262
475
+ msgid "Bhutan"
476
+ msgstr "Bhutan"
477
+
478
+ #: ../admin/manage-fields.php:263
479
+ msgid "Bolivia"
480
+ msgstr "Bolivia"
481
+
482
+ #: ../admin/manage-fields.php:264
483
+ msgid "Bonaire, Saint Eustatius and Saba"
484
+ msgstr "Bonaire, Saint Eustatius and Saba"
485
+
486
+ #: ../admin/manage-fields.php:265
487
+ msgid "Bosnia and Herzegovina"
488
+ msgstr "Bosnia and Herzegovina"
489
+
490
+ #: ../admin/manage-fields.php:266
491
+ msgid "Botswana"
492
+ msgstr "Botswana"
493
+
494
+ #: ../admin/manage-fields.php:267
495
+ msgid "Bouvet Island"
496
+ msgstr "Bouvet Island"
497
+
498
+ #: ../admin/manage-fields.php:268
499
+ msgid "Brazil"
500
+ msgstr "Brazil"
501
+
502
+ #: ../admin/manage-fields.php:269
503
+ msgid "British Indian Ocean Territory"
504
+ msgstr "British Indian Ocean Territory"
505
+
506
+ #: ../admin/manage-fields.php:270
507
+ msgid "British Virgin Islands"
508
+ msgstr "British Virgin Islands"
509
+
510
+ #: ../admin/manage-fields.php:271
511
+ msgid "Brunei"
512
+ msgstr "Brunei"
513
+
514
+ #: ../admin/manage-fields.php:272
515
+ msgid "Bulgaria"
516
+ msgstr "Bulgaria"
517
+
518
+ #: ../admin/manage-fields.php:273
519
+ msgid "Burkina Faso"
520
+ msgstr "Burkina Faso"
521
+
522
+ #: ../admin/manage-fields.php:274
523
+ msgid "Burundi"
524
+ msgstr "Burundi"
525
+
526
+ #: ../admin/manage-fields.php:275
527
+ msgid "Cambodia"
528
+ msgstr "Cambodia"
529
+
530
+ #: ../admin/manage-fields.php:276
531
+ msgid "Cameroon"
532
+ msgstr "Cameroon"
533
+
534
+ #: ../admin/manage-fields.php:277
535
+ msgid "Canada"
536
+ msgstr "Canada"
537
+
538
+ #: ../admin/manage-fields.php:278
539
+ msgid "Cape Verde"
540
+ msgstr "Cape Verde"
541
+
542
+ #: ../admin/manage-fields.php:279
543
+ msgid "Cayman Islands"
544
+ msgstr "Cayman Islands"
545
+
546
+ #: ../admin/manage-fields.php:280
547
+ msgid "Central African Republic"
548
+ msgstr "Central African Republic"
549
+
550
+ #: ../admin/manage-fields.php:281
551
+ msgid "Chad"
552
+ msgstr "Chad"
553
+
554
+ #: ../admin/manage-fields.php:282
555
+ msgid "Chile"
556
+ msgstr "Chile"
557
+
558
+ #: ../admin/manage-fields.php:283
559
+ msgid "China"
560
+ msgstr "China"
561
+
562
+ #: ../admin/manage-fields.php:284
563
+ msgid "Christmas Island"
564
+ msgstr "Christmas Island"
565
+
566
+ #: ../admin/manage-fields.php:285
567
+ msgid "Cocos Islands"
568
+ msgstr "Cocos Islands"
569
+
570
+ #: ../admin/manage-fields.php:286
571
+ msgid "Colombia"
572
+ msgstr "Colombia"
573
+
574
+ #: ../admin/manage-fields.php:287
575
+ msgid "Comoros"
576
+ msgstr "Comoros"
577
+
578
+ #: ../admin/manage-fields.php:288
579
+ msgid "Cook Islands"
580
+ msgstr "Cook Islands"
581
+
582
+ #: ../admin/manage-fields.php:289
583
+ msgid "Costa Rica"
584
+ msgstr "Costa Rica"
585
+
586
+ #: ../admin/manage-fields.php:290
587
+ msgid "Croatia"
588
+ msgstr "Croatia"
589
+
590
+ #: ../admin/manage-fields.php:291
591
+ msgid "Cuba"
592
+ msgstr "Cuba"
593
+
594
+ #: ../admin/manage-fields.php:292
595
+ msgid "Curacao"
596
+ msgstr "Curacao"
597
+
598
+ #: ../admin/manage-fields.php:293
599
+ msgid "Cyprus"
600
+ msgstr "Cyprus"
601
+
602
+ #: ../admin/manage-fields.php:294
603
+ msgid "Czech Republic"
604
+ msgstr "Czech Republic"
605
+
606
+ #: ../admin/manage-fields.php:295
607
+ msgid "Democratic Republic of the Congo"
608
+ msgstr "Democratic Republic of the Congo"
609
+
610
+ #: ../admin/manage-fields.php:296
611
+ msgid "Denmark"
612
+ msgstr "Denmark"
613
+
614
+ #: ../admin/manage-fields.php:297
615
+ msgid "Djibouti"
616
+ msgstr "Djibouti"
617
+
618
+ #: ../admin/manage-fields.php:298
619
+ msgid "Dominica"
620
+ msgstr "Dominica"
621
+
622
+ #: ../admin/manage-fields.php:299
623
+ msgid "Dominican Republic"
624
+ msgstr "Dominican Republic"
625
+
626
+ #: ../admin/manage-fields.php:300
627
+ msgid "East Timor"
628
+ msgstr "East Timor"
629
+
630
+ #: ../admin/manage-fields.php:301
631
+ msgid "Ecuador"
632
+ msgstr "Ecuador"
633
+
634
+ #: ../admin/manage-fields.php:302
635
+ msgid "Egypt"
636
+ msgstr "Egypt"
637
+
638
+ #: ../admin/manage-fields.php:303
639
+ msgid "El Salvador"
640
+ msgstr "El Salvador"
641
+
642
+ #: ../admin/manage-fields.php:304
643
+ msgid "Equatorial Guinea"
644
+ msgstr "Equatorial Guinea"
645
+
646
+ #: ../admin/manage-fields.php:305
647
+ msgid "Eritrea"
648
+ msgstr "Eritrea"
649
+
650
+ #: ../admin/manage-fields.php:306
651
+ msgid "Estonia"
652
+ msgstr "Estonia"
653
+
654
+ #: ../admin/manage-fields.php:307
655
+ msgid "Ethiopia"
656
+ msgstr "Ethiopia"
657
+
658
+ #: ../admin/manage-fields.php:308
659
+ msgid "Falkland Islands"
660
+ msgstr "Falkland Islands"
661
+
662
+ #: ../admin/manage-fields.php:309
663
+ msgid "Faroe Islands"
664
+ msgstr "Faroe Islands"
665
+
666
+ #: ../admin/manage-fields.php:310
667
+ msgid "Fiji"
668
+ msgstr "Fiji"
669
+
670
+ #: ../admin/manage-fields.php:311
671
+ msgid "Finland"
672
+ msgstr "Finland"
673
+
674
+ #: ../admin/manage-fields.php:312
675
+ msgid "France"
676
+ msgstr "France"
677
+
678
+ #: ../admin/manage-fields.php:313
679
+ msgid "French Guiana"
680
+ msgstr "French Guiana"
681
+
682
+ #: ../admin/manage-fields.php:314
683
+ msgid "French Polynesia"
684
+ msgstr "French Polynesia"
685
+
686
+ #: ../admin/manage-fields.php:315
687
+ msgid "French Southern Territories"
688
+ msgstr "French Southern Territories"
689
+
690
+ #: ../admin/manage-fields.php:316
691
+ msgid "Gabon"
692
+ msgstr "Gabon"
693
+
694
+ #: ../admin/manage-fields.php:317
695
+ msgid "Gambia"
696
+ msgstr "Gambia"
697
+
698
+ #: ../admin/manage-fields.php:318
699
+ msgid "Georgia"
700
+ msgstr "Georgia"
701
+
702
+ #: ../admin/manage-fields.php:319
703
+ msgid "Germany"
704
+ msgstr "Germany"
705
+
706
+ #: ../admin/manage-fields.php:320
707
+ msgid "Ghana"
708
+ msgstr "Ghana"
709
+
710
+ #: ../admin/manage-fields.php:321
711
+ msgid "Gibraltar"
712
+ msgstr "Gibraltar"
713
+
714
+ #: ../admin/manage-fields.php:322
715
+ msgid "Greece"
716
+ msgstr "Greece"
717
+
718
+ #: ../admin/manage-fields.php:323
719
+ msgid "Greenland"
720
+ msgstr "Greenland"
721
+
722
+ #: ../admin/manage-fields.php:324
723
+ msgid "Grenada"
724
+ msgstr "Grenada"
725
+
726
+ #: ../admin/manage-fields.php:325
727
+ msgid "Guadeloupe"
728
+ msgstr "Guadeloupe"
729
+
730
+ #: ../admin/manage-fields.php:326
731
+ msgid "Guam"
732
+ msgstr "Guam"
733
+
734
+ #: ../admin/manage-fields.php:327
735
+ msgid "Guatemala"
736
+ msgstr "Guatemala"
737
+
738
+ #: ../admin/manage-fields.php:328
739
+ msgid "Guernsey"
740
+ msgstr "Guernsey"
741
+
742
+ #: ../admin/manage-fields.php:329
743
+ msgid "Guinea"
744
+ msgstr "Guinea"
745
+
746
+ #: ../admin/manage-fields.php:330
747
+ msgid "Guinea-Bissau"
748
+ msgstr "Guinea-Bissau"
749
+
750
+ #: ../admin/manage-fields.php:331
751
+ msgid "Guyana"
752
+ msgstr "Guyana"
753
+
754
+ #: ../admin/manage-fields.php:332
755
+ msgid "Haiti"
756
+ msgstr "Haiti"
757
+
758
+ #: ../admin/manage-fields.php:333
759
+ msgid "Heard Island and McDonald Islands"
760
+ msgstr "Heard Island and McDonald Islands"
761
+
762
+ #: ../admin/manage-fields.php:334
763
+ msgid "Honduras"
764
+ msgstr "Honduras"
765
+
766
+ #: ../admin/manage-fields.php:335
767
+ msgid "Hong Kong"
768
+ msgstr "Hong Kong"
769
+
770
+ #: ../admin/manage-fields.php:336
771
+ msgid "Hungary"
772
+ msgstr "Hungary"
773
+
774
+ #: ../admin/manage-fields.php:337
775
+ msgid "Iceland"
776
+ msgstr "Iceland"
777
+
778
+ #: ../admin/manage-fields.php:338
779
+ msgid "India"
780
+ msgstr "India"
781
+
782
+ #: ../admin/manage-fields.php:339
783
+ msgid "Indonesia"
784
+ msgstr "Indonesia"
785
+
786
+ #: ../admin/manage-fields.php:340
787
+ msgid "Iran"
788
+ msgstr "Iran"
789
+
790
+ #: ../admin/manage-fields.php:341
791
+ msgid "Iraq"
792
+ msgstr "Iraq"
793
+
794
+ #: ../admin/manage-fields.php:342
795
+ msgid "Ireland"
796
+ msgstr "Ireland"
797
+
798
+ #: ../admin/manage-fields.php:343
799
+ msgid "Isle of Man"
800
+ msgstr "Isle of Man"
801
+
802
+ #: ../admin/manage-fields.php:344
803
+ msgid "Israel"
804
+ msgstr "Israel"
805
+
806
+ #: ../admin/manage-fields.php:345
807
+ msgid "Italy"
808
+ msgstr "Italy"
809
+
810
+ #: ../admin/manage-fields.php:346
811
+ msgid "Ivory Coast"
812
+ msgstr "Ivory Coast"
813
+
814
+ #: ../admin/manage-fields.php:347
815
+ msgid "Jamaica"
816
+ msgstr "Jamaica"
817
+
818
+ #: ../admin/manage-fields.php:348
819
+ msgid "Japan"
820
+ msgstr "Japan"
821
+
822
+ #: ../admin/manage-fields.php:349
823
+ msgid "Jersey"
824
+ msgstr "Jersey"
825
+
826
+ #: ../admin/manage-fields.php:350
827
+ msgid "Jordan"
828
+ msgstr "Jordan"
829
+
830
+ #: ../admin/manage-fields.php:351
831
+ msgid "Kazakhstan"
832
+ msgstr "Kazakhstan"
833
+
834
+ #: ../admin/manage-fields.php:352
835
+ msgid "Kenya"
836
+ msgstr "Kenya"
837
+
838
+ #: ../admin/manage-fields.php:353
839
+ msgid "Kiribati"
840
+ msgstr "Kiribati"
841
+
842
+ #: ../admin/manage-fields.php:354
843
+ msgid "Kosovo"
844
+ msgstr "Kosovo"
845
+
846
+ #: ../admin/manage-fields.php:355
847
+ msgid "Kuwait"
848
+ msgstr "Kuwait"
849
+
850
+ #: ../admin/manage-fields.php:356
851
+ msgid "Kyrgyzstan"
852
+ msgstr "Kyrgyzstan"
853
+
854
+ #: ../admin/manage-fields.php:357
855
+ msgid "Laos"
856
+ msgstr "Laos"
857
+
858
+ #: ../admin/manage-fields.php:358
859
+ msgid "Latvia"
860
+ msgstr "Latvia"
861
+
862
+ #: ../admin/manage-fields.php:359
863
+ msgid "Lebanon"
864
+ msgstr "Lebanon"
865
+
866
+ #: ../admin/manage-fields.php:360
867
+ msgid "Lesotho"
868
+ msgstr "Lesotho"
869
+
870
+ #: ../admin/manage-fields.php:361
871
+ msgid "Liberia"
872
+ msgstr "Liberia"
873
+
874
+ #: ../admin/manage-fields.php:362
875
+ msgid "Libya"
876
+ msgstr "Libya"
877
+
878
+ #: ../admin/manage-fields.php:363
879
+ msgid "Liechtenstein"
880
+ msgstr "Liechtenstein"
881
+
882
+ #: ../admin/manage-fields.php:364
883
+ msgid "Lithuania"
884
+ msgstr "Lithuania"
885
+
886
+ #: ../admin/manage-fields.php:365
887
+ msgid "Luxembourg"
888
+ msgstr "Luxembourg"
889
+
890
+ #: ../admin/manage-fields.php:366
891
+ msgid "Macao"
892
+ msgstr "Macao"
893
+
894
+ #: ../admin/manage-fields.php:367
895
+ msgid "Macedonia"
896
+ msgstr "Macedonia"
897
+
898
+ #: ../admin/manage-fields.php:368
899
+ msgid "Madagascar"
900
+ msgstr "Madagascar"
901
+
902
+ #: ../admin/manage-fields.php:369
903
+ msgid "Malawi"
904
+ msgstr "Malawi"
905
+
906
+ #: ../admin/manage-fields.php:370
907
+ msgid "Malaysia"
908
+ msgstr "Malaysia"
909
+
910
+ #: ../admin/manage-fields.php:371
911
+ msgid "Maldives"
912
+ msgstr "Maldives"
913
+
914
+ #: ../admin/manage-fields.php:372
915
+ msgid "Mali"
916
+ msgstr "Mali"
917
+
918
+ #: ../admin/manage-fields.php:373
919
+ msgid "Malta"
920
+ msgstr "Malta"
921
+
922
+ #: ../admin/manage-fields.php:374
923
+ msgid "Marshall Islands"
924
+ msgstr "Marshall Islands"
925
+
926
+ #: ../admin/manage-fields.php:375
927
+ msgid "Martinique"
928
+ msgstr "Martinique"
929
+
930
+ #: ../admin/manage-fields.php:376
931
+ msgid "Mauritania"
932
+ msgstr "Mauritania"
933
+
934
+ #: ../admin/manage-fields.php:377
935
+ msgid "Mauritius"
936
+ msgstr "Mauritius"
937
+
938
+ #: ../admin/manage-fields.php:378
939
+ msgid "Mayotte"
940
+ msgstr "Mayotte"
941
+
942
+ #: ../admin/manage-fields.php:379
943
+ msgid "Mexico"
944
+ msgstr "Mexico"
945
+
946
+ #: ../admin/manage-fields.php:380
947
+ msgid "Micronesia"
948
+ msgstr "Micronesia"
949
+
950
+ #: ../admin/manage-fields.php:381
951
+ msgid "Moldova"
952
+ msgstr "Moldova"
953
+
954
+ #: ../admin/manage-fields.php:382
955
+ msgid "Monaco"
956
+ msgstr "Monaco"
957
+
958
+ #: ../admin/manage-fields.php:383
959
+ msgid "Mongolia"
960
+ msgstr "Mongolia"
961
+
962
+ #: ../admin/manage-fields.php:384
963
+ msgid "Montenegro"
964
+ msgstr "Montenegro"
965
+
966
+ #: ../admin/manage-fields.php:385
967
+ msgid "Montserrat"
968
+ msgstr "Montserrat"
969
+
970
+ #: ../admin/manage-fields.php:386
971
+ msgid "Morocco"
972
+ msgstr "Morocco"
973
+
974
+ #: ../admin/manage-fields.php:387
975
+ msgid "Mozambique"
976
+ msgstr "Mozambique"
977
+
978
+ #: ../admin/manage-fields.php:388
979
+ msgid "Myanmar"
980
+ msgstr "Myanmar"
981
+
982
+ #: ../admin/manage-fields.php:389
983
+ msgid "Namibia"
984
+ msgstr "Namibia"
985
+
986
+ #: ../admin/manage-fields.php:390
987
+ msgid "Nauru"
988
+ msgstr "Nauru"
989
+
990
+ #: ../admin/manage-fields.php:391
991
+ msgid "Nepal"
992
+ msgstr "Nepal"
993
+
994
+ #: ../admin/manage-fields.php:392
995
+ msgid "Netherlands"
996
+ msgstr "Netherlands"
997
+
998
+ #: ../admin/manage-fields.php:393
999
+ msgid "New Caledonia"
1000
+ msgstr "New Caledonia"
1001
+
1002
+ #: ../admin/manage-fields.php:394
1003
+ msgid "New Zealand"
1004
+ msgstr "New Zealand"
1005
+
1006
+ #: ../admin/manage-fields.php:395
1007
+ msgid "Nicaragua"
1008
+ msgstr "Nicaragua"
1009
+
1010
+ #: ../admin/manage-fields.php:396
1011
+ msgid "Niger"
1012
+ msgstr "Niger"
1013
+
1014
+ #: ../admin/manage-fields.php:397
1015
+ msgid "Nigeria"
1016
+ msgstr "Nigeria"
1017
+
1018
+ #: ../admin/manage-fields.php:398
1019
+ msgid "Niue"
1020
+ msgstr "Niue"
1021
+
1022
+ #: ../admin/manage-fields.php:399
1023
+ msgid "Norfolk Island"
1024
+ msgstr "Norfolk Island"
1025
+
1026
+ #: ../admin/manage-fields.php:400
1027
+ msgid "North Korea"
1028
+ msgstr "North Korea"
1029
+
1030
+ #: ../admin/manage-fields.php:401
1031
+ msgid "Northern Mariana Islands"
1032
+ msgstr "Northern Mariana Islands"
1033
+
1034
+ #: ../admin/manage-fields.php:402
1035
+ msgid "Norway"
1036
+ msgstr "Norway"
1037
+
1038
+ #: ../admin/manage-fields.php:403
1039
+ msgid "Oman"
1040
+ msgstr "Oman"
1041
+
1042
+ #: ../admin/manage-fields.php:404
1043
+ msgid "Pakistan"
1044
+ msgstr "Pakistan"
1045
+
1046
+ #: ../admin/manage-fields.php:405
1047
+ msgid "Palau"
1048
+ msgstr "Palau"
1049
+
1050
+ #: ../admin/manage-fields.php:406
1051
+ msgid "Palestinian Territory"
1052
+ msgstr "Palestinian Territory"
1053
+
1054
+ #: ../admin/manage-fields.php:407
1055
+ msgid "Panama"
1056
+ msgstr "Panama"
1057
+
1058
+ #: ../admin/manage-fields.php:408
1059
+ msgid "Papua New Guinea"
1060
+ msgstr "Papua New Guinea"
1061
+
1062
+ #: ../admin/manage-fields.php:409
1063
+ msgid "Paraguay"
1064
+ msgstr "Paraguay"
1065
+
1066
+ #: ../admin/manage-fields.php:410
1067
+ msgid "Peru"
1068
+ msgstr "Peru"
1069
+
1070
+ #: ../admin/manage-fields.php:411
1071
+ msgid "Philippines"
1072
+ msgstr "Philippines"
1073
+
1074
+ #: ../admin/manage-fields.php:412
1075
+ msgid "Pitcairn"
1076
+ msgstr "Pitcairn"
1077
+
1078
+ #: ../admin/manage-fields.php:413
1079
+ msgid "Poland"
1080
+ msgstr "Poland"
1081
+
1082
+ #: ../admin/manage-fields.php:414
1083
+ msgid "Portugal"
1084
+ msgstr "Portugal"
1085
+
1086
+ #: ../admin/manage-fields.php:415
1087
+ msgid "Puerto Rico"
1088
+ msgstr "Puerto Rico"
1089
+
1090
+ #: ../admin/manage-fields.php:416
1091
+ msgid "Qatar"
1092
+ msgstr "Qatar"
1093
+
1094
+ #: ../admin/manage-fields.php:417
1095
+ msgid "Republic of the Congo"
1096
+ msgstr "Republic of the Congo"
1097
+
1098
+ #: ../admin/manage-fields.php:418
1099
+ msgid "Reunion"
1100
+ msgstr "Reunion"
1101
+
1102
+ #: ../admin/manage-fields.php:419
1103
+ msgid "Romania"
1104
+ msgstr "Romania"
1105
+
1106
+ #: ../admin/manage-fields.php:420
1107
+ msgid "Russia"
1108
+ msgstr "Russia"
1109
+
1110
+ #: ../admin/manage-fields.php:421
1111
+ msgid "Rwanda"
1112
+ msgstr "Rwanda"
1113
+
1114
+ #: ../admin/manage-fields.php:422
1115
+ msgid "Saint Barthelemy"
1116
+ msgstr "Saint Barthelemy"
1117
+
1118
+ #: ../admin/manage-fields.php:423
1119
+ msgid "Saint Helena"
1120
+ msgstr "Saint Helena"
1121
+
1122
+ #: ../admin/manage-fields.php:424
1123
+ msgid "Saint Kitts and Nevis"
1124
+ msgstr "Saint Kitts and Nevis"
1125
+
1126
+ #: ../admin/manage-fields.php:425
1127
+ msgid "Saint Lucia"
1128
+ msgstr "Saint Lucia"
1129
+
1130
+ #: ../admin/manage-fields.php:426
1131
+ msgid "Saint Martin"
1132
+ msgstr "Saint Martin"
1133
+
1134
+ #: ../admin/manage-fields.php:427
1135
+ msgid "Saint Pierre and Miquelon"
1136
+ msgstr "Saint Pierre and Miquelon"
1137
+
1138
+ #: ../admin/manage-fields.php:428
1139
+ msgid "Saint Vincent and the Grenadines"
1140
+ msgstr "Saint Vincent and the Grenadines"
1141
+
1142
+ #: ../admin/manage-fields.php:429
1143
+ msgid "Samoa"
1144
+ msgstr "Samoa"
1145
+
1146
+ #: ../admin/manage-fields.php:430
1147
+ msgid "San Marino"
1148
+ msgstr "San Marino"
1149
+
1150
+ #: ../admin/manage-fields.php:431
1151
+ msgid "Sao Tome and Principe"
1152
+ msgstr "Sao Tome and Principe"
1153
+
1154
+ #: ../admin/manage-fields.php:432
1155
+ msgid "Saudi Arabia"
1156
+ msgstr "Saudi Arabia"
1157
+
1158
+ #: ../admin/manage-fields.php:433
1159
+ msgid "Senegal"
1160
+ msgstr "Senegal"
1161
+
1162
+ #: ../admin/manage-fields.php:434
1163
+ msgid "Serbia"
1164
+ msgstr "Serbia"
1165
+
1166
+ #: ../admin/manage-fields.php:435
1167
+ msgid "Seychelles"
1168
+ msgstr "Seychelles"
1169
+
1170
+ #: ../admin/manage-fields.php:436
1171
+ msgid "Sierra Leone"
1172
+ msgstr "Sierra Leone"
1173
+
1174
+ #: ../admin/manage-fields.php:437
1175
+ msgid "Singapore"
1176
+ msgstr "Singapore"
1177
+
1178
+ #: ../admin/manage-fields.php:438
1179
+ msgid "Sint Maarten"
1180
+ msgstr "Sint Maarten"
1181
+
1182
+ #: ../admin/manage-fields.php:439
1183
+ msgid "Slovakia"
1184
+ msgstr "Slovakia"
1185
+
1186
+ #: ../admin/manage-fields.php:440
1187
+ msgid "Slovenia"
1188
+ msgstr "Slovenia"
1189
+
1190
+ #: ../admin/manage-fields.php:441
1191
+ msgid "Solomon Islands"
1192
+ msgstr "Solomon Islands"
1193
+
1194
+ #: ../admin/manage-fields.php:442
1195
+ msgid "Somalia"
1196
+ msgstr "Somalia"
1197
+
1198
+ #: ../admin/manage-fields.php:443
1199
+ msgid "South Africa"
1200
+ msgstr "South Africa"
1201
+
1202
+ #: ../admin/manage-fields.php:444
1203
+ msgid "South Georgia and the South Sandwich Islands"
1204
+ msgstr "South Georgia and the South Sandwich Islands"
1205
+
1206
+ #: ../admin/manage-fields.php:445
1207
+ msgid "South Korea"
1208
+ msgstr "South Korea"
1209
+
1210
+ #: ../admin/manage-fields.php:446
1211
+ msgid "South Sudan"
1212
+ msgstr "South Sudan"
1213
+
1214
+ #: ../admin/manage-fields.php:447
1215
+ msgid "Spain"
1216
+ msgstr "Spain"
1217
+
1218
+ #: ../admin/manage-fields.php:448
1219
+ msgid "Sri Lanka"
1220
+ msgstr "Sri Lanka"
1221
+
1222
+ #: ../admin/manage-fields.php:449
1223
+ msgid "Sudan"
1224
+ msgstr "Sudan"
1225
+
1226
+ #: ../admin/manage-fields.php:450
1227
+ msgid "Suriname"
1228
+ msgstr "Suriname"
1229
+
1230
+ #: ../admin/manage-fields.php:451
1231
+ msgid "Svalbard and Jan Mayen"
1232
+ msgstr "Svalbard and Jan Mayen"
1233
+
1234
+ #: ../admin/manage-fields.php:452
1235
+ msgid "Swaziland"
1236
+ msgstr "Swaziland"
1237
+
1238
+ #: ../admin/manage-fields.php:453
1239
+ msgid "Sweden"
1240
+ msgstr "Sweden"
1241
+
1242
+ #: ../admin/manage-fields.php:454
1243
+ msgid "Switzerland"
1244
+ msgstr "Switzerland"
1245
+
1246
+ #: ../admin/manage-fields.php:455
1247
+ msgid "Syria"
1248
+ msgstr "Syria"
1249
+
1250
+ #: ../admin/manage-fields.php:456
1251
+ msgid "Taiwan"
1252
+ msgstr "Taiwan"
1253
+
1254
+ #: ../admin/manage-fields.php:457
1255
+ msgid "Tajikistan"
1256
+ msgstr "Tajikistan"
1257
+
1258
+ #: ../admin/manage-fields.php:458
1259
+ msgid "Tanzania"
1260
+ msgstr "Tanzania"
1261
+
1262
+ #: ../admin/manage-fields.php:459
1263
+ msgid "Thailand"
1264
+ msgstr "Thailand"
1265
+
1266
+ #: ../admin/manage-fields.php:460
1267
+ msgid "Togo"
1268
+ msgstr "Togo"
1269
+
1270
+ #: ../admin/manage-fields.php:461
1271
+ msgid "Tokelau"
1272
+ msgstr "Tokelau"
1273
+
1274
+ #: ../admin/manage-fields.php:462
1275
+ msgid "Tonga"
1276
+ msgstr "Tonga"
1277
+
1278
+ #: ../admin/manage-fields.php:463
1279
+ msgid "Trinidad and Tobago"
1280
+ msgstr "Trinidad and Tobago"
1281
+
1282
+ #: ../admin/manage-fields.php:464
1283
+ msgid "Tunisia"
1284
+ msgstr "Tunisia"
1285
+
1286
+ #: ../admin/manage-fields.php:465
1287
+ msgid "Turkey"
1288
+ msgstr "Turkey"
1289
+
1290
+ #: ../admin/manage-fields.php:466
1291
+ msgid "Turkmenistan"
1292
+ msgstr "Turkmenistan"
1293
+
1294
+ #: ../admin/manage-fields.php:467
1295
+ msgid "Turks and Caicos Islands"
1296
+ msgstr "Turks and Caicos Islands"
1297
+
1298
+ #: ../admin/manage-fields.php:468
1299
+ msgid "Tuvalu"
1300
+ msgstr "Tuvalu"
1301
+
1302
+ #: ../admin/manage-fields.php:469
1303
+ msgid "U.S. Virgin Islands"
1304
+ msgstr "U.S. Virgin Islands"
1305
+
1306
+ #: ../admin/manage-fields.php:470
1307
+ msgid "Uganda"
1308
+ msgstr "Uganda"
1309
+
1310
+ #: ../admin/manage-fields.php:471
1311
+ msgid "Ukraine"
1312
+ msgstr "Ukraine"
1313
+
1314
+ #: ../admin/manage-fields.php:472
1315
+ msgid "United Arab Emirates"
1316
+ msgstr "United Arab Emirates"
1317
+
1318
+ #: ../admin/manage-fields.php:473
1319
+ msgid "United Kingdom"
1320
+ msgstr "United Kingdom"
1321
+
1322
+ #: ../admin/manage-fields.php:474
1323
+ msgid "United States"
1324
+ msgstr "United States"
1325
+
1326
+ #: ../admin/manage-fields.php:475
1327
+ msgid "United States Minor Outlying Islands"
1328
+ msgstr "United States Minor Outlying Islands"
1329
+
1330
+ #: ../admin/manage-fields.php:476
1331
+ msgid "Uruguay"
1332
+ msgstr "Uruguay"
1333
+
1334
+ #: ../admin/manage-fields.php:477
1335
+ msgid "Uzbekistan"
1336
+ msgstr "Uzbekistan"
1337
+
1338
+ #: ../admin/manage-fields.php:478
1339
+ msgid "Vanuatu"
1340
+ msgstr "Vanuatu"
1341
+
1342
+ #: ../admin/manage-fields.php:479
1343
+ msgid "Vatican"
1344
+ msgstr "Vatican"
1345
+
1346
+ #: ../admin/manage-fields.php:480
1347
+ msgid "Venezuela"
1348
+ msgstr "Venezuela"
1349
+
1350
+ #: ../admin/manage-fields.php:481
1351
+ msgid "Vietnam"
1352
+ msgstr "Vietnam"
1353
+
1354
+ #: ../admin/manage-fields.php:482
1355
+ msgid "Wallis and Futuna"
1356
+ msgstr "Wallis and Futuna"
1357
+
1358
+ #: ../admin/manage-fields.php:483
1359
+ msgid "Western Sahara"
1360
+ msgstr "Western Sahara"
1361
+
1362
+ #: ../admin/manage-fields.php:484
1363
+ msgid "Yemen"
1364
+ msgstr "Yemen"
1365
+
1366
+ #: ../admin/manage-fields.php:485
1367
+ msgid "Zambia"
1368
+ msgstr "Zambia"
1369
+
1370
+ #: ../admin/manage-fields.php:486
1371
+ msgid "Zimbabwe"
1372
+ msgstr "Zimbabwe"
1373
+
1374
+ #: ../admin/manage-fields.php:843
1375
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
1376
+ msgstr ""
1377
+
1378
+ #: ../assets/misc/plugin-compatibilities.php:241
1379
+ msgid "Your account has to be confirmed by an administrator before you can log in."
1380
+ msgstr ""
1381
+
1382
+ #: ../features/admin-approval/admin-approval.php:203
1383
+ msgid "Your account has been successfully created!"
1384
+ msgstr ""
1385
+
1386
+ #: ../features/functions.php:620
1387
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:374
1388
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:379
1389
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1390
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:458
1391
+ msgid "Please enter a (valid) reCAPTCHA value"
1392
+ msgstr ""
1393
+
1394
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1395
+ msgid "Click the BACK button on your browser, and try again."
1396
+ msgstr ""
1397
+
1398
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:78
1399
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:87
1400
+ msgid "Sorry, you cannot upload this file type for this field."
1401
+ msgstr ""
1402
+
1403
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:94
1404
+ msgid "An error occurred, please try again later."
1405
+ msgstr ""
1406
+
1407
+ #: ../modules/user-listing/userlisting.php:253
1408
+ msgid "More"
1409
+ msgstr ""
1410
+
1411
+ #: ../modules/user-listing/userlisting.php:338
1412
+ msgid "You do not have permission to view this user list."
1413
+ msgstr ""
1414
+
1415
+ #: ../modules/user-listing/userlisting.php:351
1416
+ msgid "You do not have the required user role to view this user list."
1417
+ msgstr ""
1418
+
1419
+ #: ../modules/user-listing/userlisting.php:1287
1420
+ msgid "Ascending"
1421
+ msgstr ""
1422
+
1423
+ #: ../modules/user-listing/userlisting.php:1288
1424
+ msgid "Descending"
1425
+ msgstr ""
1426
+
1427
+ #: ../admin/add-ons.php:144 ../admin/add-ons.php:251
1428
+ #: ../admin/pms-cross-promotion.php:134 ../admin/pms-cross-promotion.php:213
1429
+ msgid "Download Now"
1430
+ msgstr "Descargar"
1431
+
1432
+ #: ../admin/admin-functions.php:197
1433
+ msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
1434
+ msgstr ""
1435
+
1436
+ #: ../admin/manage-fields.php:68
1437
+ msgid "Choose one of the supported field types"
1438
+ msgstr "Escoja uno de los campos disponibles"
1439
+
1440
+ #: ../admin/manage-fields.php:70
1441
+ msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
1442
+ msgstr ""
1443
+
1444
+ #: ../admin/manage-fields.php:107
1445
+ msgid "Site Key"
1446
+ msgstr "Sitio clave"
1447
+
1448
+ #: ../admin/manage-fields.php:107
1449
+ msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1450
+ msgstr ""
1451
+
1452
+ #: ../admin/manage-fields.php:108
1453
+ msgid "Secret Key"
1454
+ msgstr "Clave secreta"
1455
+
1456
+ #: ../admin/manage-fields.php:108
1457
+ msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1458
+ msgstr ""
1459
+
1460
+ #: ../admin/manage-fields.php:660
1461
+ msgid "You must enter the site key\n"
1462
+ msgstr "Debes ingresar la clave del sitio\n"
1463
+
1464
+ #: ../admin/manage-fields.php:662
1465
+ msgid "You must enter the secret key\n"
1466
+ msgstr ""
1467
+
1468
+ #: ../admin/add-ons.php:10 ../admin/add-ons.php:32
1469
+ msgid "Add-Ons"
1470
+ msgstr "Add-Ons"
1471
+
1472
+ #: ../admin/add-ons.php:34 ../admin/add-ons.php:124 ../admin/add-ons.php:231
1473
+ #: ../admin/pms-cross-promotion.php:78 ../admin/pms-cross-promotion.php:114
1474
+ #: ../admin/pms-cross-promotion.php:193
1475
+ msgid "Activate"
1476
+ msgstr "Activar"
1477
+
1478
+ #: ../admin/add-ons.php:36 ../admin/pms-cross-promotion.php:80
1479
+ msgid "Downloading and installing..."
1480
+ msgstr "Bajando e instalando..."
1481
+
1482
+ #: ../admin/add-ons.php:37 ../admin/pms-cross-promotion.php:81
1483
+ msgid "Installation complete"
1484
+ msgstr "Instalación completada"
1485
+
1486
+ #: ../admin/add-ons.php:39
1487
+ msgid "Add-On is Active"
1488
+ msgstr "El Add-Ons está activado"
1489
+
1490
+ #: ../admin/add-ons.php:40
1491
+ msgid "Add-On has been activated"
1492
+ msgstr "El Add-On ha sido activado"
1493
+
1494
+ #: ../admin/add-ons.php:41 ../admin/pms-cross-promotion.php:85
1495
+ msgid "Retry Install"
1496
+ msgstr "Reintentar Instalación"
1497
+
1498
+ #: ../admin/add-ons.php:43 ../admin/add-ons.php:135
1499
+ msgid "Add-On is <strong>active</strong>"
1500
+ msgstr ""
1501
+
1502
+ #: ../admin/add-ons.php:44 ../admin/add-ons.php:133
1503
+ msgid "Add-On is <strong>inactive</strong>"
1504
+ msgstr ""
1505
+
1506
+ #: ../admin/add-ons.php:46 ../admin/add-ons.php:128 ../admin/add-ons.php:235
1507
+ #: ../admin/pms-cross-promotion.php:90 ../admin/pms-cross-promotion.php:118
1508
+ #: ../admin/pms-cross-promotion.php:197
1509
+ msgid "Deactivate"
1510
+ msgstr ""
1511
+
1512
+ #: ../admin/add-ons.php:47
1513
+ msgid "Add-On has been deactivated."
1514
+ msgstr ""
1515
+
1516
+ #: ../admin/add-ons.php:59
1517
+ msgid "Something went wrong, we could not connect to the server. Please try again later."
1518
+ msgstr ""
1519
+
1520
+ #: ../admin/add-ons.php:144 ../admin/add-ons.php:147
1521
+ msgid "Buy Now"
1522
+ msgstr ""
1523
+
1524
+ #: ../admin/add-ons.php:147 ../admin/add-ons.php:254
1525
+ #: ../admin/pms-cross-promotion.php:137 ../admin/pms-cross-promotion.php:216
1526
+ msgid "Install Now"
1527
+ msgstr ""
1528
+
1529
+ #: ../admin/add-ons.php:153 ../admin/add-ons.php:258
1530
+ #: ../admin/pms-cross-promotion.php:141 ../admin/pms-cross-promotion.php:220
1531
+ msgid "Compatible with your version of Profile Builder."
1532
+ msgstr ""
1533
+
1534
+ #: ../admin/add-ons.php:162
1535
+ msgid "Upgrade Profile Builder"
1536
+ msgstr ""
1537
+
1538
+ #: ../admin/add-ons.php:163
1539
+ msgid "Not compatible with Profile Builder"
1540
+ msgstr ""
1541
+
1542
+ #: ../admin/add-ons.php:171
1543
+ msgid "Not compatible with your version of Profile Builder."
1544
+ msgstr ""
1545
+
1546
+ #: ../admin/add-ons.php:172
1547
+ msgid "Minimum required Profile Builder version:"
1548
+ msgstr ""
1549
+
1550
+ #: ../admin/add-ons.php:177
1551
+ msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1552
+ msgstr ""
1553
+
1554
+ #: ../front-end/default-fields/email/email.php:48
1555
+ msgid "You must enter a valid email address."
1556
+ msgstr "Debe ingresar una dirección válida de email"
1557
+
1558
+ #: ../front-end/default-fields/username/username.php:53
1559
+ #: ../front-end/default-fields/username/username.php:60
1560
+ msgid "This username is invalid because it uses illegal characters."
1561
+ msgstr ""
1562
+
1563
+ #: ../front-end/default-fields/username/username.php:53
1564
+ #: ../front-end/default-fields/username/username.php:60
1565
+ msgid "Please enter a valid username."
1566
+ msgstr "Por favor ingrese un nombre de usuario válido"
1567
+
1568
+ #: ../front-end/extra-fields/user-role/user-role.php:67
1569
+ #: ../front-end/extra-fields/user-role/user-role.php:80
1570
+ msgid "Only administrators can see this field on edit profile forms."
1571
+ msgstr ""
1572
+
1573
+ #: ../front-end/extra-fields/user-role/user-role.php:76
1574
+ msgid "As an administrator you cannot change your role."
1575
+ msgstr ""
1576
+
1577
+ #: ../modules/email-customizer/admin-email-customizer.php:117
1578
+ msgid ""
1579
+ "\n"
1580
+ "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
1581
+ "<p>His/her new password is: {{password}}</p>\n"
1582
+ msgstr ""
1583
+
1584
+ #: ../modules/email-customizer/admin-email-customizer.php:141
1585
+ msgid "Admin Notification for User Password Reset"
1586
+ msgstr ""
1587
+
1588
+ #: ../modules/email-customizer/email-customizer.php:42
1589
+ msgid "Reset Key"
1590
+ msgstr ""
1591
+
1592
+ #: ../modules/email-customizer/email-customizer.php:43
1593
+ msgid "Reset Url"
1594
+ msgstr ""
1595
+
1596
+ #: ../modules/email-customizer/email-customizer.php:44
1597
+ msgid "Reset Link"
1598
+ msgstr ""
1599
+
1600
+ #: ../modules/email-customizer/user-email-customizer.php:204
1601
+ msgid ""
1602
+ "\n"
1603
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
1604
+ "Username: {{username}}</p>\n"
1605
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
1606
+ "<p>To reset your password, visit the following address:<br/>\n"
1607
+ "{{{reset_link}}}</p>\n"
1608
+ msgstr ""
1609
+
1610
+ #: ../modules/email-customizer/user-email-customizer.php:218
1611
+ msgid "[{{site_name}}] Password Reset"
1612
+ msgstr ""
1613
+
1614
+ #: ../modules/email-customizer/user-email-customizer.php:229
1615
+ msgid "Password Reset Email"
1616
+ msgstr ""
1617
+
1618
+ #: ../modules/email-customizer/user-email-customizer.php:235
1619
+ msgid ""
1620
+ "\n"
1621
+ "<p>You have successfully reset your password to: {{password}}</p>\n"
1622
+ msgstr ""
1623
+
1624
+ #: ../modules/email-customizer/user-email-customizer.php:245
1625
+ msgid "[{{site_name}}] Password Reset Successfully"
1626
+ msgstr ""
1627
+
1628
+ #: ../modules/email-customizer/user-email-customizer.php:256
1629
+ msgid "Password Reset Success Email"
1630
+ msgstr ""
1631
+
1632
+ #: ../modules/user-listing/userlisting.php:134
1633
+ msgid "User Nicename"
1634
+ msgstr ""
1635
+
1636
+ #: ../modules/user-listing/userlisting.php:442
1637
+ msgid "None"
1638
+ msgstr ""
1639
+
1640
+ #: ../admin/admin-functions.php:128
1641
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1642
+ msgstr "<strong>ERROR</strong>: La contraseña tiene que tener un tamaño mínimo de %s caracteres"
1643
+
1644
+ #: ../admin/admin-functions.php:145
1645
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
1646
+ msgstr "<strong>ERROR</strong>: La contraseña tiene que tener una fortaleza mínima de %s"
1647
+
1648
+ #: ../admin/general-settings.php:163
1649
+ msgid "Username and Email"
1650
+ msgstr "Usuario o Email"
1651
+
1652
+ #: ../admin/general-settings.php:168
1653
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
1654
+ msgstr "\"Nombre de Usuario y Email\" - los usuarios pueden Autenticarse tanto con el Nombre de Usuario como con el Email."
1655
+
1656
+ #: ../admin/general-settings.php:169
1657
+ msgid "\"Username\" - users can Log In only with Username."
1658
+ msgstr "\"Nombre de Usuario\" - los usuarios pueden Autenticarse con el Nombre de Usuario."
1659
+
1660
+ #: ../admin/general-settings.php:170
1661
+ msgid "\"Email\" - users can Log In only with Email."
1662
+ msgstr "\"Email\" - los usuarios pueden Autenticarse con el Email."
1663
+
1664
+ #: ../admin/manage-fields.php:100
1665
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
1666
+ msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto:.jpg,.jpeg,.gif,.png (.*)"
1667
+
1668
+ #: ../admin/manage-fields.php:101
1669
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
1670
+ msgstr "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:.ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto todas las extensiones de archivos permitidas por WordPress (.*)"
1671
+
1672
+ #: ../admin/manage-fields.php:111
1673
+ msgid "User Roles"
1674
+ msgstr "Roles de Usuario"
1675
+
1676
+ #: ../admin/manage-fields.php:111
1677
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
1678
+ msgstr "Seleccionar cuáles roles de usuario mostrar al usuario (arrastre y suelte para reorganizar)"
1679
+
1680
+ #: ../admin/manage-fields.php:112
1681
+ msgid "User Roles Order"
1682
+ msgstr "Orden de Roles de Usuario"
1683
+
1684
+ #: ../admin/manage-fields.php:112
1685
+ msgid "Save the user role order from the user roles checkboxes"
1686
+ msgstr "Salvar el orden de roles de usuario de las casillas de roles de usuario"
1687
+
1688
+ #: ../admin/manage-fields.php:752
1689
+ msgid "Please select at least one user role\n"
1690
+ msgstr "Por favor seleccione al menos un rol de usuario\n"
1691
+
1692
+ #: ../admin/register-version.php:22
1693
+ msgid "Profile Builder Register"
1694
+ msgstr "Registro de Profile Builder"
1695
+
1696
+ #: ../admin/register-version.php:81
1697
+ msgid "The serial number is about to expire soon!"
1698
+ msgstr "¡El número de serie está a punto de expirar!"
1699
+
1700
+ #: ../admin/register-version.php:81
1701
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
1702
+ msgstr "Su número de serie está a punto de expirar, por favor %1$s Renueve Su Licencia%2$s."
1703
+
1704
+ #: ../admin/register-version.php:83
1705
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
1706
+ msgstr "Su número de serie expiró, por favor %1$s Renueve Su Licencia%2$s."
1707
+
1708
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
1709
+ msgid "Add Entry"
1710
+ msgstr "Adicionar Entrada"
1711
+
1712
+ #: ../features/email-confirmation/class-email-confirmation.php:91
1713
+ msgid "show"
1714
+ msgstr "mostrar"
1715
+
1716
+ #: ../features/functions.php:672
1717
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
1718
+ msgstr "Para permitir a los usuarios registrarse en su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a %1$sAjustes de Red%2$s, y en Ajustes de Registros esté seguro de seleccionar “Las cuentas de usuario pueden ser registradas”. %3$sDescartar%4$s"
1719
+
1720
+ #: ../front-end/class-formbuilder.php:562
1721
+ msgid "User to edit:"
1722
+ msgstr "Usuarios a editar:"
1723
+
1724
+ #: ../front-end/default-fields/password/password.php:46
1725
+ #: ../front-end/recover.php:245
1726
+ msgid "The password must have the minimum length of %s characters"
1727
+ msgstr "La contraseña tiene que tener un tamaño mínimo de %s caracteres"
1728
+
1729
+ #: ../front-end/default-fields/password/password.php:50
1730
+ #: ../front-end/recover.php:249
1731
+ msgid "The password must have a minimum strength of %s"
1732
+ msgstr "La contraseña tiene que tener una fortaleza mínima de %s"
1733
+
1734
+ #: ../front-end/extra-fields/user-role/user-role.php:112
1735
+ msgid "You cannot register this user role"
1736
+ msgstr "Usted no puede registrar este rol de usuario"
1737
+
1738
+ #: ../front-end/login.php:108
1739
+ msgid "username or email"
1740
+ msgstr "nombre de usuario o email"
1741
+
1742
+ #: ../front-end/login.php:177
1743
+ msgid "Username or Email"
1744
+ msgstr "Usuario o Email"
1745
+
1746
+ #: ../front-end/logout.php:15
1747
+ msgid "You are currently logged in as %s. "
1748
+ msgstr "Usted está autenticado actualmente como %s"
1749
+
1750
+ #: ../front-end/logout.php:15
1751
+ msgid "Log out &raquo;"
1752
+ msgstr "Salir &raquo;"
1753
+
1754
+ #: ../modules/custom-redirects/custom_redirects_admin.php:92
1755
+ #: ../modules/email-customizer/email-customizer.php:31
1756
+ msgid "User Role"
1757
+ msgstr "Role del Usuario"
1758
+
1759
+ #: ../modules/user-listing/userlisting.php:1207
1760
+ msgid "View all extra shortcode parameters"
1761
+ msgstr "Ver todos los parámetros de código corto adicionales"
1762
+
1763
+ #: ../modules/user-listing/userlisting.php:1221
1764
+ msgid "displays only the users that you specified the user_id for"
1765
+ msgstr "muestra solamente los usuarios para los que usted ha especificado el user_id"
1766
+
1767
+ #: ../modules/user-listing/userlisting.php:1227
1768
+ msgid "displays all users except the ones you specified the user_id for"
1769
+ msgstr "muestra todos los usuarios excepto aquellos para los que usted ha especificado el user_id"
1770
+
1771
+ #: ../features/functions.php:539
1772
+ msgid "Minimum length of %d characters"
1773
+ msgstr "Mínimo de %d caracteres. "
1774
+
1775
+ #: ../front-end/class-formbuilder.php:142
1776
+ #: ../front-end/class-formbuilder.php:145
1777
+ msgid "This message is only visible by administrators"
1778
+ msgstr "Este mensaje está visible solamente por administradores"
1779
+
1780
+ #: ../modules/user-listing/userlisting.php:364
1781
+ msgid "User not found"
1782
+ msgstr "Usuario no encontrado"
1783
+
1784
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1785
+ #: ../modules/email-customizer/user-email-customizer.php:38
1786
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
1787
+ msgstr "Etiquetas válidas {{reply_to}} y {{site_name}}"
1788
+
1789
+ #: ../admin/admin-bar.php:48
1790
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
1791
+ msgstr "Escoger qué roles de usuario ve el admin bar en la vista pública del sitio web."
1792
+
1793
+ #: ../admin/manage-fields.php:105
1794
+ 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"
1795
+ msgstr "Entrar una lista de valores separada por coma<br/>Esto puede ser cualquier cosa, como está oculto al usuario, pero no debería contener caracteres especiales o apóstrofes"
1796
+
1797
+ #: ../admin/manage-fields.php:689
1798
+ msgid "The meta-name cannot be empty\n"
1799
+ msgstr "El meta-nombre no puede ser vacío\n"
1800
+
1801
+ #: ../admin/register-version.php:69
1802
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
1803
+ msgstr "Ahora que ha adquirido una copia de %s, usted debería tomarse un tiempo y registrarlo con el número de serie que recibió"
1804
+
1805
+ #: ../admin/register-version.php:243
1806
+ 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>"
1807
+ msgstr "<p>Su número de serie de <strong>Profile Builder</strong> es inválido o no se encuentra. <br/>Por favor %1$sregistre su copia%2$s para recibir acceso a actualizaciones automáticas y soporte. ¿Necesita una llave de licencia? %3$sCompre una ahora%4$s</p>"
1808
+
1809
+ #: ../admin/register-version.php:246
1810
+ 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>"
1811
+ msgstr "<p>Su licencia de <strong>Profile Builder</strong> ha expirado.<br/>Por favor %1$sRenueve Su Licencia%2$s para continuar recibiendo acceso a descargas de producto, actualizaciones automáticas y soporte.%3$sRenueve ahora y obtenga 50&#37; % de descuento4$s %5$sDescartar%6$s</p>"
1812
+
1813
+ #: ../admin/register-version.php:251
1814
+ 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>"
1815
+ msgstr "<p>Su licencia de <strong>Profile Builder</strong> está a punto de expirar el %5$s. <br/>Por favor %1$sRenueve Su Licencia%2$s para continuar recibiendo acceso a descargas de producto, actualizaciones automáticas y soporte.%3$sRenueve ahora y obtenga 50&#37; % de descuento4$s %5$sDescartar%6$s</p>"
1816
+
1817
+ #: ../assets/lib/wck-api/fields/country select.php:14
1818
+ #: ../assets/lib/wck-api/fields/cpt select.php:17
1819
+ #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
1820
+ #: select.php:15
1821
+ msgid "...Choose"
1822
+ msgstr "...Escoger"
1823
+
1824
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
1825
+ msgid "1 item"
1826
+ msgstr "1 elemento"
1827
+
1828
+ #: ../features/functions.php:525
1829
+ msgid "Very Weak"
1830
+ msgstr "Muy Débil"
1831
+
1832
+ #: ../features/functions.php:613
1833
+ msgid "This field is required"
1834
+ msgstr "Campo requerido"
1835
+
1836
+ #: ../features/functions.php:640
1837
+ msgid "Cancel"
1838
+ msgstr "Cancelar"
1839
+
1840
+ #: ../features/functions.php:676
1841
+ 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"
1842
+ msgstr "Para permitir a los usuarios registrarse para su sitio web via Profile Builder, usted tiene primero que habilitar el registro de usuario. Vaya a la pestaña %1$sAjustes -> General%2$s, y en Membresía esté seguro de seleccionar “Cualquiera puede registrarse”. %3$sDescartar%4$s"
1843
+
1844
+ #: ../front-end/login.php:99
1845
+ msgid "Invalid username."
1846
+ msgstr "Nombre de usuario inválido."
1847
+
1848
+ #: ../front-end/login.php:104 ../front-end/login.php:108
1849
+ msgid "username"
1850
+ msgstr "nombre de usuario"
1851
+
1852
+ #: ../front-end/login.php:104
1853
+ msgid "email"
1854
+ msgstr "email"
1855
+
1856
+ #: ../front-end/login.php:211
1857
+ msgid "Lost your password?"
1858
+ msgstr "¿Perdió su contraseña?"
1859
+
1860
+ #: ../index.php:34
1861
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
1862
+ msgstr "está también activado. Necesita desactivarlo antes de activar está versión del plugin."
1863
+
1864
+ #: ../modules/email-customizer/admin-email-customizer.php:54
1865
+ #: ../modules/email-customizer/user-email-customizer.php:54
1866
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
1867
+ msgstr "Tiene que ser una dirección de email válida o la etiqueta {{reply_to}} que tiene por defecto el email del administrador"
1868
+
1869
+ #: ../features/email-confirmation/email-confirmation.php:561
1870
+ #: ../features/email-confirmation/email-confirmation.php:564
1871
+ #: ../modules/email-customizer/email-customizer.php:413
1872
+ #: ../modules/email-customizer/email-customizer.php:420
1873
+ #: ../modules/email-customizer/email-customizer.php:434
1874
+ msgid "Your selected password at signup"
1875
+ msgstr "Su contraseña seleccionada al inscribirse"
1876
+
1877
+ #: ../modules/email-customizer/user-email-customizer.php:38
1878
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
1879
+ msgstr "Estos ajustes también se replican en la página de ajustes de \"Personalizador de Email de Admin\" al salvar."
1880
+
1881
+ #: ../modules/multiple-forms/edit-profile-forms.php:270
1882
+ msgid "This form is empty."
1883
+ msgstr "Esta forma está vacía."
1884
+
1885
+ #: ../modules/multiple-forms/multiple-forms.php:399
1886
+ msgid "Delete all items"
1887
+ msgstr "Borrar todos los elementos"
1888
+
1889
+ #: ../modules/multiple-forms/multiple-forms.php:399
1890
+ msgid "Delete all"
1891
+ msgstr "Borrar todo"
1892
+
1893
+ #: ../modules/multiple-forms/register-forms.php:226
1894
+ msgid "Choose..."
1895
+ msgstr "Escoger..."
1896
+
1897
+ #: ../modules/user-listing/userlisting.php:1298
1898
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
1899
+ msgstr "Establecer el número de usuarios a mostrarse en cada parte paginada del all-userlisting"
1900
+
1901
+ #: ../admin/admin-bar.php:10
1902
+ msgid "Show/Hide the Admin Bar on the Front-End"
1903
+ msgstr "Mostrar/Ocultar el Admin Bar en la Vista Pública"
1904
+
1905
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
1906
+ msgid "Admin Bar Settings"
1907
+ msgstr "Ajustes de Admin Bar"
1908
+
1909
+ #: ../admin/admin-bar.php:57
1910
+ msgid "User-Role"
1911
+ msgstr "Usuario-Rol"
1912
+
1913
+ #: ../admin/admin-bar.php:58
1914
+ msgid "Visibility"
1915
+ msgstr "Visibilidad"
1916
+
1917
+ #: ../admin/admin-bar.php:73
1918
+ msgid "Default"
1919
+ msgstr "Valor Por Defecto"
1920
+
1921
+ #: ../admin/admin-bar.php:74
1922
+ msgid "Show"
1923
+ msgstr "Mostrar"
1924
+
1925
+ #: ../admin/admin-bar.php:75
1926
+ msgid "Hide"
1927
+ msgstr "Ocultar"
1928
+
1929
+ #: ../admin/admin-bar.php:86 ../admin/general-settings.php:208
1930
+ #: ../admin/register-version.php:95 ../features/functions.php:633
1931
+ #: ../modules/modules.php:117
1932
+ msgid "Save Changes"
1933
+ msgstr "Salvar Cambios"
1934
+
1935
+ #: ../admin/admin-functions.php:34
1936
+ 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 )"
1937
+ msgstr "La Autenticación está establecida para realizarse usando el E-mail. ¡Este campo NO aparecerá en la parte pública! (usted puede cambiar estos ajustes en la pestaña \"%s\") "
1938
+
1939
+ #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
1940
+ #: ../admin/general-settings.php:38
1941
+ msgid "General Settings"
1942
+ msgstr "Ajustes Generales"
1943
+
1944
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:194
1945
+ msgid "Very weak"
1946
+ msgstr "Muy débil"
1947
+
1948
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:195
1949
+ #: ../features/functions.php:525
1950
+ msgid "Weak"
1951
+ msgstr "Débil"
1952
+
1953
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:196
1954
+ #: ../features/functions.php:525
1955
+ msgid "Medium"
1956
+ msgstr "Media"
1957
+
1958
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:197
1959
+ #: ../features/functions.php:525
1960
+ msgid "Strong"
1961
+ msgstr "Fuerte"
1962
+
1963
+ #: ../admin/admin-functions.php:184
1964
+ msgid "Add Field"
1965
+ msgstr "Adicionar Campo"
1966
+
1967
+ #: ../admin/admin-functions.php:186
1968
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:374
1969
+ msgid "Save Settings"
1970
+ msgstr "Salvar Ajustes"
1971
+
1972
+ #: ../admin/basic-info.php:10
1973
+ msgid "Basic Information"
1974
+ msgstr "Información Básica"
1975
+
1976
+ #: ../admin/basic-info.php:29
1977
+ msgid "Version %s"
1978
+ msgstr "Versión %s"
1979
+
1980
+ #: ../admin/basic-info.php:30
1981
+ msgid "<strong>Profile Builder </strong>"
1982
+ msgstr "<strong>Profile Builder </strong>"
1983
+
1984
+ #: ../admin/basic-info.php:31
1985
+ msgid "The best way to add front-end registration, edit profile and login forms."
1986
+ msgstr "La mejor forma de adicionar el registro en la vista pública, editar el perfil y las formas de autenticación."
1987
+
1988
+ #: ../admin/basic-info.php:33
1989
+ msgid "For Modern User Interaction"
1990
+ msgstr "Para la Interacción del Usuario Moderno"
1991
+
1992
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
1993
+ msgid "Login"
1994
+ msgstr "Autenticación"
1995
+
1996
+ #: ../admin/basic-info.php:40
1997
+ msgid "Registration"
1998
+ msgstr "Registro"
1999
+
2000
+ #: ../admin/basic-info.php:44
2001
+ msgid "Edit Profile"
2002
+ msgstr "Editar Perfil"
2003
+
2004
+ #: ../admin/basic-info.php:51
2005
+ msgid "Extra Features"
2006
+ msgstr "Características extras."
2007
+
2008
+ #: ../admin/basic-info.php:52
2009
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
2010
+ msgstr "Características que le dan más control sobre sus usuarios, incrementando la seguridad y ayudándolo a evitar los registros spams de usuarios."
2011
+
2012
+ #: ../admin/basic-info.php:53
2013
+ msgid "Enable extra features"
2014
+ msgstr "Habilitar características extras"
2015
+
2016
+ #: ../admin/basic-info.php:57
2017
+ msgid "Recover Password"
2018
+ msgstr "Recuperar contraseña"
2019
+
2020
+ #: ../admin/basic-info.php:61
2021
+ msgid "Admin Approval (*)"
2022
+ msgstr "Aprobación del Admin (*)"
2023
+
2024
+ #: ../admin/basic-info.php:62
2025
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
2026
+ msgstr "Usted decide quién es un usuario en su sitio web. Obtenga notificación via email o apruebe usuarios múltiples a la vez desde la Interfaz de Usuario de WordPress."
2027
+
2028
+ #: ../admin/basic-info.php:65
2029
+ msgid "Email Confirmation"
2030
+ msgstr "Confirmación de Email"
2031
+
2032
+ #: ../admin/basic-info.php:66
2033
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
2034
+ msgstr "Esté seguro que los usuarios se autentican con emails genuinos. En el registro los usuarios recibirán una notificación para confirmar sus direcciones de email."
2035
+
2036
+ #: ../admin/basic-info.php:69
2037
+ msgid "Minimum Password Length and Strength Meter"
2038
+ msgstr "Tamaño Mínimo de Contraseña y Medidor de Fortaleza"
2039
+
2040
+ #: ../admin/basic-info.php:70
2041
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
2042
+ msgstr "Elimine contraseñas débiles estableciendo un tamaño mínimo de contraseña y forzando una cierta fortaleza de contraseña."
2043
+
2044
+ #: ../admin/basic-info.php:73
2045
+ msgid "Login with Email or Username"
2046
+ msgstr "Autenticación con Email o Nombre de Usuario"
2047
+
2048
+ #: ../admin/basic-info.php:74
2049
+ msgid "Allow users to log in with their email or username when accessing your site."
2050
+ msgstr "Permite a usuarios autenticarse con su correo o nombre de usuario cuando se accede al sitio."
2051
+
2052
+ #: ../admin/basic-info.php:87
2053
+ msgid "Customize Your Forms The Way You Want (*)"
2054
+ msgstr "Personalice Sus Formas De La Manera Que Quiera (*)"
2055
+
2056
+ #: ../admin/basic-info.php:88
2057
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
2058
+ msgstr "Con Campos Extras del Perfil usted puede crear la forma exacta de registro de sus necesidades del proyecto."
2059
+
2060
+ #: ../admin/basic-info.php:90
2061
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
2062
+ msgstr "Los Campos Extras del Perfil están disponibles en versiones de Hobbyist o PRO"
2063
+
2064
+ #: ../admin/basic-info.php:92
2065
+ msgid "Get started with extra fields"
2066
+ msgstr "Comience con los campos extras"
2067
+
2068
+ #: ../admin/basic-info.php:95
2069
+ msgid "Avatar Upload"
2070
+ msgstr "Subida de Avatar"
2071
+
2072
+ #: ../admin/basic-info.php:96
2073
+ msgid "Generic Uploads"
2074
+ msgstr "Subidas Genéricas"
2075
+
2076
+ #: ../admin/basic-info.php:97
2077
+ msgid "Agree To Terms Checkbox"
2078
+ msgstr "Casilla de Aceptar los Términos"
2079
+
2080
+ #: ../admin/basic-info.php:98
2081
+ msgid "Datepicker"
2082
+ msgstr "Selector de Fecha"
2083
+
2084
+ #: ../admin/basic-info.php:99
2085
+ msgid "reCAPTCHA"
2086
+ msgstr "reCAPTCHA"
2087
+
2088
+ #: ../admin/basic-info.php:100
2089
+ msgid "Country Select"
2090
+ msgstr "Selector de País"
2091
+
2092
+ #: ../admin/basic-info.php:101
2093
+ msgid "Timezone Select"
2094
+ msgstr "Selector de Zona Horaria"
2095
+
2096
+ #: ../admin/basic-info.php:102
2097
+ msgid "Input / Hidden Input"
2098
+ msgstr "Input / Input Oculto"
2099
+
2100
+ #: ../admin/basic-info.php:103
2101
+ msgid "Checkbox"
2102
+ msgstr "Casilla"
2103
+
2104
+ #: ../admin/basic-info.php:104
2105
+ msgid "Select"
2106
+ msgstr "Selector"
2107
+
2108
+ #: ../admin/basic-info.php:105
2109
+ msgid "Radio Buttons"
2110
+ msgstr "Botones Redondos"
2111
+
2112
+ #: ../admin/basic-info.php:106
2113
+ msgid "Textarea"
2114
+ msgstr "Área de Texto"
2115
+
2116
+ #: ../admin/basic-info.php:115
2117
+ msgid "Powerful Modules (**)"
2118
+ msgstr "Módulos Potentes (**)"
2119
+
2120
+ #: ../admin/basic-info.php:116
2121
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
2122
+ msgstr "Todo lo que necesite para gestionar sus usuarios está probablemente disponible utilizando el Pro Modules. "
2123
+
2124
+ #: ../admin/basic-info.php:118
2125
+ msgid "Enable your modules"
2126
+ msgstr "Habilitar sus módulos"
2127
+
2128
+ #: ../admin/basic-info.php:121
2129
+ msgid "Find out more about PRO Modules"
2130
+ msgstr "Descubra más acerca de PRO Modules"
2131
+
2132
+ #: ../admin/basic-info.php:126 ../modules/modules.php:86
2133
+ #: ../modules/user-listing/userlisting.php:11
2134
+ #: ../modules/user-listing/userlisting.php:12
2135
+ #: ../modules/user-listing/userlisting.php:17
2136
+ #: ../modules/user-listing/userlisting.php:23
2137
+ msgid "User Listing"
2138
+ msgstr "Listado de Usuario"
2139
+
2140
+ #: ../admin/basic-info.php:128
2141
+ 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."
2142
+ msgstr "Plantillas fácil de editar para listar sus usuarios del sitio web así como crear páginas de un usuario simple. Basado en código corto, ofrece muchas opciones para personalizar sus listados."
2143
+
2144
+ #: ../admin/basic-info.php:134
2145
+ msgid "Email Customizer"
2146
+ msgstr "Personalizador de Email"
2147
+
2148
+ #: ../admin/basic-info.php:135
2149
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
2150
+ msgstr "Personalice todos los emails enviados a sus usuarios o administradores. En el registro, la confirmación de email y la aprobación/desaprobación de admin."
2151
+
2152
+ #: ../admin/basic-info.php:138
2153
+ #: ../modules/custom-redirects/custom_redirects_admin.php:32
2154
+ #: ../modules/custom-redirects/custom_redirects_admin.php:33
2155
+ #: ../modules/modules.php:107
2156
+ msgid "Custom Redirects"
2157
+ msgstr "Redirecciones Personalizadas"
2158
+
2159
+ #: ../admin/basic-info.php:139
2160
+ 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."
2161
+ msgstr "Mantenga sus usuarios fuera del panel de control de WordPRess, redirecciónelos a la vista pública luego de la autenticación o registro, todo está a unos clics."
2162
+
2163
+ #: ../admin/basic-info.php:144 ../modules/modules.php:72
2164
+ msgid "Multiple Registration Forms"
2165
+ msgstr "Formas de Registro Múltiple"
2166
+
2167
+ #: ../admin/basic-info.php:145
2168
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
2169
+ msgstr "Establecer formas de registro múltiples con diferentes campos para ciertos roles de usuario. Capturar diferentes informaciones de diferentes tipos de usuarios."
2170
+
2171
+ #: ../admin/basic-info.php:148 ../modules/modules.php:79
2172
+ msgid "Multiple Edit-profile Forms"
2173
+ msgstr "Formas de Edición de Múltiples Perfiles"
2174
+
2175
+ #: ../admin/basic-info.php:149
2176
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
2177
+ msgstr "Permite a diferentes roles de usuario editar sus informaciones específicas. Establezca las formas de edición de múltiples perfiles con diferentes campos para ciertos roles de usuario."
2178
+
2179
+ #: ../admin/basic-info.php:173
2180
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
2181
+ msgstr "* solamente disponible en las %1$sversiones Hobbyist y Pro%2$s."
2182
+
2183
+ #: ../admin/basic-info.php:174
2184
+ msgid "** only available in the %1$sPro version%2$s."
2185
+ msgstr "* solamente disponible en la %1$sversión Pro%2$s."
2186
+
2187
+ #: ../admin/general-settings.php:42
2188
+ msgid "Load Profile Builder's own CSS file in the front-end:"
2189
+ msgstr "El propio CSS de Load Profile Builder en la vista pública:"
2190
+
2191
+ #: ../admin/general-settings.php:45 ../admin/general-settings.php:58
2192
+ #: ../admin/general-settings.php:107
2193
+ #: ../modules/multiple-forms/register-forms.php:225
2194
+ #: ../modules/multiple-forms/register-forms.php:226
2195
+ #: ../modules/user-listing/userlisting.php:1303
2196
+ msgid "Yes"
2197
+ msgstr "Si"
2198
+
2199
+ #: ../admin/general-settings.php:47
2200
+ msgid "You can find the default file here: %1$s"
2201
+ msgstr "Usted puede encontrar el archivo por defecto aquí: %1$s"
2202
+
2203
+ #: ../admin/general-settings.php:54
2204
+ msgid "\"Email Confirmation\" Activated:"
2205
+ msgstr "\"Confirmación de Email\" Activada:"
2206
+
2207
+ #: ../admin/general-settings.php:59 ../admin/general-settings.php:108
2208
+ #: ../modules/multiple-forms/register-forms.php:225
2209
+ #: ../modules/multiple-forms/register-forms.php:226
2210
+ msgid "No"
2211
+ msgstr "No"
2212
+
2213
+ #: ../admin/general-settings.php:64
2214
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
2215
+ msgstr "Usted puede encontrar una lista de direcciones de email no confirmadas %1$sUsers > All Users > Email Confirmation%2$s."
2216
+
2217
+ #: ../admin/general-settings.php:72
2218
+ msgid "\"Email Confirmation\" Landing Page:"
2219
+ msgstr "Página de llegada de \"Confirmación de Email\":"
2220
+
2221
+ #: ../admin/general-settings.php:77
2222
+ msgid "Existing Pages"
2223
+ msgstr "Páginas Existentes"
2224
+
2225
+ #: ../admin/general-settings.php:92
2226
+ 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."
2227
+ msgstr "Especificar la página donde los usuarios serán redirigidos cuando se confirma la cuenta de email. Esta página puede ser diferente a la(s) página(s) de registro y puede ser cambiada en cualquier momento."
2228
+
2229
+ #: ../admin/general-settings.php:103
2230
+ msgid "\"Admin Approval\" Activated:"
2231
+ msgstr "\"Aprobación del Admin\" Activada:"
2232
+
2233
+ #: ../admin/general-settings.php:111
2234
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
2235
+ msgstr "Usted puede encontrar una lista de usuario en %1$sUsers > All Users > Admin Approval%2$s."
2236
+
2237
+ #: ../admin/general-settings.php:149
2238
+ msgid "\"Admin Approval\" Feature:"
2239
+ msgstr "Característica \"Aprobación del Admin\":"
2240
+
2241
+ #: ../admin/general-settings.php:152
2242
+ 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."
2243
+ msgstr "Usted decide quien es un usuario en su sitio web. Obtenga notificaciones a través de email o apruebe múltiples usuarios a la vez desde la Interfaz de Usuario de WordPRess. Habilite Aprobación del Amin actualizando a las %1$sversiones Hobbyist o Pro%2$s."
2244
+
2245
+ #: ../admin/general-settings.php:159
2246
+ msgid "Allow Users to Log in With:"
2247
+ msgstr "Permitir a los Usuaios Autenticarse Con:"
2248
+
2249
+ #: ../admin/general-settings.php:164 ../admin/manage-fields.php:159
2250
+ #: ../features/admin-approval/class-admin-approval.php:177
2251
+ #: ../features/email-confirmation/class-email-confirmation.php:167
2252
+ #: ../modules/custom-redirects/custom_redirects_admin.php:56
2253
+ #: ../modules/email-customizer/email-customizer.php:28
2254
+ #: ../modules/user-listing/userlisting.php:92
2255
+ #: ../modules/user-listing/userlisting.php:248
2256
+ #: ../modules/user-listing/userlisting.php:611
2257
+ #: ../modules/user-listing/userlisting.php:1259
2258
+ msgid "Username"
2259
+ msgstr "Nombre de Usuario"
2260
+
2261
+ #: ../admin/general-settings.php:165 ../front-end/login.php:173
2262
+ #: ../modules/email-customizer/email-customizer.php:29
2263
+ #: ../modules/user-listing/userlisting.php:617
2264
+ #: ../modules/user-listing/userlisting.php:1260
2265
+ msgid "Email"
2266
+ msgstr "Email"
2267
+
2268
+ #: ../admin/general-settings.php:177
2269
+ msgid "Minimum Password Length:"
2270
+ msgstr "Tamaño Mínimo de Contraseña:"
2271
+
2272
+ #: ../admin/general-settings.php:182
2273
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
2274
+ msgstr "Entre los caracteres mínimos que la contraseña debe tener. Deje en blanco para no límite mínimo."
2275
+
2276
+ #: ../admin/general-settings.php:189
2277
+ msgid "Minimum Password Strength:"
2278
+ msgstr "Fortaleza Mínima de Contraseña:"
2279
+
2280
+ #: ../admin/general-settings.php:193
2281
+ msgid "Disabled"
2282
+ msgstr "Deshabilitado"
2283
+
2284
+ #: ../admin/manage-fields.php:12
2285
+ msgid "Manage Fields"
2286
+ msgstr "Gestionar Campos"
2287
+
2288
+ #: ../admin/manage-fields.php:13
2289
+ msgid "Manage Default and Extra Fields"
2290
+ msgstr "Gestionar Campos Por Defecto y Adicionales"
2291
+
2292
+ #: ../admin/manage-fields.php:94
2293
+ msgid "Field Title"
2294
+ msgstr "Título del Campo"
2295
+
2296
+ #: ../admin/manage-fields.php:94
2297
+ msgid "Title of the field"
2298
+ msgstr "Título del Campo"
2299
+
2300
+ #: ../admin/manage-fields.php:95
2301
+ #: ../modules/multiple-forms/edit-profile-forms.php:241
2302
+ #: ../modules/multiple-forms/register-forms.php:262
2303
+ msgid "Field"
2304
+ msgstr "Campo"
2305
+
2306
+ #: ../admin/manage-fields.php:96
2307
+ msgid "Meta-name"
2308
+ msgstr "Meta-nombre"
2309
+
2310
+ #: ../admin/manage-fields.php:96
2311
+ 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"
2312
+ msgstr "Utilice esto en conjunción con las funciones de WordPress para mostrar el valor de la página de su selección<br/> Auto-completado pero en algunos casos editable (en cuyo caso tiene que ser único)<br/> Cambiar esto puede tomar mucho tiempo en caso de una cantidad de usuarios muy grande"
2313
+
2314
+ #: ../admin/manage-fields.php:97
2315
+ #: ../modules/custom-redirects/custom_redirects_admin.php:65
2316
+ #: ../modules/custom-redirects/custom_redirects_admin.php:95
2317
+ #: ../modules/custom-redirects/custom_redirects_admin.php:114
2318
+ #: ../modules/custom-redirects/custom_redirects_admin.php:139
2319
+ #: ../modules/multiple-forms/edit-profile-forms.php:242
2320
+ #: ../modules/multiple-forms/register-forms.php:263
2321
+ msgid "ID"
2322
+ msgstr "ID"
2323
+
2324
+ #: ../admin/manage-fields.php:97
2325
+ #: ../modules/multiple-forms/edit-profile-forms.php:242
2326
+ #: ../modules/multiple-forms/register-forms.php:263
2327
+ 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"
2328
+ msgstr "Un ID único y auto-generado para este campo particular<br/> Usted puede usar esto en conjunción con filtros para apuntar a este elemento si se necesita<br/>No puede ser editado"
2329
+
2330
+ #: ../admin/manage-fields.php:98
2331
+ msgid "Description"
2332
+ msgstr "Descripción"
2333
+
2334
+ #: ../admin/manage-fields.php:98
2335
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
2336
+ msgstr "Entre una descripción (detallada) de la opción para que los usuarios finales lean<br/>Opcional"
2337
+
2338
+ #: ../admin/manage-fields.php:99
2339
+ msgid "Row Count"
2340
+ msgstr "Cantidad de Filas"
2341
+
2342
+ #: ../admin/manage-fields.php:99
2343
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
2344
+ msgstr "Especificar el número de filas para un campo 'Textarea'<br/>"
2345
+
2346
+ #: ../admin/manage-fields.php:100
2347
+ msgid "Allowed Image Extensions"
2348
+ msgstr "Extensiones de Imagen Permitidas"
2349
+
2350
+ #: ../admin/manage-fields.php:101
2351
+ msgid "Allowed Upload Extensions"
2352
+ msgstr "Extensiones de Subida Permitidas"
2353
+
2354
+ #: ../admin/manage-fields.php:102
2355
+ msgid "Avatar Size"
2356
+ msgstr "Tamaño del Avatar"
2357
+
2358
+ #: ../admin/manage-fields.php:102
2359
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
2360
+ msgstr "Entrar un valor (entre 20 y 200) para el tamaño del 'Avatar'<br/>Si no se especifica, deja por defecto 100"
2361
+
2362
+ #: ../admin/manage-fields.php:103
2363
+ msgid "Date-format"
2364
+ msgstr "Formato de fecha"
2365
+
2366
+ #: ../admin/manage-fields.php:103
2367
+ 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"
2368
+ msgstr "Especificar el formato de la fecha cuando se usa el Datepicker<br/>Opciones válidas:mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>Si no se especifica, deja por defecto mm/dd/yy"
2369
+
2370
+ #: ../admin/manage-fields.php:104
2371
+ msgid "Terms of Agreement"
2372
+ msgstr "Términos del Acuerdo"
2373
+
2374
+ #: ../admin/manage-fields.php:104
2375
+ 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;"
2376
+ msgstr "Entrar una descripción detallada de los términos del acuerdo para que el usuario lea.<br/> Los enlaces pueden ser insertados usando sintaxis HTML estándar:&lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
2377
+
2378
+ #: ../admin/manage-fields.php:105
2379
+ msgid "Options"
2380
+ msgstr "Opciones"
2381
+
2382
+ #: ../admin/manage-fields.php:106
2383
+ msgid "Labels"
2384
+ msgstr "Etiquetas"
2385
+
2386
+ #: ../admin/manage-fields.php:106
2387
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
2388
+ msgstr "Entrar una lista separada por coma de etiquetas<br/>Visible para los usuarios"
2389
+
2390
+ #: ../admin/manage-fields.php:113
2391
+ msgid "Default Value"
2392
+ msgstr "Valor Por Defecto"
2393
+
2394
+ #: ../admin/manage-fields.php:113
2395
+ msgid "Default value of the field"
2396
+ msgstr "Valor por defecto del campo"
2397
+
2398
+ #: ../admin/manage-fields.php:114 ../admin/manage-fields.php:116
2399
+ #: ../admin/manage-fields.php:117
2400
+ msgid "Default Option"
2401
+ msgstr "Opción Por Defecto"
2402
+
2403
+ #: ../admin/manage-fields.php:114
2404
+ msgid "Specify the option which should be selected by default"
2405
+ msgstr "Especificar la opción que debería ser seleccionada por defecto"
2406
+
2407
+ #: ../admin/manage-fields.php:115
2408
+ msgid "Default Option(s)"
2409
+ msgstr "Opción(es) Por Defecto"
2410
+
2411
+ #: ../admin/manage-fields.php:115
2412
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
2413
+ msgstr "Especificar la opción que debería ser seleccionada por defecto<br/>Si hay valores múltiples, separarlos con una ',' (coma)"
2414
+
2415
+ #: ../admin/manage-fields.php:118
2416
+ msgid "Default Content"
2417
+ msgstr "Contenido Por Defecto"
2418
+
2419
+ #: ../admin/manage-fields.php:118
2420
+ msgid "Default value of the textarea"
2421
+ msgstr "Valor por defecto del textarea"
2422
+
2423
+ #: ../admin/manage-fields.php:119
2424
+ msgid "Required"
2425
+ msgstr "Requerido"
2426
+
2427
+ #: ../admin/manage-fields.php:119
2428
+ msgid "Whether the field is required or not"
2429
+ msgstr "Si el campo es requerido o no"
2430
+
2431
+ #: ../admin/manage-fields.php:120
2432
+ msgid "Overwrite Existing"
2433
+ msgstr "Sobrescribir Existente"
2434
+
2435
+ #: ../admin/manage-fields.php:120
2436
+ 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"
2437
+ msgstr "Seleccionar 'Sí' adicionará el campo a la lista, pero sobrescribirá cualquier otro campo en la base de datos que tiene el mismo meta-nombre<br/>Usar esto bajo su propio riesgo "
2438
+
2439
+ #: ../admin/manage-fields.php:126
2440
+ msgid "Field Properties"
2441
+ msgstr "Propiedades del campo"
2442
+
2443
+ #: ../admin/manage-fields.php:139
2444
+ msgid "Registration & Edit Profile"
2445
+ msgstr "Registro y Edición del Perfil"
2446
+
2447
+ #: ../admin/manage-fields.php:158
2448
+ msgid "Name"
2449
+ msgstr "Nombre"
2450
+
2451
+ #: ../admin/manage-fields.php:159
2452
+ msgid "Usernames cannot be changed."
2453
+ msgstr "Los nombres de usuario no pueden ser cambiados."
2454
+
2455
+ #: ../admin/manage-fields.php:160
2456
+ msgid "First Name"
2457
+ msgstr "Primer Nombre"
2458
+
2459
+ #: ../admin/manage-fields.php:161
2460
+ msgid "Last Name"
2461
+ msgstr "Apellidos"
2462
+
2463
+ #: ../admin/manage-fields.php:162 ../modules/user-listing/userlisting.php:650
2464
+ msgid "Nickname"
2465
+ msgstr "Apodo"
2466
+
2467
+ #: ../admin/manage-fields.php:163
2468
+ msgid "Display name publicly as"
2469
+ msgstr "Mostrar el nombre públicamente como"
2470
+
2471
+ #: ../admin/manage-fields.php:164
2472
+ msgid "Contact Info"
2473
+ msgstr "Información de Contacto"
2474
+
2475
+ #: ../admin/manage-fields.php:165
2476
+ #: ../features/admin-approval/class-admin-approval.php:180
2477
+ #: ../features/email-confirmation/class-email-confirmation.php:168
2478
+ #: ../modules/user-listing/userlisting.php:98
2479
+ msgid "E-mail"
2480
+ msgstr "E-mail"
2481
+
2482
+ #: ../admin/manage-fields.php:166
2483
+ #: ../modules/email-customizer/email-customizer.php:32
2484
+ #: ../modules/user-listing/userlisting.php:101
2485
+ #: ../modules/user-listing/userlisting.php:632
2486
+ #: ../modules/user-listing/userlisting.php:1261
2487
+ msgid "Website"
2488
+ msgstr "Sitio Web"
2489
+
2490
+ #: ../admin/manage-fields.php:170
2491
+ msgid "AIM"
2492
+ msgstr "AIM"
2493
+
2494
+ #: ../admin/manage-fields.php:171
2495
+ msgid "Yahoo IM"
2496
+ msgstr "Yahoo IM"
2497
+
2498
+ #: ../admin/manage-fields.php:172
2499
+ msgid "Jabber / Google Talk"
2500
+ msgstr "Jabber / Google Talk"
2501
+
2502
+ #: ../admin/manage-fields.php:175
2503
+ msgid "About Yourself"
2504
+ msgstr "Acerca de Usted"
2505
+
2506
+ #: ../admin/manage-fields.php:176 ../modules/user-listing/userlisting.php:104
2507
+ #: ../modules/user-listing/userlisting.php:635
2508
+ #: ../modules/user-listing/userlisting.php:1262
2509
+ msgid "Biographical Info"
2510
+ msgstr "Información Biográfica"
2511
+
2512
+ #: ../admin/manage-fields.php:176
2513
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2514
+ msgstr "Compartir una pequeña información biográfica para llenar su perfil. Esto puede mostrarse públicamente. "
2515
+
2516
+ #: ../admin/manage-fields.php:177 ../front-end/recover.php:75
2517
+ #: ../modules/email-customizer/email-customizer.php:30
2518
+ msgid "Password"
2519
+ msgstr "Contraseña"
2520
+
2521
+ #: ../admin/manage-fields.php:177
2522
+ msgid "Type your password."
2523
+ msgstr "Escriba su contraseña."
2524
+
2525
+ #: ../admin/manage-fields.php:178 ../front-end/recover.php:80
2526
+ msgid "Repeat Password"
2527
+ msgstr "Repetir contraseña"
2528
+
2529
+ #: ../admin/manage-fields.php:178
2530
+ msgid "Type your password again. "
2531
+ msgstr "Escriba su contraseña nuevamente."
2532
+
2533
+ #: ../admin/manage-fields.php:617 ../admin/manage-fields.php:761
2534
+ msgid "You must select a field\n"
2535
+ msgstr "Tiene que seleccionar un campo\n"
2536
+
2537
+ #: ../admin/manage-fields.php:627
2538
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
2539
+ msgstr "Por favor escoja un tipo de campo diferente dado que este solo existe en su forma (debe ser único)\n"
2540
+
2541
+ #: ../admin/manage-fields.php:638
2542
+ msgid "The entered avatar size is not between 20 and 200\n"
2543
+ msgstr "El tamaño del avatar entrado no está entre 20 y 200\n"
2544
+
2545
+ #: ../admin/manage-fields.php:641
2546
+ msgid "The entered avatar size is not numerical\n"
2547
+ msgstr "El tamaño del avatar entrado no es numérico\n"
2548
+
2549
+ #: ../admin/manage-fields.php:649
2550
+ msgid "The entered row number is not numerical\n"
2551
+ msgstr "El número de la fila entrado no es numérico\n"
2552
+
2553
+ #: ../admin/manage-fields.php:652
2554
+ msgid "You must enter a value for the row number\n"
2555
+ msgstr "Usted tiene que entrar un valor para el número de la fila\n"
2556
+
2557
+ #: ../admin/manage-fields.php:670
2558
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
2559
+ msgstr "El valor entrado para el Datepicker no es un formato de fecha válido\n"
2560
+
2561
+ #: ../admin/manage-fields.php:673
2562
+ msgid "You must enter a value for the date-format\n"
2563
+ msgstr "Usted tiene que entrar un valor para el formato de fecha\n"
2564
+
2565
+ #: ../admin/manage-fields.php:701 ../admin/manage-fields.php:709
2566
+ #: ../admin/manage-fields.php:719
2567
+ msgid "That meta-name is already in use\n"
2568
+ msgstr "Ese meta nombre ya está en uso\n"
2569
+
2570
+ #: ../admin/manage-fields.php:741
2571
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
2572
+ msgstr "La(s) siguiente(s) opción(es) no coincide(n) con aquellas en la lista de opciones:%s\n"
2573
+
2574
+ #: ../admin/manage-fields.php:745
2575
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
2576
+ msgstr "La siguiente opción no coincidió con aquellas de la lista de opciones: %s\n"
2577
+
2578
+ #: ../admin/manage-fields.php:768
2579
+ msgid "That field is already added in this form\n"
2580
+ msgstr "Ese campo ya está añadido en esta forma\n"
2581
+
2582
+ #: ../admin/manage-fields.php:817
2583
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
2584
+ msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Nombre</pre><pre class=\"wppb-mb-head-required\">Requerido</pre>"
2585
+
2586
+ #: ../admin/manage-fields.php:817
2587
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2588
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:531
2589
+ #: ../features/admin-approval/class-admin-approval.php:119
2590
+ #: ../features/functions.php:654 ../features/functions.php:661
2591
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
2592
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
2593
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
2594
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
2595
+ #: ../modules/multiple-forms/multiple-forms.php:399
2596
+ msgid "Edit"
2597
+ msgstr "Editar"
2598
+
2599
+ #: ../admin/manage-fields.php:817
2600
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2601
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:532
2602
+ #: ../features/admin-approval/class-admin-approval.php:124
2603
+ #: ../features/admin-approval/class-admin-approval.php:235
2604
+ #: ../features/email-confirmation/class-email-confirmation.php:120
2605
+ #: ../features/email-confirmation/class-email-confirmation.php:217
2606
+ #: ../features/functions.php:647 ../features/functions.php:661
2607
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
2608
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
2609
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
2610
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
2611
+ msgid "Delete"
2612
+ msgstr "Editar"
2613
+
2614
+ #: ../admin/manage-fields.php:832
2615
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
2616
+ msgstr "Usar estos códigos cortos en las páginas en las que quiere que las formas se muestren:"
2617
+
2618
+ #: ../admin/manage-fields.php:841
2619
+ 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."
2620
+ msgstr "Si está interesado en mostrar diferentes campos en las formas de edición del perfil y el registro, por favor use El Addon Multiple Registration & Edit Profile Forms."
2621
+
2622
+ #: ../admin/register-version.php:14
2623
+ msgid "Register Your Version"
2624
+ msgstr "Si está interesado en mostrar diferentes campos en las formas de edición del perfil y el registro, por favor use El Addon Multiple Registration & Edit Profile Forms."
2625
+
2626
+ #: ../admin/register-version.php:14
2627
+ msgid "Register Version"
2628
+ msgstr "Registre la Versión"
2629
+
2630
+ #: ../admin/register-version.php:70
2631
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
2632
+ msgstr "Si usted registra esta versión de Profile Builder, recibirá información referente a actualizaciones, parches, y soporte técnico."
2633
+
2634
+ #: ../admin/register-version.php:72
2635
+ msgid " Serial Number:"
2636
+ msgstr "Número de Serie:"
2637
+
2638
+ #: ../admin/register-version.php:77
2639
+ msgid "The serial number was successfully validated!"
2640
+ msgstr "¡El número de serie fue validado satisfactoriamente!"
2641
+
2642
+ #: ../admin/register-version.php:79
2643
+ msgid "The serial number entered couldn't be validated!"
2644
+ msgstr "¡El número de serie está a punto de expirar!"
2645
+
2646
+ #: ../admin/register-version.php:83
2647
+ msgid "The serial number couldn't be validated because it expired!"
2648
+ msgstr "¡El número de serie no ha podido ser validado porque expiró!"
2649
+
2650
+ #: ../admin/register-version.php:85
2651
+ 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!"
2652
+ msgstr "El número de serie no ha podido ser validado porque el proceso sobrepasó el tiempo de espera. Esto es posible debido a que el server está caido.¡ Por favor intente luego! "
2653
+
2654
+ #: ../admin/register-version.php:87
2655
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2656
+ msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2657
+
2658
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2659
+ #: ../features/functions.php:661
2660
+ msgid "Content"
2661
+ msgstr "Contenido"
2662
+
2663
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:531
2664
+ msgid "Edit this item"
2665
+ msgstr "Editar este elemento"
2666
+
2667
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:532
2668
+ msgid "Delete this item"
2669
+ msgstr "Borrar este elemento"
2670
+
2671
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:700
2672
+ msgid "Please enter a value for the required field "
2673
+ msgstr "Por favor entre un valor para el campo requerido"
2674
+
2675
+ #: ../front-end/extra-fields/upload/upload.php:122
2676
+ msgid "Select File"
2677
+ msgstr "Seleccionar archivo"
2678
+
2679
+ #: ../assets/lib/wck-api/fields/upload.php:43
2680
+ #: ../front-end/extra-fields/upload/upload.php:112
2681
+ msgid "Remove"
2682
+ msgstr "Eliminar"
2683
+
2684
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1179
2685
+ msgid "Syncronize WCK"
2686
+ msgstr "Sincronizar WCK"
2687
+
2688
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1191
2689
+ msgid "Syncronize WCK Translation"
2690
+ msgstr "Sincronizar WCK Translation"
2691
+
2692
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
2693
+ msgid "You can add the information for the %s after you add a entry"
2694
+ msgstr "Usted puede adicionar la información para el %s luego de que adicione una entrada"
2695
+
2696
+ #: ../assets/lib/wck-api/fields/upload.php:75
2697
+ #: ../front-end/extra-fields/upload/upload.php:128
2698
+ msgid "Upload "
2699
+ msgstr "Subir"
2700
+
2701
+ #: ../features/class-list-table.php:184
2702
+ msgid "No items found."
2703
+ msgstr "No se encontraron elementos."
2704
+
2705
+ #: ../features/class-list-table.php:308
2706
+ msgid "Bulk Actions"
2707
+ msgstr "Acciones en Bloque"
2708
+
2709
+ #: ../features/class-list-table.php:318
2710
+ msgid "Apply"
2711
+ msgstr "Aplicar"
2712
+
2713
+ #: ../features/class-list-table.php:402
2714
+ msgid "Show all dates"
2715
+ msgstr "Mostrar todas las fechas"
2716
+
2717
+ #: ../features/class-list-table.php:415
2718
+ msgid "%1$s %2$d"
2719
+ msgstr "%1$s %2$d"
2720
+
2721
+ #: ../features/class-list-table.php:431
2722
+ msgid "List View"
2723
+ msgstr "Vista de Lista"
2724
+
2725
+ #: ../features/class-list-table.php:432
2726
+ msgid "Excerpt View"
2727
+ msgstr "Vista de Extracto"
2728
+
2729
+ #: ../features/class-list-table.php:458
2730
+ msgid "%s pending"
2731
+ msgstr "%s pendiente"
2732
+
2733
+ #: ../features/class-list-table.php:566
2734
+ msgid "%1$s of %2$s"
2735
+ msgstr "%1$s de %2$s"
2736
+
2737
+ #: ../features/class-list-table.php:713
2738
+ msgid "Select All"
2739
+ msgstr "Seleccionar Todo"
2740
+
2741
+ #: ../features/functions.php:297
2742
+ msgid "The user-validation has failed - the avatar was not deleted!"
2743
+ msgstr "La validación del usuario ha fallado - ¡el avatar no fue eliminado!"
2744
+
2745
+ #: ../features/functions.php:308
2746
+ msgid "The user-validation has failed - the attachment was not deleted!"
2747
+ msgstr "La validación del usuario ha fallado - ¡el adjunto no fue eliminado!"
2748
+
2749
+ #: ../features/functions.php:500
2750
+ msgid "Strength indicator"
2751
+ msgstr "Indicador de Fortaleza"
2752
+
2753
+ #: ../features/admin-approval/admin-approval.php:7
2754
+ #: ../features/admin-approval/class-admin-approval.php:458
2755
+ msgid "Admin Approval"
2756
+ msgstr "Aprobación del Admin"
2757
+
2758
+ #: ../features/admin-approval/admin-approval.php:21
2759
+ #: ../features/email-confirmation/email-confirmation.php:58
2760
+ msgid "Do you want to"
2761
+ msgstr "¿Usted desea"
2762
+
2763
+ #: ../features/admin-approval/admin-approval.php:44
2764
+ msgid "Your session has expired! Please refresh the page and try again"
2765
+ msgstr "¡Su sesión ha expirado! Por favor refresque la página y trate nuevamente"
2766
+
2767
+ #: ../features/admin-approval/admin-approval.php:55
2768
+ msgid "User successfully approved!"
2769
+ msgstr "¡Usuario aprobado satisfactoriamente!"
2770
+
2771
+ #: ../features/admin-approval/admin-approval.php:63
2772
+ msgid "User successfully unapproved!"
2773
+ msgstr "¡Usuario desaprobado satisfactoriamente!"
2774
+
2775
+ #: ../features/admin-approval/admin-approval.php:69
2776
+ msgid "User successfully deleted!"
2777
+ msgstr "¡Usuario eliminado satisfactoriamente!"
2778
+
2779
+ #: ../features/admin-approval/admin-approval.php:74
2780
+ #: ../features/admin-approval/admin-approval.php:118
2781
+ #: ../features/email-confirmation/email-confirmation.php:135
2782
+ msgid "You either don't have permission for that action or there was an error!"
2783
+ msgstr "¡Usted o no tiene permiso para esa acción o hubo un error"
2784
+
2785
+ #: ../features/admin-approval/admin-approval.php:85
2786
+ msgid "Your session has expired! Please refresh the page and try again."
2787
+ msgstr "¡Su sesión ha expirado! Por favor refresque la página e intente nuevamente."
2788
+
2789
+ #: ../features/admin-approval/admin-approval.php:97
2790
+ msgid "Users successfully approved!"
2791
+ msgstr "¡Usuario aprobado satisfactoriamente!"
2792
+
2793
+ #: ../features/admin-approval/admin-approval.php:106
2794
+ msgid "Users successfully unapproved!"
2795
+ msgstr "¡Usuario desaprobado satisfactoriamente!"
2796
+
2797
+ #: ../features/admin-approval/admin-approval.php:114
2798
+ msgid "Users successfully deleted!"
2799
+ msgstr "¡Usuario eliminado satisfactoriamente!"
2800
+
2801
+ #: ../features/admin-approval/admin-approval.php:134
2802
+ msgid "Your account on %1$s has been approved!"
2803
+ msgstr "¡Su cuenta el %1$s ha sido aprobada!"
2804
+
2805
+ #: ../features/admin-approval/admin-approval.php:135
2806
+ #: ../features/admin-approval/admin-approval.php:138
2807
+ msgid "approved"
2808
+ msgstr "aprobada"
2809
+
2810
+ #: ../features/admin-approval/admin-approval.php:137
2811
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
2812
+ msgstr "Un administrador ha aprobado su cuenta el %1$s (%2$s)."
2813
+
2814
+ #: ../features/admin-approval/admin-approval.php:142
2815
+ msgid "Your account on %1$s has been unapproved!"
2816
+ msgstr "¡Su cuenta ha sido desaprobada el %1$s!"
2817
+
2818
+ #: ../features/admin-approval/admin-approval.php:143
2819
+ #: ../features/admin-approval/admin-approval.php:146
2820
+ msgid "unapproved"
2821
+ msgstr "desaprobado"
2822
+
2823
+ #: ../features/admin-approval/admin-approval.php:145
2824
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
2825
+ msgstr "Un administrador ha desaprobado su cuenta el %1$s (%2$s)."
2826
+
2827
+ #: ../features/admin-approval/admin-approval.php:164
2828
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
2829
+ msgstr "<strong>ERROR</strong>: Su cuenta tiene que ser confirmada por un administrador antes de que pueda autenticarse."
2830
+
2831
+ #: ../features/admin-approval/admin-approval.php:176
2832
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
2833
+ msgstr "Su cuenta tiene que ser confirmada por un administrador antes de que pueda usar la característica \"Recuperar Contraseña\""
2834
+
2835
+ #: ../features/admin-approval/class-admin-approval.php:124
2836
+ msgid "delete this user?"
2837
+ msgstr "¿eliminar este usuario?"
2838
+
2839
+ #: ../features/admin-approval/class-admin-approval.php:127
2840
+ msgid "unapprove this user?"
2841
+ msgstr "¿desaprobar este usuario?"
2842
+
2843
+ #: ../features/admin-approval/class-admin-approval.php:127
2844
+ #: ../features/admin-approval/class-admin-approval.php:234
2845
+ msgid "Unapprove"
2846
+ msgstr "Desaprobar"
2847
+
2848
+ #: ../features/admin-approval/class-admin-approval.php:129
2849
+ msgid "approve this user?"
2850
+ msgstr "¿Aprobar este usuario?"
2851
+
2852
+ #: ../features/admin-approval/class-admin-approval.php:129
2853
+ #: ../features/admin-approval/class-admin-approval.php:233
2854
+ msgid "Approve"
2855
+ msgstr "Aprobar"
2856
+
2857
+ #: ../features/admin-approval/class-admin-approval.php:178
2858
+ #: ../modules/user-listing/userlisting.php:249
2859
+ #: ../modules/user-listing/userlisting.php:623
2860
+ #: ../modules/user-listing/userlisting.php:1264
2861
+ msgid "Firstname"
2862
+ msgstr "Primer Nombre"
2863
+
2864
+ #: ../features/admin-approval/class-admin-approval.php:179
2865
+ #: ../modules/user-listing/userlisting.php:626
2866
+ #: ../modules/user-listing/userlisting.php:1265
2867
+ msgid "Lastname"
2868
+ msgstr "Apellidos"
2869
+
2870
+ #: ../features/admin-approval/class-admin-approval.php:181
2871
+ #: ../modules/user-listing/userlisting.php:124
2872
+ #: ../modules/user-listing/userlisting.php:250
2873
+ #: ../modules/user-listing/userlisting.php:653
2874
+ #: ../modules/user-listing/userlisting.php:1268
2875
+ msgid "Role"
2876
+ msgstr "Rol"
2877
+
2878
+ #: ../features/admin-approval/class-admin-approval.php:182
2879
+ #: ../features/email-confirmation/class-email-confirmation.php:169
2880
+ msgid "Registered"
2881
+ msgstr "Registrado"
2882
+
2883
+ #: ../features/admin-approval/class-admin-approval.php:183
2884
+ msgid "User-status"
2885
+ msgstr "Estado del usuario"
2886
+
2887
+ #: ../features/admin-approval/class-admin-approval.php:263
2888
+ msgid "Do you want to bulk approve the selected users?"
2889
+ msgstr "¿Desea aprobar en bloque los usuarios seleccionados?"
2890
+
2891
+ #: ../features/admin-approval/class-admin-approval.php:271
2892
+ msgid "Do you want to bulk unapprove the selected users?"
2893
+ msgstr "¿Desea desaprobar en bloque los usuarios seleccionados?"
2894
+
2895
+ #: ../features/admin-approval/class-admin-approval.php:277
2896
+ msgid "Do you want to bulk delete the selected users?"
2897
+ msgstr "¿Desea eliminar en bloque los usuarios seleccionados?"
2898
+
2899
+ #: ../features/admin-approval/class-admin-approval.php:285
2900
+ #: ../features/email-confirmation/class-email-confirmation.php:278
2901
+ msgid "Sorry, but you don't have permission to do that!"
2902
+ msgstr "Disculpe, ¡pero no tiene permisos para hacer eso!"
2903
+
2904
+ #: ../features/admin-approval/class-admin-approval.php:341
2905
+ msgid "Approved"
2906
+ msgstr "Aprobado"
2907
+
2908
+ #: ../features/admin-approval/class-admin-approval.php:343
2909
+ msgid "Unapproved"
2910
+ msgstr "Desaprobado"
2911
+
2912
+ #: ../features/admin-approval/class-admin-approval.php:461
2913
+ #: ../features/email-confirmation/class-email-confirmation.php:465
2914
+ msgid "All Users"
2915
+ msgstr "Todos los Usuarios"
2916
+
2917
+ #: ../features/email-confirmation/class-email-confirmation.php:120
2918
+ msgid "delete this user from the _signups table?"
2919
+ msgstr "¿eliminar este usuario de la tabla _signups?"
2920
+
2921
+ #: ../features/email-confirmation/class-email-confirmation.php:121
2922
+ msgid "confirm this email yourself?"
2923
+ msgstr "¿confirmar este email usted mismo?"
2924
+
2925
+ #: ../features/email-confirmation/class-email-confirmation.php:121
2926
+ #: ../features/email-confirmation/class-email-confirmation.php:218
2927
+ msgid "Confirm Email"
2928
+ msgstr "Confirmar Email"
2929
+
2930
+ #: ../features/email-confirmation/class-email-confirmation.php:122
2931
+ msgid "resend the activation link?"
2932
+ msgstr "¿reenviar el enlace de activación?"
2933
+
2934
+ #: ../features/email-confirmation/class-email-confirmation.php:122
2935
+ #: ../features/email-confirmation/class-email-confirmation.php:219
2936
+ msgid "Resend Activation Email"
2937
+ msgstr "Reenviar Email de Activación"
2938
+
2939
+ #: ../features/email-confirmation/class-email-confirmation.php:249
2940
+ msgid "%s couldn't be deleted"
2941
+ msgstr "%s no pudo ser eliminado"
2942
+
2943
+ #: ../features/email-confirmation/class-email-confirmation.php:253
2944
+ msgid "All users have been successfully deleted"
2945
+ msgstr "Todos los usuarios han sido eliminados satisfactoriamenet"
2946
+
2947
+ #: ../features/email-confirmation/class-email-confirmation.php:263
2948
+ msgid "The selected users have been activated"
2949
+ msgstr "Los usuarios seleccionados han sido activados"
2950
+
2951
+ #: ../features/email-confirmation/class-email-confirmation.php:274
2952
+ msgid "The selected users have had their activation emails resent"
2953
+ msgstr "Los usuarios seleccionados han tenido sus email de activación reenviados"
2954
+
2955
+ #: ../features/email-confirmation/class-email-confirmation.php:462
2956
+ #: ../features/email-confirmation/email-confirmation.php:47
2957
+ msgid "Users with Unconfirmed Email Address"
2958
+ msgstr "Usuarios con Direcciones de Email Sin Confirmar"
2959
+
2960
+ #: ../features/email-confirmation/email-confirmation.php:110
2961
+ msgid "There was an error performing that action!"
2962
+ msgstr "¡Hubo un error ejecutando esa acción!"
2963
+
2964
+ #: ../features/email-confirmation/email-confirmation.php:118
2965
+ msgid "The selected user couldn't be deleted"
2966
+ msgstr "El usuario seleccionado no pudo ser eliminado"
2967
+
2968
+ #: ../features/email-confirmation/email-confirmation.php:129
2969
+ msgid "Email notification resent to user"
2970
+ msgstr "Notificación de Email reenviada al usuario"
2971
+
2972
+ #: ../features/email-confirmation/email-confirmation.php:389
2973
+ msgid "[%1$s] Activate %2$s"
2974
+ msgstr "[%1$s] Activar %2$s"
2975
+
2976
+ #: ../features/email-confirmation/email-confirmation.php:433
2977
+ #: ../front-end/register.php:68
2978
+ msgid "Could not create user!"
2979
+ msgstr "¡No se pudo crear el usuario!"
2980
+
2981
+ #: ../features/email-confirmation/email-confirmation.php:436
2982
+ msgid "That username is already activated!"
2983
+ msgstr "¡Ese nombre de usuario ya está activado!"
2984
+
2985
+ #: ../features/email-confirmation/email-confirmation.php:457
2986
+ msgid "There was an error while trying to activate the user"
2987
+ msgstr "Hubo un error intentando activar el usuario"
2988
+
2989
+ #: ../features/email-confirmation/email-confirmation.php:505
2990
+ #: ../modules/email-customizer/admin-email-customizer.php:73
2991
+ msgid "A new subscriber has (been) registered!"
2992
+ msgstr "¡Un nuevo suscriptor ha sido registrado!"
2993
+
2994
+ #: ../features/email-confirmation/email-confirmation.php:508
2995
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
2996
+ msgstr "Nuevo suscriptor el %1$s.<br/><br/>Nombre de Usuario:%2$s<br/>E-mail:%3$s<br/>"
2997
+
2998
+ #: ../features/email-confirmation/email-confirmation.php:615
2999
+ 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!"
3000
+ msgstr "La característica \"Aprobación del Admin\" fue activada en el tiempo de registro, ¡por favor recuerde que necesita aprobar a este usuario antes de que él/ella pueda autenticarse!"
3001
+
3002
+ #: ../features/email-confirmation/email-confirmation.php:557
3003
+ msgid "[%1$s] Your new account information"
3004
+ msgstr "[%1$s] La información de su nueva cuenta"
3005
+
3006
+ #: ../features/email-confirmation/email-confirmation.php:563
3007
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
3008
+ msgstr "¡Bienvenido a %1$s!<br/><br/><br/>Su nombre de usuario es:%2$s y contraseña:%3$s"
3009
+
3010
+ #: ../features/email-confirmation/email-confirmation.php:623
3011
+ #: ../front-end/register.php:127
3012
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
3013
+ msgstr "Antes de que pueda acceder su cuenta, un administrador necesita aprobarla. Usted será notificado via email."
3014
+
3015
+ #: ../features/login-widget/login-widget.php:10
3016
+ msgid "This login widget lets you add a login form in the sidebar."
3017
+ msgstr "El widget de autenticación le permite añadir una forma de autenticación en la barra lateral."
3018
+
3019
+ #: ../features/login-widget/login-widget.php:15
3020
+ msgid "Profile Builder Login Widget"
3021
+ msgstr "Widget de Autenticación de Profile Builder"
3022
+
3023
+ #: ../front-end/class-formbuilder.php:348 ../front-end/login.php:205
3024
+ msgid "Register"
3025
+ msgstr "Registrar"
3026
+
3027
+ #: ../features/login-widget/login-widget.php:63
3028
+ msgid "Title:"
3029
+ msgstr "Título:"
3030
+
3031
+ #: ../features/login-widget/login-widget.php:68
3032
+ msgid "After login redirect URL (optional):"
3033
+ msgstr "URL de redirección luego de autenticarse (opcional):"
3034
+
3035
+ #: ../features/login-widget/login-widget.php:73
3036
+ msgid "Register page URL (optional):"
3037
+ msgstr "URL de página de registro (opcional):"
3038
+
3039
+ #: ../features/login-widget/login-widget.php:78
3040
+ msgid "Password Recovery page URL (optional):"
3041
+ msgstr "URL de página de Recuperar Contraseña (opcional):"
3042
+
3043
+ #: ../features/upgrades/upgrades-functions.php:91
3044
+ #: ../features/upgrades/upgrades-functions.php:134
3045
+ msgid "The usernames cannot be changed."
3046
+ msgstr "Los nombres de usuario no pueden ser cambiados."
3047
+
3048
+ #: ../front-end/class-formbuilder.php:132
3049
+ msgid "Only an administrator can add new users."
3050
+ msgstr "Solamente un administrador puede adicionar nuevos usuarios."
3051
+
3052
+ #: ../front-end/class-formbuilder.php:142
3053
+ msgid "Users can register themselves or you can manually create users here."
3054
+ msgstr "Los usuarios pueden registrarse ellos mismos o usted puede manualmente crear usuarios aquí."
3055
+
3056
+ #: ../front-end/class-formbuilder.php:145
3057
+ msgid "Users cannot currently register themselves, but you can manually create users here."
3058
+ msgstr "Los usuarios no pueden registrarse ellos mismos actualmente, pero usted puede crear usuarios manualmente aquí."
3059
+
3060
+ #: ../front-end/class-formbuilder.php:167
3061
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
3062
+ msgstr "Usted está autenticado actualmente como %1s. Usted no necesita otra cuenta. %2s"
3063
+
3064
+ #: ../front-end/class-formbuilder.php:167
3065
+ msgid "Log out of this account."
3066
+ msgstr "Salir de esta cuenta."
3067
+
3068
+ #: ../front-end/class-formbuilder.php:167
3069
+ msgid "Logout"
3070
+ msgstr "Salir"
3071
+
3072
+ #: ../front-end/class-formbuilder.php:174
3073
+ msgid "You must be logged in to edit your profile."
3074
+ msgstr "Usted tiene que estar autenticado para editar su perfil."
3075
+
3076
+ #: ../front-end/class-formbuilder.php:203
3077
+ msgid "here"
3078
+ msgstr "aquí"
3079
+
3080
+ #: ../front-end/class-formbuilder.php:205
3081
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
3082
+ msgstr "Usted pronto será redirigido automáticamente. Si ve esta página por más de %1$d segundos, por favor haga clic en %2$s.%3$s"
3083
+
3084
+ #: ../front-end/class-formbuilder.php:293
3085
+ #: ../front-end/class-formbuilder.php:300
3086
+ msgid "The account %1s has been successfully created!"
3087
+ msgstr "¡La cuenta %1s ha sido creada satisfactoriamente!"
3088
+
3089
+ #: ../front-end/class-formbuilder.php:296
3090
+ #: ../front-end/class-formbuilder.php:306
3091
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
3092
+ msgstr "Antes de que pueda acceder a su cuenta %1s, necesita confirmar su dirección de email. Por favor chequee su bandeja de entrada y haga clic en el enlace de activación."
3093
+
3094
+ #: ../front-end/class-formbuilder.php:302
3095
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
3096
+ msgstr "Antes de que pueda acceder a su cuenta %1s, un administrador tiene que aprobarla. Usted será notificado via email."
3097
+
3098
+ #: ../front-end/class-formbuilder.php:316
3099
+ msgid "Your profile has been successfully updated!"
3100
+ msgstr "¡Su perfil ha sido actualizado satisfactoriamente!"
3101
+
3102
+ #: ../front-end/class-formbuilder.php:326
3103
+ msgid "There was an error in the submitted form"
3104
+ msgstr "Hubo un error en la forma enviada"
3105
+
3106
+ #: ../front-end/class-formbuilder.php:348
3107
+ msgid "Add User"
3108
+ msgstr "Adicionar Usuario"
3109
+
3110
+ #: ../admin/add-ons.php:170 ../front-end/class-formbuilder.php:351
3111
+ msgid "Update"
3112
+ msgstr "Actualizar"
3113
+
3114
+ #: ../front-end/class-formbuilder.php:401
3115
+ #: ../front-end/extra-fields/extra-fields.php:35
3116
+ msgid "The avatar was successfully deleted!"
3117
+ msgstr "¡El avatar ha sido eliminado satisfactoriamente!"
3118
+
3119
+ #: ../front-end/class-formbuilder.php:401
3120
+ #: ../front-end/extra-fields/extra-fields.php:37
3121
+ msgid "The following attachment was successfully deleted:"
3122
+ msgstr "El siguiente adjunto fue borrado satisfactoriamente:"
3123
+
3124
+ #: ../front-end/class-formbuilder.php:413
3125
+ msgid "Send these credentials via email."
3126
+ msgstr "Enviar estas credenciales via email."
3127
+
3128
+ #: ../front-end/extra-fields/extra-fields.php:99 ../front-end/login.php:92
3129
+ #: ../front-end/login.php:99 ../front-end/login.php:113
3130
+ #: ../front-end/recover.php:17 ../front-end/recover.php:228
3131
+ msgid "ERROR"
3132
+ msgstr "ERROR"
3133
+
3134
+ #: ../front-end/login.php:92
3135
+ msgid "The password you entered is incorrect."
3136
+ msgstr "La contraseña que entró es incorrecta."
3137
+
3138
+ #: ../front-end/login.php:93 ../front-end/login.php:100
3139
+ msgid "Password Lost and Found."
3140
+ msgstr "Perdido y Encontrado de Contraseña."
3141
+
3142
+ #: ../front-end/login.php:93 ../front-end/login.php:100
3143
+ msgid "Lost your password"
3144
+ msgstr "Perdió su contraseña"
3145
+
3146
+ #: ../front-end/login.php:113
3147
+ msgid "Both fields are empty."
3148
+ msgstr "Ambos campos están vacíos."
3149
+
3150
+ #: ../front-end/login.php:254
3151
+ msgid "You are currently logged in as %1$s. %2$s"
3152
+ msgstr "Usted está autenticado actualmente como %1$s. %2$s"
3153
+
3154
+ #: ../front-end/login.php:253 ../front-end/logout.php:26
3155
+ msgid "Log out of this account"
3156
+ msgstr "Salir de esta cuenta"
3157
+
3158
+ #: ../front-end/login.php:253
3159
+ msgid "Log out"
3160
+ msgstr "Salir"
3161
+
3162
+ #: ../front-end/recover.php:17
3163
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
3164
+ msgstr "Su cuenta tiene que ser confirmada por un administrador antes de que pueda usar la característica \"Resetear Contraseña\"."
3165
+
3166
+ #: ../front-end/recover.php:91
3167
+ msgid "Reset Password"
3168
+ msgstr "Resetear Contraseña"
3169
+
3170
+ #: ../front-end/recover.php:111
3171
+ msgid "Please enter your username or email address."
3172
+ msgstr "Por favor entre su nombre de usuario o dirección de email."
3173
+
3174
+ #: ../front-end/recover.php:112
3175
+ msgid "You will receive a link to create a new password via email."
3176
+ msgstr "Usted recibirá un enlace para crear una nueva contraseña via email."
3177
+
3178
+ #: ../front-end/recover.php:119
3179
+ msgid "Username or E-mail"
3180
+ msgstr " Nombre de Usuario o E-mail"
3181
+
3182
+ #: ../front-end/recover.php:125
3183
+ msgid "Get New Password"
3184
+ msgstr "Obtener Nueva Contraseña"
3185
+
3186
+ #: ../front-end/recover.php:166
3187
+ msgid "The username entered wasn't found in the database!"
3188
+ msgstr "¡El nombre de usuario entrado no se encontró en la base de datos!"
3189
+
3190
+ #: ../front-end/recover.php:166
3191
+ msgid "Please check that you entered the correct username."
3192
+ msgstr "Por favor chequee que entró el nombre de usuario correcto."
3193
+
3194
+ #: ../front-end/recover.php:181
3195
+ msgid "Check your e-mail for the confirmation link."
3196
+ msgstr "Chequee su e-mail para el enlace de confirmación."
3197
+
3198
+ #: ../front-end/recover.php:216
3199
+ 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"
3200
+ msgstr "Alguien pidió que la contraseña sea reseteada para la siguiente cuenta:<b>%1$s</b><br/>Si esto fue un error, solamente ignore este email y nada ocurrirá.<br/>Para resetear su contraseña, visite el siguiente enlace:%2$s"
3201
+
3202
+ #: ../front-end/recover.php:219
3203
+ msgid "Password Reset from \"%1$s\""
3204
+ msgstr "Reseteo de Contraseña desde \"%1$s\""
3205
+
3206
+ #: ../front-end/recover.php:228
3207
+ msgid "There was an error while trying to send the activation link to %1$s!"
3208
+ msgstr "¡Hubo un error mientras se intentaba enviar el enlace de activación a %1$s!"
3209
+
3210
+ #: ../front-end/recover.php:188
3211
+ msgid "The email address entered wasn't found in the database!"
3212
+ msgstr "¡La dirección de email entrada no se encontró en la base de datos!"
3213
+
3214
+ #: ../front-end/recover.php:188
3215
+ msgid "Please check that you entered the correct email address."
3216
+ msgstr "Por favor chequee que entró la dirección de email correcta."
3217
+
3218
+ #: ../front-end/recover.php:256
3219
+ msgid "Your password has been successfully changed!"
3220
+ msgstr "¡Su contraseña ha sido cambiada satisfactoriamente!"
3221
+
3222
+ #: ../front-end/recover.php:275
3223
+ msgid "You have successfully reset your password to: %1$s"
3224
+ msgstr "Usted ha reseteado satisfactoriamente su contraseña a: %1$s"
3225
+
3226
+ #: ../front-end/recover.php:278 ../front-end/recover.php:292
3227
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
3228
+ msgstr "Contraseña Reseteada Satisfactoriamente para %1$s el \"%2$s\""
3229
+
3230
+ #: ../front-end/recover.php:289
3231
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
3232
+ msgstr "%1$s ha pedido un cambio de contraseña via la característica de reseteo de contraseña.<br/>Su nueva contraseña es:%2$s"
3233
+
3234
+ #: ../front-end/recover.php:308
3235
+ msgid "The entered passwords don't match!"
3236
+ msgstr "¡Las contraseñas entradas no coinciden!"
3237
+
3238
+ #: ../front-end/recover.php:375
3239
+ msgid "ERROR:"
3240
+ msgstr "ERROR:"
3241
+
3242
+ #: ../front-end/recover.php:375
3243
+ msgid "Invalid key!"
3244
+ msgstr "¡Llave inválida!"
3245
+
3246
+ #: ../front-end/register.php:46
3247
+ msgid "Invalid activation key!"
3248
+ msgstr "¡Llave de activación inválida!"
3249
+
3250
+ #: ../front-end/register.php:50
3251
+ msgid "This username is now active!"
3252
+ msgstr "¡Este nombre de usuario está ahora activo!"
3253
+
3254
+ #: ../front-end/register.php:71
3255
+ msgid "This username is already activated!"
3256
+ msgstr "¡Este nombre de usuario está ya activado!"
3257
+
3258
+ #: ../front-end/register.php:126
3259
+ msgid "Your email was successfully confirmed."
3260
+ msgstr "Su email fue confirmado satisfactoriamente."
3261
+
3262
+ #: ../front-end/register.php:159
3263
+ msgid "There was an error while trying to activate the user."
3264
+ msgstr "Hubo un error mientras se trataba de activar el usuario."
3265
+
3266
+ #: ../front-end/default-fields/email/email.php:44
3267
+ msgid "The email you entered is not a valid email address."
3268
+ msgstr "El email que ha entrado no es una dirección de email válida."
3269
+
3270
+ #: ../front-end/default-fields/email/email.php:57
3271
+ #: ../front-end/default-fields/email/email.php:64
3272
+ msgid "This email is already reserved to be used soon."
3273
+ msgstr "Este email ya está reservado para ser usado pronto."
3274
+
3275
+ #: ../front-end/default-fields/email/email.php:57
3276
+ #: ../front-end/default-fields/email/email.php:64
3277
+ #: ../front-end/default-fields/email/email.php:73
3278
+ #: ../front-end/default-fields/email/email.php:84
3279
+ #: ../front-end/default-fields/username/username.php:50
3280
+ #: ../front-end/default-fields/username/username.php:65
3281
+ msgid "Please try a different one!"
3282
+ msgstr "¡Por favor trate con uno diferente!"
3283
+
3284
+ #: ../front-end/default-fields/email/email.php:73
3285
+ #: ../front-end/default-fields/email/email.php:84
3286
+ msgid "This email is already in use."
3287
+ msgstr "Este email ya está en uso."
3288
+
3289
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:37
3290
+ #: ../front-end/default-fields/password-repeat/password-repeat.php:41
3291
+ msgid "The passwords do not match"
3292
+ msgstr "Las contraseñas no coinciden"
3293
+
3294
+ #: ../front-end/default-fields/username/username.php:50
3295
+ msgid "This username already exists."
3296
+ msgstr "El nombre de usuario ya existe."
3297
+
3298
+ #: ../front-end/default-fields/username/username.php:65
3299
+ msgid "This username is already reserved to be used soon."
3300
+ msgstr "El nombre de usuario ya está reservado para ser usado pronto."
3301
+
3302
+ #: ../modules/user-listing/userlisting.php:247
3303
+ msgid "Avatar"
3304
+ msgstr "Avatar"
3305
+
3306
+ #: ../front-end/extra-fields/avatar/avatar.php:72
3307
+ #: ../front-end/extra-fields/checkbox/checkbox.php:45
3308
+ #: ../front-end/extra-fields/datepicker/datepicker.php:40
3309
+ #: ../front-end/extra-fields/input-hidden/input-hidden.php:34
3310
+ #: ../front-end/extra-fields/input/input.php:30
3311
+ #: ../front-end/extra-fields/radio/radio.php:44
3312
+ #: ../front-end/extra-fields/select-multiple/select-multiple.php:46
3313
+ #: ../front-end/extra-fields/select-timezone/select-timezone.php:44
3314
+ #: ../front-end/extra-fields/select/select.php:46
3315
+ #: ../front-end/extra-fields/textarea/textarea.php:30
3316
+ #: ../front-end/extra-fields/upload/upload.php:70
3317
+ #: ../front-end/extra-fields/wysiwyg/wysiwyg.php:33
3318
+ msgid "required"
3319
+ msgstr "requerido"
3320
+
3321
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
3322
+ msgid "To use reCAPTCHA you must get an API key from"
3323
+ msgstr "Para utilizar reCAPTCHA usted tiene que obtener la llave de API desde"
3324
+
3325
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:131
3326
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
3327
+ msgstr "¡Por razones de seguridad, usted tiene que para el ip remoto a reCAPTCHA!"
3328
+
3329
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:192
3330
+ msgid "To use reCAPTCHA you must get an API public key from:"
3331
+ msgstr "Para utilizar reCAPTCHA usted tiene que obtener una llave pública API desde:"
3332
+
3333
+ #: ../modules/modules.php:11 ../modules/modules.php:55
3334
+ msgid "Modules"
3335
+ msgstr "Módulos"
3336
+
3337
+ #: ../modules/modules.php:56
3338
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
3339
+ msgstr "Aquí usted puede activar/desactivar los módulos disponibles para Profile Builder."
3340
+
3341
+ #: ../modules/modules.php:66
3342
+ msgid "Name/Description"
3343
+ msgstr "Nombre/Descripción"
3344
+
3345
+ #: ../modules/modules.php:67
3346
+ msgid "Status"
3347
+ msgstr "Estado"
3348
+
3349
+ #: ../modules/modules.php:74 ../modules/modules.php:81
3350
+ #: ../modules/modules.php:88 ../modules/modules.php:95
3351
+ #: ../modules/modules.php:102 ../modules/modules.php:109
3352
+ msgid "Active"
3353
+ msgstr "Activo"
3354
+
3355
+ #: ../modules/modules.php:75 ../modules/modules.php:82
3356
+ #: ../modules/modules.php:89 ../modules/modules.php:96
3357
+ #: ../modules/modules.php:103 ../modules/modules.php:110
3358
+ msgid "Inactive"
3359
+ msgstr "Inactivo"
3360
+
3361
+ #: ../modules/email-customizer/admin-email-customizer.php:11
3362
+ #: ../modules/email-customizer/admin-email-customizer.php:12
3363
+ #: ../modules/modules.php:93
3364
+ msgid "Admin Email Customizer"
3365
+ msgstr "Personalizador de Email de Admin"
3366
+
3367
+ #: ../modules/email-customizer/user-email-customizer.php:11
3368
+ #: ../modules/email-customizer/user-email-customizer.php:12
3369
+ #: ../modules/modules.php:100
3370
+ msgid "User Email Customizer"
3371
+ msgstr "Personalizador de Email de Usuario"
3372
+
3373
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
3374
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:242
3375
+ msgid "Save"
3376
+ msgstr "Salvar"
3377
+
3378
+ #: ../modules/multiple-forms/edit-profile-forms.php:202
3379
+ #: ../modules/multiple-forms/register-forms.php:226
3380
+ msgid "Redirect"
3381
+ msgstr "Redireccionar"
3382
+
3383
+ #: ../modules/multiple-forms/edit-profile-forms.php:204
3384
+ #: ../modules/multiple-forms/register-forms.php:228
3385
+ msgid "URL"
3386
+ msgstr "URL"
3387
+
3388
+ #: ../modules/email-customizer/admin-email-customizer.php:38
3389
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
3390
+ msgstr "Estos ajustes están también replicados en la página de ajustes de \"Personalizador de Email de Usuario\" al salvar."
3391
+
3392
+ #: ../modules/email-customizer/admin-email-customizer.php:41
3393
+ #: ../modules/email-customizer/user-email-customizer.php:41
3394
+ msgid "From (name)"
3395
+ msgstr "De (nombre)"
3396
+
3397
+ #: ../modules/email-customizer/admin-email-customizer.php:49
3398
+ #: ../modules/email-customizer/user-email-customizer.php:49
3399
+ msgid "From (reply-to email)"
3400
+ msgstr "De (email de responder-a)"
3401
+
3402
+ #: ../modules/email-customizer/admin-email-customizer.php:57
3403
+ #: ../modules/email-customizer/user-email-customizer.php:57
3404
+ msgid "Common Settings"
3405
+ msgstr "Ajustes Comunes"
3406
+
3407
+ #: ../modules/email-customizer/admin-email-customizer.php:60
3408
+ msgid ""
3409
+ "\n"
3410
+ "<p>New subscriber on {{site_name}}.</p>\n"
3411
+ "<p>Username:{{username}}</p>\n"
3412
+ "<p>E-mail:{{user_email}}</p>\n"
3413
+ msgstr ""
3414
+ "\n"
3415
+ "<p>Nuevo suscriptor en {{site_name}}.</p>\n"
3416
+ "<p>Nombre de Usuario:{{username}}</p>\n"
3417
+
3418
+ #: ../modules/email-customizer/admin-email-customizer.php:69
3419
+ #: ../modules/email-customizer/admin-email-customizer.php:99
3420
+ #: ../modules/email-customizer/admin-email-customizer.php:126
3421
+ #: ../modules/email-customizer/user-email-customizer.php:71
3422
+ #: ../modules/email-customizer/user-email-customizer.php:99
3423
+ #: ../modules/email-customizer/user-email-customizer.php:128
3424
+ #: ../modules/email-customizer/user-email-customizer.php:155
3425
+ #: ../modules/email-customizer/user-email-customizer.php:183
3426
+ #: ../modules/email-customizer/user-email-customizer.php:214
3427
+ #: ../modules/email-customizer/user-email-customizer.php:241
3428
+ msgid "Email Subject"
3429
+ msgstr "Asunto del Email"
3430
+
3431
+ #: ../modules/email-customizer/admin-email-customizer.php:84
3432
+ msgid "Default Registration & Registration with Email Confirmation"
3433
+ msgstr "Registro Por Defecto y Registro con Confirmación de Email"
3434
+
3435
+ #: ../modules/email-customizer/admin-email-customizer.php:87
3436
+ msgid ""
3437
+ "\n"
3438
+ "<p>New subscriber on {{site_name}}.</p>\n"
3439
+ "<p>Username:{{username}}</p>\n"
3440
+ "<p>E-mail:{{user_email}}</p>\n"
3441
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
3442
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
3443
+ msgstr ""
3444
+ "\n"
3445
+ "<p>Nuevo suscriptor en {{site_name}}.</p>\n"
3446
+ "<p>Nombre de Usuario:{{username}}</p>\n"
3447
+ "<p>E-mail:{{user_email}}</p>\n"
3448
+ "<p>La característica de Aprobación del Admin fue activada en el tiempo de registro,\n"
3449
+ "así que por favor recuerde que ¡necesita aprobar a este usuario antes de que pueda autenticarse!</p>\n"
3450
+
3451
+ #: ../modules/email-customizer/admin-email-customizer.php:114
3452
+ #: ../modules/email-customizer/user-email-customizer.php:143
3453
+ msgid "Registration with Admin Approval"
3454
+ msgstr "Registro con Aprobación de Admin"
3455
+
3456
+ #: ../modules/email-customizer/email-customizer.php:7
3457
+ msgid "Available Tags"
3458
+ msgstr "Etiquetas Disponibles"
3459
+
3460
+ #: ../features/email-confirmation/class-email-confirmation.php:91
3461
+ #: ../features/email-confirmation/class-email-confirmation.php:170
3462
+ #: ../modules/email-customizer/email-customizer.php:11
3463
+ msgid "User Meta"
3464
+ msgstr "Meta del Usuario"
3465
+
3466
+ #: ../modules/email-customizer/email-customizer.php:21
3467
+ msgid "Site Url"
3468
+ msgstr "Url del Sitio"
3469
+
3470
+ #: ../modules/email-customizer/email-customizer.php:22
3471
+ msgid "Site Name"
3472
+ msgstr "Nombre del Sitio"
3473
+
3474
+ #: ../modules/email-customizer/email-customizer.php:25
3475
+ #: ../modules/user-listing/userlisting.php:133
3476
+ msgid "User Id"
3477
+ msgstr "Id del Usuario"
3478
+
3479
+ #: ../modules/email-customizer/email-customizer.php:33
3480
+ msgid "Reply To"
3481
+ msgstr "Responder a"
3482
+
3483
+ #: ../modules/email-customizer/email-customizer.php:36
3484
+ msgid "Activation Key"
3485
+ msgstr "Llave de Activación"
3486
+
3487
+ #: ../modules/email-customizer/email-customizer.php:37
3488
+ msgid "Activation Url"
3489
+ msgstr "URL de Activación"
3490
+
3491
+ #: ../modules/email-customizer/email-customizer.php:38
3492
+ msgid "Activation Link"
3493
+ msgstr "Enlace de Activación"
3494
+
3495
+ #: ../modules/email-customizer/user-email-customizer.php:64
3496
+ msgid ""
3497
+ "\n"
3498
+ "<h3>Welcome to {{site_name}}!</h3>\n"
3499
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3500
+ msgstr ""
3501
+ "\n"
3502
+ "<h3>¡Bienvenido a {{site_name}}!</h3>\n"
3503
+ "<p>Su nombre de usuario es:{{username}} y su contraseña:{{password}}</p>\n"
3504
+
3505
+ #: ../modules/email-customizer/user-email-customizer.php:85
3506
+ msgid "Default Registration"
3507
+ msgstr "Registro Por Defecto"
3508
+
3509
+ #: ../modules/email-customizer/user-email-customizer.php:91
3510
+ msgid ""
3511
+ "\n"
3512
+ "<p>To activate your user, please click the following link:<br/>\n"
3513
+ "{{{activation_link}}}</p>\n"
3514
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
3515
+ msgstr ""
3516
+ "\n"
3517
+ "<p>Para activar su usuario, por favor haga clic en el enlace siguiente:<br/>\n"
3518
+ "{{{activation_link}}}</p>\n"
3519
+ "<p>Luego de activar, recibirá otro email con sus credenciales.</p>\n"
3520
+
3521
+ #: ../modules/email-customizer/user-email-customizer.php:103
3522
+ msgid "[{{site_name}}] Activate {{username}}"
3523
+ msgstr "[{{site_name}}] Activar {{username}}"
3524
+
3525
+ #: ../modules/email-customizer/user-email-customizer.php:114
3526
+ msgid "Registration with Email Confirmation"
3527
+ msgstr "Registro con Confirmación de Email"
3528
+
3529
+ #: ../modules/email-customizer/user-email-customizer.php:120
3530
+ msgid ""
3531
+ "\n"
3532
+ "<h3>Welcome to {{site_name}}!</h3>\n"
3533
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3534
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
3535
+ msgstr ""
3536
+ "\n"
3537
+ "<h3>¡Bienvenido a {{site_name}}!</h3>\n"
3538
+ "<p>Su nombre de usuario es:{{username}} y su contraseña:{{password}}</p>\n"
3539
+ "<p>Antes de que pueda acceder a su cuenta, un administrador necesita aprobarla. Usted será notificado via email..</p>\n"
3540
+
3541
+ #: ../modules/email-customizer/user-email-customizer.php:132
3542
+ msgid "A new account has been created for you on {{site_name}}"
3543
+ msgstr "Una nueva cuenta ha sido creada para usted en {{site_name}}"
3544
+
3545
+ #: ../modules/email-customizer/user-email-customizer.php:148
3546
+ msgid ""
3547
+ "\n"
3548
+ "<h3>Good News!</h3>\n"
3549
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
3550
+ msgstr ""
3551
+ "\n"
3552
+ "<h3>¡Buenas Noticias!</h3>\n"
3553
+ "<p>Un administrador ha aprobado su cuenta: {{username}} en {{site_name}}.</p>\n"
3554
+
3555
+ #: ../modules/email-customizer/user-email-customizer.php:159
3556
+ msgid "Your account on {{site_name}} has been approved!"
3557
+ msgstr "¡Su cuenta en {{site_name}} ha sido aprobada!"
3558
+
3559
+ #: ../modules/email-customizer/user-email-customizer.php:170
3560
+ msgid "User Approval Notification"
3561
+ msgstr "Notificación de Aprobación de Usuario"
3562
+
3563
+ #: ../modules/email-customizer/user-email-customizer.php:175
3564
+ msgid ""
3565
+ "\n"
3566
+ "<h3>Hello,</h3>\n"
3567
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
3568
+ msgstr ""
3569
+ "\n"
3570
+ "<h3>Hola,</h3>\n"
3571
+ "<p>Desafortunadamente un administrador ha desaprobado su cuenta: {{username}} en {{site_name}}.</p>\n"
3572
+
3573
+ #: ../modules/email-customizer/user-email-customizer.php:187
3574
+ msgid "Your account on {{site_name}} has been unapproved!"
3575
+ msgstr "¡Su cuenta en {{site_name}} ha sido desaprobada!"
3576
+
3577
+ #: ../modules/email-customizer/user-email-customizer.php:198
3578
+ msgid "Unapproved User Notification"
3579
+ msgstr "Notificación de Usuario Desaprobado"
3580
+
3581
+ #: ../modules/multiple-forms/edit-profile-forms.php:11
3582
+ #: ../modules/multiple-forms/edit-profile-forms.php:12
3583
+ msgid "Edit-profile Form"
3584
+ msgstr "Forma de Editar Perfil"
3585
+
3586
+ #: ../modules/multiple-forms/edit-profile-forms.php:13
3587
+ #: ../modules/multiple-forms/register-forms.php:13
3588
+ #: ../modules/user-listing/userlisting.php:13
3589
+ msgid "Add New"
3590
+ msgstr "Adicionar Nuevo"
3591
+
3592
+ #: ../modules/multiple-forms/edit-profile-forms.php:14
3593
+ msgid "Add new Edit-profile Form"
3594
+ msgstr "Adicionar nueva Forma de Editar Perfil "
3595
+
3596
+ #: ../modules/multiple-forms/edit-profile-forms.php:15
3597
+ msgid "Edit the Edit-profile Forms"
3598
+ msgstr "Editar las Formas de Editar Perfil"
3599
+
3600
+ #: ../modules/multiple-forms/edit-profile-forms.php:16
3601
+ msgid "New Edit-profile Form"
3602
+ msgstr "Nueva Forma de Editar Perfil"
3603
+
3604
+ #: ../modules/multiple-forms/edit-profile-forms.php:17
3605
+ #: ../modules/multiple-forms/edit-profile-forms.php:23
3606
+ msgid "Edit-profile Forms"
3607
+ msgstr "Formas de Editar Perfil"
3608
+
3609
+ #: ../modules/multiple-forms/edit-profile-forms.php:18
3610
+ msgid "View the Edit-profile Form"
3611
+ msgstr "Ver la Forma de Editar Perfil "
3612
+
3613
+ #: ../modules/multiple-forms/edit-profile-forms.php:19
3614
+ msgid "Search the Edit-profile Forms"
3615
+ msgstr "Buscar las Formas de Editar Perfil"
3616
+
3617
+ #: ../modules/multiple-forms/edit-profile-forms.php:20
3618
+ msgid "No Edit-profile Form found"
3619
+ msgstr "No se encontró Forma de Editar Perfil"
3620
+
3621
+ #: ../modules/multiple-forms/edit-profile-forms.php:21
3622
+ msgid "No Edit-profile Forms found in trash"
3623
+ msgstr "No se encontró Forma de Editar Perfil en la papelera"
3624
+
3625
+ #: ../modules/multiple-forms/edit-profile-forms.php:131
3626
+ #: ../modules/multiple-forms/register-forms.php:134
3627
+ #: ../modules/user-listing/userlisting.php:1155
3628
+ msgid "Shortcode"
3629
+ msgstr "Código corto"
3630
+
3631
+ #: ../modules/multiple-forms/edit-profile-forms.php:151
3632
+ #: ../modules/multiple-forms/register-forms.php:155
3633
+ #: ../modules/user-listing/userlisting.php:1176
3634
+ msgid "(no title)"
3635
+ msgstr "(sin título)"
3636
+
3637
+ #: ../modules/multiple-forms/edit-profile-forms.php:171
3638
+ #: ../modules/multiple-forms/register-forms.php:174
3639
+ #: ../modules/user-listing/userlisting.php:1196
3640
+ msgid "The shortcode will be available after you publish this form."
3641
+ msgstr "El código corto estará disponible luego de que publique esta forma."
3642
+
3643
+ #: ../modules/multiple-forms/edit-profile-forms.php:173
3644
+ #: ../modules/multiple-forms/register-forms.php:176
3645
+ #: ../modules/user-listing/userlisting.php:1198
3646
+ msgid "Use this shortcode on the page you want the form to be displayed:"
3647
+ msgstr "Utilice este código corto en la página en la que desea que la forma se muestre:"
3648
+
3649
+ #: ../modules/multiple-forms/edit-profile-forms.php:177
3650
+ #: ../modules/multiple-forms/register-forms.php:180
3651
+ #: ../modules/user-listing/userlisting.php:1202
3652
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
3653
+ msgstr "<span style=\"color:red;\">Nota:</span> ¡cambiar el título de la forma también cambia el código corto!"
3654
+
3655
+ #: ../modules/multiple-forms/edit-profile-forms.php:183
3656
+ #: ../modules/multiple-forms/register-forms.php:186
3657
+ #: ../modules/user-listing/userlisting.php:1235
3658
+ msgid "Form Shortcode"
3659
+ msgstr "Código Corto de la Forma"
3660
+
3661
+ #: ../modules/multiple-forms/edit-profile-forms.php:202
3662
+ #: ../modules/multiple-forms/register-forms.php:226
3663
+ msgid "Whether to redirect the user to a specific page or not"
3664
+ msgstr "Cuando redireccionar al usuario a una página específica o no"
3665
+
3666
+ #: ../modules/multiple-forms/edit-profile-forms.php:203
3667
+ #: ../modules/multiple-forms/register-forms.php:227
3668
+ msgid "Display Messages"
3669
+ msgstr "Mostrar Mensajes"
3670
+
3671
+ #: ../modules/multiple-forms/edit-profile-forms.php:203
3672
+ #: ../modules/multiple-forms/register-forms.php:227
3673
+ msgid "Allowed time to display any success messages (in seconds)"
3674
+ msgstr "Tiempo permitido para mostrar cualquier mensajes satisfactorios (en segundos)"
3675
+
3676
+ #: ../modules/multiple-forms/edit-profile-forms.php:204
3677
+ 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"
3678
+ msgstr "Especificar la URL de la página a la que los usuarios serán redireccionados una vez que actualizaron su perfil usando esta forma<br/>Utilizar el siguiente formato: http://www.mysite.com"
3679
+
3680
+ #: ../modules/multiple-forms/edit-profile-forms.php:211
3681
+ msgid "After Profile Update..."
3682
+ msgstr "Luego de la Actualización del Perfil..."
3683
+
3684
+ #: ../modules/multiple-forms/edit-profile-forms.php:237
3685
+ #: ../modules/multiple-forms/register-forms.php:258
3686
+ msgid "Add New Field to the List"
3687
+ msgstr "Adicionar Nuevo Campo a la Lista"
3688
+
3689
+ #: ../modules/multiple-forms/edit-profile-forms.php:241
3690
+ #: ../modules/multiple-forms/register-forms.php:262
3691
+ msgid "Choose one of the supported fields you manage <a href=\""
3692
+ msgstr "Escoger uno de los campos soportados que usted gestiona <a href=\""
3693
+
3694
+ #: ../modules/multiple-forms/multiple-forms.php:399
3695
+ msgid "<pre>Title (Type)</pre>"
3696
+ msgstr "<pre>Título (Tipo)</pre>"
3697
+
3698
+ #: ../modules/multiple-forms/multiple-forms.php:215
3699
+ msgid "You need to specify the title of the form before creating it"
3700
+ msgstr "Usted necesita especificar el título de la forma antes de crearla"
3701
+
3702
+ #: ../modules/multiple-forms/register-forms.php:11
3703
+ #: ../modules/multiple-forms/register-forms.php:12
3704
+ msgid "Registration Form"
3705
+ msgstr "Forma de Registro"
3706
+
3707
+ #: ../modules/multiple-forms/register-forms.php:14
3708
+ msgid "Add new Registration Form"
3709
+ msgstr "Adicionar nueva Forma de Registro"
3710
+
3711
+ #: ../modules/multiple-forms/register-forms.php:15
3712
+ msgid "Edit the Registration Forms"
3713
+ msgstr "Editar las Formas de Registro"
3714
+
3715
+ #: ../modules/multiple-forms/register-forms.php:16
3716
+ msgid "New Registration Form"
3717
+ msgstr "Nueva Forma de Registro"
3718
+
3719
+ #: ../modules/multiple-forms/register-forms.php:17
3720
+ #: ../modules/multiple-forms/register-forms.php:23
3721
+ msgid "Registration Forms"
3722
+ msgstr "Formas de Registro"
3723
+
3724
+ #: ../modules/multiple-forms/register-forms.php:18
3725
+ msgid "View the Registration Form"
3726
+ msgstr "Ver la Forma de Registro"
3727
+
3728
+ #: ../modules/multiple-forms/register-forms.php:19
3729
+ msgid "Search the Registration Forms"
3730
+ msgstr "Buscar las Formas de Registro"
3731
+
3732
+ #: ../modules/multiple-forms/register-forms.php:20
3733
+ msgid "No Registration Form found"
3734
+ msgstr "No se encontró Forma de Registro"
3735
+
3736
+ #: ../modules/multiple-forms/register-forms.php:21
3737
+ msgid "No Registration Forms found in trash"
3738
+ msgstr "No se encontraron Formas de Registro en la papelera"
3739
+
3740
+ #: ../modules/multiple-forms/register-forms.php:215
3741
+ msgid "Default Role"
3742
+ msgstr "Rol Por Defecto"
3743
+
3744
+ #: ../modules/multiple-forms/register-forms.php:224
3745
+ msgid "Set Role"
3746
+ msgstr "Establecer Rol"
3747
+
3748
+ #: ../modules/multiple-forms/register-forms.php:224
3749
+ 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"
3750
+ msgstr "Escoger qué rol el usuario va a tener luego de que se registra<br/>Si no se especifica, se le asigna por defecto el rol establecido en los ajustes de WordPress"
3751
+
3752
+ #: ../modules/multiple-forms/register-forms.php:225
3753
+ msgid "Automatically Log In"
3754
+ msgstr "Autenticarse Automáticamente"
3755
+
3756
+ #: ../modules/multiple-forms/register-forms.php:225
3757
+ 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"
3758
+ msgstr "Cuando autenticarse automáticamente en el nuevo usuario registrado o no<br/>Solamente funciona en sitios simples sin las características \"Aprobación de Admin\" y \"Confirmación por Email\" activadas<br/>ADVERTENCIA: Hacer caché en la forma de registro va a hacer que la autenticación automática no funcione"
3759
+
3760
+ #: ../modules/multiple-forms/register-forms.php:228
3761
+ 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"
3762
+ msgstr "Especificar la URL de la página a la que los usuarios serán redirigidos una vez registrados usando esta forma<br/>Utilice el siguiente formato: http://www.mysite.com"
3763
+
3764
+ #: ../modules/multiple-forms/register-forms.php:234
3765
+ msgid "After Registration..."
3766
+ msgstr "Luego del Registro..."
3767
+
3768
+ #: ../modules/user-listing/class-userlisting.php:470
3769
+ #: ../modules/user-listing/userlisting.php:724
3770
+ #: ../modules/user-listing/userlisting.php:968
3771
+ #: ../modules/user-listing/userlisting.php:1011
3772
+ #: ../modules/user-listing/userlisting.php:1355
3773
+ msgid "Search Users by All Fields"
3774
+ msgstr "Buscar Usuarios por Todos los Campos"
3775
+
3776
+ #: ../modules/user-listing/userlisting.php:14
3777
+ msgid "Add new User Listing"
3778
+ msgstr "Adicionar Nuevo Listado de Usuario"
3779
+
3780
+ #: ../modules/user-listing/userlisting.php:15
3781
+ msgid "Edit the User Listing"
3782
+ msgstr "Editar el Listado de Usuario"
3783
+
3784
+ #: ../modules/user-listing/userlisting.php:16
3785
+ msgid "New User Listing"
3786
+ msgstr "Nuevo Listado de Usuario"
3787
+
3788
+ #: ../modules/user-listing/userlisting.php:18
3789
+ msgid "View the User Listing"
3790
+ msgstr "Ver el Listado de Usuario"
3791
+
3792
+ #: ../modules/user-listing/userlisting.php:19
3793
+ msgid "Search the User Listing"
3794
+ msgstr "Buscar el Listado de Usuario"
3795
+
3796
+ #: ../modules/user-listing/userlisting.php:20
3797
+ msgid "No User Listing found"
3798
+ msgstr "No se encontró Listado de Usuario"
3799
+
3800
+ #: ../modules/user-listing/userlisting.php:21
3801
+ msgid "No User Listing found in trash"
3802
+ msgstr "No se encontró Listado de Usuario en la papelera"
3803
+
3804
+ #: ../modules/user-listing/userlisting.php:95
3805
+ msgid "Display name as"
3806
+ msgstr "Mostrar nombre como"
3807
+
3808
+ #: ../modules/user-listing/userlisting.php:125
3809
+ #: ../modules/user-listing/userlisting.php:1263
3810
+ msgid "Registration Date"
3811
+ msgstr "Fecha de Registro"
3812
+
3813
+ #: ../modules/user-listing/userlisting.php:126
3814
+ #: ../modules/user-listing/userlisting.php:1267
3815
+ msgid "Number of Posts"
3816
+ msgstr "Número de Posts"
3817
+
3818
+ #: ../modules/user-listing/userlisting.php:130
3819
+ msgid "More Info"
3820
+ msgstr "Más Info"
3821
+
3822
+ #: ../modules/user-listing/userlisting.php:131
3823
+ msgid "More Info Url"
3824
+ msgstr "Url de Más Info"
3825
+
3826
+ #: ../modules/user-listing/userlisting.php:132
3827
+ msgid "Avatar or Gravatar"
3828
+ msgstr "Avatar o Gravatar"
3829
+
3830
+ #: ../modules/user-listing/userlisting.php:161
3831
+ msgid "Meta Variables"
3832
+ msgstr "Variables Meta"
3833
+
3834
+ #: ../modules/user-listing/userlisting.php:167
3835
+ msgid "Sort Variables"
3836
+ msgstr "Variables de Organización"
3837
+
3838
+ #: ../modules/user-listing/userlisting.php:171
3839
+ #: ../modules/user-listing/userlisting.php:198
3840
+ msgid "Extra Functions"
3841
+ msgstr "Funciones Adicionales"
3842
+
3843
+ #: ../modules/user-listing/userlisting.php:173
3844
+ msgid "Pagination"
3845
+ msgstr "Paginación"
3846
+
3847
+ #: ../modules/user-listing/userlisting.php:174
3848
+ msgid "Search all Fields"
3849
+ msgstr "Buscar todos los Campos"
3850
+
3851
+ #: ../modules/user-listing/userlisting.php:200
3852
+ msgid "Go Back Link"
3853
+ msgstr "Enlace de Volver"
3854
+
3855
+ #: ../modules/user-listing/userlisting.php:218
3856
+ msgid "All-userlisting Template"
3857
+ msgstr "Plantilla All-userlisting"
3858
+
3859
+ #: ../modules/user-listing/userlisting.php:221
3860
+ msgid "Single-userlisting Template"
3861
+ msgstr "Plantilla Single-userlisting"
3862
+
3863
+ #: ../modules/user-listing/userlisting.php:614
3864
+ msgid "First/Lastname"
3865
+ msgstr "Nombre/Apellidos"
3866
+
3867
+ #: ../modules/user-listing/userlisting.php:252
3868
+ #: ../modules/user-listing/userlisting.php:620
3869
+ msgid "Sign-up Date"
3870
+ msgstr "Fecha de Registro"
3871
+
3872
+ #: ../modules/user-listing/userlisting.php:629
3873
+ #: ../modules/user-listing/userlisting.php:1266
3874
+ msgid "Display Name"
3875
+ msgstr "Nombre a Mostrar"
3876
+
3877
+ #: ../modules/user-listing/userlisting.php:251
3878
+ #: ../modules/user-listing/userlisting.php:638
3879
+ msgid "Posts"
3880
+ msgstr "Posts"
3881
+
3882
+ #: ../modules/user-listing/userlisting.php:641
3883
+ #: ../modules/user-listing/userlisting.php:1272
3884
+ msgid "Aim"
3885
+ msgstr "Aim"
3886
+
3887
+ #: ../modules/user-listing/userlisting.php:644
3888
+ #: ../modules/user-listing/userlisting.php:1273
3889
+ msgid "Yim"
3890
+ msgstr "Yim"
3891
+
3892
+ #: ../modules/user-listing/userlisting.php:647
3893
+ #: ../modules/user-listing/userlisting.php:1274
3894
+ msgid "Jabber"
3895
+ msgstr "Jabber"
3896
+
3897
+ #: ../modules/user-listing/userlisting.php:827
3898
+ msgid "Click here to see more information about this user"
3899
+ msgstr "Haga clic aquí para ver más información acerca de este usuario"
3900
+
3901
+ #: ../modules/user-listing/userlisting.php:827
3902
+ msgid "More..."
3903
+ msgstr "Más..."
3904
+
3905
+ #: ../modules/user-listing/userlisting.php:830
3906
+ msgid "Click here to see more information about this user."
3907
+ msgstr "Haga clic aquí para ver más información acerca de este usuario."
3908
+
3909
+ #: ../modules/user-listing/userlisting.php:922
3910
+ #: ../modules/user-listing/userlisting.php:925
3911
+ msgid "Click here to go back"
3912
+ msgstr "Haga clic aquí para volver"
3913
+
3914
+ #: ../modules/user-listing/userlisting.php:922
3915
+ msgid "Back"
3916
+ msgstr "Atrás"
3917
+
3918
+ #: ../modules/user-listing/userlisting.php:955
3919
+ msgid "&laquo;&laquo; First"
3920
+ msgstr "&laquo;&laquo; Primero"
3921
+
3922
+ #: ../modules/user-listing/userlisting.php:956
3923
+ msgid "&laquo; Prev"
3924
+ msgstr "&laquo; Ant"
3925
+
3926
+ #: ../modules/user-listing/userlisting.php:957
3927
+ msgid "Next &raquo; "
3928
+ msgstr "Sigu &raquo;"
3929
+
3930
+ #: ../modules/user-listing/userlisting.php:958
3931
+ msgid "Last &raquo;&raquo;"
3932
+ msgstr "Último &raquo;&raquo;"
3933
+
3934
+ #: ../modules/user-listing/userlisting.php:987
3935
+ msgid "You don't have any pagination settings on this userlisting!"
3936
+ msgstr "¡Usted no tiene ningún ajuste de paginación en esta lista de usuario!"
3937
+
3938
+ #: ../modules/user-listing/userlisting.php:1028
3939
+ msgid "Search"
3940
+ msgstr "Buscar"
3941
+
3942
+ #: ../modules/user-listing/userlisting.php:1029
3943
+ msgid "Clear Results"
3944
+ msgstr "Limpiar Resultados"
3945
+
3946
+ #: ../modules/user-listing/userlisting.php:1205
3947
+ #: ../modules/user-listing/userlisting.php:1209
3948
+ msgid "Extra shortcode parameters"
3949
+ msgstr "Parámetros de código corto adicionales"
3950
+
3951
+ #: ../modules/user-listing/userlisting.php:1212
3952
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
3953
+ msgstr "muestra usuarios que tienen cierto meta valor en un cierto meta campo (adicional)"
3954
+
3955
+ #: ../modules/user-listing/userlisting.php:1213
3956
+ msgid "Example:"
3957
+ msgstr "Ejemplo:"
3958
+
3959
+ #: ../modules/user-listing/userlisting.php:1215
3960
+ msgid "Remember though, that the field-value combination must exist in the database."
3961
+ msgstr "Recuerde sin embargo, que la combinación campo-valor tiene que existir en la base de datos."
3962
+
3963
+ #: ../modules/user-listing/userlisting.php:1284
3964
+ msgid "Random (very slow on large databases > 10K user)"
3965
+ msgstr "Aleatorio (muy lento en bases de datos grandes > 10k usuarios)"
3966
+
3967
+ #: ../modules/user-listing/userlisting.php:1297
3968
+ msgid "Roles to Display"
3969
+ msgstr "Roles a Mostrar"
3970
+
3971
+ #: ../modules/user-listing/userlisting.php:1297
3972
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
3973
+ msgstr "Restringir la lista de usuario solamente a los roles seleccionados<br/>Si no se especifica, se amplía a todos los roles existentes"
3974
+
3975
+ #: ../modules/user-listing/userlisting.php:1298
3976
+ msgid "Number of Users/Page"
3977
+ msgstr "Número de Usuarios/Página"
3978
+
3979
+ #: ../modules/user-listing/userlisting.php:1299
3980
+ msgid "Default Sorting Criteria"
3981
+ msgstr "Criterio de Ordenamiento Por Defecto"
3982
+
3983
+ #: ../modules/user-listing/userlisting.php:1299
3984
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
3985
+ msgstr "Establecer el criterio de ordenamiento por defecto<br/>Esto puede temporalmente ser cambiado para cada nueva sesión"
3986
+
3987
+ #: ../modules/user-listing/userlisting.php:1300
3988
+ msgid "Default Sorting Order"
3989
+ msgstr "Orden de Ordenamiento Por Defecto"
3990
+
3991
+ #: ../modules/user-listing/userlisting.php:1300
3992
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
3993
+ msgstr "Establecer el orden de ordenamiento por defecto<br/>Esto puede temporalmente ser cambiado para cada nueva sesión"
3994
+
3995
+ #: ../modules/user-listing/userlisting.php:1301
3996
+ msgid "Avatar Size (All-userlisting)"
3997
+ msgstr "Tamaño del Avatar (All-userlisting) "
3998
+
3999
+ #: ../modules/user-listing/userlisting.php:1301
4000
+ msgid "Set the avatar size on the all-userlisting only"
4001
+ msgstr "Establecer el tamaño del avatar solamente en el all-userlisting"
4002
+
4003
+ #: ../modules/user-listing/userlisting.php:1302
4004
+ msgid "Avatar Size (Single-userlisting)"
4005
+ msgstr "Tamaño del Avatar (Single-userlisting) "
4006
+
4007
+ #: ../modules/user-listing/userlisting.php:1302
4008
+ msgid "Set the avatar size on the single-userlisting only"
4009
+ msgstr "Establecer el tamaño del avatar solamente en el single-userlisting"
4010
+
4011
+ #: ../modules/user-listing/userlisting.php:1303
4012
+ msgid "Visible only to logged in users?"
4013
+ msgstr "¿Visible solamente a los usuario autenticados?"
4014
+
4015
+ #: ../modules/user-listing/userlisting.php:1303
4016
+ msgid "The userlisting will only be visible only to the logged in users"
4017
+ msgstr "La lista de usuario solamente será visible a los usuarios autenticados"
4018
+
4019
+ #: ../modules/user-listing/userlisting.php:1304
4020
+ msgid "Visible to following Roles"
4021
+ msgstr "Visible a los Roles siguientes"
4022
+
4023
+ #: ../modules/user-listing/userlisting.php:1304
4024
+ msgid "The userlisting will only be visible to the following roles"
4025
+ msgstr "La lista de usuario solamente será visible a los roles siguientes"
4026
+
4027
+ #: ../modules/user-listing/userlisting.php:1310
4028
+ msgid "Userlisting Settings"
4029
+ msgstr "Ajustes de Userlisting "
4030
+
4031
+ #: ../modules/user-listing/userlisting.php:1331
4032
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
4033
+ msgstr "¡Usted necesita activar la característica de Userlisting en la pestaña \"Módulos\"!"
4034
+
4035
+ #: ../modules/user-listing/userlisting.php:1331
4036
+ msgid "You can find it in the Profile Builder menu."
4037
+ msgstr "Usted puede encontrarla en el menú de Profile Builder"
4038
+
4039
+ #: ../modules/user-listing/userlisting.php:1494
4040
+ msgid "No results found!"
4041
  msgstr "¡No se encontraron resultados!"
translation/profile-builder-fr_FR.mo CHANGED
Binary file
translation/profile-builder-fr_FR.po CHANGED
@@ -1,2861 +1,4043 @@
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: 2015-05-25 07:24:49+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
- #: ../admin/add-ons.php:144
14
- msgid "Download Now"
15
- msgstr "Téléchargez maintenant"
16
-
17
- #: ../admin/admin-functions.php:175
18
- msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
19
- msgstr "Si vous aimez utiliser <strong> %1$s </strong> veuillez <a href=\"%2$s\" target=\"_blank\"> nous évaluer sur WordPress.org</a>. Plus d'utilisateurs heureux résulte en plus de fonctionnalités, moins de bogues et un meilleur support pour tous."
20
-
21
- #: ../admin/manage-fields.php:68
22
- msgid "Choose one of the supported field types"
23
- msgstr "Choisir un des champs supporté"
24
-
25
- #: ../admin/manage-fields.php:70
26
- msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
27
- msgstr "Des champs additionnels sont disponibles dans <a href=\"%s\">les versions Hobbyist et PRO </a>."
28
-
29
- #: ../admin/manage-fields.php:98
30
- msgid "Site Key"
31
- msgstr "Clé pour site"
32
-
33
- #: ../admin/manage-fields.php:98
34
- msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
35
- msgstr "La clé du site donné par Google est <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
36
-
37
- #: ../admin/manage-fields.php:99
38
- msgid "Secret Key"
39
- msgstr "Clé secrète"
40
-
41
- #: ../admin/manage-fields.php:99
42
- msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
43
- msgstr "La clé secrète de Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
44
-
45
- #: ../admin/manage-fields.php:365
46
- msgid "You must enter the site key\n"
47
- msgstr ""
48
-
49
- #: ../admin/manage-fields.php:367
50
- msgid "You must enter the secret key\n"
51
- msgstr "Vous devez entrer la clé secrète"
52
-
53
- #: ../admin/add-ons.php:10 ../admin/add-ons.php:32
54
- msgid "Add-Ons"
55
- msgstr ""
56
-
57
- #: ../admin/add-ons.php:34 ../admin/add-ons.php:124
58
- msgid "Activate"
59
- msgstr "Activer"
60
-
61
- #: ../admin/add-ons.php:36
62
- msgid "Downloading and installing..."
63
- msgstr "Téléchargement et Installation en cours…"
64
-
65
- #: ../admin/add-ons.php:37
66
- msgid "Installation complete"
67
- msgstr "Installation terminée"
68
-
69
- #: ../admin/add-ons.php:39
70
- msgid "Add-On is Active"
71
- msgstr ""
72
-
73
- #: ../admin/add-ons.php:40
74
- msgid "Add-On has been activated"
75
- msgstr ""
76
-
77
- #: ../admin/add-ons.php:41
78
- msgid "Retry Install"
79
- msgstr "Ré-essayer l'installation"
80
-
81
- #: ../admin/add-ons.php:43 ../admin/add-ons.php:135
82
- msgid "Add-On is <strong>active</strong>"
83
- msgstr ""
84
-
85
- #: ../admin/add-ons.php:44 ../admin/add-ons.php:133
86
- msgid "Add-On is <strong>inactive</strong>"
87
- msgstr ""
88
-
89
- #: ../admin/add-ons.php:46 ../admin/add-ons.php:128
90
- msgid "Deactivate"
91
- msgstr "Désactiver"
92
-
93
- #: ../admin/add-ons.php:47
94
- msgid "Add-On has been deactivated."
95
- msgstr "Les Add-On ont été désactivés"
96
-
97
- #: ../admin/add-ons.php:59
98
- msgid "Something went wrong, we could not connect to the server. Please try again later."
99
- msgstr "Problème de connection au serveur. Merci de réessayer plus tard."
100
-
101
- #: ../admin/add-ons.php:144 ../admin/add-ons.php:147
102
- msgid "Buy Now"
103
- msgstr "Acheter maintenant"
104
-
105
- #: ../admin/add-ons.php:147
106
- msgid "Install Now"
107
- msgstr "Installer maintenant"
108
-
109
- #: ../admin/add-ons.php:153
110
- msgid "Compatible with your version of Profile Builder."
111
- msgstr "Compatible avec votre version de Profile Builder"
112
-
113
- #: ../admin/add-ons.php:162
114
- msgid "Upgrade Profile Builder"
115
- msgstr "Mettre à jour Profile Builder"
116
-
117
- #: ../admin/add-ons.php:163
118
- msgid "Not compatible with Profile Builder"
119
- msgstr ""
120
-
121
- #: ../admin/add-ons.php:171
122
- msgid "Not compatible with your version of Profile Builder."
123
- msgstr "Incompatible avec votre version de Profile Builder"
124
-
125
- #: ../admin/add-ons.php:172
126
- msgid "Minimum required Profile Builder version:"
127
- msgstr "Version minimum de Profil Builder requise :"
128
-
129
- #: ../admin/add-ons.php:177
130
- msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
131
- msgstr "Impossible d'installer l'add-on. Réessayer ou<a href=\"%s\" target=\"_blank\">installer le manuellement</a>."
132
-
133
- #: ../front-end/default-fields/email/email.php:46
134
- msgid "You must enter a valid email address."
135
- msgstr "Vous devez entrer une adresse mail valide."
136
-
137
- #: ../front-end/default-fields/username/username.php:47
138
- msgid "This username is invalid because it uses illegal characters."
139
- msgstr ""
140
-
141
- #: ../front-end/default-fields/username/username.php:47
142
- msgid "Please enter a valid username."
143
- msgstr "Merci d'entrer un nom d'utilisateur valide."
144
-
145
- #: ../front-end/extra-fields/user-role/user-role.php:65
146
- #: ../front-end/extra-fields/user-role/user-role.php:78
147
- msgid "Only administrators can see this field on edit profile forms."
148
- msgstr ""
149
-
150
- #: ../front-end/extra-fields/user-role/user-role.php:74
151
- msgid "As an administrator you cannot change your role."
152
- msgstr ""
153
-
154
- #: ../modules/email-customizer/admin-email-customizer.php:117
155
- msgid ""
156
- "\n"
157
- "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
158
- "<p>His/her new password is: {{password}}</p>\n"
159
- msgstr ""
160
-
161
- #: ../modules/email-customizer/admin-email-customizer.php:141
162
- msgid "Admin Notification for User Password Reset"
163
- msgstr ""
164
-
165
- #: ../modules/email-customizer/email-customizer.php:42
166
- msgid "Reset Key"
167
- msgstr ""
168
-
169
- #: ../modules/email-customizer/email-customizer.php:43
170
- msgid "Reset Url"
171
- msgstr ""
172
-
173
- #: ../modules/email-customizer/email-customizer.php:44
174
- msgid "Reset Link"
175
- msgstr ""
176
-
177
- #: ../modules/email-customizer/user-email-customizer.php:204
178
- msgid ""
179
- "\n"
180
- "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
181
- "Username: {{username}}</p>\n"
182
- "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
183
- "<p>To reset your password, visit the following address:<br/>\n"
184
- "{{{reset_link}}}</p>\n"
185
- msgstr ""
186
-
187
- #: ../modules/email-customizer/user-email-customizer.php:218
188
- msgid "[{{site_name}}] Password Reset"
189
- msgstr ""
190
-
191
- #: ../modules/email-customizer/user-email-customizer.php:229
192
- msgid "Password Reset Email"
193
- msgstr ""
194
-
195
- #: ../modules/email-customizer/user-email-customizer.php:235
196
- msgid ""
197
- "\n"
198
- "<p>You have successfully reset your password to: {{password}}</p>\n"
199
- msgstr ""
200
-
201
- #: ../modules/email-customizer/user-email-customizer.php:245
202
- msgid "[{{site_name}}] Password Reset Successfully"
203
- msgstr ""
204
-
205
- #: ../modules/email-customizer/user-email-customizer.php:256
206
- msgid "Password Reset Success Email"
207
- msgstr ""
208
-
209
- #: ../modules/user-listing/userlisting.php:134
210
- msgid "User Nicename"
211
- msgstr ""
212
-
213
- #: ../modules/user-listing/userlisting.php:442
214
- msgid "None"
215
- msgstr ""
216
-
217
- #: ../admin/admin-functions.php:106
218
- msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
219
- msgstr ""
220
-
221
- #: ../admin/admin-functions.php:123
222
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
223
- msgstr ""
224
-
225
- #: ../admin/general-settings.php:144
226
- msgid "Username and Email"
227
- msgstr ""
228
-
229
- #: ../admin/general-settings.php:149
230
- msgid "\"Username and Email\" - users can Log In with both Username and Email."
231
- msgstr ""
232
-
233
- #: ../admin/general-settings.php:150
234
- msgid "\"Username\" - users can Log In only with Username."
235
- msgstr ""
236
-
237
- #: ../admin/general-settings.php:151
238
- msgid "\"Email\" - users can Log In only with Email."
239
- msgstr ""
240
-
241
- #: ../admin/manage-fields.php:91
242
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
243
- msgstr ""
244
-
245
- #: ../admin/manage-fields.php:92
246
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
247
- msgstr ""
248
-
249
- #: ../admin/manage-fields.php:100
250
- msgid "User Roles"
251
- msgstr ""
252
-
253
- #: ../admin/manage-fields.php:100
254
- msgid "Select which user roles to show to the user ( drag and drop to re-order )"
255
- msgstr ""
256
-
257
- #: ../admin/manage-fields.php:101
258
- msgid "User Roles Order"
259
- msgstr ""
260
-
261
- #: ../admin/manage-fields.php:101
262
- msgid "Save the user role order from the user roles checkboxes"
263
- msgstr ""
264
-
265
- #: ../admin/manage-fields.php:457
266
- msgid "Please select at least one user role\n"
267
- msgstr ""
268
-
269
- #: ../admin/register-version.php:22
270
- msgid "Profile Builder Register"
271
- msgstr ""
272
-
273
- #: ../admin/register-version.php:81
274
- msgid "The serial number is about to expire soon!"
275
- msgstr ""
276
-
277
- #: ../admin/register-version.php:81
278
- msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
279
- msgstr ""
280
-
281
- #: ../admin/register-version.php:83
282
- msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
283
- msgstr ""
284
-
285
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
286
- msgid "Add Entry"
287
- msgstr ""
288
-
289
- #: ../features/email-confirmation/class-email-confirmation.php:91
290
- msgid "show"
291
- msgstr ""
292
-
293
- #: ../features/functions.php:632
294
- msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
295
- msgstr ""
296
-
297
- #: ../front-end/class-formbuilder.php:506
298
- msgid "User to edit:"
299
- msgstr ""
300
-
301
- #: ../front-end/default-fields/password/password.php:44
302
- #: ../front-end/recover.php:244
303
- msgid "The password must have the minimum length of %s characters"
304
- msgstr ""
305
-
306
- #: ../front-end/default-fields/password/password.php:48
307
- #: ../front-end/recover.php:248
308
- msgid "The password must have a minimum strength of %s"
309
- msgstr ""
310
-
311
- #: ../front-end/extra-fields/user-role/user-role.php:106
312
- msgid "You cannot register this user role"
313
- msgstr ""
314
-
315
- #: ../front-end/login.php:105
316
- msgid "username or email"
317
- msgstr ""
318
-
319
- #: ../front-end/login.php:174
320
- msgid "Username or Email"
321
- msgstr ""
322
-
323
- #: ../front-end/logout.php:15
324
- msgid "You are currently logged in as %s. "
325
- msgstr ""
326
-
327
- #: ../front-end/logout.php:15
328
- msgid "Log out &raquo;"
329
- msgstr ""
330
-
331
- #: ../modules/email-customizer/email-customizer.php:31
332
- msgid "User Role"
333
- msgstr ""
334
-
335
- #: ../modules/user-listing/userlisting.php:1192
336
- msgid "View all extra shortcode parameters"
337
- msgstr ""
338
-
339
- #: ../modules/user-listing/userlisting.php:1206
340
- msgid "displays only the users that you specified the user_id for"
341
- msgstr ""
342
-
343
- #: ../modules/user-listing/userlisting.php:1212
344
- msgid "displays all users except the ones you specified the user_id for"
345
- msgstr ""
346
-
347
- #: ../features/functions.php:506
348
- msgid "Minimum length of %d characters"
349
- msgstr "Longueur minimale de %d caractères"
350
-
351
- #: ../front-end/class-formbuilder.php:99 ../front-end/class-formbuilder.php:102
352
- msgid "This message is only visible by administrators"
353
- msgstr "Ce message n'est visible que par les administrateurs."
354
-
355
- #: ../front-end/extra-fields/avatar/avatar.php:124
356
- 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."
357
- msgstr "Le fichier image de cet utilisateur dans le champ %s est introuvable sur le serveur. L'avatar par défaut de Wordpress sera provisoirement utilisé."
358
-
359
- #: ../modules/user-listing/userlisting.php:364
360
- msgid "User not found"
361
- msgstr "Utilisateur introuvable."
362
-
363
- #: ../modules/email-customizer/admin-email-customizer.php:38
364
- #: ../modules/email-customizer/user-email-customizer.php:38
365
- msgid "Valid tags {{reply_to}} and {{site_name}}"
366
- msgstr "Tags valides {{reply_to}} et {{site_name}}"
367
-
368
- #: ../admin/admin-bar.php:48
369
- msgid "Choose which user roles view the admin bar in the front-end of the website."
370
- msgstr "Choisir quels rôles-utilisateurs peuvent voir la barre administration sur l'interface client du site web."
371
-
372
- #: ../admin/manage-fields.php:96
373
- 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"
374
- 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 ni d'apostrophes."
375
-
376
- #: ../admin/manage-fields.php:394
377
- msgid "The meta-name cannot be empty\n"
378
- msgstr "Le méta-nom ne peut pas être vide\n"
379
-
380
- #: ../admin/register-version.php:69
381
- msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
382
- 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."
383
-
384
- #: ../admin/register-version.php:243
385
- 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>"
386
- msgstr "<p>Votre numéro de série de <strong>Profile Builder</strong> est invalide ou manquant. <br/>Merci d' %1$s enregistrer votre copie%2$s pour recevoir automatiquement mises à jour et supports. Besoin d'une licence ? %3$sAchetez la maintenant%4$s</p>"
387
-
388
- #: ../admin/register-version.php:246
389
- 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>"
390
- msgstr "<p>Votre licence <strong>Profile Builder</strong> a expiré. <br/> %1$s Merci de la renouveler %2$s pour continuer à avoir accès aux mises à jour et supports automatiques. %3$s Renouvelez la maintenant et obtenez une remise de 50&#37; %4$s %5$s Rejeteri%6$s</p>"
391
-
392
- #: ../admin/register-version.php:251
393
- 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>"
394
- msgstr "<p>Votre licence <strong>Profile Builder</strong> va expirer le %5$s. <br/>Merci, %1$s de la renouveler %2$s pour continuer à avoir accès aux mises à jour et supports automatiques. %3$s Renouvelez maintenant et obtenez une remise de 50&#37 %4$s %6$s Rejeter%7$s</p>"
395
-
396
- #: ../assets/lib/wck-api/fields/country select.php:14
397
- #: ../assets/lib/wck-api/fields/cpt select.php:17
398
- #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
399
- #: select.php:15
400
- msgid "...Choose"
401
- msgstr "...Choisir"
402
-
403
- #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
404
- msgid "1 item"
405
- msgstr "1 élément"
406
-
407
- #: ../features/functions.php:492
408
- msgid "Very Weak"
409
- msgstr "Très faible"
410
-
411
- #: ../features/functions.php:580
412
- msgid "This field is required"
413
- msgstr "Ce champ est obligatoire"
414
-
415
- #: ../features/functions.php:600
416
- msgid "Cancel"
417
- msgstr "Annuler"
418
-
419
- #: ../features/functions.php:636
420
- 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"
421
- msgstr "Pour autoriser les utilisateurs de s'inscrire sur le site via Profile Builder, vous devez permettre l'enregistrement des utilisateurs. Allez à %1$sSettings -> General%2$s et cocher la case \" Tout le monde peut s'enregistrer\". %3$sEffacer%4$s"
422
-
423
- #: ../front-end/login.php:96
424
- msgid "Invalid username."
425
- msgstr "Nom d'utilisateur non-valide."
426
-
427
- #: ../front-end/login.php:101 ../front-end/login.php:105
428
- msgid "username"
429
- msgstr "nom d'utilisateur"
430
-
431
- #: ../front-end/login.php:101
432
- msgid "email"
433
- msgstr "email"
434
-
435
- #: ../front-end/login.php:208
436
- msgid "Lost your password?"
437
- msgstr "Mot de passe perdu?"
438
-
439
- #: ../index.php:34
440
- msgid " is also activated. You need to deactivate it before activating this version of the plugin."
441
- msgstr "est aussi activé. Vous devez le désactiver avec d'activer cette version de l'extension."
442
-
443
- #: ../modules/email-customizer/admin-email-customizer.php:54
444
- #: ../modules/email-customizer/user-email-customizer.php:54
445
- msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
446
- msgstr "Ce doit être une adresse Mail valide ou bien le tag {{reply_to}} par défaut de l'adresse Mail de l'administrateur."
447
-
448
- #: ../features/email-confirmation/email-confirmation.php:510
449
- #: ../features/email-confirmation/email-confirmation.php:513
450
- #: ../modules/email-customizer/email-customizer.php:395
451
- #: ../modules/email-customizer/email-customizer.php:402
452
- #: ../modules/email-customizer/email-customizer.php:416
453
- msgid "Your selected password at signup"
454
- msgstr "Votre mot de passe sélectionné lors de l'inscription"
455
-
456
- #: ../modules/email-customizer/user-email-customizer.php:38
457
- msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
458
- msgstr "Ces réglages sont également sauvegardés dans la page des réglages de \"Customisation du Mail de l'Administrateur\"."
459
-
460
- #: ../modules/multiple-forms/edit-profile-forms.php:270
461
- msgid "This form is empty."
462
- msgstr "Ce formulaire est vide."
463
-
464
- #: ../modules/multiple-forms/multiple-forms.php:416
465
- msgid "Delete all items"
466
- msgstr "Supprimer tous les éléments"
467
-
468
- #: ../modules/multiple-forms/multiple-forms.php:416
469
- msgid "Delete all"
470
- msgstr "Tout supprimer"
471
-
472
- #: ../modules/multiple-forms/register-forms.php:226
473
- msgid "Choose..."
474
- msgstr "Choisir..."
475
-
476
- #: ../modules/user-listing/userlisting.php:1283
477
- msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
478
- msgstr "Préciser le nombre d'utilisateurs à afficher sur chaque page de la liste des utilisateurs."
479
-
480
- #: ../admin/admin-bar.php:10
481
- msgid "Show/Hide the Admin Bar on the Front-End"
482
- msgstr "Afficher/masquer la barre Administration sur l'interface client"
483
-
484
- #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
485
- msgid "Admin Bar Settings"
486
- msgstr "Paramètres de la barre Administration"
487
-
488
- #: ../admin/admin-bar.php:57
489
- msgid "User-Role"
490
- msgstr "Rôle-Utilisateur"
491
-
492
- #: ../admin/admin-bar.php:58
493
- msgid "Visibility"
494
- msgstr "Visibilité"
495
-
496
- #: ../admin/admin-bar.php:73
497
- msgid "Default"
498
- msgstr "Par défaut"
499
-
500
- #: ../admin/admin-bar.php:74
501
- msgid "Show"
502
- msgstr "Afficher"
503
-
504
- #: ../admin/admin-bar.php:75
505
- msgid "Hide"
506
- msgstr "Masquer"
507
-
508
- #: ../admin/admin-bar.php:86 ../admin/general-settings.php:189
509
- #: ../admin/register-version.php:95 ../features/functions.php:593
510
- #: ../modules/custom-redirects/custom-redirects.php:136
511
- #: ../modules/modules.php:142
512
- msgid "Save Changes"
513
- msgstr "Enregistrer les modifications"
514
-
515
- #: ../admin/admin-functions.php:34
516
- 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 )"
517
- msgstr "La connexion se fera avec votre adresse de messagerie. Ce champ n'apparaîtra PAS sur l'interface client ! ( vous pouvez changer ces paramètres dans l'onglet \"%s\" )"
518
-
519
- #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
520
- #: ../admin/general-settings.php:38
521
- msgid "General Settings"
522
- msgstr "Paramètres Généraux"
523
-
524
- #: ../admin/admin-functions.php:112 ../admin/general-settings.php:175
525
- msgid "Very weak"
526
- msgstr "Très faible"
527
-
528
- #: ../admin/admin-functions.php:112 ../admin/general-settings.php:176
529
- #: ../features/functions.php:492
530
- msgid "Weak"
531
- msgstr "Faible"
532
-
533
- #: ../admin/admin-functions.php:112 ../admin/general-settings.php:177
534
- #: ../features/functions.php:492
535
- msgid "Medium"
536
- msgstr "Moyen"
537
-
538
- #: ../admin/admin-functions.php:112 ../admin/general-settings.php:178
539
- #: ../features/functions.php:492
540
- msgid "Strong"
541
- msgstr "Fort"
542
-
543
- #: ../admin/admin-functions.php:162
544
- msgid "Add Field"
545
- msgstr "Ajouter un Champ"
546
-
547
- #: ../admin/admin-functions.php:164
548
- #: ../modules/class-mustache-templates/class-mustache-templates.php:374
549
- msgid "Save Settings"
550
- msgstr "Enregistrer les Paramètres"
551
-
552
- #: ../admin/basic-info.php:10
553
- msgid "Basic Information"
554
- msgstr "Informations de base"
555
-
556
- #: ../admin/basic-info.php:29
557
- msgid "Version %s"
558
- msgstr "Version %s"
559
-
560
- #: ../admin/basic-info.php:30
561
- msgid "<strong>Profile Builder </strong>"
562
- msgstr "<strong>Profile Builder </strong>"
563
-
564
- #: ../admin/basic-info.php:31
565
- msgid "The best way to add front-end registration, edit profile and login forms."
566
- msgstr "Le meilleur moyen d'ajouter une inscription via l'interface client, de modifier un profil et des formulaires de connexion."
567
-
568
- #: ../admin/basic-info.php:33
569
- msgid "For Modern User Interaction"
570
- msgstr "Pour une Interaction Utilisateur Moderne"
571
-
572
- #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
573
- msgid "Login"
574
- msgstr "Identification"
575
-
576
- #: ../admin/basic-info.php:37
577
- msgid "Friction-less login using <strong class=\"nowrap\">[wppb-login]</strong> shortcode or a widget."
578
- msgstr "Une identification sans heurt via le shortcode <strong class=\"nowrap\">[wppb-login]</strong> ou un widget."
579
-
580
- #: ../admin/basic-info.php:40
581
- msgid "Registration"
582
- msgstr "Inscription"
583
-
584
- #: ../admin/basic-info.php:41
585
- msgid "Beautiful registration forms fully customizable using the <strong class=\"nowrap\">[wppb-register]</strong> shortcode."
586
- msgstr "De jolis formulaires d'inscription totalement personnalisable en utilisant le shortcode <strong class=\"nowrap\">[wppb-register]</strong>."
587
-
588
- #: ../admin/basic-info.php:44
589
- msgid "Edit Profile"
590
- msgstr "Modifier le Profil"
591
-
592
- #: ../admin/basic-info.php:45
593
- msgid "Straight forward edit profile forms using <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
594
- msgstr "Des formulaires simples de modification de profil en utilisant le shortcode <strong class=\"nowrap\">[wppb-edit-profile]</strong> shortcode."
595
-
596
- #: ../admin/basic-info.php:51
597
- msgid "Extra Features"
598
- msgstr "Fonctionnalités supplémentaires"
599
-
600
- #: ../admin/basic-info.php:52
601
- msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
602
- 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."
603
-
604
- #: ../admin/basic-info.php:53
605
- msgid "Enable extra features"
606
- msgstr "Activer les fonctionnalités supplémentaires"
607
-
608
- #: ../admin/basic-info.php:57
609
- msgid "Recover Password"
610
- msgstr "Récupérer le Mot De Passe"
611
-
612
- #: ../admin/basic-info.php:58
613
- msgid "Allow users to recover their password in the front-end using the [wppb-recover-password]."
614
- msgstr "Autoriser les utilisateurs à récupérer leur mot de passe sur l'interface cliente en utilisant le shortcode [wppb-recover-password]."
615
-
616
- #: ../admin/basic-info.php:61
617
- msgid "Admin Approval (*)"
618
- msgstr "Approbation par l'Administrateur"
619
-
620
- #: ../admin/basic-info.php:62
621
- msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
622
- msgstr "Vous décidez qui est un utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress."
623
-
624
- #: ../admin/basic-info.php:65
625
- msgid "Email Confirmation"
626
- msgstr "Confirmation de l'adresse de messagerie"
627
-
628
- #: ../admin/basic-info.php:66
629
- msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
630
- 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."
631
-
632
- #: ../admin/basic-info.php:69
633
- msgid "Minimum Password Length and Strength Meter"
634
- msgstr "Longueur Minimale du Mot De Masse et Métrique de Sûreté"
635
-
636
- #: ../admin/basic-info.php:70
637
- msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
638
- msgstr "Eliminer les mots de passe trop faibles en imposant une longueur minimale et un niveau de sûreté minimum."
639
-
640
- #: ../admin/basic-info.php:73
641
- msgid "Login with Email or Username"
642
- msgstr "Se connecter avec une adresse de messagerie ou avec le nom d'utilisateur"
643
-
644
- #: ../admin/basic-info.php:74
645
- msgid "Allow users to log in with their email or username when accessing your site."
646
- msgstr "Autoriser les utilisateurs à se connecter avec leur adresse de messagerie ou leur nom d'utilisateur lorsqu'ils accèdent à votre site."
647
-
648
- #: ../admin/basic-info.php:87
649
- msgid "Customize Your Forms The Way You Want (*)"
650
- msgstr "Personnaliser Vos Formulaires Comme Vous Le Souhaitez (*)"
651
-
652
- #: ../admin/basic-info.php:88
653
- msgid "With Extra Profile Fields you can create the exact registration form your project needs."
654
- msgstr "Avec les champs supplémentaires de profil vous pouvez créer le formulaire exact d'inscription dont votre projet a besoin."
655
-
656
- #: ../admin/basic-info.php:90
657
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
658
- msgstr "Les champs supplémentaires de profil sont disponibles dans les version Hobbyist ou PRO."
659
-
660
- #: ../admin/basic-info.php:92
661
- msgid "Get started with extra fields"
662
- msgstr "Bien commencer avec les champs supplémentaires"
663
-
664
- #: ../admin/basic-info.php:95
665
- msgid "Avatar Upload"
666
- msgstr "Téléchargement d'avatar"
667
-
668
- #: ../admin/basic-info.php:96
669
- msgid "Generic Uploads"
670
- msgstr "Téléchargements Génériques"
671
-
672
- #: ../admin/basic-info.php:97
673
- msgid "Agree To Terms Checkbox"
674
- msgstr "Accepter les conditions par une case à cocher"
675
-
676
- #: ../admin/basic-info.php:98
677
- msgid "Datepicker"
678
- msgstr "Outil de sélection de date"
679
-
680
- #: ../admin/basic-info.php:99
681
- msgid "reCAPTCHA"
682
- msgstr "reCAPTCHA"
683
-
684
- #: ../admin/basic-info.php:100
685
- msgid "Country Select"
686
- msgstr "Sélection du Pays"
687
-
688
- #: ../admin/basic-info.php:101
689
- msgid "Timezone Select"
690
- msgstr "Sélection du Fuseau Horaire"
691
-
692
- #: ../admin/basic-info.php:102
693
- msgid "Input / Hidden Input"
694
- msgstr "Entrée visible / Entrée cachée"
695
-
696
- #: ../admin/basic-info.php:103
697
- msgid "Checkbox"
698
- msgstr "Case à cocher"
699
-
700
- #: ../admin/basic-info.php:104
701
- msgid "Select"
702
- msgstr "Liste déroulante"
703
-
704
- #: ../admin/basic-info.php:105
705
- msgid "Radio Buttons"
706
- msgstr "Boutons Radio"
707
-
708
- #: ../admin/basic-info.php:106
709
- msgid "Textarea"
710
- msgstr "Zone de Texte"
711
-
712
- #: ../admin/basic-info.php:115
713
- msgid "Powerful Modules (**)"
714
- msgstr "Des Modules Puissants (**)"
715
-
716
- #: ../admin/basic-info.php:116
717
- msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
718
- msgstr "Tout ce dont vous aurez besoin pour gérer vos utilisateurs est probablement déjà disponible dans les Modules Pro."
719
-
720
- #: ../admin/basic-info.php:118
721
- msgid "Enable your modules"
722
- msgstr "Activer vos modules"
723
-
724
- #: ../admin/basic-info.php:121
725
- msgid "Find out more about PRO Modules"
726
- msgstr "Découvrez les Modules PRO"
727
-
728
- #: ../admin/basic-info.php:126 ../modules/modules.php:111
729
- #: ../modules/user-listing/userlisting.php:11
730
- #: ../modules/user-listing/userlisting.php:12
731
- #: ../modules/user-listing/userlisting.php:17
732
- #: ../modules/user-listing/userlisting.php:23
733
- msgid "User Listing"
734
- msgstr "Listing d'utilisateurs"
735
-
736
- #: ../admin/basic-info.php:128
737
- 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."
738
- 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."
739
-
740
- #: ../admin/basic-info.php:130
741
- 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>."
742
- 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>."
743
-
744
- #: ../admin/basic-info.php:134
745
- msgid "Email Customizer"
746
- msgstr "Outil de personnalisation d'e-mails"
747
-
748
- #: ../admin/basic-info.php:135
749
- msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
750
- 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."
751
-
752
- #: ../admin/basic-info.php:138
753
- #: ../modules/custom-redirects/custom-redirects.php:29
754
- #: ../modules/modules.php:32 ../modules/modules.php:132
755
- msgid "Custom Redirects"
756
- msgstr "Redirections personnalisées"
757
-
758
- #: ../admin/basic-info.php:139
759
- 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."
760
- msgstr "Laissez vos utilisateurs hors du tableau de bord WordPress, redirigez-les sur la page d'accueil après qu'ils se sont identifiés ou inscrits, tout en quelques quelques clics."
761
-
762
- #: ../admin/basic-info.php:144 ../modules/modules.php:97
763
- msgid "Multiple Registration Forms"
764
- msgstr "Formulaires Multiples d'Inscription"
765
-
766
- #: ../admin/basic-info.php:145
767
- msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
768
- 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."
769
-
770
- #: ../admin/basic-info.php:148 ../modules/modules.php:104
771
- msgid "Multiple Edit-profile Forms"
772
- msgstr "Formulaires Multiples de Modification de Profil"
773
-
774
- #: ../admin/basic-info.php:149
775
- msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
776
- msgstr "Autorisez différents rôles-utilisateur à modifier les informations qui leur sont spécifiques. Mettez en place des formulaires multiples de modification de profil avec des champs différents suivant les rôles utilisateurs."
777
-
778
- #: ../admin/basic-info.php:161
779
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
780
- msgstr "* disponible uniquement dans les versions %1$sHobbyist et Pro %2$s."
781
-
782
- #: ../admin/basic-info.php:162
783
- msgid "** only available in the %1$sPro version%2$s."
784
- msgstr "** disponible uniquement dans la version %1$sPro %2$s."
785
-
786
- #: ../admin/general-settings.php:42
787
- msgid "Load Profile Builder's own CSS file in the front-end:"
788
- msgstr "Charge le fichier CSS de Profile Builder sur l'interface cliente:"
789
-
790
- #: ../admin/general-settings.php:45 ../admin/general-settings.php:60
791
- #: ../admin/general-settings.php:114
792
- #: ../modules/multiple-forms/register-forms.php:225
793
- #: ../modules/multiple-forms/register-forms.php:226
794
- #: ../modules/user-listing/userlisting.php:1288
795
- msgid "Yes"
796
- msgstr "Oui"
797
-
798
- #: ../admin/general-settings.php:47
799
- msgid "You can find the default file here: %1$s"
800
- msgstr "Vous pouvez trouver le fichier par défaut ici: %1$s"
801
-
802
- #: ../admin/general-settings.php:56
803
- msgid "\"Email Confirmation\" Activated:"
804
- msgstr "\"Confirmation par e-mail\" Activée:"
805
-
806
- #: ../admin/general-settings.php:61 ../admin/general-settings.php:115
807
- #: ../modules/multiple-forms/register-forms.php:225
808
- #: ../modules/multiple-forms/register-forms.php:226
809
- msgid "No"
810
- msgstr "Non"
811
-
812
- #: ../admin/general-settings.php:64
813
- 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."
814
- msgstr "Sur les installations pour un seul 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\"."
815
-
816
- #: ../admin/general-settings.php:65
817
- msgid "The \"Email Confirmation\" feature is active (by default) on WPMU installations."
818
- msgstr "La fonctionnalité \"Confirmation de l'adresse de messagerie\" est active (par défaut) sur les installations WPMU."
819
-
820
- #: ../admin/general-settings.php:67
821
- msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
822
- 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."
823
-
824
- #: ../admin/general-settings.php:79
825
- msgid "\"Email Confirmation\" Landing Page:"
826
- msgstr "Page d'arrivée après \"Confirmation de l'adresse de messagerie\":"
827
-
828
- #: ../admin/general-settings.php:84
829
- msgid "Existing Pages"
830
- msgstr "Pages existantes"
831
-
832
- #: ../admin/general-settings.php:99
833
- 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."
834
- 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."
835
-
836
- #: ../admin/general-settings.php:110
837
- msgid "\"Admin Approval\" Activated:"
838
- msgstr "\"Approbation par l'Admin\" Activée:"
839
-
840
- #: ../admin/general-settings.php:118
841
- msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
842
- msgstr "Vous pouvez trouver une liste d'utilisateurs à %1$sUtilisateurs > Tous les Utilisateurs > Approbation par l'Admin %2$s."
843
-
844
- #: ../admin/general-settings.php:130
845
- msgid "\"Admin Approval\" Feature:"
846
- msgstr "Fonctionnalité \"Approbation par l'Admin\":"
847
-
848
- #: ../admin/general-settings.php:133
849
- 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."
850
- msgstr "Vous décidez qui est 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."
851
-
852
- #: ../admin/general-settings.php:140
853
- msgid "Allow Users to Log in With:"
854
- msgstr "Permet aux utilisateurs à se connecter avec :"
855
-
856
- #: ../admin/general-settings.php:145 ../admin/manage-fields.php:146
857
- #: ../features/admin-approval/class-admin-approval.php:177
858
- #: ../features/email-confirmation/class-email-confirmation.php:167
859
- #: ../modules/email-customizer/email-customizer.php:28
860
- #: ../modules/user-listing/userlisting.php:92
861
- #: ../modules/user-listing/userlisting.php:596
862
- #: ../modules/user-listing/userlisting.php:1244
863
- msgid "Username"
864
- msgstr "Nom d'utilisateur"
865
-
866
- #: ../admin/general-settings.php:146 ../front-end/login.php:170
867
- #: ../modules/email-customizer/email-customizer.php:29
868
- #: ../modules/user-listing/userlisting.php:602
869
- #: ../modules/user-listing/userlisting.php:1245
870
- msgid "Email"
871
- msgstr "Adresse de messagerie"
872
-
873
- #: ../admin/general-settings.php:158
874
- msgid "Minimum Password Length:"
875
- msgstr "Longueur minimale du Mot de Passe :"
876
-
877
- #: ../admin/general-settings.php:163
878
- msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
879
- 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"
880
-
881
- #: ../admin/general-settings.php:170
882
- msgid "Minimum Password Strength:"
883
- msgstr "Sûreté minimale du Mot de Passe:"
884
-
885
- #: ../admin/general-settings.php:174
886
- msgid "Disabled"
887
- msgstr "Désactivé"
888
-
889
- #: ../admin/manage-fields.php:12
890
- msgid "Manage Fields"
891
- msgstr "Gérez les Champs"
892
-
893
- #: ../admin/manage-fields.php:13
894
- msgid "Manage Default and Extra Fields"
895
- msgstr "Gérez les Champs par défaut et les Champs supplémentaires"
896
-
897
- #: ../admin/manage-fields.php:85
898
- msgid "Field Title"
899
- msgstr "Titre du champ"
900
-
901
- #: ../admin/manage-fields.php:85
902
- msgid "Title of the field"
903
- msgstr "Titre du champ"
904
-
905
- #: ../admin/manage-fields.php:86
906
- #: ../modules/multiple-forms/edit-profile-forms.php:241
907
- #: ../modules/multiple-forms/register-forms.php:262
908
- msgid "Field"
909
- msgstr "Champ"
910
-
911
- #: ../admin/manage-fields.php:87
912
- msgid "Meta-name"
913
- msgstr "Meta-nom"
914
-
915
- #: ../admin/manage-fields.php:87
916
- 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"
917
- 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 si le compteur utilisateur est très grand"
918
-
919
- #: ../admin/manage-fields.php:88
920
- #: ../modules/multiple-forms/edit-profile-forms.php:242
921
- #: ../modules/multiple-forms/register-forms.php:263
922
- msgid "ID"
923
- msgstr "ID"
924
-
925
- #: ../admin/manage-fields.php:88
926
- #: ../modules/multiple-forms/edit-profile-forms.php:242
927
- #: ../modules/multiple-forms/register-forms.php:263
928
- 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"
929
- msgstr "Un identifiant unique, généré automatiquement, pour ce champ particulier<br/>Vous pouvez utiliser ceci en lien avec les filtres pour cibler cet élément si besoin<br/>Ne peut être modifié"
930
-
931
- #: ../admin/manage-fields.php:89
932
- msgid "Description"
933
- msgstr "Description"
934
-
935
- #: ../admin/manage-fields.php:89
936
- msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
937
- msgstr "Entrez une description (détaillée) de l'option que les utilisateurs finaux pourront lire<br/>Optionnel"
938
-
939
- #: ../admin/manage-fields.php:90
940
- msgid "Row Count"
941
- msgstr "Nombre de Lignes"
942
-
943
- #: ../admin/manage-fields.php:90
944
- msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
945
- 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"
946
-
947
- #: ../admin/manage-fields.php:91
948
- msgid "Allowed Image Extensions"
949
- msgstr "Extensions Autorisées des Images"
950
-
951
- #: ../admin/manage-fields.php:92
952
- msgid "Allowed Upload Extensions"
953
- msgstr "Extensions Autorisées au Téléchargement"
954
-
955
- #: ../admin/manage-fields.php:93
956
- msgid "Avatar Size"
957
- msgstr "Taille de l'Avatar"
958
-
959
- #: ../admin/manage-fields.php:93
960
- msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
961
- 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"
962
-
963
- #: ../admin/manage-fields.php:94
964
- msgid "Date-format"
965
- msgstr "Format de la date"
966
-
967
- #: ../admin/manage-fields.php:94
968
- 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"
969
- 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"
970
-
971
- #: ../admin/manage-fields.php:95
972
- msgid "Terms of Agreement"
973
- msgstr "Conditions Générales"
974
-
975
- #: ../admin/manage-fields.php:95
976
- 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;"
977
- 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;"
978
-
979
- #: ../admin/manage-fields.php:96
980
- msgid "Options"
981
- msgstr "Options"
982
-
983
- #: ../admin/manage-fields.php:97
984
- msgid "Labels"
985
- msgstr "Labels"
986
-
987
- #: ../admin/manage-fields.php:97
988
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
989
- msgstr "Entrez une liste de labels séparés par une virgule<br/>Visible par l'utilisateur"
990
-
991
- #: ../admin/manage-fields.php:102
992
- msgid "Default Value"
993
- msgstr "Valeur Par Défaut"
994
-
995
- #: ../admin/manage-fields.php:102
996
- msgid "Default value of the field"
997
- msgstr "Valeur par défaut du champ"
998
-
999
- #: ../admin/manage-fields.php:103
1000
- msgid "Default Option"
1001
- msgstr "Option Par Défaut"
1002
-
1003
- #: ../admin/manage-fields.php:103
1004
- msgid "Specify the option which should be selected by default"
1005
- msgstr "Spécifiez l'option qui devrait être sélectionnée par défaut"
1006
-
1007
- #: ../admin/manage-fields.php:104
1008
- msgid "Default Option(s)"
1009
- msgstr "Option(s) Par Défaut"
1010
-
1011
- #: ../admin/manage-fields.php:104
1012
- msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
1013
- 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)"
1014
-
1015
- #: ../admin/manage-fields.php:105
1016
- msgid "Default Content"
1017
- msgstr "Contenu Par Défaut"
1018
-
1019
- #: ../admin/manage-fields.php:105
1020
- msgid "Default value of the textarea"
1021
- msgstr "Valeur par défaut de la zone de texte"
1022
-
1023
- #: ../admin/manage-fields.php:106
1024
- msgid "Required"
1025
- msgstr "Obligatoire"
1026
-
1027
- #: ../admin/manage-fields.php:106
1028
- msgid "Whether the field is required or not"
1029
- msgstr "Si le champ est obligatoire ou pas"
1030
-
1031
- #: ../admin/manage-fields.php:107
1032
- msgid "Overwrite Existing"
1033
- msgstr "Ecraser l'existant"
1034
-
1035
- #: ../admin/manage-fields.php:107
1036
- 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"
1037
- msgstr "Sélectionner 'Oui' ajoutera le champ à la liste, mais écrasera n'importe quel autre champ dans la base de données qui aurait le même méta-nom<br/>A utiliser à vos risques et périls"
1038
-
1039
- #: ../admin/manage-fields.php:113
1040
- msgid "Field Properties"
1041
- msgstr "Propriétés du Champ"
1042
-
1043
- #: ../admin/manage-fields.php:126
1044
- msgid "Registration & Edit Profile"
1045
- msgstr "Inscription & Modification de Profil"
1046
-
1047
- #: ../admin/manage-fields.php:145
1048
- msgid "Name"
1049
- msgstr "Nom"
1050
-
1051
- #: ../admin/manage-fields.php:146
1052
- msgid "Usernames cannot be changed."
1053
- msgstr "Les noms d'utillisateur ne peuvent pas être modifiés."
1054
-
1055
- #: ../admin/manage-fields.php:147
1056
- msgid "First Name"
1057
- msgstr "Prénom"
1058
-
1059
- #: ../admin/manage-fields.php:148
1060
- msgid "Last Name"
1061
- msgstr "Nom de famille"
1062
-
1063
- #: ../admin/manage-fields.php:149 ../modules/user-listing/userlisting.php:635
1064
- msgid "Nickname"
1065
- msgstr "Pseudonyme"
1066
-
1067
- #: ../admin/manage-fields.php:150
1068
- msgid "Display name publicly as"
1069
- msgstr "Nom publique"
1070
-
1071
- #: ../admin/manage-fields.php:151
1072
- msgid "Contact Info"
1073
- msgstr "Informations de contact"
1074
-
1075
- #: ../admin/manage-fields.php:152
1076
- #: ../features/admin-approval/class-admin-approval.php:180
1077
- #: ../features/email-confirmation/class-email-confirmation.php:168
1078
- #: ../modules/user-listing/userlisting.php:98
1079
- msgid "E-mail"
1080
- msgstr "Adresse de messagerie"
1081
-
1082
- #: ../admin/manage-fields.php:153
1083
- #: ../modules/email-customizer/email-customizer.php:32
1084
- #: ../modules/user-listing/userlisting.php:101
1085
- #: ../modules/user-listing/userlisting.php:617
1086
- #: ../modules/user-listing/userlisting.php:1246
1087
- msgid "Website"
1088
- msgstr "Site web"
1089
-
1090
- #: ../admin/manage-fields.php:157
1091
- msgid "AIM"
1092
- msgstr "AIM"
1093
-
1094
- #: ../admin/manage-fields.php:158
1095
- msgid "Yahoo IM"
1096
- msgstr "Yahoo IM"
1097
-
1098
- #: ../admin/manage-fields.php:159
1099
- msgid "Jabber / Google Talk"
1100
- msgstr "Jabber / Google Talk"
1101
-
1102
- #: ../admin/manage-fields.php:162
1103
- msgid "About Yourself"
1104
- msgstr "A propos de vous"
1105
-
1106
- #: ../admin/manage-fields.php:163 ../modules/user-listing/userlisting.php:104
1107
- #: ../modules/user-listing/userlisting.php:620
1108
- #: ../modules/user-listing/userlisting.php:1247
1109
- msgid "Biographical Info"
1110
- msgstr "Informations biographiques"
1111
-
1112
- #: ../admin/manage-fields.php:163
1113
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
1114
- msgstr "Partagez quelques informations biographiques pour compléter votre profil. Ceci peut être affiché publiquement."
1115
-
1116
- #: ../admin/manage-fields.php:164 ../front-end/recover.php:75
1117
- #: ../modules/email-customizer/email-customizer.php:30
1118
- msgid "Password"
1119
- msgstr "Mot de passe"
1120
-
1121
- #: ../admin/manage-fields.php:164
1122
- msgid "Type your password."
1123
- msgstr "Tapez votre mot de passe."
1124
-
1125
- #: ../admin/manage-fields.php:165 ../front-end/recover.php:80
1126
- msgid "Repeat Password"
1127
- msgstr "Répétez votre mot de passe"
1128
-
1129
- #: ../admin/manage-fields.php:165
1130
- msgid "Type your password again. "
1131
- msgstr "Re-tapez votre mot de passe."
1132
-
1133
- #: ../admin/manage-fields.php:322 ../admin/manage-fields.php:466
1134
- msgid "You must select a field\n"
1135
- msgstr "Vous devez sélectionner un champ\n"
1136
-
1137
- #: ../admin/manage-fields.php:332
1138
- msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
1139
- msgstr "Merci de choisir un champ différent, car celui-ci existe déjà dans votre formulaire (et il doit être unique)\n"
1140
-
1141
- #: ../admin/manage-fields.php:343
1142
- msgid "The entered avatar size is not between 20 and 200\n"
1143
- msgstr "La taille de l'avatar n'est pas comprise entre 20 et 200\n"
1144
-
1145
- #: ../admin/manage-fields.php:346
1146
- msgid "The entered avatar size is not numerical\n"
1147
- msgstr "La taille de l'avatar n'est pas une valeur numérique\n"
1148
-
1149
- #: ../admin/manage-fields.php:354
1150
- msgid "The entered row number is not numerical\n"
1151
- msgstr "Le numéro entré pour la ligne n'est pas numérique\n"
1152
-
1153
- #: ../admin/manage-fields.php:357
1154
- msgid "You must enter a value for the row number\n"
1155
- msgstr "Vous devez entrer une valeur pour le numéro de la ligne\n"
1156
-
1157
- #: ../admin/manage-fields.php:375
1158
- msgid "The entered value for the Datepicker is not a valid date-format\n"
1159
- msgstr "La valeur entrée pour l'outil de sélection de date ne respecte pas le format de date\n"
1160
-
1161
- #: ../admin/manage-fields.php:378
1162
- msgid "You must enter a value for the date-format\n"
1163
- msgstr "Vous devez entrer une valeur de formattage de date\n"
1164
-
1165
- #: ../admin/manage-fields.php:406 ../admin/manage-fields.php:414
1166
- #: ../admin/manage-fields.php:424
1167
- msgid "That meta-name is already in use\n"
1168
- msgstr "Le meta-nom est déjà utilisé\n"
1169
-
1170
- #: ../admin/manage-fields.php:446
1171
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
1172
- msgstr "Le(s) options(s) suivante(s) n'a(ont) pas coïncidé pas avec celles de la liste d'options : %s\n"
1173
-
1174
- #: ../admin/manage-fields.php:450
1175
- msgid "The following option did not coincide with the ones in the options list: %s\n"
1176
- msgstr "L'option suivante n'a pas coïncidé avec celles de la liste d'options: %s\n"
1177
-
1178
- #: ../admin/manage-fields.php:473
1179
- msgid "That field is already added in this form\n"
1180
- msgstr "Ce champ a déjà été ajouté à ce formulaire\n"
1181
-
1182
- #: ../admin/manage-fields.php:522
1183
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
1184
- msgstr "<pre>Titre</pre><pre>Type</pre><pre>Meta-nom</pre><pre class=\"wppb-mb-head-required\">Obligatoire</pre>"
1185
-
1186
- #: ../admin/manage-fields.php:522
1187
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
1188
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:529
1189
- #: ../features/admin-approval/class-admin-approval.php:119
1190
- #: ../features/functions.php:614 ../features/functions.php:621
1191
- #: ../modules/multiple-forms/multiple-forms.php:416
1192
- msgid "Edit"
1193
- msgstr "Editer"
1194
-
1195
- #: ../admin/manage-fields.php:522
1196
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
1197
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:530
1198
- #: ../features/admin-approval/class-admin-approval.php:124
1199
- #: ../features/admin-approval/class-admin-approval.php:235
1200
- #: ../features/email-confirmation/class-email-confirmation.php:120
1201
- #: ../features/email-confirmation/class-email-confirmation.php:217
1202
- #: ../features/functions.php:607 ../features/functions.php:621
1203
- msgid "Delete"
1204
- msgstr "Supprimer"
1205
-
1206
- #: ../admin/manage-fields.php:537
1207
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
1208
- msgstr "Utilisez ces shortcodes sur les pages où vous voulez que les formulaires s'affichent :"
1209
-
1210
- #: ../admin/manage-fields.php:543
1211
- 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."
1212
- msgstr "Si vous êtes intéressé pour afficher différents champs dans les formulaires d'inscription et de modification de profil, merci d'utiliser l'extension Formulaires d'Inscriptions Multiples & de Modification de Profil."
1213
-
1214
- #: ../admin/register-version.php:14
1215
- msgid "Register Your Version"
1216
- msgstr "Enregistrez Votre Version"
1217
-
1218
- #: ../admin/register-version.php:14
1219
- msgid "Register Version"
1220
- msgstr "Enregistrez la Version"
1221
-
1222
- #: ../admin/register-version.php:70
1223
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
1224
- msgstr "Si vous enregistrez cette version de Profile Builder, vous recevrez des informations concernant les mises à jours, les correctifs et le support technique."
1225
-
1226
- #: ../admin/register-version.php:72
1227
- msgid " Serial Number:"
1228
- msgstr "Numéro de Série :"
1229
-
1230
- #: ../admin/register-version.php:77
1231
- msgid "The serial number was successfully validated!"
1232
- msgstr "Le numéro de série a bien été validé !"
1233
-
1234
- #: ../admin/register-version.php:79
1235
- msgid "The serial number entered couldn't be validated!"
1236
- msgstr "Le numéro de série entré n'a pas pu être validé !"
1237
-
1238
- #: ../admin/register-version.php:83
1239
- msgid "The serial number couldn't be validated because it expired!"
1240
- msgstr "Le numéro de série n'a pas pu être validé car il a expiré !"
1241
-
1242
- #: ../admin/register-version.php:85
1243
- 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!"
1244
- 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 !"
1245
-
1246
- #: ../admin/register-version.php:87
1247
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1248
- msgstr "(ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
1249
-
1250
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
1251
- #: ../features/functions.php:621
1252
- msgid "Content"
1253
- msgstr "Contenu"
1254
-
1255
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:529
1256
- msgid "Edit this item"
1257
- msgstr "Modifier cet élément"
1258
-
1259
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:530
1260
- msgid "Delete this item"
1261
- msgstr "Supprimer cet élément"
1262
-
1263
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:671
1264
- msgid "Please enter a value for the required field "
1265
- msgstr "Merci d'entrer une valeur pour le champ obligatoire"
1266
-
1267
- #: ../assets/lib/wck-api/fields/upload.php:37
1268
- msgid "Remove"
1269
- msgstr "Supprimer"
1270
-
1271
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1150
1272
- msgid "Syncronize WCK"
1273
- msgstr "Synchroniser WCK"
1274
-
1275
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1162
1276
- msgid "Syncronize WCK Translation"
1277
- msgstr "Synchroniser la traduction WCK"
1278
-
1279
- #: ../assets/lib/wck-api/fields/nested repeater.php:8
1280
- msgid "You can add the information for the %s after you add a entry"
1281
- msgstr "Vous pouvez ajouter l'information pour le %s après avoir ajouté une entrée"
1282
-
1283
- #: ../assets/lib/wck-api/fields/upload.php:54
1284
- msgid "Upload "
1285
- msgstr "Télécharger"
1286
-
1287
- #: ../features/class-list-table.php:184
1288
- msgid "No items found."
1289
- msgstr "Aucun élément trouvé."
1290
-
1291
- #: ../features/class-list-table.php:308
1292
- msgid "Bulk Actions"
1293
- msgstr "Actions Groupées"
1294
-
1295
- #: ../features/class-list-table.php:318
1296
- msgid "Apply"
1297
- msgstr "Appliquer"
1298
-
1299
- #: ../features/class-list-table.php:402
1300
- msgid "Show all dates"
1301
- msgstr "Afficher toutes les dates"
1302
-
1303
- #: ../features/class-list-table.php:415
1304
- msgid "%1$s %2$d"
1305
- msgstr "%1$s %2$d"
1306
-
1307
- #: ../features/class-list-table.php:431
1308
- msgid "List View"
1309
- msgstr "Vue par liste"
1310
-
1311
- #: ../features/class-list-table.php:432
1312
- msgid "Excerpt View"
1313
- msgstr "Vue par extrait"
1314
-
1315
- #: ../features/class-list-table.php:458
1316
- msgid "%s pending"
1317
- msgstr "%s en attente"
1318
-
1319
- #: ../features/class-list-table.php:566
1320
- msgid "%1$s of %2$s"
1321
- msgstr "%1$s de %2$s"
1322
-
1323
- #: ../features/class-list-table.php:713
1324
- msgid "Select All"
1325
- msgstr "Tout Sélectionner"
1326
-
1327
- #: ../features/functions.php:199 ../features/functions.php:200
1328
- msgid "Profile Builder"
1329
- msgstr "Profile Builder"
1330
-
1331
- #: ../features/functions.php:273
1332
- msgid "The user-validation has failed - the avatar was not deleted!"
1333
- msgstr "La validation de l'utilisateur a échoué - l'avatar n'a pas été supprimé !"
1334
-
1335
- #: ../features/functions.php:284
1336
- msgid "The user-validation has failed - the attachment was not deleted!"
1337
- msgstr "La validation de l'utilisateur a échoué - la pièce jointe n'a pas été supprimée !"
1338
-
1339
- #: ../features/functions.php:467
1340
- msgid "Strength indicator"
1341
- msgstr "Indicateur de sûreté"
1342
-
1343
- #: ../features/admin-approval/admin-approval.php:7
1344
- #: ../features/admin-approval/class-admin-approval.php:496
1345
- msgid "Admin Approval"
1346
- msgstr "Approbation par l'Admin"
1347
-
1348
- #: ../features/admin-approval/admin-approval.php:21
1349
- #: ../features/email-confirmation/email-confirmation.php:58
1350
- msgid "Do you want to"
1351
- msgstr "Voulez-vous"
1352
-
1353
- #: ../features/admin-approval/admin-approval.php:44
1354
- msgid "Your session has expired! Please refresh the page and try again"
1355
- msgstr "Votre session a expiré ! Merci de rafraîchir la page et de ré-essayer"
1356
-
1357
- #: ../features/admin-approval/admin-approval.php:55
1358
- msgid "User successfully approved!"
1359
- msgstr "L'utilisateur a bien été approuvé !"
1360
-
1361
- #: ../features/admin-approval/admin-approval.php:63
1362
- msgid "User successfully unapproved!"
1363
- msgstr "L'utilisateur a bien été refusé !"
1364
-
1365
- #: ../features/admin-approval/admin-approval.php:69
1366
- msgid "User successfully deleted!"
1367
- msgstr "L'utilisateur a bien été supprimé !"
1368
-
1369
- #: ../features/admin-approval/admin-approval.php:74
1370
- #: ../features/admin-approval/admin-approval.php:139
1371
- #: ../features/email-confirmation/email-confirmation.php:135
1372
- msgid "You either don't have permission for that action or there was an error!"
1373
- msgstr "Soit vous n'avez pas la permission de réaliser cette action soit il y a eu une erreur !"
1374
-
1375
- #: ../features/admin-approval/admin-approval.php:86
1376
- msgid "Your session has expired! Please refresh the page and try again."
1377
- msgstr "Votre session a expiré ! Merci de rafraîchir la page et de ré-essayer."
1378
-
1379
- #: ../features/admin-approval/admin-approval.php:106
1380
- msgid "Users successfully approved!"
1381
- msgstr "Les utilisateurs ont bien été approuvés !"
1382
-
1383
- #: ../features/admin-approval/admin-approval.php:121
1384
- msgid "Users successfully unapproved!"
1385
- msgstr "Les utilisateurs ont bien été refusés !"
1386
-
1387
- #: ../features/admin-approval/admin-approval.php:134
1388
- msgid "Users successfully deleted!"
1389
- msgstr "Les utilisateurs ont bien été supprimés !"
1390
-
1391
- #: ../features/admin-approval/admin-approval.php:149
1392
- msgid "Your account on %1$s has been approved!"
1393
- msgstr "Votre compte sur %1$s a été approuvé !"
1394
-
1395
- #: ../features/admin-approval/admin-approval.php:150
1396
- #: ../features/admin-approval/admin-approval.php:153
1397
- msgid "approved"
1398
- msgstr "approuvé"
1399
-
1400
- #: ../features/admin-approval/admin-approval.php:152
1401
- msgid "An administrator has just approved your account on %1$s (%2$s)."
1402
- msgstr "Un administrateur vient d'approuver votre compte sur %1$s (%2$s)."
1403
-
1404
- #: ../features/admin-approval/admin-approval.php:156
1405
- msgid "Your account on %1$s has been unapproved!"
1406
- msgstr "Votre compte sur %1$s a été refusé !"
1407
-
1408
- #: ../features/admin-approval/admin-approval.php:157
1409
- #: ../features/admin-approval/admin-approval.php:160
1410
- msgid "unapproved"
1411
- msgstr "refusé"
1412
-
1413
- #: ../features/admin-approval/admin-approval.php:159
1414
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1415
- msgstr "Un administrateur vient de refuser votre compte sur %1$s (%2$s)."
1416
-
1417
- #: ../features/admin-approval/admin-approval.php:176
1418
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
1419
- msgstr "<strong>ERREUR</strong> : Votre compte doit être confirmé par un administrateur avant que vous ne puissiez vous connecter."
1420
-
1421
- #: ../features/admin-approval/admin-approval.php:188
1422
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
1423
- msgstr "Un administrateur doit approuver votre compte avant que vous ne puissiez utiliser la fonctionnalité \"Mot de passe perdu\"."
1424
-
1425
- #: ../features/admin-approval/class-admin-approval.php:124
1426
- msgid "delete this user?"
1427
- msgstr "supprimer cet utilisateur ?"
1428
-
1429
- #: ../features/admin-approval/class-admin-approval.php:127
1430
- msgid "unapprove this user?"
1431
- msgstr "refuser cet utilisateur ?"
1432
-
1433
- #: ../features/admin-approval/class-admin-approval.php:127
1434
- #: ../features/admin-approval/class-admin-approval.php:234
1435
- msgid "Unapprove"
1436
- msgstr "Refuser"
1437
-
1438
- #: ../features/admin-approval/class-admin-approval.php:129
1439
- msgid "approve this user?"
1440
- msgstr "approuver cet utilisateur ?"
1441
-
1442
- #: ../features/admin-approval/class-admin-approval.php:129
1443
- #: ../features/admin-approval/class-admin-approval.php:233
1444
- msgid "Approve"
1445
- msgstr "Approuver"
1446
-
1447
- #: ../features/admin-approval/class-admin-approval.php:178
1448
- #: ../modules/user-listing/userlisting.php:608
1449
- #: ../modules/user-listing/userlisting.php:1249
1450
- msgid "Firstname"
1451
- msgstr "Prénom"
1452
-
1453
- #: ../features/admin-approval/class-admin-approval.php:179
1454
- #: ../modules/user-listing/userlisting.php:611
1455
- #: ../modules/user-listing/userlisting.php:1250
1456
- msgid "Lastname"
1457
- msgstr "Nom de famille"
1458
-
1459
- #: ../features/admin-approval/class-admin-approval.php:181
1460
- #: ../modules/user-listing/userlisting.php:124
1461
- #: ../modules/user-listing/userlisting.php:638
1462
- #: ../modules/user-listing/userlisting.php:1253
1463
- msgid "Role"
1464
- msgstr "Rôle"
1465
-
1466
- #: ../features/admin-approval/class-admin-approval.php:182
1467
- #: ../features/email-confirmation/class-email-confirmation.php:169
1468
- msgid "Registered"
1469
- msgstr "Inscrit"
1470
-
1471
- #: ../features/admin-approval/class-admin-approval.php:183
1472
- msgid "User-status"
1473
- msgstr "Statut de l'utilisateur"
1474
-
1475
- #: ../features/admin-approval/class-admin-approval.php:263
1476
- msgid "Do you want to bulk approve the selected users?"
1477
- msgstr "Voulez-vous approuver tous les utilisateurs sélectionnés ?"
1478
-
1479
- #: ../features/admin-approval/class-admin-approval.php:271
1480
- msgid "Do you want to bulk unapprove the selected users?"
1481
- msgstr "Voulez-vous refuser tous les utilisateurs sélectionnés ?"
1482
-
1483
- #: ../features/admin-approval/class-admin-approval.php:277
1484
- msgid "Do you want to bulk delete the selected users?"
1485
- msgstr "Voulez-vous supprimer tous les utilisateurs sélectionnés ?"
1486
-
1487
- #: ../features/admin-approval/class-admin-approval.php:285
1488
- #: ../features/email-confirmation/class-email-confirmation.php:278
1489
- msgid "Sorry, but you don't have permission to do that!"
1490
- msgstr "Désolé, mais vous n'avez pas la permission de faire cela !"
1491
-
1492
- #: ../features/admin-approval/class-admin-approval.php:325
1493
- msgid "Approved"
1494
- msgstr "Approuvé"
1495
-
1496
- #: ../features/admin-approval/class-admin-approval.php:327
1497
- msgid "Unapproved"
1498
- msgstr "Refusé"
1499
-
1500
- #: ../features/admin-approval/class-admin-approval.php:499
1501
- #: ../features/email-confirmation/class-email-confirmation.php:469
1502
- msgid "All Users"
1503
- msgstr "Tous les Utilisateurs"
1504
-
1505
- #: ../features/email-confirmation/class-email-confirmation.php:120
1506
- msgid "delete this user from the _signups table?"
1507
- msgstr "supprimer cet utilisateur de la table _signups ?"
1508
-
1509
- #: ../features/email-confirmation/class-email-confirmation.php:121
1510
- msgid "confirm this email yourself?"
1511
- msgstr "confirmer cette adresse de messagerie vous-même ?"
1512
-
1513
- #: ../features/email-confirmation/class-email-confirmation.php:121
1514
- #: ../features/email-confirmation/class-email-confirmation.php:218
1515
- msgid "Confirm Email"
1516
- msgstr "Confirmer l'adresse de messagerie"
1517
-
1518
- #: ../features/email-confirmation/class-email-confirmation.php:122
1519
- msgid "resend the activation link?"
1520
- msgstr "ré-envoyer le lien d'activation ?"
1521
-
1522
- #: ../features/email-confirmation/class-email-confirmation.php:122
1523
- #: ../features/email-confirmation/class-email-confirmation.php:219
1524
- msgid "Resend Activation Email"
1525
- msgstr "Ré-envoyer l'e-mail d'activation"
1526
-
1527
- #: ../features/email-confirmation/class-email-confirmation.php:249
1528
- msgid "%s couldn't be deleted"
1529
- msgstr "%s n'a pas pu être supprimé"
1530
-
1531
- #: ../features/email-confirmation/class-email-confirmation.php:253
1532
- msgid "All users have been successfully deleted"
1533
- msgstr "Tous les utilisateurs ont bien été supprimés"
1534
-
1535
- #: ../features/email-confirmation/class-email-confirmation.php:263
1536
- msgid "The selected users have been activated"
1537
- msgstr "L'utilisateur sélectionné a bien été activé"
1538
-
1539
- #: ../features/email-confirmation/class-email-confirmation.php:274
1540
- msgid "The selected users have had their activation emails resent"
1541
- msgstr "Les e-mails d'activation ont été ré-envoyés aux utilisateurs sélectionnés"
1542
-
1543
- #: ../features/email-confirmation/class-email-confirmation.php:466
1544
- #: ../features/email-confirmation/email-confirmation.php:47
1545
- msgid "Users with Unconfirmed Email Address"
1546
- msgstr "Utilisateurs avec une adresse de messagerie non-confirmée"
1547
-
1548
- #: ../features/email-confirmation/email-confirmation.php:110
1549
- msgid "There was an error performing that action!"
1550
- msgstr "Il y a eu une erreur lors de la réalisation de cette action !"
1551
-
1552
- #: ../features/email-confirmation/email-confirmation.php:118
1553
- msgid "The selected user couldn't be deleted"
1554
- msgstr "L'utilisateur sélectionné n'a pas pu être supprimé"
1555
-
1556
- #: ../features/email-confirmation/email-confirmation.php:129
1557
- msgid "Email notification resent to user"
1558
- msgstr "L'e-mail de notification a été ré-envoyé à l'utilisateur"
1559
-
1560
- #: ../features/email-confirmation/email-confirmation.php:364
1561
- msgid "[%1$s] Activate %2$s"
1562
- msgstr "[%1$s] Activer %2$s"
1563
-
1564
- #: ../features/email-confirmation/email-confirmation.php:367
1565
- msgid ""
1566
- "To activate your user, please click the following link:\n"
1567
- "\n"
1568
- "%s%s%s\n"
1569
- "\n"
1570
- "After you activate it you will receive yet *another email* with your login."
1571
- msgstr ""
1572
- "Pour activer votre utilisateur, merci de cliquer sur le lien suivant:\n"
1573
- "\n"
1574
- "%s%s%s\n"
1575
- "\n"
1576
- "Après l'avoir activé, vous recevrez un *autre E-mail* avec votre identifiant."
1577
-
1578
- #: ../features/email-confirmation/email-confirmation.php:406
1579
- #: ../front-end/register.php:68
1580
- msgid "Could not create user!"
1581
- msgstr "L'utilisateur n'a pas pu être créé !"
1582
-
1583
- #: ../features/email-confirmation/email-confirmation.php:409
1584
- msgid "That username is already activated!"
1585
- msgstr "Ce nom d'utilisateur est déjà activé !"
1586
-
1587
- #: ../features/email-confirmation/email-confirmation.php:438
1588
- msgid "There was an error while trying to activate the user"
1589
- msgstr "Il y a eu une erreur lors de l'activation de l'utilisateur"
1590
-
1591
- #: ../features/email-confirmation/email-confirmation.php:483
1592
- #: ../modules/email-customizer/admin-email-customizer.php:73
1593
- msgid "A new subscriber has (been) registered!"
1594
- msgstr "Un nouvel adhérent a (été) enregistré !"
1595
-
1596
- #: ../features/email-confirmation/email-confirmation.php:486
1597
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
1598
- msgstr "Nouvel adhérent sur %1$s.<br/><br/>Nom d'utilisateur :%2$s<br/>E-mail :%3$s<br/>"
1599
-
1600
- #: ../features/email-confirmation/email-confirmation.php:491
1601
- 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!"
1602
- 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 !"
1603
-
1604
- #: ../features/email-confirmation/email-confirmation.php:506
1605
- msgid "[%1$s] Your new account information"
1606
- msgstr "[%1$s] Nouvelles informations à propos de votre compte"
1607
-
1608
- #: ../features/email-confirmation/email-confirmation.php:512
1609
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
1610
- msgstr "Bienvenue sur %1$s!<br/><br/><br/>Votre nom d'utilisateur est :%2$s et votre mot de passe :%3$s"
1611
-
1612
- #: ../features/email-confirmation/email-confirmation.php:521
1613
- #: ../front-end/register.php:103
1614
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
1615
- 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é."
1616
-
1617
- #: ../features/login-widget/login-widget.php:10
1618
- msgid "This login widget lets you add a login form in the sidebar."
1619
- msgstr "Cette widget d'identification vous permet d'ajouter un formulaire d'identification sur la barre latérale."
1620
-
1621
- #: ../features/login-widget/login-widget.php:15
1622
- msgid "Profile Builder Login Widget"
1623
- msgstr "Profile Builder Login Widget"
1624
-
1625
- #: ../front-end/class-formbuilder.php:287 ../front-end/login.php:202
1626
- msgid "Register"
1627
- msgstr "S'inscrire"
1628
-
1629
- #: ../features/login-widget/login-widget.php:63
1630
- msgid "Title:"
1631
- msgstr "Titre :"
1632
-
1633
- #: ../features/login-widget/login-widget.php:68
1634
- msgid "After login redirect URL (optional):"
1635
- msgstr "URL de redirection après connexion (optionnel) :"
1636
-
1637
- #: ../features/login-widget/login-widget.php:73
1638
- msgid "Register page URL (optional):"
1639
- msgstr "URL de la page d'inscription (optionnel) :"
1640
-
1641
- #: ../features/login-widget/login-widget.php:78
1642
- msgid "Password Recovery page URL (optional):"
1643
- msgstr "URL de la page de ré-initialisation du mot de passe (optionnel) :"
1644
-
1645
- #: ../features/upgrades/upgrades-functions.php:91
1646
- #: ../features/upgrades/upgrades-functions.php:134
1647
- msgid "The usernames cannot be changed."
1648
- msgstr "Les noms d'utilisateur ne peuvent pas être changés."
1649
-
1650
- #: ../front-end/class-formbuilder.php:89
1651
- msgid "Only an administrator can add new users."
1652
- msgstr "Seul un administrateur peut ajouter de nouveaux utilisateurs."
1653
-
1654
- #: ../front-end/class-formbuilder.php:99
1655
- msgid "Users can register themselves or you can manually create users here."
1656
- msgstr "Merci de ne pas re-créer de compte si vous en avez déjà un."
1657
-
1658
- #: ../front-end/class-formbuilder.php:102
1659
- msgid "Users cannot currently register themselves, but you can manually create users here."
1660
- msgstr "Les utilisateurs ne peuvent pas s'inscrire eux-mêmes, mais vous pouvez les créer manuellement ici."
1661
-
1662
- #: ../front-end/class-formbuilder.php:114
1663
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
1664
- msgstr "Vous êtes actuellement connecté comme %1s.Vous n'avez pas besoin d'un autre compte. %2s"
1665
-
1666
- #: ../front-end/class-formbuilder.php:114
1667
- msgid "Log out of this account."
1668
- msgstr "Se déconnecter de ce compte."
1669
-
1670
- #: ../front-end/class-formbuilder.php:114
1671
- msgid "Logout"
1672
- msgstr "Déconnexion"
1673
-
1674
- #: ../front-end/class-formbuilder.php:120
1675
- msgid "You must be logged in to edit your profile."
1676
- msgstr "Vous devez être connecté pour modifier votre profil."
1677
-
1678
- #: ../front-end/class-formbuilder.php:142
1679
- msgid "here"
1680
- msgstr "ici"
1681
-
1682
- #: ../front-end/class-formbuilder.php:144
1683
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
1684
- 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"
1685
-
1686
- #: ../front-end/class-formbuilder.php:233
1687
- #: ../front-end/class-formbuilder.php:240
1688
- msgid "The account %1s has been successfully created!"
1689
- msgstr "Votre compte %1s a bien été créé !"
1690
-
1691
- #: ../front-end/class-formbuilder.php:236
1692
- #: ../front-end/class-formbuilder.php:246
1693
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
1694
- 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."
1695
-
1696
- #: ../front-end/class-formbuilder.php:242
1697
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
1698
- 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é."
1699
-
1700
- #: ../front-end/class-formbuilder.php:256
1701
- msgid "Your profile has been successfully updated!"
1702
- msgstr "Votre profil a bien été mis à jour !"
1703
-
1704
- #: ../front-end/class-formbuilder.php:266
1705
- msgid "There was an error in the submitted form"
1706
- msgstr "Il y avait une erreur dans le formulaire soumis"
1707
-
1708
- #: ../front-end/class-formbuilder.php:287
1709
- msgid "Add User"
1710
- msgstr "Ajouter un Utilisateur"
1711
-
1712
- #: ../admin/add-ons.php:170 ../front-end/class-formbuilder.php:290
1713
- msgid "Update"
1714
- msgstr "Mettre à jour"
1715
-
1716
- #: ../front-end/class-formbuilder.php:333
1717
- #: ../front-end/extra-fields/extra-fields.php:35
1718
- msgid "The avatar was successfully deleted!"
1719
- msgstr "L'avatar a bien été supprimé !"
1720
-
1721
- #: ../front-end/class-formbuilder.php:333
1722
- #: ../front-end/extra-fields/extra-fields.php:37
1723
- msgid "The following attachment was successfully deleted:"
1724
- msgstr "La pièce jointe suivante a bien été supprimée :"
1725
-
1726
- #: ../front-end/class-formbuilder.php:345
1727
- msgid "Send these credentials via email."
1728
- msgstr "Envoyer ces identifiants par E-mail."
1729
-
1730
- #: ../front-end/extra-fields/extra-fields.php:99 ../front-end/login.php:89
1731
- #: ../front-end/login.php:96 ../front-end/login.php:110
1732
- #: ../front-end/recover.php:17 ../front-end/recover.php:227
1733
- msgid "ERROR"
1734
- msgstr "ERREUR"
1735
-
1736
- #: ../front-end/login.php:89
1737
- msgid "The password you entered is incorrect."
1738
- msgstr "Le mot de passe que vous avez entré n'est pas correct."
1739
-
1740
- #: ../front-end/login.php:90 ../front-end/login.php:97
1741
- msgid "Password Lost and Found."
1742
- msgstr "Mot de passe perdu et retrouvé."
1743
-
1744
- #: ../front-end/login.php:90 ../front-end/login.php:97
1745
- msgid "Lost your password"
1746
- msgstr "Mot de passe perdu"
1747
-
1748
- #: ../front-end/login.php:110
1749
- msgid "Both fields are empty."
1750
- msgstr "Les deux champs sont vides."
1751
-
1752
- #: ../front-end/login.php:242
1753
- msgid "You are currently logged in as %1$s. %2$s"
1754
- msgstr "Vous êtes actuellement connecté en tant que %1$s. %2$s"
1755
-
1756
- #: ../front-end/login.php:241 ../front-end/logout.php:17
1757
- msgid "Log out of this account"
1758
- msgstr "Se déconnecter de ce compte"
1759
-
1760
- #: ../front-end/login.php:241
1761
- msgid "Log out"
1762
- msgstr "Se déconnecter"
1763
-
1764
- #: ../front-end/recover.php:17
1765
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
1766
- msgstr "Votre compte doit être confirmé par un administrateur avant que vous ne puissiez utiliser la fonctionnalité \"Ré-initialisation du mot de passe\"."
1767
-
1768
- #: ../front-end/recover.php:91
1769
- msgid "Reset Password"
1770
- msgstr "Ré-initialiser le mot de passe"
1771
-
1772
- #: ../front-end/recover.php:111
1773
- msgid "Please enter your username or email address."
1774
- msgstr "Merci d'entrer votre nom d'utilisateur ou votre adresse de messagerie."
1775
-
1776
- #: ../front-end/recover.php:112
1777
- msgid "You will receive a link to create a new password via email."
1778
- msgstr "Vous recevrez un lien par E-mail pour créer un nouveau mot de passe."
1779
-
1780
- #: ../front-end/recover.php:119
1781
- msgid "Username or E-mail"
1782
- msgstr "Nom d'utilisateur ou adresse de messagerie."
1783
-
1784
- #: ../front-end/recover.php:125
1785
- msgid "Get New Password"
1786
- msgstr "Ré-initialiser votre mot de passe"
1787
-
1788
- #: ../front-end/recover.php:166
1789
- msgid "The username entered wasn't found in the database!"
1790
- msgstr "Le nom d'utilisateur que vous avez entré n'a pas été trouvé dans la base de données !"
1791
-
1792
- #: ../front-end/recover.php:166
1793
- msgid "Please check that you entered the correct username."
1794
- msgstr "Merci de vérifier que vous avez entré un nom d'utilisateur correct."
1795
-
1796
- #: ../front-end/recover.php:181
1797
- msgid "Check your e-mail for the confirmation link."
1798
- msgstr "Merci de consulter votre boite de réception pour le lien d'activation."
1799
-
1800
- #: ../front-end/recover.php:215
1801
- 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"
1802
- msgstr "Quelqu'un a demandé que le mot de passe soit ré-initialisé sur le compte suivant: <b>%1$s</b><br/>Si c'est 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"
1803
-
1804
- #: ../front-end/recover.php:218
1805
- msgid "Password Reset from \"%1$s\""
1806
- msgstr "Mot de passe ré-initialisé de \"%1$s\""
1807
-
1808
- #: ../front-end/recover.php:227
1809
- msgid "There was an error while trying to send the activation link to %1$s!"
1810
- msgstr "Il y a eu une erreur lors de l'envoi du lien d'activation à %1$s !"
1811
-
1812
- #: ../front-end/recover.php:188
1813
- msgid "The email address entered wasn't found in the database!"
1814
- msgstr "L'adresse de messagerie saisie n'a pas été trouvée dans la base de données !"
1815
-
1816
- #: ../front-end/recover.php:188
1817
- msgid "Please check that you entered the correct email address."
1818
- msgstr "Merci de vérifier que vous avez entré une adresse de messagerie correcte."
1819
-
1820
- #: ../front-end/recover.php:255
1821
- msgid "Your password has been successfully changed!"
1822
- msgstr "Votre mot de passe a bien été changé !"
1823
-
1824
- #: ../front-end/recover.php:274
1825
- msgid "You have successfully reset your password to: %1$s"
1826
- msgstr "Vous avec bien ré-initialisé votre mot de passe pour: %1$s"
1827
-
1828
- #: ../front-end/recover.php:277 ../front-end/recover.php:291
1829
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
1830
- msgstr "Mot de passe bien ré-initialisé pour %1$s sur \"%2$s\""
1831
-
1832
- #: ../front-end/recover.php:288
1833
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
1834
- 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"
1835
-
1836
- #: ../front-end/recover.php:307
1837
- msgid "The entered passwords don't match!"
1838
- msgstr "Les mots de passe entrés sont différents !"
1839
-
1840
- #: ../front-end/recover.php:352
1841
- msgid "ERROR:"
1842
- msgstr "ERREUR :"
1843
-
1844
- #: ../front-end/recover.php:352
1845
- msgid "Invalid key!"
1846
- msgstr "Clé incorrecte !"
1847
-
1848
- #: ../front-end/register.php:46
1849
- msgid "Invalid activation key!"
1850
- msgstr "Clé d'activation incorrecte !"
1851
-
1852
- #: ../front-end/register.php:50
1853
- msgid "This username is now active!"
1854
- msgstr "Ce nom d'utilisateur est désormais actif !"
1855
-
1856
- #: ../front-end/register.php:71
1857
- msgid "This username is already activated!"
1858
- msgstr "Ce nom d'utilisateur est déjà activé !"
1859
-
1860
- #: ../front-end/register.php:102
1861
- msgid "Your email was successfully confirmed."
1862
- msgstr "Votre adresse de messagerie a bien été confirmée."
1863
-
1864
- #: ../front-end/register.php:112
1865
- msgid "There was an error while trying to activate the user."
1866
- msgstr "Il y a eu une erreur lors de l'activation de cet utilisateur."
1867
-
1868
- #: ../front-end/default-fields/email/email.php:42
1869
- msgid "The email you entered is not a valid email address."
1870
- msgstr "L'adresse de messagerie que vous avez entrée n'est pas une adresse de messagerie valide."
1871
-
1872
- #: ../front-end/default-fields/email/email.php:55
1873
- #: ../front-end/default-fields/email/email.php:60
1874
- msgid "This email is already reserved to be used soon."
1875
- msgstr "Cette adresse de messagerie est déjà réservée et sera bientôt utilisée."
1876
-
1877
- #: ../front-end/default-fields/email/email.php:55
1878
- #: ../front-end/default-fields/email/email.php:60
1879
- #: ../front-end/default-fields/email/email.php:68
1880
- #: ../front-end/default-fields/email/email.php:79
1881
- #: ../front-end/default-fields/username/username.php:44
1882
- #: ../front-end/default-fields/username/username.php:54
1883
- msgid "Please try a different one!"
1884
- msgstr "Merci d'en essayer un(e) autre !"
1885
-
1886
- #: ../front-end/default-fields/email/email.php:68
1887
- #: ../front-end/default-fields/email/email.php:79
1888
- msgid "This email is already in use."
1889
- msgstr "Cette adresse de messagerie est déjà utilisée."
1890
-
1891
- #: ../front-end/default-fields/password-repeat/password-repeat.php:35
1892
- #: ../front-end/default-fields/password-repeat/password-repeat.php:39
1893
- msgid "The passwords do not match"
1894
- msgstr "Les mots de passe sont différents"
1895
-
1896
- #: ../front-end/default-fields/username/username.php:44
1897
- msgid "This username already exists."
1898
- msgstr "Ce nom d'utilisateur existe déjà."
1899
-
1900
- #: ../front-end/default-fields/username/username.php:54
1901
- msgid "This username is already reserved to be used soon."
1902
- msgstr "Ce nom d'utilisateur est déjà réservé et va bientôt être utilisé."
1903
-
1904
- #: ../front-end/extra-fields/avatar/avatar.php:65
1905
- #: ../front-end/extra-fields/avatar/avatar.php:103
1906
- #: ../front-end/extra-fields/upload/upload.php:29
1907
- #: ../front-end/extra-fields/upload/upload.php:68
1908
- msgid "max upload size"
1909
- msgstr "taille maximale de téléchargement"
1910
-
1911
- #: ../front-end/extra-fields/avatar/avatar.php:71
1912
- msgid "Current avatar: No uploaded avatar"
1913
- msgstr "Avatar actuel : aucun avatar téléchargé"
1914
-
1915
- #: ../front-end/extra-fields/avatar/avatar.php:76
1916
- #: ../front-end/extra-fields/avatar/avatar.php:110
1917
- msgid "Avatar"
1918
- msgstr "Avatar"
1919
-
1920
- #: ../front-end/extra-fields/avatar/avatar.php:80
1921
- #: ../front-end/extra-fields/avatar/avatar.php:85
1922
- #: ../front-end/extra-fields/avatar/avatar.php:113
1923
- #: ../front-end/extra-fields/avatar/avatar.php:115
1924
- msgid "Click to see the current avatar"
1925
- msgstr "Cliquez pour voir l'avatar actuel"
1926
-
1927
- #: ../front-end/extra-fields/avatar/avatar.php:82
1928
- #: ../front-end/extra-fields/avatar/avatar.php:113
1929
- msgid "The avatar can't be deleted (It was marked as required by the administrator)"
1930
- msgstr "L'avatar n'a pas pu être supprimé (il a été marqué comme obligatoire par l'administrateur)"
1931
-
1932
- #: ../front-end/extra-fields/avatar/avatar.php:87
1933
- #: ../front-end/extra-fields/avatar/avatar.php:115
1934
- msgid "Are you sure you want to delete this avatar?"
1935
- msgstr "Êtes-vous sûr de vouloir supprimer cet avatar ?"
1936
-
1937
- #: ../front-end/extra-fields/avatar/avatar.php:88
1938
- #: ../front-end/extra-fields/avatar/avatar.php:115
1939
- msgid "Click to delete the current avatar"
1940
- msgstr "Cliquez pour supprimer l'avatar actuel"
1941
-
1942
- #: ../front-end/extra-fields/avatar/avatar.php:96
1943
- #: ../front-end/extra-fields/checkbox/checkbox.php:44
1944
- #: ../front-end/extra-fields/datepicker/datepicker.php:47
1945
- #: ../front-end/extra-fields/input-hidden/input-hidden.php:32
1946
- #: ../front-end/extra-fields/input/input.php:28
1947
- #: ../front-end/extra-fields/radio/radio.php:42
1948
- #: ../front-end/extra-fields/select-multiple/select-multiple.php:44
1949
- #: ../front-end/extra-fields/select-timezone/select-timezone.php:42
1950
- #: ../front-end/extra-fields/select/select.php:44
1951
- #: ../front-end/extra-fields/textarea/textarea.php:28
1952
- #: ../front-end/extra-fields/upload/upload.php:62
1953
- #: ../front-end/extra-fields/wysiwyg/wysiwyg.php:33
1954
- msgid "required"
1955
- msgstr "obligatoire"
1956
-
1957
- #: ../front-end/extra-fields/avatar/avatar.php:106
1958
- msgid "Current avatar"
1959
- msgstr "Avatar actuel"
1960
-
1961
- #: ../front-end/extra-fields/avatar/avatar.php:106
1962
- msgid "No uploaded avatar"
1963
- msgstr "Aucun avatar téléchargé"
1964
-
1965
- #: ../front-end/extra-fields/avatar/avatar.php:212
1966
- #: ../front-end/extra-fields/upload/upload.php:173
1967
- msgid "The extension of the file did not match"
1968
- msgstr "L'extension du fichier ne correspond pas"
1969
-
1970
- #: ../front-end/extra-fields/avatar/avatar.php:215
1971
- #: ../front-end/extra-fields/avatar/avatar.php:218
1972
- #: ../front-end/extra-fields/upload/upload.php:177
1973
- #: ../front-end/extra-fields/upload/upload.php:180
1974
- msgid "The file uploaded exceeds the upload_max_filesize directive in php.ini"
1975
- msgstr "Le fichier téléchargé dépasse la taille maximale upload_max_filesize dans php.ini"
1976
-
1977
- #: ../front-end/extra-fields/avatar/avatar.php:221
1978
- #: ../front-end/extra-fields/upload/upload.php:183
1979
- msgid "The file uploaded exceeds the MAX_FILE_SIZE directive in php.ini"
1980
- msgstr "Le fichier téléchargé dépasse la taille maximale MAX_FILE_SIZE dans php.ini"
1981
-
1982
- #: ../front-end/extra-fields/avatar/avatar.php:224
1983
- msgid "The file could only partially be uploaded "
1984
- msgstr "Le fichier pourrait n'avoir été que partiellement téléchargé"
1985
-
1986
- #: ../front-end/extra-fields/avatar/avatar.php:227
1987
- #: ../front-end/extra-fields/avatar/avatar.php:251
1988
- #: ../front-end/extra-fields/avatar/avatar.php:254
1989
- #: ../front-end/extra-fields/upload/upload.php:189
1990
- #: ../front-end/extra-fields/upload/upload.php:213
1991
- #: ../front-end/extra-fields/upload/upload.php:216
1992
- msgid "No file was selected"
1993
- msgstr "Aucun fichier n'a été sélectionné"
1994
-
1995
- #: ../front-end/extra-fields/avatar/avatar.php:230
1996
- #: ../front-end/extra-fields/upload/upload.php:192
1997
- msgid "The temporary upload folder is missing from the system"
1998
- msgstr "Le dossier temporaire de téléchargement n'existe pas sur le système"
1999
-
2000
- #: ../front-end/extra-fields/avatar/avatar.php:233
2001
- #: ../front-end/extra-fields/upload/upload.php:195
2002
- msgid "The file failed to write to the disk"
2003
- msgstr "L'écriture du fichier sur le disque a échoué"
2004
-
2005
- #: ../front-end/extra-fields/avatar/avatar.php:236
2006
- #: ../front-end/extra-fields/upload/upload.php:198
2007
- msgid "A PHP extension stopped the file upload"
2008
- msgstr "Une extension PHP a arrêté le téléchargement du fichier"
2009
-
2010
- #: ../front-end/extra-fields/avatar/avatar.php:239
2011
- msgid "Unknown error occurred"
2012
- msgstr "Une erreur inconnue s'est produite"
2013
-
2014
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:47
2015
- msgid "To use reCAPTCHA you must get an API key from"
2016
- msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé d'API de"
2017
-
2018
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:77
2019
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
2020
- msgstr "Pour des raisons de sécurité, vous devez donner l'adresse ip distante au reCAPTCHA!"
2021
-
2022
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:139
2023
- msgid "To use reCAPTCHA you must get an API public key from:"
2024
- msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé publique d'API de :"
2025
-
2026
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:142
2027
- msgid "To use reCAPTCHA you must get an API private key from:"
2028
- msgstr "Pour utiliser reCAPTCHA vous devez avoir une clé privée de :"
2029
-
2030
- #: ../front-end/extra-fields/upload/upload.php:35
2031
- msgid "Current file: No uploaded attachment"
2032
- msgstr "Fichier actuel: aucune pièce jointe téléchargée"
2033
-
2034
- #: ../front-end/extra-fields/upload/upload.php:39
2035
- #: ../front-end/extra-fields/upload/upload.php:48
2036
- #: ../front-end/extra-fields/upload/upload.php:71
2037
- #: ../front-end/extra-fields/upload/upload.php:75
2038
- #: ../front-end/extra-fields/upload/upload.php:77
2039
- msgid "Current file"
2040
- msgstr "Fichier actuel"
2041
-
2042
- #: ../front-end/extra-fields/upload/upload.php:42
2043
- #: ../front-end/extra-fields/upload/upload.php:51
2044
- #: ../front-end/extra-fields/upload/upload.php:75
2045
- #: ../front-end/extra-fields/upload/upload.php:77
2046
- msgid "Click to see the current attachment"
2047
- msgstr "Cliquez pour voir la pièce jointe actuelle"
2048
-
2049
- #: ../front-end/extra-fields/upload/upload.php:44
2050
- #: ../front-end/extra-fields/upload/upload.php:75
2051
- msgid "The attachment can't be deleted (It was marked as required by the administrator)"
2052
- msgstr "La pièce jointe n'a pas pu être supprimée (elle est marquée comme obligatoire par l'administrateur)"
2053
-
2054
- #: ../front-end/extra-fields/upload/upload.php:53
2055
- #: ../front-end/extra-fields/upload/upload.php:77
2056
- msgid "Are you sure you want to delete this attachment?"
2057
- msgstr "Êtes-vous sûr de vouloir supprimer cette pièce jointe ?"
2058
-
2059
- #: ../front-end/extra-fields/upload/upload.php:54
2060
- #: ../front-end/extra-fields/upload/upload.php:77
2061
- msgid "Click to delete the current attachment"
2062
- msgstr "Cliquer pour supprimer la pièce jointe actuelle"
2063
-
2064
- #: ../front-end/extra-fields/upload/upload.php:71
2065
- msgid "No uploaded attachment"
2066
- msgstr "Pas de pièce jointe téléchargée"
2067
-
2068
- #: ../front-end/extra-fields/upload/upload.php:164
2069
- msgid "The extension of the file is not allowed"
2070
- msgstr "L'extension du fichier n'est pas autorisée"
2071
-
2072
- #: ../front-end/extra-fields/upload/upload.php:186
2073
- msgid "The file could only partially be uploaded"
2074
- msgstr "Le fichier n'a pu qu'être partiellement téléchargé"
2075
-
2076
- #: ../front-end/extra-fields/upload/upload.php:201
2077
- msgid "This field wasn't updated because an unknown error occured"
2078
- msgstr "Ce champ n'a pas pu être mis à jour à cause d'une erreur inconnue"
2079
-
2080
- #: ../modules/modules.php:11 ../modules/modules.php:80
2081
- msgid "Modules"
2082
- msgstr "Modules"
2083
-
2084
- #: ../modules/modules.php:81
2085
- msgid "Here you can activate / deactivate available modules for Profile Builder."
2086
- msgstr "Ici vous pouvez activer / désactiver les modules disponibles pour Profile Builder."
2087
-
2088
- #: ../modules/modules.php:91
2089
- msgid "Name/Description"
2090
- msgstr "Nom/Description"
2091
-
2092
- #: ../modules/modules.php:92
2093
- msgid "Status"
2094
- msgstr "Statut"
2095
-
2096
- #: ../modules/custom-redirects/custom-redirects.php:48
2097
- #: ../modules/custom-redirects/custom-redirects.php:58
2098
- #: ../modules/custom-redirects/custom-redirects.php:68
2099
- #: ../modules/custom-redirects/custom-redirects.php:94
2100
- #: ../modules/custom-redirects/custom-redirects.php:104
2101
- #: ../modules/custom-redirects/custom-redirects.php:114
2102
- #: ../modules/custom-redirects/custom-redirects.php:124
2103
- #: ../modules/modules.php:99 ../modules/modules.php:106
2104
- #: ../modules/modules.php:113 ../modules/modules.php:120
2105
- #: ../modules/modules.php:127 ../modules/modules.php:134
2106
- msgid "Active"
2107
- msgstr "Active"
2108
-
2109
- #: ../modules/custom-redirects/custom-redirects.php:49
2110
- #: ../modules/custom-redirects/custom-redirects.php:59
2111
- #: ../modules/custom-redirects/custom-redirects.php:69
2112
- #: ../modules/custom-redirects/custom-redirects.php:95
2113
- #: ../modules/custom-redirects/custom-redirects.php:105
2114
- #: ../modules/custom-redirects/custom-redirects.php:115
2115
- #: ../modules/custom-redirects/custom-redirects.php:125
2116
- #: ../modules/modules.php:100 ../modules/modules.php:107
2117
- #: ../modules/modules.php:114 ../modules/modules.php:121
2118
- #: ../modules/modules.php:128 ../modules/modules.php:135
2119
- msgid "Inactive"
2120
- msgstr "Inactive"
2121
-
2122
- #: ../modules/email-customizer/admin-email-customizer.php:11
2123
- #: ../modules/email-customizer/admin-email-customizer.php:12
2124
- #: ../modules/modules.php:118
2125
- msgid "Admin Email Customizer"
2126
- msgstr "E-mails personnalisés à l'Admin"
2127
-
2128
- #: ../modules/email-customizer/user-email-customizer.php:11
2129
- #: ../modules/email-customizer/user-email-customizer.php:12
2130
- #: ../modules/modules.php:125
2131
- msgid "User Email Customizer"
2132
- msgstr "E-mails personnalisés à l'utilisateur"
2133
-
2134
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
2135
- #: ../modules/class-mustache-templates/class-mustache-templates.php:242
2136
- msgid "Save"
2137
- msgstr "Enregistrer"
2138
-
2139
- #: ../modules/custom-redirects/custom-redirects.php:35
2140
- msgid "Redirects on custom page requests:"
2141
- msgstr "Redirige les requêtes vers une page spécifique :"
2142
-
2143
- #: ../modules/custom-redirects/custom-redirects.php:39
2144
- #: ../modules/custom-redirects/custom-redirects.php:85
2145
- msgid "Action"
2146
- msgstr "Action"
2147
-
2148
- #: ../modules/custom-redirects/custom-redirects.php:40
2149
- #: ../modules/custom-redirects/custom-redirects.php:86
2150
- #: ../modules/multiple-forms/edit-profile-forms.php:202
2151
- #: ../modules/multiple-forms/register-forms.php:226
2152
- msgid "Redirect"
2153
- msgstr "Redirections"
2154
-
2155
- #: ../modules/custom-redirects/custom-redirects.php:41
2156
- #: ../modules/custom-redirects/custom-redirects.php:87
2157
- #: ../modules/multiple-forms/edit-profile-forms.php:204
2158
- #: ../modules/multiple-forms/register-forms.php:228
2159
- msgid "URL"
2160
- msgstr "URL"
2161
-
2162
- #: ../modules/custom-redirects/custom-redirects.php:46
2163
- msgid "After Registration:"
2164
- msgstr "Après inscription :"
2165
-
2166
- #: ../modules/custom-redirects/custom-redirects.php:56
2167
- msgid "After Login:"
2168
- msgstr "Après connexion :"
2169
-
2170
- #: ../modules/custom-redirects/custom-redirects.php:66
2171
- msgid "Recover Password (*)"
2172
- msgstr "Récupérer le mot de passe (*)"
2173
-
2174
- #: ../modules/custom-redirects/custom-redirects.php:77
2175
- 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."
2176
- 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."
2177
-
2178
- #: ../modules/custom-redirects/custom-redirects.php:81
2179
- msgid "Redirects on default WordPress page requests:"
2180
- msgstr "Redirige les requêtes vers la page Wordpress par défaut :"
2181
-
2182
- #: ../modules/custom-redirects/custom-redirects.php:92
2183
- msgid "Default WordPress Login Page"
2184
- msgstr "Page de connexion WordPress par défaut"
2185
-
2186
- #: ../modules/custom-redirects/custom-redirects.php:102
2187
- msgid "Default WordPress Logout Page"
2188
- msgstr "Page de déconnexion Wordpress par défaut"
2189
-
2190
- #: ../modules/custom-redirects/custom-redirects.php:112
2191
- msgid "Default WordPress Register Page"
2192
- msgstr "Page d'inscription WordPress par défaut"
2193
-
2194
- #: ../modules/custom-redirects/custom-redirects.php:122
2195
- msgid "Default WordPress Dashboard (*)"
2196
- msgstr "Tableau de bord Wordpress par défaut (*)"
2197
-
2198
- #: ../modules/custom-redirects/custom-redirects.php:133
2199
- msgid "Redirects every user-role EXCEPT the ones with administrator privileges (can manage options)."
2200
- msgstr "Redirige chaque rôle utilisateur SAUF ceux qui ont des privilèges d'administrateur (qui seuls peuvent changer les options)."
2201
-
2202
- #: ../modules/email-customizer/admin-email-customizer.php:38
2203
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
2204
- 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."
2205
-
2206
- #: ../modules/email-customizer/admin-email-customizer.php:41
2207
- #: ../modules/email-customizer/user-email-customizer.php:41
2208
- msgid "From (name)"
2209
- msgstr "De (nom)"
2210
-
2211
- #: ../modules/email-customizer/admin-email-customizer.php:49
2212
- #: ../modules/email-customizer/user-email-customizer.php:49
2213
- msgid "From (reply-to email)"
2214
- msgstr "De (réponse à)"
2215
-
2216
- #: ../modules/email-customizer/admin-email-customizer.php:57
2217
- #: ../modules/email-customizer/user-email-customizer.php:57
2218
- msgid "Common Settings"
2219
- msgstr "Paramètres communs"
2220
-
2221
- #: ../modules/email-customizer/admin-email-customizer.php:60
2222
- msgid ""
2223
- "\n"
2224
- "<p>New subscriber on {{site_name}}.</p>\n"
2225
- "<p>Username:{{username}}</p>\n"
2226
- "<p>E-mail:{{user_email}}</p>\n"
2227
- msgstr ""
2228
- "\n"
2229
- "<p>Nouvel adhérent sur {{site_name}}.</p>\n"
2230
- "<p>Nom d'utilisateu r:{{username}}</p>\n"
2231
- "<p>Adresse de messagerie :{{user_email}}</p>\n"
2232
-
2233
- #: ../modules/email-customizer/admin-email-customizer.php:69
2234
- #: ../modules/email-customizer/admin-email-customizer.php:99
2235
- #: ../modules/email-customizer/admin-email-customizer.php:126
2236
- #: ../modules/email-customizer/user-email-customizer.php:71
2237
- #: ../modules/email-customizer/user-email-customizer.php:99
2238
- #: ../modules/email-customizer/user-email-customizer.php:128
2239
- #: ../modules/email-customizer/user-email-customizer.php:155
2240
- #: ../modules/email-customizer/user-email-customizer.php:183
2241
- #: ../modules/email-customizer/user-email-customizer.php:214
2242
- #: ../modules/email-customizer/user-email-customizer.php:241
2243
- msgid "Email Subject"
2244
- msgstr "Sujet de l'E-mail"
2245
-
2246
- #: ../modules/email-customizer/admin-email-customizer.php:84
2247
- msgid "Default Registration & Registration with Email Confirmation"
2248
- msgstr "Inscription par défaut & inscription avec confirmation de l'adresse de messagerie"
2249
-
2250
- #: ../modules/email-customizer/admin-email-customizer.php:87
2251
- msgid ""
2252
- "\n"
2253
- "<p>New subscriber on {{site_name}}.</p>\n"
2254
- "<p>Username:{{username}}</p>\n"
2255
- "<p>E-mail:{{user_email}}</p>\n"
2256
- "<p>The Admin Approval feature was activated at the time of registration,\n"
2257
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
2258
- msgstr ""
2259
- "\n"
2260
- "<p>Nouvel adhérent sur {{site_name}}.</p>\n"
2261
- "<p>Nom d'utilisateur:{{username}}</p>\n"
2262
- "<p>Adresse de messagerie:{{user_email}}</p>\n"
2263
- "<p>La fonctionnalité Approbation Admin était activée au moment de l'inscription,\n"
2264
- "donc merci de vous souvenir qu'il faut que vous approuviez cet utilisateur avant qu'il/elle ne puisse se connecter!</p>\n"
2265
-
2266
- #: ../modules/email-customizer/admin-email-customizer.php:114
2267
- #: ../modules/email-customizer/user-email-customizer.php:143
2268
- msgid "Registration with Admin Approval"
2269
- msgstr "Inscription avec Approbation Admin"
2270
-
2271
- #: ../modules/email-customizer/email-customizer.php:7
2272
- msgid "Available Tags"
2273
- msgstr "Tags disponibles"
2274
-
2275
- #: ../features/email-confirmation/class-email-confirmation.php:91
2276
- #: ../features/email-confirmation/class-email-confirmation.php:170
2277
- #: ../modules/email-customizer/email-customizer.php:11
2278
- msgid "User Meta"
2279
- msgstr "Méta-information de l'utilisateur"
2280
-
2281
- #: ../modules/email-customizer/email-customizer.php:21
2282
- msgid "Site Url"
2283
- msgstr "URL du site web"
2284
-
2285
- #: ../modules/email-customizer/email-customizer.php:22
2286
- msgid "Site Name"
2287
- msgstr "Nom du site web"
2288
-
2289
- #: ../modules/email-customizer/email-customizer.php:25
2290
- #: ../modules/user-listing/userlisting.php:133
2291
- msgid "User Id"
2292
- msgstr "ID de l'utilisateur"
2293
-
2294
- #: ../modules/email-customizer/email-customizer.php:33
2295
- msgid "Reply To"
2296
- msgstr "Réponse à"
2297
-
2298
- #: ../modules/email-customizer/email-customizer.php:36
2299
- msgid "Activation Key"
2300
- msgstr "Clé d'activation"
2301
-
2302
- #: ../modules/email-customizer/email-customizer.php:37
2303
- msgid "Activation Url"
2304
- msgstr "URL d'activation"
2305
-
2306
- #: ../modules/email-customizer/email-customizer.php:38
2307
- msgid "Activation Link"
2308
- msgstr "Lien d'activation"
2309
-
2310
- #: ../modules/email-customizer/user-email-customizer.php:64
2311
- msgid ""
2312
- "\n"
2313
- "<h3>Welcome to {{site_name}}!</h3>\n"
2314
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2315
- msgstr ""
2316
- "\n"
2317
- "<h3>Bienvenu(e) sur {{site_name}} !</h3>\n"
2318
- "<p>Votre nom d'utilisateur est :{{username}} et votre mot de passe :{{password}}</p>\n"
2319
-
2320
- #: ../modules/email-customizer/user-email-customizer.php:85
2321
- msgid "Default Registration"
2322
- msgstr "Inscription par défaut"
2323
-
2324
- #: ../modules/email-customizer/user-email-customizer.php:91
2325
- msgid ""
2326
- "\n"
2327
- "<p>To activate your user, please click the following link:<br/>\n"
2328
- "{{{activation_link}}}</p>\n"
2329
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
2330
- msgstr ""
2331
- "\n"
2332
- "<p>Pour activer votre compte, merci de cliquer sur le lien suivant :<br/>\n"
2333
- "{{{activation_link}}}</p>\n"
2334
- "<p>Une fois l'activation réalisée, vous recevrez une autre E-mail avec vos identifiants</p>\n"
2335
-
2336
- #: ../modules/email-customizer/user-email-customizer.php:103
2337
- msgid "[{{site_name}}] Activate {{username}}"
2338
- msgstr "[{{site_name}}] Activer {{username}}"
2339
-
2340
- #: ../modules/email-customizer/user-email-customizer.php:114
2341
- msgid "Registration with Email Confirmation"
2342
- msgstr "Inscription avec confirmation de l'adresse de messagerie"
2343
-
2344
- #: ../modules/email-customizer/user-email-customizer.php:120
2345
- msgid ""
2346
- "\n"
2347
- "<h3>Welcome to {{site_name}}!</h3>\n"
2348
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
2349
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
2350
- msgstr ""
2351
- "<h3>Bienvenu(e) sur {{site_name}}!</h3>\n"
2352
- "<p>Votre nom d'utilisateur est :{{username}} et votre mot de passe :{{password}}</p>\n"
2353
- "<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"
2354
-
2355
- #: ../modules/email-customizer/user-email-customizer.php:132
2356
- msgid "A new account has been created for you on {{site_name}}"
2357
- msgstr "Un nouveau compte a été créé pour vous sur {{site_name}}"
2358
-
2359
- #: ../modules/email-customizer/user-email-customizer.php:148
2360
- msgid ""
2361
- "\n"
2362
- "<h3>Good News!</h3>\n"
2363
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
2364
- msgstr ""
2365
- "\n"
2366
- "<h3>Bonne nouvelle !</h3>\n"
2367
- "<p>Un administrateur vient juste d'approuver votre compte {{username}} sur {{site_name}}.</p>\n"
2368
-
2369
- #: ../modules/email-customizer/user-email-customizer.php:159
2370
- msgid "Your account on {{site_name}} has been approved!"
2371
- msgstr "Votre compte sur {{site_name}} a été approuvé !"
2372
-
2373
- #: ../modules/email-customizer/user-email-customizer.php:170
2374
- msgid "User Approval Notification"
2375
- msgstr "Notification lors de l'approbation d'un utilisateur"
2376
-
2377
- #: ../modules/email-customizer/user-email-customizer.php:175
2378
- msgid ""
2379
- "\n"
2380
- "<h3>Hello,</h3>\n"
2381
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
2382
- msgstr ""
2383
- "\n"
2384
- "<h3>Bonjour,</h3>\n"
2385
- "<p>Un administrateur vient malheureusement de refuser votre compte : {{username}} sur {{site_name}}.</p>\n"
2386
-
2387
- #: ../modules/email-customizer/user-email-customizer.php:187
2388
- msgid "Your account on {{site_name}} has been unapproved!"
2389
- msgstr "Votre compte sur {{site_name}} a été refusé !"
2390
-
2391
- #: ../modules/email-customizer/user-email-customizer.php:198
2392
- msgid "Unapproved User Notification"
2393
- msgstr "Notification lors du refus d'un utilisateur"
2394
-
2395
- #: ../modules/multiple-forms/edit-profile-forms.php:11
2396
- #: ../modules/multiple-forms/edit-profile-forms.php:12
2397
- msgid "Edit-profile Form"
2398
- msgstr "Formulaire de modification de profil"
2399
-
2400
- #: ../modules/multiple-forms/edit-profile-forms.php:13
2401
- #: ../modules/multiple-forms/register-forms.php:13
2402
- #: ../modules/user-listing/userlisting.php:13
2403
- msgid "Add New"
2404
- msgstr "Ajouter un nouveau"
2405
-
2406
- #: ../modules/multiple-forms/edit-profile-forms.php:14
2407
- msgid "Add new Edit-profile Form"
2408
- msgstr "Ajouter un nouveau formulaire de modification de profil"
2409
-
2410
- #: ../modules/multiple-forms/edit-profile-forms.php:15
2411
- msgid "Edit the Edit-profile Forms"
2412
- msgstr "Modifier les formulaires de modification de profil"
2413
-
2414
- #: ../modules/multiple-forms/edit-profile-forms.php:16
2415
- msgid "New Edit-profile Form"
2416
- msgstr "Nouveau formulaire de modification de profil"
2417
-
2418
- #: ../modules/multiple-forms/edit-profile-forms.php:17
2419
- #: ../modules/multiple-forms/edit-profile-forms.php:23
2420
- msgid "Edit-profile Forms"
2421
- msgstr "Formulaires de modification de profil"
2422
-
2423
- #: ../modules/multiple-forms/edit-profile-forms.php:18
2424
- msgid "View the Edit-profile Form"
2425
- msgstr "Voir le formulaire de modification de profil"
2426
-
2427
- #: ../modules/multiple-forms/edit-profile-forms.php:19
2428
- msgid "Search the Edit-profile Forms"
2429
- msgstr "Rechercher dans les formulaires de modification de profil"
2430
-
2431
- #: ../modules/multiple-forms/edit-profile-forms.php:20
2432
- msgid "No Edit-profile Form found"
2433
- msgstr "Aucun formulaire de modification de profil trouvé"
2434
-
2435
- #: ../modules/multiple-forms/edit-profile-forms.php:21
2436
- msgid "No Edit-profile Forms found in trash"
2437
- msgstr "Aucun formulaire de modification de profil trouvé dans la corbeille"
2438
-
2439
- #: ../modules/multiple-forms/edit-profile-forms.php:131
2440
- #: ../modules/multiple-forms/register-forms.php:134
2441
- #: ../modules/user-listing/userlisting.php:1140
2442
- msgid "Shortcode"
2443
- msgstr "Shortcode"
2444
-
2445
- #: ../modules/multiple-forms/edit-profile-forms.php:151
2446
- #: ../modules/multiple-forms/register-forms.php:155
2447
- #: ../modules/user-listing/userlisting.php:1161
2448
- msgid "(no title)"
2449
- msgstr "(aucun titre)"
2450
-
2451
- #: ../modules/multiple-forms/edit-profile-forms.php:171
2452
- #: ../modules/multiple-forms/register-forms.php:174
2453
- #: ../modules/user-listing/userlisting.php:1181
2454
- msgid "The shortcode will be available after you publish this form."
2455
- msgstr "Le shortcode sera disponible après la publication de ce formulaire."
2456
-
2457
- #: ../modules/multiple-forms/edit-profile-forms.php:173
2458
- #: ../modules/multiple-forms/register-forms.php:176
2459
- #: ../modules/user-listing/userlisting.php:1183
2460
- msgid "Use this shortcode on the page you want the form to be displayed:"
2461
- msgstr "Utilisez ce shortcode sur la page où vous voulez que le formulaire soit affiché :"
2462
-
2463
- #: ../modules/multiple-forms/edit-profile-forms.php:177
2464
- #: ../modules/multiple-forms/register-forms.php:180
2465
- #: ../modules/user-listing/userlisting.php:1187
2466
- msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
2467
- msgstr "<span style=\"color:red;\">Note :</span> modifier le titre du formulaire change aussi le shortcode !"
2468
-
2469
- #: ../modules/multiple-forms/edit-profile-forms.php:183
2470
- #: ../modules/multiple-forms/register-forms.php:186
2471
- #: ../modules/user-listing/userlisting.php:1220
2472
- msgid "Form Shortcode"
2473
- msgstr "Shortcode du formulaire"
2474
-
2475
- #: ../modules/multiple-forms/edit-profile-forms.php:202
2476
- #: ../modules/multiple-forms/register-forms.php:226
2477
- msgid "Whether to redirect the user to a specific page or not"
2478
- msgstr "Si l'utilisateur doit être redirigé vers une page spécifique ou pas"
2479
-
2480
- #: ../modules/multiple-forms/edit-profile-forms.php:203
2481
- #: ../modules/multiple-forms/register-forms.php:227
2482
- msgid "Display Messages"
2483
- msgstr "Afficher les messages"
2484
-
2485
- #: ../modules/multiple-forms/edit-profile-forms.php:203
2486
- #: ../modules/multiple-forms/register-forms.php:227
2487
- msgid "Allowed time to display any success messages (in seconds)"
2488
- msgstr "Temps autorisé pour afficher tout message de succès (en secondes)"
2489
-
2490
- #: ../modules/multiple-forms/edit-profile-forms.php:204
2491
- 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"
2492
- msgstr "Spécifiez l'URL de la page où les utilisateurs seront redirigés lorsqu'ils mettent à jour leur profil en utilisant ce formulaire<br/>Utilisez le format suivant : http://www.monsite.com"
2493
-
2494
- #: ../modules/multiple-forms/edit-profile-forms.php:211
2495
- msgid "After Profile Update..."
2496
- msgstr "Après une mise à jour de profil..."
2497
-
2498
- #: ../modules/multiple-forms/edit-profile-forms.php:237
2499
- #: ../modules/multiple-forms/register-forms.php:258
2500
- msgid "Add New Field to the List"
2501
- msgstr "Ajouter un nouveau champ à la liste"
2502
-
2503
- #: ../modules/multiple-forms/edit-profile-forms.php:241
2504
- #: ../modules/multiple-forms/register-forms.php:262
2505
- msgid "Choose one of the supported fields you manage <a href=\""
2506
- msgstr "Choisissez l'un des champs supportés que vous gérez <a href=\""
2507
-
2508
- #: ../modules/multiple-forms/multiple-forms.php:416
2509
- msgid "<pre>Title (Type)</pre>"
2510
- msgstr "<pre>Titre (Type)</pre>"
2511
-
2512
- #: ../modules/multiple-forms/multiple-forms.php:232
2513
- msgid "You need to specify the title of the form before creating it"
2514
- msgstr "Vous devez spécifier le titre du formulaire avant de le créer"
2515
-
2516
- #: ../modules/multiple-forms/register-forms.php:11
2517
- #: ../modules/multiple-forms/register-forms.php:12
2518
- msgid "Registration Form"
2519
- msgstr "Formulaire d'inscription"
2520
-
2521
- #: ../modules/multiple-forms/register-forms.php:14
2522
- msgid "Add new Registration Form"
2523
- msgstr "Ajouter un nouveau formulaire d'inscription"
2524
-
2525
- #: ../modules/multiple-forms/register-forms.php:15
2526
- msgid "Edit the Registration Forms"
2527
- msgstr "Modifier les formulaires d'inscription"
2528
-
2529
- #: ../modules/multiple-forms/register-forms.php:16
2530
- msgid "New Registration Form"
2531
- msgstr "Nouveau formulaire d'inscription"
2532
-
2533
- #: ../modules/multiple-forms/register-forms.php:17
2534
- #: ../modules/multiple-forms/register-forms.php:23
2535
- msgid "Registration Forms"
2536
- msgstr "Formulaires d'inscription"
2537
-
2538
- #: ../modules/multiple-forms/register-forms.php:18
2539
- msgid "View the Registration Form"
2540
- msgstr "Voir le formulaire d'inscription"
2541
-
2542
- #: ../modules/multiple-forms/register-forms.php:19
2543
- msgid "Search the Registration Forms"
2544
- msgstr "Rechercher dans les formulaires d'inscription"
2545
-
2546
- #: ../modules/multiple-forms/register-forms.php:20
2547
- msgid "No Registration Form found"
2548
- msgstr "Aucun formulaire d'inscription trouvé"
2549
-
2550
- #: ../modules/multiple-forms/register-forms.php:21
2551
- msgid "No Registration Forms found in trash"
2552
- msgstr "Aucun formulaire d'inscription trouvé dans la corbeille"
2553
-
2554
- #: ../modules/multiple-forms/register-forms.php:215
2555
- msgid "Default Role"
2556
- msgstr "Rôle par défaut"
2557
-
2558
- #: ../modules/multiple-forms/register-forms.php:224
2559
- msgid "Set Role"
2560
- msgstr "Fixer le rôle"
2561
-
2562
- #: ../modules/multiple-forms/register-forms.php:224
2563
- 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"
2564
- 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"
2565
-
2566
- #: ../modules/multiple-forms/register-forms.php:225
2567
- msgid "Automatically Log In"
2568
- msgstr "Se connecter automatiquement"
2569
-
2570
- #: ../modules/multiple-forms/register-forms.php:225
2571
- 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"
2572
- 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"
2573
-
2574
- #: ../modules/multiple-forms/register-forms.php:228
2575
- 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"
2576
- msgstr "Spécifiez l'URL de la page vers laquelle les utilisateurs seront redirigés une fois inscrits via ce formulaire<br/>Utilisez le format suivant : http://www.monsite.com"
2577
-
2578
- #: ../modules/multiple-forms/register-forms.php:234
2579
- msgid "After Registration..."
2580
- msgstr "Après inscription..."
2581
-
2582
- #: ../modules/user-listing/class-userlisting.php:470
2583
- #: ../modules/user-listing/userlisting.php:709
2584
- #: ../modules/user-listing/userlisting.php:953
2585
- #: ../modules/user-listing/userlisting.php:996
2586
- #: ../modules/user-listing/userlisting.php:1340
2587
- msgid "Search Users by All Fields"
2588
- msgstr "Rechercher des utilisateurs par tous les champs"
2589
-
2590
- #: ../modules/user-listing/userlisting.php:14
2591
- msgid "Add new User Listing"
2592
- msgstr "Ajouter un nouveau listing d'utilisateurs"
2593
-
2594
- #: ../modules/user-listing/userlisting.php:15
2595
- msgid "Edit the User Listing"
2596
- msgstr "Modifier le listing d'utilisateurs"
2597
-
2598
- #: ../modules/user-listing/userlisting.php:16
2599
- msgid "New User Listing"
2600
- msgstr "Nouveau listing d'utilisateurs"
2601
-
2602
- #: ../modules/user-listing/userlisting.php:18
2603
- msgid "View the User Listing"
2604
- msgstr "Voir le listing d'utilisateurs"
2605
-
2606
- #: ../modules/user-listing/userlisting.php:19
2607
- msgid "Search the User Listing"
2608
- msgstr "Rechercher des listings d'utilisateurs"
2609
-
2610
- #: ../modules/user-listing/userlisting.php:20
2611
- msgid "No User Listing found"
2612
- msgstr "Aucun listing d'utilisateurs trouvé"
2613
-
2614
- #: ../modules/user-listing/userlisting.php:21
2615
- msgid "No User Listing found in trash"
2616
- msgstr "Aucun listing d'utilisateur trouvé dans la corbeille"
2617
-
2618
- #: ../modules/user-listing/userlisting.php:95
2619
- msgid "Display name as"
2620
- msgstr "Afficher le nom comme"
2621
-
2622
- #: ../modules/user-listing/userlisting.php:125
2623
- #: ../modules/user-listing/userlisting.php:1248
2624
- msgid "Registration Date"
2625
- msgstr "Date d'inscription"
2626
-
2627
- #: ../modules/user-listing/userlisting.php:126
2628
- #: ../modules/user-listing/userlisting.php:1252
2629
- msgid "Number of Posts"
2630
- msgstr "Nombre de messages postés"
2631
-
2632
- #: ../modules/user-listing/userlisting.php:130
2633
- msgid "More Info"
2634
- msgstr "Plus d'infos"
2635
-
2636
- #: ../modules/user-listing/userlisting.php:131
2637
- msgid "More Info Url"
2638
- msgstr "URL vers plus d'infos"
2639
-
2640
- #: ../modules/user-listing/userlisting.php:132
2641
- msgid "Avatar or Gravatar"
2642
- msgstr "Avatar ou Gravatar"
2643
-
2644
- #: ../modules/user-listing/userlisting.php:161
2645
- msgid "Meta Variables"
2646
- msgstr "Méta-variables"
2647
-
2648
- #: ../modules/user-listing/userlisting.php:167
2649
- msgid "Sort Variables"
2650
- msgstr "Trier les variables"
2651
-
2652
- #: ../modules/user-listing/userlisting.php:171
2653
- #: ../modules/user-listing/userlisting.php:198
2654
- msgid "Extra Functions"
2655
- msgstr "Fonctions supplémentaires"
2656
-
2657
- #: ../modules/user-listing/userlisting.php:173
2658
- msgid "Pagination"
2659
- msgstr "Pagination"
2660
-
2661
- #: ../modules/user-listing/userlisting.php:174
2662
- msgid "Search all Fields"
2663
- msgstr "Rechercher parmi tous les champs"
2664
-
2665
- #: ../modules/user-listing/userlisting.php:200
2666
- msgid "Go Back Link"
2667
- msgstr "Lien vers la page précédente"
2668
-
2669
- #: ../modules/user-listing/userlisting.php:218
2670
- msgid "All-userlisting Template"
2671
- msgstr "Modèle de tous les listing d'utilisateurs"
2672
-
2673
- #: ../modules/user-listing/userlisting.php:221
2674
- msgid "Single-userlisting Template"
2675
- msgstr "Modèle d'un seul listing d'utilisateurs"
2676
-
2677
- #: ../modules/user-listing/userlisting.php:338
2678
- msgid "You do not have permission to view this user list"
2679
- msgstr "Vous n'avez pas la permission de voir cette liste d'utilisateurs"
2680
-
2681
- #: ../modules/user-listing/userlisting.php:351
2682
- msgid "You do not have the required user role to view this user list"
2683
- msgstr "Vous n'avez pas le rôle utilisateur requis pour voir cette liste d'utilisateurs"
2684
-
2685
- #: ../modules/user-listing/userlisting.php:599
2686
- msgid "First/Lastname"
2687
- msgstr "Prénom/Nom de famille"
2688
-
2689
- #: ../modules/user-listing/userlisting.php:605
2690
- msgid "Sign-up Date"
2691
- msgstr "Date d'inscription"
2692
-
2693
- #: ../modules/user-listing/userlisting.php:614
2694
- #: ../modules/user-listing/userlisting.php:1251
2695
- msgid "Display Name"
2696
- msgstr "Afficher le nom"
2697
-
2698
- #: ../modules/user-listing/userlisting.php:623
2699
- msgid "Posts"
2700
- msgstr "Messages postés"
2701
-
2702
- #: ../modules/user-listing/userlisting.php:626
2703
- #: ../modules/user-listing/userlisting.php:1257
2704
- msgid "Aim"
2705
- msgstr "Aim"
2706
-
2707
- #: ../modules/user-listing/userlisting.php:629
2708
- #: ../modules/user-listing/userlisting.php:1258
2709
- msgid "Yim"
2710
- msgstr "Yim"
2711
-
2712
- #: ../modules/user-listing/userlisting.php:632
2713
- #: ../modules/user-listing/userlisting.php:1259
2714
- msgid "Jabber"
2715
- msgstr "Jabber"
2716
-
2717
- #: ../modules/user-listing/userlisting.php:812
2718
- msgid "Click here to see more information about this user"
2719
- msgstr "Cliquez ici pour voir plus d'informations sur cet utilisateur."
2720
-
2721
- #: ../modules/user-listing/userlisting.php:812
2722
- msgid "More..."
2723
- msgstr "Plus..."
2724
-
2725
- #: ../modules/user-listing/userlisting.php:815
2726
- msgid "Click here to see more information about this user."
2727
- msgstr "Cliquez ici pour voir plus d'informations sur cet utilisateur."
2728
-
2729
- #: ../modules/user-listing/userlisting.php:907
2730
- #: ../modules/user-listing/userlisting.php:910
2731
- msgid "Click here to go back"
2732
- msgstr "Cliquez ici pour revenir en arrière"
2733
-
2734
- #: ../modules/user-listing/userlisting.php:907
2735
- msgid "Back"
2736
- msgstr "Précédent"
2737
-
2738
- #: ../modules/user-listing/userlisting.php:940
2739
- msgid "&laquo;&laquo; First"
2740
- msgstr "&laquo;&laquo; Premier"
2741
-
2742
- #: ../modules/user-listing/userlisting.php:941
2743
- msgid "&laquo; Prev"
2744
- msgstr "&laquo; Précédent"
2745
-
2746
- #: ../modules/user-listing/userlisting.php:942
2747
- msgid "Next &raquo; "
2748
- msgstr "Suivant &raquo; "
2749
-
2750
- #: ../modules/user-listing/userlisting.php:943
2751
- msgid "Last &raquo;&raquo;"
2752
- msgstr "Dernier &raquo;&raquo;"
2753
-
2754
- #: ../modules/user-listing/userlisting.php:972
2755
- msgid "You don't have any pagination settings on this userlisting!"
2756
- msgstr "Vous n'avez pas de paramètres de pagination sur ce listing d'utilisateurs !"
2757
-
2758
- #: ../modules/user-listing/userlisting.php:1013
2759
- msgid "Search"
2760
- msgstr "Rechercher"
2761
-
2762
- #: ../modules/user-listing/userlisting.php:1014
2763
- msgid "Clear Results"
2764
- msgstr "Effacer les résultats"
2765
-
2766
- #: ../modules/user-listing/userlisting.php:1190
2767
- #: ../modules/user-listing/userlisting.php:1194
2768
- msgid "Extra shortcode parameters"
2769
- msgstr "Paramètres supplémentaires du shortcode"
2770
-
2771
- #: ../modules/user-listing/userlisting.php:1197
2772
- msgid "displays users having a certain meta-value within a certain (extra) meta-field"
2773
- msgstr "affiche les utilisateurs ayant une certaine méta-valeur dans un certain méta-champ"
2774
-
2775
- #: ../modules/user-listing/userlisting.php:1198
2776
- msgid "Example:"
2777
- msgstr "Exemple : "
2778
-
2779
- #: ../modules/user-listing/userlisting.php:1200
2780
- msgid "Remember though, that the field-value combination must exist in the database."
2781
- msgstr "Rappelez-vous cependant que la combinaison champ-valeur doit exister dans la base de données."
2782
-
2783
- #: ../modules/user-listing/userlisting.php:1269
2784
- msgid "Random (very slow on large databases > 10K user)"
2785
- msgstr "Aléatoire (très lent sur les énormes bases de données > 10K utilisateurs)"
2786
-
2787
- #: ../modules/user-listing/userlisting.php:1282
2788
- msgid "Roles to Display"
2789
- msgstr "Groupes à afficher"
2790
-
2791
- #: ../modules/user-listing/userlisting.php:1282
2792
- msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
2793
- 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 pour tous les groupes d'utilisateurs"
2794
-
2795
- #: ../modules/user-listing/userlisting.php:1283
2796
- msgid "Number of Users/Page"
2797
- msgstr "Nombre d'utilisateurs/page"
2798
-
2799
- #: ../modules/user-listing/userlisting.php:1284
2800
- msgid "Default Sorting Criteria"
2801
- msgstr "Critère de tri par défaut"
2802
-
2803
- #: ../modules/user-listing/userlisting.php:1284
2804
- msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
2805
- msgstr "Fixer le critère de tri par défaut.<br/>Ceci peut être temporairement modifié à chaque nouvelle session"
2806
-
2807
- #: ../modules/user-listing/userlisting.php:1285
2808
- msgid "Default Sorting Order"
2809
- msgstr "Ordre de tri par défaut"
2810
-
2811
- #: ../modules/user-listing/userlisting.php:1285
2812
- msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
2813
- msgstr "Fixez l'ordre de tri par défaut.<br/>Ceci peut être temporairement modifié à chaque nouvelle session"
2814
-
2815
- #: ../modules/user-listing/userlisting.php:1286
2816
- msgid "Avatar Size (All-userlisting)"
2817
- msgstr "Taille d'avatar (listing de tous les utilisateurs)"
2818
-
2819
- #: ../modules/user-listing/userlisting.php:1286
2820
- msgid "Set the avatar size on the all-userlisting only"
2821
- msgstr "Fixer la taille de l'avatar uniquement sur le listing de tous les utilisateurs."
2822
-
2823
- #: ../modules/user-listing/userlisting.php:1287
2824
- msgid "Avatar Size (Single-userlisting)"
2825
- msgstr "Taille d'avatar (listing d'un seul utilisateur)"
2826
-
2827
- #: ../modules/user-listing/userlisting.php:1287
2828
- msgid "Set the avatar size on the single-userlisting only"
2829
- msgstr "Fixer la taille de l'avatar du listing d'un seul utilisateur uniquement"
2830
-
2831
- #: ../modules/user-listing/userlisting.php:1288
2832
- msgid "Visible only to logged in users?"
2833
- msgstr "Visible uniquement aux utilisateurs connectés ?"
2834
-
2835
- #: ../modules/user-listing/userlisting.php:1288
2836
- msgid "The userlisting will only be visible only to the logged in users"
2837
- msgstr "Le listing d'utilisateurs sera visible uniquement par les utilisateurs connectés"
2838
-
2839
- #: ../modules/user-listing/userlisting.php:1289
2840
- msgid "Visible to following Roles"
2841
- msgstr "Visible pour les rôles suivants"
2842
-
2843
- #: ../modules/user-listing/userlisting.php:1289
2844
- msgid "The userlisting will only be visible to the following roles"
2845
- msgstr "Le listing d'utilisateurs sera visible uniquement par les rôles suivants"
2846
-
2847
- #: ../modules/user-listing/userlisting.php:1295
2848
- msgid "Userlisting Settings"
2849
- msgstr "Paramètres du listing d'utilisateurs"
2850
-
2851
- #: ../modules/user-listing/userlisting.php:1316
2852
- msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
2853
- msgstr "Vous devez activer le listing d'utilisateurs à partir de l'onglet \"Modules\" !"
2854
-
2855
- #: ../modules/user-listing/userlisting.php:1316
2856
- msgid "You can find it in the Profile Builder menu."
2857
- msgstr "Vous pouvez le trouver dans le menu Profile Builder."
2858
-
2859
- #: ../modules/user-listing/userlisting.php:1479
2860
- msgid "No results found!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-09-29 11:53:57+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
+ #: ../admin/add-ons.php:190
14
+ msgid "Recommended Plugins"
15
+ msgstr ""
16
+
17
+ #: ../admin/add-ons.php:219 ../admin/pms-cross-promotion.php:102
18
+ msgid "Free"
19
+ msgstr ""
20
+
21
+ #: ../admin/add-ons.php:221
22
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
23
+ msgstr ""
24
+
25
+ #: ../admin/add-ons.php:222 ../admin/pms-cross-promotion.php:105
26
+ msgid "More Details"
27
+ msgstr ""
28
+
29
+ #: ../admin/add-ons.php:240 ../admin/pms-cross-promotion.php:88
30
+ #: ../admin/pms-cross-promotion.php:123 ../admin/pms-cross-promotion.php:202
31
+ msgid "Plugin is <strong>inactive</strong>"
32
+ msgstr ""
33
+
34
+ #: ../admin/add-ons.php:242 ../admin/pms-cross-promotion.php:87
35
+ #: ../admin/pms-cross-promotion.php:125 ../admin/pms-cross-promotion.php:204
36
+ msgid "Plugin is <strong>active</strong>"
37
+ msgstr ""
38
+
39
+ #: ../admin/add-ons.php:263 ../admin/pms-cross-promotion.php:146
40
+ msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
41
+ msgstr ""
42
+
43
+ #: ../admin/general-settings.php:62
44
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" addon."
45
+ msgstr ""
46
+
47
+ #: ../admin/pms-cross-promotion.php:10
48
+ msgid "Paid Accounts"
49
+ msgstr ""
50
+
51
+ #: ../admin/pms-cross-promotion.php:33
52
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
53
+ msgstr ""
54
+
55
+ #: ../admin/pms-cross-promotion.php:37
56
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
57
+ msgstr ""
58
+
59
+ #: ../admin/pms-cross-promotion.php:40
60
+ msgid "Paid & Free Subscriptions"
61
+ msgstr ""
62
+
63
+ #: ../admin/pms-cross-promotion.php:41
64
+ msgid "Restrict Content"
65
+ msgstr ""
66
+
67
+ #: ../admin/pms-cross-promotion.php:42
68
+ msgid "Member Management"
69
+ msgstr ""
70
+
71
+ #: ../admin/pms-cross-promotion.php:43
72
+ msgid "Email Templates"
73
+ msgstr ""
74
+
75
+ #: ../admin/pms-cross-promotion.php:44
76
+ msgid "Account Management"
77
+ msgstr ""
78
+
79
+ #: ../admin/pms-cross-promotion.php:45
80
+ msgid "Subscription Management"
81
+ msgstr ""
82
+
83
+ #: ../admin/pms-cross-promotion.php:46
84
+ msgid "Payment Management"
85
+ msgstr ""
86
+
87
+ #: ../admin/pms-cross-promotion.php:83
88
+ msgid "Plugin is Active"
89
+ msgstr ""
90
+
91
+ #: ../admin/pms-cross-promotion.php:84
92
+ msgid "Plugin has been activated"
93
+ msgstr ""
94
+
95
+ #: ../admin/pms-cross-promotion.php:91
96
+ msgid "Plugin has been deactivated."
97
+ msgstr ""
98
+
99
+ #: ../admin/pms-cross-promotion.php:104
100
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
101
+ msgstr ""
102
+
103
+ #: ../admin/pms-cross-promotion.php:155
104
+ msgid "Step by Step Quick Setup"
105
+ msgstr ""
106
+
107
+ #: ../admin/pms-cross-promotion.php:239
108
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s. %3$sDismiss%4$s"
109
+ msgstr ""
110
+
111
+ #: ../features/email-confirmation/email-confirmation.php:392
112
+ msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
113
+ msgstr ""
114
+
115
+ #: ../front-end/register.php:130
116
+ msgid "You will soon be redirected automatically."
117
+ msgstr ""
118
+
119
+ #: ../modules/custom-redirects/custom_redirects_admin.php:45
120
+ msgid "After Login"
121
+ msgstr ""
122
+
123
+ #: ../modules/custom-redirects/custom_redirects_admin.php:46
124
+ msgid "After Logout"
125
+ msgstr ""
126
+
127
+ #: ../modules/custom-redirects/custom_redirects_admin.php:47
128
+ msgid "After Registration"
129
+ msgstr ""
130
+
131
+ #: ../modules/custom-redirects/custom_redirects_admin.php:48
132
+ msgid "After Edit Profile"
133
+ msgstr ""
134
+
135
+ #: ../modules/custom-redirects/custom_redirects_admin.php:49
136
+ msgid "After Successful Email Confirmation"
137
+ msgstr ""
138
+
139
+ #: ../modules/custom-redirects/custom_redirects_admin.php:50
140
+ msgid "After Successful Password Reset"
141
+ msgstr ""
142
+
143
+ #: ../modules/custom-redirects/custom_redirects_admin.php:51
144
+ msgid "Dashboard (redirect users from accessing the dashboard)"
145
+ msgstr ""
146
+
147
+ #: ../modules/custom-redirects/custom_redirects_admin.php:55
148
+ msgid "User ID"
149
+ msgstr ""
150
+
151
+ #: ../modules/custom-redirects/custom_redirects_admin.php:61
152
+ msgid "User ID or Username"
153
+ msgstr ""
154
+
155
+ #: ../modules/custom-redirects/custom_redirects_admin.php:62
156
+ msgid "User ID / Username"
157
+ msgstr ""
158
+
159
+ #: ../modules/custom-redirects/custom_redirects_admin.php:62
160
+ msgid "Please select and enter the ID or username of your user."
161
+ msgstr ""
162
+
163
+ #: ../modules/custom-redirects/custom_redirects_admin.php:63
164
+ #: ../modules/custom-redirects/custom_redirects_admin.php:93
165
+ #: ../modules/custom-redirects/custom_redirects_admin.php:112
166
+ #: ../modules/custom-redirects/custom_redirects_admin.php:131
167
+ msgid "Redirect Type"
168
+ msgstr ""
169
+
170
+ #: ../modules/custom-redirects/custom_redirects_admin.php:64
171
+ #: ../modules/custom-redirects/custom_redirects_admin.php:94
172
+ #: ../modules/custom-redirects/custom_redirects_admin.php:113
173
+ #: ../modules/custom-redirects/custom_redirects_admin.php:138
174
+ msgid "Redirect URL"
175
+ msgstr ""
176
+
177
+ #: ../modules/custom-redirects/custom_redirects_admin.php:64
178
+ #: ../modules/custom-redirects/custom_redirects_admin.php:94
179
+ #: ../modules/custom-redirects/custom_redirects_admin.php:113
180
+ #: ../modules/custom-redirects/custom_redirects_admin.php:138
181
+ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
182
+ msgstr ""
183
+
184
+ #: ../modules/custom-redirects/custom_redirects_admin.php:71
185
+ #: ../modules/custom-redirects/custom_redirects_admin.php:240
186
+ msgid "Individual User Redirects"
187
+ msgstr ""
188
+
189
+ #: ../modules/custom-redirects/custom_redirects_admin.php:84
190
+ msgid "... Choose"
191
+ msgstr ""
192
+
193
+ #: ../modules/custom-redirects/custom_redirects_admin.php:92
194
+ msgid "Select a user role."
195
+ msgstr ""
196
+
197
+ #: ../modules/custom-redirects/custom_redirects_admin.php:101
198
+ #: ../modules/custom-redirects/custom_redirects_admin.php:241
199
+ msgid "User Role based Redirects"
200
+ msgstr ""
201
+
202
+ #: ../modules/custom-redirects/custom_redirects_admin.php:120
203
+ #: ../modules/custom-redirects/custom_redirects_admin.php:242
204
+ msgid "Global Redirects"
205
+ msgstr ""
206
+
207
+ #: ../modules/custom-redirects/custom_redirects_admin.php:133
208
+ msgid "Login ( wp_login.php )"
209
+ msgstr ""
210
+
211
+ #: ../modules/custom-redirects/custom_redirects_admin.php:134
212
+ msgid "Register ( wp-login.php?action=register )"
213
+ msgstr ""
214
+
215
+ #: ../modules/custom-redirects/custom_redirects_admin.php:135
216
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
217
+ msgstr ""
218
+
219
+ #: ../modules/custom-redirects/custom_redirects_admin.php:136
220
+ msgid "Author Archive ( http://sitename.com/author/admin )"
221
+ msgstr ""
222
+
223
+ #: ../modules/custom-redirects/custom_redirects_admin.php:145
224
+ msgid "Redirect Default WordPress Forms and Pages"
225
+ msgstr ""
226
+
227
+ #: ../modules/custom-redirects/custom_redirects_admin.php:157
228
+ msgid "How does this work?"
229
+ msgstr ""
230
+
231
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
232
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
233
+ msgstr ""
234
+
235
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
236
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
237
+ msgstr ""
238
+
239
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
240
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
241
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
242
+ msgstr ""
243
+
244
+ #: ../modules/custom-redirects/custom_redirects_admin.php:236
245
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
246
+ msgstr ""
247
+
248
+ #: ../modules/custom-redirects/custom_redirects_admin.php:238
249
+ msgid "Which redirect happens depends on the following priority:"
250
+ msgstr ""
251
+
252
+ #: ../modules/custom-redirects/custom_redirects_admin.php:243
253
+ msgid "Individual redirects defined in shortcodes or in the Multiple Registration and Edit Profile form settings. (<strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects)"
254
+ msgstr ""
255
+
256
+ #: ../modules/custom-redirects/custom_redirects_admin.php:246
257
+ msgid "Redirect Default WordPress forms and pages"
258
+ msgstr ""
259
+
260
+ #: ../modules/custom-redirects/custom_redirects_admin.php:247
261
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
262
+ msgstr ""
263
+
264
+ #: ../modules/custom-redirects/custom_redirects_admin.php:249
265
+ msgid "Available tags for dynamic URLs"
266
+ msgstr ""
267
+
268
+ #: ../modules/custom-redirects/custom_redirects_admin.php:250
269
+ msgid "You use the following tags in your URLs to redirect users to various pages."
270
+ msgstr ""
271
+
272
+ #: ../modules/custom-redirects/custom_redirects_admin.php:252
273
+ msgid "generates a url of the current website homepage."
274
+ msgstr ""
275
+
276
+ #: ../modules/custom-redirects/custom_redirects_admin.php:253
277
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
278
+ msgstr ""
279
+
280
+ #: ../modules/custom-redirects/custom_redirects_admin.php:254
281
+ msgid "the ID of the user"
282
+ msgstr ""
283
+
284
+ #: ../modules/custom-redirects/custom_redirects_admin.php:255
285
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
286
+ msgstr ""
287
+
288
+ #: ../modules/custom-redirects/custom_redirects_admin.php:256
289
+ msgid "the URL of the previously visited page"
290
+ msgstr ""
291
+
292
+ #: ../modules/custom-redirects/custom_redirects_admin.php:339
293
+ #: ../modules/custom-redirects/custom_redirects_admin.php:345
294
+ #: ../modules/custom-redirects/custom_redirects_admin.php:351
295
+ msgid "You can't add duplicate redirects!"
296
+ msgstr ""
297
+
298
+ #: ../admin/admin-functions.php:40
299
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
300
+ msgstr ""
301
+
302
+ #: ../admin/basic-info.php:37
303
+ msgid "Friction-less login using %s shortcode or a widget."
304
+ msgstr ""
305
+
306
+ #: ../admin/basic-info.php:41
307
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
308
+ msgstr ""
309
+
310
+ #: ../admin/basic-info.php:45
311
+ msgid "Straight forward edit profile forms using %s shortcode."
312
+ msgstr ""
313
+
314
+ #: ../admin/basic-info.php:58
315
+ msgid "Allow users to recover their password in the front-end using the %s."
316
+ msgstr ""
317
+
318
+ #: ../admin/basic-info.php:130
319
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
320
+ msgstr ""
321
+
322
+ #: ../admin/general-settings.php:118
323
+ msgid "\"Admin Approval\" on User Role:"
324
+ msgstr ""
325
+
326
+ #: ../admin/general-settings.php:137
327
+ msgid "Select on what user roles to activate Admin Approval."
328
+ msgstr ""
329
+
330
+ #: ../admin/manage-fields.php:109
331
+ msgid "Display on PB forms"
332
+ msgstr ""
333
+
334
+ #: ../admin/manage-fields.php:109
335
+ msgid "PB Login"
336
+ msgstr ""
337
+
338
+ #: ../admin/manage-fields.php:109
339
+ msgid "PB Register"
340
+ msgstr ""
341
+
342
+ #: ../admin/manage-fields.php:109
343
+ msgid "PB Recover Password"
344
+ msgstr ""
345
+
346
+ #: ../admin/manage-fields.php:109
347
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
348
+ msgstr ""
349
+
350
+ #: ../admin/manage-fields.php:110
351
+ msgid "Display on default WP forms"
352
+ msgstr ""
353
+
354
+ #: ../admin/manage-fields.php:110
355
+ msgid "Default WP Login"
356
+ msgstr ""
357
+
358
+ #: ../admin/manage-fields.php:110
359
+ msgid "Default WP Register"
360
+ msgstr ""
361
+
362
+ #: ../admin/manage-fields.php:110
363
+ msgid "Default WP Recover Password"
364
+ msgstr ""
365
+
366
+ #: ../admin/manage-fields.php:110
367
+ msgid "Select on which default WP forms to display reCAPTCHA"
368
+ msgstr ""
369
+
370
+ #: ../admin/manage-fields.php:116 ../admin/manage-fields.php:117
371
+ msgid "Default option of the field"
372
+ msgstr ""
373
+
374
+ #: ../admin/manage-fields.php:237
375
+ msgid "Afghanistan"
376
+ msgstr "Afghanistan"
377
+
378
+ #: ../admin/manage-fields.php:238
379
+ msgid "Aland Islands"
380
+ msgstr "Aland Islands"
381
+
382
+ #: ../admin/manage-fields.php:239
383
+ msgid "Albania"
384
+ msgstr "Albania"
385
+
386
+ #: ../admin/manage-fields.php:240
387
+ msgid "Algeria"
388
+ msgstr "Algeria"
389
+
390
+ #: ../admin/manage-fields.php:241
391
+ msgid "American Samoa"
392
+ msgstr "American Samoa"
393
+
394
+ #: ../admin/manage-fields.php:242
395
+ msgid "Andorra"
396
+ msgstr "Andorra"
397
+
398
+ #: ../admin/manage-fields.php:243
399
+ msgid "Angola"
400
+ msgstr "Angola"
401
+
402
+ #: ../admin/manage-fields.php:244
403
+ msgid "Anguilla"
404
+ msgstr "Anguilla"
405
+
406
+ #: ../admin/manage-fields.php:245
407
+ msgid "Antarctica"
408
+ msgstr "Antarctica"
409
+
410
+ #: ../admin/manage-fields.php:246
411
+ msgid "Antigua and Barbuda"
412
+ msgstr "Antigua and Barbuda"
413
+
414
+ #: ../admin/manage-fields.php:247
415
+ msgid "Argentina"
416
+ msgstr "Argentina"
417
+
418
+ #: ../admin/manage-fields.php:248
419
+ msgid "Armenia"
420
+ msgstr "Armenia"
421
+
422
+ #: ../admin/manage-fields.php:249
423
+ msgid "Aruba"
424
+ msgstr "Aruba"
425
+
426
+ #: ../admin/manage-fields.php:250
427
+ msgid "Australia"
428
+ msgstr "Australia"
429
+
430
+ #: ../admin/manage-fields.php:251
431
+ msgid "Austria"
432
+ msgstr "Austria"
433
+
434
+ #: ../admin/manage-fields.php:252
435
+ msgid "Azerbaijan"
436
+ msgstr "Azerbaijan"
437
+
438
+ #: ../admin/manage-fields.php:253
439
+ msgid "Bahamas"
440
+ msgstr "Bahamas"
441
+
442
+ #: ../admin/manage-fields.php:254
443
+ msgid "Bahrain"
444
+ msgstr "Bahrain"
445
+
446
+ #: ../admin/manage-fields.php:255
447
+ msgid "Bangladesh"
448
+ msgstr "Bangladesh"
449
+
450
+ #: ../admin/manage-fields.php:256
451
+ msgid "Barbados"
452
+ msgstr "Barbados"
453
+
454
+ #: ../admin/manage-fields.php:257
455
+ msgid "Belarus"
456
+ msgstr "Belarus"
457
+
458
+ #: ../admin/manage-fields.php:258
459
+ msgid "Belgium"
460
+ msgstr "Belgium"
461
+
462
+ #: ../admin/manage-fields.php:259
463
+ msgid "Belize"
464
+ msgstr "Belize"
465
+
466
+ #: ../admin/manage-fields.php:260
467
+ msgid "Benin"
468
+ msgstr "Benin"
469
+
470
+ #: ../admin/manage-fields.php:261
471
+ msgid "Bermuda"
472
+ msgstr "Bermuda"
473
+
474
+ #: ../admin/manage-fields.php:262
475
+ msgid "Bhutan"
476
+ msgstr "Bhutan"
477
+
478
+ #: ../admin/manage-fields.php:263
479
+ msgid "Bolivia"
480
+ msgstr "Bolivia"
481
+
482
+ #: ../admin/manage-fields.php:264
483
+ msgid "Bonaire, Saint Eustatius and Saba"
484
+ msgstr "Bonaire, Saint Eustatius and Saba"
485
+
486
+ #: ../admin/manage-fields.php:265
487
+ msgid "Bosnia and Herzegovina"
488
+ msgstr "Bosnia and Herzegovina"
489
+
490
+ #: ../admin/manage-fields.php:266
491
+ msgid "Botswana"
492
+ msgstr "Botswana"
493
+
494
+ #: ../admin/manage-fields.php:267
495
+ msgid "Bouvet Island"
496
+ msgstr "Bouvet Island"
497
+
498
+ #: ../admin/manage-fields.php:268
499
+ msgid "Brazil"
500
+ msgstr "Brazil"
501
+
502
+ #: ../admin/manage-fields.php:269
503
+ msgid "British Indian Ocean Territory"
504
+ msgstr "British Indian Ocean Territory"
505
+
506
+ #: ../admin/manage-fields.php:270
507
+ msgid "British Virgin Islands"
508
+ msgstr "British Virgin Islands"
509
+
510
+ #: ../admin/manage-fields.php:271
511
+ msgid "Brunei"
512
+ msgstr "Brunei"
513
+
514
+ #: ../admin/manage-fields.php:272
515
+ msgid "Bulgaria"
516
+ msgstr "Bulgaria"
517
+
518
+ #: ../admin/manage-fields.php:273
519
+ msgid "Burkina Faso"
520
+ msgstr "Burkina Faso"
521
+
522
+ #: ../admin/manage-fields.php:274
523
+ msgid "Burundi"
524
+ msgstr "Burundi"
525
+
526
+ #: ../admin/manage-fields.php:275
527
+ msgid "Cambodia"
528
+ msgstr "Cambodia"
529
+
530
+ #: ../admin/manage-fields.php:276
531
+ msgid "Cameroon"
532
+ msgstr "Cameroon"
533
+
534
+ #: ../admin/manage-fields.php:277
535
+ msgid "Canada"
536
+ msgstr "Canada"
537
+
538
+ #: ../admin/manage-fields.php:278
539
+ msgid "Cape Verde"
540
+ msgstr "Cape Verde"
541
+
542
+ #: ../admin/manage-fields.php:279
543
+ msgid "Cayman Islands"
544
+ msgstr "Cayman Islands"
545
+
546
+ #: ../admin/manage-fields.php:280
547
+ msgid "Central African Republic"
548
+ msgstr "Central African Republic"
549
+
550
+ #: ../admin/manage-fields.php:281
551
+ msgid "Chad"
552
+ msgstr "Chad"
553
+
554
+ #: ../admin/manage-fields.php:282
555
+ msgid "Chile"
556
+ msgstr "Chile"
557
+
558
+ #: ../admin/manage-fields.php:283
559
+ msgid "China"
560
+ msgstr "China"
561
+
562
+ #: ../admin/manage-fields.php:284
563
+ msgid "Christmas Island"
564
+ msgstr "Christmas Island"
565
+
566
+ #: ../admin/manage-fields.php:285
567
+ msgid "Cocos Islands"
568
+ msgstr "Cocos Islands"
569
+
570
+ #: ../admin/manage-fields.php:286
571
+ msgid "Colombia"
572
+ msgstr "Colombia"
573
+
574
+ #: ../admin/manage-fields.php:287
575
+ msgid "Comoros"
576
+ msgstr "Comoros"
577
+
578
+ #: ../admin/manage-fields.php:288
579
+ msgid "Cook Islands"
580
+ msgstr "Cook Islands"
581
+
582
+ #: ../admin/manage-fields.php:289
583
+ msgid "Costa Rica"
584
+ msgstr "Costa Rica"
585
+
586
+ #: ../admin/manage-fields.php:290
587
+ msgid "Croatia"
588
+ msgstr "Croatia"
589
+
590
+ #: ../admin/manage-fields.php:291
591
+ msgid "Cuba"
592
+ msgstr "Cuba"
593
+
594
+ #: ../admin/manage-fields.php:292
595
+ msgid "Curacao"
596
+ msgstr "Curacao"
597
+
598
+ #: ../admin/manage-fields.php:293
599
+ msgid "Cyprus"
600
+ msgstr "Cyprus"
601
+
602
+ #: ../admin/manage-fields.php:294
603
+ msgid "Czech Republic"
604
+ msgstr "Czech Republic"
605
+
606
+ #: ../admin/manage-fields.php:295
607
+ msgid "Democratic Republic of the Congo"
608
+ msgstr "Democratic Republic of the Congo"
609
+
610
+ #: ../admin/manage-fields.php:296
611
+ msgid "Denmark"
612
+ msgstr "Denmark"
613
+
614
+ #: ../admin/manage-fields.php:297
615
+ msgid "Djibouti"
616
+ msgstr "Djibouti"
617
+
618
+ #: ../admin/manage-fields.php:298
619
+ msgid "Dominica"
620
+ msgstr "Dominica"
621
+
622
+ #: ../admin/manage-fields.php:299
623
+ msgid "Dominican Republic"
624
+ msgstr "Dominican Republic"
625
+
626
+ #: ../admin/manage-fields.php:300
627
+ msgid "East Timor"
628
+ msgstr "East Timor"
629
+
630
+ #: ../admin/manage-fields.php:301
631
+ msgid "Ecuador"
632
+ msgstr "Ecuador"
633
+
634
+ #: ../admin/manage-fields.php:302
635
+ msgid "Egypt"
636
+ msgstr "Egypt"
637
+
638
+ #: ../admin/manage-fields.php:303
639
+ msgid "El Salvador"
640
+ msgstr "El Salvador"
641
+
642
+ #: ../admin/manage-fields.php:304
643
+ msgid "Equatorial Guinea"
644
+ msgstr "Equatorial Guinea"
645
+
646
+ #: ../admin/manage-fields.php:305
647
+ msgid "Eritrea"
648
+ msgstr "Eritrea"
649
+
650
+ #: ../admin/manage-fields.php:306
651
+ msgid "Estonia"
652
+ msgstr "Estonia"
653
+
654
+ #: ../admin/manage-fields.php:307
655
+ msgid "Ethiopia"
656
+ msgstr "Ethiopia"
657
+
658
+ #: ../admin/manage-fields.php:308
659
+ msgid "Falkland Islands"
660
+ msgstr "Falkland Islands"
661
+
662
+ #: ../admin/manage-fields.php:309
663
+ msgid "Faroe Islands"
664
+ msgstr "Faroe Islands"
665
+
666
+ #: ../admin/manage-fields.php:310
667
+ msgid "Fiji"
668
+ msgstr "Fiji"
669
+
670
+ #: ../admin/manage-fields.php:311
671
+ msgid "Finland"
672
+ msgstr "Finland"
673
+
674
+ #: ../admin/manage-fields.php:312
675
+ msgid "France"
676
+ msgstr "France"
677
+
678
+ #: ../admin/manage-fields.php:313
679
+ msgid "French Guiana"
680
+ msgstr "French Guiana"
681
+
682
+ #: ../admin/manage-fields.php:314
683
+ msgid "French Polynesia"
684
+ msgstr "French Polynesia"
685
+
686
+ #: ../admin/manage-fields.php:315
687
+ msgid "French Southern Territories"
688
+ msgstr "French Southern Territories"
689
+
690
+ #: ../admin/manage-fields.php:316
691
+ msgid "Gabon"
692
+ msgstr "Gabon"
693
+
694
+ #: ../admin/manage-fields.php:317
695
+ msgid "Gambia"
696
+ msgstr "Gambia"
697
+
698
+ #: ../admin/manage-fields.php:318
699
+ msgid "Georgia"
700
+ msgstr "Georgia"
701
+
702
+ #: ../admin/manage-fields.php:319
703
+ msgid "Germany"
704
+ msgstr "Germany"
705
+
706
+ #: ../admin/manage-fields.php:320
707
+ msgid "Ghana"
708
+ msgstr "Ghana"
709
+
710
+ #: ../admin/manage-fields.php:321
711
+ msgid "Gibraltar"
712
+ msgstr "Gibraltar"
713
+
714
+ #: ../admin/manage-fields.php:322
715
+ msgid "Greece"
716
+ msgstr "Greece"
717
+
718
+ #: ../admin/manage-fields.php:323
719
+ msgid "Greenland"
720
+ msgstr "Greenland"
721
+
722
+ #: ../admin/manage-fields.php:324
723
+ msgid "Grenada"
724
+ msgstr "Grenada"
725
+
726
+ #: ../admin/manage-fields.php:325
727
+ msgid "Guadeloupe"
728
+ msgstr "Guadeloupe"
729
+
730
+ #: ../admin/manage-fields.php:326
731
+ msgid "Guam"
732
+ msgstr "Guam"
733
+
734
+ #: ../admin/manage-fields.php:327
735
+ msgid "Guatemala"
736
+ msgstr "Guatemala"
737
+
738
+ #: ../admin/manage-fields.php:328
739
+ msgid "Guernsey"
740
+ msgstr "Guernsey"
741
+
742
+ #: ../admin/manage-fields.php:329
743
+ msgid "Guinea"
744
+ msgstr "Guinea"
745
+
746
+ #: ../admin/manage-fields.php:330
747
+ msgid "Guinea-Bissau"
748
+ msgstr "Guinea-Bissau"
749
+
750
+ #: ../admin/manage-fields.php:331
751
+ msgid "Guyana"
752
+ msgstr "Guyana"
753
+
754
+ #: ../admin/manage-fields.php:332
755
+ msgid "Haiti"
756
+ msgstr "Haiti"
757
+
758
+ #: ../admin/manage-fields.php:333
759
+ msgid "Heard Island and McDonald Islands"
760
+ msgstr "Heard Island and McDonald Islands"
761
+
762
+ #: ../admin/manage-fields.php:334
763
+ msgid "Honduras"
764
+ msgstr "Honduras"
765
+
766
+ #: ../admin/manage-fields.php:335
767
+ msgid "Hong Kong"
768
+ msgstr "Hong Kong"
769
+
770
+ #: ../admin/manage-fields.php:336
771
+ msgid "Hungary"
772
+ msgstr "Hungary"
773
+
774
+ #: ../admin/manage-fields.php:337
775
+ msgid "Iceland"
776
+ msgstr "Iceland"
777
+
778
+ #: ../admin/manage-fields.php:338
779
+ msgid "India"
780
+ msgstr "India"
781
+
782
+ #: ../admin/manage-fields.php:339
783
+ msgid "Indonesia"
784
+ msgstr "Indonesia"
785
+
786
+ #: ../admin/manage-fields.php:340
787
+ msgid "Iran"
788
+ msgstr "Iran"
789
+
790
+ #: ../admin/manage-fields.php:341
791
+ msgid "Iraq"
792
+ msgstr "Iraq"
793
+
794
+ #: ../admin/manage-fields.php:342
795
+ msgid "Ireland"
796
+ msgstr "Ireland"
797
+
798
+ #: ../admin/manage-fields.php:343
799
+ msgid "Isle of Man"
800
+ msgstr "Isle of Man"
801
+
802
+ #: ../admin/manage-fields.php:344
803
+ msgid "Israel"
804
+ msgstr "Israel"
805
+
806
+ #: ../admin/manage-fields.php:345
807
+ msgid "Italy"
808
+ msgstr "Italy"
809
+
810
+ #: ../admin/manage-fields.php:346
811
+ msgid "Ivory Coast"
812
+ msgstr "Ivory Coast"
813
+
814
+ #: ../admin/manage-fields.php:347
815
+ msgid "Jamaica"
816
+ msgstr "Jamaica"
817
+
818
+ #: ../admin/manage-fields.php:348
819
+ msgid "Japan"
820
+ msgstr "Japan"
821
+
822
+ #: ../admin/manage-fields.php:349
823
+ msgid "Jersey"
824
+ msgstr "Jersey"
825
+
826
+ #: ../admin/manage-fields.php:350
827
+ msgid "Jordan"
828
+ msgstr "Jordan"
829
+
830
+ #: ../admin/manage-fields.php:351
831
+ msgid "Kazakhstan"
832
+ msgstr "Kazakhstan"
833
+
834
+ #: ../admin/manage-fields.php:352
835
+ msgid "Kenya"
836
+ msgstr "Kenya"
837
+
838
+ #: ../admin/manage-fields.php:353
839
+ msgid "Kiribati"
840
+ msgstr "Kiribati"
841
+
842
+ #: ../admin/manage-fields.php:354
843
+ msgid "Kosovo"
844
+ msgstr "Kosovo"
845
+
846
+ #: ../admin/manage-fields.php:355
847
+ msgid "Kuwait"
848
+ msgstr "Kuwait"
849
+
850
+ #: ../admin/manage-fields.php:356
851
+ msgid "Kyrgyzstan"
852
+ msgstr "Kyrgyzstan"
853
+
854
+ #: ../admin/manage-fields.php:357
855
+ msgid "Laos"
856
+ msgstr "Laos"
857
+
858
+ #: ../admin/manage-fields.php:358
859
+ msgid "Latvia"
860
+ msgstr "Latvia"
861
+
862
+ #: ../admin/manage-fields.php:359
863
+ msgid "Lebanon"
864
+ msgstr "Lebanon"
865
+
866
+ #: ../admin/manage-fields.php:360
867
+ msgid "Lesotho"
868
+ msgstr "Lesotho"
869
+
870
+ #: ../admin/manage-fields.php:361
871
+ msgid "Liberia"
872
+ msgstr "Liberia"
873
+
874
+ #: ../admin/manage-fields.php:362
875
+ msgid "Libya"
876
+ msgstr "Libya"
877
+
878
+ #: ../admin/manage-fields.php:363
879
+ msgid "Liechtenstein"
880
+ msgstr "Liechtenstein"
881
+
882
+ #: ../admin/manage-fields.php:364
883
+ msgid "Lithuania"
884
+ msgstr "Lithuania"
885
+
886
+ #: ../admin/manage-fields.php:365
887
+ msgid "Luxembourg"
888
+ msgstr "Luxembourg"
889
+
890
+ #: ../admin/manage-fields.php:366
891
+ msgid "Macao"
892
+ msgstr "Macao"
893
+
894
+ #: ../admin/manage-fields.php:367
895
+ msgid "Macedonia"
896
+ msgstr "Macedonia"
897
+
898
+ #: ../admin/manage-fields.php:368
899
+ msgid "Madagascar"
900
+ msgstr "Madagascar"
901
+
902
+ #: ../admin/manage-fields.php:369
903
+ msgid "Malawi"
904
+ msgstr "Malawi"
905
+
906
+ #: ../admin/manage-fields.php:370
907
+ msgid "Malaysia"
908
+ msgstr "Malaysia"
909
+
910
+ #: ../admin/manage-fields.php:371
911
+ msgid "Maldives"
912
+ msgstr "Maldives"
913
+
914
+ #: ../admin/manage-fields.php:372
915
+ msgid "Mali"
916
+ msgstr "Mali"
917
+
918
+ #: ../admin/manage-fields.php:373
919
+ msgid "Malta"
920
+ msgstr "Malta"
921
+
922
+ #: ../admin/manage-fields.php:374
923
+ msgid "Marshall Islands"
924
+ msgstr "Marshall Islands"
925
+
926
+ #: ../admin/manage-fields.php:375
927
+ msgid "Martinique"
928
+ msgstr "Martinique"
929
+
930
+ #: ../admin/manage-fields.php:376
931
+ msgid "Mauritania"
932
+ msgstr "Mauritania"
933
+
934
+ #: ../admin/manage-fields.php:377
935
+ msgid "Mauritius"
936
+ msgstr "Mauritius"
937
+
938
+ #: ../admin/manage-fields.php:378
939
+ msgid "Mayotte"
940
+ msgstr "Mayotte"
941
+
942
+ #: ../admin/manage-fields.php:379
943
+ msgid "Mexico"
944
+ msgstr "Mexico"
945
+
946
+ #: ../admin/manage-fields.php:380
947
+ msgid "Micronesia"
948
+ msgstr "Micronesia"
949
+
950
+ #: ../admin/manage-fields.php:381
951
+ msgid "Moldova"
952
+ msgstr "Moldova"
953
+
954
+ #: ../admin/manage-fields.php:382
955
+ msgid "Monaco"
956
+ msgstr "Monaco"
957
+
958
+ #: ../admin/manage-fields.php:383
959
+ msgid "Mongolia"
960
+ msgstr "Mongolia"
961
+
962
+ #: ../admin/manage-fields.php:384
963
+ msgid "Montenegro"
964
+ msgstr "Montenegro"
965
+
966
+ #: ../admin/manage-fields.php:385
967
+ msgid "Montserrat"
968
+ msgstr "Montserrat"
969
+
970
+ #: ../admin/manage-fields.php:386
971
+ msgid "Morocco"
972
+ msgstr "Morocco"
973
+
974
+ #: ../admin/manage-fields.php:387
975
+ msgid "Mozambique"
976
+ msgstr "Mozambique"
977
+
978
+ #: ../admin/manage-fields.php:388
979
+ msgid "Myanmar"
980
+ msgstr "Myanmar"
981
+
982
+ #: ../admin/manage-fields.php:389
983
+ msgid "Namibia"
984
+ msgstr "Namibia"
985
+
986
+ #: ../admin/manage-fields.php:390
987
+ msgid "Nauru"
988
+ msgstr "Nauru"
989
+
990
+ #: ../admin/manage-fields.php:391
991
+ msgid "Nepal"
992
+ msgstr "Nepal"
993
+
994
+ #: ../admin/manage-fields.php:392
995
+ msgid "Netherlands"
996
+ msgstr "Netherlands"
997
+
998
+ #: ../admin/manage-fields.php:393
999
+ msgid "New Caledonia"
1000
+ msgstr "New Caledonia"
1001
+
1002
+ #: ../admin/manage-fields.php:394
1003
+ msgid "New Zealand"
1004
+ msgstr "New Zealand"
1005
+
1006
+ #: ../admin/manage-fields.php:395
1007
+ msgid "Nicaragua"
1008
+ msgstr "Nicaragua"
1009
+
1010
+ #: ../admin/manage-fields.php:396
1011
+ msgid "Niger"
1012
+ msgstr "Niger"
1013
+
1014
+ #: ../admin/manage-fields.php:397
1015
+ msgid "Nigeria"
1016
+ msgstr "Nigeria"
1017
+
1018
+ #: ../admin/manage-fields.php:398
1019
+ msgid "Niue"
1020
+ msgstr "Niue"
1021
+
1022
+ #: ../admin/manage-fields.php:399
1023
+ msgid "Norfolk Island"
1024
+ msgstr "Norfolk Island"
1025
+
1026
+ #: ../admin/manage-fields.php:400
1027
+ msgid "North Korea"
1028
+ msgstr "North Korea"
1029
+
1030
+ #: ../admin/manage-fields.php:401
1031
+ msgid "Northern Mariana Islands"
1032
+ msgstr "Northern Mariana Islands"
1033
+
1034
+ #: ../admin/manage-fields.php:402
1035
+ msgid "Norway"
1036
+ msgstr "Norway"
1037
+
1038
+ #: ../admin/manage-fields.php:403
1039
+ msgid "Oman"
1040
+ msgstr "Oman"
1041
+
1042
+ #: ../admin/manage-fields.php:404
1043
+ msgid "Pakistan"
1044
+ msgstr "Pakistan"
1045
+
1046
+ #: ../admin/manage-fields.php:405
1047
+ msgid "Palau"
1048
+ msgstr "Palau"
1049
+
1050
+ #: ../admin/manage-fields.php:406
1051
+ msgid "Palestinian Territory"
1052
+ msgstr "Palestinian Territory"
1053
+
1054
+ #: ../admin/manage-fields.php:407
1055
+ msgid "Panama"
1056
+ msgstr "Panama"
1057
+
1058
+ #: ../admin/manage-fields.php:408
1059
+ msgid "Papua New Guinea"
1060
+ msgstr "Papua New Guinea"
1061
+
1062
+ #: ../admin/manage-fields.php:409
1063
+ msgid "Paraguay"
1064
+ msgstr "Paraguay"
1065
+
1066
+ #: ../admin/manage-fields.php:410
1067
+ msgid "Peru"
1068
+ msgstr "Peru"
1069
+
1070
+ #: ../admin/manage-fields.php:411
1071
+ msgid "Philippines"
1072
+ msgstr "Philippines"
1073
+
1074
+ #: ../admin/manage-fields.php:412
1075
+ msgid "Pitcairn"
1076
+ msgstr "Pitcairn"
1077
+
1078
+ #: ../admin/manage-fields.php:413
1079
+ msgid "Poland"
1080
+ msgstr "Poland"
1081
+
1082
+ #: ../admin/manage-fields.php:414
1083
+ msgid "Portugal"
1084
+ msgstr "Portugal"
1085
+
1086
+ #: ../admin/manage-fields.php:415
1087
+ msgid "Puerto Rico"
1088
+ msgstr "Puerto Rico"
1089
+
1090
+ #: ../admin/manage-fields.php:416
1091
+ msgid "Qatar"
1092
+ msgstr "Qatar"
1093
+
1094
+ #: ../admin/manage-fields.php:417
1095
+ msgid "Republic of the Congo"
1096
+ msgstr "Republic of the Congo"
1097
+
1098
+ #: ../admin/manage-fields.php:418
1099
+ msgid "Reunion"
1100
+ msgstr "Reunion"
1101
+
1102
+ #: ../admin/manage-fields.php:419
1103
+ msgid "Romania"
1104
+ msgstr "Romania"
1105
+
1106
+ #: ../admin/manage-fields.php:420
1107
+ msgid "Russia"
1108
+ msgstr "Russia"
1109
+
1110
+ #: ../admin/manage-fields.php:421
1111
+ msgid "Rwanda"
1112
+ msgstr "Rwanda"
1113
+
1114
+ #: ../admin/manage-fields.php:422
1115
+ msgid "Saint Barthelemy"
1116
+ msgstr "Saint Barthelemy"
1117
+
1118
+ #: ../admin/manage-fields.php:423
1119
+ msgid "Saint Helena"
1120
+ msgstr "Saint Helena"
1121
+
1122
+ #: ../admin/manage-fields.php:424
1123
+ msgid "Saint Kitts and Nevis"
1124
+ msgstr "Saint Kitts and Nevis"
1125
+
1126
+ #: ../admin/manage-fields.php:425
1127
+ msgid "Saint Lucia"
1128
+ msgstr "Saint Lucia"
1129
+
1130
+ #: ../admin/manage-fields.php:426
1131
+ msgid "Saint Martin"
1132
+ msgstr "Saint Martin"
1133
+
1134
+ #: ../admin/manage-fields.php:427
1135
+ msgid "Saint Pierre and Miquelon"
1136
+ msgstr "Saint Pierre and Miquelon"
1137
+
1138
+ #: ../admin/manage-fields.php:428
1139
+ msgid "Saint Vincent and the Grenadines"
1140
+ msgstr "Saint Vincent and the Grenadines"
1141
+
1142
+ #: ../admin/manage-fields.php:429
1143
+ msgid "Samoa"
1144
+ msgstr "Samoa"
1145
+
1146
+ #: ../admin/manage-fields.php:430
1147
+ msgid "San Marino"
1148
+ msgstr "San Marino"
1149
+
1150
+ #: ../admin/manage-fields.php:431
1151
+ msgid "Sao Tome and Principe"
1152
+ msgstr "Sao Tome and Principe"
1153
+
1154
+ #: ../admin/manage-fields.php:432
1155
+ msgid "Saudi Arabia"
1156
+ msgstr "Saudi Arabia"
1157
+
1158
+ #: ../admin/manage-fields.php:433
1159
+ msgid "Senegal"
1160
+ msgstr "Senegal"
1161
+
1162
+ #: ../admin/manage-fields.php:434
1163
+ msgid "Serbia"
1164
+ msgstr "Serbia"
1165
+
1166
+ #: ../admin/manage-fields.php:435
1167
+ msgid "Seychelles"
1168
+ msgstr "Seychelles"
1169
+
1170
+ #: ../admin/manage-fields.php:436
1171
+ msgid "Sierra Leone"
1172
+ msgstr "Sierra Leone"
1173
+
1174
+ #: ../admin/manage-fields.php:437
1175
+ msgid "Singapore"
1176
+ msgstr "Singapore"
1177
+
1178
+ #: ../admin/manage-fields.php:438
1179
+ msgid "Sint Maarten"
1180
+ msgstr "Sint Maarten"
1181
+
1182
+ #: ../admin/manage-fields.php:439
1183
+ msgid "Slovakia"
1184
+ msgstr "Slovakia"
1185
+
1186
+ #: ../admin/manage-fields.php:440
1187
+ msgid "Slovenia"
1188
+ msgstr "Slovenia"
1189
+
1190
+ #: ../admin/manage-fields.php:441
1191
+ msgid "Solomon Islands"
1192
+ msgstr "Solomon Islands"
1193
+
1194
+ #: ../admin/manage-fields.php:442
1195
+ msgid "Somalia"
1196
+ msgstr "Somalia"
1197
+
1198
+ #: ../admin/manage-fields.php:443
1199
+ msgid "South Africa"
1200
+ msgstr "South Africa"
1201
+
1202
+ #: ../admin/manage-fields.php:444
1203
+ msgid "South Georgia and the South Sandwich Islands"
1204
+ msgstr "South Georgia and the South Sandwich Islands"
1205
+
1206
+ #: ../admin/manage-fields.php:445
1207
+ msgid "South Korea"
1208
+ msgstr "South Korea"
1209
+
1210
+ #: ../admin/manage-fields.php:446
1211
+ msgid "South Sudan"
1212
+ msgstr "South Sudan"
1213
+
1214
+ #: ../admin/manage-fields.php:447
1215
+ msgid "Spain"
1216
+ msgstr "Spain"
1217
+
1218
+ #: ../admin/manage-fields.php:448
1219
+ msgid "Sri Lanka"
1220
+ msgstr "Sri Lanka"
1221
+
1222
+ #: ../admin/manage-fields.php:449
1223
+ msgid "Sudan"
1224
+ msgstr "Sudan"
1225
+
1226
+ #: ../admin/manage-fields.php:450
1227
+ msgid "Suriname"
1228
+ msgstr "Suriname"
1229
+
1230
+ #: ../admin/manage-fields.php:451
1231
+ msgid "Svalbard and Jan Mayen"
1232
+ msgstr "Svalbard and Jan Mayen"
1233
+
1234
+ #: ../admin/manage-fields.php:452
1235
+ msgid "Swaziland"
1236
+ msgstr "Swaziland"
1237
+
1238
+ #: ../admin/manage-fields.php:453
1239
+ msgid "Sweden"
1240
+ msgstr "Sweden"
1241
+
1242
+ #: ../admin/manage-fields.php:454
1243
+ msgid "Switzerland"
1244
+ msgstr "Switzerland"
1245
+
1246
+ #: ../admin/manage-fields.php:455
1247
+ msgid "Syria"
1248
+ msgstr "Syria"
1249
+
1250
+ #: ../admin/manage-fields.php:456
1251
+ msgid "Taiwan"
1252
+ msgstr "Taiwan"
1253
+
1254
+ #: ../admin/manage-fields.php:457
1255
+ msgid "Tajikistan"
1256
+ msgstr "Tajikistan"
1257
+
1258
+ #: ../admin/manage-fields.php:458
1259
+ msgid "Tanzania"
1260
+ msgstr "Tanzania"
1261
+
1262
+ #: ../admin/manage-fields.php:459
1263
+ msgid "Thailand"
1264
+ msgstr "Thailand"
1265
+
1266
+ #: ../admin/manage-fields.php:460
1267
+ msgid "Togo"
1268
+ msgstr "Togo"
1269
+
1270
+ #: ../admin/manage-fields.php:461
1271
+ msgid "Tokelau"
1272
+ msgstr "Tokelau"
1273
+
1274
+ #: ../admin/manage-fields.php:462
1275
+ msgid "Tonga"
1276
+ msgstr "Tonga"
1277
+
1278
+ #: ../admin/manage-fields.php:463
1279
+ msgid "Trinidad and Tobago"
1280
+ msgstr "Trinidad and Tobago"
1281
+
1282
+ #: ../admin/manage-fields.php:464
1283
+ msgid "Tunisia"
1284
+ msgstr "Tunisia"
1285
+
1286
+ #: ../admin/manage-fields.php:465
1287
+ msgid "Turkey"
1288
+ msgstr "Turkey"
1289
+
1290
+ #: ../admin/manage-fields.php:466
1291
+ msgid "Turkmenistan"
1292
+ msgstr "Turkmenistan"
1293
+
1294
+ #: ../admin/manage-fields.php:467
1295
+ msgid "Turks and Caicos Islands"
1296
+ msgstr "Turks and Caicos Islands"
1297
+
1298
+ #: ../admin/manage-fields.php:468
1299
+ msgid "Tuvalu"
1300
+ msgstr "Tuvalu"
1301
+
1302
+ #: ../admin/manage-fields.php:469
1303
+ msgid "U.S. Virgin Islands"
1304
+ msgstr "U.S. Virgin Islands"
1305
+
1306
+ #: ../admin/manage-fields.php:470
1307
+ msgid "Uganda"
1308
+ msgstr "Uganda"
1309
+
1310
+ #: ../admin/manage-fields.php:471
1311
+ msgid "Ukraine"
1312
+ msgstr "Ukraine"
1313
+
1314
+ #: ../admin/manage-fields.php:472
1315
+ msgid "United Arab Emirates"
1316
+ msgstr "United Arab Emirates"
1317
+
1318
+ #: ../admin/manage-fields.php:473
1319
+ msgid "United Kingdom"
1320
+ msgstr "United Kingdom"
1321
+
1322
+ #: ../admin/manage-fields.php:474
1323
+ msgid "United States"
1324
+ msgstr "United States"
1325
+
1326
+ #: ../admin/manage-fields.php:475
1327
+ msgid "United States Minor Outlying Islands"
1328
+ msgstr "United States Minor Outlying Islands"
1329
+
1330
+ #: ../admin/manage-fields.php:476
1331
+ msgid "Uruguay"
1332
+ msgstr "Uruguay"
1333
+
1334
+ #: ../admin/manage-fields.php:477
1335
+ msgid "Uzbekistan"
1336
+ msgstr "Uzbekistan"
1337
+
1338
+ #: ../admin/manage-fields.php:478
1339
+ msgid "Vanuatu"
1340
+ msgstr "Vanuatu"
1341
+
1342
+ #: ../admin/manage-fields.php:479
1343
+ msgid "Vatican"
1344
+ msgstr "Vatican"
1345
+
1346
+ #: ../admin/manage-fields.php:480
1347
+ msgid "Venezuela"
1348
+ msgstr "Venezuela"
1349
+
1350
+ #: ../admin/manage-fields.php:481
1351
+ msgid "Vietnam"
1352
+ msgstr "Vietnam"
1353
+
1354
+ #: ../admin/manage-fields.php:482
1355
+ msgid "Wallis and Futuna"
1356
+ msgstr "Wallis and Futuna"
1357
+
1358
+ #: ../admin/manage-fields.php:483
1359
+ msgid "Western Sahara"
1360
+ msgstr "Western Sahara"
1361
+
1362
+ #: ../admin/manage-fields.php:484
1363
+ msgid "Yemen"
1364
+ msgstr "Yemen"
1365
+
1366
+ #: ../admin/manage-fields.php:485
1367
+ msgid "Zambia"
1368
+ msgstr "Zambia"
1369
+
1370
+ #: ../admin/manage-fields.php:486
1371
+ msgid "Zimbabwe"
1372
+ msgstr "Zimbabwe"
1373
+
1374
+ #: ../admin/manage-fields.php:843
1375
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
1376
+ msgstr ""
1377
+
1378
+ #: ../assets/misc/plugin-compatibilities.php:241
1379
+ msgid "Your account has to be confirmed by an administrator before you can log in."
1380
+ msgstr ""
1381
+
1382
+ #: ../features/admin-approval/admin-approval.php:203
1383
+ msgid "Your account has been successfully created!"
1384
+ msgstr ""
1385
+
1386
+ #: ../features/functions.php:620
1387
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:374
1388
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:379
1389
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1390
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:458
1391
+ msgid "Please enter a (valid) reCAPTCHA value"
1392
+ msgstr ""
1393
+
1394
+ #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
1395
+ msgid "Click the BACK button on your browser, and try again."
1396
+ msgstr ""
1397
+
1398
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:78
1399
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:87
1400
+ msgid "Sorry, you cannot upload this file type for this field."
1401
+ msgstr ""
1402
+
1403
+ #: ../front-end/extra-fields/upload/upload_helper_functions.php:94
1404
+ msgid "An error occurred, please try again later."
1405
+ msgstr ""
1406
+
1407
+ #: ../modules/user-listing/userlisting.php:253
1408
+ msgid "More"
1409
+ msgstr ""
1410
+
1411
+ #: ../modules/user-listing/userlisting.php:338
1412
+ msgid "You do not have permission to view this user list."
1413
+ msgstr ""
1414
+
1415
+ #: ../modules/user-listing/userlisting.php:351
1416
+ msgid "You do not have the required user role to view this user list."
1417
+ msgstr ""
1418
+
1419
+ #: ../modules/user-listing/userlisting.php:1287
1420
+ msgid "Ascending"
1421
+ msgstr ""
1422
+
1423
+ #: ../modules/user-listing/userlisting.php:1288
1424
+ msgid "Descending"
1425
+ msgstr ""
1426
+
1427
+ #: ../admin/add-ons.php:144 ../admin/add-ons.php:251
1428
+ #: ../admin/pms-cross-promotion.php:134 ../admin/pms-cross-promotion.php:213
1429
+ msgid "Download Now"
1430
+ msgstr "Téléchargez maintenant"
1431
+
1432
+ #: ../admin/admin-functions.php:197
1433
+ msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
1434
+ msgstr "Si vous aimez utiliser <strong> %1$s </strong> veuillez <a href=\"%2$s\" target=\"_blank\"> nous évaluer sur WordPress.org</a>. Plus d'utilisateurs heureux résulte en plus de fonctionnalités, moins de bogues et un meilleur support pour tous."
1435
+
1436
+ #: ../admin/manage-fields.php:68
1437
+ msgid "Choose one of the supported field types"
1438
+ msgstr "Choisir un des champs supporté"
1439
+
1440
+ #: ../admin/manage-fields.php:70
1441
+ msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
1442
+ msgstr "Des champs additionnels sont disponibles dans <a href=\"%s\">les versions Hobbyist et PRO </a>."
1443
+
1444
+ #: ../admin/manage-fields.php:107
1445
+ msgid "Site Key"
1446
+ msgstr "Clé pour site"
1447
+
1448
+ #: ../admin/manage-fields.php:107
1449
+ msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1450
+ msgstr "La clé du site donné par Google est <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1451
+
1452
+ #: ../admin/manage-fields.php:108
1453
+ msgid "Secret Key"
1454
+ msgstr "Clé secrète"
1455
+
1456
+ #: ../admin/manage-fields.php:108
1457
+ msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1458
+ msgstr "La clé secrète de Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
1459
+
1460
+ #: ../admin/manage-fields.php:660
1461
+ msgid "You must enter the site key\n"
1462
+ msgstr "Vous devez saisir la clé du site.\n"
1463
+
1464
+ #: ../admin/manage-fields.php:662
1465
+ msgid "You must enter the secret key\n"
1466
+ msgstr "Vous devez entrer la clé secrète\n"
1467
+
1468
+ #: ../admin/add-ons.php:10 ../admin/add-ons.php:32
1469
+ msgid "Add-Ons"
1470
+ msgstr "Add-ons"
1471
+
1472
+ #: ../admin/add-ons.php:34 ../admin/add-ons.php:124 ../admin/add-ons.php:231
1473
+ #: ../admin/pms-cross-promotion.php:78 ../admin/pms-cross-promotion.php:114
1474
+ #: ../admin/pms-cross-promotion.php:193
1475
+ msgid "Activate"
1476
+ msgstr "Activer"
1477
+
1478
+ #: ../admin/add-ons.php:36 ../admin/pms-cross-promotion.php:80
1479
+ msgid "Downloading and installing..."
1480
+ msgstr "Téléchargement et Installation en cours…"
1481
+
1482
+ #: ../admin/add-ons.php:37 ../admin/pms-cross-promotion.php:81
1483
+ msgid "Installation complete"
1484
+ msgstr "Installation terminée"
1485
+
1486
+ #: ../admin/add-ons.php:39
1487
+ msgid "Add-On is Active"
1488
+ msgstr "Add-On est active."
1489
+
1490
+ #: ../admin/add-ons.php:40
1491
+ msgid "Add-On has been activated"
1492
+ msgstr "Add-On a été activé."
1493
+
1494
+ #: ../admin/add-ons.php:41 ../admin/pms-cross-promotion.php:85
1495
+ msgid "Retry Install"
1496
+ msgstr "Ré-essayer l'installation"
1497
+
1498
+ #: ../admin/add-ons.php:43 ../admin/add-ons.php:135
1499
+ msgid "Add-On is <strong>active</strong>"
1500
+ msgstr "Add-On est <strong>active</strong>. "
1501
+
1502
+ #: ../admin/add-ons.php:44 ../admin/add-ons.php:133
1503
+ msgid "Add-On is <strong>inactive</strong>"
1504
+ msgstr "Add-On est <strong>inactive</strong>"
1505
+
1506
+ #: ../admin/add-ons.php:46 ../admin/add-ons.php:128 ../admin/add-ons.php:235
1507
+ #: ../admin/pms-cross-promotion.php:90 ../admin/pms-cross-promotion.php:118
1508
+ #: ../admin/pms-cross-promotion.php:197
1509
+ msgid "Deactivate"
1510
+ msgstr "Désactiver"
1511
+
1512
+ #: ../admin/add-ons.php:47
1513
+ msgid "Add-On has been deactivated."
1514
+ msgstr "Les Add-On ont été désactivés"
1515
+
1516
+ #: ../admin/add-ons.php:59
1517
+ msgid "Something went wrong, we could not connect to the server. Please try again later."
1518
+ msgstr "Problème de connection au serveur. Merci de réessayer plus tard."
1519
+
1520
+ #: ../admin/add-ons.php:144 ../admin/add-ons.php:147
1521
+ msgid "Buy Now"
1522
+ msgstr "Acheter maintenant"
1523
+
1524
+ #: ../admin/add-ons.php:147 ../admin/add-ons.php:254
1525
+ #: ../admin/pms-cross-promotion.php:137 ../admin/pms-cross-promotion.php:216
1526
+ msgid "Install Now"
1527
+ msgstr "Installer maintenant"
1528
+
1529
+ #: ../admin/add-ons.php:153 ../admin/add-ons.php:258
1530
+ #: ../admin/pms-cross-promotion.php:141 ../admin/pms-cross-promotion.php:220
1531
+ msgid "Compatible with your version of Profile Builder."
1532
+ msgstr "Compatible avec votre version de Profile Builder"
1533
+
1534
+ #: ../admin/add-ons.php:162
1535
+ msgid "Upgrade Profile Builder"
1536
+ msgstr "Mettre à jour Profile Builder"
1537
+
1538
+ #: ../admin/add-ons.php:163
1539
+ msgid "Not compatible with Profile Builder"
1540
+ msgstr "Non compatible avec Profile Builder."
1541
+
1542
+ #: ../admin/add-ons.php:171
1543
+ msgid "Not compatible with your version of Profile Builder."
1544
+ msgstr "Incompatible avec votre version de Profile Builder"
1545
+
1546
+ #: ../admin/add-ons.php:172
1547
+ msgid "Minimum required Profile Builder version:"
1548
+ msgstr "Version minimum de Profil Builder requise :"
1549
+
1550
+ #: ../admin/add-ons.php:177
1551
+ msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1552
+ msgstr "Impossible d'installer l'add-on. Réessayer ou<a href=\"%s\" target=\"_blank\">installer le manuellement</a>."
1553
+
1554
+ #: ../front-end/default-fields/email/email.php:48
1555
+ msgid "You must enter a valid email address."
1556
+ msgstr "Vous devez entrer une adresse mail valide."
1557
+
1558
+ #: ../front-end/default-fields/username/username.php:53
1559
+ #: ../front-end/default-fields/username/username.php:60
1560
+ msgid "This username is invalid because it uses illegal characters."
1561
+ msgstr "Ce nom d'utilisateur est invalide parce qu'elle utilise des caractères illégaux."
1562
+
1563
+ #: ../front-end/default-fields/username/username.php:53
1564
+ #: ../front-end/default-fields/username/username.php:60
1565
+ msgid "Please enter a valid username."
1566
+ msgstr "Merci d'entrer un nom d'utilisateur valide."
1567
+
1568
+ #: ../front-end/extra-fields/user-role/user-role.php:67
1569
+ #: ../front-end/extra-fields/user-role/user-role.php:80
1570
+ msgid "Only administrators can see this field on edit profile forms."
1571
+ msgstr "Seuls les administrateurs peuvent voir ce domaine sur les formes modifier de profil."
1572
+
1573
+ #: ../front-end/extra-fields/user-role/user-role.php:76
1574
+ msgid "As an administrator you cannot change your role."
1575
+ msgstr "Comme administrateur, vous ne pouvez pas changer votre rôle."
1576
+
1577
+ #: ../modules/email-customizer/admin-email-customizer.php:117
1578
+ msgid ""
1579
+ "\n"
1580
+ "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
1581
+ "<p>His/her new password is: {{password}}</p>\n"
1582
+ msgstr ""
1583
+ "<p>{{username}} demandé un changement de mot de passe via la fonction de réinitialisation de mot de passe.</p>\n"
1584
+ "<p>Son nouveau mot de passe est: {{password}}</p>\n"
1585
+
1586
+ #: ../modules/email-customizer/admin-email-customizer.php:141
1587
+ msgid "Admin Notification for User Password Reset"
1588
+ msgstr ""
1589
+
1590
+ #: ../modules/email-customizer/email-customizer.php:42
1591
+ msgid "Reset Key"
1592
+ msgstr ""
1593
+
1594
+ #: ../modules/email-customizer/email-customizer.php:43
1595
+ msgid "Reset Url"
1596
+ msgstr ""
1597
+
1598
+ #: ../modules/email-customizer/email-customizer.php:44
1599
+ msgid "Reset Link"
1600
+ msgstr ""
1601
+
1602
+ #: ../modules/email-customizer/user-email-customizer.php:204
1603
+ msgid ""
1604
+ "\n"
1605
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
1606
+ "Username: {{username}}</p>\n"
1607
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
1608
+ "<p>To reset your password, visit the following address:<br/>\n"
1609
+ "{{{reset_link}}}</p>\n"
1610
+ msgstr ""
1611
+
1612
+ #: ../modules/email-customizer/user-email-customizer.php:218
1613
+ msgid "[{{site_name}}] Password Reset"
1614
+ msgstr ""
1615
+
1616
+ #: ../modules/email-customizer/user-email-customizer.php:229
1617
+ msgid "Password Reset Email"
1618
+ msgstr ""
1619
+
1620
+ #: ../modules/email-customizer/user-email-customizer.php:235
1621
+ msgid ""
1622
+ "\n"
1623
+ "<p>You have successfully reset your password to: {{password}}</p>\n"
1624
+ msgstr ""
1625
+
1626
+ #: ../modules/email-customizer/user-email-customizer.php:245
1627
+ msgid "[{{site_name}}] Password Reset Successfully"
1628
+ msgstr ""
1629
+
1630
+ #: ../modules/email-customizer/user-email-customizer.php:256
1631
+ msgid "Password Reset Success Email"
1632
+ msgstr ""
1633
+
1634
+ #: ../modules/user-listing/userlisting.php:134
1635
+ msgid "User Nicename"
1636
+ msgstr ""
1637
+
1638
+ #: ../modules/user-listing/userlisting.php:442
1639
+ msgid "None"
1640
+ msgstr ""
1641
+
1642
+ #: ../admin/admin-functions.php:128
1643
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1644
+ msgstr ""
1645
+
1646
+ #: ../admin/admin-functions.php:145
1647
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
1648
+ msgstr ""
1649
+
1650
+ #: ../admin/general-settings.php:163
1651
+ msgid "Username and Email"
1652
+ msgstr ""
1653
+
1654
+ #: ../admin/general-settings.php:168
1655
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
1656
+ msgstr ""
1657
+
1658
+ #: ../admin/general-settings.php:169
1659
+ msgid "\"Username\" - users can Log In only with Username."
1660
+ msgstr ""
1661
+
1662
+ #: ../admin/general-settings.php:170
1663
+ msgid "\"Email\" - users can Log In only with Email."
1664
+ msgstr ""
1665
+
1666
+ #: ../admin/manage-fields.php:100
1667
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
1668
+ msgstr ""
1669
+
1670
+ #: ../admin/manage-fields.php:101
1671
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
1672
+ msgstr ""
1673
+
1674
+ #: ../admin/manage-fields.php:111
1675
+ msgid "User Roles"
1676
+ msgstr ""
1677
+
1678
+ #: ../admin/manage-fields.php:111
1679
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
1680
+ msgstr ""
1681
+
1682
+ #: ../admin/manage-fields.php:112
1683
+ msgid "User Roles Order"
1684
+ msgstr ""
1685
+
1686
+ #: ../admin/manage-fields.php:112
1687
+ msgid "Save the user role order from the user roles checkboxes"
1688
+ msgstr ""
1689
+
1690
+ #: ../admin/manage-fields.php:752
1691
+ msgid "Please select at least one user role\n"
1692
+ msgstr ""
1693
+
1694
+ #: ../admin/register-version.php:22
1695
+ msgid "Profile Builder Register"
1696
+ msgstr ""
1697
+
1698
+ #: ../admin/register-version.php:81
1699
+ msgid "The serial number is about to expire soon!"
1700
+ msgstr ""
1701
+
1702
+ #: ../admin/register-version.php:81
1703
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
1704
+ msgstr ""
1705
+
1706
+ #: ../admin/register-version.php:83
1707
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
1708
+ msgstr ""
1709
+
1710
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
1711
+ msgid "Add Entry"
1712
+ msgstr ""
1713
+
1714
+ #: ../features/email-confirmation/class-email-confirmation.php:91
1715
+ msgid "show"
1716
+ msgstr ""
1717
+
1718
+ #: ../features/functions.php:672
1719
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
1720
+ msgstr ""
1721
+
1722
+ #: ../front-end/class-formbuilder.php:562
1723
+ msgid "User to edit:"
1724
+ msgstr ""
1725
+
1726
+ #: ../front-end/default-fields/password/password.php:46
1727
+ #: ../front-end/recover.php:245
1728
+ msgid "The password must have the minimum length of %s characters"
1729
+ msgstr ""
1730
+
1731
+ #: ../front-end/default-fields/password/password.php:50
1732
+ #: ../front-end/recover.php:249
1733
+ msgid "The password must have a minimum strength of %s"
1734
+ msgstr ""
1735
+
1736
+ #: ../front-end/extra-fields/user-role/user-role.php:112
1737
+ msgid "You cannot register this user role"
1738
+ msgstr ""
1739
+
1740
+ #: ../front-end/login.php:108
1741
+ msgid "username or email"
1742
+ msgstr ""
1743
+
1744
+ #: ../front-end/login.php:177
1745
+ msgid "Username or Email"
1746
+ msgstr ""
1747
+
1748
+ #: ../front-end/logout.php:15
1749
+ msgid "You are currently logged in as %s. "
1750
+ msgstr ""
1751
+
1752
+ #: ../front-end/logout.php:15
1753
+ msgid "Log out &raquo;"
1754
+ msgstr ""
1755
+
1756
+ #: ../modules/custom-redirects/custom_redirects_admin.php:92
1757
+ #: ../modules/email-customizer/email-customizer.php:31
1758
+ msgid "User Role"
1759
+ msgstr ""
1760
+
1761
+ #: ../modules/user-listing/userlisting.php:1207
1762
+ msgid "View all extra shortcode parameters"
1763
+ msgstr ""
1764
+
1765
+ #: ../modules/user-listing/userlisting.php:1221
1766
+ msgid "displays only the users that you specified the user_id for"
1767
+ msgstr ""
1768
+
1769
+ #: ../modules/user-listing/userlisting.php:1227
1770
+ msgid "displays all users except the ones you specified the user_id for"
1771
+ msgstr ""
1772
+
1773
+ #: ../features/functions.php:539
1774
+ msgid "Minimum length of %d characters"
1775
+ msgstr "Longueur minimale de %d caractères"
1776
+
1777
+ #: ../front-end/class-formbuilder.php:142
1778
+ #: ../front-end/class-formbuilder.php:145
1779
+ msgid "This message is only visible by administrators"
1780
+ msgstr "Ce message n'est visible que par les administrateurs."
1781
+
1782
+ #: ../modules/user-listing/userlisting.php:364
1783
+ msgid "User not found"
1784
+ msgstr "Utilisateur introuvable."
1785
+
1786
+ #: ../modules/email-customizer/admin-email-customizer.php:38
1787
+ #: ../modules/email-customizer/user-email-customizer.php:38
1788
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
1789
+ msgstr "Tags valides {{reply_to}} et {{site_name}}"
1790
+
1791
+ #: ../admin/admin-bar.php:48
1792
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
1793
+ msgstr "Choisir quels rôles-utilisateurs peuvent voir la barre administration sur l'interface client du site web."
1794
+
1795
+ #: ../admin/manage-fields.php:105
1796
+ 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"
1797
+ 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 ni d'apostrophes."
1798
+
1799
+ #: ../admin/manage-fields.php:689
1800
+ msgid "The meta-name cannot be empty\n"
1801
+ msgstr "Le méta-nom ne peut pas être vide\n"
1802
+
1803
+ #: ../admin/register-version.php:69
1804
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
1805
+ 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."
1806
+
1807
+ #: ../admin/register-version.php:243
1808
+ 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>"
1809
+ msgstr "<p>Votre numéro de série de <strong>Profile Builder</strong> est invalide ou manquant. <br/>Merci d' %1$s enregistrer votre copie%2$s pour recevoir automatiquement mises à jour et supports. Besoin d'une licence ? %3$sAchetez la maintenant%4$s</p>"
1810
+
1811
+ #: ../admin/register-version.php:246
1812
+ 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>"
1813
+ msgstr "<p>Votre licence <strong>Profile Builder</strong> a expiré. <br/> %1$s Merci de la renouveler %2$s pour continuer à avoir accès aux mises à jour et supports automatiques. %3$s Renouvelez la maintenant et obtenez une remise de 50&#37; %4$s %5$s Rejeteri%6$s</p>"
1814
+
1815
+ #: ../admin/register-version.php:251
1816
+ 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>"
1817
+ msgstr "<p>Votre licence <strong>Profile Builder</strong> va expirer le %5$s. <br/>Merci, %1$s de la renouveler %2$s pour continuer à avoir accès aux mises à jour et supports automatiques. %3$s Renouvelez maintenant et obtenez une remise de 50&#37 %4$s %6$s Rejeter%7$s</p>"
1818
+
1819
+ #: ../assets/lib/wck-api/fields/country select.php:14
1820
+ #: ../assets/lib/wck-api/fields/cpt select.php:17
1821
+ #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
1822
+ #: select.php:15
1823
+ msgid "...Choose"
1824
+ msgstr "...Choisir"
1825
+
1826
+ #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
1827
+ msgid "1 item"
1828
+ msgstr "1 élément"
1829
+
1830
+ #: ../features/functions.php:525
1831
+ msgid "Very Weak"
1832
+ msgstr "Très faible"
1833
+
1834
+ #: ../features/functions.php:613
1835
+ msgid "This field is required"
1836
+ msgstr "Ce champ est obligatoire"
1837
+
1838
+ #: ../features/functions.php:640
1839
+ msgid "Cancel"
1840
+ msgstr "Annuler"
1841
+
1842
+ #: ../features/functions.php:676
1843
+ 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"
1844
+ msgstr "Pour autoriser les utilisateurs de s'inscrire sur le site via Profile Builder, vous devez permettre l'enregistrement des utilisateurs. Allez à %1$sSettings -> General%2$s et cocher la case \" Tout le monde peut s'enregistrer\". %3$sEffacer%4$s"
1845
+
1846
+ #: ../front-end/login.php:99
1847
+ msgid "Invalid username."
1848
+ msgstr "Nom d'utilisateur non-valide."
1849
+
1850
+ #: ../front-end/login.php:104 ../front-end/login.php:108
1851
+ msgid "username"
1852
+ msgstr "nom d'utilisateur"
1853
+
1854
+ #: ../front-end/login.php:104
1855
+ msgid "email"
1856
+ msgstr "email"
1857
+
1858
+ #: ../front-end/login.php:211
1859
+ msgid "Lost your password?"
1860
+ msgstr "Mot de passe perdu?"
1861
+
1862
+ #: ../index.php:34
1863
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
1864
+ msgstr "est aussi activé. Vous devez le désactiver avec d'activer cette version de l'extension."
1865
+
1866
+ #: ../modules/email-customizer/admin-email-customizer.php:54
1867
+ #: ../modules/email-customizer/user-email-customizer.php:54
1868
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
1869
+ msgstr "Ce doit être une adresse Mail valide ou bien le tag {{reply_to}} par défaut de l'adresse Mail de l'administrateur."
1870
+
1871
+ #: ../features/email-confirmation/email-confirmation.php:561
1872
+ #: ../features/email-confirmation/email-confirmation.php:564
1873
+ #: ../modules/email-customizer/email-customizer.php:413
1874
+ #: ../modules/email-customizer/email-customizer.php:420
1875
+ #: ../modules/email-customizer/email-customizer.php:434
1876
+ msgid "Your selected password at signup"
1877
+ msgstr "Votre mot de passe sélectionné lors de l'inscription"
1878
+
1879
+ #: ../modules/email-customizer/user-email-customizer.php:38
1880
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
1881
+ msgstr "Ces réglages sont également sauvegardés dans la page des réglages de \"Customisation du Mail de l'Administrateur\"."
1882
+
1883
+ #: ../modules/multiple-forms/edit-profile-forms.php:270
1884
+ msgid "This form is empty."
1885
+ msgstr "Ce formulaire est vide."
1886
+
1887
+ #: ../modules/multiple-forms/multiple-forms.php:399
1888
+ msgid "Delete all items"
1889
+ msgstr "Supprimer tous les éléments"
1890
+
1891
+ #: ../modules/multiple-forms/multiple-forms.php:399
1892
+ msgid "Delete all"
1893
+ msgstr "Tout supprimer"
1894
+
1895
+ #: ../modules/multiple-forms/register-forms.php:226
1896
+ msgid "Choose..."
1897
+ msgstr "Choisir..."
1898
+
1899
+ #: ../modules/user-listing/userlisting.php:1298
1900
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
1901
+ msgstr "Préciser le nombre d'utilisateurs à afficher sur chaque page de la liste des utilisateurs."
1902
+
1903
+ #: ../admin/admin-bar.php:10
1904
+ msgid "Show/Hide the Admin Bar on the Front-End"
1905
+ msgstr "Afficher/masquer la barre Administration sur l'interface client"
1906
+
1907
+ #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
1908
+ msgid "Admin Bar Settings"
1909
+ msgstr "Paramètres de la barre Administration"
1910
+
1911
+ #: ../admin/admin-bar.php:57
1912
+ msgid "User-Role"
1913
+ msgstr "Rôle-Utilisateur"
1914
+
1915
+ #: ../admin/admin-bar.php:58
1916
+ msgid "Visibility"
1917
+ msgstr "Visibilité"
1918
+
1919
+ #: ../admin/admin-bar.php:73
1920
+ msgid "Default"
1921
+ msgstr "Par défaut"
1922
+
1923
+ #: ../admin/admin-bar.php:74
1924
+ msgid "Show"
1925
+ msgstr "Afficher"
1926
+
1927
+ #: ../admin/admin-bar.php:75
1928
+ msgid "Hide"
1929
+ msgstr "Masquer"
1930
+
1931
+ #: ../admin/admin-bar.php:86 ../admin/general-settings.php:208
1932
+ #: ../admin/register-version.php:95 ../features/functions.php:633
1933
+ #: ../modules/modules.php:117
1934
+ msgid "Save Changes"
1935
+ msgstr "Enregistrer les modifications"
1936
+
1937
+ #: ../admin/admin-functions.php:34
1938
+ 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 )"
1939
+ msgstr "La connexion se fera avec votre adresse de messagerie. Ce champ n'apparaîtra PAS sur l'interface client ! ( vous pouvez changer ces paramètres dans l'onglet \"%s\" )"
1940
+
1941
+ #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
1942
+ #: ../admin/general-settings.php:38
1943
+ msgid "General Settings"
1944
+ msgstr "Paramètres Généraux"
1945
+
1946
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:194
1947
+ msgid "Very weak"
1948
+ msgstr "Très faible"
1949
+
1950
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:195
1951
+ #: ../features/functions.php:525
1952
+ msgid "Weak"
1953
+ msgstr "Faible"
1954
+
1955
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:196
1956
+ #: ../features/functions.php:525
1957
+ msgid "Medium"
1958
+ msgstr "Moyen"
1959
+
1960
+ #: ../admin/admin-functions.php:134 ../admin/general-settings.php:197
1961
+ #: ../features/functions.php:525
1962
+ msgid "Strong"
1963
+ msgstr "Fort"
1964
+
1965
+ #: ../admin/admin-functions.php:184
1966
+ msgid "Add Field"
1967
+ msgstr "Ajouter un Champ"
1968
+
1969
+ #: ../admin/admin-functions.php:186
1970
+ #: ../modules/class-mustache-templates/class-mustache-templates.php:374
1971
+ msgid "Save Settings"
1972
+ msgstr "Enregistrer les Paramètres"
1973
+
1974
+ #: ../admin/basic-info.php:10
1975
+ msgid "Basic Information"
1976
+ msgstr "Informations de base"
1977
+
1978
+ #: ../admin/basic-info.php:29
1979
+ msgid "Version %s"
1980
+ msgstr "Version %s"
1981
+
1982
+ #: ../admin/basic-info.php:30
1983
+ msgid "<strong>Profile Builder </strong>"
1984
+ msgstr "<strong>Profile Builder </strong>"
1985
+
1986
+ #: ../admin/basic-info.php:31
1987
+ msgid "The best way to add front-end registration, edit profile and login forms."
1988
+ msgstr "Le meilleur moyen d'ajouter une inscription via l'interface client, de modifier un profil et des formulaires de connexion."
1989
+
1990
+ #: ../admin/basic-info.php:33
1991
+ msgid "For Modern User Interaction"
1992
+ msgstr "Pour une Interaction Utilisateur Moderne"
1993
+
1994
+ #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
1995
+ msgid "Login"
1996
+ msgstr "Identification"
1997
+
1998
+ #: ../admin/basic-info.php:40
1999
+ msgid "Registration"
2000
+ msgstr "Inscription"
2001
+
2002
+ #: ../admin/basic-info.php:44
2003
+ msgid "Edit Profile"
2004
+ msgstr "Modifier le Profil"
2005
+
2006
+ #: ../admin/basic-info.php:51
2007
+ msgid "Extra Features"
2008
+ msgstr "Fonctionnalités supplémentaires"
2009
+
2010
+ #: ../admin/basic-info.php:52
2011
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
2012
+ 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."
2013
+
2014
+ #: ../admin/basic-info.php:53
2015
+ msgid "Enable extra features"
2016
+ msgstr "Activer les fonctionnalités supplémentaires"
2017
+
2018
+ #: ../admin/basic-info.php:57
2019
+ msgid "Recover Password"
2020
+ msgstr "Récupérer le Mot De Passe"
2021
+
2022
+ #: ../admin/basic-info.php:61
2023
+ msgid "Admin Approval (*)"
2024
+ msgstr "Approbation par l'Administrateur"
2025
+
2026
+ #: ../admin/basic-info.php:62
2027
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
2028
+ msgstr "Vous décidez qui est un utilisateur sur votre site. Soyez informé par e-mail ou approuvez plusieurs utilisateurs d'un coup à partir de l'IU WordPress."
2029
+
2030
+ #: ../admin/basic-info.php:65
2031
+ msgid "Email Confirmation"
2032
+ msgstr "Confirmation de l'adresse de messagerie"
2033
+
2034
+ #: ../admin/basic-info.php:66
2035
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
2036
+ 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."
2037
+
2038
+ #: ../admin/basic-info.php:69
2039
+ msgid "Minimum Password Length and Strength Meter"
2040
+ msgstr "Longueur Minimale du Mot De Masse et Métrique de Sûreté"
2041
+
2042
+ #: ../admin/basic-info.php:70
2043
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
2044
+ msgstr "Eliminer les mots de passe trop faibles en imposant une longueur minimale et un niveau de sûreté minimum."
2045
+
2046
+ #: ../admin/basic-info.php:73
2047
+ msgid "Login with Email or Username"
2048
+ msgstr "Se connecter avec une adresse de messagerie ou avec le nom d'utilisateur"
2049
+
2050
+ #: ../admin/basic-info.php:74
2051
+ msgid "Allow users to log in with their email or username when accessing your site."
2052
+ msgstr "Autoriser les utilisateurs à se connecter avec leur adresse de messagerie ou leur nom d'utilisateur lorsqu'ils accèdent à votre site."
2053
+
2054
+ #: ../admin/basic-info.php:87
2055
+ msgid "Customize Your Forms The Way You Want (*)"
2056
+ msgstr "Personnaliser Vos Formulaires Comme Vous Le Souhaitez (*)"
2057
+
2058
+ #: ../admin/basic-info.php:88
2059
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
2060
+ msgstr "Avec les champs supplémentaires de profil vous pouvez créer le formulaire exact d'inscription dont votre projet a besoin."
2061
+
2062
+ #: ../admin/basic-info.php:90
2063
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
2064
+ msgstr "Les champs supplémentaires de profil sont disponibles dans les version Hobbyist ou PRO."
2065
+
2066
+ #: ../admin/basic-info.php:92
2067
+ msgid "Get started with extra fields"
2068
+ msgstr "Bien commencer avec les champs supplémentaires"
2069
+
2070
+ #: ../admin/basic-info.php:95
2071
+ msgid "Avatar Upload"
2072
+ msgstr "Téléchargement d'avatar"
2073
+
2074
+ #: ../admin/basic-info.php:96
2075
+ msgid "Generic Uploads"
2076
+ msgstr "Téléchargements Génériques"
2077
+
2078
+ #: ../admin/basic-info.php:97
2079
+ msgid "Agree To Terms Checkbox"
2080
+ msgstr "Accepter les conditions par une case à cocher"
2081
+
2082
+ #: ../admin/basic-info.php:98
2083
+ msgid "Datepicker"
2084
+ msgstr "Outil de sélection de date"
2085
+
2086
+ #: ../admin/basic-info.php:99
2087
+ msgid "reCAPTCHA"
2088
+ msgstr "reCAPTCHA"
2089
+
2090
+ #: ../admin/basic-info.php:100
2091
+ msgid "Country Select"
2092
+ msgstr "Sélection du Pays"
2093
+
2094
+ #: ../admin/basic-info.php:101
2095
+ msgid "Timezone Select"
2096
+ msgstr "Sélection du Fuseau Horaire"
2097
+
2098
+ #: ../admin/basic-info.php:102
2099
+ msgid "Input / Hidden Input"
2100
+ msgstr "Entrée visible / Entrée cachée"
2101
+
2102
+ #: ../admin/basic-info.php:103
2103
+ msgid "Checkbox"
2104
+ msgstr "Case à cocher"
2105
+
2106
+ #: ../admin/basic-info.php:104
2107
+ msgid "Select"
2108
+ msgstr "Liste déroulante"
2109
+
2110
+ #: ../admin/basic-info.php:105
2111
+ msgid "Radio Buttons"
2112
+ msgstr "Boutons Radio"
2113
+
2114
+ #: ../admin/basic-info.php:106
2115
+ msgid "Textarea"
2116
+ msgstr "Zone de Texte"
2117
+
2118
+ #: ../admin/basic-info.php:115
2119
+ msgid "Powerful Modules (**)"
2120
+ msgstr "Des Modules Puissants (**)"
2121
+
2122
+ #: ../admin/basic-info.php:116
2123
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
2124
+ msgstr "Tout ce dont vous aurez besoin pour gérer vos utilisateurs est probablement déjà disponible dans les Modules Pro."
2125
+
2126
+ #: ../admin/basic-info.php:118
2127
+ msgid "Enable your modules"
2128
+ msgstr "Activer vos modules"
2129
+
2130
+ #: ../admin/basic-info.php:121
2131
+ msgid "Find out more about PRO Modules"
2132
+ msgstr "Découvrez les Modules PRO"
2133
+
2134
+ #: ../admin/basic-info.php:126 ../modules/modules.php:86
2135
+ #: ../modules/user-listing/userlisting.php:11
2136
+ #: ../modules/user-listing/userlisting.php:12
2137
+ #: ../modules/user-listing/userlisting.php:17
2138
+ #: ../modules/user-listing/userlisting.php:23
2139
+ msgid "User Listing"
2140
+ msgstr "Listing d'utilisateurs"
2141
+
2142
+ #: ../admin/basic-info.php:128
2143
+ 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."
2144
+ 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."
2145
+
2146
+ #: ../admin/basic-info.php:134
2147
+ msgid "Email Customizer"
2148
+ msgstr "Outil de personnalisation d'e-mails"
2149
+
2150
+ #: ../admin/basic-info.php:135
2151
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
2152
+ 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."
2153
+
2154
+ #: ../admin/basic-info.php:138
2155
+ #: ../modules/custom-redirects/custom_redirects_admin.php:32
2156
+ #: ../modules/custom-redirects/custom_redirects_admin.php:33
2157
+ #: ../modules/modules.php:107
2158
+ msgid "Custom Redirects"
2159
+ msgstr "Redirections personnalisées"
2160
+
2161
+ #: ../admin/basic-info.php:139
2162
+ 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."
2163
+ msgstr "Laissez vos utilisateurs hors du tableau de bord WordPress, redirigez-les sur la page d'accueil après qu'ils se sont identifiés ou inscrits, tout en quelques quelques clics."
2164
+
2165
+ #: ../admin/basic-info.php:144 ../modules/modules.php:72
2166
+ msgid "Multiple Registration Forms"
2167
+ msgstr "Formulaires Multiples d'Inscription"
2168
+
2169
+ #: ../admin/basic-info.php:145
2170
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
2171
+ 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."
2172
+
2173
+ #: ../admin/basic-info.php:148 ../modules/modules.php:79
2174
+ msgid "Multiple Edit-profile Forms"
2175
+ msgstr "Formulaires Multiples de Modification de Profil"
2176
+
2177
+ #: ../admin/basic-info.php:149
2178
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
2179
+ msgstr "Autorisez différents rôles-utilisateur à modifier les informations qui leur sont spécifiques. Mettez en place des formulaires multiples de modification de profil avec des champs différents suivant les rôles utilisateurs."
2180
+
2181
+ #: ../admin/basic-info.php:173
2182
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
2183
+ msgstr "* disponible uniquement dans les versions %1$sHobbyist et Pro %2$s."
2184
+
2185
+ #: ../admin/basic-info.php:174
2186
+ msgid "** only available in the %1$sPro version%2$s."
2187
+ msgstr "** disponible uniquement dans la version %1$sPro %2$s."
2188
+
2189
+ #: ../admin/general-settings.php:42
2190
+ msgid "Load Profile Builder's own CSS file in the front-end:"
2191
+ msgstr "Charge le fichier CSS de Profile Builder sur l'interface cliente:"
2192
+
2193
+ #: ../admin/general-settings.php:45 ../admin/general-settings.php:58
2194
+ #: ../admin/general-settings.php:107
2195
+ #: ../modules/multiple-forms/register-forms.php:225
2196
+ #: ../modules/multiple-forms/register-forms.php:226
2197
+ #: ../modules/user-listing/userlisting.php:1303
2198
+ msgid "Yes"
2199
+ msgstr "Oui"
2200
+
2201
+ #: ../admin/general-settings.php:47
2202
+ msgid "You can find the default file here: %1$s"
2203
+ msgstr "Vous pouvez trouver le fichier par défaut ici: %1$s"
2204
+
2205
+ #: ../admin/general-settings.php:54
2206
+ msgid "\"Email Confirmation\" Activated:"
2207
+ msgstr "\"Confirmation par e-mail\" Activée:"
2208
+
2209
+ #: ../admin/general-settings.php:59 ../admin/general-settings.php:108
2210
+ #: ../modules/multiple-forms/register-forms.php:225
2211
+ #: ../modules/multiple-forms/register-forms.php:226
2212
+ msgid "No"
2213
+ msgstr "Non"
2214
+
2215
+ #: ../admin/general-settings.php:64
2216
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
2217
+ 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."
2218
+
2219
+ #: ../admin/general-settings.php:72
2220
+ msgid "\"Email Confirmation\" Landing Page:"
2221
+ msgstr "Page d'arrivée après \"Confirmation de l'adresse de messagerie\":"
2222
+
2223
+ #: ../admin/general-settings.php:77
2224
+ msgid "Existing Pages"
2225
+ msgstr "Pages existantes"
2226
+
2227
+ #: ../admin/general-settings.php:92
2228
+ 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."
2229
+ 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."
2230
+
2231
+ #: ../admin/general-settings.php:103
2232
+ msgid "\"Admin Approval\" Activated:"
2233
+ msgstr "\"Approbation par l'Admin\" Activée:"
2234
+
2235
+ #: ../admin/general-settings.php:111
2236
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
2237
+ msgstr "Vous pouvez trouver une liste d'utilisateurs à %1$sUtilisateurs > Tous les Utilisateurs > Approbation par l'Admin %2$s."
2238
+
2239
+ #: ../admin/general-settings.php:149
2240
+ msgid "\"Admin Approval\" Feature:"
2241
+ msgstr "Fonctionnalité \"Approbation par l'Admin\":"
2242
+
2243
+ #: ../admin/general-settings.php:152
2244
+ 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."
2245
+ msgstr "Vous décidez qui est 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."
2246
+
2247
+ #: ../admin/general-settings.php:159
2248
+ msgid "Allow Users to Log in With:"
2249
+ msgstr "Permet aux utilisateurs à se connecter avec :"
2250
+
2251
+ #: ../admin/general-settings.php:164 ../admin/manage-fields.php:159
2252
+ #: ../features/admin-approval/class-admin-approval.php:177
2253
+ #: ../features/email-confirmation/class-email-confirmation.php:167
2254
+ #: ../modules/custom-redirects/custom_redirects_admin.php:56
2255
+ #: ../modules/email-customizer/email-customizer.php:28
2256
+ #: ../modules/user-listing/userlisting.php:92
2257
+ #: ../modules/user-listing/userlisting.php:248
2258
+ #: ../modules/user-listing/userlisting.php:611
2259
+ #: ../modules/user-listing/userlisting.php:1259
2260
+ msgid "Username"
2261
+ msgstr "Nom d'utilisateur"
2262
+
2263
+ #: ../admin/general-settings.php:165 ../front-end/login.php:173
2264
+ #: ../modules/email-customizer/email-customizer.php:29
2265
+ #: ../modules/user-listing/userlisting.php:617
2266
+ #: ../modules/user-listing/userlisting.php:1260
2267
+ msgid "Email"
2268
+ msgstr "Adresse de messagerie"
2269
+
2270
+ #: ../admin/general-settings.php:177
2271
+ msgid "Minimum Password Length:"
2272
+ msgstr "Longueur minimale du Mot de Passe :"
2273
+
2274
+ #: ../admin/general-settings.php:182
2275
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
2276
+ 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"
2277
+
2278
+ #: ../admin/general-settings.php:189
2279
+ msgid "Minimum Password Strength:"
2280
+ msgstr "Sûreté minimale du Mot de Passe:"
2281
+
2282
+ #: ../admin/general-settings.php:193
2283
+ msgid "Disabled"
2284
+ msgstr "Désactivé"
2285
+
2286
+ #: ../admin/manage-fields.php:12
2287
+ msgid "Manage Fields"
2288
+ msgstr "Gérez les Champs"
2289
+
2290
+ #: ../admin/manage-fields.php:13
2291
+ msgid "Manage Default and Extra Fields"
2292
+ msgstr "Gérez les Champs par défaut et les Champs supplémentaires"
2293
+
2294
+ #: ../admin/manage-fields.php:94
2295
+ msgid "Field Title"
2296
+ msgstr "Titre du champ"
2297
+
2298
+ #: ../admin/manage-fields.php:94
2299
+ msgid "Title of the field"
2300
+ msgstr "Titre du champ"
2301
+
2302
+ #: ../admin/manage-fields.php:95
2303
+ #: ../modules/multiple-forms/edit-profile-forms.php:241
2304
+ #: ../modules/multiple-forms/register-forms.php:262
2305
+ msgid "Field"
2306
+ msgstr "Champ"
2307
+
2308
+ #: ../admin/manage-fields.php:96
2309
+ msgid "Meta-name"
2310
+ msgstr "Meta-nom"
2311
+
2312
+ #: ../admin/manage-fields.php:96
2313
+ 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"
2314
+ 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 si le compteur utilisateur est très grand"
2315
+
2316
+ #: ../admin/manage-fields.php:97
2317
+ #: ../modules/custom-redirects/custom_redirects_admin.php:65
2318
+ #: ../modules/custom-redirects/custom_redirects_admin.php:95
2319
+ #: ../modules/custom-redirects/custom_redirects_admin.php:114
2320
+ #: ../modules/custom-redirects/custom_redirects_admin.php:139
2321
+ #: ../modules/multiple-forms/edit-profile-forms.php:242
2322
+ #: ../modules/multiple-forms/register-forms.php:263
2323
+ msgid "ID"
2324
+ msgstr "ID"
2325
+
2326
+ #: ../admin/manage-fields.php:97
2327
+ #: ../modules/multiple-forms/edit-profile-forms.php:242
2328
+ #: ../modules/multiple-forms/register-forms.php:263
2329
+ 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"
2330
+ msgstr "Un identifiant unique, généré automatiquement, pour ce champ particulier<br/>Vous pouvez utiliser ceci en lien avec les filtres pour cibler cet élément si besoin<br/>Ne peut être modifié"
2331
+
2332
+ #: ../admin/manage-fields.php:98
2333
+ msgid "Description"
2334
+ msgstr "Description"
2335
+
2336
+ #: ../admin/manage-fields.php:98
2337
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
2338
+ msgstr "Entrez une description (détaillée) de l'option que les utilisateurs finaux pourront lire<br/>Optionnel"
2339
+
2340
+ #: ../admin/manage-fields.php:99
2341
+ msgid "Row Count"
2342
+ msgstr "Nombre de Lignes"
2343
+
2344
+ #: ../admin/manage-fields.php:99
2345
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
2346
+ 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"
2347
+
2348
+ #: ../admin/manage-fields.php:100
2349
+ msgid "Allowed Image Extensions"
2350
+ msgstr "Extensions Autorisées des Images"
2351
+
2352
+ #: ../admin/manage-fields.php:101
2353
+ msgid "Allowed Upload Extensions"
2354
+ msgstr "Extensions Autorisées au Téléchargement"
2355
+
2356
+ #: ../admin/manage-fields.php:102
2357
+ msgid "Avatar Size"
2358
+ msgstr "Taille de l'Avatar"
2359
+
2360
+ #: ../admin/manage-fields.php:102
2361
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
2362
+ 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"
2363
+
2364
+ #: ../admin/manage-fields.php:103
2365
+ msgid "Date-format"
2366
+ msgstr "Format de la date"
2367
+
2368
+ #: ../admin/manage-fields.php:103
2369
+ 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"
2370
+ 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"
2371
+
2372
+ #: ../admin/manage-fields.php:104
2373
+ msgid "Terms of Agreement"
2374
+ msgstr "Conditions Générales"
2375
+
2376
+ #: ../admin/manage-fields.php:104
2377
+ 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;"
2378
+ 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;"
2379
+
2380
+ #: ../admin/manage-fields.php:105
2381
+ msgid "Options"
2382
+ msgstr "Options"
2383
+
2384
+ #: ../admin/manage-fields.php:106
2385
+ msgid "Labels"
2386
+ msgstr "Labels"
2387
+
2388
+ #: ../admin/manage-fields.php:106
2389
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
2390
+ msgstr "Entrez une liste de labels séparés par une virgule<br/>Visible par l'utilisateur"
2391
+
2392
+ #: ../admin/manage-fields.php:113
2393
+ msgid "Default Value"
2394
+ msgstr "Valeur Par Défaut"
2395
+
2396
+ #: ../admin/manage-fields.php:113
2397
+ msgid "Default value of the field"
2398
+ msgstr "Valeur par défaut du champ"
2399
+
2400
+ #: ../admin/manage-fields.php:114 ../admin/manage-fields.php:116
2401
+ #: ../admin/manage-fields.php:117
2402
+ msgid "Default Option"
2403
+ msgstr "Option Par Défaut"
2404
+
2405
+ #: ../admin/manage-fields.php:114
2406
+ msgid "Specify the option which should be selected by default"
2407
+ msgstr "Spécifiez l'option qui devrait être sélectionnée par défaut"
2408
+
2409
+ #: ../admin/manage-fields.php:115
2410
+ msgid "Default Option(s)"
2411
+ msgstr "Option(s) Par Défaut"
2412
+
2413
+ #: ../admin/manage-fields.php:115
2414
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
2415
+ 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)"
2416
+
2417
+ #: ../admin/manage-fields.php:118
2418
+ msgid "Default Content"
2419
+ msgstr "Contenu Par Défaut"
2420
+
2421
+ #: ../admin/manage-fields.php:118
2422
+ msgid "Default value of the textarea"
2423
+ msgstr "Valeur par défaut de la zone de texte"
2424
+
2425
+ #: ../admin/manage-fields.php:119
2426
+ msgid "Required"
2427
+ msgstr "Obligatoire"
2428
+
2429
+ #: ../admin/manage-fields.php:119
2430
+ msgid "Whether the field is required or not"
2431
+ msgstr "Si le champ est obligatoire ou pas"
2432
+
2433
+ #: ../admin/manage-fields.php:120
2434
+ msgid "Overwrite Existing"
2435
+ msgstr "Ecraser l'existant"
2436
+
2437
+ #: ../admin/manage-fields.php:120
2438
+ 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"
2439
+ msgstr "Sélectionner 'Oui' ajoutera le champ à la liste, mais écrasera n'importe quel autre champ dans la base de données qui aurait le même méta-nom<br/>A utiliser à vos risques et périls"
2440
+
2441
+ #: ../admin/manage-fields.php:126
2442
+ msgid "Field Properties"
2443
+ msgstr "Propriétés du Champ"
2444
+
2445
+ #: ../admin/manage-fields.php:139
2446
+ msgid "Registration & Edit Profile"
2447
+ msgstr "Inscription & Modification de Profil"
2448
+
2449
+ #: ../admin/manage-fields.php:158
2450
+ msgid "Name"
2451
+ msgstr "Nom"
2452
+
2453
+ #: ../admin/manage-fields.php:159
2454
+ msgid "Usernames cannot be changed."
2455
+ msgstr "Les noms d'utillisateur ne peuvent pas être modifiés."
2456
+
2457
+ #: ../admin/manage-fields.php:160
2458
+ msgid "First Name"
2459
+ msgstr "Prénom"
2460
+
2461
+ #: ../admin/manage-fields.php:161
2462
+ msgid "Last Name"
2463
+ msgstr "Nom de famille"
2464
+
2465
+ #: ../admin/manage-fields.php:162 ../modules/user-listing/userlisting.php:650
2466
+ msgid "Nickname"
2467
+ msgstr "Pseudonyme"
2468
+
2469
+ #: ../admin/manage-fields.php:163
2470
+ msgid "Display name publicly as"
2471
+ msgstr "Nom publique"
2472
+
2473
+ #: ../admin/manage-fields.php:164
2474
+ msgid "Contact Info"
2475
+ msgstr "Informations de contact"
2476
+
2477
+ #: ../admin/manage-fields.php:165
2478
+ #: ../features/admin-approval/class-admin-approval.php:180
2479
+ #: ../features/email-confirmation/class-email-confirmation.php:168
2480
+ #: ../modules/user-listing/userlisting.php:98
2481
+ msgid "E-mail"
2482
+ msgstr "Adresse de messagerie"
2483
+
2484
+ #: ../admin/manage-fields.php:166
2485
+ #: ../modules/email-customizer/email-customizer.php:32
2486
+ #: ../modules/user-listing/userlisting.php:101
2487
+ #: ../modules/user-listing/userlisting.php:632
2488
+ #: ../modules/user-listing/userlisting.php:1261
2489
+ msgid "Website"
2490
+ msgstr "Site web"
2491
+
2492
+ #: ../admin/manage-fields.php:170
2493
+ msgid "AIM"
2494
+ msgstr "AIM"
2495
+
2496
+ #: ../admin/manage-fields.php:171
2497
+ msgid "Yahoo IM"
2498
+ msgstr "Yahoo IM"
2499
+
2500
+ #: ../admin/manage-fields.php:172
2501
+ msgid "Jabber / Google Talk"
2502
+ msgstr "Jabber / Google Talk"
2503
+
2504
+ #: ../admin/manage-fields.php:175
2505
+ msgid "About Yourself"
2506
+ msgstr "A propos de vous"
2507
+
2508
+ #: ../admin/manage-fields.php:176 ../modules/user-listing/userlisting.php:104
2509
+ #: ../modules/user-listing/userlisting.php:635
2510
+ #: ../modules/user-listing/userlisting.php:1262
2511
+ msgid "Biographical Info"
2512
+ msgstr "Informations biographiques"
2513
+
2514
+ #: ../admin/manage-fields.php:176
2515
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
2516
+ msgstr "Partagez quelques informations biographiques pour compléter votre profil. Ceci peut être affiché publiquement."
2517
+
2518
+ #: ../admin/manage-fields.php:177 ../front-end/recover.php:75
2519
+ #: ../modules/email-customizer/email-customizer.php:30
2520
+ msgid "Password"
2521
+ msgstr "Mot de passe"
2522
+
2523
+ #: ../admin/manage-fields.php:177
2524
+ msgid "Type your password."
2525
+ msgstr "Tapez votre mot de passe."
2526
+
2527
+ #: ../admin/manage-fields.php:178 ../front-end/recover.php:80
2528
+ msgid "Repeat Password"
2529
+ msgstr "Répétez votre mot de passe"
2530
+
2531
+ #: ../admin/manage-fields.php:178
2532
+ msgid "Type your password again. "
2533
+ msgstr "Re-tapez votre mot de passe."
2534
+
2535
+ #: ../admin/manage-fields.php:617 ../admin/manage-fields.php:761
2536
+ msgid "You must select a field\n"
2537
+ msgstr "Vous devez sélectionner un champ\n"
2538
+
2539
+ #: ../admin/manage-fields.php:627
2540
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
2541
+ msgstr "Merci de choisir un champ différent, car celui-ci existe déjà dans votre formulaire (et il doit être unique)\n"
2542
+
2543
+ #: ../admin/manage-fields.php:638
2544
+ msgid "The entered avatar size is not between 20 and 200\n"
2545
+ msgstr "La taille de l'avatar n'est pas comprise entre 20 et 200\n"
2546
+
2547
+ #: ../admin/manage-fields.php:641
2548
+ msgid "The entered avatar size is not numerical\n"
2549
+ msgstr "La taille de l'avatar n'est pas une valeur numérique\n"
2550
+
2551
+ #: ../admin/manage-fields.php:649
2552
+ msgid "The entered row number is not numerical\n"
2553
+ msgstr "Le numéro entré pour la ligne n'est pas numérique\n"
2554
+
2555
+ #: ../admin/manage-fields.php:652
2556
+ msgid "You must enter a value for the row number\n"
2557
+ msgstr "Vous devez entrer une valeur pour le numéro de la ligne\n"
2558
+
2559
+ #: ../admin/manage-fields.php:670
2560
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
2561
+ msgstr "La valeur entrée pour l'outil de sélection de date ne respecte pas le format de date\n"
2562
+
2563
+ #: ../admin/manage-fields.php:673
2564
+ msgid "You must enter a value for the date-format\n"
2565
+ msgstr "Vous devez entrer une valeur de formattage de date\n"
2566
+
2567
+ #: ../admin/manage-fields.php:701 ../admin/manage-fields.php:709
2568
+ #: ../admin/manage-fields.php:719
2569
+ msgid "That meta-name is already in use\n"
2570
+ msgstr "Le meta-nom est déjà utilisé\n"
2571
+
2572
+ #: ../admin/manage-fields.php:741
2573
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
2574
+ msgstr "Le(s) options(s) suivante(s) n'a(ont) pas coïncidé pas avec celles de la liste d'options : %s\n"
2575
+
2576
+ #: ../admin/manage-fields.php:745
2577
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
2578
+ msgstr "L'option suivante n'a pas coïncidé avec celles de la liste d'options: %s\n"
2579
+
2580
+ #: ../admin/manage-fields.php:768
2581
+ msgid "That field is already added in this form\n"
2582
+ msgstr "Ce champ a déjà été ajouté à ce formulaire\n"
2583
+
2584
+ #: ../admin/manage-fields.php:817
2585
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
2586
+ msgstr "<pre>Titre</pre><pre>Type</pre><pre>Meta-nom</pre><pre class=\"wppb-mb-head-required\">Obligatoire</pre>"
2587
+
2588
+ #: ../admin/manage-fields.php:817
2589
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2590
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:531
2591
+ #: ../features/admin-approval/class-admin-approval.php:119
2592
+ #: ../features/functions.php:654 ../features/functions.php:661
2593
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
2594
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
2595
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
2596
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
2597
+ #: ../modules/multiple-forms/multiple-forms.php:399
2598
+ msgid "Edit"
2599
+ msgstr "Editer"
2600
+
2601
+ #: ../admin/manage-fields.php:817
2602
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2603
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:532
2604
+ #: ../features/admin-approval/class-admin-approval.php:124
2605
+ #: ../features/admin-approval/class-admin-approval.php:235
2606
+ #: ../features/email-confirmation/class-email-confirmation.php:120
2607
+ #: ../features/email-confirmation/class-email-confirmation.php:217
2608
+ #: ../features/functions.php:647 ../features/functions.php:661
2609
+ #: ../modules/custom-redirects/custom_redirects_admin.php:179
2610
+ #: ../modules/custom-redirects/custom_redirects_admin.php:193
2611
+ #: ../modules/custom-redirects/custom_redirects_admin.php:207
2612
+ #: ../modules/custom-redirects/custom_redirects_admin.php:221
2613
+ msgid "Delete"
2614
+ msgstr "Supprimer"
2615
+
2616
+ #: ../admin/manage-fields.php:832
2617
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
2618
+ msgstr "Utilisez ces shortcodes sur les pages où vous voulez que les formulaires s'affichent :"
2619
+
2620
+ #: ../admin/manage-fields.php:841
2621
+ 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."
2622
+ msgstr "Si vous êtes intéressé pour afficher différents champs dans les formulaires d'inscription et de modification de profil, merci d'utiliser l'extension Formulaires d'Inscriptions Multiples & de Modification de Profil."
2623
+
2624
+ #: ../admin/register-version.php:14
2625
+ msgid "Register Your Version"
2626
+ msgstr "Enregistrez Votre Version"
2627
+
2628
+ #: ../admin/register-version.php:14
2629
+ msgid "Register Version"
2630
+ msgstr "Enregistrez la Version"
2631
+
2632
+ #: ../admin/register-version.php:70
2633
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
2634
+ msgstr "Si vous enregistrez cette version de Profile Builder, vous recevrez des informations concernant les mises à jours, les correctifs et le support technique."
2635
+
2636
+ #: ../admin/register-version.php:72
2637
+ msgid " Serial Number:"
2638
+ msgstr "Numéro de Série :"
2639
+
2640
+ #: ../admin/register-version.php:77
2641
+ msgid "The serial number was successfully validated!"
2642
+ msgstr "Le numéro de série a bien été validé !"
2643
+
2644
+ #: ../admin/register-version.php:79
2645
+ msgid "The serial number entered couldn't be validated!"
2646
+ msgstr "Le numéro de série entré n'a pas pu être validé !"
2647
+
2648
+ #: ../admin/register-version.php:83
2649
+ msgid "The serial number couldn't be validated because it expired!"
2650
+ msgstr "Le numéro de série n'a pas pu être validé car il a expiré !"
2651
+
2652
+ #: ../admin/register-version.php:85
2653
+ 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!"
2654
+ 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 !"
2655
+
2656
+ #: ../admin/register-version.php:87
2657
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2658
+ msgstr "(ex. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2659
+
2660
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2661
+ #: ../features/functions.php:661
2662
+ msgid "Content"
2663
+ msgstr "Contenu"
2664
+
2665
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:531
2666
+ msgid "Edit this item"
2667
+ msgstr "Modifier cet élément"
2668
+
2669
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:532
2670
+ msgid "Delete this item"
2671
+ msgstr "Supprimer cet élément"
2672
+
2673
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:700
2674
+ msgid "Please enter a value for the required field "
2675
+ msgstr "Merci d'entrer une valeur pour le champ obligatoire"
2676
+
2677
+ #: ../front-end/extra-fields/upload/upload.php:122
2678
+ msgid "Select File"
2679
+ msgstr "Sélectionner un fichier"
2680
+
2681
+ #: ../assets/lib/wck-api/fields/upload.php:43
2682
+ #: ../front-end/extra-fields/upload/upload.php:112
2683
+ msgid "Remove"
2684
+ msgstr "Supprimer"
2685
+
2686
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1179
2687
+ msgid "Syncronize WCK"
2688
+ msgstr "Synchroniser WCK"
2689
+
2690
+ #: ../assets/lib/wck-api/wordpress-creation-kit.php:1191
2691
+ msgid "Syncronize WCK Translation"
2692
+ msgstr "Synchroniser la traduction WCK"
2693
+
2694
+ #: ../assets/lib/wck-api/fields/nested repeater.php:8
2695
+ msgid "You can add the information for the %s after you add a entry"
2696
+ msgstr "Vous pouvez ajouter l'information pour le %s après avoir ajouté une entrée"
2697
+
2698
+ #: ../assets/lib/wck-api/fields/upload.php:75
2699
+ #: ../front-end/extra-fields/upload/upload.php:128
2700
+ msgid "Upload "
2701
+ msgstr "Télécharger"
2702
+
2703
+ #: ../features/class-list-table.php:184
2704
+ msgid "No items found."
2705
+ msgstr "Aucun élément trouvé."
2706
+
2707
+ #: ../features/class-list-table.php:308
2708
+ msgid "Bulk Actions"
2709
+ msgstr "Actions Groupées"
2710
+
2711
+ #: ../features/class-list-table.php:318
2712
+ msgid "Apply"
2713
+ msgstr "Appliquer"
2714
+
2715
+ #: ../features/class-list-table.php:402
2716
+ msgid "Show all dates"
2717
+ msgstr "Afficher toutes les dates"
2718
+
2719
+ #: ../features/class-list-table.php:415
2720
+ msgid "%1$s %2$d"
2721
+ msgstr "%1$s %2$d"
2722
+
2723
+ #: ../features/class-list-table.php:431
2724
+ msgid "List View"
2725
+ msgstr "Vue par liste"
2726
+
2727
+ #: ../features/class-list-table.php:432
2728
+ msgid "Excerpt View"
2729
+ msgstr "Vue par extrait"
2730
+
2731
+ #: ../features/class-list-table.php:458
2732
+ msgid "%s pending"
2733
+ msgstr "%s en attente"
2734
+
2735
+ #: ../features/class-list-table.php:566
2736
+ msgid "%1$s of %2$s"
2737
+ msgstr "%1$s de %2$s"
2738
+
2739
+ #: ../features/class-list-table.php:713
2740
+ msgid "Select All"
2741
+ msgstr "Tout Sélectionner"
2742
+
2743
+ #: ../features/functions.php:297
2744
+ msgid "The user-validation has failed - the avatar was not deleted!"
2745
+ msgstr "La validation de l'utilisateur a échoué - l'avatar n'a pas été supprimé !"
2746
+
2747
+ #: ../features/functions.php:308
2748
+ msgid "The user-validation has failed - the attachment was not deleted!"
2749
+ msgstr "La validation de l'utilisateur a échoué - la pièce jointe n'a pas été supprimée !"
2750
+
2751
+ #: ../features/functions.php:500
2752
+ msgid "Strength indicator"
2753
+ msgstr "Indicateur de sûreté"
2754
+
2755
+ #: ../features/admin-approval/admin-approval.php:7
2756
+ #: ../features/admin-approval/class-admin-approval.php:458
2757
+ msgid "Admin Approval"
2758
+ msgstr "Approbation par l'Admin"
2759
+
2760
+ #: ../features/admin-approval/admin-approval.php:21
2761
+ #: ../features/email-confirmation/email-confirmation.php:58
2762
+ msgid "Do you want to"
2763
+ msgstr "Voulez-vous"
2764
+
2765
+ #: ../features/admin-approval/admin-approval.php:44
2766
+ msgid "Your session has expired! Please refresh the page and try again"
2767
+ msgstr "Votre session a expiré ! Merci de rafraîchir la page et de ré-essayer"
2768
+
2769
+ #: ../features/admin-approval/admin-approval.php:55
2770
+ msgid "User successfully approved!"
2771
+ msgstr "L'utilisateur a bien été approuvé !"
2772
+
2773
+ #: ../features/admin-approval/admin-approval.php:63
2774
+ msgid "User successfully unapproved!"
2775
+ msgstr "L'utilisateur a bien été refusé !"
2776
+
2777
+ #: ../features/admin-approval/admin-approval.php:69
2778
+ msgid "User successfully deleted!"
2779
+ msgstr "L'utilisateur a bien été supprimé !"
2780
+
2781
+ #: ../features/admin-approval/admin-approval.php:74
2782
+ #: ../features/admin-approval/admin-approval.php:118
2783
+ #: ../features/email-confirmation/email-confirmation.php:135
2784
+ msgid "You either don't have permission for that action or there was an error!"
2785
+ msgstr "Soit vous n'avez pas la permission de réaliser cette action soit il y a eu une erreur !"
2786
+
2787
+ #: ../features/admin-approval/admin-approval.php:85
2788
+ msgid "Your session has expired! Please refresh the page and try again."
2789
+ msgstr "Votre session a expiré ! Merci de rafraîchir la page et de ré-essayer."
2790
+
2791
+ #: ../features/admin-approval/admin-approval.php:97
2792
+ msgid "Users successfully approved!"
2793
+ msgstr "Les utilisateurs ont bien été approuvés !"
2794
+
2795
+ #: ../features/admin-approval/admin-approval.php:106
2796
+ msgid "Users successfully unapproved!"
2797
+ msgstr "Les utilisateurs ont bien été refusés !"
2798
+
2799
+ #: ../features/admin-approval/admin-approval.php:114
2800
+ msgid "Users successfully deleted!"
2801
+ msgstr "Les utilisateurs ont bien été supprimés !"
2802
+
2803
+ #: ../features/admin-approval/admin-approval.php:134
2804
+ msgid "Your account on %1$s has been approved!"
2805
+ msgstr "Votre compte sur %1$s a été approuvé !"
2806
+
2807
+ #: ../features/admin-approval/admin-approval.php:135
2808
+ #: ../features/admin-approval/admin-approval.php:138
2809
+ msgid "approved"
2810
+ msgstr "approuvé"
2811
+
2812
+ #: ../features/admin-approval/admin-approval.php:137
2813
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
2814
+ msgstr "Un administrateur vient d'approuver votre compte sur %1$s (%2$s)."
2815
+
2816
+ #: ../features/admin-approval/admin-approval.php:142
2817
+ msgid "Your account on %1$s has been unapproved!"
2818
+ msgstr "Votre compte sur %1$s a été refusé !"
2819
+
2820
+ #: ../features/admin-approval/admin-approval.php:143
2821
+ #: ../features/admin-approval/admin-approval.php:146
2822
+ msgid "unapproved"
2823
+ msgstr "refusé"
2824
+
2825
+ #: ../features/admin-approval/admin-approval.php:145
2826
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
2827
+ msgstr "Un administrateur vient de refuser votre compte sur %1$s (%2$s)."
2828
+
2829
+ #: ../features/admin-approval/admin-approval.php:164
2830
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
2831
+ msgstr "<strong>ERREUR</strong> : Votre compte doit être confirmé par un administrateur avant que vous ne puissiez vous connecter."
2832
+
2833
+ #: ../features/admin-approval/admin-approval.php:176
2834
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
2835
+ msgstr "Un administrateur doit approuver votre compte avant que vous ne puissiez utiliser la fonctionnalité \"Mot de passe perdu\"."
2836
+
2837
+ #: ../features/admin-approval/class-admin-approval.php:124
2838
+ msgid "delete this user?"
2839
+ msgstr "supprimer cet utilisateur ?"
2840
+
2841
+ #: ../features/admin-approval/class-admin-approval.php:127
2842
+ msgid "unapprove this user?"
2843
+ msgstr "refuser cet utilisateur ?"
2844
+
2845
+ #: ../features/admin-approval/class-admin-approval.php:127
2846
+ #: ../features/admin-approval/class-admin-approval.php:234
2847
+ msgid "Unapprove"
2848
+ msgstr "Refuser"
2849
+
2850
+ #: ../features/admin-approval/class-admin-approval.php:129
2851
+ msgid "approve this user?"
2852
+ msgstr "approuver cet utilisateur ?"
2853
+
2854
+ #: ../features/admin-approval/class-admin-approval.php:129
2855
+ #: ../features/admin-approval/class-admin-approval.php:233
2856
+ msgid "Approve"
2857
+ msgstr "Approuver"
2858
+
2859
+ #: ../features/admin-approval/class-admin-approval.php:178
2860
+ #: ../modules/user-listing/userlisting.php:249
2861
+ #: ../modules/user-listing/userlisting.php:623
2862
+ #: ../modules/user-listing/userlisting.php:1264
2863
+ msgid "Firstname"
2864
+ msgstr "Prénom"
2865
+
2866
+ #: ../features/admin-approval/class-admin-approval.php:179
2867
+ #: ../modules/user-listing/userlisting.php:626
2868
+ #: ../modules/user-listing/userlisting.php:1265
2869
+ msgid "Lastname"
2870
+ msgstr "Nom de famille"
2871
+
2872
+ #: ../features/admin-approval/class-admin-approval.php:181
2873
+ #: ../modules/user-listing/userlisting.php:124
2874
+ #: ../modules/user-listing/userlisting.php:250
2875
+ #: ../modules/user-listing/userlisting.php:653
2876
+ #: ../modules/user-listing/userlisting.php:1268
2877
+ msgid "Role"
2878
+ msgstr "Rôle"
2879
+
2880
+ #: ../features/admin-approval/class-admin-approval.php:182
2881
+ #: ../features/email-confirmation/class-email-confirmation.php:169
2882
+ msgid "Registered"
2883
+ msgstr "Inscrit"
2884
+
2885
+ #: ../features/admin-approval/class-admin-approval.php:183
2886
+ msgid "User-status"
2887
+ msgstr "Statut de l'utilisateur"
2888
+
2889
+ #: ../features/admin-approval/class-admin-approval.php:263
2890
+ msgid "Do you want to bulk approve the selected users?"
2891
+ msgstr "Voulez-vous approuver tous les utilisateurs sélectionnés ?"
2892
+
2893
+ #: ../features/admin-approval/class-admin-approval.php:271
2894
+ msgid "Do you want to bulk unapprove the selected users?"
2895
+ msgstr "Voulez-vous refuser tous les utilisateurs sélectionnés ?"
2896
+
2897
+ #: ../features/admin-approval/class-admin-approval.php:277
2898
+ msgid "Do you want to bulk delete the selected users?"
2899
+ msgstr "Voulez-vous supprimer tous les utilisateurs sélectionnés ?"
2900
+
2901
+ #: ../features/admin-approval/class-admin-approval.php:285
2902
+ #: ../features/email-confirmation/class-email-confirmation.php:278
2903
+ msgid "Sorry, but you don't have permission to do that!"
2904
+ msgstr "Désolé, mais vous n'avez pas la permission de faire cela !"
2905
+
2906
+ #: ../features/admin-approval/class-admin-approval.php:341
2907
+ msgid "Approved"
2908
+ msgstr "Approuvé"
2909
+
2910
+ #: ../features/admin-approval/class-admin-approval.php:343
2911
+ msgid "Unapproved"
2912
+ msgstr "Refusé"
2913
+
2914
+ #: ../features/admin-approval/class-admin-approval.php:461
2915
+ #: ../features/email-confirmation/class-email-confirmation.php:465
2916
+ msgid "All Users"
2917
+ msgstr "Tous les Utilisateurs"
2918
+
2919
+ #: ../features/email-confirmation/class-email-confirmation.php:120
2920
+ msgid "delete this user from the _signups table?"
2921
+ msgstr "supprimer cet utilisateur de la table _signups ?"
2922
+
2923
+ #: ../features/email-confirmation/class-email-confirmation.php:121
2924
+ msgid "confirm this email yourself?"
2925
+ msgstr "confirmer cette adresse de messagerie vous-même ?"
2926
+
2927
+ #: ../features/email-confirmation/class-email-confirmation.php:121
2928
+ #: ../features/email-confirmation/class-email-confirmation.php:218
2929
+ msgid "Confirm Email"
2930
+ msgstr "Confirmer l'adresse de messagerie"
2931
+
2932
+ #: ../features/email-confirmation/class-email-confirmation.php:122
2933
+ msgid "resend the activation link?"
2934
+ msgstr "ré-envoyer le lien d'activation ?"
2935
+
2936
+ #: ../features/email-confirmation/class-email-confirmation.php:122
2937
+ #: ../features/email-confirmation/class-email-confirmation.php:219
2938
+ msgid "Resend Activation Email"
2939
+ msgstr "Ré-envoyer l'e-mail d'activation"
2940
+
2941
+ #: ../features/email-confirmation/class-email-confirmation.php:249
2942
+ msgid "%s couldn't be deleted"
2943
+ msgstr "%s n'a pas pu être supprimé"
2944
+
2945
+ #: ../features/email-confirmation/class-email-confirmation.php:253
2946
+ msgid "All users have been successfully deleted"
2947
+ msgstr "Tous les utilisateurs ont bien été supprimés"
2948
+
2949
+ #: ../features/email-confirmation/class-email-confirmation.php:263
2950
+ msgid "The selected users have been activated"
2951
+ msgstr "L'utilisateur sélectionné a bien été activé"
2952
+
2953
+ #: ../features/email-confirmation/class-email-confirmation.php:274
2954
+ msgid "The selected users have had their activation emails resent"
2955
+ msgstr "Les e-mails d'activation ont été ré-envoyés aux utilisateurs sélectionnés"
2956
+
2957
+ #: ../features/email-confirmation/class-email-confirmation.php:462
2958
+ #: ../features/email-confirmation/email-confirmation.php:47
2959
+ msgid "Users with Unconfirmed Email Address"
2960
+ msgstr "Utilisateurs avec une adresse de messagerie non-confirmée"
2961
+
2962
+ #: ../features/email-confirmation/email-confirmation.php:110
2963
+ msgid "There was an error performing that action!"
2964
+ msgstr "Il y a eu une erreur lors de la réalisation de cette action !"
2965
+
2966
+ #: ../features/email-confirmation/email-confirmation.php:118
2967
+ msgid "The selected user couldn't be deleted"
2968
+ msgstr "L'utilisateur sélectionné n'a pas pu être supprimé"
2969
+
2970
+ #: ../features/email-confirmation/email-confirmation.php:129
2971
+ msgid "Email notification resent to user"
2972
+ msgstr "L'e-mail de notification a été ré-envoyé à l'utilisateur"
2973
+
2974
+ #: ../features/email-confirmation/email-confirmation.php:389
2975
+ msgid "[%1$s] Activate %2$s"
2976
+ msgstr "[%1$s] Activer %2$s"
2977
+
2978
+ #: ../features/email-confirmation/email-confirmation.php:433
2979
+ #: ../front-end/register.php:68
2980
+ msgid "Could not create user!"
2981
+ msgstr "L'utilisateur n'a pas pu être créé !"
2982
+
2983
+ #: ../features/email-confirmation/email-confirmation.php:436
2984
+ msgid "That username is already activated!"
2985
+ msgstr "Ce nom d'utilisateur est déjà activé !"
2986
+
2987
+ #: ../features/email-confirmation/email-confirmation.php:457
2988
+ msgid "There was an error while trying to activate the user"
2989
+ msgstr "Il y a eu une erreur lors de l'activation de l'utilisateur"
2990
+
2991
+ #: ../features/email-confirmation/email-confirmation.php:505
2992
+ #: ../modules/email-customizer/admin-email-customizer.php:73
2993
+ msgid "A new subscriber has (been) registered!"
2994
+ msgstr "Un nouvel adhérent a (été) enregistré !"
2995
+
2996
+ #: ../features/email-confirmation/email-confirmation.php:508
2997
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
2998
+ msgstr "Nouvel adhérent sur %1$s.<br/><br/>Nom d'utilisateur :%2$s<br/>E-mail :%3$s<br/>"
2999
+
3000
+ #: ../features/email-confirmation/email-confirmation.php:615
3001
+ 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!"
3002
+ 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 !"
3003
+
3004
+ #: ../features/email-confirmation/email-confirmation.php:557
3005
+ msgid "[%1$s] Your new account information"
3006
+ msgstr "[%1$s] Nouvelles informations à propos de votre compte"
3007
+
3008
+ #: ../features/email-confirmation/email-confirmation.php:563
3009
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
3010
+ msgstr "Bienvenue sur %1$s!<br/><br/><br/>Votre nom d'utilisateur est :%2$s et votre mot de passe :%3$s"
3011
+
3012
+ #: ../features/email-confirmation/email-confirmation.php:623
3013
+