User registration & user profile – Profile Builder - Version 2.5.2

Version Description

  • Updated translation files
  • Added a filter to the submit button which can be used to add extra attributes: wppb_form_submit_extra_attr
  • Fixed a warnings inside pb-compatiblities.php file
  • Changed text for Email Confirmation description in admin area
  • Fixed a bug with the "Add field" button in Manage Fields that wasn't disabled after we added a field
  • Reorganized and added filters on form id and form class on hte Profile Builder forms
  • Removed Note message from PMS cross promotion saying that PMS does not work with admin approval / email confirmation
  • Modified multiple filters
Download this release

Release Info

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

Code changes from version 2.5.1 to 2.5.2

admin/general-settings.php CHANGED
@@ -59,7 +59,7 @@ function wppb_general_settings_content() {
59
  <option value="no" <?php if ( $wppb_generalSettings['emailConfirmation'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
60
  </select>
61
  <ul>
62
- <li class="description"><?php _e( 'This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using "Custom Redirects" addon.', 'profile-builder' ); ?></li>
63
  <?php if ( $wppb_generalSettings['emailConfirmation'] == 'yes' ) { ?>
64
  <li class="description dynamic1"><?php printf( __( 'You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/users.php?page=unconfirmed_emails">', '</a>' )?></li>
65
  <?php } ?>
59
  <option value="no" <?php if ( $wppb_generalSettings['emailConfirmation'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
60
  </select>
61
  <ul>
62
+ <li class="description"><?php _e( 'This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using "Custom Redirects" module.', 'profile-builder' ); ?></li>
63
  <?php if ( $wppb_generalSettings['emailConfirmation'] == 'yes' ) { ?>
64
  <li class="description dynamic1"><?php printf( __( 'You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/users.php?page=unconfirmed_emails">', '</a>' )?></li>
65
  <?php } ?>
admin/manage-fields.php CHANGED
@@ -1351,3 +1351,13 @@ function wppb_delete_user_map_markers( $user_id, $meta_name ) {
1351
  wp_cache_delete( $user_id, 'user_meta' );
1352
 
1353
  }
 
 
 
 
 
 
 
 
 
 
1351
  wp_cache_delete( $user_id, 'user_meta' );
1352
 
1353
  }
1354
+
1355
+ /**
1356
+ * Disable the add button again after we added a field
1357
+ */
1358
+ add_action( 'wck_ajax_add_form_wppb_manage_fields', 'wppb_redisable_the_add_button' );
1359
+ function wppb_redisable_the_add_button(){
1360
+ ?>
1361
+ <script>wppb_disable_add_entry_button ( '#wppb_manage_fields' );</script>
1362
+ <?php
1363
+ }
admin/pms-cross-promotion.php CHANGED
@@ -236,8 +236,8 @@ function wppb_pms_cross_promo() {
236
  */
237
  if ( !isset($_GET['page']) || $_GET['page'] != 'profile-builder-pms-promo'){
238
  new WPPB_Add_General_Notices('wppb_pms_cross_promo',
239
- sprintf(__('Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s.<br/><strong>Note:</strong> The "Subscription Plan" field will not work if you have Admin Approval and Email Confirmation set to YES %3$sDismiss%4$s', 'profile-builder'), "<a href='" . admin_url('options.php?page=profile-builder-pms-promo') . "'>", "</a>", "<a class='wppb-dismiss-notification' href='" . esc_url( add_query_arg('wppb_pms_cross_promo_dismiss_notification', '0') ) . "'>", "</a>"),
240
- 'pms-cross-promo');
241
  }
242
 
243
 
236
  */
237
  if ( !isset($_GET['page']) || $_GET['page'] != 'profile-builder-pms-promo'){
238
  new WPPB_Add_General_Notices('wppb_pms_cross_promo',
239
+ sprintf(__('Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s', 'profile-builder'), "<a href='" . admin_url('options.php?page=profile-builder-pms-promo') . "'>", "</a>", "<a class='wppb-dismiss-notification' href='" . esc_url( add_query_arg('wppb_pms_cross_promo_dismiss_notification', '0') ) . "'>", "</a>"),
240
+ 'pms-cross-promo');
241
  }
242
 
243
 
assets/lib/wck-api/wordpress-creation-kit.php CHANGED
@@ -466,7 +466,7 @@ class Wordpress_Creation_Kit_PB{
466
 
467
  $list = '';
468
  $list .= '<tr id="element_'.$element_id.'" ' . $wck_element_class . '>';
469
- $list .= apply_filters( 'wck_add_content_before_columns', '', $list );
470
  $list .= '<td style="text-align:center;vertical-align:middle;" class="wck-number">'. $entry_nr .'</td>';
471
  $list .= '<td class="wck-content"><ul>' . "\r\n";
472
 
@@ -534,7 +534,7 @@ class Wordpress_Creation_Kit_PB{
534
  $list .= '</td>';
535
  $list .= '<td style="text-align:center;vertical-align:middle;" class="wck-edit"><a href="javascript:void(0)" class="button-secondary" onclick=\'showUpdateFormMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($edit_nonce).'")\' title="'. __( 'Edit this item', 'profile-builder' ) .'">'. apply_filters( 'wck_edit_button', __('Edit','wck'), $meta ) .'</a></td>';
536
  $list .= '<td style="text-align:center;vertical-align:middle;" class="wck-delete"><a href="javascript:void(0)" class="mbdelete" onclick=\'removeMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($delete_nonce).'")\' title="'. __( 'Delete this item', 'profile-builder' ) .'">'. apply_filters( 'wck_delete_button', __( 'Delete', 'wck' ), $meta) .'</a></td>';
537
- $list .= apply_filters( 'wck_add_content_after_columns', '', $list );
538
 
539
  $list .= "</tr> \r\n";
540
 
@@ -1059,7 +1059,7 @@ class Wordpress_Creation_Kit_PB{
1059
  if( $this->args['context'] == 'post_meta' )
1060
  $results = get_post_meta($id, $meta, true);
1061
  else if ( $this->args['context'] == 'option' )
1062
- $results = get_option( apply_filters( 'wck_option_meta' , $meta, $element_id ) );
1063
 
1064
  $new_results = array();
1065
  if( !empty( $elements_id ) ){
466
 
467
  $list = '';
468
  $list .= '<tr id="element_'.$element_id.'" ' . $wck_element_class . '>';
469
+ $list .= apply_filters( 'wck_add_content_before_columns', '', $list, $meta );
470
  $list .= '<td style="text-align:center;vertical-align:middle;" class="wck-number">'. $entry_nr .'</td>';
471
  $list .= '<td class="wck-content"><ul>' . "\r\n";
472
 
534
  $list .= '</td>';
535
  $list .= '<td style="text-align:center;vertical-align:middle;" class="wck-edit"><a href="javascript:void(0)" class="button-secondary" onclick=\'showUpdateFormMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($edit_nonce).'")\' title="'. __( 'Edit this item', 'profile-builder' ) .'">'. apply_filters( 'wck_edit_button', __('Edit','wck'), $meta ) .'</a></td>';
536
  $list .= '<td style="text-align:center;vertical-align:middle;" class="wck-delete"><a href="javascript:void(0)" class="mbdelete" onclick=\'removeMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($delete_nonce).'")\' title="'. __( 'Delete this item', 'profile-builder' ) .'">'. apply_filters( 'wck_delete_button', __( 'Delete', 'wck' ), $meta) .'</a></td>';
537
+ $list .= apply_filters( 'wck_add_content_after_columns', '', $list, $meta );
538
 
539
  $list .= "</tr> \r\n";
540
 
1059
  if( $this->args['context'] == 'post_meta' )
1060
  $results = get_post_meta($id, $meta, true);
1061
  else if ( $this->args['context'] == 'option' )
1062
+ $results = get_option( apply_filters( 'wck_option_meta' , $meta ) );
1063
 
1064
  $new_results = array();
1065
  if( !empty( $elements_id ) ){
assets/misc/plugin-compatibilities.php CHANGED
@@ -261,15 +261,19 @@
261
  function wppb_remove_siteorigin_panels_content_filter()
262
  {
263
  global $post;
264
- if( has_shortcode( $post->post_content, 'wppb-register' ) || has_shortcode( $post->post_content, 'wppb-edit-profile' ) || has_shortcode( $post->post_content, 'wppb-login' ) || has_shortcode( $post->post_content, 'wppb-list-users' ) )
265
- remove_filter( 'the_content', 'siteorigin_panels_filter_content' );
 
 
266
  }
267
 
268
  add_filter( 'wpseo_head', 'wppb_add_back_siteorigin_panels_content_filter', 50 );
269
  function wppb_add_back_siteorigin_panels_content_filter()
270
  {
271
  global $post;
272
- if( has_shortcode( $post->post_content, 'wppb-register' ) || has_shortcode( $post->post_content, 'wppb-edit-profile' ) || has_shortcode( $post->post_content, 'wppb-login' ) || has_shortcode( $post->post_content, 'wppb-list-users' ) )
273
- add_filter( 'the_content', 'siteorigin_panels_filter_content' );
 
 
274
  }
275
  }
261
  function wppb_remove_siteorigin_panels_content_filter()
262
  {
263
  global $post;
264
+ if( !empty( $post->post_content ) ) {
265
+ if (has_shortcode($post->post_content, 'wppb-register') || has_shortcode($post->post_content, 'wppb-edit-profile') || has_shortcode($post->post_content, 'wppb-login') || has_shortcode($post->post_content, 'wppb-list-users'))
266
+ remove_filter('the_content', 'siteorigin_panels_filter_content');
267
+ }
268
  }
269
 
270
  add_filter( 'wpseo_head', 'wppb_add_back_siteorigin_panels_content_filter', 50 );
271
  function wppb_add_back_siteorigin_panels_content_filter()
272
  {
273
  global $post;
274
+ if( !empty( $post->post_content ) ) {
275
+ if (has_shortcode($post->post_content, 'wppb-register') || has_shortcode($post->post_content, 'wppb-edit-profile') || has_shortcode($post->post_content, 'wppb-login') || has_shortcode($post->post_content, 'wppb-list-users'))
276
+ add_filter('the_content', 'siteorigin_panels_filter_content');
277
+ }
278
  }
279
  }
features/functions.php CHANGED
@@ -787,6 +787,7 @@ add_filter('post_updated_messages','wppb_change_default_post_updated_messages',
787
  /* for meta-names with spaces in them PHP converts the space to underline in the $_POST */
788
  function wppb_handle_meta_name( $meta_name ){
789
  $meta_name = str_replace( ' ', '_', $meta_name );
 
790
  return $meta_name;
791
  }
792
 
@@ -867,7 +868,7 @@ function wppb_manage_required_attribute() {
867
  if ($wppb_shortcode_on_front) {
868
  ?>
869
  <script type="text/javascript">
870
- jQuery(document).on( "wppbAddRequiredAttributeEvent", "input[type='text'], input[type='email'], input[type='hidden'], textarea, select, input[type='checkbox'], input[type='radio']", wppbAddRequired );
871
  function wppbAddRequired(event) {
872
  var element = wppbEventTargetRequiredElement( event.target );
873
  if( jQuery( element ).attr( "wppb_cf_temprequired" ) ){
@@ -876,7 +877,7 @@ function wppb_manage_required_attribute() {
876
  }
877
  }
878
 
879
- jQuery(document).on( "wppbRemoveRequiredAttributeEvent", "input[type='text'], input[type='email'], input[type='hidden'], textarea, select, input[type='checkbox'], input[type='radio']",wppbRemoveRequired );
880
  function wppbRemoveRequired(event) {
881
  var element = wppbEventTargetRequiredElement( event.target );
882
  if ( jQuery( element ).attr( "required" ) ) {
@@ -885,7 +886,7 @@ function wppb_manage_required_attribute() {
885
  }
886
  }
887
 
888
- jQuery(document).on( "wppbToggleRequiredAttributeEvent", "input[type='text'], input[type='email'], input[type='hidden'], textarea, select, input[type='checkbox'], input[type='radio']",wppbToggleRequired );
889
  function wppbToggleRequired(event) {
890
  if ( jQuery( event.target ).attr( "required" ) ) {
891
  jQuery( event.target ).removeAttr( "required" );
787
  /* for meta-names with spaces in them PHP converts the space to underline in the $_POST */
788
  function wppb_handle_meta_name( $meta_name ){
789
  $meta_name = str_replace( ' ', '_', $meta_name );
790
+ $meta_name = str_replace( '.', '_', $meta_name );
791
  return $meta_name;
792
  }
793
 
868
  if ($wppb_shortcode_on_front) {
869
  ?>
870
  <script type="text/javascript">
871
+ jQuery(document).on( "wppbAddRequiredAttributeEvent", wppbAddRequired );
872
  function wppbAddRequired(event) {
873
  var element = wppbEventTargetRequiredElement( event.target );
874
  if( jQuery( element ).attr( "wppb_cf_temprequired" ) ){
877
  }
878
  }
879
 
880
+ jQuery(document).on( "wppbRemoveRequiredAttributeEvent", wppbRemoveRequired );
881
  function wppbRemoveRequired(event) {
882
  var element = wppbEventTargetRequiredElement( event.target );
883
  if ( jQuery( element ).attr( "required" ) ) {
886
  }
887
  }
888
 
889
+ jQuery(document).on( "wppbToggleRequiredAttributeEvent", wppbToggleRequired );
890
  function wppbToggleRequired(event) {
891
  if ( jQuery( event.target ).attr( "required" ) ) {
892
  jQuery( event.target ).removeAttr( "required" );
front-end/class-formbuilder.php CHANGED
@@ -381,9 +381,26 @@ class Profile_Builder_Form_Creator{
381
  $wppb_user_role_class = ' wppb-user-logged-out';
382
  }
383
  $wppb_user_role_class = apply_filters( 'wppb_user_role_form_class', $wppb_user_role_class );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
384
 
385
  ?>
386
- <form enctype="multipart/form-data" method="post" id="<?php if( $this->args['form_type'] == 'register' ) echo 'wppb-register-user'; else if( $this->args['form_type'] == 'edit_profile' ) echo 'wppb-edit-user'; if( isset($this->args['form_name']) && $this->args['form_name'] != "unspecified" ) echo '-' . $this->args['form_name']; ?>" class="wppb-user-forms<?php if( $this->args['form_type'] == 'register' ) echo ' wppb-register-user'; else if( $this->args['form_type'] == 'edit_profile' ) echo ' wppb-edit-user'; echo $wppb_user_role_class; ?>" action="<?php echo apply_filters( 'wppb_form_action', '' ); ?>">
387
  <?php
388
  do_action( 'wppb_form_args_before_output', $this->args );
389
 
@@ -405,7 +422,7 @@ class Profile_Builder_Form_Creator{
405
  elseif( $this->args['form_type'] == 'edit_profile' )
406
  $button_name = __( 'Update', 'profile-builder' );
407
  ?>
408
- <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 ); ?>" />
409
  <input name="action" type="hidden" id="action" value="<?php echo $this->args['form_type']; ?>" />
410
  <input name="form_name" type="hidden" id="form_name" value="<?php echo $this->args['form_name']; ?>" />
411
  <?php
381
  $wppb_user_role_class = ' wppb-user-logged-out';
382
  }
383
  $wppb_user_role_class = apply_filters( 'wppb_user_role_form_class', $wppb_user_role_class );
384
+
385
+ /* set up form id */
386
+ $wppb_form_id = '';
387
+ if( $this->args['form_type'] == 'register' )
388
+ $wppb_form_id = 'wppb-register-user';
389
+ elseif( $this->args['form_type'] == 'edit_profile' )
390
+ $wppb_form_id = 'wppb-edit-user';
391
+ if( isset($this->args['form_name']) && $this->args['form_name'] != "unspecified" )
392
+ $wppb_form_id .= '-' . $this->args['form_name'];
393
+
394
+ /* set up form class */
395
+ $wppb_form_class = 'wppb-user-forms';
396
+ if( $this->args['form_type'] == 'register' )
397
+ $wppb_form_class .= ' wppb-register-user';
398
+ elseif( $this->args['form_type'] == 'edit_profile' )
399
+ $wppb_form_class .= ' wppb-edit-user';
400
+ $wppb_form_class .= $wppb_user_role_class;
401
 
402
  ?>
403
+ <form enctype="multipart/form-data" method="post" id="<?php echo apply_filters( 'wppb_form_id', $wppb_form_id, $this ); ?>" class="<?php echo apply_filters( 'wppb_form_class', $wppb_form_class, $this ); ?>" action="<?php echo apply_filters( 'wppb_form_action', '' ); ?>">
404
  <?php
405
  do_action( 'wppb_form_args_before_output', $this->args );
406
 
422
  elseif( $this->args['form_type'] == 'edit_profile' )
423
  $button_name = __( 'Update', 'profile-builder' );
424
  ?>
425
+ <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 ); ?>" <?php echo apply_filters( 'wppb_form_submit_button_extra_attributes', '', $this->args['form_type'] );?>/>
426
  <input name="action" type="hidden" id="action" value="<?php echo $this->args['form_type']; ?>" />
427
  <input name="form_name" type="hidden" id="form_name" value="<?php echo $this->args['form_name']; ?>" />
428
  <?php
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://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.5.1
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
73
  *
74
  *
75
  */
76
- define('PROFILE_BUILDER_VERSION', '2.5.1' );
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: https://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.5.2
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
73
  *
74
  *
75
  */
76
+ define('PROFILE_BUILDER_VERSION', '2.5.2' );
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: user registration, user registration form, user fields, extra user fields,
5
 
6
  Requires at least: 3.1
7
  Tested up to: 4.6.1
8
- Stable tag: 2.5.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -150,6 +150,16 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
150
  10. Profile Builder Login Widget
151
 
152
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
153
  = 2.5.1 =
154
  * Improvements regarding caching plugins and user registration
155
  * Added a search field in the admin area on the Users with unconfirmed email address screen
5
 
6
  Requires at least: 3.1
7
  Tested up to: 4.6.1
8
+ Stable tag: 2.5.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
150
  10. Profile Builder Login Widget
151
 
152
  == Changelog ==
153
+ = 2.5.2 =
154
+ * Updated translation files
155
+ * Added a filter to the submit button which can be used to add extra attributes: wppb_form_submit_extra_attr
156
+ * Fixed a warnings inside pb-compatiblities.php file
157
+ * Changed text for Email Confirmation description in admin area
158
+ * Fixed a bug with the "Add field" button in Manage Fields that wasn't disabled after we added a field
159
+ * Reorganized and added filters on form id and form class on hte Profile Builder forms
160
+ * Removed Note message from PMS cross promotion saying that PMS does not work with admin approval / email confirmation
161
+ * Modified multiple filters
162
+
163
  = 2.5.1 =
164
  * Improvements regarding caching plugins and user registration
165
  * Added a search field in the admin area on the Users with unconfirmed email address screen
translation/profile-builder-da_DK.mo CHANGED
Binary file
translation/profile-builder-da_DK.po CHANGED
@@ -1,4056 +1,5564 @@
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 gå ind på 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 på %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 på %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 %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 %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 på 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') på %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 på \"%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 på {{site_name}}.</p>\n"
3461
- "<p>Brugernavn:{{username}}</p>\n"
3462
- "<p>E-mail:{{user_email}}</p>\n"
3463
- "<p>Administrator godkendelsesfunktione blev aktiveret 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 få 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 på {{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 på {{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' 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!"
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: 2016-07-12 14:10:03+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
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:239
14
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
15
+ msgstr ""
16
+
17
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
18
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
19
+ msgstr ""
20
+
21
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1269
22
+ msgid "View Map"
23
+ msgstr ""
24
+
25
+ #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
26
+ #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
27
+ #: pb-add-on-woocommerce/index.php:493
28
+ msgid "Address line 2"
29
+ msgstr ""
30
+
31
+ #: pb-add-on-woocommerce/index.php:256
32
+ msgid "Billing Fields"
33
+ msgstr ""
34
+
35
+ #: pb-add-on-woocommerce/index.php:256
36
+ msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
37
+ msgstr ""
38
+
39
+ #: pb-add-on-woocommerce/index.php:257
40
+ msgid "Billing Fields Order"
41
+ msgstr ""
42
+
43
+ #: pb-add-on-woocommerce/index.php:257
44
+ msgid "Save the billing fields order from the billing fields checkboxes"
45
+ msgstr ""
46
+
47
+ #: pb-add-on-woocommerce/index.php:258
48
+ msgid "Billing Fields Name"
49
+ msgstr ""
50
+
51
+ #: pb-add-on-woocommerce/index.php:258
52
+ msgid "Save the billing fields names"
53
+ msgstr ""
54
+
55
+ #: pb-add-on-woocommerce/index.php:275
56
+ msgid "Shipping Fields"
57
+ msgstr ""
58
+
59
+ #: pb-add-on-woocommerce/index.php:275
60
+ msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
61
+ msgstr ""
62
+
63
+ #: pb-add-on-woocommerce/index.php:276
64
+ msgid "Shipping Fields Order"
65
+ msgstr ""
66
+
67
+ #: pb-add-on-woocommerce/index.php:276
68
+ msgid "Save the shipping fields order from the billing fields checkboxes"
69
+ msgstr ""
70
+
71
+ #: pb-add-on-woocommerce/index.php:277
72
+ msgid "Shipping Fields Name"
73
+ msgstr ""
74
+
75
+ #: pb-add-on-woocommerce/index.php:277
76
+ msgid "Save the shipping fields names"
77
+ msgstr ""
78
+
79
+ #: pb-add-on-woocommerce/index.php:305
80
+ msgid "Field Name"
81
+ msgstr ""
82
+
83
+ #: pb-add-on-woocommerce/index.php:369
84
+ msgid "Click to edit "
85
+ msgstr ""
86
+
87
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
88
+ msgid "is not a valid phone number."
89
+ msgstr ""
90
+
91
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
92
+ msgid "is not a number."
93
+ msgstr ""
94
+
95
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
96
+ msgid "must be a multiplier of "
97
+ msgstr ""
98
+
99
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
100
+ msgid "must be a greater than or equal to "
101
+ msgstr ""
102
+
103
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
104
+ msgid "must be less than or equal to "
105
+ msgstr ""
106
+
107
+ #: profile-builder-2.0/admin/add-ons.php:103
108
+ msgid "Available in Hobbyist and Pro Versions"
109
+ msgstr ""
110
+
111
+ #: profile-builder-2.0/admin/add-ons.php:105
112
+ msgid "Available in All Versions"
113
+ msgstr ""
114
+
115
+ #: profile-builder-2.0/admin/add-ons.php:148
116
+ msgid "Learn More"
117
+ msgstr ""
118
+
119
+ #: profile-builder-2.0/admin/basic-info.php:99
120
+ msgid "Timepicker"
121
+ msgstr ""
122
+
123
+ #: profile-builder-2.0/admin/basic-info.php:100
124
+ msgid "Colorpicker"
125
+ msgstr ""
126
+
127
+ #: profile-builder-2.0/admin/basic-info.php:103
128
+ msgid "Currency Select"
129
+ msgstr ""
130
+
131
+ #: profile-builder-2.0/admin/basic-info.php:109
132
+ msgid "Number"
133
+ msgstr ""
134
+
135
+ #: profile-builder-2.0/admin/basic-info.php:114
136
+ msgid "Validation"
137
+ msgstr ""
138
+
139
+ #: profile-builder-2.0/admin/basic-info.php:115
140
+ msgid "Map"
141
+ msgstr ""
142
+
143
+ #: profile-builder-2.0/admin/basic-info.php:116
144
+ msgid "HTML"
145
+ msgstr ""
146
+
147
+ #: profile-builder-2.0/admin/basic-info.php:162
148
+ #: profile-builder-2.0/modules/modules.php:117
149
+ msgid "Repeater Fields"
150
+ msgstr ""
151
+
152
+ #: profile-builder-2.0/admin/basic-info.php:163
153
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
154
+ msgstr ""
155
+
156
+ #: profile-builder-2.0/admin/general-settings.php:62
157
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
158
+ msgstr ""
159
+
160
+ #: profile-builder-2.0/admin/manage-fields.php:115
161
+ msgid "Use this in conjunction 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 unique)<br/>Changing this might take long in case of a very big user-count"
162
+ msgstr ""
163
+
164
+ #: profile-builder-2.0/admin/manage-fields.php:138
165
+ msgid "Show Currency Symbol"
166
+ msgstr ""
167
+
168
+ #: profile-builder-2.0/admin/manage-fields.php:138
169
+ msgid "Whether the currency symbol should be displayed after the currency name in the select option."
170
+ msgstr ""
171
+
172
+ #: profile-builder-2.0/admin/manage-fields.php:139
173
+ msgid "Show Post Type"
174
+ msgstr ""
175
+
176
+ #: profile-builder-2.0/admin/manage-fields.php:139
177
+ msgid "Posts from what post type will be displayed in the select."
178
+ msgstr ""
179
+
180
+ #: profile-builder-2.0/admin/manage-fields.php:140
181
+ msgid "Allowable Values"
182
+ msgstr ""
183
+
184
+ #: profile-builder-2.0/admin/manage-fields.php:140
185
+ msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
186
+ msgstr ""
187
+
188
+ #: profile-builder-2.0/admin/manage-fields.php:141
189
+ msgid "Error Message"
190
+ msgstr ""
191
+
192
+ #: profile-builder-2.0/admin/manage-fields.php:141
193
+ msgid "Set a custom error message that will be displayed to the user."
194
+ msgstr ""
195
+
196
+ #: profile-builder-2.0/admin/manage-fields.php:142
197
+ msgid "Time Format"
198
+ msgstr ""
199
+
200
+ #: profile-builder-2.0/admin/manage-fields.php:142
201
+ msgid "Specify the time format."
202
+ msgstr ""
203
+
204
+ #: profile-builder-2.0/admin/manage-fields.php:143
205
+ msgid "Google Maps API Key"
206
+ msgstr ""
207
+
208
+ #: profile-builder-2.0/admin/manage-fields.php:143
209
+ msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
210
+ msgstr ""
211
+
212
+ #: profile-builder-2.0/admin/manage-fields.php:144
213
+ msgid "Default Latitude"
214
+ msgstr ""
215
+
216
+ #: profile-builder-2.0/admin/manage-fields.php:144
217
+ msgid "The latitude at which the map should be displayed when no pins are attached."
218
+ msgstr ""
219
+
220
+ #: profile-builder-2.0/admin/manage-fields.php:145
221
+ msgid "Default Longitude"
222
+ msgstr ""
223
+
224
+ #: profile-builder-2.0/admin/manage-fields.php:145
225
+ msgid "The longitude at which the map should be displayed when no pins are attached."
226
+ msgstr ""
227
+
228
+ #: profile-builder-2.0/admin/manage-fields.php:146
229
+ msgid "Default Zoom Level"
230
+ msgstr ""
231
+
232
+ #: profile-builder-2.0/admin/manage-fields.php:146
233
+ msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
234
+ msgstr ""
235
+
236
+ #: profile-builder-2.0/admin/manage-fields.php:147
237
+ msgid "Map Height"
238
+ msgstr ""
239
+
240
+ #: profile-builder-2.0/admin/manage-fields.php:147
241
+ msgid "The height of the map."
242
+ msgstr ""
243
+
244
+ #: profile-builder-2.0/admin/manage-fields.php:149
245
+ msgid "HTML Content"
246
+ msgstr ""
247
+
248
+ #: profile-builder-2.0/admin/manage-fields.php:149
249
+ msgid "Add your HTML (or text) content"
250
+ msgstr ""
251
+
252
+ #: profile-builder-2.0/admin/manage-fields.php:150
253
+ msgid "Phone Format"
254
+ msgstr ""
255
+
256
+ #: profile-builder-2.0/admin/manage-fields.php:150
257
+ msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
258
+ msgstr ""
259
+
260
+ #: profile-builder-2.0/admin/manage-fields.php:150
261
+ msgid "Eg. (###) ###-####"
262
+ msgstr ""
263
+
264
+ #: profile-builder-2.0/admin/manage-fields.php:150
265
+ msgid "Empty field won't check for correct phone number."
266
+ msgstr ""
267
+
268
+ #: profile-builder-2.0/admin/manage-fields.php:151
269
+ msgid "Heading Tag"
270
+ msgstr ""
271
+
272
+ #: profile-builder-2.0/admin/manage-fields.php:151
273
+ msgid "Change heading field size on front-end forms"
274
+ msgstr ""
275
+
276
+ #: profile-builder-2.0/admin/manage-fields.php:152
277
+ msgid "Min Number Value"
278
+ msgstr ""
279
+
280
+ #: profile-builder-2.0/admin/manage-fields.php:152
281
+ msgid "Min allowed number value (0 to allow only positive numbers)"
282
+ msgstr ""
283
+
284
+ #: profile-builder-2.0/admin/manage-fields.php:152
285
+ msgid "Leave it empty for no min value"
286
+ msgstr ""
287
+
288
+ #: profile-builder-2.0/admin/manage-fields.php:153
289
+ msgid "Max Number Value"
290
+ msgstr ""
291
+
292
+ #: profile-builder-2.0/admin/manage-fields.php:153
293
+ msgid "Max allowed number value (0 to allow only negative numbers)"
294
+ msgstr ""
295
+
296
+ #: profile-builder-2.0/admin/manage-fields.php:153
297
+ msgid "Leave it empty for no max value"
298
+ msgstr ""
299
+
300
+ #: profile-builder-2.0/admin/manage-fields.php:154
301
+ msgid "Number Step Value"
302
+ msgstr ""
303
+
304
+ #: profile-builder-2.0/admin/manage-fields.php:154
305
+ msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
306
+ msgstr ""
307
+
308
+ #: profile-builder-2.0/admin/manage-fields.php:154
309
+ msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
310
+ msgstr ""
311
+
312
+ #: profile-builder-2.0/admin/manage-fields.php:154
313
+ msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
314
+ msgstr ""
315
+
316
+ #: profile-builder-2.0/admin/manage-fields.php:154
317
+ msgid "Leave it empty for no restriction"
318
+ msgstr ""
319
+
320
+ #: profile-builder-2.0/admin/manage-fields.php:555
321
+ msgid "Albania Lek"
322
+ msgstr ""
323
+
324
+ #: profile-builder-2.0/admin/manage-fields.php:556
325
+ msgid "Afghanistan Afghani"
326
+ msgstr ""
327
+
328
+ #: profile-builder-2.0/admin/manage-fields.php:557
329
+ msgid "Argentina Peso"
330
+ msgstr ""
331
+
332
+ #: profile-builder-2.0/admin/manage-fields.php:558
333
+ msgid "Aruba Guilder"
334
+ msgstr ""
335
+
336
+ #: profile-builder-2.0/admin/manage-fields.php:559
337
+ msgid "Australia Dollar"
338
+ msgstr ""
339
+
340
+ #: profile-builder-2.0/admin/manage-fields.php:560
341
+ msgid "Azerbaijan New Manat"
342
+ msgstr ""
343
+
344
+ #: profile-builder-2.0/admin/manage-fields.php:561
345
+ msgid "Bahamas Dollar"
346
+ msgstr ""
347
+
348
+ #: profile-builder-2.0/admin/manage-fields.php:562
349
+ msgid "Barbados Dollar"
350
+ msgstr ""
351
+
352
+ #: profile-builder-2.0/admin/manage-fields.php:563
353
+ msgid "Bangladeshi taka"
354
+ msgstr ""
355
+
356
+ #: profile-builder-2.0/admin/manage-fields.php:564
357
+ msgid "Belarus Ruble"
358
+ msgstr ""
359
+
360
+ #: profile-builder-2.0/admin/manage-fields.php:565
361
+ msgid "Belize Dollar"
362
+ msgstr ""
363
+
364
+ #: profile-builder-2.0/admin/manage-fields.php:566
365
+ msgid "Bermuda Dollar"
366
+ msgstr ""
367
+
368
+ #: profile-builder-2.0/admin/manage-fields.php:567
369
+ msgid "Bolivia Boliviano"
370
+ msgstr ""
371
+
372
+ #: profile-builder-2.0/admin/manage-fields.php:568
373
+ msgid "Bosnia and Herzegovina Convertible Marka"
374
+ msgstr ""
375
+
376
+ #: profile-builder-2.0/admin/manage-fields.php:569
377
+ msgid "Botswana Pula"
378
+ msgstr ""
379
+
380
+ #: profile-builder-2.0/admin/manage-fields.php:570
381
+ msgid "Bulgaria Lev"
382
+ msgstr ""
383
+
384
+ #: profile-builder-2.0/admin/manage-fields.php:571
385
+ msgid "Brazil Real"
386
+ msgstr ""
387
+
388
+ #: profile-builder-2.0/admin/manage-fields.php:572
389
+ msgid "Brunei Darussalam Dollar"
390
+ msgstr ""
391
+
392
+ #: profile-builder-2.0/admin/manage-fields.php:573
393
+ msgid "Cambodia Riel"
394
+ msgstr ""
395
+
396
+ #: profile-builder-2.0/admin/manage-fields.php:574
397
+ msgid "Canada Dollar"
398
+ msgstr ""
399
+
400
+ #: profile-builder-2.0/admin/manage-fields.php:575
401
+ msgid "Cayman Islands Dollar"
402
+ msgstr ""
403
+
404
+ #: profile-builder-2.0/admin/manage-fields.php:576
405
+ msgid "Chile Peso"
406
+ msgstr ""
407
+
408
+ #: profile-builder-2.0/admin/manage-fields.php:577
409
+ msgid "China Yuan Renminbi"
410
+ msgstr ""
411
+
412
+ #: profile-builder-2.0/admin/manage-fields.php:578
413
+ msgid "Colombia Peso"
414
+ msgstr ""
415
+
416
+ #: profile-builder-2.0/admin/manage-fields.php:579
417
+ msgid "Costa Rica Colon"
418
+ msgstr ""
419
+
420
+ #: profile-builder-2.0/admin/manage-fields.php:580
421
+ msgid "Croatia Kuna"
422
+ msgstr ""
423
+
424
+ #: profile-builder-2.0/admin/manage-fields.php:581
425
+ msgid "Cuba Peso"
426
+ msgstr ""
427
+
428
+ #: profile-builder-2.0/admin/manage-fields.php:582
429
+ msgid "Czech Republic Koruna"
430
+ msgstr ""
431
+
432
+ #: profile-builder-2.0/admin/manage-fields.php:583
433
+ msgid "Denmark Krone"
434
+ msgstr ""
435
+
436
+ #: profile-builder-2.0/admin/manage-fields.php:584
437
+ msgid "Dominican Republic Peso"
438
+ msgstr ""
439
+
440
+ #: profile-builder-2.0/admin/manage-fields.php:585
441
+ msgid "East Caribbean Dollar"
442
+ msgstr ""
443
+
444
+ #: profile-builder-2.0/admin/manage-fields.php:586
445
+ msgid "Egypt Pound"
446
+ msgstr ""
447
+
448
+ #: profile-builder-2.0/admin/manage-fields.php:587
449
+ msgid "El Salvador Colon"
450
+ msgstr ""
451
+
452
+ #: profile-builder-2.0/admin/manage-fields.php:588
453
+ msgid "Estonia Kroon"
454
+ msgstr ""
455
+
456
+ #: profile-builder-2.0/admin/manage-fields.php:589
457
+ msgid "Euro"
458
+ msgstr ""
459
+
460
+ #: profile-builder-2.0/admin/manage-fields.php:590
461
+ msgid "Falkland Islands (Malvinas) Pound"
462
+ msgstr ""
463
+
464
+ #: profile-builder-2.0/admin/manage-fields.php:591
465
+ msgid "Fiji Dollar"
466
+ msgstr ""
467
+
468
+ #: profile-builder-2.0/admin/manage-fields.php:592
469
+ msgid "Ghana Cedis"
470
+ msgstr ""
471
+
472
+ #: profile-builder-2.0/admin/manage-fields.php:593
473
+ msgid "Gibraltar Pound"
474
+ msgstr ""
475
+
476
+ #: profile-builder-2.0/admin/manage-fields.php:594
477
+ msgid "Guatemala Quetzal"
478
+ msgstr ""
479
+
480
+ #: profile-builder-2.0/admin/manage-fields.php:595
481
+ msgid "Guernsey Pound"
482
+ msgstr ""
483
+
484
+ #: profile-builder-2.0/admin/manage-fields.php:596
485
+ msgid "Guyana Dollar"
486
+ msgstr ""
487
+
488
+ #: profile-builder-2.0/admin/manage-fields.php:597
489
+ msgid "Honduras Lempira"
490
+ msgstr ""
491
+
492
+ #: profile-builder-2.0/admin/manage-fields.php:598
493
+ msgid "Hong Kong Dollar"
494
+ msgstr ""
495
+
496
+ #: profile-builder-2.0/admin/manage-fields.php:599
497
+ msgid "Hungary Forint"
498
+ msgstr ""
499
+
500
+ #: profile-builder-2.0/admin/manage-fields.php:600
501
+ msgid "Iceland Krona"
502
+ msgstr ""
503
+
504
+ #: profile-builder-2.0/admin/manage-fields.php:601
505
+ msgid "India Rupee"
506
+ msgstr ""
507
+
508
+ #: profile-builder-2.0/admin/manage-fields.php:602
509
+ msgid "Indonesia Rupiah"
510
+ msgstr ""
511
+
512
+ #: profile-builder-2.0/admin/manage-fields.php:603
513
+ msgid "Iran Rial"
514
+ msgstr ""
515
+
516
+ #: profile-builder-2.0/admin/manage-fields.php:604
517
+ msgid "Isle of Man Pound"
518
+ msgstr ""
519
+
520
+ #: profile-builder-2.0/admin/manage-fields.php:605
521
+ msgid "Israel Shekel"
522
+ msgstr ""
523
+
524
+ #: profile-builder-2.0/admin/manage-fields.php:606
525
+ msgid "Jamaica Dollar"
526
+ msgstr ""
527
+
528
+ #: profile-builder-2.0/admin/manage-fields.php:607
529
+ msgid "Japan Yen"
530
+ msgstr ""
531
+
532
+ #: profile-builder-2.0/admin/manage-fields.php:608
533
+ msgid "Jersey Pound"
534
+ msgstr ""
535
+
536
+ #: profile-builder-2.0/admin/manage-fields.php:609
537
+ msgid "Kazakhstan Tenge"
538
+ msgstr ""
539
+
540
+ #: profile-builder-2.0/admin/manage-fields.php:610
541
+ msgid "Korea (North) Won"
542
+ msgstr ""
543
+
544
+ #: profile-builder-2.0/admin/manage-fields.php:611
545
+ msgid "Korea (South) Won"
546
+ msgstr ""
547
+
548
+ #: profile-builder-2.0/admin/manage-fields.php:612
549
+ msgid "Kyrgyzstan Som"
550
+ msgstr ""
551
+
552
+ #: profile-builder-2.0/admin/manage-fields.php:613
553
+ msgid "Laos Kip"
554
+ msgstr ""
555
+
556
+ #: profile-builder-2.0/admin/manage-fields.php:614
557
+ msgid "Latvia Lat"
558
+ msgstr ""
559
+
560
+ #: profile-builder-2.0/admin/manage-fields.php:615
561
+ msgid "Lebanon Pound"
562
+ msgstr ""
563
+
564
+ #: profile-builder-2.0/admin/manage-fields.php:616
565
+ msgid "Liberia Dollar"
566
+ msgstr ""
567
+
568
+ #: profile-builder-2.0/admin/manage-fields.php:617
569
+ msgid "Lithuania Litas"
570
+ msgstr ""
571
+
572
+ #: profile-builder-2.0/admin/manage-fields.php:618
573
+ msgid "Macedonia Denar"
574
+ msgstr ""
575
+
576
+ #: profile-builder-2.0/admin/manage-fields.php:619
577
+ msgid "Malaysia Ringgit"
578
+ msgstr ""
579
+
580
+ #: profile-builder-2.0/admin/manage-fields.php:620
581
+ msgid "Mauritius Rupee"
582
+ msgstr ""
583
+
584
+ #: profile-builder-2.0/admin/manage-fields.php:621
585
+ msgid "Mexico Peso"
586
+ msgstr ""
587
+
588
+ #: profile-builder-2.0/admin/manage-fields.php:622
589
+ msgid "Mongolia Tughrik"
590
+ msgstr ""
591
+
592
+ #: profile-builder-2.0/admin/manage-fields.php:623
593
+ msgid "Mozambique Metical"
594
+ msgstr ""
595
+
596
+ #: profile-builder-2.0/admin/manage-fields.php:624
597
+ msgid "Namibia Dollar"
598
+ msgstr ""
599
+
600
+ #: profile-builder-2.0/admin/manage-fields.php:625
601
+ msgid "Nepal Rupee"
602
+ msgstr ""
603
+
604
+ #: profile-builder-2.0/admin/manage-fields.php:626
605
+ msgid "Netherlands Antilles Guilder"
606
+ msgstr ""
607
+
608
+ #: profile-builder-2.0/admin/manage-fields.php:627
609
+ msgid "New Zealand Dollar"
610
+ msgstr ""
611
+
612
+ #: profile-builder-2.0/admin/manage-fields.php:628
613
+ msgid "Nicaragua Cordoba"
614
+ msgstr ""
615
+
616
+ #: profile-builder-2.0/admin/manage-fields.php:629
617
+ msgid "Nigeria Naira"
618
+ msgstr ""
619
+
620
+ #: profile-builder-2.0/admin/manage-fields.php:630
621
+ msgid "Norway Krone"
622
+ msgstr ""
623
+
624
+ #: profile-builder-2.0/admin/manage-fields.php:631
625
+ msgid "Oman Rial"
626
+ msgstr ""
627
+
628
+ #: profile-builder-2.0/admin/manage-fields.php:632
629
+ msgid "Pakistan Rupee"
630
+ msgstr ""
631
+
632
+ #: profile-builder-2.0/admin/manage-fields.php:633
633
+ msgid "Panama Balboa"
634
+ msgstr ""
635
+
636
+ #: profile-builder-2.0/admin/manage-fields.php:634
637
+ msgid "Paraguay Guarani"
638
+ msgstr ""
639
+
640
+ #: profile-builder-2.0/admin/manage-fields.php:635
641
+ msgid "Peru Nuevo Sol"
642
+ msgstr ""
643
+
644
+ #: profile-builder-2.0/admin/manage-fields.php:636
645
+ msgid "Philippines Peso"
646
+ msgstr ""
647
+
648
+ #: profile-builder-2.0/admin/manage-fields.php:637
649
+ msgid "Poland Zloty"
650
+ msgstr ""
651
+
652
+ #: profile-builder-2.0/admin/manage-fields.php:638
653
+ msgid "Qatar Riyal"
654
+ msgstr ""
655
+
656
+ #: profile-builder-2.0/admin/manage-fields.php:639
657
+ msgid "Romania New Leu"
658
+ msgstr ""
659
+
660
+ #: profile-builder-2.0/admin/manage-fields.php:640
661
+ msgid "Russia Ruble"
662
+ msgstr ""
663
+
664
+ #: profile-builder-2.0/admin/manage-fields.php:641
665
+ msgid "Saint Helena Pound"
666
+ msgstr ""
667
+
668
+ #: profile-builder-2.0/admin/manage-fields.php:642
669
+ msgid "Saudi Arabia Riyal"
670
+ msgstr ""
671
+
672
+ #: profile-builder-2.0/admin/manage-fields.php:643
673
+ msgid "Serbia Dinar"
674
+ msgstr ""
675
+
676
+ #: profile-builder-2.0/admin/manage-fields.php:644
677
+ msgid "Seychelles Rupee"
678
+ msgstr ""
679
+
680
+ #: profile-builder-2.0/admin/manage-fields.php:645
681
+ msgid "Singapore Dollar"
682
+ msgstr ""
683
+
684
+ #: profile-builder-2.0/admin/manage-fields.php:646
685
+ msgid "Solomon Islands Dollar"
686
+ msgstr ""
687
+
688
+ #: profile-builder-2.0/admin/manage-fields.php:647
689
+ msgid "Somalia Shilling"
690
+ msgstr ""
691
+
692
+ #: profile-builder-2.0/admin/manage-fields.php:648
693
+ msgid "South Africa Rand"
694
+ msgstr ""
695
+
696
+ #: profile-builder-2.0/admin/manage-fields.php:649
697
+ msgid "Sri Lanka Rupee"
698
+ msgstr ""
699
+
700
+ #: profile-builder-2.0/admin/manage-fields.php:650
701
+ msgid "Sweden Krona"
702
+ msgstr ""
703
+
704
+ #: profile-builder-2.0/admin/manage-fields.php:651
705
+ msgid "Switzerland Franc"
706
+ msgstr ""
707
+
708
+ #: profile-builder-2.0/admin/manage-fields.php:652
709
+ msgid "Suriname Dollar"
710
+ msgstr ""
711
+
712
+ #: profile-builder-2.0/admin/manage-fields.php:653
713
+ msgid "Syria Pound"
714
+ msgstr ""
715
+
716
+ #: profile-builder-2.0/admin/manage-fields.php:654
717
+ msgid "Taiwan New Dollar"
718
+ msgstr ""
719
+
720
+ #: profile-builder-2.0/admin/manage-fields.php:655
721
+ msgid "Thailand Baht"
722
+ msgstr ""
723
+
724
+ #: profile-builder-2.0/admin/manage-fields.php:656
725
+ msgid "Trinidad and Tobago Dollar"
726
+ msgstr ""
727
+
728
+ #: profile-builder-2.0/admin/manage-fields.php:657
729
+ #: profile-builder-2.0/admin/manage-fields.php:658
730
+ msgid "Turkey Lira"
731
+ msgstr ""
732
+
733
+ #: profile-builder-2.0/admin/manage-fields.php:659
734
+ msgid "Tuvalu Dollar"
735
+ msgstr ""
736
+
737
+ #: profile-builder-2.0/admin/manage-fields.php:660
738
+ msgid "Ukraine Hryvna"
739
+ msgstr ""
740
+
741
+ #: profile-builder-2.0/admin/manage-fields.php:661
742
+ msgid "United Kingdom Pound"
743
+ msgstr ""
744
+
745
+ #: profile-builder-2.0/admin/manage-fields.php:662
746
+ msgid "Uganda Shilling"
747
+ msgstr ""
748
+
749
+ #: profile-builder-2.0/admin/manage-fields.php:663
750
+ msgid "US Dollar"
751
+ msgstr ""
752
+
753
+ #: profile-builder-2.0/admin/manage-fields.php:664
754
+ msgid "Uruguay Peso"
755
+ msgstr ""
756
+
757
+ #: profile-builder-2.0/admin/manage-fields.php:665
758
+ msgid "Uzbekistan Som"
759
+ msgstr ""
760
+
761
+ #: profile-builder-2.0/admin/manage-fields.php:666
762
+ msgid "Venezuela Bolivar"
763
+ msgstr ""
764
+
765
+ #: profile-builder-2.0/admin/manage-fields.php:667
766
+ msgid "Viet Nam Dong"
767
+ msgstr ""
768
+
769
+ #: profile-builder-2.0/admin/manage-fields.php:668
770
+ msgid "Yemen Rial"
771
+ msgstr ""
772
+
773
+ #: profile-builder-2.0/admin/manage-fields.php:669
774
+ msgid "Zimbabwe Dollar"
775
+ msgstr ""
776
+
777
+ #: profile-builder-2.0/admin/manage-fields.php:1080
778
+ msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
779
+ msgstr ""
780
+
781
+ #: profile-builder-2.0/admin/manage-fields.php:1296
782
+ msgid "Search Location"
783
+ msgstr ""
784
+
785
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
786
+ msgid "You are not allowed to do this."
787
+ msgstr ""
788
+
789
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
790
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
791
+ msgid "Search Users"
792
+ msgstr ""
793
+
794
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
795
+ msgid "Conditional Logic"
796
+ msgstr ""
797
+
798
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
799
+ msgid "Conditional Rules"
800
+ msgstr ""
801
+
802
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:432
803
+ msgid "This field has conditional logic enabled."
804
+ msgstr ""
805
+
806
+ #: profile-builder-2.0/features/functions.php:712
807
+ msgid "Incorrect phone number"
808
+ msgstr ""
809
+
810
+ #: profile-builder-2.0/front-end/class-formbuilder.php:120
811
+ msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
812
+ msgstr ""
813
+
814
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
815
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
816
+ msgid "Please add the Google Maps API key for this field."
817
+ msgstr ""
818
+
819
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
820
+ msgid "Something went wrong. Please try again."
821
+ msgstr ""
822
+
823
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
824
+ msgid "Please enter numbers only"
825
+ msgstr ""
826
+
827
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
828
+ msgid "Value must be a multiplier of %1$s"
829
+ msgstr ""
830
+
831
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
832
+ msgid "Value must be greater than or equal to %1$s"
833
+ msgstr ""
834
+
835
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
836
+ msgid "Value must be less than or equal to %1$s"
837
+ msgstr ""
838
+
839
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
840
+ msgid "Required phone number format: "
841
+ msgstr ""
842
+
843
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
844
+ msgid "Bolivia, __( Plurinational State of"
845
+ msgstr ""
846
+
847
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
848
+ msgid "Bonaire, __( Sint Eustatius and Saba"
849
+ msgstr ""
850
+
851
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
852
+ msgid "Brunei Darussalam"
853
+ msgstr ""
854
+
855
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
856
+ msgid "Cabo Verde"
857
+ msgstr ""
858
+
859
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
860
+ msgid "Cocos (Keeling) Islands"
861
+ msgstr ""
862
+
863
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
864
+ msgid "Congo"
865
+ msgstr ""
866
+
867
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
868
+ msgid "Congo, __( the Democratic Republic of the"
869
+ msgstr ""
870
+
871
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
872
+ msgid "Cote dIvoire"
873
+ msgstr ""
874
+
875
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
876
+ msgid "Falkland Islands (Malvinas)"
877
+ msgstr ""
878
+
879
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
880
+ msgid "Holy See (Vatican City State)"
881
+ msgstr ""
882
+
883
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
884
+ msgid "Iran, __( Islamic Republic of"
885
+ msgstr ""
886
+
887
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
888
+ msgid "Korea, __( Democratic Peoples Republic of"
889
+ msgstr ""
890
+
891
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
892
+ msgid "Korea, __( Republic of"
893
+ msgstr ""
894
+
895
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
896
+ msgid "Lao Peoples Democratic Republic"
897
+ msgstr ""
898
+
899
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
900
+ msgid "Macedonia, __( the former Yugoslav Republic of"
901
+ msgstr ""
902
+
903
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
904
+ msgid "Micronesia, __( Federated States of"
905
+ msgstr ""
906
+
907
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
908
+ msgid "Moldova, __( Republic of"
909
+ msgstr ""
910
+
911
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
912
+ msgid "Palestine, __( State of"
913
+ msgstr ""
914
+
915
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
916
+ msgid "Russian Federation"
917
+ msgstr ""
918
+
919
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
920
+ msgid "Saint Helena, __( Ascension and Tristan da Cunha"
921
+ msgstr ""
922
+
923
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
924
+ msgid "Saint Martin (French part)"
925
+ msgstr ""
926
+
927
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
928
+ msgid "Sint Maarten (Dutch part)"
929
+ msgstr ""
930
+
931
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
932
+ msgid "Syrian Arab Republic"
933
+ msgstr ""
934
+
935
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
936
+ msgid "Taiwan, __( Province of China"
937
+ msgstr ""
938
+
939
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
940
+ msgid "Tanzania, __( United Republic of"
941
+ msgstr ""
942
+
943
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
944
+ msgid "Timor-Leste"
945
+ msgstr ""
946
+
947
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
948
+ msgid "Venezuela, __( Bolivarian Republic of"
949
+ msgstr ""
950
+
951
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
952
+ msgid "Viet Nam"
953
+ msgstr ""
954
+
955
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
956
+ msgid "Virgin Islands, __( British"
957
+ msgstr ""
958
+
959
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
960
+ msgid "Virgin Islands, __( U.S."
961
+ msgstr ""
962
+
963
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
964
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:179
965
+ msgid "User Fields Tags"
966
+ msgstr ""
967
+
968
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:462
969
+ msgid "The users selected password at signup"
970
+ msgstr ""
971
+
972
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
973
+ msgid "[{{site_name}}] Notice of Email Change"
974
+ msgstr ""
975
+
976
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
977
+ msgid "Changed Email Address Notification"
978
+ msgstr ""
979
+
980
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
981
+ msgid "Limit"
982
+ msgstr ""
983
+
984
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
985
+ msgid "Enable limit to the number of fields to be generated by users in front end forms "
986
+ msgstr ""
987
+
988
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
989
+ msgid "General Limit"
990
+ msgstr ""
991
+
992
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
993
+ msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
994
+ msgstr ""
995
+
996
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
997
+ msgid "Limit reached message"
998
+ msgstr ""
999
+
1000
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1001
+ msgid "The maximum number of fields has been reached."
1002
+ msgstr ""
1003
+
1004
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1005
+ msgid "The popup message to display when the limit of repeater groups is reached."
1006
+ msgstr ""
1007
+
1008
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1009
+ msgid "Limit per Role"
1010
+ msgstr ""
1011
+
1012
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1013
+ msgid "Leave 0 for unlimited."
1014
+ msgstr ""
1015
+
1016
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1017
+ msgid "Repeated field group"
1018
+ msgstr ""
1019
+
1020
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1021
+ msgid "Manage field or group of fields that will be repeatable."
1022
+ msgstr ""
1023
+
1024
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:258
1025
+ msgid "Edit field group"
1026
+ msgstr ""
1027
+
1028
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1029
+ msgid "Repeatable fields saved!"
1030
+ msgstr ""
1031
+
1032
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:276
1033
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:325
1034
+ msgid "Please enter a unique field title.\n"
1035
+ msgstr ""
1036
+
1037
+ #: profile-builder-2.0/modules/repeater-field/repeater-field.php:258
1038
+ msgid "Are you sure you want to delete this?"
1039
+ msgstr ""
1040
+
1041
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:185
1042
+ msgid "Sort Tags"
1043
+ msgstr ""
1044
+
1045
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:193
1046
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2178
1047
+ msgid "Faceted Menus"
1048
+ msgstr ""
1049
+
1050
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:194
1051
+ msgid "User Count"
1052
+ msgstr ""
1053
+
1054
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1495
1055
+ msgid "Show All"
1056
+ msgstr ""
1057
+
1058
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1538
1059
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1560
1060
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1613
1061
+ msgid "No options available"
1062
+ msgstr ""
1063
+
1064
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1753
1065
+ msgid "Remove All Filters"
1066
+ msgstr ""
1067
+
1068
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1069
+ msgid "Label"
1070
+ msgstr ""
1071
+
1072
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1073
+ msgid "Choose the facet name that appears on the frontend"
1074
+ msgstr ""
1075
+
1076
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1077
+ msgid "Facet Type"
1078
+ msgstr ""
1079
+
1080
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1081
+ msgid "Choose the facet menu type"
1082
+ msgstr ""
1083
+
1084
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1085
+ msgid "Facet Meta"
1086
+ msgstr ""
1087
+
1088
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1089
+ msgid "Choose the meta field for the facet menu"
1090
+ msgstr ""
1091
+
1092
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1093
+ msgid "Behaviour"
1094
+ msgstr ""
1095
+
1096
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1097
+ msgid "Narrow the results"
1098
+ msgstr ""
1099
+
1100
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1101
+ msgid "Expand the results"
1102
+ msgstr ""
1103
+
1104
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1105
+ msgid "Choose how multiple selections affect the results"
1106
+ msgstr ""
1107
+
1108
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1109
+ msgid "Visible choices"
1110
+ msgstr ""
1111
+
1112
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1113
+ msgid "Show a toggle link after this many choices. Leave blank for all"
1114
+ msgstr ""
1115
+
1116
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1117
+ msgid "Search Fields"
1118
+ msgstr ""
1119
+
1120
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1121
+ msgid "Choose the fields in which the Search Field will look in"
1122
+ msgstr ""
1123
+
1124
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2200
1125
+ msgid "Search Settings"
1126
+ msgstr ""
1127
+
1128
+ #: pb-add-on-woocommerce/billing-fields.php:8
1129
+ #: pb-add-on-woocommerce/shipping-fields.php:8
1130
+ msgid "Company Name"
1131
+ msgstr "Firmanavn"
1132
+
1133
+ #: pb-add-on-woocommerce/billing-fields.php:9
1134
+ #: pb-add-on-woocommerce/shipping-fields.php:9
1135
+ msgid "Address"
1136
+ msgstr "Adresse"
1137
+
1138
+ #: pb-add-on-woocommerce/billing-fields.php:5
1139
+ #: pb-add-on-woocommerce/shipping-fields.php:5
1140
+ msgid "Country"
1141
+ msgstr "Land"
1142
+
1143
+ #: pb-add-on-woocommerce/billing-fields.php:11
1144
+ #: pb-add-on-woocommerce/shipping-fields.php:11
1145
+ msgid "Town / City"
1146
+ msgstr ""
1147
+
1148
+ #: pb-add-on-woocommerce/billing-fields.php:12
1149
+ #: pb-add-on-woocommerce/shipping-fields.php:12
1150
+ msgid "State / County"
1151
+ msgstr "Stat"
1152
+
1153
+ #: pb-add-on-woocommerce/billing-fields.php:13
1154
+ #: pb-add-on-woocommerce/shipping-fields.php:13
1155
+ msgid "Postcode / Zip"
1156
+ msgstr "Postnr"
1157
+
1158
+ #: pb-add-on-woocommerce/billing-fields.php:14
1159
+ msgid "Email Address"
1160
+ msgstr "Email"
1161
+
1162
+ #: pb-add-on-woocommerce/billing-fields.php:15
1163
+ msgid "Phone"
1164
+ msgstr "Telefon"
1165
+
1166
+ #: pb-add-on-woocommerce/billing-fields.php:278
1167
+ msgid "Ship to a different address?"
1168
+ msgstr "Send til anden adresse"
1169
+
1170
+ #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1171
+ msgid "Billing Address"
1172
+ msgstr "Fakturerings adresse"
1173
+
1174
+ #: pb-add-on-woocommerce/index.php:169
1175
+ msgid "Displays customer billing fields in front-end. "
1176
+ msgstr "Se kunde faktureringsfelter i front-end"
1177
+
1178
+ #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1179
+ msgid "Shipping Address"
1180
+ msgstr "Leveringsadresse"
1181
+
1182
+ #: pb-add-on-woocommerce/index.php:173
1183
+ msgid "Displays customer shipping fields in front-end. "
1184
+ msgstr "Se kunde leveringsfelter i front-end"
1185
+
1186
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1187
+ msgid "Display on WooCommerce Checkout"
1188
+ msgstr "Se på WooCommerce betal siden"
1189
+
1190
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1191
+ msgid "Whether the field should be added to the WooCommerce checkout form or not"
1192
+ msgstr ""
1193
+
1194
+ #: pb-add-on-woocommerce/index.php:541
1195
+ msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1196
+ msgstr "WooCommerce skal installeres ag aktiveret for at Profile Builder - WooCommerce Sync Add-on virker!"
1197
+
1198
+ #: pb-add-on-woocommerce/woosync-page.php:23
1199
+ #: pb-add-on-woocommerce/woosync-page.php:70
1200
+ msgid "WooCommerce Sync"
1201
+ msgstr "WooCommerce Sync"
1202
+
1203
+ #: pb-add-on-woocommerce/woosync-page.php:76
1204
+ msgid "Choose Register form to display on My Account page:"
1205
+ msgstr "Choose Register form to display on My Account page:"
1206
+
1207
+ #: pb-add-on-woocommerce/woosync-page.php:81
1208
+ msgid "Default Register"
1209
+ msgstr "Default Register"
1210
+
1211
+ #: pb-add-on-woocommerce/woosync-page.php:103
1212
+ msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1213
+ msgstr ""
1214
+
1215
+ #: pb-add-on-woocommerce/woosync-page.php:110
1216
+ msgid "Choose Edit Profile form to display on My Account page:"
1217
+ msgstr "Choose Edit Profile form to display on My Account page:"
1218
+
1219
+ #: pb-add-on-woocommerce/woosync-page.php:115
1220
+ msgid "Default Edit Profile"
1221
+ msgstr "Standard editerings profil"
1222
+
1223
+ #: pb-add-on-woocommerce/woosync-page.php:137
1224
+ msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1225
+ msgstr "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1226
+
1227
+ #: profile-builder-2.0/admin/add-ons.php:190
1228
+ msgid "Recommended Plugins"
1229
+ msgstr "Anbefalede plugins"
1230
+
1231
+ #: profile-builder-2.0/admin/add-ons.php:219
1232
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1233
+ msgid "Free"
1234
+ msgstr "Fri"
1235
+
1236
+ #: profile-builder-2.0/admin/add-ons.php:221
1237
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1238
+ msgstr "Accept user payments, create subscription plans and restrict content on your membership site."
1239
+
1240
+ #: profile-builder-2.0/admin/add-ons.php:222
1241
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1242
+ msgid "More Details"
1243
+ msgstr "Flere detaljer"
1244
+
1245
+ #: profile-builder-2.0/admin/add-ons.php:240
1246
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1247
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1248
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1249
+ msgid "Plugin is <strong>inactive</strong>"
1250
+ msgstr "Plugin er <strong>inaktiv</strong>"
1251
+
1252
+ #: profile-builder-2.0/admin/add-ons.php:242
1253
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1254
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1255
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1256
+ msgid "Plugin is <strong>active</strong>"
1257
+ msgstr "Plugin er <strong>aktiv</strong>"
1258
+
1259
+ #: profile-builder-2.0/admin/add-ons.php:256
1260
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1261
+ msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1262
+ msgstr "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1263
+
1264
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1265
+ msgid "Paid Accounts"
1266
+ msgstr "Betalt konto"
1267
+
1268
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1269
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1270
+ msgstr "Paid Member Subscriptions - a free WordPress plugin"
1271
+
1272
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1273
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1274
+ msgstr "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1275
+
1276
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1277
+ msgid "Paid & Free Subscriptions"
1278
+ msgstr "Betalt og fri tilmelding"
1279
+
1280
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1281
+ msgid "Restrict Content"
1282
+ msgstr "Beskyt indhold"
1283
+
1284
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1285
+ msgid "Member Management"
1286
+ msgstr "Medlemsstyring"
1287
+
1288
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1289
+ msgid "Email Templates"
1290
+ msgstr "Email skabeloner"
1291
+
1292
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1293
+ msgid "Account Management"
1294
+ msgstr "Kontostyring"
1295
+
1296
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1297
+ msgid "Subscription Management"
1298
+ msgstr "Tilmeldingsstyring"
1299
+
1300
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1301
+ msgid "Payment Management"
1302
+ msgstr "Betalingsstyring"
1303
+
1304
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1305
+ msgid "Plugin is Active"
1306
+ msgstr "Plugin er aktiv"
1307
+
1308
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1309
+ msgid "Plugin has been activated"
1310
+ msgstr "Plugin er aktiveret"
1311
+
1312
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1313
+ msgid "Plugin has been deactivated."
1314
+ msgstr "Plugin er blevet deaktiveret"
1315
+
1316
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1317
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1318
+ msgstr "Accepter bruger betaling opret tilmeldings planer og beskyt indhold på din webside."
1319
+
1320
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1321
+ msgid "Step by Step Quick Setup"
1322
+ msgstr "Step by Step Quick Setup"
1323
+
1324
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:392
1325
+ 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."
1326
+ msgstr ""
1327
+
1328
+ #: profile-builder-2.0/front-end/register.php:133
1329
+ msgid "You will soon be redirected automatically."
1330
+ msgstr "Du vil snart blive viderestillet automatisk til en anden side."
1331
+
1332
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1333
+ msgid "After Login"
1334
+ msgstr "Efter logind"
1335
+
1336
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1337
+ msgid "After Logout"
1338
+ msgstr "Efter logud"
1339
+
1340
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1341
+ msgid "After Registration"
1342
+ msgstr "Efter tilmelding"
1343
+
1344
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1345
+ msgid "After Edit Profile"
1346
+ msgstr "Efter brugerprofil opdatering"
1347
+
1348
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1349
+ msgid "After Successful Email Confirmation"
1350
+ msgstr "Efter email bekræftelse"
1351
+
1352
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1353
+ msgid "After Successful Password Reset"
1354
+ msgstr "Efter psssword reset"
1355
+
1356
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1357
+ msgid "Dashboard (redirect users from accessing the dashboard)"
1358
+ msgstr "Dashboard (redirect users from accessing the dashboard)"
1359
+
1360
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1361
+ msgid "User ID"
1362
+ msgstr "Bruger ID"
1363
+
1364
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1365
+ msgid "User ID or Username"
1366
+ msgstr "Bruger ID eller Brugernavn"
1367
+
1368
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1369
+ msgid "User ID / Username"
1370
+ msgstr "Bruger ID / Brugernavn"
1371
+
1372
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1373
+ msgid "Please select and enter the ID or username of your user."
1374
+ msgstr "Vælg og intast ID eller brugernavn på din bruger"
1375
+
1376
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1377
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1378
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1379
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1380
+ msgid "Redirect Type"
1381
+ msgstr "Redirect Type"
1382
+
1383
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1384
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1385
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1386
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1387
+ msgid "Redirect URL"
1388
+ msgstr "Redirect URL"
1389
+
1390
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1391
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1392
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1393
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1394
+ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1395
+ msgstr "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1396
+
1397
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1398
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
1399
+ msgid "Individual User Redirects"
1400
+ msgstr "Individual User Redirects"
1401
+
1402
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1403
+ msgid "... Choose"
1404
+ msgstr "... Vælg"
1405
+
1406
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1407
+ msgid "Select a user role."
1408
+ msgstr "Vælg brugerrolle"
1409
+
1410
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1411
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1412
+ msgid "User Role based Redirects"
1413
+ msgstr "Rollebaseret bruger redirects"
1414
+
1415
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1416
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1417
+ msgid "Global Redirects"
1418
+ msgstr ""
1419
+
1420
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1421
+ msgid "Login ( wp_login.php )"
1422
+ msgstr "Logind ( wp_login.php )"
1423
+
1424
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1425
+ msgid "Register ( wp-login.php?action=register )"
1426
+ msgstr "Tilmeld ( wp-login.php?action=register )"
1427
+
1428
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1429
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
1430
+ msgstr "Mistet kodeord ( wp-login.php?action=lostpassword )"
1431
+
1432
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1433
+ msgid "Author Archive ( http://sitename.com/author/admin )"
1434
+ msgstr "Forfatter arkiv ( http://sitename.com/author/admin )"
1435
+
1436
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1437
+ msgid "Redirect Default WordPress Forms and Pages"
1438
+ msgstr "Redirect Default WordPress Forms and Pages"
1439
+
1440
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1441
+ msgid "How does this work?"
1442
+ msgstr "Hvordan virker dette ?"
1443
+
1444
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1445
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1446
+ msgstr "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1447
+
1448
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1449
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1450
+ msgstr "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1451
+
1452
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1453
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1454
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
1455
+ msgstr "<pre>Redirect</pre><pre>URL</pre>"
1456
+
1457
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1458
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1459
+ msgstr "These redirects happen after a successful action, like registration or after a successful login."
1460
+
1461
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1462
+ msgid "Which redirect happens depends on the following priority:"
1463
+ msgstr "Which redirect happens depends on the following priority:"
1464
+
1465
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1466
+ 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)"
1467
+ msgstr "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)"
1468
+
1469
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:246
1470
+ msgid "Redirect Default WordPress forms and pages"
1471
+ msgstr "Redirect Default WordPress forms and pages"
1472
+
1473
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1474
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1475
+ msgstr "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1476
+
1477
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:249
1478
+ msgid "Available tags for dynamic URLs"
1479
+ msgstr "Available tags for dynamic URLs"
1480
+
1481
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1482
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1483
+ msgstr "You use the following tags in your URLs to redirect users to various pages."
1484
+
1485
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:252
1486
+ msgid "generates a url of the current website homepage."
1487
+ msgstr "generates a url of the current website homepage."
1488
+
1489
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1490
+ 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"
1491
+ msgstr "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"
1492
+
1493
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1494
+ msgid "the ID of the user"
1495
+ msgstr "Bruger ID "
1496
+
1497
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1498
+ 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."
1499
+ msgstr "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."
1500
+
1501
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1502
+ msgid "the URL of the previously visited page"
1503
+ msgstr "URL sidst besøgte side"
1504
+
1505
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:339
1506
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:345
1507
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:351
1508
+ msgid "You can't add duplicate redirects!"
1509
+ msgstr "Du kan ikke oprette duplicate redirects!"
1510
+
1511
+ #: profile-builder-2.0/admin/admin-functions.php:40
1512
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
1513
+ msgstr ""
1514
+
1515
+ #: profile-builder-2.0/admin/basic-info.php:37
1516
+ msgid "Friction-less login using %s shortcode or a widget."
1517
+ msgstr "Friction-less login using %s shortcode or a widget."
1518
+
1519
+ #: profile-builder-2.0/admin/basic-info.php:41
1520
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
1521
+ msgstr ""
1522
+
1523
+ #: profile-builder-2.0/admin/basic-info.php:45
1524
+ msgid "Straight forward edit profile forms using %s shortcode."
1525
+ msgstr ""
1526
+
1527
+ #: profile-builder-2.0/admin/basic-info.php:58
1528
+ msgid "Allow users to recover their password in the front-end using the %s."
1529
+ msgstr ""
1530
+
1531
+ #: profile-builder-2.0/admin/basic-info.php:140
1532
+ 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."
1533
+ msgstr ""
1534
+
1535
+ #: profile-builder-2.0/admin/general-settings.php:118
1536
+ msgid "\"Admin Approval\" on User Role:"
1537
+ msgstr "Admin godkendelse på denne brugerrolle"
1538
+
1539
+ #: profile-builder-2.0/admin/general-settings.php:137
1540
+ msgid "Select on what user roles to activate Admin Approval."
1541
+ msgstr "Select on what user roles to activate Admin Approval."
1542
+
1543
+ #: profile-builder-2.0/admin/manage-fields.php:128
1544
+ msgid "Display on PB forms"
1545
+ msgstr "Se på PB forms"
1546
+
1547
+ #: profile-builder-2.0/admin/manage-fields.php:128
1548
+ msgid "PB Login"
1549
+ msgstr ""
1550
+
1551
+ #: profile-builder-2.0/admin/manage-fields.php:128
1552
+ msgid "PB Register"
1553
+ msgstr ""
1554
+
1555
+ #: profile-builder-2.0/admin/manage-fields.php:128
1556
+ msgid "PB Recover Password"
1557
+ msgstr ""
1558
+
1559
+ #: profile-builder-2.0/admin/manage-fields.php:128
1560
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
1561
+ msgstr ""
1562
+
1563
+ #: profile-builder-2.0/admin/manage-fields.php:129
1564
+ msgid "Display on default WP forms"
1565
+ msgstr ""
1566
+
1567
+ #: profile-builder-2.0/admin/manage-fields.php:129
1568
+ msgid "Default WP Login"
1569
+ msgstr ""
1570
+
1571
+ #: profile-builder-2.0/admin/manage-fields.php:129
1572
+ msgid "Default WP Register"
1573
+ msgstr ""
1574
+
1575
+ #: profile-builder-2.0/admin/manage-fields.php:129
1576
+ msgid "Default WP Recover Password"
1577
+ msgstr ""
1578
+
1579
+ #: profile-builder-2.0/admin/manage-fields.php:129
1580
+ msgid "Select on which default WP forms to display reCAPTCHA"
1581
+ msgstr "Vælg hvilne standard WP forms de vil se reCAPTCHA"
1582
+
1583
+ #: profile-builder-2.0/admin/manage-fields.php:135
1584
+ #: profile-builder-2.0/admin/manage-fields.php:136
1585
+ #: profile-builder-2.0/admin/manage-fields.php:137
1586
+ msgid "Default option of the field"
1587
+ msgstr "Standard værdi på feltet"
1588
+
1589
+ #: profile-builder-2.0/admin/manage-fields.php:273
1590
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1591
+ msgid "Afghanistan"
1592
+ msgstr "Afghanistan"
1593
+
1594
+ #: profile-builder-2.0/admin/manage-fields.php:274
1595
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1596
+ msgid "Aland Islands"
1597
+ msgstr "Aland Islands"
1598
+
1599
+ #: profile-builder-2.0/admin/manage-fields.php:275
1600
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1601
+ msgid "Albania"
1602
+ msgstr "Albania"
1603
+
1604
+ #: profile-builder-2.0/admin/manage-fields.php:276
1605
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1606
+ msgid "Algeria"
1607
+ msgstr "Algeria"
1608
+
1609
+ #: profile-builder-2.0/admin/manage-fields.php:277
1610
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1611
+ msgid "American Samoa"
1612
+ msgstr "American Samoa"
1613
+
1614
+ #: profile-builder-2.0/admin/manage-fields.php:278
1615
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1616
+ msgid "Andorra"
1617
+ msgstr "Andorra"
1618
+
1619
+ #: profile-builder-2.0/admin/manage-fields.php:279
1620
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1621
+ msgid "Angola"
1622
+ msgstr "Angola"
1623
+
1624
+ #: profile-builder-2.0/admin/manage-fields.php:280
1625
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1626
+ msgid "Anguilla"
1627
+ msgstr "Anguilla"
1628
+
1629
+ #: profile-builder-2.0/admin/manage-fields.php:281
1630
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1631
+ msgid "Antarctica"
1632
+ msgstr "Antarctica"
1633
+
1634
+ #: profile-builder-2.0/admin/manage-fields.php:282
1635
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1636
+ msgid "Antigua and Barbuda"
1637
+ msgstr "Antigua and Barbuda"
1638
+
1639
+ #: profile-builder-2.0/admin/manage-fields.php:283
1640
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1641
+ msgid "Argentina"
1642
+ msgstr "Argentina"
1643
+
1644
+ #: profile-builder-2.0/admin/manage-fields.php:284
1645
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1646
+ msgid "Armenia"
1647
+ msgstr "Armenia"
1648
+
1649
+ #: profile-builder-2.0/admin/manage-fields.php:285
1650
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1651
+ msgid "Aruba"
1652
+ msgstr "Aruba"
1653
+
1654
+ #: profile-builder-2.0/admin/manage-fields.php:286
1655
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1656
+ msgid "Australia"
1657
+ msgstr "Australia"
1658
+
1659
+ #: profile-builder-2.0/admin/manage-fields.php:287
1660
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1661
+ msgid "Austria"
1662
+ msgstr "Austria"
1663
+
1664
+ #: profile-builder-2.0/admin/manage-fields.php:288
1665
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
+ msgid "Azerbaijan"
1667
+ msgstr "Azerbaijan"
1668
+
1669
+ #: profile-builder-2.0/admin/manage-fields.php:289
1670
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1671
+ msgid "Bahamas"
1672
+ msgstr "Bahamas"
1673
+
1674
+ #: profile-builder-2.0/admin/manage-fields.php:290
1675
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1676
+ msgid "Bahrain"
1677
+ msgstr "Bahrain"
1678
+
1679
+ #: profile-builder-2.0/admin/manage-fields.php:291
1680
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1681
+ msgid "Bangladesh"
1682
+ msgstr "Bangladesh"
1683
+
1684
+ #: profile-builder-2.0/admin/manage-fields.php:292
1685
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1686
+ msgid "Barbados"
1687
+ msgstr "Barbados"
1688
+
1689
+ #: profile-builder-2.0/admin/manage-fields.php:293
1690
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1691
+ msgid "Belarus"
1692
+ msgstr "Belarus"
1693
+
1694
+ #: profile-builder-2.0/admin/manage-fields.php:294
1695
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
+ msgid "Belgium"
1697
+ msgstr "Belgium"
1698
+
1699
+ #: profile-builder-2.0/admin/manage-fields.php:295
1700
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1701
+ msgid "Belize"
1702
+ msgstr "Belize"
1703
+
1704
+ #: profile-builder-2.0/admin/manage-fields.php:296
1705
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1706
+ msgid "Benin"
1707
+ msgstr "Benin"
1708
+
1709
+ #: profile-builder-2.0/admin/manage-fields.php:297
1710
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1711
+ msgid "Bermuda"
1712
+ msgstr "Bermuda"
1713
+
1714
+ #: profile-builder-2.0/admin/manage-fields.php:298
1715
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1716
+ msgid "Bhutan"
1717
+ msgstr "Bhutan"
1718
+
1719
+ #: profile-builder-2.0/admin/manage-fields.php:299
1720
+ msgid "Bolivia"
1721
+ msgstr "Bolivia"
1722
+
1723
+ #: profile-builder-2.0/admin/manage-fields.php:300
1724
+ msgid "Bonaire, Saint Eustatius and Saba"
1725
+ msgstr "Bonaire, Saint Eustatius and Saba"
1726
+
1727
+ #: profile-builder-2.0/admin/manage-fields.php:301
1728
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1729
+ msgid "Bosnia and Herzegovina"
1730
+ msgstr "Bosnia and Herzegovina"
1731
+
1732
+ #: profile-builder-2.0/admin/manage-fields.php:302
1733
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1734
+ msgid "Botswana"
1735
+ msgstr "Botswana"
1736
+
1737
+ #: profile-builder-2.0/admin/manage-fields.php:303
1738
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1739
+ msgid "Bouvet Island"
1740
+ msgstr "Bouvet Island"
1741
+
1742
+ #: profile-builder-2.0/admin/manage-fields.php:304
1743
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1744
+ msgid "Brazil"
1745
+ msgstr "Brazil"
1746
+
1747
+ #: profile-builder-2.0/admin/manage-fields.php:305
1748
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1749
+ msgid "British Indian Ocean Territory"
1750
+ msgstr "British Indian Ocean Territory"
1751
+
1752
+ #: profile-builder-2.0/admin/manage-fields.php:306
1753
+ msgid "British Virgin Islands"
1754
+ msgstr "British Virgin Islands"
1755
+
1756
+ #: profile-builder-2.0/admin/manage-fields.php:307
1757
+ msgid "Brunei"
1758
+ msgstr "Brunei"
1759
+
1760
+ #: profile-builder-2.0/admin/manage-fields.php:308
1761
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1762
+ msgid "Bulgaria"
1763
+ msgstr "Bulgaria"
1764
+
1765
+ #: profile-builder-2.0/admin/manage-fields.php:309
1766
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1767
+ msgid "Burkina Faso"
1768
+ msgstr "Burkina Faso"
1769
+
1770
+ #: profile-builder-2.0/admin/manage-fields.php:310
1771
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1772
+ msgid "Burundi"
1773
+ msgstr "Burundi"
1774
+
1775
+ #: profile-builder-2.0/admin/manage-fields.php:311
1776
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1777
+ msgid "Cambodia"
1778
+ msgstr "Cambodia"
1779
+
1780
+ #: profile-builder-2.0/admin/manage-fields.php:312
1781
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1782
+ msgid "Cameroon"
1783
+ msgstr "Cameroon"
1784
+
1785
+ #: profile-builder-2.0/admin/manage-fields.php:313
1786
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1787
+ msgid "Canada"
1788
+ msgstr "Canada"
1789
+
1790
+ #: profile-builder-2.0/admin/manage-fields.php:314
1791
+ msgid "Cape Verde"
1792
+ msgstr "Cape Verde"
1793
+
1794
+ #: profile-builder-2.0/admin/manage-fields.php:315
1795
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1796
+ msgid "Cayman Islands"
1797
+ msgstr "Cayman Islands"
1798
+
1799
+ #: profile-builder-2.0/admin/manage-fields.php:316
1800
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1801
+ msgid "Central African Republic"
1802
+ msgstr "Central African Republic"
1803
+
1804
+ #: profile-builder-2.0/admin/manage-fields.php:317
1805
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1806
+ msgid "Chad"
1807
+ msgstr "Chad"
1808
+
1809
+ #: profile-builder-2.0/admin/manage-fields.php:318
1810
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1811
+ msgid "Chile"
1812
+ msgstr "Chile"
1813
+
1814
+ #: profile-builder-2.0/admin/manage-fields.php:319
1815
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1816
+ msgid "China"
1817
+ msgstr "China"
1818
+
1819
+ #: profile-builder-2.0/admin/manage-fields.php:320
1820
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1821
+ msgid "Christmas Island"
1822
+ msgstr "Christmas Island"
1823
+
1824
+ #: profile-builder-2.0/admin/manage-fields.php:321
1825
+ msgid "Cocos Islands"
1826
+ msgstr "Cocos Islands"
1827
+
1828
+ #: profile-builder-2.0/admin/manage-fields.php:322
1829
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1830
+ msgid "Colombia"
1831
+ msgstr "Colombia"
1832
+
1833
+ #: profile-builder-2.0/admin/manage-fields.php:323
1834
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1835
+ msgid "Comoros"
1836
+ msgstr "Comoros"
1837
+
1838
+ #: profile-builder-2.0/admin/manage-fields.php:324
1839
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1840
+ msgid "Cook Islands"
1841
+ msgstr "Cook Islands"
1842
+
1843
+ #: profile-builder-2.0/admin/manage-fields.php:325
1844
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1845
+ msgid "Costa Rica"
1846
+ msgstr "Costa Rica"
1847
+
1848
+ #: profile-builder-2.0/admin/manage-fields.php:326
1849
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1850
+ msgid "Croatia"
1851
+ msgstr "Croatia"
1852
+
1853
+ #: profile-builder-2.0/admin/manage-fields.php:327
1854
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1855
+ msgid "Cuba"
1856
+ msgstr "Cuba"
1857
+
1858
+ #: profile-builder-2.0/admin/manage-fields.php:328
1859
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1860
+ msgid "Curacao"
1861
+ msgstr "Curacao"
1862
+
1863
+ #: profile-builder-2.0/admin/manage-fields.php:329
1864
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1865
+ msgid "Cyprus"
1866
+ msgstr "Cyprus"
1867
+
1868
+ #: profile-builder-2.0/admin/manage-fields.php:330
1869
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1870
+ msgid "Czech Republic"
1871
+ msgstr "Czech Republic"
1872
+
1873
+ #: profile-builder-2.0/admin/manage-fields.php:331
1874
+ msgid "Democratic Republic of the Congo"
1875
+ msgstr "Democratic Republic of the Congo"
1876
+
1877
+ #: profile-builder-2.0/admin/manage-fields.php:332
1878
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1879
+ msgid "Denmark"
1880
+ msgstr "Denmark"
1881
+
1882
+ #: profile-builder-2.0/admin/manage-fields.php:333
1883
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1884
+ msgid "Djibouti"
1885
+ msgstr "Djibouti"
1886
+
1887
+ #: profile-builder-2.0/admin/manage-fields.php:334
1888
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1889
+ msgid "Dominica"
1890
+ msgstr "Dominica"
1891
+
1892
+ #: profile-builder-2.0/admin/manage-fields.php:335
1893
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1894
+ msgid "Dominican Republic"
1895
+ msgstr "Dominican Republic"
1896
+
1897
+ #: profile-builder-2.0/admin/manage-fields.php:336
1898
+ msgid "East Timor"
1899
+ msgstr "East Timor"
1900
+
1901
+ #: profile-builder-2.0/admin/manage-fields.php:337
1902
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1903
+ msgid "Ecuador"
1904
+ msgstr "Ecuador"
1905
+
1906
+ #: profile-builder-2.0/admin/manage-fields.php:338
1907
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1908
+ msgid "Egypt"
1909
+ msgstr "Egypt"
1910
+
1911
+ #: profile-builder-2.0/admin/manage-fields.php:339
1912
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1913
+ msgid "El Salvador"
1914
+ msgstr "El Salvador"
1915
+
1916
+ #: profile-builder-2.0/admin/manage-fields.php:340
1917
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1918
+ msgid "Equatorial Guinea"
1919
+ msgstr "Equatorial Guinea"
1920
+
1921
+ #: profile-builder-2.0/admin/manage-fields.php:341
1922
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1923
+ msgid "Eritrea"
1924
+ msgstr "Eritrea"
1925
+
1926
+ #: profile-builder-2.0/admin/manage-fields.php:342
1927
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1928
+ msgid "Estonia"
1929
+ msgstr "Estonia"
1930
+
1931
+ #: profile-builder-2.0/admin/manage-fields.php:343
1932
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1933
+ msgid "Ethiopia"
1934
+ msgstr "Ethiopia"
1935
+
1936
+ #: profile-builder-2.0/admin/manage-fields.php:344
1937
+ msgid "Falkland Islands"
1938
+ msgstr "Falkland Islands"
1939
+
1940
+ #: profile-builder-2.0/admin/manage-fields.php:345
1941
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1942
+ msgid "Faroe Islands"
1943
+ msgstr "Faroe Islands"
1944
+
1945
+ #: profile-builder-2.0/admin/manage-fields.php:346
1946
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1947
+ msgid "Fiji"
1948
+ msgstr "Fiji"
1949
+
1950
+ #: profile-builder-2.0/admin/manage-fields.php:347
1951
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1952
+ msgid "Finland"
1953
+ msgstr "Finland"
1954
+
1955
+ #: profile-builder-2.0/admin/manage-fields.php:348
1956
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1957
+ msgid "France"
1958
+ msgstr "France"
1959
+
1960
+ #: profile-builder-2.0/admin/manage-fields.php:349
1961
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1962
+ msgid "French Guiana"
1963
+ msgstr "French Guiana"
1964
+
1965
+ #: profile-builder-2.0/admin/manage-fields.php:350
1966
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1967
+ msgid "French Polynesia"
1968
+ msgstr "French Polynesia"
1969
+
1970
+ #: profile-builder-2.0/admin/manage-fields.php:351
1971
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1972
+ msgid "French Southern Territories"
1973
+ msgstr "French Southern Territories"
1974
+
1975
+ #: profile-builder-2.0/admin/manage-fields.php:352
1976
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1977
+ msgid "Gabon"
1978
+ msgstr "Gabon"
1979
+
1980
+ #: profile-builder-2.0/admin/manage-fields.php:353
1981
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1982
+ msgid "Gambia"
1983
+ msgstr "Gambia"
1984
+
1985
+ #: profile-builder-2.0/admin/manage-fields.php:354
1986
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1987
+ msgid "Georgia"
1988
+ msgstr "Georgia"
1989
+
1990
+ #: profile-builder-2.0/admin/manage-fields.php:355
1991
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1992
+ msgid "Germany"
1993
+ msgstr "Germany"
1994
+
1995
+ #: profile-builder-2.0/admin/manage-fields.php:356
1996
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1997
+ msgid "Ghana"
1998
+ msgstr "Ghana"
1999
+
2000
+ #: profile-builder-2.0/admin/manage-fields.php:357
2001
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2002
+ msgid "Gibraltar"
2003
+ msgstr "Gibraltar"
2004
+
2005
+ #: profile-builder-2.0/admin/manage-fields.php:358
2006
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2007
+ msgid "Greece"
2008
+ msgstr "Greece"
2009
+
2010
+ #: profile-builder-2.0/admin/manage-fields.php:359
2011
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2012
+ msgid "Greenland"
2013
+ msgstr "Greenland"
2014
+
2015
+ #: profile-builder-2.0/admin/manage-fields.php:360
2016
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2017
+ msgid "Grenada"
2018
+ msgstr "Grenada"
2019
+
2020
+ #: profile-builder-2.0/admin/manage-fields.php:361
2021
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2022
+ msgid "Guadeloupe"
2023
+ msgstr "Guadeloupe"
2024
+
2025
+ #: profile-builder-2.0/admin/manage-fields.php:362
2026
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2027
+ msgid "Guam"
2028
+ msgstr "Guam"
2029
+
2030
+ #: profile-builder-2.0/admin/manage-fields.php:363
2031
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2032
+ msgid "Guatemala"
2033
+ msgstr "Guatemala"
2034
+
2035
+ #: profile-builder-2.0/admin/manage-fields.php:364
2036
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2037
+ msgid "Guernsey"
2038
+ msgstr "Guernsey"
2039
+
2040
+ #: profile-builder-2.0/admin/manage-fields.php:365
2041
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2042
+ msgid "Guinea"
2043
+ msgstr "Guinea"
2044
+
2045
+ #: profile-builder-2.0/admin/manage-fields.php:366
2046
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2047
+ msgid "Guinea-Bissau"
2048
+ msgstr "Guinea-Bissau"
2049
+
2050
+ #: profile-builder-2.0/admin/manage-fields.php:367
2051
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2052
+ msgid "Guyana"
2053
+ msgstr "Guyana"
2054
+
2055
+ #: profile-builder-2.0/admin/manage-fields.php:368
2056
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2057
+ msgid "Haiti"
2058
+ msgstr "Haiti"
2059
+
2060
+ #: profile-builder-2.0/admin/manage-fields.php:369
2061
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
+ msgid "Heard Island and McDonald Islands"
2063
+ msgstr "Heard Island and McDonald Islands"
2064
+
2065
+ #: profile-builder-2.0/admin/manage-fields.php:370
2066
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2067
+ msgid "Honduras"
2068
+ msgstr "Honduras"
2069
+
2070
+ #: profile-builder-2.0/admin/manage-fields.php:371
2071
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2072
+ msgid "Hong Kong"
2073
+ msgstr "Hong Kong"
2074
+
2075
+ #: profile-builder-2.0/admin/manage-fields.php:372
2076
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
+ msgid "Hungary"
2078
+ msgstr "Hungary"
2079
+
2080
+ #: profile-builder-2.0/admin/manage-fields.php:373
2081
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
+ msgid "Iceland"
2083
+ msgstr "Iceland"
2084
+
2085
+ #: profile-builder-2.0/admin/manage-fields.php:374
2086
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2087
+ msgid "India"
2088
+ msgstr "India"
2089
+
2090
+ #: profile-builder-2.0/admin/manage-fields.php:375
2091
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
+ msgid "Indonesia"
2093
+ msgstr "Indonesia"
2094
+
2095
+ #: profile-builder-2.0/admin/manage-fields.php:376
2096
+ msgid "Iran"
2097
+ msgstr "Iran"
2098
+
2099
+ #: profile-builder-2.0/admin/manage-fields.php:377
2100
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2101
+ msgid "Iraq"
2102
+ msgstr "Iraq"
2103
+
2104
+ #: profile-builder-2.0/admin/manage-fields.php:378
2105
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2106
+ msgid "Ireland"
2107
+ msgstr "Ireland"
2108
+
2109
+ #: profile-builder-2.0/admin/manage-fields.php:379
2110
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2111
+ msgid "Isle of Man"
2112
+ msgstr "Isle of Man"
2113
+
2114
+ #: profile-builder-2.0/admin/manage-fields.php:380
2115
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2116
+ msgid "Israel"
2117
+ msgstr "Israel"
2118
+
2119
+ #: profile-builder-2.0/admin/manage-fields.php:381
2120
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2121
+ msgid "Italy"
2122
+ msgstr "Italy"
2123
+
2124
+ #: profile-builder-2.0/admin/manage-fields.php:382
2125
+ msgid "Ivory Coast"
2126
+ msgstr "Ivory Coast"
2127
+
2128
+ #: profile-builder-2.0/admin/manage-fields.php:383
2129
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2130
+ msgid "Jamaica"
2131
+ msgstr "Jamaica"
2132
+
2133
+ #: profile-builder-2.0/admin/manage-fields.php:384
2134
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2135
+ msgid "Japan"
2136
+ msgstr "Japan"
2137
+
2138
+ #: profile-builder-2.0/admin/manage-fields.php:385
2139
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2140
+ msgid "Jersey"
2141
+ msgstr "Jersey"
2142
+
2143
+ #: profile-builder-2.0/admin/manage-fields.php:386
2144
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2145
+ msgid "Jordan"
2146
+ msgstr "Jordan"
2147
+
2148
+ #: profile-builder-2.0/admin/manage-fields.php:387
2149
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2150
+ msgid "Kazakhstan"
2151
+ msgstr "Kazakhstan"
2152
+
2153
+ #: profile-builder-2.0/admin/manage-fields.php:388
2154
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2155
+ msgid "Kenya"
2156
+ msgstr "Kenya"
2157
+
2158
+ #: profile-builder-2.0/admin/manage-fields.php:389
2159
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2160
+ msgid "Kiribati"
2161
+ msgstr "Kiribati"
2162
+
2163
+ #: profile-builder-2.0/admin/manage-fields.php:390
2164
+ msgid "Kosovo"
2165
+ msgstr "Kosovo"
2166
+
2167
+ #: profile-builder-2.0/admin/manage-fields.php:391
2168
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2169
+ msgid "Kuwait"
2170
+ msgstr "Kuwait"
2171
+
2172
+ #: profile-builder-2.0/admin/manage-fields.php:392
2173
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2174
+ msgid "Kyrgyzstan"
2175
+ msgstr "Kyrgyzstan"
2176
+
2177
+ #: profile-builder-2.0/admin/manage-fields.php:393
2178
+ msgid "Laos"
2179
+ msgstr "Laos"
2180
+
2181
+ #: profile-builder-2.0/admin/manage-fields.php:394
2182
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2183
+ msgid "Latvia"
2184
+ msgstr "Latvia"
2185
+
2186
+ #: profile-builder-2.0/admin/manage-fields.php:395
2187
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2188
+ msgid "Lebanon"
2189
+ msgstr "Lebanon"
2190
+
2191
+ #: profile-builder-2.0/admin/manage-fields.php:396
2192
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2193
+ msgid "Lesotho"
2194
+ msgstr "Lesotho"
2195
+
2196
+ #: profile-builder-2.0/admin/manage-fields.php:397
2197
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2198
+ msgid "Liberia"
2199
+ msgstr "Liberia"
2200
+
2201
+ #: profile-builder-2.0/admin/manage-fields.php:398
2202
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2203
+ msgid "Libya"
2204
+ msgstr "Libya"
2205
+
2206
+ #: profile-builder-2.0/admin/manage-fields.php:399
2207
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2208
+ msgid "Liechtenstein"
2209
+ msgstr "Liechtenstein"
2210
+
2211
+ #: profile-builder-2.0/admin/manage-fields.php:400
2212
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2213
+ msgid "Lithuania"
2214
+ msgstr "Lithuania"
2215
+
2216
+ #: profile-builder-2.0/admin/manage-fields.php:401
2217
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2218
+ msgid "Luxembourg"
2219
+ msgstr "Luxembourg"
2220
+
2221
+ #: profile-builder-2.0/admin/manage-fields.php:402
2222
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2223
+ msgid "Macao"
2224
+ msgstr "Macao"
2225
+
2226
+ #: profile-builder-2.0/admin/manage-fields.php:403
2227
+ msgid "Macedonia"
2228
+ msgstr "Macedonia"
2229
+
2230
+ #: profile-builder-2.0/admin/manage-fields.php:404
2231
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2232
+ msgid "Madagascar"
2233
+ msgstr "Madagascar"
2234
+
2235
+ #: profile-builder-2.0/admin/manage-fields.php:405
2236
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2237
+ msgid "Malawi"
2238
+ msgstr "Malawi"
2239
+
2240
+ #: profile-builder-2.0/admin/manage-fields.php:406
2241
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2242
+ msgid "Malaysia"
2243
+ msgstr "Malaysia"
2244
+
2245
+ #: profile-builder-2.0/admin/manage-fields.php:407
2246
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2247
+ msgid "Maldives"
2248
+ msgstr "Maldives"
2249
+
2250
+ #: profile-builder-2.0/admin/manage-fields.php:408
2251
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2252
+ msgid "Mali"
2253
+ msgstr "Mali"
2254
+
2255
+ #: profile-builder-2.0/admin/manage-fields.php:409
2256
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2257
+ msgid "Malta"
2258
+ msgstr "Malta"
2259
+
2260
+ #: profile-builder-2.0/admin/manage-fields.php:410
2261
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2262
+ msgid "Marshall Islands"
2263
+ msgstr "Marshall Islands"
2264
+
2265
+ #: profile-builder-2.0/admin/manage-fields.php:411
2266
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2267
+ msgid "Martinique"
2268
+ msgstr "Martinique"
2269
+
2270
+ #: profile-builder-2.0/admin/manage-fields.php:412
2271
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2272
+ msgid "Mauritania"
2273
+ msgstr "Mauritania"
2274
+
2275
+ #: profile-builder-2.0/admin/manage-fields.php:413
2276
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2277
+ msgid "Mauritius"
2278
+ msgstr "Mauritius"
2279
+
2280
+ #: profile-builder-2.0/admin/manage-fields.php:414
2281
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2282
+ msgid "Mayotte"
2283
+ msgstr "Mayotte"
2284
+
2285
+ #: profile-builder-2.0/admin/manage-fields.php:415
2286
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2287
+ msgid "Mexico"
2288
+ msgstr "Mexico"
2289
+
2290
+ #: profile-builder-2.0/admin/manage-fields.php:416
2291
+ msgid "Micronesia"
2292
+ msgstr "Micronesia"
2293
+
2294
+ #: profile-builder-2.0/admin/manage-fields.php:417
2295
+ msgid "Moldova"
2296
+ msgstr "Moldova"
2297
+
2298
+ #: profile-builder-2.0/admin/manage-fields.php:418
2299
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2300
+ msgid "Monaco"
2301
+ msgstr "Monaco"
2302
+
2303
+ #: profile-builder-2.0/admin/manage-fields.php:419
2304
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2305
+ msgid "Mongolia"
2306
+ msgstr "Mongolia"
2307
+
2308
+ #: profile-builder-2.0/admin/manage-fields.php:420
2309
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2310
+ msgid "Montenegro"
2311
+ msgstr "Montenegro"
2312
+
2313
+ #: profile-builder-2.0/admin/manage-fields.php:421
2314
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2315
+ msgid "Montserrat"
2316
+ msgstr "Montserrat"
2317
+
2318
+ #: profile-builder-2.0/admin/manage-fields.php:422
2319
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2320
+ msgid "Morocco"
2321
+ msgstr "Morocco"
2322
+
2323
+ #: profile-builder-2.0/admin/manage-fields.php:423
2324
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2325
+ msgid "Mozambique"
2326
+ msgstr "Mozambique"
2327
+
2328
+ #: profile-builder-2.0/admin/manage-fields.php:424
2329
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2330
+ msgid "Myanmar"
2331
+ msgstr "Myanmar"
2332
+
2333
+ #: profile-builder-2.0/admin/manage-fields.php:425
2334
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2335
+ msgid "Namibia"
2336
+ msgstr "Namibia"
2337
+
2338
+ #: profile-builder-2.0/admin/manage-fields.php:426
2339
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2340
+ msgid "Nauru"
2341
+ msgstr "Nauru"
2342
+
2343
+ #: profile-builder-2.0/admin/manage-fields.php:427
2344
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2345
+ msgid "Nepal"
2346
+ msgstr "Nepal"
2347
+
2348
+ #: profile-builder-2.0/admin/manage-fields.php:428
2349
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2350
+ msgid "Netherlands"
2351
+ msgstr "Netherlands"
2352
+
2353
+ #: profile-builder-2.0/admin/manage-fields.php:429
2354
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2355
+ msgid "New Caledonia"
2356
+ msgstr "New Caledonia"
2357
+
2358
+ #: profile-builder-2.0/admin/manage-fields.php:430
2359
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2360
+ msgid "New Zealand"
2361
+ msgstr "New Zealand"
2362
+
2363
+ #: profile-builder-2.0/admin/manage-fields.php:431
2364
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2365
+ msgid "Nicaragua"
2366
+ msgstr "Nicaragua"
2367
+
2368
+ #: profile-builder-2.0/admin/manage-fields.php:432
2369
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2370
+ msgid "Niger"
2371
+ msgstr "Niger"
2372
+
2373
+ #: profile-builder-2.0/admin/manage-fields.php:433
2374
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2375
+ msgid "Nigeria"
2376
+ msgstr "Nigeria"
2377
+
2378
+ #: profile-builder-2.0/admin/manage-fields.php:434
2379
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2380
+ msgid "Niue"
2381
+ msgstr "Niue"
2382
+
2383
+ #: profile-builder-2.0/admin/manage-fields.php:435
2384
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
+ msgid "Norfolk Island"
2386
+ msgstr "Norfolk Island"
2387
+
2388
+ #: profile-builder-2.0/admin/manage-fields.php:436
2389
+ msgid "North Korea"
2390
+ msgstr "North Korea"
2391
+
2392
+ #: profile-builder-2.0/admin/manage-fields.php:437
2393
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2394
+ msgid "Northern Mariana Islands"
2395
+ msgstr "Northern Mariana Islands"
2396
+
2397
+ #: profile-builder-2.0/admin/manage-fields.php:438
2398
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2399
+ msgid "Norway"
2400
+ msgstr "Norway"
2401
+
2402
+ #: profile-builder-2.0/admin/manage-fields.php:439
2403
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2404
+ msgid "Oman"
2405
+ msgstr "Oman"
2406
+
2407
+ #: profile-builder-2.0/admin/manage-fields.php:440
2408
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2409
+ msgid "Pakistan"
2410
+ msgstr "Pakistan"
2411
+
2412
+ #: profile-builder-2.0/admin/manage-fields.php:441
2413
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2414
+ msgid "Palau"
2415
+ msgstr "Palau"
2416
+
2417
+ #: profile-builder-2.0/admin/manage-fields.php:442
2418
+ msgid "Palestinian Territory"
2419
+ msgstr "Palestinian Territory"
2420
+
2421
+ #: profile-builder-2.0/admin/manage-fields.php:443
2422
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2423
+ msgid "Panama"
2424
+ msgstr "Panama"
2425
+
2426
+ #: profile-builder-2.0/admin/manage-fields.php:444
2427
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2428
+ msgid "Papua New Guinea"
2429
+ msgstr "Papua New Guinea"
2430
+
2431
+ #: profile-builder-2.0/admin/manage-fields.php:445
2432
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2433
+ msgid "Paraguay"
2434
+ msgstr "Paraguay"
2435
+
2436
+ #: profile-builder-2.0/admin/manage-fields.php:446
2437
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2438
+ msgid "Peru"
2439
+ msgstr "Peru"
2440
+
2441
+ #: profile-builder-2.0/admin/manage-fields.php:447
2442
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2443
+ msgid "Philippines"
2444
+ msgstr "Philippines"
2445
+
2446
+ #: profile-builder-2.0/admin/manage-fields.php:448
2447
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2448
+ msgid "Pitcairn"
2449
+ msgstr "Pitcairn"
2450
+
2451
+ #: profile-builder-2.0/admin/manage-fields.php:449
2452
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2453
+ msgid "Poland"
2454
+ msgstr "Poland"
2455
+
2456
+ #: profile-builder-2.0/admin/manage-fields.php:450
2457
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2458
+ msgid "Portugal"
2459
+ msgstr "Portugal"
2460
+
2461
+ #: profile-builder-2.0/admin/manage-fields.php:451
2462
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2463
+ msgid "Puerto Rico"
2464
+ msgstr "Puerto Rico"
2465
+
2466
+ #: profile-builder-2.0/admin/manage-fields.php:452
2467
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2468
+ msgid "Qatar"
2469
+ msgstr "Qatar"
2470
+
2471
+ #: profile-builder-2.0/admin/manage-fields.php:453
2472
+ msgid "Republic of the Congo"
2473
+ msgstr "Republic of the Congo"
2474
+
2475
+ #: profile-builder-2.0/admin/manage-fields.php:454
2476
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2477
+ msgid "Reunion"
2478
+ msgstr "Reunion"
2479
+
2480
+ #: profile-builder-2.0/admin/manage-fields.php:455
2481
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2482
+ msgid "Romania"
2483
+ msgstr "Romania"
2484
+
2485
+ #: profile-builder-2.0/admin/manage-fields.php:456
2486
+ msgid "Russia"
2487
+ msgstr "Russia"
2488
+
2489
+ #: profile-builder-2.0/admin/manage-fields.php:457
2490
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2491
+ msgid "Rwanda"
2492
+ msgstr "Rwanda"
2493
+
2494
+ #: profile-builder-2.0/admin/manage-fields.php:458
2495
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2496
+ msgid "Saint Barthelemy"
2497
+ msgstr "Saint Barthelemy"
2498
+
2499
+ #: profile-builder-2.0/admin/manage-fields.php:459
2500
+ msgid "Saint Helena"
2501
+ msgstr "Saint Helena"
2502
+
2503
+ #: profile-builder-2.0/admin/manage-fields.php:460
2504
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2505
+ msgid "Saint Kitts and Nevis"
2506
+ msgstr "Saint Kitts and Nevis"
2507
+
2508
+ #: profile-builder-2.0/admin/manage-fields.php:461
2509
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2510
+ msgid "Saint Lucia"
2511
+ msgstr "Saint Lucia"
2512
+
2513
+ #: profile-builder-2.0/admin/manage-fields.php:462
2514
+ msgid "Saint Martin"
2515
+ msgstr "Saint Martin"
2516
+
2517
+ #: profile-builder-2.0/admin/manage-fields.php:463
2518
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2519
+ msgid "Saint Pierre and Miquelon"
2520
+ msgstr "Saint Pierre and Miquelon"
2521
+
2522
+ #: profile-builder-2.0/admin/manage-fields.php:464
2523
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2524
+ msgid "Saint Vincent and the Grenadines"
2525
+ msgstr "Saint Vincent and the Grenadines"
2526
+
2527
+ #: profile-builder-2.0/admin/manage-fields.php:465
2528
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2529
+ msgid "Samoa"
2530
+ msgstr "Samoa"
2531
+
2532
+ #: profile-builder-2.0/admin/manage-fields.php:466
2533
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2534
+ msgid "San Marino"
2535
+ msgstr "San Marino"
2536
+
2537
+ #: profile-builder-2.0/admin/manage-fields.php:467
2538
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2539
+ msgid "Sao Tome and Principe"
2540
+ msgstr "Sao Tome and Principe"
2541
+
2542
+ #: profile-builder-2.0/admin/manage-fields.php:468
2543
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2544
+ msgid "Saudi Arabia"
2545
+ msgstr "Saudi Arabia"
2546
+
2547
+ #: profile-builder-2.0/admin/manage-fields.php:469
2548
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2549
+ msgid "Senegal"
2550
+ msgstr "Senegal"
2551
+
2552
+ #: profile-builder-2.0/admin/manage-fields.php:470
2553
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2554
+ msgid "Serbia"
2555
+ msgstr "Serbia"
2556
+
2557
+ #: profile-builder-2.0/admin/manage-fields.php:471
2558
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2559
+ msgid "Seychelles"
2560
+ msgstr "Seychelles"
2561
+
2562
+ #: profile-builder-2.0/admin/manage-fields.php:472
2563
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2564
+ msgid "Sierra Leone"
2565
+ msgstr "Sierra Leone"
2566
+
2567
+ #: profile-builder-2.0/admin/manage-fields.php:473
2568
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2569
+ msgid "Singapore"
2570
+ msgstr "Singapore"
2571
+
2572
+ #: profile-builder-2.0/admin/manage-fields.php:474
2573
+ msgid "Sint Maarten"
2574
+ msgstr "Sint Maarten"
2575
+
2576
+ #: profile-builder-2.0/admin/manage-fields.php:475
2577
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2578
+ msgid "Slovakia"
2579
+ msgstr "Slovakia"
2580
+
2581
+ #: profile-builder-2.0/admin/manage-fields.php:476
2582
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2583
+ msgid "Slovenia"
2584
+ msgstr "Slovenia"
2585
+
2586
+ #: profile-builder-2.0/admin/manage-fields.php:477
2587
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2588
+ msgid "Solomon Islands"
2589
+ msgstr "Solomon Islands"
2590
+
2591
+ #: profile-builder-2.0/admin/manage-fields.php:478
2592
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2593
+ msgid "Somalia"
2594
+ msgstr "Somalia"
2595
+
2596
+ #: profile-builder-2.0/admin/manage-fields.php:479
2597
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2598
+ msgid "South Africa"
2599
+ msgstr "South Africa"
2600
+
2601
+ #: profile-builder-2.0/admin/manage-fields.php:480
2602
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2603
+ msgid "South Georgia and the South Sandwich Islands"
2604
+ msgstr "South Georgia and the South Sandwich Islands"
2605
+
2606
+ #: profile-builder-2.0/admin/manage-fields.php:481
2607
+ msgid "South Korea"
2608
+ msgstr "South Korea"
2609
+
2610
+ #: profile-builder-2.0/admin/manage-fields.php:482
2611
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2612
+ msgid "South Sudan"
2613
+ msgstr "South Sudan"
2614
+
2615
+ #: profile-builder-2.0/admin/manage-fields.php:483
2616
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2617
+ msgid "Spain"
2618
+ msgstr "Spain"
2619
+
2620
+ #: profile-builder-2.0/admin/manage-fields.php:484
2621
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2622
+ msgid "Sri Lanka"
2623
+ msgstr "Sri Lanka"
2624
+
2625
+ #: profile-builder-2.0/admin/manage-fields.php:485
2626
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2627
+ msgid "Sudan"
2628
+ msgstr "Sudan"
2629
+
2630
+ #: profile-builder-2.0/admin/manage-fields.php:486
2631
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2632
+ msgid "Suriname"
2633
+ msgstr "Suriname"
2634
+
2635
+ #: profile-builder-2.0/admin/manage-fields.php:487
2636
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2637
+ msgid "Svalbard and Jan Mayen"
2638
+ msgstr "Svalbard and Jan Mayen"
2639
+
2640
+ #: profile-builder-2.0/admin/manage-fields.php:488
2641
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2642
+ msgid "Swaziland"
2643
+ msgstr "Swaziland"
2644
+
2645
+ #: profile-builder-2.0/admin/manage-fields.php:489
2646
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2647
+ msgid "Sweden"
2648
+ msgstr "Sweden"
2649
+
2650
+ #: profile-builder-2.0/admin/manage-fields.php:490
2651
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2652
+ msgid "Switzerland"
2653
+ msgstr "Switzerland"
2654
+
2655
+ #: profile-builder-2.0/admin/manage-fields.php:491
2656
+ msgid "Syria"
2657
+ msgstr "Syria"
2658
+
2659
+ #: profile-builder-2.0/admin/manage-fields.php:492
2660
+ msgid "Taiwan"
2661
+ msgstr "Taiwan"
2662
+
2663
+ #: profile-builder-2.0/admin/manage-fields.php:493
2664
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2665
+ msgid "Tajikistan"
2666
+ msgstr "Tajikistan"
2667
+
2668
+ #: profile-builder-2.0/admin/manage-fields.php:494
2669
+ msgid "Tanzania"
2670
+ msgstr "Tanzania"
2671
+
2672
+ #: profile-builder-2.0/admin/manage-fields.php:495
2673
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2674
+ msgid "Thailand"
2675
+ msgstr "Thailand"
2676
+
2677
+ #: profile-builder-2.0/admin/manage-fields.php:496
2678
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2679
+ msgid "Togo"
2680
+ msgstr "Togo"
2681
+
2682
+ #: profile-builder-2.0/admin/manage-fields.php:497
2683
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2684
+ msgid "Tokelau"
2685
+ msgstr "Tokelau"
2686
+
2687
+ #: profile-builder-2.0/admin/manage-fields.php:498
2688
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2689
+ msgid "Tonga"
2690
+ msgstr "Tonga"
2691
+
2692
+ #: profile-builder-2.0/admin/manage-fields.php:499
2693
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2694
+ msgid "Trinidad and Tobago"
2695
+ msgstr "Trinidad and Tobago"
2696
+
2697
+ #: profile-builder-2.0/admin/manage-fields.php:500
2698
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2699
+ msgid "Tunisia"
2700
+ msgstr "Tunisia"
2701
+
2702
+ #: profile-builder-2.0/admin/manage-fields.php:501
2703
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2704
+ msgid "Turkey"
2705
+ msgstr "Turkey"
2706
+
2707
+ #: profile-builder-2.0/admin/manage-fields.php:502
2708
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2709
+ msgid "Turkmenistan"
2710
+ msgstr "Turkmenistan"
2711
+
2712
+ #: profile-builder-2.0/admin/manage-fields.php:503
2713
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2714
+ msgid "Turks and Caicos Islands"
2715
+ msgstr "Turks and Caicos Islands"
2716
+
2717
+ #: profile-builder-2.0/admin/manage-fields.php:504
2718
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2719
+ msgid "Tuvalu"
2720
+ msgstr "Tuvalu"
2721
+
2722
+ #: profile-builder-2.0/admin/manage-fields.php:505
2723
+ msgid "U.S. Virgin Islands"
2724
+ msgstr "U.S. Virgin Islands"
2725
+
2726
+ #: profile-builder-2.0/admin/manage-fields.php:506
2727
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2728
+ msgid "Uganda"
2729
+ msgstr "Uganda"
2730
+
2731
+ #: profile-builder-2.0/admin/manage-fields.php:507
2732
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2733
+ msgid "Ukraine"
2734
+ msgstr "Ukraine"
2735
+
2736
+ #: profile-builder-2.0/admin/manage-fields.php:508
2737
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2738
+ msgid "United Arab Emirates"
2739
+ msgstr "United Arab Emirates"
2740
+
2741
+ #: profile-builder-2.0/admin/manage-fields.php:509
2742
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2743
+ msgid "United Kingdom"
2744
+ msgstr "United Kingdom"
2745
+
2746
+ #: profile-builder-2.0/admin/manage-fields.php:510
2747
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2748
+ msgid "United States"
2749
+ msgstr "United States"
2750
+
2751
+ #: profile-builder-2.0/admin/manage-fields.php:511
2752
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2753
+ msgid "United States Minor Outlying Islands"
2754
+ msgstr "United States Minor Outlying Islands"
2755
+
2756
+ #: profile-builder-2.0/admin/manage-fields.php:512
2757
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2758
+ msgid "Uruguay"
2759
+ msgstr "Uruguay"
2760
+
2761
+ #: profile-builder-2.0/admin/manage-fields.php:513
2762
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2763
+ msgid "Uzbekistan"
2764
+ msgstr "Uzbekistan"
2765
+
2766
+ #: profile-builder-2.0/admin/manage-fields.php:514
2767
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2768
+ msgid "Vanuatu"
2769
+ msgstr "Vanuatu"
2770
+
2771
+ #: profile-builder-2.0/admin/manage-fields.php:515
2772
+ msgid "Vatican"
2773
+ msgstr "Vatican"
2774
+
2775
+ #: profile-builder-2.0/admin/manage-fields.php:516
2776
+ msgid "Venezuela"
2777
+ msgstr "Venezuela"
2778
+
2779
+ #: profile-builder-2.0/admin/manage-fields.php:517
2780
+ msgid "Vietnam"
2781
+ msgstr "Vietnam"
2782
+
2783
+ #: profile-builder-2.0/admin/manage-fields.php:518
2784
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2785
+ msgid "Wallis and Futuna"
2786
+ msgstr "Wallis and Futuna"
2787
+
2788
+ #: profile-builder-2.0/admin/manage-fields.php:519
2789
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2790
+ msgid "Western Sahara"
2791
+ msgstr "Western Sahara"
2792
+
2793
+ #: profile-builder-2.0/admin/manage-fields.php:520
2794
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2795
+ msgid "Yemen"
2796
+ msgstr "Yemen"
2797
+
2798
+ #: profile-builder-2.0/admin/manage-fields.php:521
2799
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2800
+ msgid "Zambia"
2801
+ msgstr "Zambia"
2802
+
2803
+ #: profile-builder-2.0/admin/manage-fields.php:522
2804
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2805
+ msgid "Zimbabwe"
2806
+ msgstr "Zimbabwe"
2807
+
2808
+ #: profile-builder-2.0/admin/manage-fields.php:1202
2809
+ 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."
2810
+ msgstr ""
2811
+
2812
+ #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:241
2813
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2814
+ msgstr "Di konto skal godekendes af en administrator før du kan logge ind"
2815
+
2816
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:210
2817
+ msgid "Your account has been successfully created!"
2818
+ msgstr "Din konto er oprettet!"
2819
+
2820
+ #: profile-builder-2.0/features/functions.php:705
2821
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:374
2822
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:379
2823
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:421
2824
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:458
2825
+ msgid "Please enter a (valid) reCAPTCHA value"
2826
+ msgstr "Indtast en valid reCAPTCHA værdi"
2827
+
2828
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:421
2829
+ msgid "Click the BACK button on your browser, and try again."
2830
+ msgstr "TrykBACK knappen i din browser, og prøv igen."
2831
+
2832
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2833
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2834
+ msgid "Sorry, you cannot upload this file type for this field."
2835
+ msgstr "Beklager, du kan ikke uploade denne fil type."
2836
+
2837
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2838
+ msgid "An error occurred, please try again later."
2839
+ msgstr "Der opstaod en fejl, prøv venligst igen senere."
2840
+
2841
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:273
2842
+ msgid "More"
2843
+ msgstr "Mere"
2844
+
2845
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:367
2846
+ msgid "You do not have permission to view this user list."
2847
+ msgstr "Du har ikke lov til at se denne bruger liste."
2848
+
2849
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:380
2850
+ msgid "You do not have the required user role to view this user list."
2851
+ msgstr "Du er ikke oprettet med en rigtige brugerrolle for at se denne liste"
2852
+
2853
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2127
2854
+ msgid "Ascending"
2855
+ msgstr "Stigende"
2856
+
2857
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2128
2858
+ msgid "Descending"
2859
+ msgstr "Faldende"
2860
+
2861
+ #: profile-builder-2.0/admin/add-ons.php:148
2862
+ #: profile-builder-2.0/admin/add-ons.php:248
2863
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:134
2864
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:213
2865
+ msgid "Download Now"
2866
+ msgstr "Download nu"
2867
+
2868
+ #: profile-builder-2.0/admin/admin-functions.php:197
2869
+ 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. "
2870
+ 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."
2871
+
2872
+ #: profile-builder-2.0/admin/manage-fields.php:77
2873
+ msgid "Choose one of the supported field types"
2874
+ msgstr "Vælg en af de supporterede felttyper"
2875
+
2876
+ #: profile-builder-2.0/admin/manage-fields.php:79
2877
+ msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2878
+ msgstr ".Ekstra felttyper er tilgængelig i <a href=\"%s\">Hobbyist or PRO versions</a>."
2879
+
2880
+ #: profile-builder-2.0/admin/manage-fields.php:126
2881
+ msgid "Site Key"
2882
+ msgstr "Site nøgle (Key)"
2883
+
2884
+ #: profile-builder-2.0/admin/manage-fields.php:126
2885
+ msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2886
+ msgstr "Site nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2887
+
2888
+ #: profile-builder-2.0/admin/manage-fields.php:127
2889
+ msgid "Secret Key"
2890
+ msgstr "Hemmelig nøgle (Key)"
2891
+
2892
+ #: profile-builder-2.0/admin/manage-fields.php:127
2893
+ msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2894
+ msgstr "Den hemmelige nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2895
+
2896
+ #: profile-builder-2.0/admin/manage-fields.php:1009
2897
+ msgid "You must enter the site key\n"
2898
+ msgstr "Du skal enter site nøglen (Key)\n"
2899
+
2900
+ #: profile-builder-2.0/admin/manage-fields.php:1011
2901
+ msgid "You must enter the secret key\n"
2902
+ msgstr "Du skal enter den hemmelige nøgle (Key)\n"
2903
+
2904
+ #: profile-builder-2.0/admin/add-ons.php:10
2905
+ #: profile-builder-2.0/admin/add-ons.php:32
2906
+ msgid "Add-Ons"
2907
+ msgstr "Tilføjelser"
2908
+
2909
+ #: profile-builder-2.0/admin/add-ons.php:34
2910
+ #: profile-builder-2.0/admin/add-ons.php:129
2911
+ #: profile-builder-2.0/admin/add-ons.php:231
2912
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:78
2913
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:114
2914
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:193
2915
+ msgid "Activate"
2916
+ msgstr "Aktivér"
2917
+
2918
+ #: profile-builder-2.0/admin/add-ons.php:36
2919
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:80
2920
+ msgid "Downloading and installing..."
2921
+ msgstr "Dowloader og installerer...."
2922
+
2923
+ #: profile-builder-2.0/admin/add-ons.php:37
2924
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:81
2925
+ msgid "Installation complete"
2926
+ msgstr "Installationen gennemført"
2927
+
2928
+ #: profile-builder-2.0/admin/add-ons.php:39
2929
+ msgid "Add-On is Active"
2930
+ msgstr "Tilføjelser er aktive"
2931
+
2932
+ #: profile-builder-2.0/admin/add-ons.php:40
2933
+ msgid "Add-On has been activated"
2934
+ msgstr "Tilføjelser er blevet aktiveret"
2935
+
2936
+ #: profile-builder-2.0/admin/add-ons.php:41
2937
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:85
2938
+ msgid "Retry Install"
2939
+ msgstr "Geninstallér"
2940
+
2941
+ #: profile-builder-2.0/admin/add-ons.php:43
2942
+ #: profile-builder-2.0/admin/add-ons.php:140
2943
+ msgid "Add-On is <strong>active</strong>"
2944
+ msgstr "Tilføjelser (add-on) er <strong>active</strong>"
2945
+
2946
+ #: profile-builder-2.0/admin/add-ons.php:44
2947
+ #: profile-builder-2.0/admin/add-ons.php:138
2948
+ msgid "Add-On is <strong>inactive</strong>"
2949
+ msgstr "Tilføjelser (add-on) er <strong>inactive</strong>"
2950
+
2951
+ #: profile-builder-2.0/admin/add-ons.php:46
2952
+ #: profile-builder-2.0/admin/add-ons.php:133
2953
+ #: profile-builder-2.0/admin/add-ons.php:235
2954
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:90
2955
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:118
2956
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:197
2957
+ msgid "Deactivate"
2958
+ msgstr "Deaktivér"
2959
+
2960
+ #: profile-builder-2.0/admin/add-ons.php:47
2961
+ msgid "Add-On has been deactivated."
2962
+ msgstr "Tilføjelser er blevet deaktiveret"
2963
+
2964
+ #: profile-builder-2.0/admin/add-ons.php:59
2965
+ msgid "Something went wrong, we could not connect to the server. Please try again later."
2966
+ msgstr "Et eller andet gik galt, vi kunne ikke forbinde til serveren. Venligst prøv igen senere."
2967
+
2968
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:137
2969
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:216
2970
+ msgid "Install Now"
2971
+ msgstr "Installér nu"
2972
+
2973
+ #: profile-builder-2.0/admin/add-ons.php:153
2974
+ #: profile-builder-2.0/admin/add-ons.php:251
2975
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:141
2976
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:220
2977
+ msgid "Compatible with your version of Profile Builder."
2978
+ msgstr "Kompatibel med din version af Profile Builder."
2979
+
2980
+ #: profile-builder-2.0/admin/add-ons.php:162
2981
+ msgid "Upgrade Profile Builder"
2982
+ msgstr "Opgradér Profile Builder"
2983
+
2984
+ #: profile-builder-2.0/admin/add-ons.php:163
2985
+ msgid "Not compatible with Profile Builder"
2986
+ msgstr "Ikke kompatibel med Profile Builder"
2987
+
2988
+ #: profile-builder-2.0/admin/add-ons.php:171
2989
+ msgid "Not compatible with your version of Profile Builder."
2990
+ msgstr "Ikke kompatibel med din version af Profile Builder"
2991
+
2992
+ #: profile-builder-2.0/admin/add-ons.php:172
2993
+ msgid "Minimum required Profile Builder version:"
2994
+ msgstr "Minimum krævet version af Profile Builder:"
2995
+
2996
+ #: profile-builder-2.0/admin/add-ons.php:177
2997
+ msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
2998
+ msgstr "Kunne ikke installere tilføjelse (add-on). Prøv igen eller <a href=\"%s\" target=\"_blank\">install manually</a>."
2999
+
3000
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3001
+ msgid "You must enter a valid email address."
3002
+ msgstr "Du skal indtaste en gyldig e-mail adresse."
3003
+
3004
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3005
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3006
+ msgid "This username is invalid because it uses illegal characters."
3007
+ msgstr "Dette brugernavn er ugyldigt, idet det indeholde karaterer / tegn som ikke er tilladte."
3008
+
3009
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3010
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3011
+ msgid "Please enter a valid username."
3012
+ msgstr "Venligst indtast et gyldigt brugernavn."
3013
+
3014
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:72
3015
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:85
3016
+ msgid "Only administrators can see this field on edit profile forms."
3017
+ msgstr "Kun administratorer kan se dette felt på rediger profilformularer."
3018
+
3019
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:81
3020
+ msgid "As an administrator you cannot change your role."
3021
+ msgstr "Som administrator kan du ikke ændre din rolle."
3022
+
3023
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3024
+ msgid ""
3025
+ "\n"
3026
+ "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3027
+ "<p>His/her new password is: {{password}}</p>\n"
3028
+ msgstr ""
3029
+ "\n"
3030
+ "<p>{{username}} har foretaget en ændring af adgangskoden via genskab adgangskode.</p>\n"
3031
+ "\n"
3032
+ "<p>Hans/hendes nye adgangskode er: {{password}}</p>\n"
3033
+ "\n"
3034
+
3035
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3036
+ msgid "Admin Notification for User Password Reset"
3037
+ msgstr "Admin meddelelse for genskabning af bruger adgangskode"
3038
+
3039
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
3040
+ msgid "Reset Key"
3041
+ msgstr "Genskab nøgle"
3042
+
3043
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:43
3044
+ msgid "Reset Url"
3045
+ msgstr "Genskab URL"
3046
+
3047
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:44
3048
+ msgid "Reset Link"
3049
+ msgstr "Genskab link"
3050
+
3051
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3052
+ msgid ""
3053
+ "\n"
3054
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3055
+ "Username: {{username}}</p>\n"
3056
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
3057
+ "<p>To reset your password, visit the following address:<br/>\n"
3058
+ "{{{reset_link}}}</p>\n"
3059
+ msgstr ""
3060
+ "\n"
3061
+ "<p>Nogen har foretaget en genskabning af adgangskoden for følgende konto: {{site_name}}<br/>\n"
3062
+ "Brugernavn: {{username}}</p>\n"
3063
+ "<p>Hvis dette var en fejl skal du blot se bort fra denne email og intet vil ske.</p>\n"
3064
+ "<p>For at genskabe din adgangskode gå ind på følgende adresse:<br/>\n"
3065
+ "{{{reset_link}}}</p>\n"
3066
+
3067
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3068
+ msgid "[{{site_name}}] Password Reset"
3069
+ msgstr "[{{site_name}}] Nulstil adgangskode "
3070
+
3071
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3072
+ msgid "Password Reset Email"
3073
+ msgstr "E-mail vedr. nulstilling af adgangskode"
3074
+
3075
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3076
+ msgid ""
3077
+ "\n"
3078
+ "<p>You have successfully reset your password to: {{password}}</p>\n"
3079
+ msgstr ""
3080
+ "\n"
3081
+ "<p>Du har med succes nulstillet din adgangskode til: {{password}}</p>\n"
3082
+ "\n"
3083
+
3084
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3085
+ msgid "[{{site_name}}] Password Reset Successfully"
3086
+ msgstr "[{{site_name}}] Adgangskode nulstillet succesfuldt"
3087
+
3088
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3089
+ msgid "Password Reset Success Email"
3090
+ msgstr "E-mail vedr. adgangskode nulstillet succesfuldt"
3091
+
3092
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:152
3093
+ msgid "User Nicename"
3094
+ msgstr "Bruger kaldenavn"
3095
+
3096
+ #: pb-add-on-woocommerce/woosync-page.php:80
3097
+ #: pb-add-on-woocommerce/woosync-page.php:114
3098
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:486
3099
+ msgid "None"
3100
+ msgstr "Ingen"
3101
+
3102
+ #: profile-builder-2.0/admin/admin-functions.php:128
3103
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3104
+ msgstr "<strong>FEJL</strong>: Adgangskoden skal bestå af mindst %s characters"
3105
+
3106
+ #: profile-builder-2.0/admin/admin-functions.php:145
3107
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3108
+ msgstr "<strong>FEJL</strong>: Adgangskodens styrke skal være mindst: %s"
3109
+
3110
+ #: profile-builder-2.0/admin/general-settings.php:163
3111
+ msgid "Username and Email"
3112
+ msgstr "Brugernavn og e-mail"
3113
+
3114
+ #: profile-builder-2.0/admin/general-settings.php:168
3115
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
3116
+ msgstr "\"Brugernavn og e-mail\" - brugere kan logge ind med såvel brugernavn som e-mail."
3117
+
3118
+ #: profile-builder-2.0/admin/general-settings.php:169
3119
+ msgid "\"Username\" - users can Log In only with Username."
3120
+ msgstr "\"Brugernavn\" - brugere kan kun logge ind med brugernavn."
3121
+
3122
+ #: profile-builder-2.0/admin/general-settings.php:170
3123
+ msgid "\"Email\" - users can Log In only with Email."
3124
+ msgstr "\"E-mail\" - brugere kan kun logge ind med e-mail."
3125
+
3126
+ #: profile-builder-2.0/admin/manage-fields.php:119
3127
+ 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 (.*)"
3128
+ 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 (.*)"
3129
+
3130
+ #: profile-builder-2.0/admin/manage-fields.php:120
3131
+ 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 (.*)"
3132
+ 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 (.*)"
3133
+
3134
+ #: profile-builder-2.0/admin/manage-fields.php:130
3135
+ msgid "User Roles"
3136
+ msgstr "Brugerroller"
3137
+
3138
+ #: profile-builder-2.0/admin/manage-fields.php:130
3139
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3140
+ msgstr "Vælg hvilke brugerroller der skal vises for brugerne (\"træk\" og \"slip\" for at om-organiserer)"
3141
+
3142
+ #: profile-builder-2.0/admin/manage-fields.php:131
3143
+ msgid "User Roles Order"
3144
+ msgstr "Brugerroller orden"
3145
+
3146
+ #: profile-builder-2.0/admin/manage-fields.php:131
3147
+ msgid "Save the user role order from the user roles checkboxes"
3148
+ msgstr "Gem brugerrolle ordenen fra brugerrollernes tjekbokse"
3149
+
3150
+ #: profile-builder-2.0/admin/manage-fields.php:1111
3151
+ msgid "Please select at least one user role\n"
3152
+ msgstr "Vælg venligst mindst en brugerrolle\n"
3153
+
3154
+ #: profile-builder-2.0/admin/register-version.php:22
3155
+ msgid "Profile Builder Register"
3156
+ msgstr "Registrer Profile Builder"
3157
+
3158
+ #: profile-builder-2.0/admin/register-version.php:81
3159
+ msgid "The serial number is about to expire soon!"
3160
+ msgstr "Serienummeret udløber snart!"
3161
+
3162
+ #: profile-builder-2.0/admin/register-version.php:81
3163
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3164
+ msgstr "Dit serienummer er ved at udløbe, venligst %1$s forny din licens%2$s."
3165
+
3166
+ #: profile-builder-2.0/admin/register-version.php:83
3167
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3168
+ msgstr " Dit serienummer er udløbet, venligst %1$s forny din licens%2$s."
3169
+
3170
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:340
3171
+ msgid "Add Entry"
3172
+ msgstr "Tilføj post"
3173
+
3174
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3175
+ msgid "show"
3176
+ msgstr "vis"
3177
+
3178
+ #: profile-builder-2.0/features/functions.php:763
3179
+ 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"
3180
+ 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"
3181
+
3182
+ #: profile-builder-2.0/front-end/class-formbuilder.php:681
3183
+ msgid "User to edit:"
3184
+ msgstr "Bruger der skal redigeres:"
3185
+
3186
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3187
+ #: profile-builder-2.0/front-end/recover.php:251
3188
+ msgid "The password must have the minimum length of %s characters"
3189
+ msgstr "Adgangskoden skal have en minimumslængde %s karakterer"
3190
+
3191
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3192
+ #: profile-builder-2.0/front-end/recover.php:255
3193
+ msgid "The password must have a minimum strength of %s"
3194
+ msgstr "Adgangskoden skal minimum have en styrke på %s"
3195
+
3196
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:118
3197
+ msgid "You cannot register this user role"
3198
+ msgstr "Du kan ikke registrere denne brugerrolle"
3199
+
3200
+ #: profile-builder-2.0/front-end/login.php:153
3201
+ msgid "username or email"
3202
+ msgstr "brugernavn eller e-mail"
3203
+
3204
+ #: profile-builder-2.0/front-end/login.php:229
3205
+ msgid "Username or Email"
3206
+ msgstr "Brugernavn eller e-mail"
3207
+
3208
+ #: profile-builder-2.0/front-end/logout.php:15
3209
+ msgid "You are currently logged in as %s. "
3210
+ msgstr "Du er i øjeblikket logget ind som %s."
3211
+
3212
+ #: profile-builder-2.0/front-end/logout.php:15
3213
+ msgid "Log out &raquo;"
3214
+ msgstr "Log ud &raquo;"
3215
+
3216
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3217
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3218
+ msgid "User Role"
3219
+ msgstr "Brugerrolle"
3220
+
3221
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2046
3222
+ msgid "View all extra shortcode parameters"
3223
+ msgstr "Se alle ekstra \"shortcode\" parametre"
3224
+
3225
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2060
3226
+ msgid "displays only the users that you specified the user_id for"
3227
+ msgstr "vis kun de brugere som du specificerede 'user_id' for"
3228
+
3229
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2066
3230
+ msgid "displays all users except the ones you specified the user_id for"
3231
+ msgstr "vis alle brugere undtagen dem som du specificerede 'user_id' for"
3232
+
3233
+ #: profile-builder-2.0/features/functions.php:593
3234
+ msgid "Minimum length of %d characters"
3235
+ msgstr "Minimum længde på %d karakterer"
3236
+
3237
+ #: profile-builder-2.0/front-end/class-formbuilder.php:171
3238
+ #: profile-builder-2.0/front-end/class-formbuilder.php:174
3239
+ msgid "This message is only visible by administrators"
3240
+ msgstr "Denne meddelelse er kun synlig for administratorer"
3241
+
3242
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:404
3243
+ msgid "User not found"
3244
+ msgstr "Bruger ikke fundet"
3245
+
3246
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3247
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3248
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
3249
+ msgstr "Gyldige tags {{reply_to}} og{{site_name}}"
3250
+
3251
+ #: profile-builder-2.0/admin/admin-bar.php:48
3252
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3253
+ msgstr "Vælg hvilke brugerroller der skal se kontrolpanelet på sitets 'front-end'."
3254
+
3255
+ #: profile-builder-2.0/admin/manage-fields.php:124
3256
+ 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"
3257
+ 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."
3258
+
3259
+ #: profile-builder-2.0/admin/manage-fields.php:1038
3260
+ msgid "The meta-name cannot be empty\n"
3261
+ msgstr "'Meta-name' kan ikke være tom\n"
3262
+
3263
+ #: profile-builder-2.0/admin/register-version.php:69
3264
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3265
+ msgstr "Nu du har erhvervet en kopi af %s bør du tage dig tid til at registrere det med serienummeret som du modtog."
3266
+
3267
+ #: profile-builder-2.0/admin/register-version.php:243
3268
+ 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>"
3269
+ 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>"
3270
+
3271
+ #: profile-builder-2.0/admin/register-version.php:246
3272
+ 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>"
3273
+ 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>"
3274
+
3275
+ #: profile-builder-2.0/admin/register-version.php:251
3276
+ 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>"
3277
+ 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>"
3278
+
3279
+ #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3280
+ #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3281
+ #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3282
+ #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3283
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:32
3284
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:54
3285
+ msgid "...Choose"
3286
+ msgstr "...Vælg"
3287
+
3288
+ #: profile-builder-2.0/features/class-list-table.php:526
3289
+ #: profile-builder-2.0/features/class-list-table.php:942
3290
+ msgid "1 item"
3291
+ msgstr "1 emne"
3292
+
3293
+ #: profile-builder-2.0/features/functions.php:579
3294
+ msgid "Very Weak"
3295
+ msgstr "Meget svag"
3296
+
3297
+ #: profile-builder-2.0/features/functions.php:667
3298
+ msgid "This field is required"
3299
+ msgstr "Dette felt er obligatorisk"
3300
+
3301
+ #: profile-builder-2.0/features/functions.php:731
3302
+ msgid "Cancel"
3303
+ msgstr "Annuller"
3304
+
3305
+ #: profile-builder-2.0/features/functions.php:767
3306
+ 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"
3307
+ 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"
3308
+
3309
+ #: profile-builder-2.0/front-end/login.php:144
3310
+ msgid "Invalid username."
3311
+ msgstr "Ugyldigt brugernavn"
3312
+
3313
+ #: profile-builder-2.0/front-end/login.php:149
3314
+ #: profile-builder-2.0/front-end/login.php:153
3315
+ msgid "username"
3316
+ msgstr "brugernavn"
3317
+
3318
+ #: profile-builder-2.0/front-end/login.php:149
3319
+ msgid "email"
3320
+ msgstr "e-mail"
3321
+
3322
+ #: profile-builder-2.0/front-end/login.php:263
3323
+ msgid "Lost your password?"
3324
+ msgstr "Mistet din adgangskode?"
3325
+
3326
+ #: profile-builder-2.0/index.php:34
3327
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3328
+ msgstr "er også aktiveret. Du skal deaktivere det før aktivering af plugin'et."
3329
+
3330
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3331
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3332
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3333
+ msgstr "Skal være en gyldig e-mail adresse eller {{reply_to}} som default for administrator e-mailen"
3334
+
3335
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:565
3336
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3337
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:470
3338
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:477
3339
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:491
3340
+ msgid "Your selected password at signup"
3341
+ msgstr "Din valgte adgangskode ved oprettelse"
3342
+
3343
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3344
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3345
+ msgstr "Disse indstillinger gemmes ligeledes indstillingssiden 'Admin Email Customizer', når de gemmes."
3346
+
3347
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3348
+ msgid "This form is empty."
3349
+ msgstr "Denne formular er tom."
3350
+
3351
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3352
+ msgid "Delete all items"
3353
+ msgstr "Slet alle emner"
3354
+
3355
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3356
+ msgid "Delete all"
3357
+ msgstr "Slet alt"
3358
+
3359
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3360
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1551
3361
+ msgid "Choose..."
3362
+ msgstr "Vælg..."
3363
+
3364
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2137
3365
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3366
+ msgstr "Angiv antallet af brugere som vises på hver side af den samlede brugeroversigt"
3367
+
3368
+ #: profile-builder-2.0/admin/admin-bar.php:10
3369
+ msgid "Show/Hide the Admin Bar on the Front-End"
3370
+ msgstr "Vis/Skjul 'Admin menu' på 'Front-end'"
3371
+
3372
+ #: profile-builder-2.0/admin/admin-bar.php:10
3373
+ #: profile-builder-2.0/admin/admin-bar.php:47
3374
+ msgid "Admin Bar Settings"
3375
+ msgstr "Admin menu indstillinger "
3376
+
3377
+ #: profile-builder-2.0/admin/admin-bar.php:57
3378
+ msgid "User-Role"
3379
+ msgstr "Brugerrolle"
3380
+
3381
+ #: profile-builder-2.0/admin/admin-bar.php:58
3382
+ msgid "Visibility"
3383
+ msgstr "Synlighed"
3384
+
3385
+ #: profile-builder-2.0/admin/admin-bar.php:73
3386
+ msgid "Default"
3387
+ msgstr "Default"
3388
+
3389
+ #: profile-builder-2.0/admin/admin-bar.php:74
3390
+ msgid "Show"
3391
+ msgstr "Vis"
3392
+
3393
+ #: profile-builder-2.0/admin/admin-bar.php:75
3394
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1496
3395
+ msgid "Hide"
3396
+ msgstr "Skjul"
3397
+
3398
+ #: pb-add-on-woocommerce/woosync-page.php:147
3399
+ #: profile-builder-2.0/admin/admin-bar.php:86
3400
+ #: profile-builder-2.0/admin/general-settings.php:208
3401
+ #: profile-builder-2.0/admin/register-version.php:95
3402
+ #: profile-builder-2.0/features/functions.php:724
3403
+ #: profile-builder-2.0/modules/modules.php:127
3404
+ msgid "Save Changes"
3405
+ msgstr "Gem ændringer"
3406
+
3407
+ #: profile-builder-2.0/admin/admin-functions.php:34
3408
+ 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 )"
3409
+ 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)"
3410
+
3411
+ #: profile-builder-2.0/admin/admin-functions.php:34
3412
+ #: profile-builder-2.0/admin/general-settings.php:10
3413
+ #: profile-builder-2.0/admin/general-settings.php:38
3414
+ msgid "General Settings"
3415
+ msgstr "Generelle indstillinger"
3416
+
3417
+ #: profile-builder-2.0/admin/admin-functions.php:134
3418
+ #: profile-builder-2.0/admin/general-settings.php:194
3419
+ msgid "Very weak"
3420
+ msgstr "Meget svag"
3421
+
3422
+ #: profile-builder-2.0/admin/admin-functions.php:134
3423
+ #: profile-builder-2.0/admin/general-settings.php:195
3424
+ #: profile-builder-2.0/features/functions.php:579
3425
+ msgid "Weak"
3426
+ msgstr "Svag"
3427
+
3428
+ #: profile-builder-2.0/admin/admin-functions.php:134
3429
+ #: profile-builder-2.0/admin/general-settings.php:196
3430
+ #: profile-builder-2.0/features/functions.php:579
3431
+ msgid "Medium"
3432
+ msgstr "Middel"
3433
+
3434
+ #: profile-builder-2.0/admin/admin-functions.php:134
3435
+ #: profile-builder-2.0/admin/general-settings.php:197
3436
+ #: profile-builder-2.0/features/functions.php:579
3437
+ msgid "Strong"
3438
+ msgstr "Stærk"
3439
+
3440
+ #: profile-builder-2.0/admin/admin-functions.php:184
3441
+ msgid "Add Field"
3442
+ msgstr "Tilføj felt"
3443
+
3444
+ #: profile-builder-2.0/admin/admin-functions.php:186
3445
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3446
+ msgid "Save Settings"
3447
+ msgstr "Gem indstillinger"
3448
+
3449
+ #: profile-builder-2.0/admin/basic-info.php:10
3450
+ msgid "Basic Information"
3451
+ msgstr "Basis information"
3452
+
3453
+ #: profile-builder-2.0/admin/basic-info.php:29
3454
+ msgid "Version %s"
3455
+ msgstr "Version %s"
3456
+
3457
+ #: profile-builder-2.0/admin/basic-info.php:30
3458
+ msgid "<strong>Profile Builder </strong>"
3459
+ msgstr "<strong>Profile Builder </strong>"
3460
+
3461
+ #: profile-builder-2.0/admin/basic-info.php:31
3462
+ msgid "The best way to add front-end registration, edit profile and login forms."
3463
+ msgstr "Den bedste måde at tilføje 'front-end' registrering, redigere profile og login formularer på."
3464
+
3465
+ #: profile-builder-2.0/admin/basic-info.php:33
3466
+ msgid "For Modern User Interaction"
3467
+ msgstr "Til 'Modern User Interaction'"
3468
+
3469
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3470
+ #: profile-builder-2.0/admin/basic-info.php:36
3471
+ #: profile-builder-2.0/features/login-widget/login-widget.php:59
3472
+ msgid "Login"
3473
+ msgstr "Log ind"
3474
+
3475
+ #: profile-builder-2.0/admin/basic-info.php:40
3476
+ msgid "Registration"
3477
+ msgstr "Registrering"
3478
+
3479
+ #: profile-builder-2.0/admin/basic-info.php:44
3480
+ msgid "Edit Profile"
3481
+ msgstr "Rediger profil"
3482
+
3483
+ #: profile-builder-2.0/admin/basic-info.php:51
3484
+ msgid "Extra Features"
3485
+ msgstr "Ekstra funktioner"
3486
+
3487
+ #: profile-builder-2.0/admin/basic-info.php:52
3488
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3489
+ msgstr "Funktioner som giver dig mere kontrol over dine brugere, forbedret sikkerhed og hjælper dig med at bekæmpe spam ved brugerregistrering."
3490
+
3491
+ #: profile-builder-2.0/admin/basic-info.php:53
3492
+ msgid "Enable extra features"
3493
+ msgstr "Aktiver ekstra funktioner"
3494
+
3495
+ #: profile-builder-2.0/admin/basic-info.php:57
3496
+ msgid "Recover Password"
3497
+ msgstr "Genskab adgangskode"
3498
+
3499
+ #: profile-builder-2.0/admin/basic-info.php:61
3500
+ msgid "Admin Approval (*)"
3501
+ msgstr "Admin godkendelse (*)"
3502
+
3503
+ #: profile-builder-2.0/admin/basic-info.php:62
3504
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3505
+ msgstr "Du bestemmer hvem der er bruger på dit site. Få besked via e-mail eller godkende flere brugere ad gangen fra WordPress UI."
3506
+
3507
+ #: profile-builder-2.0/admin/basic-info.php:65
3508
+ msgid "Email Confirmation"
3509
+ msgstr "E-mail bekræftelse"
3510
+
3511
+ #: profile-builder-2.0/admin/basic-info.php:66
3512
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3513
+ 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."
3514
+
3515
+ #: profile-builder-2.0/admin/basic-info.php:69
3516
+ msgid "Minimum Password Length and Strength Meter"
3517
+ msgstr "Minimum længde og styrke på adgangskode"
3518
+
3519
+ #: profile-builder-2.0/admin/basic-info.php:70
3520
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3521
+ 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."
3522
+
3523
+ #: profile-builder-2.0/admin/basic-info.php:73
3524
+ msgid "Login with Email or Username"
3525
+ msgstr "Log ind med e-mail eller brugernavn"
3526
+
3527
+ #: profile-builder-2.0/admin/basic-info.php:74
3528
+ msgid "Allow users to log in with their email or username when accessing your site."
3529
+ msgstr "Tillad brugere at logge ind med deres e-mail eller brugernavn når de logger ind på dit site."
3530
+
3531
+ #: profile-builder-2.0/admin/basic-info.php:87
3532
+ msgid "Customize Your Forms The Way You Want (*)"
3533
+ msgstr "Tilpas dine formularer som du ønsker det (*)"
3534
+
3535
+ #: profile-builder-2.0/admin/basic-info.php:88
3536
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3537
+ msgstr "Med ekstra profil felter kan du lave nøjagtigt den registreringsformular, som dit projekt har brug for. "
3538
+
3539
+ #: profile-builder-2.0/admin/basic-info.php:90
3540
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3541
+ msgstr "Ekstra profilfelter er tilgængelig i Hobbyist og PRO versionerne"
3542
+
3543
+ #: profile-builder-2.0/admin/basic-info.php:92
3544
+ msgid "Get started with extra fields"
3545
+ msgstr "Kom i gang med ekstra felter"
3546
+
3547
+ #: profile-builder-2.0/admin/basic-info.php:95
3548
+ msgid "Avatar Upload"
3549
+ msgstr "Avatar upload"
3550
+
3551
+ #: profile-builder-2.0/admin/basic-info.php:96
3552
+ msgid "Generic Uploads"
3553
+ msgstr "Generisk upload"
3554
+
3555
+ #: profile-builder-2.0/admin/basic-info.php:97
3556
+ msgid "Agree To Terms Checkbox"
3557
+ msgstr "Accept af betingelser tjekboks"
3558
+
3559
+ #: profile-builder-2.0/admin/basic-info.php:98
3560
+ msgid "Datepicker"
3561
+ msgstr "Datovælger"
3562
+
3563
+ #: profile-builder-2.0/admin/basic-info.php:101
3564
+ msgid "reCAPTCHA"
3565
+ msgstr "reCAPTCHA"
3566
+
3567
+ #: profile-builder-2.0/admin/basic-info.php:102
3568
+ msgid "Country Select"
3569
+ msgstr "Landevalg"
3570
+
3571
+ #: profile-builder-2.0/admin/basic-info.php:104
3572
+ msgid "Timezone Select"
3573
+ msgstr "Tidszone valg"
3574
+
3575
+ #: profile-builder-2.0/admin/basic-info.php:108
3576
+ msgid "Input / Hidden Input"
3577
+ msgstr "Input / Skjult input"
3578
+
3579
+ #: profile-builder-2.0/admin/basic-info.php:110
3580
+ msgid "Checkbox"
3581
+ msgstr "Tjekboks"
3582
+
3583
+ #: profile-builder-2.0/admin/basic-info.php:111
3584
+ msgid "Select"
3585
+ msgstr "Vælg"
3586
+
3587
+ #: profile-builder-2.0/admin/basic-info.php:112
3588
+ msgid "Radio Buttons"
3589
+ msgstr "'Radio' knapper"
3590
+
3591
+ #: profile-builder-2.0/admin/basic-info.php:113
3592
+ msgid "Textarea"
3593
+ msgstr "Tekstområde"
3594
+
3595
+ #: profile-builder-2.0/admin/basic-info.php:125
3596
+ msgid "Powerful Modules (**)"
3597
+ msgstr "Stærke moduler (**)"
3598
+
3599
+ #: profile-builder-2.0/admin/basic-info.php:126
3600
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3601
+ msgstr "Alt hvad du behøver for at håndtere dine brugere er formentlig allerede tilgængeligt ved at bruge Pro Moduler."
3602
+
3603
+ #: profile-builder-2.0/admin/basic-info.php:128
3604
+ msgid "Enable your modules"
3605
+ msgstr "Aktiver dine moduler"
3606
+
3607
+ #: profile-builder-2.0/admin/basic-info.php:131
3608
+ msgid "Find out more about PRO Modules"
3609
+ msgstr "Fin ud af mere om PRO Moduler"
3610
+
3611
+ #: profile-builder-2.0/admin/basic-info.php:136
3612
+ #: profile-builder-2.0/modules/modules.php:89
3613
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3614
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3615
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3616
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3617
+ msgid "User Listing"
3618
+ msgstr "Brugeroversigt"
3619
+
3620
+ #: profile-builder-2.0/admin/basic-info.php:138
3621
+ 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."
3622
+ 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. "
3623
+
3624
+ #: profile-builder-2.0/admin/basic-info.php:144
3625
+ msgid "Email Customizer"
3626
+ msgstr "E-mail opsætning"
3627
+
3628
+ #: profile-builder-2.0/admin/basic-info.php:145
3629
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3630
+ msgstr "Personaliser alle e-mails sendt til dine brugere eller administratorer. Ved registrering, e-mail bekræftelse, administrator godkendelse / afvisning."
3631
+
3632
+ #: profile-builder-2.0/admin/basic-info.php:148
3633
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3634
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3635
+ #: profile-builder-2.0/modules/modules.php:110
3636
+ msgid "Custom Redirects"
3637
+ msgstr "Brugertilpassede omdirigeringer ('redirects')"
3638
+
3639
+ #: profile-builder-2.0/admin/basic-info.php:149
3640
+ 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."
3641
+ 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."
3642
+
3643
+ #: profile-builder-2.0/admin/basic-info.php:154
3644
+ #: profile-builder-2.0/modules/modules.php:75
3645
+ msgid "Multiple Registration Forms"
3646
+ msgstr "Forskellige registreringsformularer"
3647
+
3648
+ #: profile-builder-2.0/admin/basic-info.php:155
3649
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3650
+ msgstr "Opsæt forskellige registreringsformularer med forskellige felter tilpasset bestemte brugeroller. Indsaml forskelligt information fra forskellige brugertyper."
3651
+
3652
+ #: profile-builder-2.0/admin/basic-info.php:158
3653
+ #: profile-builder-2.0/modules/modules.php:82
3654
+ msgid "Multiple Edit-profile Forms"
3655
+ msgstr "Forskellige profil redigerings formularer"
3656
+
3657
+ #: profile-builder-2.0/admin/basic-info.php:159
3658
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3659
+ msgstr "Tillad forskellige brugerroller at redigere deres specifikke information. Opsæt forskellige profil redigerings formularer med forskellige felter tilpasset bestemte brugerroller."
3660
+
3661
+ #: profile-builder-2.0/admin/basic-info.php:187
3662
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3663
+ msgstr " * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s."
3664
+
3665
+ #: profile-builder-2.0/admin/basic-info.php:188
3666
+ msgid "** only available in the %1$sPro version%2$s."
3667
+ msgstr "** kun tilgængelig i %1$sPro version%2$s."
3668
+
3669
+ #: profile-builder-2.0/admin/general-settings.php:42
3670
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3671
+ msgstr "Brug Profile Builders egen CSS fil i 'front-end':"
3672
+
3673
+ #: profile-builder-2.0/admin/general-settings.php:45
3674
+ #: profile-builder-2.0/admin/general-settings.php:58
3675
+ #: profile-builder-2.0/admin/general-settings.php:107
3676
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3677
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3678
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2142
3679
+ msgid "Yes"
3680
+ msgstr "Ja"
3681
+
3682
+ #: profile-builder-2.0/admin/general-settings.php:47
3683
+ msgid "You can find the default file here: %1$s"
3684
+ msgstr "Du kan finde default filen her: %1$s"
3685
+
3686
+ #: profile-builder-2.0/admin/general-settings.php:54
3687
+ msgid "\"Email Confirmation\" Activated:"
3688
+ msgstr "\"E-mail bekræftelse\" aktiveret:"
3689
+
3690
+ #: profile-builder-2.0/admin/general-settings.php:59
3691
+ #: profile-builder-2.0/admin/general-settings.php:108
3692
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3693
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3694
+ msgid "No"
3695
+ msgstr "Nej"
3696
+
3697
+ #: profile-builder-2.0/admin/general-settings.php:64
3698
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3699
+ msgstr "Du kan finde en liste over ubekræftede e-mail adresser %1$sUsers > All Users > Email Confirmation%2$s."
3700
+
3701
+ #: profile-builder-2.0/admin/general-settings.php:72
3702
+ msgid "\"Email Confirmation\" Landing Page:"
3703
+ msgstr "\"E-mail bekræftelse\" landings side:"
3704
+
3705
+ #: profile-builder-2.0/admin/general-settings.php:77
3706
+ msgid "Existing Pages"
3707
+ msgstr "Eksisterende sider"
3708
+
3709
+ #: profile-builder-2.0/admin/general-settings.php:92
3710
+ 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."
3711
+ 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."
3712
+
3713
+ #: profile-builder-2.0/admin/general-settings.php:103
3714
+ msgid "\"Admin Approval\" Activated:"
3715
+ msgstr "\"Administrator godkendelse\" aktiveret:"
3716
+
3717
+ #: profile-builder-2.0/admin/general-settings.php:111
3718
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3719
+ msgstr "Du kan finde en liste med brugere på %1$sUsers > All Users > Admin Approval%2$s."
3720
+
3721
+ #: profile-builder-2.0/admin/general-settings.php:149
3722
+ msgid "\"Admin Approval\" Feature:"
3723
+ msgstr "\"Administrator godkendelse\" funktion:"
3724
+
3725
+ #: profile-builder-2.0/admin/general-settings.php:152
3726
+ 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."
3727
+ 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."
3728
+
3729
+ #: profile-builder-2.0/admin/general-settings.php:159
3730
+ msgid "Allow Users to Log in With:"
3731
+ msgstr "Tillad brugere at logge ind med:"
3732
+
3733
+ #: profile-builder-2.0/admin/general-settings.php:164
3734
+ #: profile-builder-2.0/admin/manage-fields.php:195
3735
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3736
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3737
+ #: profile-builder-2.0/front-end/login.php:85
3738
+ #: profile-builder-2.0/front-end/login.php:99
3739
+ #: profile-builder-2.0/front-end/login.php:225
3740
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3741
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3742
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:101
3743
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:268
3744
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:704
3745
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2098
3746
+ msgid "Username"
3747
+ msgstr "Brugernavn"
3748
+
3749
+ #: profile-builder-2.0/admin/general-settings.php:165
3750
+ #: profile-builder-2.0/front-end/login.php:222
3751
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3752
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:710
3753
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2099
3754
+ msgid "Email"
3755
+ msgstr "E-mail"
3756
+
3757
+ #: profile-builder-2.0/admin/general-settings.php:177
3758
+ msgid "Minimum Password Length:"
3759
+ msgstr "Min. længde på adgangskode:"
3760
+
3761
+ #: profile-builder-2.0/admin/general-settings.php:182
3762
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3763
+ msgstr "Angiv minimum antallet af karakterer som adgangskoden skal bestå af. Lad feltet være tomt for ikke at have minimumsbegrænsning."
3764
+
3765
+ #: profile-builder-2.0/admin/general-settings.php:189
3766
+ msgid "Minimum Password Strength:"
3767
+ msgstr "Minimum styrke på adgangskode:"
3768
+
3769
+ #: profile-builder-2.0/admin/general-settings.php:193
3770
+ msgid "Disabled"
3771
+ msgstr "Deaktiver"
3772
+
3773
+ #: profile-builder-2.0/admin/manage-fields.php:12
3774
+ msgid "Manage Fields"
3775
+ msgstr "Håndter felter"
3776
+
3777
+ #: profile-builder-2.0/admin/manage-fields.php:13
3778
+ msgid "Manage Default and Extra Fields"
3779
+ msgstr "Håndter standard ('default') og ekstra felter"
3780
+
3781
+ #: profile-builder-2.0/admin/manage-fields.php:113
3782
+ msgid "Field Title"
3783
+ msgstr "Felt titel"
3784
+
3785
+ #: profile-builder-2.0/admin/manage-fields.php:113
3786
+ msgid "Title of the field"
3787
+ msgstr "Feltets titel"
3788
+
3789
+ #: profile-builder-2.0/admin/manage-fields.php:114
3790
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3791
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3792
+ msgid "Field"
3793
+ msgstr "Felt"
3794
+
3795
+ #: profile-builder-2.0/admin/manage-fields.php:115
3796
+ msgid "Meta-name"
3797
+ msgstr "Meta-navn"
3798
+
3799
+ #: profile-builder-2.0/admin/manage-fields.php:116
3800
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3801
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3802
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3803
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3804
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3805
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3806
+ msgid "ID"
3807
+ msgstr "ID"
3808
+
3809
+ #: profile-builder-2.0/admin/manage-fields.php:116
3810
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3811
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3812
+ 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"
3813
+ 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 "
3814
+
3815
+ #: profile-builder-2.0/admin/manage-fields.php:117
3816
+ msgid "Description"
3817
+ msgstr "Beskrivelse"
3818
+
3819
+ #: profile-builder-2.0/admin/manage-fields.php:117
3820
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3821
+ msgstr "Angiv en (detaljeret) beskrivelse til slutbrugerne af muligheden<br/>Valgfri"
3822
+
3823
+ #: profile-builder-2.0/admin/manage-fields.php:118
3824
+ msgid "Row Count"
3825
+ msgstr "Række antal"
3826
+
3827
+ #: profile-builder-2.0/admin/manage-fields.php:118
3828
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3829
+ msgstr "Angiv antallet af rækker i feltet 'Textarea'<br/>Hvis ikke angivet er default 5 rækker"
3830
+
3831
+ #: profile-builder-2.0/admin/manage-fields.php:119
3832
+ msgid "Allowed Image Extensions"
3833
+ msgstr "Tilladte billedformater ('extensions')"
3834
+
3835
+ #: profile-builder-2.0/admin/manage-fields.php:120
3836
+ msgid "Allowed Upload Extensions"
3837
+ msgstr "Tilladte upload formater ('extensions')"
3838
+
3839
+ #: profile-builder-2.0/admin/manage-fields.php:121
3840
+ msgid "Avatar Size"
3841
+ msgstr "Avatar størrelse"
3842
+
3843
+ #: profile-builder-2.0/admin/manage-fields.php:121
3844
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3845
+ msgstr "Angiv en værdi (mellem 20 og 200) for størrelsen af 'Avatar'<br/>Hvis ikke angivet er default sat til 100"
3846
+
3847
+ #: profile-builder-2.0/admin/manage-fields.php:122
3848
+ msgid "Date-format"
3849
+ msgstr "Datoformat"
3850
+
3851
+ #: profile-builder-2.0/admin/manage-fields.php:122
3852
+ 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"
3853
+ 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"
3854
+
3855
+ #: profile-builder-2.0/admin/manage-fields.php:123
3856
+ msgid "Terms of Agreement"
3857
+ msgstr "Aftalebetingelser"
3858
+
3859
+ #: profile-builder-2.0/admin/manage-fields.php:123
3860
+ 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;"
3861
+ 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;"
3862
+
3863
+ #: profile-builder-2.0/admin/manage-fields.php:124
3864
+ msgid "Options"
3865
+ msgstr "Valgmuligheder"
3866
+
3867
+ #: profile-builder-2.0/admin/manage-fields.php:125
3868
+ msgid "Labels"
3869
+ msgstr "Labels"
3870
+
3871
+ #: profile-builder-2.0/admin/manage-fields.php:125
3872
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
3873
+ msgstr "Angiv et komme separeret liste med labels<br/>Synlig for brugeren"
3874
+
3875
+ #: profile-builder-2.0/admin/manage-fields.php:132
3876
+ msgid "Default Value"
3877
+ msgstr "Standard værdi"
3878
+
3879
+ #: profile-builder-2.0/admin/manage-fields.php:132
3880
+ msgid "Default value of the field"
3881
+ msgstr "Feltets standardværdi"
3882
+
3883
+ #: profile-builder-2.0/admin/manage-fields.php:133
3884
+ #: profile-builder-2.0/admin/manage-fields.php:135
3885
+ #: profile-builder-2.0/admin/manage-fields.php:136
3886
+ #: profile-builder-2.0/admin/manage-fields.php:137
3887
+ msgid "Default Option"
3888
+ msgstr "Standard indstillingsvalg"
3889
+
3890
+ #: profile-builder-2.0/admin/manage-fields.php:133
3891
+ msgid "Specify the option which should be selected by default"
3892
+ msgstr "Angiv indstillingen som skal vælges som standard"
3893
+
3894
+ #: profile-builder-2.0/admin/manage-fields.php:134
3895
+ msgid "Default Option(s)"
3896
+ msgstr "Standard indstillingsvalg (flere)"
3897
+
3898
+ #: profile-builder-2.0/admin/manage-fields.php:134
3899
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3900
+ msgstr "Angiv indstillingen som skal vælges som standard<br/>Hvis der er flere valgmuligheder, separer dem med ',' (et komma)"
3901
+
3902
+ #: profile-builder-2.0/admin/manage-fields.php:148
3903
+ msgid "Default Content"
3904
+ msgstr "Standard indhold"
3905
+
3906
+ #: profile-builder-2.0/admin/manage-fields.php:148
3907
+ msgid "Default value of the textarea"
3908
+ msgstr "Standard værdi for tekstområdet ('textarea')"
3909
+
3910
+ #: pb-add-on-woocommerce/index.php:306
3911
+ #: profile-builder-2.0/admin/manage-fields.php:155
3912
+ msgid "Required"
3913
+ msgstr "Krævet"
3914
+
3915
+ #: profile-builder-2.0/admin/manage-fields.php:155
3916
+ msgid "Whether the field is required or not"
3917
+ msgstr "Om feltet er krævet eller ikke"
3918
+
3919
+ #: profile-builder-2.0/admin/manage-fields.php:156
3920
+ msgid "Overwrite Existing"
3921
+ msgstr "Overskriv eksisterende"
3922
+
3923
+ #: profile-builder-2.0/admin/manage-fields.php:156
3924
+ 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"
3925
+ 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"
3926
+
3927
+ #: profile-builder-2.0/admin/manage-fields.php:162
3928
+ msgid "Field Properties"
3929
+ msgstr "Felt indstillinger"
3930
+
3931
+ #: profile-builder-2.0/admin/manage-fields.php:175
3932
+ msgid "Registration & Edit Profile"
3933
+ msgstr "Registrering & ændre profil"
3934
+
3935
+ #: profile-builder-2.0/admin/manage-fields.php:194
3936
+ msgid "Name"
3937
+ msgstr "Navn"
3938
+
3939
+ #: profile-builder-2.0/admin/manage-fields.php:195
3940
+ msgid "Usernames cannot be changed."
3941
+ msgstr "Brugernavn kan ikke ændres"
3942
+
3943
+ #: pb-add-on-woocommerce/billing-fields.php:6
3944
+ #: pb-add-on-woocommerce/shipping-fields.php:6
3945
+ #: profile-builder-2.0/admin/manage-fields.php:196
3946
+ msgid "First Name"
3947
+ msgstr "Fornavn"
3948
+
3949
+ #: pb-add-on-woocommerce/billing-fields.php:7
3950
+ #: pb-add-on-woocommerce/shipping-fields.php:7
3951
+ #: profile-builder-2.0/admin/manage-fields.php:197
3952
+ msgid "Last Name"
3953
+ msgstr "Efternavn"
3954
+
3955
+ #: profile-builder-2.0/admin/manage-fields.php:198
3956
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:743
3957
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2106
3958
+ msgid "Nickname"
3959
+ msgstr "Kælenavn"
3960
+
3961
+ #: profile-builder-2.0/admin/manage-fields.php:199
3962
+ msgid "Display name publicly as"
3963
+ msgstr "Vis navn offentligt som"
3964
+
3965
+ #: profile-builder-2.0/admin/manage-fields.php:200
3966
+ msgid "Contact Info"
3967
+ msgstr "Kontakt info"
3968
+
3969
+ #: profile-builder-2.0/admin/manage-fields.php:201
3970
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
3971
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
3972
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:107
3973
+ msgid "E-mail"
3974
+ msgstr "E-mail"
3975
+
3976
+ #: profile-builder-2.0/admin/manage-fields.php:202
3977
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
3978
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:110
3979
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:725
3980
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2100
3981
+ msgid "Website"
3982
+ msgstr "Website"
3983
+
3984
+ #: profile-builder-2.0/admin/manage-fields.php:206
3985
+ msgid "AIM"
3986
+ msgstr "AIM"
3987
+
3988
+ #: profile-builder-2.0/admin/manage-fields.php:207
3989
+ msgid "Yahoo IM"
3990
+ msgstr "Yahoo IM"
3991
+
3992
+ #: profile-builder-2.0/admin/manage-fields.php:208
3993
+ msgid "Jabber / Google Talk"
3994
+ msgstr "Jabber / Google Talk"
3995
+
3996
+ #: profile-builder-2.0/admin/manage-fields.php:211
3997
+ msgid "About Yourself"
3998
+ msgstr "Om dig selv"
3999
+
4000
+ #: profile-builder-2.0/admin/manage-fields.php:212
4001
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:113
4002
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:728
4003
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2101
4004
+ msgid "Biographical Info"
4005
+ msgstr "Biografi info"
4006
+
4007
+ #: profile-builder-2.0/admin/manage-fields.php:212
4008
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
4009
+ msgstr "Del en lille biografisk information for at fylde din profil ud. Dette kan blive vist offentligt."
4010
+
4011
+ #: profile-builder-2.0/admin/manage-fields.php:213
4012
+ #: profile-builder-2.0/front-end/recover.php:73
4013
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4014
+ msgid "Password"
4015
+ msgstr "Kodeord"
4016
+
4017
+ #: profile-builder-2.0/admin/manage-fields.php:213
4018
+ msgid "Type your password."
4019
+ msgstr "Skriv din kodeord."
4020
+
4021
+ #: profile-builder-2.0/admin/manage-fields.php:214
4022
+ #: profile-builder-2.0/front-end/recover.php:74
4023
+ msgid "Repeat Password"
4024
+ msgstr "Gentag dit kodeord"
4025
+
4026
+ #: profile-builder-2.0/admin/manage-fields.php:214
4027
+ msgid "Type your password again. "
4028
+ msgstr "Skriv dit kodeord igen."
4029
+
4030
+ #: profile-builder-2.0/admin/manage-fields.php:966
4031
+ #: profile-builder-2.0/admin/manage-fields.php:1120
4032
+ msgid "You must select a field\n"
4033
+ msgstr "Du skal vælge et felt\n"
4034
+
4035
+ #: profile-builder-2.0/admin/manage-fields.php:976
4036
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4037
+ msgstr "Vælg venligst en anden felttype, da denne allerede eksistere i din formular. (skal være unik)\n"
4038
+
4039
+ #: profile-builder-2.0/admin/manage-fields.php:987
4040
+ msgid "The entered avatar size is not between 20 and 200\n"
4041
+ msgstr "Den indsatte avatar størrelse er ikke mellem 20 og 200\n"
4042
+
4043
+ #: profile-builder-2.0/admin/manage-fields.php:990
4044
+ msgid "The entered avatar size is not numerical\n"
4045
+ msgstr "Det indtastede rækkenummer er ikke nummereret\n"
4046
+
4047
+ #: profile-builder-2.0/admin/manage-fields.php:998
4048
+ msgid "The entered row number is not numerical\n"
4049
+ msgstr "Det indsatte række nummer er ikke nummeret\n"
4050
+
4051
+ #: profile-builder-2.0/admin/manage-fields.php:1001
4052
+ msgid "You must enter a value for the row number\n"
4053
+ msgstr "Du skal indtaste en værdi for rækkenummeret\n"
4054
+
4055
+ #: profile-builder-2.0/admin/manage-fields.php:1019
4056
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
4057
+ msgstr "Den indsatte værdi for datovælgeren er ikke korret datoformat\n"
4058
+
4059
+ #: profile-builder-2.0/admin/manage-fields.php:1022
4060
+ msgid "You must enter a value for the date-format\n"
4061
+ msgstr "Du skal indskrive en værdi for datoformatet\n"
4062
+
4063
+ #: profile-builder-2.0/admin/manage-fields.php:1050
4064
+ #: profile-builder-2.0/admin/manage-fields.php:1058
4065
+ #: profile-builder-2.0/admin/manage-fields.php:1069
4066
+ msgid "That meta-name is already in use\n"
4067
+ msgstr "Det meta-navn er allerede i brug\n"
4068
+
4069
+ #: profile-builder-2.0/admin/manage-fields.php:1100
4070
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4071
+ msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s\n"
4072
+
4073
+ #: profile-builder-2.0/admin/manage-fields.php:1104
4074
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
4075
+ msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s \n"
4076
+
4077
+ #: profile-builder-2.0/admin/manage-fields.php:1127
4078
+ msgid "That field is already added in this form\n"
4079
+ msgstr "Det felt er allerede tilføjet denne formular\n"
4080
+
4081
+ #: profile-builder-2.0/admin/manage-fields.php:1176
4082
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4083
+ msgstr "<pre>titel</pre><pre>Type</pre><pre>Meta navn</pre><pre class=\"wppb-mb-head-required\">nødvendigt</pre>"
4084
+
4085
+ #: profile-builder-2.0/admin/manage-fields.php:1176
4086
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4087
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4088
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4089
+ #: profile-builder-2.0/features/functions.php:745
4090
+ #: profile-builder-2.0/features/functions.php:752
4091
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4092
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4093
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4094
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4095
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4096
+ msgid "Edit"
4097
+ msgstr "Rediger"
4098
+
4099
+ #: profile-builder-2.0/admin/manage-fields.php:1176
4100
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4101
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4102
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4103
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4104
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4105
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4106
+ #: profile-builder-2.0/features/functions.php:738
4107
+ #: profile-builder-2.0/features/functions.php:752
4108
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4109
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4110
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4111
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4112
+ msgid "Delete"
4113
+ msgstr "Slet"
4114
+
4115
+ #: profile-builder-2.0/admin/manage-fields.php:1191
4116
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4117
+ msgstr "Benyt disse shortcodes på siden du vil have vist formularerne:"
4118
+
4119
+ #: profile-builder-2.0/admin/manage-fields.php:1200
4120
+ 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."
4121
+ 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. "
4122
+
4123
+ #: profile-builder-2.0/admin/register-version.php:14
4124
+ msgid "Register Your Version"
4125
+ msgstr "Registrer din version"
4126
+
4127
+ #: profile-builder-2.0/admin/register-version.php:14
4128
+ msgid "Register Version"
4129
+ msgstr "Registrer version"
4130
+
4131
+ #: profile-builder-2.0/admin/register-version.php:70
4132
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4133
+ msgstr "Hvis du registrere denne version af Profile Builder, så vil du modtage information vedrørende opgraderinger, patches og teknisk support."
4134
+
4135
+ #: profile-builder-2.0/admin/register-version.php:72
4136
+ msgid " Serial Number:"
4137
+ msgstr "Serie Nummer:"
4138
+
4139
+ #: profile-builder-2.0/admin/register-version.php:77
4140
+ msgid "The serial number was successfully validated!"
4141
+ msgstr "Serienummeret blev godkendt!"
4142
+
4143
+ #: profile-builder-2.0/admin/register-version.php:79
4144
+ msgid "The serial number entered couldn't be validated!"
4145
+ msgstr "Serienummeret som du har indsat er ikke korrekt!"
4146
+
4147
+ #: profile-builder-2.0/admin/register-version.php:83
4148
+ msgid "The serial number couldn't be validated because it expired!"
4149
+ msgstr "Serienummeret kunne ikke godkendes da det er udløbet!"
4150
+
4151
+ #: profile-builder-2.0/admin/register-version.php:85
4152
+ 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!"
4153
+ msgstr "Serienummeret kunne ikke valideres på grund af process time-out. Dette skyldes formentlig at serveren er nede. Venligst prøv igen senere!"
4154
+
4155
+ #: profile-builder-2.0/admin/register-version.php:87
4156
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4157
+ msgstr "(f.eks.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4158
+
4159
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4160
+ #: profile-builder-2.0/features/functions.php:752
4161
+ msgid "Content"
4162
+ msgstr "Indhold"
4163
+
4164
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4165
+ msgid "Edit this item"
4166
+ msgstr "Rediger denne"
4167
+
4168
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4169
+ msgid "Delete this item"
4170
+ msgstr "Slet denne"
4171
+
4172
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4173
+ msgid "Please enter a value for the required field "
4174
+ msgstr "Venligst indsæt en værdi for feltet"
4175
+
4176
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4177
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4178
+ msgid "Select File"
4179
+ msgstr "Vælg en fil"
4180
+
4181
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4182
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4183
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4184
+ msgid "Remove"
4185
+ msgstr "Fjern"
4186
+
4187
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:1253
4188
+ msgid "Syncronize WCK"
4189
+ msgstr "Synkroniser WCK"
4190
+
4191
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:1265
4192
+ msgid "Syncronize WCK Translation"
4193
+ msgstr "Synkroniser WCK oversættelse"
4194
+
4195
+ #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4196
+ msgid "You can add the information for the %s after you add a entry"
4197
+ msgstr "Du kan tilføje information for %s efter du har indsat en indtastning"
4198
+
4199
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4200
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4201
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4202
+ msgid "Upload "
4203
+ msgstr "Upload"
4204
+
4205
+ #: profile-builder-2.0/features/class-list-table.php:184
4206
+ msgid "No items found."
4207
+ msgstr "Intet fundet."
4208
+
4209
+ #: profile-builder-2.0/features/class-list-table.php:308
4210
+ msgid "Bulk Actions"
4211
+ msgstr "Mængde aktion"
4212
+
4213
+ #: profile-builder-2.0/features/class-list-table.php:318
4214
+ msgid "Apply"
4215
+ msgstr "Tilføj"
4216
+
4217
+ #: profile-builder-2.0/features/class-list-table.php:402
4218
+ msgid "Show all dates"
4219
+ msgstr "Vis alle datoer"
4220
+
4221
+ #: profile-builder-2.0/features/class-list-table.php:415
4222
+ msgid "%1$s %2$d"
4223
+ msgstr "%1$s %2$d"
4224
+
4225
+ #: profile-builder-2.0/features/class-list-table.php:431
4226
+ msgid "List View"
4227
+ msgstr "Listevisning"
4228
+
4229
+ #: profile-builder-2.0/features/class-list-table.php:432
4230
+ msgid "Excerpt View"
4231
+ msgstr "Uddragsvisning"
4232
+
4233
+ #: profile-builder-2.0/features/class-list-table.php:458
4234
+ msgid "%s pending"
4235
+ msgstr "%s afventer"
4236
+
4237
+ #: profile-builder-2.0/features/class-list-table.php:566
4238
+ msgid "%1$s of %2$s"
4239
+ msgstr "%1$s of %2$s"
4240
+
4241
+ #: profile-builder-2.0/features/class-list-table.php:713
4242
+ msgid "Select All"
4243
+ msgstr "Vælg alt"
4244
+
4245
+ #: profile-builder-2.0/features/functions.php:304
4246
+ msgid "The user-validation has failed - the avatar was not deleted!"
4247
+ msgstr "Brugergodkendelsen er fejlet - Avatar blev ikke slettet!"
4248
+
4249
+ #: profile-builder-2.0/features/functions.php:315
4250
+ msgid "The user-validation has failed - the attachment was not deleted!"
4251
+ msgstr "Brugervalideringen er fejlet - avatar'en blev ikke slettet!"
4252
+
4253
+ #: profile-builder-2.0/features/functions.php:554
4254
+ msgid "Strength indicator"
4255
+ msgstr "Styrkeindikator"
4256
+
4257
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4258
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4259
+ msgid "Admin Approval"
4260
+ msgstr "Admin godkendelse"
4261
+
4262
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4263
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4264
+ msgid "Do you want to"
4265
+ msgstr "Vil du"
4266
+
4267
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4268
+ msgid "Your session has expired! Please refresh the page and try again"
4269
+ msgstr "Din session er udløbet! Venligst opdater siden og prøv igen"
4270
+
4271
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:62
4272
+ msgid "User successfully approved!"
4273
+ msgstr "Bruger godkendt!"
4274
+
4275
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:70
4276
+ msgid "User successfully unapproved!"
4277
+ msgstr "Bruger ikke godkendt!"
4278
+
4279
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:76
4280
+ msgid "User successfully deleted!"
4281
+ msgstr "Bruger slettet!"
4282
+
4283
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:81
4284
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:125
4285
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:135
4286
+ msgid "You either don't have permission for that action or there was an error!"
4287
+ msgstr "Enten har du ikke tilladelse til dette eller der var en felj!"
4288
+
4289
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:92
4290
+ msgid "Your session has expired! Please refresh the page and try again."
4291
+ msgstr "Din session er udløbet! Opdater venligst siden og prøv igen."
4292
+
4293
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:104
4294
+ msgid "Users successfully approved!"
4295
+ msgstr "Brugere godkendt!"
4296
+
4297
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:113
4298
+ msgid "Users successfully unapproved!"
4299
+ msgstr "Brugere ikke godkendt med succes!"
4300
+
4301
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:121
4302
+ msgid "Users successfully deleted!"
4303
+ msgstr "Brugere slettet!"
4304
+
4305
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:141
4306
+ msgid "Your account on %1$s has been approved!"
4307
+ msgstr "Din konto på %1$s er blevet godkendt!"
4308
+
4309
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:142
4310
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:145
4311
+ msgid "approved"
4312
+ msgstr "godkendt"
4313
+
4314
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:144
4315
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
4316
+ msgstr "En administrator har netop godkendt din konto på %1$s (%2$s)."
4317
+
4318
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:149
4319
+ msgid "Your account on %1$s has been unapproved!"
4320
+ msgstr "Din konto på %1$s er blevet 'ikke-godkendt'!"
4321
+
4322
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4323
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:153
4324
+ msgid "unapproved"
4325
+ msgstr "'ikke-godkendt'"
4326
+
4327
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:152
4328
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4329
+ msgstr "En administrator har netop sat din konto til 'ikke-godkendt' på %1$s (%2$s)."
4330
+
4331
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:171
4332
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4333
+ msgstr "<strong>ERROR</strong>: Din konto skal godkendes af en administrator før du kan logge ind."
4334
+
4335
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:183
4336
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4337
+ msgstr "Din konto skal først være godkendt af en administrator før du kan bruge 'Genskab adgangskode'"
4338
+
4339
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4340
+ msgid "delete this user?"
4341
+ msgstr "slet denne bruger?"
4342
+
4343
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4344
+ msgid "unapprove this user?"
4345
+ msgstr "sæt denne bruge til 'ikke-godkendt'?"
4346
+
4347
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4348
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4349
+ msgid "Unapprove"
4350
+ msgstr "Ophæv godkendelsen"
4351
+
4352
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4353
+ msgid "approve this user?"
4354
+ msgstr "godkend denne bruger?"
4355
+
4356
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4357
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4358
+ msgid "Approve"
4359
+ msgstr "Godkend"
4360
+
4361
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4362
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:269
4363
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:716
4364
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2103
4365
+ msgid "Firstname"
4366
+ msgstr "Fornavn"
4367
+
4368
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4369
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:719
4370
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2104
4371
+ msgid "Lastname"
4372
+ msgstr "Efternavn"
4373
+
4374
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4375
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:142
4376
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:270
4377
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:746
4378
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2108
4379
+ msgid "Role"
4380
+ msgstr "Rolle"
4381
+
4382
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4383
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4384
+ msgid "Registered"
4385
+ msgstr "Registreret"
4386
+
4387
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4388
+ msgid "User-status"
4389
+ msgstr "Brugerstatus"
4390
+
4391
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4392
+ msgid "Do you want to bulk approve the selected users?"
4393
+ msgstr "Ønsker du at godkende de valgte brugere på én gang?"
4394
+
4395
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4396
+ msgid "Do you want to bulk unapprove the selected users?"
4397
+ msgstr "Ønsker du at ophæve godkendelsen af de valgte brugere på én gang?"
4398
+
4399
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4400
+ msgid "Do you want to bulk delete the selected users?"
4401
+ msgstr "Ønsker du at slette de valgte brugere på én gang?"
4402
+
4403
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4404
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4405
+ msgid "Sorry, but you don't have permission to do that!"
4406
+ msgstr "Beklager, men du har ikke rettighederne til at gøre dette!"
4407
+
4408
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4409
+ msgid "Approved"
4410
+ msgstr "Godkendt"
4411
+
4412
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4413
+ msgid "Unapproved"
4414
+ msgstr "Ikke godkendt"
4415
+
4416
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4417
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4418
+ msgid "All Users"
4419
+ msgstr "Alle brugere"
4420
+
4421
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4422
+ msgid "delete this user from the _signups table?"
4423
+ msgstr "slet denne bruger fra tilmeldingstabellen (_signups table)?"
4424
+
4425
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4426
+ msgid "confirm this email yourself?"
4427
+ msgstr "bekræft selv denne e-mail?"
4428
+
4429
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4430
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4431
+ msgid "Confirm Email"
4432
+ msgstr "Bekræft e-mail"
4433
+
4434
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4435
+ msgid "resend the activation link?"
4436
+ msgstr "gen-send aktiveringslinket?"
4437
+
4438
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4439
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4440
+ msgid "Resend Activation Email"
4441
+ msgstr "Gen-send aktiverings e-mailen"
4442
+
4443
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4444
+ msgid "%s couldn't be deleted"
4445
+ msgstr "%s kunne ikke slettes"
4446
+
4447
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4448
+ msgid "All users have been successfully deleted"
4449
+ msgstr "Alle brugere er blevet slettet uden problemer"
4450
+
4451
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4452
+ msgid "The selected users have been activated"
4453
+ msgstr "De valgte brugere er blevet aktiveret"
4454
+
4455
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4456
+ msgid "The selected users have had their activation emails resent"
4457
+ msgstr "De valgte brugere har fået deres aktiverings e-mail gensendt"
4458
+
4459
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4460
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4461
+ msgid "Users with Unconfirmed Email Address"
4462
+ msgstr "Brugere med ubekræftede e-mail adresser"
4463
+
4464
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:110
4465
+ msgid "There was an error performing that action!"
4466
+ msgstr "Der opstod en fejl ved udførelsen af denne handling!"
4467
+
4468
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:118
4469
+ msgid "The selected user couldn't be deleted"
4470
+ msgstr "De valgte brugere kunne ikke slettes"
4471
+
4472
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:129
4473
+ msgid "Email notification resent to user"
4474
+ msgstr "E-mail besked er gensendt til bruger"
4475
+
4476
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:389
4477
+ msgid "[%1$s] Activate %2$s"
4478
+ msgstr "[%1$s] Aktivér %2$s"
4479
+
4480
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:433
4481
+ #: profile-builder-2.0/front-end/register.php:70
4482
+ msgid "Could not create user!"
4483
+ msgstr "Kunne ikke oprette bruger!"
4484
+
4485
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:436
4486
+ msgid "That username is already activated!"
4487
+ msgstr "Dette brugernavn er allerede i brug!"
4488
+
4489
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:459
4490
+ msgid "There was an error while trying to activate the user"
4491
+ msgstr "Der skete en fejl ved forsøg på at aktivere brugeren"
4492
+
4493
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:507
4494
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4495
+ msgid "A new subscriber has (been) registered!"
4496
+ msgstr "En ny abonnent ('subscriber') er blevet registreret!"
4497
+
4498
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:510
4499
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4500
+ msgstr "Ny abonnent ('subscriber') på %1$s.<br/><br/>Brugernavn:%2$s<br/>E-mail:%3$s<br/>"
4501
+
4502
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:625
4503
+ 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!"
4504
+ 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!"
4505
+
4506
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:561
4507
+ msgid "[%1$s] Your new account information"
4508
+ msgstr "[%1$s] Din nye konto information"
4509
+
4510
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:572
4511
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4512
+ msgstr "Velkommen til %1$s!<br/><br/><br/>Dit brugernavn er:%2$s og adgangskoden er:%3$s"
4513
+
4514
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:633
4515
+ #: profile-builder-2.0/front-end/register.php:130
4516
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4517
+ msgstr "Før du kan tilgå din konto skal en administrator først godkende det. Du bliver adviseret via a-mail."
4518
+
4519
+ #: profile-builder-2.0/features/login-widget/login-widget.php:10
4520
+ msgid "This login widget lets you add a login form in the sidebar."
4521
+ msgstr "Denne login widget gør det muligt for dig at tilføje en formular i din sidebar."
4522
+
4523
+ #: profile-builder-2.0/features/login-widget/login-widget.php:15
4524
+ msgid "Profile Builder Login Widget"
4525
+ msgstr "Profile Builder login widget"
4526
+
4527
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4528
+ #: profile-builder-2.0/front-end/class-formbuilder.php:420
4529
+ #: profile-builder-2.0/front-end/login.php:257
4530
+ msgid "Register"
4531
+ msgstr "Registrer"
4532
+
4533
+ #: profile-builder-2.0/features/login-widget/login-widget.php:63
4534
+ msgid "Title:"
4535
+ msgstr "Titel:"
4536
+
4537
+ #: profile-builder-2.0/features/login-widget/login-widget.php:68
4538
+ msgid "After login redirect URL (optional):"
4539
+ msgstr "Efter login URL omdirigering (valgfri):"
4540
+
4541
+ #: profile-builder-2.0/features/login-widget/login-widget.php:73
4542
+ msgid "Register page URL (optional):"
4543
+ msgstr "Registrerings side URL (valgfri):"
4544
+
4545
+ #: profile-builder-2.0/features/login-widget/login-widget.php:78
4546
+ msgid "Password Recovery page URL (optional):"
4547
+ msgstr "Adgangskode genskabnings side URL (valgfri)"
4548
+
4549
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4550
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4551
+ msgid "The usernames cannot be changed."
4552
+ msgstr "Brugernavnene kan ikke ændres."
4553
+
4554
+ #: profile-builder-2.0/front-end/class-formbuilder.php:161
4555
+ msgid "Only an administrator can add new users."
4556
+ msgstr "Kun administrator kan tilføje nye brugere."
4557
+
4558
+ #: profile-builder-2.0/front-end/class-formbuilder.php:171
4559
+ msgid "Users can register themselves or you can manually create users here."
4560
+ msgstr "Brugere kan registrere sig selv eller du kan manuelt oprette brugere her."
4561
+
4562
+ #: profile-builder-2.0/front-end/class-formbuilder.php:174
4563
+ msgid "Users cannot currently register themselves, but you can manually create users here."
4564
+ msgstr "Brugere kan ikke i øjeblikket registrere sig selv, men du kan manuelt oprette brugere her."
4565
+
4566
+ #: profile-builder-2.0/front-end/class-formbuilder.php:196
4567
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
4568
+ msgstr "Du er i øjeblikket logget ind som %1s. Du har ikke brug for en anden konto. %2s"
4569
+
4570
+ #: profile-builder-2.0/front-end/class-formbuilder.php:196
4571
+ msgid "Log out of this account."
4572
+ msgstr "Log ud fra denne konto."
4573
+
4574
+ #: profile-builder-2.0/front-end/class-formbuilder.php:196
4575
+ msgid "Logout"
4576
+ msgstr "Log ud"
4577
+
4578
+ #: profile-builder-2.0/front-end/class-formbuilder.php:203
4579
+ msgid "You must be logged in to edit your profile."
4580
+ msgstr "Du skal være logget ind for at redigere din profil."
4581
+
4582
+ #: profile-builder-2.0/front-end/class-formbuilder.php:230
4583
+ #: profile-builder-2.0/front-end/class-formbuilder.php:277
4584
+ msgid "here"
4585
+ msgstr "her"
4586
+
4587
+ #: profile-builder-2.0/front-end/class-formbuilder.php:232
4588
+ #: profile-builder-2.0/front-end/class-formbuilder.php:277
4589
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4590
+ msgstr "Du vil snart blive omdirigeret automatisk. Hvis du ser denne side i mere end %1$d seconds, klik venligst %2$s.%3$s"
4591
+
4592
+ #: profile-builder-2.0/front-end/class-formbuilder.php:330
4593
+ #: profile-builder-2.0/front-end/class-formbuilder.php:337
4594
+ msgid "The account %1s has been successfully created!"
4595
+ msgstr "Kontoen %1s er oprettet uden problemer!"
4596
+
4597
+ #: profile-builder-2.0/front-end/class-formbuilder.php:333
4598
+ #: profile-builder-2.0/front-end/class-formbuilder.php:343
4599
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4600
+ 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."
4601
+
4602
+ #: profile-builder-2.0/front-end/class-formbuilder.php:339
4603
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4604
+ msgstr "Før du kan tilgå din konto %1s, skal en administrator godkende den. Du vil blive adviseret via e-mail."
4605
+
4606
+ #: profile-builder-2.0/front-end/class-formbuilder.php:353
4607
+ msgid "Your profile has been successfully updated!"
4608
+ msgstr "Din profil er blevet opdateret uden problemer!"
4609
+
4610
+ #: profile-builder-2.0/front-end/class-formbuilder.php:363
4611
+ msgid "There was an error in the submitted form"
4612
+ msgstr "Der var en fejl i den sendte formular. "
4613
+
4614
+ #: profile-builder-2.0/front-end/class-formbuilder.php:420
4615
+ msgid "Add User"
4616
+ msgstr "Tilføj bruger"
4617
+
4618
+ #: profile-builder-2.0/admin/add-ons.php:170
4619
+ #: profile-builder-2.0/front-end/class-formbuilder.php:423
4620
+ msgid "Update"
4621
+ msgstr "Opdater"
4622
+
4623
+ #: profile-builder-2.0/front-end/class-formbuilder.php:482
4624
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:47
4625
+ msgid "The avatar was successfully deleted!"
4626
+ msgstr "'Avataren' blev slettet uden problemer."
4627
+
4628
+ #: profile-builder-2.0/front-end/class-formbuilder.php:482
4629
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:49
4630
+ msgid "The following attachment was successfully deleted:"
4631
+ msgstr "Følgende vedhæftning blev slettet uden problemer:"
4632
+
4633
+ #: profile-builder-2.0/front-end/class-formbuilder.php:494
4634
+ msgid "Send these credentials via email."
4635
+ msgstr "Send disse legitimationsoplysninger via e-mail."
4636
+
4637
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:111
4638
+ #: profile-builder-2.0/front-end/login.php:137
4639
+ #: profile-builder-2.0/front-end/login.php:144
4640
+ #: profile-builder-2.0/front-end/login.php:158
4641
+ #: profile-builder-2.0/front-end/recover.php:17
4642
+ #: profile-builder-2.0/front-end/recover.php:234
4643
+ msgid "ERROR"
4644
+ msgstr "FEJL"
4645
+
4646
+ #: profile-builder-2.0/front-end/login.php:137
4647
+ msgid "The password you entered is incorrect."
4648
+ msgstr "Adgangskoden du angav er forkert."
4649
+
4650
+ #: profile-builder-2.0/front-end/login.php:138
4651
+ #: profile-builder-2.0/front-end/login.php:145
4652
+ msgid "Password Lost and Found."
4653
+ msgstr "Adgangskode 'mistet og fundet'"
4654
+
4655
+ #: profile-builder-2.0/front-end/login.php:138
4656
+ #: profile-builder-2.0/front-end/login.php:145
4657
+ msgid "Lost your password"
4658
+ msgstr "Mistet din adgangskode"
4659
+
4660
+ #: profile-builder-2.0/front-end/login.php:158
4661
+ msgid "Both fields are empty."
4662
+ msgstr "Begge felter er tomme."
4663
+
4664
+ #: profile-builder-2.0/front-end/login.php:308
4665
+ msgid "You are currently logged in as %1$s. %2$s"
4666
+ msgstr "Du er i øjeblikket logget ind som %1$s. %2$s"
4667
+
4668
+ #: profile-builder-2.0/front-end/login.php:307
4669
+ #: profile-builder-2.0/front-end/logout.php:29
4670
+ msgid "Log out of this account"
4671
+ msgstr "Log ud af denne konto"
4672
+
4673
+ #: profile-builder-2.0/front-end/login.php:307
4674
+ msgid "Log out"
4675
+ msgstr "Log ud"
4676
+
4677
+ #: profile-builder-2.0/front-end/recover.php:17
4678
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4679
+ msgstr "Din konto skal først godkendes af en administrator før du kan bruge \"Genskab adgangskode\""
4680
+
4681
+ #: profile-builder-2.0/front-end/recover.php:94
4682
+ msgid "Reset Password"
4683
+ msgstr "Genskab adgangskode"
4684
+
4685
+ #: profile-builder-2.0/front-end/recover.php:114
4686
+ msgid "Please enter your username or email address."
4687
+ msgstr "Venligst angiv dit brugernavn eller e-mail adresse."
4688
+
4689
+ #: profile-builder-2.0/front-end/recover.php:115
4690
+ msgid "You will receive a link to create a new password via email."
4691
+ msgstr "Du modtager et link via e-mail, så du kan oprette en ny adgangskode"
4692
+
4693
+ #: profile-builder-2.0/front-end/recover.php:120
4694
+ msgid "Username or E-mail"
4695
+ msgstr "Brugernavn eller e-mail"
4696
+
4697
+ #: profile-builder-2.0/front-end/recover.php:130
4698
+ msgid "Get New Password"
4699
+ msgstr "Anmod om ny adgangskode"
4700
+
4701
+ #: profile-builder-2.0/front-end/recover.php:172
4702
+ msgid "The username entered wasn't found in the database!"
4703
+ msgstr "Det angivne brugernavn blev ikke fundet i databasen!"
4704
+
4705
+ #: profile-builder-2.0/front-end/recover.php:172
4706
+ msgid "Please check that you entered the correct username."
4707
+ msgstr "Tjek venligst at du angav det korrekte brugernavn."
4708
+
4709
+ #: profile-builder-2.0/front-end/recover.php:187
4710
+ msgid "Check your e-mail for the confirmation link."
4711
+ msgstr "Tjek din e-mail for bekræftelseslink."
4712
+
4713
+ #: profile-builder-2.0/front-end/recover.php:222
4714
+ 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"
4715
+ 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"
4716
+
4717
+ #: profile-builder-2.0/front-end/recover.php:225
4718
+ msgid "Password Reset from \"%1$s\""
4719
+ msgstr "Adgangskode genskab fra \"%1$s\""
4720
+
4721
+ #: profile-builder-2.0/front-end/recover.php:234
4722
+ msgid "There was an error while trying to send the activation link to %1$s!"
4723
+ msgstr "Der opstod en fejl, da aktivireingslinket blev forsøgt sendt til %1$s!"
4724
+
4725
+ #: profile-builder-2.0/front-end/recover.php:194
4726
+ msgid "The email address entered wasn't found in the database!"
4727
+ msgstr "Den angivne e-mail adresse blev ikke fundet i databasen!"
4728
+
4729
+ #: profile-builder-2.0/front-end/recover.php:194
4730
+ msgid "Please check that you entered the correct email address."
4731
+ msgstr "Tjek venligst at du angav den korrekte e-mail adresse."
4732
+
4733
+ #: profile-builder-2.0/front-end/recover.php:262
4734
+ msgid "Your password has been successfully changed!"
4735
+ msgstr "Din adgangskode er ændret uden problemer!"
4736
+
4737
+ #: profile-builder-2.0/front-end/recover.php:281
4738
+ msgid "You have successfully reset your password to: %1$s"
4739
+ msgstr "Du har med succes genskabt din adgangskode til: %1$s"
4740
+
4741
+ #: profile-builder-2.0/front-end/recover.php:284
4742
+ #: profile-builder-2.0/front-end/recover.php:298
4743
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
4744
+ msgstr "Adgangskoden ændret uden problemer for %1$s på \"%2$s\""
4745
+
4746
+ #: profile-builder-2.0/front-end/recover.php:295
4747
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4748
+ msgstr "%1$s har anmodet om ændring af adgangskoden via 'Genskab adgangskode'.<br/>Hans/hendes nye adgagnskode er:%2$s"
4749
+
4750
+ #: profile-builder-2.0/front-end/recover.php:314
4751
+ msgid "The entered passwords don't match!"
4752
+ msgstr "Den angivne adgangskode matcher ikke!"
4753
+
4754
+ #: profile-builder-2.0/front-end/recover.php:381
4755
+ msgid "ERROR:"
4756
+ msgstr "FEJL:"
4757
+
4758
+ #: profile-builder-2.0/front-end/recover.php:381
4759
+ msgid "Invalid key!"
4760
+ msgstr "Ugyldig nøgle!"
4761
+
4762
+ #: profile-builder-2.0/front-end/register.php:55
4763
+ msgid "Invalid activation key!"
4764
+ msgstr "Ugyldig aktiveringsnøgle!"
4765
+
4766
+ #: profile-builder-2.0/front-end/register.php:59
4767
+ msgid "This username is now active!"
4768
+ msgstr "Dette brugernavn er nu aktivt!"
4769
+
4770
+ #: profile-builder-2.0/front-end/register.php:73
4771
+ msgid "This username is already activated!"
4772
+ msgstr "Dette brugernavn er allerede aktiveret!"
4773
+
4774
+ #: profile-builder-2.0/front-end/register.php:129
4775
+ msgid "Your email was successfully confirmed."
4776
+ msgstr "Din e-mail blev bekræftet uden problemer."
4777
+
4778
+ #: profile-builder-2.0/front-end/register.php:163
4779
+ msgid "There was an error while trying to activate the user."
4780
+ msgstr "Der skete en fejl under forsøget på at aktivere brugeren."
4781
+
4782
+ #: pb-add-on-woocommerce/index.php:393
4783
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:47
4784
+ msgid "The email you entered is not a valid email address."
4785
+ msgstr "E-mailen, som du angav, er ikke en gyldig e-mail adresse."
4786
+
4787
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4788
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4789
+ msgid "This email is already reserved to be used soon."
4790
+ msgstr "Denne e-mail er allerede reserveret til snart at blive anvendt."
4791
+
4792
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4793
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4794
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4795
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4796
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4797
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4798
+ msgid "Please try a different one!"
4799
+ msgstr "Venligst prøv en anden!"
4800
+
4801
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4802
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4803
+ msgid "This email is already in use."
4804
+ msgstr "Denne e-mail er allerede i brug."
4805
+
4806
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4807
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4808
+ msgid "The passwords do not match"
4809
+ msgstr "Adgangskoden matcher ikke"
4810
+
4811
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4812
+ msgid "This username already exists."
4813
+ msgstr "Dette brugernavn eksisterer allerede."
4814
+
4815
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4816
+ msgid "This username is already reserved to be used soon."
4817
+ msgstr "Dette brugernavn er allerede reserveret til snart at blive anvendt."
4818
+
4819
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:267
4820
+ msgid "Avatar"
4821
+ msgstr "Avatar"
4822
+
4823
+ #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4824
+ #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4825
+ #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4826
+ #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4827
+ #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4828
+ #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4829
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4830
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4831
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4832
+ #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4833
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:46
4834
+ #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4835
+ #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4836
+ #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4837
+ #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4838
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4839
+ #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4840
+ msgid "required"
4841
+ msgstr "krævet"
4842
+
4843
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:48
4844
+ msgid "To use reCAPTCHA you must get an API key from"
4845
+ msgstr "For at bruge 'reCAPTCHA' skal du først have en API nøgle fra"
4846
+
4847
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:131
4848
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4849
+ msgstr "Af sikkerhedsmæssige grunde skal du angive 'remote' ip til 'reCAPTCHA'!"
4850
+
4851
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:192
4852
+ msgid "To use reCAPTCHA you must get an API public key from:"
4853
+ msgstr "For at bruge 'reCAPTCHA' skal du have en offentlig API nøgle fra:"
4854
+
4855
+ #: profile-builder-2.0/modules/modules.php:11
4856
+ #: profile-builder-2.0/modules/modules.php:58
4857
+ msgid "Modules"
4858
+ msgstr "Moduler"
4859
+
4860
+ #: profile-builder-2.0/modules/modules.php:59
4861
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4862
+ msgstr "Her kan du aktivere / deaktivere tilgængelige moduler i Profile Builder."
4863
+
4864
+ #: profile-builder-2.0/modules/modules.php:69
4865
+ msgid "Name/Description"
4866
+ msgstr "Navn/Beskrivelse"
4867
+
4868
+ #: profile-builder-2.0/modules/modules.php:70
4869
+ msgid "Status"
4870
+ msgstr "Status"
4871
+
4872
+ #: profile-builder-2.0/modules/modules.php:77
4873
+ #: profile-builder-2.0/modules/modules.php:84
4874
+ #: profile-builder-2.0/modules/modules.php:91
4875
+ #: profile-builder-2.0/modules/modules.php:98
4876
+ #: profile-builder-2.0/modules/modules.php:105
4877
+ #: profile-builder-2.0/modules/modules.php:112
4878
+ #: profile-builder-2.0/modules/modules.php:119
4879
+ msgid "Active"
4880
+ msgstr "Aktiv"
4881
+
4882
+ #: profile-builder-2.0/modules/modules.php:78
4883
+ #: profile-builder-2.0/modules/modules.php:85
4884
+ #: profile-builder-2.0/modules/modules.php:92
4885
+ #: profile-builder-2.0/modules/modules.php:99
4886
+ #: profile-builder-2.0/modules/modules.php:106
4887
+ #: profile-builder-2.0/modules/modules.php:113
4888
+ #: profile-builder-2.0/modules/modules.php:120
4889
+ msgid "Inactive"
4890
+ msgstr "Inaktiv"
4891
+
4892
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4893
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4894
+ #: profile-builder-2.0/modules/modules.php:96
4895
+ msgid "Admin Email Customizer"
4896
+ msgstr "Opsætning af administrator e-mails"
4897
+
4898
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
4899
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4900
+ #: profile-builder-2.0/modules/modules.php:103
4901
+ msgid "User Email Customizer"
4902
+ msgstr "Opsætning af bruger e-mails"
4903
+
4904
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:340
4905
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:254
4906
+ msgid "Save"
4907
+ msgstr "Gem"
4908
+
4909
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
4910
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4911
+ msgid "Redirect"
4912
+ msgstr "Omdiriger"
4913
+
4914
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
4915
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
4916
+ msgid "URL"
4917
+ msgstr "URL"
4918
+
4919
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4920
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4921
+ msgstr "Disse indstillinger bliver samtidig også gemt i \"Opsætning af bruger e-mails\" når de gemmes."
4922
+
4923
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4924
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4925
+ msgid "From (name)"
4926
+ msgstr "Fra (navn)"
4927
+
4928
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4929
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4930
+ msgid "From (reply-to email)"
4931
+ msgstr "Fra (svar-til e-mail)"
4932
+
4933
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4934
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4935
+ msgid "Common Settings"
4936
+ msgstr "Fælles indstillinger"
4937
+
4938
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4939
+ msgid ""
4940
+ "\n"
4941
+ "<p>New subscriber on {{site_name}}.</p>\n"
4942
+ "<p>Username:{{username}}</p>\n"
4943
+ "<p>E-mail:{{user_email}}</p>\n"
4944
+ msgstr ""
4945
+ "\n"
4946
+ "<p>Ny abonnent på {{site_name}}.</p>\n"
4947
+ "<p>Brugernavn:{{username}}</p>\n"
4948
+ "<p>E-mail:{{user_email}}</p>\n"
4949
+
4950
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4951
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4952
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4953
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4954
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4955
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4956
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4957
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4958
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4959
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
4960
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
4961
+ msgid "Email Subject"
4962
+ msgstr "E-mail emne"
4963
+
4964
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
4965
+ msgid "Default Registration & Registration with Email Confirmation"
4966
+ msgstr "Standard registrering & registrering med e-mail bekræftelse"
4967
+
4968
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
4969
+ msgid ""
4970
+ "\n"
4971
+ "<p>New subscriber on {{site_name}}.</p>\n"
4972
+ "<p>Username:{{username}}</p>\n"
4973
+ "<p>E-mail:{{user_email}}</p>\n"
4974
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
4975
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
4976
+ msgstr ""
4977
+ "\n"
4978
+ "<p>Ny abonnent på {{site_name}}.</p>\n"
4979
+ "<p>Brugernavn:{{username}}</p>\n"
4980
+ "<p>E-mail:{{user_email}}</p>\n"
4981
+ "<p>Administrator godkendelsesfunktione blev aktiveret på tidspunktet for registrering,\n"
4982
+ "så husk venligst at du skal godkende denne bruger før han/hun kan logge ind!</p>\n"
4983
+
4984
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
4985
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
4986
+ msgid "Registration with Admin Approval"
4987
+ msgstr "Registrering med administrator godkendelse"
4988
+
4989
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
4990
+ msgid "Available Tags"
4991
+ msgstr "Tilgængelige 'tags'"
4992
+
4993
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
4994
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
4995
+ msgid "User Meta"
4996
+ msgstr "Bruger 'meta'"
4997
+
4998
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
4999
+ msgid "Site Url"
5000
+ msgstr "Site URL"
5001
+
5002
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
5003
+ msgid "Site Name"
5004
+ msgstr "Site navn"
5005
+
5006
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
5007
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:151
5008
+ msgid "User Id"
5009
+ msgstr "Bruger ID"
5010
+
5011
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
5012
+ msgid "Reply To"
5013
+ msgstr "Svar til"
5014
+
5015
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
5016
+ msgid "Activation Key"
5017
+ msgstr "Aktiveringsnøgle"
5018
+
5019
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:37
5020
+ msgid "Activation Url"
5021
+ msgstr "Aktiverings URL"
5022
+
5023
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:38
5024
+ msgid "Activation Link"
5025
+ msgstr "Aktiveringslink"
5026
+
5027
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5028
+ msgid ""
5029
+ "\n"
5030
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5031
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5032
+ msgstr ""
5033
+ "\n"
5034
+ "<h3>Velkommen til {{site_name}}!</h3>\n"
5035
+ "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
5036
+
5037
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5038
+ msgid "Default Registration"
5039
+ msgstr "Standard registrering"
5040
+
5041
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5042
+ msgid ""
5043
+ "\n"
5044
+ "<p>To activate your user, please click the following link:<br/>\n"
5045
+ "{{{activation_link}}}</p>\n"
5046
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
5047
+ msgstr ""
5048
+ "\n"
5049
+ "<p>For at aktivere din bruger klik venligst på følgende link:<br/>\n"
5050
+ "{{{activation_link}}}</p>\n"
5051
+ "<p>Efter du aktiverer vil du modtage endnu en e-mail med dine legitimationsoplysninger.</p>\n"
5052
+
5053
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5054
+ msgid "[{{site_name}}] Activate {{username}}"
5055
+ msgstr "[{{site_name}}] Aktivér {{username}}"
5056
+
5057
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5058
+ msgid "Registration with Email Confirmation"
5059
+ msgstr "Registrering med e-mail bekræftelse"
5060
+
5061
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5062
+ msgid ""
5063
+ "\n"
5064
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5065
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5066
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
5067
+ msgstr ""
5068
+ "\n"
5069
+ "<h3>Velkommen til {{site_name}}!</h3>\n"
5070
+ "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
5071
+ "<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"
5072
+
5073
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5074
+ msgid "A new account has been created for you on {{site_name}}"
5075
+ msgstr "En ny konto er blevet oprettet til dig på {{site_name}}"
5076
+
5077
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5078
+ msgid ""
5079
+ "\n"
5080
+ "<h3>Good News!</h3>\n"
5081
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5082
+ msgstr ""
5083
+ "\n"
5084
+ "<h3>Gode nyheder!</h3>\n"
5085
+ "<p>En administrator har netop godkendt din konto: {{username}} på {{site_name}}.</p>\n"
5086
+
5087
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5088
+ msgid "Your account on {{site_name}} has been approved!"
5089
+ msgstr "Din konto på {{site_name}} er blevet godkendt!"
5090
+
5091
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5092
+ msgid "User Approval Notification"
5093
+ msgstr "Meddelelse om brugergodkendelse"
5094
+
5095
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5096
+ msgid ""
5097
+ "\n"
5098
+ "<h3>Hello,</h3>\n"
5099
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5100
+ msgstr ""
5101
+ "\n"
5102
+ "<h3>Hej,</h3>\n"
5103
+ "<p>En administrator har desværre ophævet godkendelsen af din konto: {{username}} på {{site_name}}.</p>\n"
5104
+
5105
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5106
+ msgid "Your account on {{site_name}} has been unapproved!"
5107
+ msgstr "Din konto på {{site_name}} er ikke længere godkendt!"
5108
+
5109
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5110
+ msgid "Unapproved User Notification"
5111
+ msgstr "Meddelelse om ophævelse af brugerkonto"
5112
+
5113
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5114
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5115
+ msgid "Edit-profile Form"
5116
+ msgstr "Formular til profilredigering"
5117
+
5118
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5119
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5120
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5121
+ msgid "Add New"
5122
+ msgstr "Tilføj ny"
5123
+
5124
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5125
+ msgid "Add new Edit-profile Form"
5126
+ msgstr "Tilføj ny formular til profilredigering"
5127
+
5128
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5129
+ msgid "Edit the Edit-profile Forms"
5130
+ msgstr "Rediger profilredigerings formularer"
5131
+
5132
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5133
+ msgid "New Edit-profile Form"
5134
+ msgstr "Ny profilredigerings formular"
5135
+
5136
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5137
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5138
+ msgid "Edit-profile Forms"
5139
+ msgstr "Profilredigerings formularer"
5140
+
5141
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5142
+ msgid "View the Edit-profile Form"
5143
+ msgstr "Vis profilredigerings formular"
5144
+
5145
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5146
+ msgid "Search the Edit-profile Forms"
5147
+ msgstr "Søg profilredigerings formularer"
5148
+
5149
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5150
+ msgid "No Edit-profile Form found"
5151
+ msgstr "Ingen profilredigerings formular fundet"
5152
+
5153
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5154
+ msgid "No Edit-profile Forms found in trash"
5155
+ msgstr "Ingen profilredigerings formular fundet i papirkurven"
5156
+
5157
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5158
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5159
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1994
5160
+ msgid "Shortcode"
5161
+ msgstr "'Shortcode'"
5162
+
5163
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5164
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5165
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2015
5166
+ msgid "(no title)"
5167
+ msgstr "(ingen titel)"
5168
+
5169
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5170
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5171
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2035
5172
+ msgid "The shortcode will be available after you publish this form."
5173
+ msgstr "'Shortcode' er tilgængelig efter du har publiceret denne formular."
5174
+
5175
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5176
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5177
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2037
5178
+ msgid "Use this shortcode on the page you want the form to be displayed:"
5179
+ msgstr "Brug denne 'shortcode' på den side du ønsker formularen vist:"
5180
+
5181
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5182
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5183
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2041
5184
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5185
+ msgstr "<span style=\"color:red;\">Bemærk:</span> ændring af denne formulars titel ændrer også 'shortcode'!"
5186
+
5187
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5188
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5189
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2074
5190
+ msgid "Form Shortcode"
5191
+ msgstr "Formular 'shortcode'"
5192
+
5193
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5194
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5195
+ msgid "Whether to redirect the user to a specific page or not"
5196
+ msgstr "Hvorvidt brugeren skal omdirigeres til en bestemt side eller ikke"
5197
+
5198
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5199
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5200
+ msgid "Display Messages"
5201
+ msgstr "Vis meddelelser"
5202
+
5203
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5204
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5205
+ msgid "Allowed time to display any success messages (in seconds)"
5206
+ msgstr "Tilladt visningstid (i sekunder) for alle problemfrie meddelelser"
5207
+
5208
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5209
+ 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"
5210
+ 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"
5211
+
5212
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5213
+ msgid "After Profile Update..."
5214
+ msgstr "Efter profilopdatering..."
5215
+
5216
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5217
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5218
+ msgid "Add New Field to the List"
5219
+ msgstr "Tilføj nyt felt til listen"
5220
+
5221
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5222
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5223
+ msgid "Choose one of the supported fields you manage <a href=\""
5224
+ msgstr "Vælg en af de understøttede felter som du administrerer <a href=\""
5225
+
5226
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5227
+ msgid "<pre>Title (Type)</pre>"
5228
+ msgstr "<pre>Titel (Type)</pre>"
5229
+
5230
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5231
+ msgid "You need to specify the title of the form before creating it"
5232
+ msgstr "Du skal specificere formularens titel før du opretter den"
5233
+
5234
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5235
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5236
+ msgid "Registration Form"
5237
+ msgstr "Registreringsformular"
5238
+
5239
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5240
+ msgid "Add new Registration Form"
5241
+ msgstr "Tilføj ny registreringsformular"
5242
+
5243
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5244
+ msgid "Edit the Registration Forms"
5245
+ msgstr "Rediger registreringsformularer"
5246
+
5247
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5248
+ msgid "New Registration Form"
5249
+ msgstr "Ny registreringsformular"
5250
+
5251
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5252
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5253
+ msgid "Registration Forms"
5254
+ msgstr "Registreringsformularer"
5255
+
5256
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5257
+ msgid "View the Registration Form"
5258
+ msgstr "Vis registrerinsformularen"
5259
+
5260
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5261
+ msgid "Search the Registration Forms"
5262
+ msgstr "Søg registreringsformularer"
5263
+
5264
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5265
+ msgid "No Registration Form found"
5266
+ msgstr "Ingen registreringsformular funder"
5267
+
5268
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5269
+ msgid "No Registration Forms found in trash"
5270
+ msgstr "Ingen registreringsformularer fundet i papirkurven"
5271
+
5272
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5273
+ msgid "Default Role"
5274
+ msgstr "Standard rolle"
5275
+
5276
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5277
+ msgid "Set Role"
5278
+ msgstr "Indstil rolle"
5279
+
5280
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5281
+ 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"
5282
+ 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"
5283
+
5284
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5285
+ msgid "Automatically Log In"
5286
+ msgstr "Automatisk log ind"
5287
+
5288
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5289
+ 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"
5290
+ 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"
5291
+
5292
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5293
+ 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"
5294
+ 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"
5295
+
5296
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5297
+ msgid "After Registration..."
5298
+ msgstr "Efter registrering..."
5299
+
5300
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:987
5301
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1429
5302
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1832
5303
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2294
5304
+ msgid "Search Users by All Fields"
5305
+ msgstr "Søg brugere ved at bruge 'Alle felter'"
5306
+
5307
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5308
+ msgid "Add new User Listing"
5309
+ msgstr "Tilføj ny brugeroversigt"
5310
+
5311
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5312
+ msgid "Edit the User Listing"
5313
+ msgstr "Rediger brugeroversigten"
5314
+
5315
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5316
+ msgid "New User Listing"
5317
+ msgstr "Ny brugeroversigt"
5318
+
5319
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5320
+ msgid "View the User Listing"
5321
+ msgstr "Vis brugeroversigten"
5322
+
5323
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5324
+ msgid "Search the User Listing"
5325
+ msgstr "Søg i brugeroversigt"
5326
+
5327
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5328
+ msgid "No User Listing found"
5329
+ msgstr "Ingen brugeroversigt fundet"
5330
+
5331
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5332
+ msgid "No User Listing found in trash"
5333
+ msgstr "Ingen brugeroversigt fundet i papirkurven"
5334
+
5335
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:104
5336
+ msgid "Display name as"
5337
+ msgstr "Vis navn som"
5338
+
5339
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:143
5340
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2102
5341
+ msgid "Registration Date"
5342
+ msgstr "Registreringsdato"
5343
+
5344
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:144
5345
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2107
5346
+ msgid "Number of Posts"
5347
+ msgstr "Antal poster"
5348
+
5349
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:148
5350
+ msgid "More Info"
5351
+ msgstr "Mere info"
5352
+
5353
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:149
5354
+ msgid "More Info Url"
5355
+ msgstr "Mere info URL"
5356
+
5357
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5358
+ msgid "Avatar or Gravatar"
5359
+ msgstr "Avatar eller Gravatar"
5360
+
5361
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:189
5362
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:218
5363
+ msgid "Extra Functions"
5364
+ msgstr "Ekstra funktioner"
5365
+
5366
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:191
5367
+ msgid "Pagination"
5368
+ msgstr "Sideopdeling"
5369
+
5370
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:192
5371
+ msgid "Search all Fields"
5372
+ msgstr "Søg 'Alle felter'"
5373
+
5374
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:220
5375
+ msgid "Go Back Link"
5376
+ msgstr "Tilbage link"
5377
+
5378
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:238
5379
+ msgid "All-userlisting Template"
5380
+ msgstr "Skabelon for flere-brugeroversigt"
5381
+
5382
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:241
5383
+ msgid "Single-userlisting Template"
5384
+ msgstr "Skabelon for enkelt-brugeroversigt"
5385
+
5386
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:707
5387
+ msgid "First/Lastname"
5388
+ msgstr "For-/Efternavn"
5389
+
5390
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:272
5391
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:713
5392
+ msgid "Sign-up Date"
5393
+ msgstr "Tilmeldingsdato"
5394
+
5395
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:722
5396
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2105
5397
+ msgid "Display Name"
5398
+ msgstr "Vis navn som"
5399
+
5400
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:271
5401
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:731
5402
+ msgid "Posts"
5403
+ msgstr "Poster"
5404
+
5405
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:734
5406
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2112
5407
+ msgid "Aim"
5408
+ msgstr "'Aim'"
5409
+
5410
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:737
5411
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2113
5412
+ msgid "Yim"
5413
+ msgstr "'Yim'"
5414
+
5415
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:740
5416
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2114
5417
+ msgid "Jabber"
5418
+ msgstr "'Jabber'"
5419
+
5420
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1239
5421
+ msgid "Click here to see more information about this user"
5422
+ msgstr "Klik her for at se mere information om denne bruger"
5423
+
5424
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1239
5425
+ msgid "More..."
5426
+ msgstr "Mere..."
5427
+
5428
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1242
5429
+ msgid "Click here to see more information about this user."
5430
+ msgstr "Klik her for at se mere information om denne bruger."
5431
+
5432
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1383
5433
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1386
5434
+ msgid "Click here to go back"
5435
+ msgstr "Klik her for at gå tilbage"
5436
+
5437
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1383
5438
+ msgid "Back"
5439
+ msgstr "Tilbage"
5440
+
5441
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1416
5442
+ msgid "&laquo;&laquo; First"
5443
+ msgstr "&laquo;&laquo; Først"
5444
+
5445
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1417
5446
+ msgid "&laquo; Prev"
5447
+ msgstr "&laquo; Forrige"
5448
+
5449
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1418
5450
+ msgid "Next &raquo; "
5451
+ msgstr "Næste &raquo; "
5452
+
5453
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1419
5454
+ msgid "Last &raquo;&raquo;"
5455
+ msgstr "Sidste &raquo;&raquo;"
5456
+
5457
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1448
5458
+ msgid "You don't have any pagination settings on this userlisting!"
5459
+ msgstr "Du har ingen sideopdeling (paginering) på denne brugeroversigt!"
5460
+
5461
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1849
5462
+ msgid "Search"
5463
+ msgstr "Søg"
5464
+
5465
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1850
5466
+ msgid "Clear Results"
5467
+ msgstr "Ryd resultatet"
5468
+
5469
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2044
5470
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2048
5471
+ msgid "Extra shortcode parameters"
5472
+ msgstr "Ekstra 'shortcode' parametre"
5473
+
5474
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2051
5475
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5476
+ msgstr "viser brugere med en bestemt meta-værdi inden for et bestemt (ekstra) meta-felt"
5477
+
5478
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2052
5479
+ msgid "Example:"
5480
+ msgstr "Eksempel:"
5481
+
5482
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2054
5483
+ msgid "Remember though, that the field-value combination must exist in the database."
5484
+ msgstr "Husk dog, at feltværdi kombinationen skal eksistere i databasen."
5485
+
5486
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2124
5487
+ msgid "Random (very slow on large databases > 10K user)"
5488
+ msgstr "Vilkårlig (meget langsom på store databaser > 10K brugere)"
5489
+
5490
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5491
+ msgid "Roles to Display"
5492
+ msgstr "Roller der skal vises"
5493
+
5494
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5495
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5496
+ msgstr "Begræns brugeroversigter til kun at omfatte disse udvalgte roller<br/>Hvis ikke specificeret, så bruges alle eksisterende roller"
5497
+
5498
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2137
5499
+ msgid "Number of Users/Page"
5500
+ msgstr "Antal brugere/side"
5501
+
5502
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2138
5503
+ msgid "Default Sorting Criteria"
5504
+ msgstr "Standard sorteringskriterie"
5505
+
5506
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2138
5507
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5508
+ msgstr "Sæt standard sorteringskriteriet<br/>Denne kan ændres midlertidigt for hver ny session"
5509
+
5510
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2139
5511
+ msgid "Default Sorting Order"
5512
+ msgstr "Standard sorteringsorden"
5513
+
5514
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2139
5515
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5516
+ msgstr "Sæt standard sorteringsorden<br/>Denne kan ændres midlertidigt for hver ny session"
5517
+
5518
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2140
5519
+ msgid "Avatar Size (All-userlisting)"
5520
+ msgstr "Avatar størrelse (Flere-brugeroversigt)"
5521
+
5522
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2140
5523
+ msgid "Set the avatar size on the all-userlisting only"
5524
+ msgstr "Sæt avatar størrelsen på kun flere-brugeroversigten "
5525
+
5526
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2141
5527
+ msgid "Avatar Size (Single-userlisting)"
5528
+ msgstr "Avatar størrelse (enkelt-brugeroversigt)"
5529
+
5530
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2141
5531
+ msgid "Set the avatar size on the single-userlisting only"
5532
+ msgstr "Sæt avatar størrelsen på kun enkelt-brugeroversigten"
5533
+
5534
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2142
5535
+ msgid "Visible only to logged in users?"
5536
+ msgstr "Synlig kun for brugere, der er logget ind?"
5537
+
5538
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2142
5539
+ msgid "The userlisting will only be visible only to the logged in users"
5540
+ msgstr "Brugeroversigten vil kun være synlig for brugere, der er logget ind"
5541
+
5542
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2143
5543
+ msgid "Visible to following Roles"
5544
+ msgstr "Synlig for følgende roller"
5545
+
5546
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2143
5547
+ msgid "The userlisting will only be visible to the following roles"
5548
+ msgstr "Brugeroversigten vil kun være synlig for følgende roller"
5549
+
5550
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2149
5551
+ msgid "Userlisting Settings"
5552
+ msgstr "Opsætning af brugeroversigt"
5553
+
5554
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2270
5555
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5556
+ msgstr "Du skal aktivere brugeroversigts funktionen inde på fanen \"Moduler\"!"
5557
+
5558
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2270
5559
+ msgid "You can find it in the Profile Builder menu."
5560
+ msgstr "Du kan finde det i Profile Builder menuen."
5561
+
5562
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2433
5563
+ msgid "No results found!"
5564
  msgstr "Ingen resultater fundet!"
translation/profile-builder-de_DE.mo CHANGED
Binary file
translation/profile-builder-de_DE.po CHANGED
@@ -1,4046 +1,5554 @@
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!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2016-11-28 13:10:50+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
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:239
14
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
15
+ msgstr ""
16
+
17
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
18
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
19
+ msgstr ""
20
+
21
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1269
22
+ msgid "View Map"
23
+ msgstr ""
24
+
25
+ #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
26
+ #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
27
+ #: pb-add-on-woocommerce/index.php:493
28
+ msgid "Address line 2"
29
+ msgstr ""
30
+
31
+ #: pb-add-on-woocommerce/index.php:256
32
+ msgid "Billing Fields"
33
+ msgstr ""
34
+
35
+ #: pb-add-on-woocommerce/index.php:256
36
+ msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
37
+ msgstr ""
38
+
39
+ #: pb-add-on-woocommerce/index.php:257
40
+ msgid "Billing Fields Order"
41
+ msgstr ""
42
+
43
+ #: pb-add-on-woocommerce/index.php:257
44
+ msgid "Save the billing fields order from the billing fields checkboxes"
45
+ msgstr ""
46
+
47
+ #: pb-add-on-woocommerce/index.php:258
48
+ msgid "Billing Fields Name"
49
+ msgstr ""
50
+
51
+ #: pb-add-on-woocommerce/index.php:258
52
+ msgid "Save the billing fields names"
53
+ msgstr ""
54
+
55
+ #: pb-add-on-woocommerce/index.php:275
56
+ msgid "Shipping Fields"
57
+ msgstr ""
58
+
59
+ #: pb-add-on-woocommerce/index.php:275
60
+ msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
61
+ msgstr ""
62
+
63
+ #: pb-add-on-woocommerce/index.php:276
64
+ msgid "Shipping Fields Order"
65
+ msgstr ""
66
+
67
+ #: pb-add-on-woocommerce/index.php:276
68
+ msgid "Save the shipping fields order from the billing fields checkboxes"
69
+ msgstr ""
70
+
71
+ #: pb-add-on-woocommerce/index.php:277
72
+ msgid "Shipping Fields Name"
73
+ msgstr ""
74
+
75
+ #: pb-add-on-woocommerce/index.php:277
76
+ msgid "Save the shipping fields names"
77
+ msgstr ""
78
+
79
+ #: pb-add-on-woocommerce/index.php:305
80
+ msgid "Field Name"
81
+ msgstr ""
82
+
83
+ #: pb-add-on-woocommerce/index.php:369
84
+ msgid "Click to edit "
85
+ msgstr ""
86
+
87
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
88
+ msgid "is not a valid phone number."
89
+ msgstr ""
90
+
91
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
92
+ msgid "is not a number."
93
+ msgstr ""
94
+
95
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
96
+ msgid "must be a multiplier of "
97
+ msgstr ""
98
+
99
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
100
+ msgid "must be a greater than or equal to "
101
+ msgstr ""
102
+
103
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
104
+ msgid "must be less than or equal to "
105
+ msgstr ""
106
+
107
+ #: profile-builder-2.0/admin/add-ons.php:103
108
+ msgid "Available in Hobbyist and Pro Versions"
109
+ msgstr ""
110
+
111
+ #: profile-builder-2.0/admin/add-ons.php:105
112
+ msgid "Available in All Versions"
113
+ msgstr ""
114
+
115
+ #: profile-builder-2.0/admin/add-ons.php:148
116
+ msgid "Learn More"
117
+ msgstr ""
118
+
119
+ #: profile-builder-2.0/admin/basic-info.php:99
120
+ msgid "Timepicker"
121
+ msgstr ""
122
+
123
+ #: profile-builder-2.0/admin/basic-info.php:100
124
+ msgid "Colorpicker"
125
+ msgstr ""
126
+
127
+ #: profile-builder-2.0/admin/basic-info.php:103
128
+ msgid "Currency Select"
129
+ msgstr ""
130
+
131
+ #: profile-builder-2.0/admin/basic-info.php:109
132
+ msgid "Number"
133
+ msgstr ""
134
+
135
+ #: profile-builder-2.0/admin/basic-info.php:114
136
+ msgid "Validation"
137
+ msgstr ""
138
+
139
+ #: profile-builder-2.0/admin/basic-info.php:115
140
+ msgid "Map"
141
+ msgstr ""
142
+
143
+ #: profile-builder-2.0/admin/basic-info.php:116
144
+ msgid "HTML"
145
+ msgstr ""
146
+
147
+ #: profile-builder-2.0/admin/basic-info.php:162
148
+ #: profile-builder-2.0/modules/modules.php:117
149
+ msgid "Repeater Fields"
150
+ msgstr ""
151
+
152
+ #: profile-builder-2.0/admin/basic-info.php:163
153
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
154
+ msgstr ""
155
+
156
+ #: profile-builder-2.0/admin/general-settings.php:62
157
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
158
+ msgstr ""
159
+
160
+ #: profile-builder-2.0/admin/manage-fields.php:115
161
+ msgid "Use this in conjunction 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 unique)<br/>Changing this might take long in case of a very big user-count"
162
+ msgstr ""
163
+
164
+ #: profile-builder-2.0/admin/manage-fields.php:138
165
+ msgid "Show Currency Symbol"
166
+ msgstr ""
167
+
168
+ #: profile-builder-2.0/admin/manage-fields.php:138
169
+ msgid "Whether the currency symbol should be displayed after the currency name in the select option."
170
+ msgstr ""
171
+
172
+ #: profile-builder-2.0/admin/manage-fields.php:139
173
+ msgid "Show Post Type"
174
+ msgstr ""
175
+
176
+ #: profile-builder-2.0/admin/manage-fields.php:139
177
+ msgid "Posts from what post type will be displayed in the select."
178
+ msgstr ""
179
+
180
+ #: profile-builder-2.0/admin/manage-fields.php:140
181
+ msgid "Allowable Values"
182
+ msgstr ""
183
+
184
+ #: profile-builder-2.0/admin/manage-fields.php:140
185
+ msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
186
+ msgstr ""
187
+
188
+ #: profile-builder-2.0/admin/manage-fields.php:141
189
+ msgid "Error Message"
190
+ msgstr ""
191
+
192
+ #: profile-builder-2.0/admin/manage-fields.php:141
193
+ msgid "Set a custom error message that will be displayed to the user."
194
+ msgstr ""
195
+
196
+ #: profile-builder-2.0/admin/manage-fields.php:142
197
+ msgid "Time Format"
198
+ msgstr ""
199
+
200
+ #: profile-builder-2.0/admin/manage-fields.php:142
201
+ msgid "Specify the time format."
202
+ msgstr ""
203
+
204
+ #: profile-builder-2.0/admin/manage-fields.php:143
205
+ msgid "Google Maps API Key"
206
+ msgstr ""
207
+
208
+ #: profile-builder-2.0/admin/manage-fields.php:143
209
+ msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
210
+ msgstr ""
211
+
212
+ #: profile-builder-2.0/admin/manage-fields.php:144
213
+ msgid "Default Latitude"
214
+ msgstr ""
215
+
216
+ #: profile-builder-2.0/admin/manage-fields.php:144
217
+ msgid "The latitude at which the map should be displayed when no pins are attached."
218
+ msgstr ""
219
+
220
+ #: profile-builder-2.0/admin/manage-fields.php:145
221
+ msgid "Default Longitude"
222
+ msgstr ""
223
+
224
+ #: profile-builder-2.0/admin/manage-fields.php:145
225
+ msgid "The longitude at which the map should be displayed when no pins are attached."
226
+ msgstr ""
227
+
228
+ #: profile-builder-2.0/admin/manage-fields.php:146
229
+ msgid "Default Zoom Level"
230
+ msgstr ""
231
+
232
+ #: profile-builder-2.0/admin/manage-fields.php:146
233
+ msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
234
+ msgstr ""
235
+
236
+ #: profile-builder-2.0/admin/manage-fields.php:147
237
+ msgid "Map Height"
238
+ msgstr ""
239
+
240
+ #: profile-builder-2.0/admin/manage-fields.php:147
241
+ msgid "The height of the map."
242
+ msgstr ""
243
+
244
+ #: profile-builder-2.0/admin/manage-fields.php:149
245
+ msgid "HTML Content"
246
+ msgstr ""
247
+
248
+ #: profile-builder-2.0/admin/manage-fields.php:149
249
+ msgid "Add your HTML (or text) content"
250
+ msgstr ""
251
+
252
+ #: profile-builder-2.0/admin/manage-fields.php:150
253
+ msgid "Phone Format"
254
+ msgstr ""
255
+
256
+ #: profile-builder-2.0/admin/manage-fields.php:150
257
+ msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
258
+ msgstr ""
259
+
260
+ #: profile-builder-2.0/admin/manage-fields.php:150
261
+ msgid "Eg. (###) ###-####"
262
+ msgstr ""
263
+
264
+ #: profile-builder-2.0/admin/manage-fields.php:150
265
+ msgid "Empty field won't check for correct phone number."
266
+ msgstr ""
267
+
268
+ #: profile-builder-2.0/admin/manage-fields.php:151
269
+ msgid "Heading Tag"
270
+ msgstr ""
271
+
272
+ #: profile-builder-2.0/admin/manage-fields.php:151
273
+ msgid "Change heading field size on front-end forms"
274
+ msgstr ""
275
+
276
+ #: profile-builder-2.0/admin/manage-fields.php:152
277
+ msgid "Min Number Value"
278
+ msgstr ""
279
+
280
+ #: profile-builder-2.0/admin/manage-fields.php:152
281
+ msgid "Min allowed number value (0 to allow only positive numbers)"
282
+ msgstr ""
283
+
284
+ #: profile-builder-2.0/admin/manage-fields.php:152
285
+ msgid "Leave it empty for no min value"
286
+ msgstr ""
287
+
288
+ #: profile-builder-2.0/admin/manage-fields.php:153
289
+ msgid "Max Number Value"
290
+ msgstr ""
291
+
292
+ #: profile-builder-2.0/admin/manage-fields.php:153
293
+ msgid "Max allowed number value (0 to allow only negative numbers)"
294
+ msgstr ""
295
+
296
+ #: profile-builder-2.0/admin/manage-fields.php:153
297
+ msgid "Leave it empty for no max value"
298
+ msgstr ""
299
+
300
+ #: profile-builder-2.0/admin/manage-fields.php:154
301
+ msgid "Number Step Value"
302
+ msgstr ""
303
+
304
+ #: profile-builder-2.0/admin/manage-fields.php:154
305
+ msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
306
+ msgstr ""
307
+
308
+ #: profile-builder-2.0/admin/manage-fields.php:154
309
+ msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
310
+ msgstr ""
311
+
312
+ #: profile-builder-2.0/admin/manage-fields.php:154
313
+ msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
314
+ msgstr ""
315
+
316
+ #: profile-builder-2.0/admin/manage-fields.php:154
317
+ msgid "Leave it empty for no restriction"
318
+ msgstr ""
319
+
320
+ #: profile-builder-2.0/admin/manage-fields.php:555
321
+ msgid "Albania Lek"
322
+ msgstr ""
323
+
324
+ #: profile-builder-2.0/admin/manage-fields.php:556
325
+ msgid "Afghanistan Afghani"
326
+ msgstr ""
327
+
328
+ #: profile-builder-2.0/admin/manage-fields.php:557
329
+ msgid "Argentina Peso"
330
+ msgstr ""
331
+
332
+ #: profile-builder-2.0/admin/manage-fields.php:558
333
+ msgid "Aruba Guilder"
334
+ msgstr ""
335
+
336
+ #: profile-builder-2.0/admin/manage-fields.php:559
337
+ msgid "Australia Dollar"
338
+ msgstr ""
339
+
340
+ #: profile-builder-2.0/admin/manage-fields.php:560
341
+ msgid "Azerbaijan New Manat"
342
+ msgstr ""
343
+
344
+ #: profile-builder-2.0/admin/manage-fields.php:561
345
+ msgid "Bahamas Dollar"
346
+ msgstr ""
347
+
348
+ #: profile-builder-2.0/admin/manage-fields.php:562
349
+ msgid "Barbados Dollar"
350
+ msgstr ""
351
+
352
+ #: profile-builder-2.0/admin/manage-fields.php:563
353
+ msgid "Bangladeshi taka"
354
+ msgstr ""
355
+
356
+ #: profile-builder-2.0/admin/manage-fields.php:564
357
+ msgid "Belarus Ruble"
358
+ msgstr ""
359
+
360
+ #: profile-builder-2.0/admin/manage-fields.php:565
361
+ msgid "Belize Dollar"
362
+ msgstr ""
363
+
364
+ #: profile-builder-2.0/admin/manage-fields.php:566
365
+ msgid "Bermuda Dollar"
366
+ msgstr ""
367
+
368
+ #: profile-builder-2.0/admin/manage-fields.php:567
369
+ msgid "Bolivia Boliviano"
370
+ msgstr ""
371
+
372
+ #: profile-builder-2.0/admin/manage-fields.php:568
373
+ msgid "Bosnia and Herzegovina Convertible Marka"
374
+ msgstr ""
375
+
376
+ #: profile-builder-2.0/admin/manage-fields.php:569
377
+ msgid "Botswana Pula"
378
+ msgstr ""
379
+
380
+ #: profile-builder-2.0/admin/manage-fields.php:570
381
+ msgid "Bulgaria Lev"
382
+ msgstr ""
383
+
384
+ #: profile-builder-2.0/admin/manage-fields.php:571
385
+ msgid "Brazil Real"
386
+ msgstr ""
387
+
388
+ #: profile-builder-2.0/admin/manage-fields.php:572
389
+ msgid "Brunei Darussalam Dollar"
390
+ msgstr ""
391
+
392
+ #: profile-builder-2.0/admin/manage-fields.php:573
393
+ msgid "Cambodia Riel"
394
+ msgstr ""
395
+
396
+ #: profile-builder-2.0/admin/manage-fields.php:574
397
+ msgid "Canada Dollar"
398
+ msgstr ""
399
+
400
+ #: profile-builder-2.0/admin/manage-fields.php:575
401
+ msgid "Cayman Islands Dollar"
402
+ msgstr ""
403
+
404
+ #: profile-builder-2.0/admin/manage-fields.php:576
405
+ msgid "Chile Peso"
406
+ msgstr ""
407
+
408
+ #: profile-builder-2.0/admin/manage-fields.php:577
409
+ msgid "China Yuan Renminbi"
410
+ msgstr ""
411
+
412
+ #: profile-builder-2.0/admin/manage-fields.php:578
413
+ msgid "Colombia Peso"
414
+ msgstr ""
415
+
416
+ #: profile-builder-2.0/admin/manage-fields.php:579
417
+ msgid "Costa Rica Colon"
418
+ msgstr ""
419
+
420
+ #: profile-builder-2.0/admin/manage-fields.php:580
421
+ msgid "Croatia Kuna"
422
+ msgstr ""
423
+
424
+ #: profile-builder-2.0/admin/manage-fields.php:581
425
+ msgid "Cuba Peso"
426
+ msgstr ""
427
+
428
+ #: profile-builder-2.0/admin/manage-fields.php:582
429
+ msgid "Czech Republic Koruna"
430
+ msgstr ""
431
+
432
+ #: profile-builder-2.0/admin/manage-fields.php:583
433
+ msgid "Denmark Krone"
434
+ msgstr ""
435
+
436
+ #: profile-builder-2.0/admin/manage-fields.php:584
437
+ msgid "Dominican Republic Peso"
438
+ msgstr ""
439
+
440
+ #: profile-builder-2.0/admin/manage-fields.php:585
441
+ msgid "East Caribbean Dollar"
442
+ msgstr ""
443
+
444
+ #: profile-builder-2.0/admin/manage-fields.php:586
445
+ msgid "Egypt Pound"
446
+ msgstr ""
447
+
448
+ #: profile-builder-2.0/admin/manage-fields.php:587
449
+ msgid "El Salvador Colon"
450
+ msgstr ""
451
+
452
+ #: profile-builder-2.0/admin/manage-fields.php:588
453
+ msgid "Estonia Kroon"
454
+ msgstr ""
455
+
456
+ #: profile-builder-2.0/admin/manage-fields.php:589
457
+ msgid "Euro"
458
+ msgstr ""
459
+
460
+ #: profile-builder-2.0/admin/manage-fields.php:590
461
+ msgid "Falkland Islands (Malvinas) Pound"
462
+ msgstr ""
463
+
464
+ #: profile-builder-2.0/admin/manage-fields.php:591
465
+ msgid "Fiji Dollar"
466
+ msgstr ""
467
+
468
+ #: profile-builder-2.0/admin/manage-fields.php:592
469
+ msgid "Ghana Cedis"
470
+ msgstr ""
471
+
472
+ #: profile-builder-2.0/admin/manage-fields.php:593
473
+ msgid "Gibraltar Pound"
474
+ msgstr ""
475
+
476
+ #: profile-builder-2.0/admin/manage-fields.php:594
477
+ msgid "Guatemala Quetzal"
478
+ msgstr ""
479
+
480
+ #: profile-builder-2.0/admin/manage-fields.php:595
481
+ msgid "Guernsey Pound"
482
+ msgstr ""
483
+
484
+ #: profile-builder-2.0/admin/manage-fields.php:596
485
+ msgid "Guyana Dollar"
486
+ msgstr ""
487
+
488
+ #: profile-builder-2.0/admin/manage-fields.php:597
489
+ msgid "Honduras Lempira"
490
+ msgstr ""
491
+
492
+ #: profile-builder-2.0/admin/manage-fields.php:598
493
+ msgid "Hong Kong Dollar"
494
+ msgstr ""
495
+
496
+ #: profile-builder-2.0/admin/manage-fields.php:599
497
+ msgid "Hungary Forint"
498
+ msgstr ""
499
+
500
+ #: profile-builder-2.0/admin/manage-fields.php:600
501
+ msgid "Iceland Krona"
502
+ msgstr ""
503
+
504
+ #: profile-builder-2.0/admin/manage-fields.php:601
505
+ msgid "India Rupee"
506
+ msgstr ""
507
+
508
+ #: profile-builder-2.0/admin/manage-fields.php:602
509
+ msgid "Indonesia Rupiah"
510
+ msgstr ""
511
+
512
+ #: profile-builder-2.0/admin/manage-fields.php:603
513
+ msgid "Iran Rial"
514
+ msgstr ""
515
+
516
+ #: profile-builder-2.0/admin/manage-fields.php:604
517
+ msgid "Isle of Man Pound"
518
+ msgstr ""
519
+
520
+ #: profile-builder-2.0/admin/manage-fields.php:605
521
+ msgid "Israel Shekel"
522
+ msgstr ""
523
+
524
+ #: profile-builder-2.0/admin/manage-fields.php:606
525
+ msgid "Jamaica Dollar"
526
+ msgstr ""
527
+
528
+ #: profile-builder-2.0/admin/manage-fields.php:607
529
+ msgid "Japan Yen"
530
+ msgstr ""
531
+
532
+ #: profile-builder-2.0/admin/manage-fields.php:608
533
+ msgid "Jersey Pound"
534
+ msgstr ""
535
+
536
+ #: profile-builder-2.0/admin/manage-fields.php:609
537
+ msgid "Kazakhstan Tenge"
538
+ msgstr ""
539
+
540
+ #: profile-builder-2.0/admin/manage-fields.php:610
541
+ msgid "Korea (North) Won"
542
+ msgstr ""
543
+
544
+ #: profile-builder-2.0/admin/manage-fields.php:611
545
+ msgid "Korea (South) Won"
546
+ msgstr ""
547
+
548
+ #: profile-builder-2.0/admin/manage-fields.php:612
549
+ msgid "Kyrgyzstan Som"
550
+ msgstr ""
551
+
552
+ #: profile-builder-2.0/admin/manage-fields.php:613
553
+ msgid "Laos Kip"
554
+ msgstr ""
555
+
556
+ #: profile-builder-2.0/admin/manage-fields.php:614
557
+ msgid "Latvia Lat"
558
+ msgstr ""
559
+
560
+ #: profile-builder-2.0/admin/manage-fields.php:615
561
+ msgid "Lebanon Pound"
562
+ msgstr ""
563
+
564
+ #: profile-builder-2.0/admin/manage-fields.php:616
565
+ msgid "Liberia Dollar"
566
+ msgstr ""
567
+
568
+ #: profile-builder-2.0/admin/manage-fields.php:617
569
+ msgid "Lithuania Litas"
570
+ msgstr ""
571
+
572
+ #: profile-builder-2.0/admin/manage-fields.php:618
573
+ msgid "Macedonia Denar"
574
+ msgstr ""
575
+
576
+ #: profile-builder-2.0/admin/manage-fields.php:619
577
+ msgid "Malaysia Ringgit"
578
+ msgstr ""
579
+
580
+ #: profile-builder-2.0/admin/manage-fields.php:620
581
+ msgid "Mauritius Rupee"
582
+ msgstr ""
583
+
584
+ #: profile-builder-2.0/admin/manage-fields.php:621
585
+ msgid "Mexico Peso"
586
+ msgstr ""
587
+
588
+ #: profile-builder-2.0/admin/manage-fields.php:622
589
+ msgid "Mongolia Tughrik"
590
+ msgstr ""
591
+
592
+ #: profile-builder-2.0/admin/manage-fields.php:623
593
+ msgid "Mozambique Metical"
594
+ msgstr ""
595
+
596
+ #: profile-builder-2.0/admin/manage-fields.php:624
597
+ msgid "Namibia Dollar"
598
+ msgstr ""
599
+
600
+ #: profile-builder-2.0/admin/manage-fields.php:625
601
+ msgid "Nepal Rupee"
602
+ msgstr ""
603
+
604
+ #: profile-builder-2.0/admin/manage-fields.php:626
605
+ msgid "Netherlands Antilles Guilder"
606
+ msgstr ""
607
+
608
+ #: profile-builder-2.0/admin/manage-fields.php:627
609
+ msgid "New Zealand Dollar"
610
+ msgstr ""
611
+
612
+ #: profile-builder-2.0/admin/manage-fields.php:628
613
+ msgid "Nicaragua Cordoba"
614
+ msgstr ""
615
+
616
+ #: profile-builder-2.0/admin/manage-fields.php:629
617
+ msgid "Nigeria Naira"
618
+ msgstr ""
619
+
620
+ #: profile-builder-2.0/admin/manage-fields.php:630
621
+ msgid "Norway Krone"
622
+ msgstr ""
623
+
624
+ #: profile-builder-2.0/admin/manage-fields.php:631
625
+ msgid "Oman Rial"
626
+ msgstr ""
627
+
628
+ #: profile-builder-2.0/admin/manage-fields.php:632
629
+ msgid "Pakistan Rupee"
630
+ msgstr ""
631
+
632
+ #: profile-builder-2.0/admin/manage-fields.php:633
633
+ msgid "Panama Balboa"
634
+ msgstr ""
635
+
636
+ #: profile-builder-2.0/admin/manage-fields.php:634
637
+ msgid "Paraguay Guarani"
638
+ msgstr ""
639
+
640
+ #: profile-builder-2.0/admin/manage-fields.php:635
641
+ msgid "Peru Nuevo Sol"
642
+ msgstr ""
643
+
644
+ #: profile-builder-2.0/admin/manage-fields.php:636
645
+ msgid "Philippines Peso"
646
+ msgstr ""
647
+
648
+ #: profile-builder-2.0/admin/manage-fields.php:637
649
+ msgid "Poland Zloty"
650
+ msgstr ""
651
+
652
+ #: profile-builder-2.0/admin/manage-fields.php:638
653
+ msgid "Qatar Riyal"
654
+ msgstr ""
655
+
656
+ #: profile-builder-2.0/admin/manage-fields.php:639
657
+ msgid "Romania New Leu"
658
+ msgstr ""
659
+
660
+ #: profile-builder-2.0/admin/manage-fields.php:640
661
+ msgid "Russia Ruble"
662
+ msgstr ""
663
+
664
+ #: profile-builder-2.0/admin/manage-fields.php:641
665
+ msgid "Saint Helena Pound"
666
+ msgstr ""
667
+
668
+ #: profile-builder-2.0/admin/manage-fields.php:642
669
+ msgid "Saudi Arabia Riyal"
670
+ msgstr ""
671
+
672
+ #: profile-builder-2.0/admin/manage-fields.php:643
673
+ msgid "Serbia Dinar"
674
+ msgstr ""
675
+
676
+ #: profile-builder-2.0/admin/manage-fields.php:644
677
+ msgid "Seychelles Rupee"
678
+ msgstr ""
679
+
680
+ #: profile-builder-2.0/admin/manage-fields.php:645
681
+ msgid "Singapore Dollar"
682
+ msgstr ""
683
+
684
+ #: profile-builder-2.0/admin/manage-fields.php:646
685
+ msgid "Solomon Islands Dollar"
686
+ msgstr ""
687
+
688
+ #: profile-builder-2.0/admin/manage-fields.php:647
689
+ msgid "Somalia Shilling"
690
+ msgstr ""
691
+
692
+ #: profile-builder-2.0/admin/manage-fields.php:648
693
+ msgid "South Africa Rand"
694
+ msgstr ""
695
+
696
+ #: profile-builder-2.0/admin/manage-fields.php:649
697
+ msgid "Sri Lanka Rupee"
698
+ msgstr ""
699
+
700
+ #: profile-builder-2.0/admin/manage-fields.php:650
701
+ msgid "Sweden Krona"
702
+ msgstr ""
703
+
704
+ #: profile-builder-2.0/admin/manage-fields.php:651
705
+ msgid "Switzerland Franc"
706
+ msgstr ""
707
+
708
+ #: profile-builder-2.0/admin/manage-fields.php:652
709
+ msgid "Suriname Dollar"
710
+ msgstr ""
711
+
712
+ #: profile-builder-2.0/admin/manage-fields.php:653
713
+ msgid "Syria Pound"
714
+ msgstr ""
715
+
716
+ #: profile-builder-2.0/admin/manage-fields.php:654
717
+ msgid "Taiwan New Dollar"
718
+ msgstr ""
719
+
720
+ #: profile-builder-2.0/admin/manage-fields.php:655
721
+ msgid "Thailand Baht"
722
+ msgstr ""
723
+
724
+ #: profile-builder-2.0/admin/manage-fields.php:656
725
+ msgid "Trinidad and Tobago Dollar"
726
+ msgstr ""
727
+
728
+ #: profile-builder-2.0/admin/manage-fields.php:657
729
+ #: profile-builder-2.0/admin/manage-fields.php:658
730
+ msgid "Turkey Lira"
731
+ msgstr ""
732
+
733
+ #: profile-builder-2.0/admin/manage-fields.php:659
734
+ msgid "Tuvalu Dollar"
735
+ msgstr ""
736
+
737
+ #: profile-builder-2.0/admin/manage-fields.php:660
738
+ msgid "Ukraine Hryvna"
739
+ msgstr ""
740
+
741
+ #: profile-builder-2.0/admin/manage-fields.php:661
742
+ msgid "United Kingdom Pound"
743
+ msgstr ""
744
+
745
+ #: profile-builder-2.0/admin/manage-fields.php:662
746
+ msgid "Uganda Shilling"
747
+ msgstr ""
748
+
749
+ #: profile-builder-2.0/admin/manage-fields.php:663
750
+ msgid "US Dollar"
751
+ msgstr ""
752
+
753
+ #: profile-builder-2.0/admin/manage-fields.php:664
754
+ msgid "Uruguay Peso"
755
+ msgstr ""
756
+
757
+ #: profile-builder-2.0/admin/manage-fields.php:665
758
+ msgid "Uzbekistan Som"
759
+ msgstr ""
760
+
761
+ #: profile-builder-2.0/admin/manage-fields.php:666
762
+ msgid "Venezuela Bolivar"
763
+ msgstr ""
764
+
765
+ #: profile-builder-2.0/admin/manage-fields.php:667
766
+ msgid "Viet Nam Dong"
767
+ msgstr ""
768
+
769
+ #: profile-builder-2.0/admin/manage-fields.php:668
770
+ msgid "Yemen Rial"
771
+ msgstr ""
772
+
773
+ #: profile-builder-2.0/admin/manage-fields.php:669
774
+ msgid "Zimbabwe Dollar"
775
+ msgstr ""
776
+
777
+ #: profile-builder-2.0/admin/manage-fields.php:1080
778
+ msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
779
+ msgstr ""
780
+
781
+ #: profile-builder-2.0/admin/manage-fields.php:1296
782
+ msgid "Search Location"
783
+ msgstr ""
784
+
785
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
786
+ msgid "You are not allowed to do this."
787
+ msgstr ""
788
+
789
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
790
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
791
+ msgid "Search Users"
792
+ msgstr ""
793
+
794
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
795
+ msgid "Conditional Logic"
796
+ msgstr ""
797
+
798
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
799
+ msgid "Conditional Rules"
800
+ msgstr ""
801
+
802
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:432
803
+ msgid "This field has conditional logic enabled."
804
+ msgstr ""
805
+
806
+ #: profile-builder-2.0/features/functions.php:712
807
+ msgid "Incorrect phone number"
808
+ msgstr ""
809
+
810
+ #: profile-builder-2.0/front-end/class-formbuilder.php:120
811
+ msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
812
+ msgstr ""
813
+
814
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
815
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
816
+ msgid "Please add the Google Maps API key for this field."
817
+ msgstr ""
818
+
819
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
820
+ msgid "Something went wrong. Please try again."
821
+ msgstr ""
822
+
823
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
824
+ msgid "Please enter numbers only"
825
+ msgstr ""
826
+
827
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
828
+ msgid "Value must be a multiplier of %1$s"
829
+ msgstr ""
830
+
831
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
832
+ msgid "Value must be greater than or equal to %1$s"
833
+ msgstr ""
834
+
835
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
836
+ msgid "Value must be less than or equal to %1$s"
837
+ msgstr ""
838
+
839
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
840
+ msgid "Required phone number format: "
841
+ msgstr ""
842
+
843
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
844
+ msgid "Bolivia, __( Plurinational State of"
845
+ msgstr ""
846
+
847
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
848
+ msgid "Bonaire, __( Sint Eustatius and Saba"
849
+ msgstr ""
850
+
851
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
852
+ msgid "Brunei Darussalam"
853
+ msgstr ""
854
+
855
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
856
+ msgid "Cabo Verde"
857
+ msgstr ""
858
+
859
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
860
+ msgid "Cocos (Keeling) Islands"
861
+ msgstr ""
862
+
863
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
864
+ msgid "Congo"
865
+ msgstr ""
866
+
867
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
868
+ msgid "Congo, __( the Democratic Republic of the"
869
+ msgstr ""
870
+
871
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
872
+ msgid "Cote dIvoire"
873
+ msgstr ""
874
+
875
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
876
+ msgid "Falkland Islands (Malvinas)"
877
+ msgstr ""
878
+
879
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
880
+ msgid "Holy See (Vatican City State)"
881
+ msgstr ""
882
+
883
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
884
+ msgid "Iran, __( Islamic Republic of"
885
+ msgstr ""
886
+
887
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
888
+ msgid "Korea, __( Democratic Peoples Republic of"
889
+ msgstr ""
890
+
891
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
892
+ msgid "Korea, __( Republic of"
893
+ msgstr ""
894
+
895
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
896
+ msgid "Lao Peoples Democratic Republic"
897
+ msgstr ""
898
+
899
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
900
+ msgid "Macedonia, __( the former Yugoslav Republic of"
901
+ msgstr ""
902
+
903
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
904
+ msgid "Micronesia, __( Federated States of"
905
+ msgstr ""
906
+
907
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
908
+ msgid "Moldova, __( Republic of"
909
+ msgstr ""
910
+
911
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
912
+ msgid "Palestine, __( State of"
913
+ msgstr ""
914
+
915
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
916
+ msgid "Russian Federation"
917
+ msgstr ""
918
+
919
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
920
+ msgid "Saint Helena, __( Ascension and Tristan da Cunha"
921
+ msgstr ""
922
+
923
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
924
+ msgid "Saint Martin (French part)"
925
+ msgstr ""
926
+
927
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
928
+ msgid "Sint Maarten (Dutch part)"
929
+ msgstr ""
930
+
931
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
932
+ msgid "Syrian Arab Republic"
933
+ msgstr ""
934
+
935
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
936
+ msgid "Taiwan, __( Province of China"
937
+ msgstr ""
938
+
939
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
940
+ msgid "Tanzania, __( United Republic of"
941
+ msgstr ""
942
+
943
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
944
+ msgid "Timor-Leste"
945
+ msgstr ""
946
+
947
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
948
+ msgid "Venezuela, __( Bolivarian Republic of"
949
+ msgstr ""
950
+
951
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
952
+ msgid "Viet Nam"
953
+ msgstr ""
954
+
955
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
956
+ msgid "Virgin Islands, __( British"
957
+ msgstr ""
958
+
959
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
960
+ msgid "Virgin Islands, __( U.S."
961
+ msgstr ""
962
+
963
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
964
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:179
965
+ msgid "User Fields Tags"
966
+ msgstr ""
967
+
968
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:462
969
+ msgid "The users selected password at signup"
970
+ msgstr ""
971
+
972
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
973
+ msgid "[{{site_name}}] Notice of Email Change"
974
+ msgstr ""
975
+
976
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
977
+ msgid "Changed Email Address Notification"
978
+ msgstr ""
979
+
980
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
981
+ msgid "Limit"
982
+ msgstr ""
983
+
984
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
985
+ msgid "Enable limit to the number of fields to be generated by users in front end forms "
986
+ msgstr ""
987
+
988
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
989
+ msgid "General Limit"
990
+ msgstr ""
991
+
992
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
993
+ msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
994
+ msgstr ""
995
+
996
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
997
+ msgid "Limit reached message"
998
+ msgstr ""
999
+
1000
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1001
+ msgid "The maximum number of fields has been reached."
1002
+ msgstr ""
1003
+
1004
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1005
+ msgid "The popup message to display when the limit of repeater groups is reached."
1006
+ msgstr ""
1007
+
1008
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1009
+ msgid "Limit per Role"
1010
+ msgstr ""
1011
+
1012
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1013
+ msgid "Leave 0 for unlimited."
1014
+ msgstr ""
1015
+
1016
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1017
+ msgid "Repeated field group"
1018
+ msgstr ""
1019
+
1020
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1021
+ msgid "Manage field or group of fields that will be repeatable."
1022
+ msgstr ""
1023
+
1024
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:258
1025
+ msgid "Edit field group"
1026
+ msgstr ""
1027
+
1028
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1029
+ msgid "Repeatable fields saved!"
1030
+ msgstr ""
1031
+
1032
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:276
1033
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:325
1034
+ msgid "Please enter a unique field title.\n"
1035
+ msgstr ""
1036
+
1037
+ #: profile-builder-2.0/modules/repeater-field/repeater-field.php:258
1038
+ msgid "Are you sure you want to delete this?"
1039
+ msgstr ""
1040
+
1041
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:185
1042
+ msgid "Sort Tags"
1043
+ msgstr ""
1044
+
1045
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:193
1046
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2178
1047
+ msgid "Faceted Menus"
1048
+ msgstr ""
1049
+
1050
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:194
1051
+ msgid "User Count"
1052
+ msgstr ""
1053
+
1054
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1495
1055
+ msgid "Show All"
1056
+ msgstr ""
1057
+
1058
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1538
1059
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1560
1060
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1613
1061
+ msgid "No options available"
1062
+ msgstr ""
1063
+
1064
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1753
1065
+ msgid "Remove All Filters"
1066
+ msgstr ""
1067
+
1068
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1069
+ msgid "Label"
1070
+ msgstr ""
1071
+
1072
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1073
+ msgid "Choose the facet name that appears on the frontend"
1074
+ msgstr ""
1075
+
1076
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1077
+ msgid "Facet Type"
1078
+ msgstr ""
1079
+
1080
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1081
+ msgid "Choose the facet menu type"
1082
+ msgstr ""
1083
+
1084
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1085
+ msgid "Facet Meta"
1086
+ msgstr ""
1087
+
1088
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1089
+ msgid "Choose the meta field for the facet menu"
1090
+ msgstr ""
1091
+
1092
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1093
+ msgid "Behaviour"
1094
+ msgstr ""
1095
+
1096
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1097
+ msgid "Narrow the results"
1098
+ msgstr ""
1099
+
1100
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1101
+ msgid "Expand the results"
1102
+ msgstr ""
1103
+
1104
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1105
+ msgid "Choose how multiple selections affect the results"
1106
+ msgstr ""
1107
+
1108
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1109
+ msgid "Visible choices"
1110
+ msgstr ""
1111
+
1112
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1113
+ msgid "Show a toggle link after this many choices. Leave blank for all"
1114
+ msgstr ""
1115
+
1116
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1117
+ msgid "Search Fields"
1118
+ msgstr ""
1119
+
1120
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1121
+ msgid "Choose the fields in which the Search Field will look in"
1122
+ msgstr ""
1123
+
1124
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2200
1125
+ msgid "Search Settings"
1126
+ msgstr ""
1127
+
1128
+ #: pb-add-on-woocommerce/billing-fields.php:8
1129
+ #: pb-add-on-woocommerce/shipping-fields.php:8
1130
+ msgid "Company Name"
1131
+ msgstr "Firmenname"
1132
+
1133
+ #: pb-add-on-woocommerce/billing-fields.php:9
1134
+ #: pb-add-on-woocommerce/shipping-fields.php:9
1135
+ msgid "Address"
1136
+ msgstr "Adresse"
1137
+
1138
+ #: pb-add-on-woocommerce/billing-fields.php:5
1139
+ #: pb-add-on-woocommerce/shipping-fields.php:5
1140
+ msgid "Country"
1141
+ msgstr "Staat"
1142
+
1143
+ #: pb-add-on-woocommerce/billing-fields.php:11
1144
+ #: pb-add-on-woocommerce/shipping-fields.php:11
1145
+ msgid "Town / City"
1146
+ msgstr "Ort"
1147
+
1148
+ #: pb-add-on-woocommerce/billing-fields.php:12
1149
+ #: pb-add-on-woocommerce/shipping-fields.php:12
1150
+ msgid "State / County"
1151
+ msgstr "Bundesland"
1152
+
1153
+ #: pb-add-on-woocommerce/billing-fields.php:13
1154
+ #: pb-add-on-woocommerce/shipping-fields.php:13
1155
+ msgid "Postcode / Zip"
1156
+ msgstr "PLZ"
1157
+
1158
+ #: pb-add-on-woocommerce/billing-fields.php:14
1159
+ msgid "Email Address"
1160
+ msgstr "E-Mail Adresse"
1161
+
1162
+ #: pb-add-on-woocommerce/billing-fields.php:15
1163
+ msgid "Phone"
1164
+ msgstr "Telefon"
1165
+
1166
+ #: pb-add-on-woocommerce/billing-fields.php:278
1167
+ msgid "Ship to a different address?"
1168
+ msgstr "An andere Adresse liefern?"
1169
+
1170
+ #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1171
+ msgid "Billing Address"
1172
+ msgstr "Rechnungsadresse"
1173
+
1174
+ #: pb-add-on-woocommerce/index.php:169
1175
+ msgid "Displays customer billing fields in front-end. "
1176
+ msgstr "Zeigt die Bezahldaten des Kunden auf der Seite an."
1177
+
1178
+ #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1179
+ msgid "Shipping Address"
1180
+ msgstr "Lieferadresse"
1181
+
1182
+ #: pb-add-on-woocommerce/index.php:173
1183
+ msgid "Displays customer shipping fields in front-end. "
1184
+ msgstr "Zeigt die Lieferadresse des Kunden auf der Seite an."
1185
+
1186
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1187
+ msgid "Display on WooCommerce Checkout"
1188
+ msgstr "Im WooCommerce Bestellprozess anzeigen"
1189
+
1190
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1191
+ msgid "Whether the field should be added to the WooCommerce checkout form or not"
1192
+ msgstr "Ob das Feld zum WooCommerce Checkout hinzugefügt werden soll oder nicht"
1193
+
1194
+ #: pb-add-on-woocommerce/index.php:541
1195
+ msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1196
+ msgstr "Für das Profile Builder - WooCommerce Sync Add-on muss WooCommerce installiert und aktiviert sein!"
1197
+
1198
+ #: pb-add-on-woocommerce/woosync-page.php:23
1199
+ #: pb-add-on-woocommerce/woosync-page.php:70
1200
+ msgid "WooCommerce Sync"
1201
+ msgstr "WooCommerce Synchronisierung"
1202
+
1203
+ #: pb-add-on-woocommerce/woosync-page.php:76
1204
+ msgid "Choose Register form to display on My Account page:"
1205
+ msgstr "Wählen Sie das Registrierungsformular, welches im Kundenkonto (My Account) angezeigt werden soll:"
1206
+
1207
+ #: pb-add-on-woocommerce/woosync-page.php:81
1208
+ msgid "Default Register"
1209
+ msgstr "Standard Registrierungsformular"
1210
+
1211
+ #: pb-add-on-woocommerce/woosync-page.php:103
1212
+ msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1213
+ msgstr "Wählen Sie das Registrierungsformular, welches im Kundenkonto (My Account) angezeigt werden soll.<br/> Dadurch wird auch das Profile Builder Loginformular im Kundenkonto angezeigt."
1214
+
1215
+ #: pb-add-on-woocommerce/woosync-page.php:110
1216
+ msgid "Choose Edit Profile form to display on My Account page:"
1217
+ msgstr "Wählen Sie das \"Profil editieren\"-Formular, welches im Kundenkonto (My Account) angezeigt werden soll:"
1218
+
1219
+ #: pb-add-on-woocommerce/woosync-page.php:115
1220
+ msgid "Default Edit Profile"
1221
+ msgstr "Standard \"Profil editieren\"-Formular"
1222
+
1223
+ #: pb-add-on-woocommerce/woosync-page.php:137
1224
+ msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1225
+ msgstr "Wählen Sie das \"Profil editieren\"-Formular aus Profile Builder, welches im Kundenkonto (My Account) von WooCommerce angezeigt werden soll:"
1226
+
1227
+ #: profile-builder-2.0/admin/add-ons.php:190
1228
+ msgid "Recommended Plugins"
1229
+ msgstr "Empfohlene Erweiterungen"
1230
+
1231
+ #: profile-builder-2.0/admin/add-ons.php:219
1232
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1233
+ msgid "Free"
1234
+ msgstr "Kostenlos"
1235
+
1236
+ #: profile-builder-2.0/admin/add-ons.php:221
1237
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1238
+ msgstr "Bezahlvorgänge, Abonnements und Inhaltsbeschränkungen für Ihre Mitgliedsseite."
1239
+
1240
+ #: profile-builder-2.0/admin/add-ons.php:222
1241
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1242
+ msgid "More Details"
1243
+ msgstr "Weitere Details"
1244
+
1245
+ #: profile-builder-2.0/admin/add-ons.php:240
1246
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1247
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1248
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1249
+ msgid "Plugin is <strong>inactive</strong>"
1250
+ msgstr "Die Erweiterung ist <strong>inaktiv</strong>"
1251
+
1252
+ #: profile-builder-2.0/admin/add-ons.php:242
1253
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1254
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1255
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1256
+ msgid "Plugin is <strong>active</strong>"
1257
+ msgstr "Die Erweiterung ist <strong>aktiv</strong>"
1258
+
1259
+ #: profile-builder-2.0/admin/add-ons.php:256
1260
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1261
+ msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1262
+ msgstr "Die Erweiterung konnte nicht installiert werden. Versuchen Sie es noch einmal oder <a href=\"%s\" target=\"_blank\">installieren Sie die Erweiterung manuell</a>."
1263
+
1264
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1265
+ msgid "Paid Accounts"
1266
+ msgstr "Paid Accounts"
1267
+
1268
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1269
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1270
+ msgstr "Paid Member Subscriptions - eine kostenloses WordPress Erweiterung"
1271
+
1272
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1273
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1274
+ msgstr ""
1275
+
1276
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1277
+ msgid "Paid & Free Subscriptions"
1278
+ msgstr "Paid & Free Subscriptions"
1279
+
1280
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1281
+ msgid "Restrict Content"
1282
+ msgstr "Restrict Content"
1283
+
1284
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1285
+ msgid "Member Management"
1286
+ msgstr "Member Management"
1287
+
1288
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1289
+ msgid "Email Templates"
1290
+ msgstr "Emailvorlagen"
1291
+
1292
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1293
+ msgid "Account Management"
1294
+ msgstr "Account Management"
1295
+
1296
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1297
+ msgid "Subscription Management"
1298
+ msgstr "Subscription Management"
1299
+
1300
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1301
+ msgid "Payment Management"
1302
+ msgstr "Payment Management"
1303
+
1304
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1305
+ msgid "Plugin is Active"
1306
+ msgstr "Erweiterung aktiv"
1307
+
1308
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1309
+ msgid "Plugin has been activated"
1310
+ msgstr "Die Erweiterung wurde aktiviert."
1311
+
1312
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1313
+ msgid "Plugin has been deactivated."
1314
+ msgstr "Die Erweiterung wurde deaktiviert."
1315
+
1316
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1317
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1318
+ msgstr "Aktzeptiere Benutzerzahlungen, erstelle Abonnement-Pläne und schränke den Inhalt deiner Webseite ein."
1319
+
1320
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1321
+ msgid "Step by Step Quick Setup"
1322
+ msgstr "Schnelle Schritt für Schritt Einrichtung"
1323
+
1324
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:392
1325
+ 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."
1326
+ msgstr "Klicken Sie bitte hier, um Ihr Benutzerkonto zu aktivieren:<br><br>%s%s%s<br><br>Im Anschluss erhalten Sie eine weitere Email mit Ihren Logindaten."
1327
+
1328
+ #: profile-builder-2.0/front-end/register.php:133
1329
+ msgid "You will soon be redirected automatically."
1330
+ msgstr "Sie werden in Kürze automatisch weitergeleitet."
1331
+
1332
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1333
+ msgid "After Login"
1334
+ msgstr "Nach dem Login"
1335
+
1336
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1337
+ msgid "After Logout"
1338
+ msgstr "Nach dem Logout"
1339
+
1340
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1341
+ msgid "After Registration"
1342
+ msgstr "Nach der Registrierung"
1343
+
1344
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1345
+ msgid "After Edit Profile"
1346
+ msgstr "Nach dem Editieren eines Profils"
1347
+
1348
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1349
+ msgid "After Successful Email Confirmation"
1350
+ msgstr "Nach erfolgreicher Emailbestätigung"
1351
+
1352
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1353
+ msgid "After Successful Password Reset"
1354
+ msgstr "Nach erfolgreichem Zurücksetzen des Passworts"
1355
+
1356
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1357
+ msgid "Dashboard (redirect users from accessing the dashboard)"
1358
+ msgstr "Übersichtsseite (leitet Benutzer weiter, wenn sie auf diese Seite wollen)"
1359
+
1360
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1361
+ msgid "User ID"
1362
+ msgstr "Benutzer ID"
1363
+
1364
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1365
+ msgid "User ID or Username"
1366
+ msgstr "Benutzer ID oder Benutzername"
1367
+
1368
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1369
+ msgid "User ID / Username"
1370
+ msgstr "Benutzer ID / Benutzername"
1371
+
1372
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1373
+ msgid "Please select and enter the ID or username of your user."
1374
+ msgstr "Bitte geben Sie Ihre Benutzer ID oder Ihren Benutzernamen an."
1375
+
1376
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1377
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1378
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1379
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1380
+ msgid "Redirect Type"
1381
+ msgstr "Umleitungy Typ"
1382
+
1383
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1384
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1385
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1386
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1387
+ msgid "Redirect URL"
1388
+ msgstr "Umleitungs URL"
1389
+
1390
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1391
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1392
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1393
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1394
+ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1395
+ msgstr "Kann folgende dynamische Tags enthalten: {{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1396
+
1397
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1398
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
1399
+ msgid "Individual User Redirects"
1400
+ msgstr "Individuelle Benutzer-Weiterleitungen"
1401
+
1402
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1403
+ msgid "... Choose"
1404
+ msgstr "... Auswählen"
1405
+
1406
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1407
+ msgid "Select a user role."
1408
+ msgstr "Wähle eine Benutzerrolle aus."
1409
+
1410
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1411
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1412
+ msgid "User Role based Redirects"
1413
+ msgstr "Benutzerrollen basierte Weiterleitungen"
1414
+
1415
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1416
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1417
+ msgid "Global Redirects"
1418
+ msgstr "Globale Weiterleitungen"
1419
+
1420
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1421
+ msgid "Login ( wp_login.php )"
1422
+ msgstr "Login ( wp_login.php )"
1423
+
1424
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1425
+ msgid "Register ( wp-login.php?action=register )"
1426
+ msgstr "Registrierung ( wp-login.php?action=register )"
1427
+
1428
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1429
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
1430
+ msgstr "Passwort vergessen ( wp-login.php?action=lostpassword )"
1431
+
1432
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1433
+ msgid "Author Archive ( http://sitename.com/author/admin )"
1434
+ msgstr "Autoren Archiv ( http://seitenname.com/autor/admin )"
1435
+
1436
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1437
+ msgid "Redirect Default WordPress Forms and Pages"
1438
+ msgstr "Standard WordPress Formulare und Seiten umleiten"
1439
+
1440
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1441
+ msgid "How does this work?"
1442
+ msgstr "Wie funktioniert das?"
1443
+
1444
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1445
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1446
+ msgstr "<pre>Benutzer ID / Benutzername </pre><pre>Weiterleitung</pre><pre>URL</pre>"
1447
+
1448
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1449
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1450
+ msgstr "<pre>Benutzer-Rolle</pre><pre>Weiterleitung</pre><pre>URL</pre>"
1451
+
1452
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1453
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1454
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
1455
+ msgstr "<pre>Umleitung</pre><pre>URL</pre>"
1456
+
1457
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1458
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1459
+ msgstr "Die Weiterleitungen werden nach einer erfolgreichen Aktion ausgelöst, wie z.B. einer Registrierung oder einem Login."
1460
+
1461
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1462
+ msgid "Which redirect happens depends on the following priority:"
1463
+ msgstr "Welche Weiterleitung greift kommt auf die folgende Priorität an:"
1464
+
1465
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1466
+ 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)"
1467
+ msgstr "Individuelle Weiterleitungen, welche in Shortcodes oder in den Formular-Einstellungen für \"Mehrfach-Registrierung\" bzw. \"Profil editieren\" definiert sind. Der <strong><em>redirect_priority=\"top\"</em></strong> Parameter kann bei jedem Shortcode hinzugefügt werden. Dieser hat dann stets die höchste Priorität."
1468
+
1469
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:246
1470
+ msgid "Redirect Default WordPress forms and pages"
1471
+ msgstr "Standard WordPress Formulare und Seiten umleiten"
1472
+
1473
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1474
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1475
+ msgstr "Damit können Sie verschiedene WordPress Formulare und Seiten zu den Profile Builder Äquivalenten umleiten."
1476
+
1477
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:249
1478
+ msgid "Available tags for dynamic URLs"
1479
+ msgstr "Verfügbare Tags für dynamische URLs"
1480
+
1481
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1482
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1483
+ msgstr "Sie nutzen folgende Tags in Ihren Umleitungs-URLs."
1484
+
1485
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:252
1486
+ msgid "generates a url of the current website homepage."
1487
+ msgstr "Generiert eine URL der Startseite."
1488
+
1489
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1490
+ 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"
1491
+ msgstr "in WordPress kann die <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>Seiten URL</a> von der Startseiten URL abweichen."
1492
+
1493
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1494
+ msgid "the ID of the user"
1495
+ msgstr "die ID des Benutzers"
1496
+
1497
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1498
+ 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."
1499
+ msgstr "Die saubere URL version des Benutzernamens, der Benutzer \"nicename\" kann in URLs sicher verwendet werden, da er keine Spezialzeichen oder Leerschläge beinhalten kann."
1500
+
1501
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1502
+ msgid "the URL of the previously visited page"
1503
+ msgstr "die URL der vorherigen besuchten Seite"
1504
+
1505
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:339
1506
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:345
1507
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:351
1508
+ msgid "You can't add duplicate redirects!"
1509
+ msgstr "Sie können keine doppelten Weiterleitungen anlegen!"
1510
+
1511
+ #: profile-builder-2.0/admin/admin-functions.php:40
1512
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
1513
+ msgstr "Den Namen öffentlich anzeigen - erscheint nur auf der Edit Profile Seite!"
1514
+
1515
+ #: profile-builder-2.0/admin/basic-info.php:37
1516
+ msgid "Friction-less login using %s shortcode or a widget."
1517
+ msgstr "Reibungsloser Login indem man %s oder ein Widget benutzt."
1518
+
1519
+ #: profile-builder-2.0/admin/basic-info.php:41
1520
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
1521
+ msgstr "Wunderschöne und voll anpassbare Registrierformulare mit der Nutzung von %s Shortcode."
1522
+
1523
+ #: profile-builder-2.0/admin/basic-info.php:45
1524
+ msgid "Straight forward edit profile forms using %s shortcode."
1525
+ msgstr ""
1526
+
1527
+ #: profile-builder-2.0/admin/basic-info.php:58
1528
+ msgid "Allow users to recover their password in the front-end using the %s."
1529
+ msgstr "Ermöglicht dem User, sein Passwort im Front-End-Bereich unter Anwendung von %s wiederherzustellen"
1530
+
1531
+ #: profile-builder-2.0/admin/basic-info.php:140
1532
+ 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."
1533
+ msgstr ""
1534
+
1535
+ #: profile-builder-2.0/admin/general-settings.php:118
1536
+ msgid "\"Admin Approval\" on User Role:"
1537
+ msgstr "\"Genehmigung durch Admin\" auf Benutzer-Rolle:"
1538
+
1539
+ #: profile-builder-2.0/admin/general-settings.php:137
1540
+ msgid "Select on what user roles to activate Admin Approval."
1541
+ msgstr "Benutzer-Rollen auswählen, welche durch einen Admin genehmigt werden sollen."
1542
+
1543
+ #: profile-builder-2.0/admin/manage-fields.php:128
1544
+ msgid "Display on PB forms"
1545
+ msgstr "Zeige auf PB Formularen"
1546
+
1547
+ #: profile-builder-2.0/admin/manage-fields.php:128
1548
+ msgid "PB Login"
1549
+ msgstr "PB Login"
1550
+
1551
+ #: profile-builder-2.0/admin/manage-fields.php:128
1552
+ msgid "PB Register"
1553
+ msgstr "PB Registrierung"
1554
+
1555
+ #: profile-builder-2.0/admin/manage-fields.php:128
1556
+ msgid "PB Recover Password"
1557
+ msgstr "PB Passwort wiederherstellen"
1558
+
1559
+ #: profile-builder-2.0/admin/manage-fields.php:128
1560
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
1561
+ msgstr "Auswählen auf welchen Profile Builder Formularen reCSelect on which Profile Builder forms reCAPTCHA angezeigt werden soll."
1562
+
1563
+ #: profile-builder-2.0/admin/manage-fields.php:129
1564
+ msgid "Display on default WP forms"
1565
+ msgstr "Zeige auf standardmäßigen WP Formularen"
1566
+
1567
+ #: profile-builder-2.0/admin/manage-fields.php:129
1568
+ msgid "Default WP Login"
1569
+ msgstr "Standardmäßige WP Anmeldung"
1570
+
1571
+ #: profile-builder-2.0/admin/manage-fields.php:129
1572
+ msgid "Default WP Register"
1573
+ msgstr "Standardmäßiges WP Register"
1574
+
1575
+ #: profile-builder-2.0/admin/manage-fields.php:129
1576
+ msgid "Default WP Recover Password"
1577
+ msgstr "Standard WordPress \"Passwort wiederherstellen\""
1578
+
1579
+ #: profile-builder-2.0/admin/manage-fields.php:129
1580
+ msgid "Select on which default WP forms to display reCAPTCHA"
1581
+ msgstr "Wählen Sie die Standard WordPress Formulare, auf denen ein reCAPTCHA angezeigt werden soll"
1582
+
1583
+ #: profile-builder-2.0/admin/manage-fields.php:135
1584
+ #: profile-builder-2.0/admin/manage-fields.php:136
1585
+ #: profile-builder-2.0/admin/manage-fields.php:137
1586
+ msgid "Default option of the field"
1587
+ msgstr "Voreinstellung des Felds"
1588
+
1589
+ #: profile-builder-2.0/admin/manage-fields.php:273
1590
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1591
+ msgid "Afghanistan"
1592
+ msgstr "Afghanistan"
1593
+
1594
+ #: profile-builder-2.0/admin/manage-fields.php:274
1595
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1596
+ msgid "Aland Islands"
1597
+ msgstr "Aland Islands"
1598
+
1599
+ #: profile-builder-2.0/admin/manage-fields.php:275
1600
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1601
+ msgid "Albania"
1602
+ msgstr "Albania"
1603
+
1604
+ #: profile-builder-2.0/admin/manage-fields.php:276
1605
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1606
+ msgid "Algeria"
1607
+ msgstr "Algeria"
1608
+
1609
+ #: profile-builder-2.0/admin/manage-fields.php:277
1610
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1611
+ msgid "American Samoa"
1612
+ msgstr "American Samoa"
1613
+
1614
+ #: profile-builder-2.0/admin/manage-fields.php:278
1615
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1616
+ msgid "Andorra"
1617
+ msgstr "Andorra"
1618
+
1619
+ #: profile-builder-2.0/admin/manage-fields.php:279
1620
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1621
+ msgid "Angola"
1622
+ msgstr "Angola"
1623
+
1624
+ #: profile-builder-2.0/admin/manage-fields.php:280
1625
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1626
+ msgid "Anguilla"
1627
+ msgstr "Anguilla"
1628
+
1629
+ #: profile-builder-2.0/admin/manage-fields.php:281
1630
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1631
+ msgid "Antarctica"
1632
+ msgstr "Antarctica"
1633
+
1634
+ #: profile-builder-2.0/admin/manage-fields.php:282
1635
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1636
+ msgid "Antigua and Barbuda"
1637
+ msgstr "Antigua and Barbuda"
1638
+
1639
+ #: profile-builder-2.0/admin/manage-fields.php:283
1640
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1641
+ msgid "Argentina"
1642
+ msgstr "Argentina"
1643
+
1644
+ #: profile-builder-2.0/admin/manage-fields.php:284
1645
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1646
+ msgid "Armenia"
1647
+ msgstr "Armenia"
1648
+
1649
+ #: profile-builder-2.0/admin/manage-fields.php:285
1650
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1651
+ msgid "Aruba"
1652
+ msgstr "Aruba"
1653
+
1654
+ #: profile-builder-2.0/admin/manage-fields.php:286
1655
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1656
+ msgid "Australia"
1657
+ msgstr "Australia"
1658
+
1659
+ #: profile-builder-2.0/admin/manage-fields.php:287
1660
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1661
+ msgid "Austria"
1662
+ msgstr "Austria"
1663
+
1664
+ #: profile-builder-2.0/admin/manage-fields.php:288
1665
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
+ msgid "Azerbaijan"
1667
+ msgstr "Azerbaijan"
1668
+
1669
+ #: profile-builder-2.0/admin/manage-fields.php:289
1670
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1671
+ msgid "Bahamas"
1672
+ msgstr "Bahamas"
1673
+
1674
+ #: profile-builder-2.0/admin/manage-fields.php:290
1675
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1676
+ msgid "Bahrain"
1677
+ msgstr "Bahrain"
1678
+
1679
+ #: profile-builder-2.0/admin/manage-fields.php:291
1680
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1681
+ msgid "Bangladesh"
1682
+ msgstr "Bangladesh"
1683
+
1684
+ #: profile-builder-2.0/admin/manage-fields.php:292
1685
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1686
+ msgid "Barbados"
1687
+ msgstr "Barbados"
1688
+
1689
+ #: profile-builder-2.0/admin/manage-fields.php:293
1690
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1691
+ msgid "Belarus"
1692
+ msgstr "Belarus"
1693
+
1694
+ #: profile-builder-2.0/admin/manage-fields.php:294
1695
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
+ msgid "Belgium"
1697
+ msgstr "Belgium"
1698
+
1699
+ #: profile-builder-2.0/admin/manage-fields.php:295
1700
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1701
+ msgid "Belize"
1702
+ msgstr "Belize"
1703
+
1704
+ #: profile-builder-2.0/admin/manage-fields.php:296
1705
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1706
+ msgid "Benin"
1707
+ msgstr "Benin"
1708
+
1709
+ #: profile-builder-2.0/admin/manage-fields.php:297
1710
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1711
+ msgid "Bermuda"
1712
+ msgstr "Bermuda"
1713
+
1714
+ #: profile-builder-2.0/admin/manage-fields.php:298
1715
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1716
+ msgid "Bhutan"
1717
+ msgstr "Bhutan"
1718
+
1719
+ #: profile-builder-2.0/admin/manage-fields.php:299
1720
+ msgid "Bolivia"
1721
+ msgstr "Bolivia"
1722
+
1723
+ #: profile-builder-2.0/admin/manage-fields.php:300
1724
+ msgid "Bonaire, Saint Eustatius and Saba"
1725
+ msgstr "Bonaire, Saint Eustatius and Saba"
1726
+
1727
+ #: profile-builder-2.0/admin/manage-fields.php:301
1728
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1729
+ msgid "Bosnia and Herzegovina"
1730
+ msgstr "Bosnia and Herzegovina"
1731
+
1732
+ #: profile-builder-2.0/admin/manage-fields.php:302
1733
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1734
+ msgid "Botswana"
1735
+ msgstr "Botswana"
1736
+
1737
+ #: profile-builder-2.0/admin/manage-fields.php:303
1738
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1739
+ msgid "Bouvet Island"
1740
+ msgstr "Bouvet Island"
1741
+
1742
+ #: profile-builder-2.0/admin/manage-fields.php:304
1743
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1744
+ msgid "Brazil"
1745
+ msgstr "Brazil"
1746
+
1747
+ #: profile-builder-2.0/admin/manage-fields.php:305
1748
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1749
+ msgid "British Indian Ocean Territory"
1750
+ msgstr "British Indian Ocean Territory"
1751
+
1752
+ #: profile-builder-2.0/admin/manage-fields.php:306
1753
+ msgid "British Virgin Islands"
1754
+ msgstr "British Virgin Islands"
1755
+
1756
+ #: profile-builder-2.0/admin/manage-fields.php:307
1757
+ msgid "Brunei"
1758
+ msgstr "Brunei"
1759
+
1760
+ #: profile-builder-2.0/admin/manage-fields.php:308
1761
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1762
+ msgid "Bulgaria"
1763
+ msgstr "Bulgaria"
1764
+
1765
+ #: profile-builder-2.0/admin/manage-fields.php:309
1766
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1767
+ msgid "Burkina Faso"
1768
+ msgstr "Burkina Faso"
1769
+
1770
+ #: profile-builder-2.0/admin/manage-fields.php:310
1771
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1772
+ msgid "Burundi"
1773
+ msgstr "Burundi"
1774
+
1775
+ #: profile-builder-2.0/admin/manage-fields.php:311
1776
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1777
+ msgid "Cambodia"
1778
+ msgstr "Cambodia"
1779
+
1780
+ #: profile-builder-2.0/admin/manage-fields.php:312
1781
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1782
+ msgid "Cameroon"
1783
+ msgstr "Cameroon"
1784
+
1785
+ #: profile-builder-2.0/admin/manage-fields.php:313
1786
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1787
+ msgid "Canada"
1788
+ msgstr "Canada"
1789
+
1790
+ #: profile-builder-2.0/admin/manage-fields.php:314
1791
+ msgid "Cape Verde"
1792
+ msgstr "Cape Verde"
1793
+
1794
+ #: profile-builder-2.0/admin/manage-fields.php:315
1795
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1796
+ msgid "Cayman Islands"
1797
+ msgstr "Cayman Islands"
1798
+
1799
+ #: profile-builder-2.0/admin/manage-fields.php:316
1800
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1801
+ msgid "Central African Republic"
1802
+ msgstr "Central African Republic"
1803
+
1804
+ #: profile-builder-2.0/admin/manage-fields.php:317
1805
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1806
+ msgid "Chad"
1807
+ msgstr "Chad"
1808
+
1809
+ #: profile-builder-2.0/admin/manage-fields.php:318
1810
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1811
+ msgid "Chile"
1812
+ msgstr "Chile"
1813
+
1814
+ #: profile-builder-2.0/admin/manage-fields.php:319
1815
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1816
+ msgid "China"
1817
+ msgstr "China"
1818
+
1819
+ #: profile-builder-2.0/admin/manage-fields.php:320
1820
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1821
+ msgid "Christmas Island"
1822
+ msgstr "Christmas Island"
1823
+
1824
+ #: profile-builder-2.0/admin/manage-fields.php:321
1825
+ msgid "Cocos Islands"
1826
+ msgstr "Cocos Islands"
1827
+
1828
+ #: profile-builder-2.0/admin/manage-fields.php:322
1829
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1830
+ msgid "Colombia"
1831
+ msgstr "Colombia"
1832
+
1833
+ #: profile-builder-2.0/admin/manage-fields.php:323
1834
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1835
+ msgid "Comoros"
1836
+ msgstr "Comoros"
1837
+
1838
+ #: profile-builder-2.0/admin/manage-fields.php:324
1839
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1840
+ msgid "Cook Islands"
1841
+ msgstr "Cook Islands"
1842
+
1843
+ #: profile-builder-2.0/admin/manage-fields.php:325
1844
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1845
+ msgid "Costa Rica"
1846
+ msgstr "Costa Rica"
1847
+
1848
+ #: profile-builder-2.0/admin/manage-fields.php:326
1849
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1850
+ msgid "Croatia"
1851
+ msgstr "Croatia"
1852
+
1853
+ #: profile-builder-2.0/admin/manage-fields.php:327
1854
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1855
+ msgid "Cuba"
1856
+ msgstr "Cuba"
1857
+
1858
+ #: profile-builder-2.0/admin/manage-fields.php:328
1859
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1860
+ msgid "Curacao"
1861
+ msgstr "Curacao"
1862
+
1863
+ #: profile-builder-2.0/admin/manage-fields.php:329
1864
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1865
+ msgid "Cyprus"
1866
+ msgstr "Cyprus"
1867
+
1868
+ #: profile-builder-2.0/admin/manage-fields.php:330
1869
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1870
+ msgid "Czech Republic"
1871
+ msgstr "Czech Republic"
1872
+
1873
+ #: profile-builder-2.0/admin/manage-fields.php:331
1874
+ msgid "Democratic Republic of the Congo"
1875
+ msgstr "Democratic Republic of the Congo"
1876
+
1877
+ #: profile-builder-2.0/admin/manage-fields.php:332
1878
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1879
+ msgid "Denmark"
1880
+ msgstr "Denmark"
1881
+
1882
+ #: profile-builder-2.0/admin/manage-fields.php:333
1883
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1884
+ msgid "Djibouti"
1885
+ msgstr "Djibouti"
1886
+
1887
+ #: profile-builder-2.0/admin/manage-fields.php:334
1888
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1889
+ msgid "Dominica"
1890
+ msgstr "Dominica"
1891
+
1892
+ #: profile-builder-2.0/admin/manage-fields.php:335
1893
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1894
+ msgid "Dominican Republic"
1895
+ msgstr "Dominican Republic"
1896
+
1897
+ #: profile-builder-2.0/admin/manage-fields.php:336
1898
+ msgid "East Timor"
1899
+ msgstr "East Timor"
1900
+
1901
+ #: profile-builder-2.0/admin/manage-fields.php:337
1902
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1903
+ msgid "Ecuador"
1904
+ msgstr "Ecuador"
1905
+
1906
+ #: profile-builder-2.0/admin/manage-fields.php:338
1907
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1908
+ msgid "Egypt"
1909
+ msgstr "Egypt"
1910
+
1911
+ #: profile-builder-2.0/admin/manage-fields.php:339
1912
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1913
+ msgid "El Salvador"
1914
+ msgstr "El Salvador"
1915
+
1916
+ #: profile-builder-2.0/admin/manage-fields.php:340
1917
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1918
+ msgid "Equatorial Guinea"
1919
+ msgstr "Equatorial Guinea"
1920
+
1921
+ #: profile-builder-2.0/admin/manage-fields.php:341
1922
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1923
+ msgid "Eritrea"
1924
+ msgstr "Eritrea"
1925
+
1926
+ #: profile-builder-2.0/admin/manage-fields.php:342
1927
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1928
+ msgid "Estonia"
1929
+ msgstr "Estonia"
1930
+
1931
+ #: profile-builder-2.0/admin/manage-fields.php:343
1932
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1933
+ msgid "Ethiopia"
1934
+ msgstr "Ethiopia"
1935
+
1936
+ #: profile-builder-2.0/admin/manage-fields.php:344
1937
+ msgid "Falkland Islands"
1938
+ msgstr "Falkland Islands"
1939
+
1940
+ #: profile-builder-2.0/admin/manage-fields.php:345
1941
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1942
+ msgid "Faroe Islands"
1943
+ msgstr "Faroe Islands"
1944
+
1945
+ #: profile-builder-2.0/admin/manage-fields.php:346
1946
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1947
+ msgid "Fiji"
1948
+ msgstr "Fiji"
1949
+
1950
+ #: profile-builder-2.0/admin/manage-fields.php:347
1951
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1952
+ msgid "Finland"
1953
+ msgstr "Finland"
1954
+
1955
+ #: profile-builder-2.0/admin/manage-fields.php:348
1956
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1957
+ msgid "France"
1958
+ msgstr "France"
1959
+
1960
+ #: profile-builder-2.0/admin/manage-fields.php:349
1961
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1962
+ msgid "French Guiana"
1963
+ msgstr "French Guiana"
1964
+
1965
+ #: profile-builder-2.0/admin/manage-fields.php:350
1966
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1967
+ msgid "French Polynesia"
1968
+ msgstr "French Polynesia"
1969
+
1970
+ #: profile-builder-2.0/admin/manage-fields.php:351
1971
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1972
+ msgid "French Southern Territories"
1973
+ msgstr "French Southern Territories"
1974
+
1975
+ #: profile-builder-2.0/admin/manage-fields.php:352
1976
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1977
+ msgid "Gabon"
1978
+ msgstr "Gabon"
1979
+
1980
+ #: profile-builder-2.0/admin/manage-fields.php:353
1981
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1982
+ msgid "Gambia"
1983
+ msgstr "Gambia"
1984
+
1985
+ #: profile-builder-2.0/admin/manage-fields.php:354
1986
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1987
+ msgid "Georgia"
1988
+ msgstr "Georgia"
1989
+
1990
+ #: profile-builder-2.0/admin/manage-fields.php:355
1991
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1992
+ msgid "Germany"
1993
+ msgstr "Germany"
1994
+
1995
+ #: profile-builder-2.0/admin/manage-fields.php:356
1996
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1997
+ msgid "Ghana"
1998
+ msgstr "Ghana"
1999
+
2000
+ #: profile-builder-2.0/admin/manage-fields.php:357
2001
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2002
+ msgid "Gibraltar"
2003
+ msgstr "Gibraltar"
2004
+
2005
+ #: profile-builder-2.0/admin/manage-fields.php:358
2006
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2007
+ msgid "Greece"
2008
+ msgstr "Greece"
2009
+
2010
+ #: profile-builder-2.0/admin/manage-fields.php:359
2011
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2012
+ msgid "Greenland"
2013
+ msgstr "Greenland"
2014
+
2015
+ #: profile-builder-2.0/admin/manage-fields.php:360
2016
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2017
+ msgid "Grenada"
2018
+ msgstr "Grenada"
2019
+
2020
+ #: profile-builder-2.0/admin/manage-fields.php:361
2021
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2022
+ msgid "Guadeloupe"
2023
+ msgstr "Guadeloupe"
2024
+
2025
+ #: profile-builder-2.0/admin/manage-fields.php:362
2026
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2027
+ msgid "Guam"
2028
+ msgstr "Guam"
2029
+
2030
+ #: profile-builder-2.0/admin/manage-fields.php:363
2031
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2032
+ msgid "Guatemala"
2033
+ msgstr "Guatemala"
2034
+
2035
+ #: profile-builder-2.0/admin/manage-fields.php:364
2036
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2037
+ msgid "Guernsey"
2038
+ msgstr "Guernsey"
2039
+
2040
+ #: profile-builder-2.0/admin/manage-fields.php:365
2041
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2042
+ msgid "Guinea"
2043
+ msgstr "Guinea"
2044
+
2045
+ #: profile-builder-2.0/admin/manage-fields.php:366
2046
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2047
+ msgid "Guinea-Bissau"
2048
+ msgstr "Guinea-Bissau"
2049
+
2050
+ #: profile-builder-2.0/admin/manage-fields.php:367
2051
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2052
+ msgid "Guyana"
2053
+ msgstr "Guyana"
2054
+
2055
+ #: profile-builder-2.0/admin/manage-fields.php:368
2056
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2057
+ msgid "Haiti"
2058
+ msgstr "Haiti"
2059
+
2060
+ #: profile-builder-2.0/admin/manage-fields.php:369
2061
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
+ msgid "Heard Island and McDonald Islands"
2063
+ msgstr "Heard Island and McDonald Islands"
2064
+
2065
+ #: profile-builder-2.0/admin/manage-fields.php:370
2066
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2067
+ msgid "Honduras"
2068
+ msgstr "Honduras"
2069
+
2070
+ #: profile-builder-2.0/admin/manage-fields.php:371
2071
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2072
+ msgid "Hong Kong"
2073
+ msgstr "Hong Kong"
2074
+
2075
+ #: profile-builder-2.0/admin/manage-fields.php:372
2076
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
+ msgid "Hungary"
2078
+ msgstr "Hungary"
2079
+
2080
+ #: profile-builder-2.0/admin/manage-fields.php:373
2081
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
+ msgid "Iceland"
2083
+ msgstr "Iceland"
2084
+
2085
+ #: profile-builder-2.0/admin/manage-fields.php:374
2086
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2087
+ msgid "India"
2088
+ msgstr "India"
2089
+
2090
+ #: profile-builder-2.0/admin/manage-fields.php:375
2091
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
+ msgid "Indonesia"
2093
+ msgstr "Indonesia"
2094
+
2095
+ #: profile-builder-2.0/admin/manage-fields.php:376
2096
+ msgid "Iran"
2097
+ msgstr "Iran"
2098
+
2099
+ #: profile-builder-2.0/admin/manage-fields.php:377
2100
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2101
+ msgid "Iraq"
2102
+ msgstr "Iraq"
2103
+
2104
+ #: profile-builder-2.0/admin/manage-fields.php:378
2105
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2106
+ msgid "Ireland"
2107
+ msgstr "Ireland"
2108
+
2109
+ #: profile-builder-2.0/admin/manage-fields.php:379
2110
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2111
+ msgid "Isle of Man"
2112
+ msgstr "Isle of Man"
2113
+
2114
+ #: profile-builder-2.0/admin/manage-fields.php:380
2115
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2116
+ msgid "Israel"
2117
+ msgstr "Israel"
2118
+
2119
+ #: profile-builder-2.0/admin/manage-fields.php:381
2120
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2121
+ msgid "Italy"
2122
+ msgstr "Italy"
2123
+
2124
+ #: profile-builder-2.0/admin/manage-fields.php:382
2125
+ msgid "Ivory Coast"
2126
+ msgstr "Ivory Coast"
2127
+
2128
+ #: profile-builder-2.0/admin/manage-fields.php:383
2129
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2130
+ msgid "Jamaica"
2131
+ msgstr "Jamaica"
2132
+
2133
+ #: profile-builder-2.0/admin/manage-fields.php:384
2134
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2135
+ msgid "Japan"
2136
+ msgstr "Japan"
2137
+
2138
+ #: profile-builder-2.0/admin/manage-fields.php:385
2139
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2140
+ msgid "Jersey"
2141
+ msgstr "Jersey"
2142
+
2143
+ #: profile-builder-2.0/admin/manage-fields.php:386
2144
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2145
+ msgid "Jordan"
2146
+ msgstr "Jordan"
2147
+
2148
+ #: profile-builder-2.0/admin/manage-fields.php:387
2149
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2150
+ msgid "Kazakhstan"
2151
+ msgstr "Kazakhstan"
2152
+
2153
+ #: profile-builder-2.0/admin/manage-fields.php:388
2154
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2155
+ msgid "Kenya"
2156
+ msgstr "Kenya"
2157
+
2158
+ #: profile-builder-2.0/admin/manage-fields.php:389
2159
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2160
+ msgid "Kiribati"
2161
+ msgstr "Kiribati"
2162
+
2163
+ #: profile-builder-2.0/admin/manage-fields.php:390
2164
+ msgid "Kosovo"
2165
+ msgstr "Kosovo"
2166
+
2167
+ #: profile-builder-2.0/admin/manage-fields.php:391
2168
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2169
+ msgid "Kuwait"
2170
+ msgstr "Kuwait"
2171
+
2172
+ #: profile-builder-2.0/admin/manage-fields.php:392
2173
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2174
+ msgid "Kyrgyzstan"
2175
+ msgstr "Kyrgyzstan"
2176
+
2177
+ #: profile-builder-2.0/admin/manage-fields.php:393
2178
+ msgid "Laos"
2179
+ msgstr "Laos"
2180
+
2181
+ #: profile-builder-2.0/admin/manage-fields.php:394
2182
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2183
+ msgid "Latvia"
2184
+ msgstr "Latvia"
2185
+
2186
+ #: profile-builder-2.0/admin/manage-fields.php:395
2187
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2188
+ msgid "Lebanon"
2189
+ msgstr "Lebanon"
2190
+
2191
+ #: profile-builder-2.0/admin/manage-fields.php:396
2192
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2193
+ msgid "Lesotho"
2194
+ msgstr "Lesotho"
2195
+
2196
+ #: profile-builder-2.0/admin/manage-fields.php:397
2197
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2198
+ msgid "Liberia"
2199
+ msgstr "Liberia"
2200
+
2201
+ #: profile-builder-2.0/admin/manage-fields.php:398
2202
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2203
+ msgid "Libya"
2204
+ msgstr "Libya"
2205
+
2206
+ #: profile-builder-2.0/admin/manage-fields.php:399
2207
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2208
+ msgid "Liechtenstein"
2209
+ msgstr "Liechtenstein"
2210
+
2211
+ #: profile-builder-2.0/admin/manage-fields.php:400
2212
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2213
+ msgid "Lithuania"
2214
+ msgstr "Lithuania"
2215
+
2216
+ #: profile-builder-2.0/admin/manage-fields.php:401
2217
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2218
+ msgid "Luxembourg"
2219
+ msgstr "Luxembourg"
2220
+
2221
+ #: profile-builder-2.0/admin/manage-fields.php:402
2222
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2223
+ msgid "Macao"
2224
+ msgstr "Macao"
2225
+
2226
+ #: profile-builder-2.0/admin/manage-fields.php:403
2227
+ msgid "Macedonia"
2228
+ msgstr "Macedonia"
2229
+
2230
+ #: profile-builder-2.0/admin/manage-fields.php:404
2231
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2232
+ msgid "Madagascar"
2233
+ msgstr "Madagascar"
2234
+
2235
+ #: profile-builder-2.0/admin/manage-fields.php:405
2236
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2237
+ msgid "Malawi"
2238
+ msgstr "Malawi"
2239
+
2240
+ #: profile-builder-2.0/admin/manage-fields.php:406
2241
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2242
+ msgid "Malaysia"
2243
+ msgstr "Malaysia"
2244
+
2245
+ #: profile-builder-2.0/admin/manage-fields.php:407
2246
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2247
+ msgid "Maldives"
2248
+ msgstr "Maldives"
2249
+
2250
+ #: profile-builder-2.0/admin/manage-fields.php:408
2251
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2252
+ msgid "Mali"
2253
+ msgstr "Mali"
2254
+
2255
+ #: profile-builder-2.0/admin/manage-fields.php:409
2256
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2257
+ msgid "Malta"
2258
+ msgstr "Malta"
2259
+
2260
+ #: profile-builder-2.0/admin/manage-fields.php:410
2261
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2262
+ msgid "Marshall Islands"
2263
+ msgstr "Marshall Islands"
2264
+
2265
+ #: profile-builder-2.0/admin/manage-fields.php:411
2266
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2267
+ msgid "Martinique"
2268
+ msgstr "Martinique"
2269
+
2270
+ #: profile-builder-2.0/admin/manage-fields.php:412
2271
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2272
+ msgid "Mauritania"
2273
+ msgstr "Mauritania"
2274
+
2275
+ #: profile-builder-2.0/admin/manage-fields.php:413
2276
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2277
+ msgid "Mauritius"
2278
+ msgstr "Mauritius"
2279
+
2280
+ #: profile-builder-2.0/admin/manage-fields.php:414
2281
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2282
+ msgid "Mayotte"
2283
+ msgstr "Mayotte"
2284
+
2285
+ #: profile-builder-2.0/admin/manage-fields.php:415
2286
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2287
+ msgid "Mexico"
2288
+ msgstr "Mexico"
2289
+
2290
+ #: profile-builder-2.0/admin/manage-fields.php:416
2291
+ msgid "Micronesia"
2292
+ msgstr "Micronesia"
2293
+
2294
+ #: profile-builder-2.0/admin/manage-fields.php:417
2295
+ msgid "Moldova"
2296
+ msgstr "Moldova"
2297
+
2298
+ #: profile-builder-2.0/admin/manage-fields.php:418
2299
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2300
+ msgid "Monaco"
2301
+ msgstr "Monaco"
2302
+
2303
+ #: profile-builder-2.0/admin/manage-fields.php:419
2304
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2305
+ msgid "Mongolia"
2306
+ msgstr "Mongolia"
2307
+
2308
+ #: profile-builder-2.0/admin/manage-fields.php:420
2309
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2310
+ msgid "Montenegro"
2311
+ msgstr "Montenegro"
2312
+
2313
+ #: profile-builder-2.0/admin/manage-fields.php:421
2314
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2315
+ msgid "Montserrat"
2316
+ msgstr "Montserrat"
2317
+
2318
+ #: profile-builder-2.0/admin/manage-fields.php:422
2319
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2320
+ msgid "Morocco"
2321
+ msgstr "Morocco"
2322
+
2323
+ #: profile-builder-2.0/admin/manage-fields.php:423
2324
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2325
+ msgid "Mozambique"
2326
+ msgstr "Mozambique"
2327
+
2328
+ #: profile-builder-2.0/admin/manage-fields.php:424
2329
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2330
+ msgid "Myanmar"
2331
+ msgstr "Myanmar"
2332
+
2333
+ #: profile-builder-2.0/admin/manage-fields.php:425
2334
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2335
+ msgid "Namibia"
2336
+ msgstr "Namibia"
2337
+
2338
+ #: profile-builder-2.0/admin/manage-fields.php:426
2339
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2340
+ msgid "Nauru"
2341
+ msgstr "Nauru"
2342
+
2343
+ #: profile-builder-2.0/admin/manage-fields.php:427
2344
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2345
+ msgid "Nepal"
2346
+ msgstr "Nepal"
2347
+
2348
+ #: profile-builder-2.0/admin/manage-fields.php:428
2349
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2350
+ msgid "Netherlands"
2351
+ msgstr "Netherlands"
2352
+
2353
+ #: profile-builder-2.0/admin/manage-fields.php:429
2354
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2355
+ msgid "New Caledonia"
2356
+ msgstr "New Caledonia"
2357
+
2358
+ #: profile-builder-2.0/admin/manage-fields.php:430
2359
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2360
+ msgid "New Zealand"
2361
+ msgstr "New Zealand"
2362
+
2363
+ #: profile-builder-2.0/admin/manage-fields.php:431
2364
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2365
+ msgid "Nicaragua"
2366
+ msgstr "Nicaragua"
2367
+
2368
+ #: profile-builder-2.0/admin/manage-fields.php:432
2369
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2370
+ msgid "Niger"
2371
+ msgstr "Niger"
2372
+
2373
+ #: profile-builder-2.0/admin/manage-fields.php:433
2374
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2375
+ msgid "Nigeria"
2376
+ msgstr "Nigeria"
2377
+
2378
+ #: profile-builder-2.0/admin/manage-fields.php:434
2379
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2380
+ msgid "Niue"
2381
+ msgstr "Niue"
2382
+
2383
+ #: profile-builder-2.0/admin/manage-fields.php:435
2384
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
+ msgid "Norfolk Island"
2386
+ msgstr "Norfolk Island"
2387
+
2388
+ #: profile-builder-2.0/admin/manage-fields.php:436
2389
+ msgid "North Korea"
2390
+ msgstr "North Korea"
2391
+
2392
+ #: profile-builder-2.0/admin/manage-fields.php:437
2393
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2394
+ msgid "Northern Mariana Islands"
2395
+ msgstr "Northern Mariana Islands"
2396
+
2397
+ #: profile-builder-2.0/admin/manage-fields.php:438
2398
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2399
+ msgid "Norway"
2400
+ msgstr "Norway"
2401
+
2402
+ #: profile-builder-2.0/admin/manage-fields.php:439
2403
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2404
+ msgid "Oman"
2405
+ msgstr "Oman"
2406
+
2407
+ #: profile-builder-2.0/admin/manage-fields.php:440
2408
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2409
+ msgid "Pakistan"
2410
+ msgstr "Pakistan"
2411
+
2412
+ #: profile-builder-2.0/admin/manage-fields.php:441
2413
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2414
+ msgid "Palau"
2415
+ msgstr "Palau"
2416
+
2417
+ #: profile-builder-2.0/admin/manage-fields.php:442
2418
+ msgid "Palestinian Territory"
2419
+ msgstr "Palestinian Territory"
2420
+
2421
+ #: profile-builder-2.0/admin/manage-fields.php:443
2422
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2423
+ msgid "Panama"
2424
+ msgstr "Panama"
2425
+
2426
+ #: profile-builder-2.0/admin/manage-fields.php:444
2427
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2428
+ msgid "Papua New Guinea"
2429
+ msgstr "Papua New Guinea"
2430
+
2431
+ #: profile-builder-2.0/admin/manage-fields.php:445
2432
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2433
+ msgid "Paraguay"
2434
+ msgstr "Paraguay"
2435
+
2436
+ #: profile-builder-2.0/admin/manage-fields.php:446
2437
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2438
+ msgid "Peru"
2439
+ msgstr "Peru"
2440
+
2441
+ #: profile-builder-2.0/admin/manage-fields.php:447
2442
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2443
+ msgid "Philippines"
2444
+ msgstr "Philippines"
2445
+
2446
+ #: profile-builder-2.0/admin/manage-fields.php:448
2447
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2448
+ msgid "Pitcairn"
2449
+ msgstr "Pitcairn"
2450
+
2451
+ #: profile-builder-2.0/admin/manage-fields.php:449
2452
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2453
+ msgid "Poland"
2454
+ msgstr "Poland"
2455
+
2456
+ #: profile-builder-2.0/admin/manage-fields.php:450
2457
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2458
+ msgid "Portugal"
2459
+ msgstr "Portugal"
2460
+
2461
+ #: profile-builder-2.0/admin/manage-fields.php:451
2462
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2463
+ msgid "Puerto Rico"
2464
+ msgstr "Puerto Rico"
2465
+
2466
+ #: profile-builder-2.0/admin/manage-fields.php:452
2467
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2468
+ msgid "Qatar"
2469
+ msgstr "Qatar"
2470
+
2471
+ #: profile-builder-2.0/admin/manage-fields.php:453
2472
+ msgid "Republic of the Congo"
2473
+ msgstr "Republic of the Congo"
2474
+
2475
+ #: profile-builder-2.0/admin/manage-fields.php:454
2476
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2477
+ msgid "Reunion"
2478
+ msgstr "Reunion"
2479
+
2480
+ #: profile-builder-2.0/admin/manage-fields.php:455
2481
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2482
+ msgid "Romania"
2483
+ msgstr "Romania"
2484
+
2485
+ #: profile-builder-2.0/admin/manage-fields.php:456
2486
+ msgid "Russia"
2487
+ msgstr "Russia"
2488
+
2489
+ #: profile-builder-2.0/admin/manage-fields.php:457
2490
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2491
+ msgid "Rwanda"
2492
+ msgstr "Rwanda"
2493
+
2494
+ #: profile-builder-2.0/admin/manage-fields.php:458
2495
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2496
+ msgid "Saint Barthelemy"
2497
+ msgstr "Saint Barthelemy"
2498
+
2499
+ #: profile-builder-2.0/admin/manage-fields.php:459
2500
+ msgid "Saint Helena"
2501
+ msgstr "Saint Helena"
2502
+
2503
+ #: profile-builder-2.0/admin/manage-fields.php:460
2504
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2505
+ msgid "Saint Kitts and Nevis"
2506
+ msgstr "Saint Kitts and Nevis"
2507
+
2508
+ #: profile-builder-2.0/admin/manage-fields.php:461
2509
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2510
+ msgid "Saint Lucia"
2511
+ msgstr "Saint Lucia"
2512
+
2513
+ #: profile-builder-2.0/admin/manage-fields.php:462
2514
+ msgid "Saint Martin"
2515
+ msgstr "Saint Martin"
2516
+
2517
+ #: profile-builder-2.0/admin/manage-fields.php:463
2518
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2519
+ msgid "Saint Pierre and Miquelon"
2520
+ msgstr "Saint Pierre and Miquelon"
2521
+
2522
+ #: profile-builder-2.0/admin/manage-fields.php:464
2523
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2524
+ msgid "Saint Vincent and the Grenadines"
2525
+ msgstr "Saint Vincent and the Grenadines"
2526
+
2527
+ #: profile-builder-2.0/admin/manage-fields.php:465
2528
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2529
+ msgid "Samoa"
2530
+ msgstr "Samoa"
2531
+
2532
+ #: profile-builder-2.0/admin/manage-fields.php:466
2533
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2534
+ msgid "San Marino"
2535
+ msgstr "San Marino"
2536
+
2537
+ #: profile-builder-2.0/admin/manage-fields.php:467
2538
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2539
+ msgid "Sao Tome and Principe"
2540
+ msgstr "Sao Tome and Principe"
2541
+
2542
+ #: profile-builder-2.0/admin/manage-fields.php:468
2543
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2544
+ msgid "Saudi Arabia"
2545
+ msgstr "Saudi Arabia"
2546
+
2547
+ #: profile-builder-2.0/admin/manage-fields.php:469
2548
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2549
+ msgid "Senegal"
2550
+ msgstr "Senegal"
2551
+
2552
+ #: profile-builder-2.0/admin/manage-fields.php:470
2553
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2554
+ msgid "Serbia"
2555
+ msgstr "Serbia"
2556
+
2557
+ #: profile-builder-2.0/admin/manage-fields.php:471
2558
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2559
+ msgid "Seychelles"
2560
+ msgstr "Seychelles"
2561
+
2562
+ #: profile-builder-2.0/admin/manage-fields.php:472
2563
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2564
+ msgid "Sierra Leone"
2565
+ msgstr "Sierra Leone"
2566
+
2567
+ #: profile-builder-2.0/admin/manage-fields.php:473
2568
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2569
+ msgid "Singapore"
2570
+ msgstr "Singapore"
2571
+
2572
+ #: profile-builder-2.0/admin/manage-fields.php:474
2573
+ msgid "Sint Maarten"
2574
+ msgstr "Sint Maarten"
2575
+
2576
+ #: profile-builder-2.0/admin/manage-fields.php:475
2577
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2578
+ msgid "Slovakia"
2579
+ msgstr "Slovakia"
2580
+
2581
+ #: profile-builder-2.0/admin/manage-fields.php:476
2582
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2583
+ msgid "Slovenia"
2584
+ msgstr "Slovenia"
2585
+
2586
+ #: profile-builder-2.0/admin/manage-fields.php:477
2587
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2588
+ msgid "Solomon Islands"
2589
+ msgstr "Solomon Islands"
2590
+
2591
+ #: profile-builder-2.0/admin/manage-fields.php:478
2592
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2593
+ msgid "Somalia"
2594
+ msgstr "Somalia"
2595
+
2596
+ #: profile-builder-2.0/admin/manage-fields.php:479
2597
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2598
+ msgid "South Africa"
2599
+ msgstr "South Africa"
2600
+
2601
+ #: profile-builder-2.0/admin/manage-fields.php:480
2602
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2603
+ msgid "South Georgia and the South Sandwich Islands"
2604
+ msgstr "South Georgia and the South Sandwich Islands"
2605
+
2606
+ #: profile-builder-2.0/admin/manage-fields.php:481
2607
+ msgid "South Korea"
2608
+ msgstr "South Korea"
2609
+
2610
+ #: profile-builder-2.0/admin/manage-fields.php:482
2611
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2612
+ msgid "South Sudan"
2613
+ msgstr "South Sudan"
2614
+
2615
+ #: profile-builder-2.0/admin/manage-fields.php:483
2616
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2617
+ msgid "Spain"
2618
+ msgstr "Spain"
2619
+
2620
+ #: profile-builder-2.0/admin/manage-fields.php:484
2621
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2622
+ msgid "Sri Lanka"
2623
+ msgstr "Sri Lanka"
2624
+
2625
+ #: profile-builder-2.0/admin/manage-fields.php:485
2626
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2627
+ msgid "Sudan"
2628
+ msgstr "Sudan"
2629
+
2630
+ #: profile-builder-2.0/admin/manage-fields.php:486
2631
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2632
+ msgid "Suriname"
2633
+ msgstr "Suriname"
2634
+
2635
+ #: profile-builder-2.0/admin/manage-fields.php:487
2636
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2637
+ msgid "Svalbard and Jan Mayen"
2638
+ msgstr "Svalbard and Jan Mayen"
2639
+
2640
+ #: profile-builder-2.0/admin/manage-fields.php:488
2641
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2642
+ msgid "Swaziland"
2643
+ msgstr "Swaziland"
2644
+
2645
+ #: profile-builder-2.0/admin/manage-fields.php:489
2646
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2647
+ msgid "Sweden"
2648
+ msgstr "Sweden"
2649
+
2650
+ #: profile-builder-2.0/admin/manage-fields.php:490
2651
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2652
+ msgid "Switzerland"
2653
+ msgstr "Switzerland"
2654
+
2655
+ #: profile-builder-2.0/admin/manage-fields.php:491
2656
+ msgid "Syria"
2657
+ msgstr "Syria"
2658
+
2659
+ #: profile-builder-2.0/admin/manage-fields.php:492
2660
+ msgid "Taiwan"
2661
+ msgstr "Taiwan"
2662
+
2663
+ #: profile-builder-2.0/admin/manage-fields.php:493
2664
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2665
+ msgid "Tajikistan"
2666
+ msgstr "Tajikistan"
2667
+
2668
+ #: profile-builder-2.0/admin/manage-fields.php:494
2669
+ msgid "Tanzania"
2670
+ msgstr "Tanzania"
2671
+
2672
+ #: profile-builder-2.0/admin/manage-fields.php:495
2673
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2674
+ msgid "Thailand"
2675
+ msgstr "Thailand"
2676
+
2677
+ #: profile-builder-2.0/admin/manage-fields.php:496
2678
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2679
+ msgid "Togo"
2680
+ msgstr "Togo"
2681
+
2682
+ #: profile-builder-2.0/admin/manage-fields.php:497
2683
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2684
+ msgid "Tokelau"
2685
+ msgstr "Tokelau"
2686
+
2687
+ #: profile-builder-2.0/admin/manage-fields.php:498
2688
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2689
+ msgid "Tonga"
2690
+ msgstr "Tonga"
2691
+
2692
+ #: profile-builder-2.0/admin/manage-fields.php:499
2693
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2694
+ msgid "Trinidad and Tobago"
2695
+ msgstr "Trinidad and Tobago"
2696
+
2697
+ #: profile-builder-2.0/admin/manage-fields.php:500
2698
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2699
+ msgid "Tunisia"
2700
+ msgstr "Tunisia"
2701
+
2702
+ #: profile-builder-2.0/admin/manage-fields.php:501
2703
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2704
+ msgid "Turkey"
2705
+ msgstr "Turkey"
2706
+
2707
+ #: profile-builder-2.0/admin/manage-fields.php:502
2708
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2709
+ msgid "Turkmenistan"
2710
+ msgstr "Turkmenistan"
2711
+
2712
+ #: profile-builder-2.0/admin/manage-fields.php:503
2713
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2714
+ msgid "Turks and Caicos Islands"
2715
+ msgstr "Turks and Caicos Islands"
2716
+
2717
+ #: profile-builder-2.0/admin/manage-fields.php:504
2718
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2719
+ msgid "Tuvalu"
2720
+ msgstr "Tuvalu"
2721
+
2722
+ #: profile-builder-2.0/admin/manage-fields.php:505
2723
+ msgid "U.S. Virgin Islands"
2724
+ msgstr "U.S. Virgin Islands"
2725
+
2726
+ #: profile-builder-2.0/admin/manage-fields.php:506
2727
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2728
+ msgid "Uganda"
2729
+ msgstr "Uganda"
2730
+
2731
+ #: profile-builder-2.0/admin/manage-fields.php:507
2732
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2733
+ msgid "Ukraine"
2734
+ msgstr "Ukraine"
2735
+
2736
+ #: profile-builder-2.0/admin/manage-fields.php:508
2737
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2738
+ msgid "United Arab Emirates"
2739
+ msgstr "United Arab Emirates"
2740
+
2741
+ #: profile-builder-2.0/admin/manage-fields.php:509
2742
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2743
+ msgid "United Kingdom"
2744
+ msgstr "United Kingdom"
2745
+
2746
+ #: profile-builder-2.0/admin/manage-fields.php:510
2747
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2748
+ msgid "United States"
2749
+ msgstr "United States"
2750
+
2751
+ #: profile-builder-2.0/admin/manage-fields.php:511
2752
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2753
+ msgid "United States Minor Outlying Islands"
2754
+ msgstr "United States Minor Outlying Islands"
2755
+
2756
+ #: profile-builder-2.0/admin/manage-fields.php:512
2757
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2758
+ msgid "Uruguay"
2759
+ msgstr "Uruguay"
2760
+
2761
+ #: profile-builder-2.0/admin/manage-fields.php:513
2762
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2763
+ msgid "Uzbekistan"
2764
+ msgstr "Uzbekistan"
2765
+
2766
+ #: profile-builder-2.0/admin/manage-fields.php:514
2767
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2768
+ msgid "Vanuatu"
2769
+ msgstr "Vanuatu"
2770
+
2771
+ #: profile-builder-2.0/admin/manage-fields.php:515
2772
+ msgid "Vatican"
2773
+ msgstr "Vatican"
2774
+
2775
+ #: profile-builder-2.0/admin/manage-fields.php:516
2776
+ msgid "Venezuela"
2777
+ msgstr "Venezuela"
2778
+
2779
+ #: profile-builder-2.0/admin/manage-fields.php:517
2780
+ msgid "Vietnam"
2781
+ msgstr "Vietnam"
2782
+
2783
+ #: profile-builder-2.0/admin/manage-fields.php:518
2784
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2785
+ msgid "Wallis and Futuna"
2786
+ msgstr "Wallis and Futuna"
2787
+
2788
+ #: profile-builder-2.0/admin/manage-fields.php:519
2789
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2790
+ msgid "Western Sahara"
2791
+ msgstr "Western Sahara"
2792
+
2793
+ #: profile-builder-2.0/admin/manage-fields.php:520
2794
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2795
+ msgid "Yemen"
2796
+ msgstr "Yemen"
2797
+
2798
+ #: profile-builder-2.0/admin/manage-fields.php:521
2799
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2800
+ msgid "Zambia"
2801
+ msgstr "Zambia"
2802
+
2803
+ #: profile-builder-2.0/admin/manage-fields.php:522
2804
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2805
+ msgid "Zimbabwe"
2806
+ msgstr "Zimbabwe"
2807
+
2808
+ #: profile-builder-2.0/admin/manage-fields.php:1202
2809
+ 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."
2810
+ msgstr "Mit Profile Builder Pro v2 können Sie verschiedene Felder im Registrierungs- und Profilformular anzeigen. Nutzen Sie dazu das Modul Multiple Registration & Edit Profile Forms."
2811
+
2812
+ #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:241
2813
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2814
+ msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie sich einloggen können."
2815
+
2816
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:210
2817
+ msgid "Your account has been successfully created!"
2818
+ msgstr "Ihr Benutzerkonto wurde erfolgreich angelegt!"
2819
+
2820
+ #: profile-builder-2.0/features/functions.php:705
2821
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:374
2822
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:379
2823
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:421
2824
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:458
2825
+ msgid "Please enter a (valid) reCAPTCHA value"
2826
+ msgstr "Bitte geben Sie das reCAPTCHA (korrekt) ein."
2827
+
2828
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:421
2829
+ msgid "Click the BACK button on your browser, and try again."
2830
+ msgstr "Bitte klicken Sie den \"Zurück\"-Button in Ihrem Browser und versuchen Sie es erneut."
2831
+
2832
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2833
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2834
+ msgid "Sorry, you cannot upload this file type for this field."
2835
+ msgstr "Dieser Dateityp ist für dieses Feld nicht erlaubt."
2836
+
2837
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2838
+ msgid "An error occurred, please try again later."
2839
+ msgstr "Es ist ein Fehler aufgetreten, bitte versuchen Sie es später noch einmal."
2840
+
2841
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:273
2842
+ msgid "More"
2843
+ msgstr "Mehr"
2844
+
2845
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:367
2846
+ msgid "You do not have permission to view this user list."
2847
+ msgstr "Sie haben keine Berechtigung, um diese Benutzerliste einzusehen."
2848
+
2849
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:380
2850
+ msgid "You do not have the required user role to view this user list."
2851
+ msgstr "Sie haben nicht die notwendige Benutzerrolle, um diese Benutzerliste einzusehen."
2852
+
2853
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2127
2854
+ msgid "Ascending"
2855
+ msgstr "Aufsteigend"
2856
+
2857
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2128
2858
+ msgid "Descending"
2859
+ msgstr "Absteigend"
2860
+
2861
+ #: profile-builder-2.0/admin/add-ons.php:148
2862
+ #: profile-builder-2.0/admin/add-ons.php:248
2863
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:134
2864
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:213
2865
+ msgid "Download Now"
2866
+ msgstr "Jetzt herunterladen"
2867
+
2868
+ #: profile-builder-2.0/admin/admin-functions.php:197
2869
+ 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. "
2870
+ 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."
2871
+
2872
+ #: profile-builder-2.0/admin/manage-fields.php:77
2873
+ msgid "Choose one of the supported field types"
2874
+ msgstr "Wähle eins von den unterstützten Feldtypen."
2875
+
2876
+ #: profile-builder-2.0/admin/manage-fields.php:79
2877
+ msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2878
+ msgstr "Extra Feldtypen stehen in der <a href=\"%s\">Hobbyist oder PRO Version</a> zur Verfügung."
2879
+
2880
+ #: profile-builder-2.0/admin/manage-fields.php:126
2881
+ msgid "Site Key"
2882
+ msgstr "Seitenschlüssel"
2883
+
2884
+ #: profile-builder-2.0/admin/manage-fields.php:126
2885
+ msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2886
+ msgstr "Der Seitenschlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2887
+
2888
+ #: profile-builder-2.0/admin/manage-fields.php:127
2889
+ msgid "Secret Key"
2890
+ msgstr "Geheimer Schlüssel"
2891
+
2892
+ #: profile-builder-2.0/admin/manage-fields.php:127
2893
+ msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2894
+ msgstr "Der geheime Schlüssel von Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2895
+
2896
+ #: profile-builder-2.0/admin/manage-fields.php:1009
2897
+ msgid "You must enter the site key\n"
2898
+ msgstr "Sie müssen den Seiten Schlüssel eingeben\n"
2899
+
2900
+ #: profile-builder-2.0/admin/manage-fields.php:1011
2901
+ msgid "You must enter the secret key\n"
2902
+ msgstr "Sie müssen den geheimen Schlüssel eingeben\n"
2903
+
2904
+ #: profile-builder-2.0/admin/add-ons.php:10
2905
+ #: profile-builder-2.0/admin/add-ons.php:32
2906
+ msgid "Add-Ons"
2907
+ msgstr "Add-Ons"
2908
+
2909
+ #: profile-builder-2.0/admin/add-ons.php:34
2910
+ #: profile-builder-2.0/admin/add-ons.php:129
2911
+ #: profile-builder-2.0/admin/add-ons.php:231
2912
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:78
2913
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:114
2914
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:193
2915
+ msgid "Activate"
2916
+ msgstr "Aktivieren"
2917
+
2918
+ #: profile-builder-2.0/admin/add-ons.php:36
2919
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:80
2920
+ msgid "Downloading and installing..."
2921
+ msgstr "Downloaden und installieren..."
2922
+
2923
+ #: profile-builder-2.0/admin/add-ons.php:37
2924
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:81
2925
+ msgid "Installation complete"
2926
+ msgstr "Installation abgeschlossen"
2927
+
2928
+ #: profile-builder-2.0/admin/add-ons.php:39
2929
+ msgid "Add-On is Active"
2930
+ msgstr "Add-On ist aktiv"
2931
+
2932
+ #: profile-builder-2.0/admin/add-ons.php:40
2933
+ msgid "Add-On has been activated"
2934
+ msgstr "Add-On wurde aktiviert"
2935
+
2936
+ #: profile-builder-2.0/admin/add-ons.php:41
2937
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:85
2938
+ msgid "Retry Install"
2939
+ msgstr "Installation erneut versuchen"
2940
+
2941
+ #: profile-builder-2.0/admin/add-ons.php:43
2942
+ #: profile-builder-2.0/admin/add-ons.php:140
2943
+ msgid "Add-On is <strong>active</strong>"
2944
+ msgstr "Add-On ist <strong>aktiv</strong>"
2945
+
2946
+ #: profile-builder-2.0/admin/add-ons.php:44
2947
+ #: profile-builder-2.0/admin/add-ons.php:138
2948
+ msgid "Add-On is <strong>inactive</strong>"
2949
+ msgstr "Add-On ist <strong>inaktiv</strong>"
2950
+
2951
+ #: profile-builder-2.0/admin/add-ons.php:46
2952
+ #: profile-builder-2.0/admin/add-ons.php:133
2953
+ #: profile-builder-2.0/admin/add-ons.php:235
2954
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:90
2955
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:118
2956
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:197
2957
+ msgid "Deactivate"
2958
+ msgstr "Deaktivieren"
2959
+
2960
+ #: profile-builder-2.0/admin/add-ons.php:47
2961
+ msgid "Add-On has been deactivated."
2962
+ msgstr "Add-On wurde deaktiviert."
2963
+
2964
+ #: profile-builder-2.0/admin/add-ons.php:59
2965
+ msgid "Something went wrong, we could not connect to the server. Please try again later."
2966
+ msgstr "Etwas ist falsch gelaufen, wir konnten uns nicht mit dem Server verbinden. Bitte versuche es später erneut."
2967
+
2968
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:137
2969
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:216
2970
+ msgid "Install Now"
2971
+ msgstr "Jetzt installieren"
2972
+
2973
+ #: profile-builder-2.0/admin/add-ons.php:153
2974
+ #: profile-builder-2.0/admin/add-ons.php:251
2975
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:141
2976
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:220
2977
+ msgid "Compatible with your version of Profile Builder."
2978
+ msgstr "Kompatibel mit deiner Version von Profile Builder."
2979
+
2980
+ #: profile-builder-2.0/admin/add-ons.php:162
2981
+ msgid "Upgrade Profile Builder"
2982
+ msgstr "Profile Builder upgraden"
2983
+
2984
+ #: profile-builder-2.0/admin/add-ons.php:163
2985
+ msgid "Not compatible with Profile Builder"
2986
+ msgstr "Nicht kompatibel mit Profile Builder"
2987
+
2988
+ #: profile-builder-2.0/admin/add-ons.php:171
2989
+ msgid "Not compatible with your version of Profile Builder."
2990
+ msgstr "Nicht kompatibel mit deiner Version von Profile Builder."
2991
+
2992
+ #: profile-builder-2.0/admin/add-ons.php:172
2993
+ msgid "Minimum required Profile Builder version:"
2994
+ msgstr "Minimal benötigte Version von Profile Builder:"
2995
+
2996
+ #: profile-builder-2.0/admin/add-ons.php:177
2997
+ msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
2998
+ msgstr "Add-On konnte nicht installiert werden. Erneut versuchen oder <a href=\"%s\" target=\"_blank\">manuell installieren</a>."
2999
+
3000
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3001
+ msgid "You must enter a valid email address."
3002
+ msgstr "Sie müssen eine gültige E-Mail Adresse angeben."
3003
+
3004
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3005
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3006
+ msgid "This username is invalid because it uses illegal characters."
3007
+ msgstr "Der Benutzername ist ungültig, da dieser ungültige Zeichen enthält."
3008
+
3009
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3010
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3011
+ msgid "Please enter a valid username."
3012
+ msgstr "Bitte gebe einen gültigen Benutzernamen ein."
3013
+
3014
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:72
3015
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:85
3016
+ msgid "Only administrators can see this field on edit profile forms."
3017
+ msgstr "Nur Administratoren können dieses Feld beim editieren von Profilformularen sehen."
3018
+
3019
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:81
3020
+ msgid "As an administrator you cannot change your role."
3021
+ msgstr "Als Administrator kannst du deine Berechtigungen nicht ändern."
3022
+
3023
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3024
+ msgid ""
3025
+ "\n"
3026
+ "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3027
+ "<p>His/her new password is: {{password}}</p>\n"
3028
+ msgstr ""
3029
+
3030
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3031
+ msgid "Admin Notification for User Password Reset"
3032
+ msgstr "Admin Notiz für das Zurücksetzen eines Passwortes von einem Benutzer"
3033
+
3034
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
3035
+ msgid "Reset Key"
3036
+ msgstr "Zurücksetzungs-Key"
3037
+
3038
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:43
3039
+ msgid "Reset Url"
3040
+ msgstr "Zurücksetzungs-URL"
3041
+
3042
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:44
3043
+ msgid "Reset Link"
3044
+ msgstr "Zurücksetzungs-Link"
3045
+
3046
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3047
+ msgid ""
3048
+ "\n"
3049
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3050
+ "Username: {{username}}</p>\n"
3051
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
3052
+ "<p>To reset your password, visit the following address:<br/>\n"
3053
+ "{{{reset_link}}}</p>\n"
3054
+ msgstr ""
3055
+
3056
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3057
+ msgid "[{{site_name}}] Password Reset"
3058
+ msgstr "[{{site_name}}] Passwortzurücksetzung"
3059
+
3060
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3061
+ msgid "Password Reset Email"
3062
+ msgstr "E-Mail für die Passwortzurücksetzung"
3063
+
3064
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3065
+ msgid ""
3066
+ "\n"
3067
+ "<p>You have successfully reset your password to: {{password}}</p>\n"
3068
+ msgstr "<p>Du hast dein Passwort erfolgreich zurückgesetzt: {{password}}</p>"
3069
+
3070
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3071
+ msgid "[{{site_name}}] Password Reset Successfully"
3072
+ msgstr "[{{site_name}}] Passwortzurücksetzung erfolgreich"
3073
+
3074
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3075
+ msgid "Password Reset Success Email"
3076
+ msgstr "Passwort zurücksetzen erfolgreich Email"
3077
+
3078
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:152
3079
+ msgid "User Nicename"
3080
+ msgstr "Benutzername"
3081
+
3082
+ #: pb-add-on-woocommerce/woosync-page.php:80
3083
+ #: pb-add-on-woocommerce/woosync-page.php:114
3084
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:486
3085
+ msgid "None"
3086
+ msgstr "Nichts"
3087
+
3088
+ #: profile-builder-2.0/admin/admin-functions.php:128
3089
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3090
+ msgstr "<strong>FEHLER</strong>: Das Passwort muss mindestens %s Zeichen lang sein"
3091
+
3092
+ #: profile-builder-2.0/admin/admin-functions.php:145
3093
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3094
+ msgstr "<strong>FEHLER</strong>: Das Passwort muss eine Mindeststärke von %s haben"
3095
+
3096
+ #: profile-builder-2.0/admin/general-settings.php:163
3097
+ msgid "Username and Email"
3098
+ msgstr "Benutzername und E-Mail"
3099
+
3100
+ #: profile-builder-2.0/admin/general-settings.php:168
3101
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
3102
+ msgstr "\"Benutzername und E-Mail\" - Benutzer können sich mit Ihrem Benutzernamen und EMail-Adresse anmelden."
3103
+
3104
+ #: profile-builder-2.0/admin/general-settings.php:169
3105
+ msgid "\"Username\" - users can Log In only with Username."
3106
+ msgstr "\"Benutzername\" - Benutzer können sich nur mit Ihrem Benutzernamen anmelden"
3107
+
3108
+ #: profile-builder-2.0/admin/general-settings.php:170
3109
+ msgid "\"Email\" - users can Log In only with Email."
3110
+ msgstr "\"E-Mail\" - Benutzer können sich nur mit Ihrer E-Mail-Adresse anmelden."
3111
+
3112
+ #: profile-builder-2.0/admin/manage-fields.php:119
3113
+ 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 (.*)"
3114
+ msgstr ""
3115
+ "Gib die Datei-Erweiterung(en) ein, die du für den Upload erlauben möchtest.<br/>\n"
3116
+ "z.B.: .ext1,.ext2,.ext3<br/>Bei keiner Eingabe werden die Standard-Erweiterungen gesetzt: .jpg,.jpeg,.gif,.png (.*)"
3117
+
3118
+ #: profile-builder-2.0/admin/manage-fields.php:120
3119
+ 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 (.*)"
3120
+ 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: (.*)"
3121
+
3122
+ #: profile-builder-2.0/admin/manage-fields.php:130
3123
+ msgid "User Roles"
3124
+ msgstr "Benutzerrollen"
3125
+
3126
+ #: profile-builder-2.0/admin/manage-fields.php:130
3127
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3128
+ msgstr "Wähle, welche Benutzerrollen dem Benutzer gezeigt werden sollen (Drag & Drop zum Neusortieren)"
3129
+
3130
+ #: profile-builder-2.0/admin/manage-fields.php:131
3131
+ msgid "User Roles Order"
3132
+ msgstr "Benutzerrollen Sortierung"
3133
+
3134
+ #: profile-builder-2.0/admin/manage-fields.php:131
3135
+ msgid "Save the user role order from the user roles checkboxes"
3136
+ msgstr "Speichere die Reihenfolge der Benutzerrollen-Checkboxen"
3137
+
3138
+ #: profile-builder-2.0/admin/manage-fields.php:1111
3139
+ msgid "Please select at least one user role\n"
3140
+ msgstr "Bitte wählen Sie mindestens eine Benutzerrolle\n"
3141
+
3142
+ #: profile-builder-2.0/admin/register-version.php:22
3143
+ msgid "Profile Builder Register"
3144
+ msgstr "Profile Builder Registrierung"
3145
+
3146
+ #: profile-builder-2.0/admin/register-version.php:81
3147
+ msgid "The serial number is about to expire soon!"
3148
+ msgstr "Die Seriennummer wird bald ablaufen!"
3149
+
3150
+ #: profile-builder-2.0/admin/register-version.php:81
3151
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3152
+ msgstr "Ihre Seriennummer wird bald ablaufen, bitte %1$ erneuere deine Lizenz%2$s."
3153
+
3154
+ #: profile-builder-2.0/admin/register-version.php:83
3155
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3156
+ msgstr "Ihre Seriennummer ist abgelaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s."
3157
+
3158
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:340
3159
+ msgid "Add Entry"
3160
+ msgstr "Eintrag hinzufügen"
3161
+
3162
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3163
+ msgid "show"
3164
+ msgstr "anzeigen"
3165
+
3166
+ #: profile-builder-2.0/features/functions.php:763
3167
+ 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"
3168
+ msgstr "Damit sich Benutzer auf Ihre Website über Profile Builder registrieren können, musst du zunächst die Benutzerregistrierung ermöglichen. Gehe dazu nach %1$sEinstellungen -> Allgemein%2$s und stelle unter unter Mitgliedschaft sicher, dass das Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sVerwerfen%4$s"
3169
+
3170
+ #: profile-builder-2.0/front-end/class-formbuilder.php:681
3171
+ msgid "User to edit:"
3172
+ msgstr "Benutzer editieren"
3173
+
3174
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3175
+ #: profile-builder-2.0/front-end/recover.php:251
3176
+ msgid "The password must have the minimum length of %s characters"
3177
+ msgstr "Das Passwort muss mindestes %s Zeichen haben"
3178
+
3179
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3180
+ #: profile-builder-2.0/front-end/recover.php:255
3181
+ msgid "The password must have a minimum strength of %s"
3182
+ msgstr "Das Passwort muss eine Mindeststärke von %s haben"
3183
+
3184
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:118
3185
+ msgid "You cannot register this user role"
3186
+ msgstr "Sie können diese Benutzerrolle nicht registrieren"
3187
+
3188
+ #: profile-builder-2.0/front-end/login.php:153
3189
+ msgid "username or email"
3190
+ msgstr "Benutzername oder E-Mail-Adresse"
3191
+
3192
+ #: profile-builder-2.0/front-end/login.php:229
3193
+ msgid "Username or Email"
3194
+ msgstr "Benutzername oder E-Mail-Adresse"
3195
+
3196
+ #: profile-builder-2.0/front-end/logout.php:15
3197
+ msgid "You are currently logged in as %s. "
3198
+ msgstr "Du bist eingeloggt als %s."
3199
+
3200
+ #: profile-builder-2.0/front-end/logout.php:15
3201
+ msgid "Log out &raquo;"
3202
+ msgstr "Ausloggen &raquo;"
3203
+
3204
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3205
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3206
+ msgid "User Role"
3207
+ msgstr "Benutzerrolle"
3208
+
3209
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2046
3210
+ msgid "View all extra shortcode parameters"
3211
+ msgstr "Alle zusätzlichen Shortcode-Parameter anzeigen"
3212
+
3213
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2060
3214
+ msgid "displays only the users that you specified the user_id for"
3215
+ msgstr "Nur die Benutzer anzeigen, denen du die user_id vergeben hast"
3216
+
3217
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2066
3218
+ msgid "displays all users except the ones you specified the user_id for"
3219
+ msgstr "Zeigt alle Benutzer an, außer diejenigen, denen du eine user_id gegeben hast."
3220
+
3221
+ #: profile-builder-2.0/features/functions.php:593
3222
+ msgid "Minimum length of %d characters"
3223
+ msgstr "Mindestlänge: %d Zeichen"
3224
+
3225
+ #: profile-builder-2.0/front-end/class-formbuilder.php:171
3226
+ #: profile-builder-2.0/front-end/class-formbuilder.php:174
3227
+ msgid "This message is only visible by administrators"
3228
+ msgstr "Diese Nachricht ist nur für Administratoren sichtbar"
3229
+
3230
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:404
3231
+ msgid "User not found"
3232
+ msgstr "Der Benutzer wurde nicht gefunden."
3233
+
3234
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3235
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3236
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
3237
+ msgstr "Gültige Tags {{reply_to}} und {{site_name}}"
3238
+
3239
+ #: profile-builder-2.0/admin/admin-bar.php:48
3240
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3241
+ msgstr "Wähle, welche Benutzerrollen du in der Admin Bar im Front-End der Website sehen möchtest."
3242
+
3243
+ #: profile-builder-2.0/admin/manage-fields.php:124
3244
+ 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"
3245
+ msgstr "Gib 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"
3246
+
3247
+ #: profile-builder-2.0/admin/manage-fields.php:1038
3248
+ msgid "The meta-name cannot be empty\n"
3249
+ msgstr "Der Meta-Name darf nicht leer sein\n"
3250
+
3251
+ #: profile-builder-2.0/admin/register-version.php:69
3252
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3253
+ msgstr "Du hast eine Kopie von %s erworben. Du solltest dir die Zeit nehmen, um deine Seriennummer zu registrieren."
3254
+
3255
+ #: profile-builder-2.0/admin/register-version.php:243
3256
+ 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>"
3257
+ msgstr "<p> Deine <strong>Profil Builder</strong> Seriennummer ist ungültig oder fehlt.<br/> Bitte %1$s registriere deine Kopie %2$s damit du Zugang zu automatischen Updates und Support erhalten kannst. Benötigst du noch einen Lizenzschlüssel? %3$s Kaufe jetzt eine%4$s </p>"
3258
+
3259
+ #: profile-builder-2.0/admin/register-version.php:246
3260
+ 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>"
3261
+ msgstr ""
3262
+ "<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"
3263
+ "entlassen%6$s </p>"
3264
+
3265
+ #: profile-builder-2.0/admin/register-version.php:251
3266
+ 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>"
3267
+ 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>"
3268
+
3269
+ #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3270
+ #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3271
+ #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3272
+ #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3273
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:32
3274
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:54
3275
+ msgid "...Choose"
3276
+ msgstr "...wähle"
3277
+
3278
+ #: profile-builder-2.0/features/class-list-table.php:526
3279
+ #: profile-builder-2.0/features/class-list-table.php:942
3280
+ msgid "1 item"
3281
+ msgstr "1 Artikel"
3282
+
3283
+ #: profile-builder-2.0/features/functions.php:579
3284
+ msgid "Very Weak"
3285
+ msgstr "sehr schwach"
3286
+
3287
+ #: profile-builder-2.0/features/functions.php:667
3288
+ msgid "This field is required"
3289
+ msgstr "Dieses Feld ist erforderlich"
3290
+
3291
+ #: profile-builder-2.0/features/functions.php:731
3292
+ msgid "Cancel"
3293
+ msgstr "Abbrechen"
3294
+
3295
+ #: profile-builder-2.0/features/functions.php:767
3296
+ 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"
3297
+ msgstr ""
3298
+ "Damit sich Benutzer auf deiner Website über Profile Builder registrieren können, musst du zunächst die Benutzerregistrierung ermöglichen. Gehe dazu unter %1$sEinstellungen -> Allgemein%2$s und stelle unter Mitgliedschaft sicher, dass das\n"
3299
+ "Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sentlassen%4$s"
3300
+
3301
+ #: profile-builder-2.0/front-end/login.php:144
3302
+ msgid "Invalid username."
3303
+ msgstr "Ungültiger Benutzername."
3304
+
3305
+ #: profile-builder-2.0/front-end/login.php:149
3306
+ #: profile-builder-2.0/front-end/login.php:153
3307
+ msgid "username"
3308
+ msgstr "Benutzername"
3309
+
3310
+ #: profile-builder-2.0/front-end/login.php:149
3311
+ msgid "email"
3312
+ msgstr "E-Mail-Adresse"
3313
+
3314
+ #: profile-builder-2.0/front-end/login.php:263
3315
+ msgid "Lost your password?"
3316
+ msgstr "Passwort vergessen?"
3317
+
3318
+ #: profile-builder-2.0/index.php:34
3319
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3320
+ msgstr "ist ebenfalls aktiviert. Du musst es vor der Aktivierung dieser Version des Plugins deaktivieren."
3321
+
3322
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3323
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3324
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3325
+ 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."
3326
+
3327
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:565
3328
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3329
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:470
3330
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:477
3331
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:491
3332
+ msgid "Your selected password at signup"
3333
+ msgstr "Das von Ihnen gewählte Anmeldepasswort"
3334
+
3335
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3336
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3337
+ msgstr "Diese Einstellungen werden nach dem Abspeichern auch auf der Einstellungs-Seite \"Admin-E-Mail Anpassungen\" angezeigt."
3338
+
3339
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3340
+ msgid "This form is empty."
3341
+ msgstr "Dieses Formular ist leer."
3342
+
3343
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3344
+ msgid "Delete all items"
3345
+ msgstr "Lösche alle Einträge"
3346
+
3347
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3348
+ msgid "Delete all"
3349
+ msgstr "alles löschen"
3350
+
3351
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3352
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1551
3353
+ msgid "Choose..."
3354
+ msgstr "Wähle..."
3355
+
3356
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2137
3357
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3358
+ msgstr "Bestimme die Anzahl der Benutzer, die pro Seite auf der Benutzerliste angezeigt werden sollen."
3359
+
3360
+ #: profile-builder-2.0/admin/admin-bar.php:10
3361
+ msgid "Show/Hide the Admin Bar on the Front-End"
3362
+ msgstr "Anzeigen/Verbergen der Admin Bar auf dem Front-End"
3363
+
3364
+ #: profile-builder-2.0/admin/admin-bar.php:10
3365
+ #: profile-builder-2.0/admin/admin-bar.php:47
3366
+ msgid "Admin Bar Settings"
3367
+ msgstr "Admin Bar Einstellungen"
3368
+
3369
+ #: profile-builder-2.0/admin/admin-bar.php:57
3370
+ msgid "User-Role"
3371
+ msgstr "Benutzerrolle"
3372
+
3373
+ #: profile-builder-2.0/admin/admin-bar.php:58
3374
+ msgid "Visibility"
3375
+ msgstr "Sichtbarkeit"
3376
+
3377
+ #: profile-builder-2.0/admin/admin-bar.php:73
3378
+ msgid "Default"
3379
+ msgstr "Default"
3380
+
3381
+ #: profile-builder-2.0/admin/admin-bar.php:74
3382
+ msgid "Show"
3383
+ msgstr "Anzeigen"
3384
+
3385
+ #: profile-builder-2.0/admin/admin-bar.php:75
3386
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1496
3387
+ msgid "Hide"
3388
+ msgstr "Verbergen"
3389
+
3390
+ #: pb-add-on-woocommerce/woosync-page.php:147
3391
+ #: profile-builder-2.0/admin/admin-bar.php:86
3392
+ #: profile-builder-2.0/admin/general-settings.php:208
3393
+ #: profile-builder-2.0/admin/register-version.php:95
3394
+ #: profile-builder-2.0/features/functions.php:724
3395
+ #: profile-builder-2.0/modules/modules.php:127
3396
+ msgid "Save Changes"
3397
+ msgstr "Änderungen speichern"
3398
+
3399
+ #: profile-builder-2.0/admin/admin-functions.php:34
3400
+ 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 )"
3401
+ msgstr "Anmeldung soll über die E-Mail-Adresse erfolgen. Dieses Feld erscheint NICHT im Front-End! (Du kannst diese Einstellungen unter der Registerkarte \"%s\" ändern)"
3402
+
3403
+ #: profile-builder-2.0/admin/admin-functions.php:34
3404
+ #: profile-builder-2.0/admin/general-settings.php:10
3405
+ #: profile-builder-2.0/admin/general-settings.php:38
3406
+ msgid "General Settings"
3407
+ msgstr "Allgemeine Einstellungen"
3408
+
3409
+ #: profile-builder-2.0/admin/admin-functions.php:134
3410
+ #: profile-builder-2.0/admin/general-settings.php:194
3411
+ msgid "Very weak"
3412
+ msgstr "sehr unsicher"
3413
+
3414
+ #: profile-builder-2.0/admin/admin-functions.php:134
3415
+ #: profile-builder-2.0/admin/general-settings.php:195
3416
+ #: profile-builder-2.0/features/functions.php:579
3417
+ msgid "Weak"
3418
+ msgstr "unsicher"
3419
+
3420
+ #: profile-builder-2.0/admin/admin-functions.php:134
3421
+ #: profile-builder-2.0/admin/general-settings.php:196
3422
+ #: profile-builder-2.0/features/functions.php:579
3423
+ msgid "Medium"
3424
+ msgstr "geht so"
3425
+
3426
+ #: profile-builder-2.0/admin/admin-functions.php:134
3427
+ #: profile-builder-2.0/admin/general-settings.php:197
3428
+ #: profile-builder-2.0/features/functions.php:579
3429
+ msgid "Strong"
3430
+ msgstr "sicher"
3431
+
3432
+ #: profile-builder-2.0/admin/admin-functions.php:184
3433
+ msgid "Add Field"
3434
+ msgstr "Feld hinzufügen"
3435
+
3436
+ #: profile-builder-2.0/admin/admin-functions.php:186
3437
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3438
+ msgid "Save Settings"
3439
+ msgstr "Einstellungen speichern"
3440
+
3441
+ #: profile-builder-2.0/admin/basic-info.php:10
3442
+ msgid "Basic Information"
3443
+ msgstr "Grundlegende Informationen"
3444
+
3445
+ #: profile-builder-2.0/admin/basic-info.php:29
3446
+ msgid "Version %s"
3447
+ msgstr "Version %s"
3448
+
3449
+ #: profile-builder-2.0/admin/basic-info.php:30
3450
+ msgid "<strong>Profile Builder </strong>"
3451
+ msgstr "<strong>Profil Builder</strong>"
3452
+
3453
+ #: profile-builder-2.0/admin/basic-info.php:31
3454
+ msgid "The best way to add front-end registration, edit profile and login forms."
3455
+ msgstr "Der beste Weg, um Front-End-Registrierung hinzuzufügen ist die Profil und Login-Formulare zu bearbeiten."
3456
+
3457
+ #: profile-builder-2.0/admin/basic-info.php:33
3458
+ msgid "For Modern User Interaction"
3459
+ msgstr "Für die moderne Benutzerinteraktion"
3460
+
3461
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3462
+ #: profile-builder-2.0/admin/basic-info.php:36
3463
+ #: profile-builder-2.0/features/login-widget/login-widget.php:59
3464
+ msgid "Login"
3465
+ msgstr "Login"
3466
+
3467
+ #: profile-builder-2.0/admin/basic-info.php:40
3468
+ msgid "Registration"
3469
+ msgstr "Registrierung"
3470
+
3471
+ #: profile-builder-2.0/admin/basic-info.php:44
3472
+ msgid "Edit Profile"
3473
+ msgstr "Profil bearbeiten"
3474
+
3475
+ #: profile-builder-2.0/admin/basic-info.php:51
3476
+ msgid "Extra Features"
3477
+ msgstr "Extra-Features"
3478
+
3479
+ #: profile-builder-2.0/admin/basic-info.php:52
3480
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3481
+ msgstr "Funktionen, die Ihnen mehr Kontrolle über Ihre Benutzer und erhöhte Sicherheit bietet und gegen Registrierungs-Spam von Nutzern hilft."
3482
+
3483
+ #: profile-builder-2.0/admin/basic-info.php:53
3484
+ msgid "Enable extra features"
3485
+ msgstr "Zusätzliche Features aktivieren"
3486
+
3487
+ #: profile-builder-2.0/admin/basic-info.php:57
3488
+ msgid "Recover Password"
3489
+ msgstr "Passwort wiederherstellen"
3490
+
3491
+ #: profile-builder-2.0/admin/basic-info.php:61
3492
+ msgid "Admin Approval (*)"
3493
+ msgstr "Admin-Zulassung (*)"
3494
+
3495
+ #: profile-builder-2.0/admin/basic-info.php:62
3496
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3497
+ msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen."
3498
+
3499
+ #: profile-builder-2.0/admin/basic-info.php:65
3500
+ msgid "Email Confirmation"
3501
+ msgstr "E-Mail-Bestätigung"
3502
+
3503
+ #: profile-builder-2.0/admin/basic-info.php:66
3504
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3505
+ msgstr "Stelle 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."
3506
+
3507
+ #: profile-builder-2.0/admin/basic-info.php:69
3508
+ msgid "Minimum Password Length and Strength Meter"
3509
+ msgstr "Minimale Kennwortlänge und Feldstärke-Messgerät"
3510
+
3511
+ #: profile-builder-2.0/admin/basic-info.php:70
3512
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3513
+ msgstr "Beseitige schwache Kennwörter insgesamt, indem du eine minimale Kennwortlänge und Durchsetzung einer bestimmten Passwortstärke aktivierst."
3514
+
3515
+ #: profile-builder-2.0/admin/basic-info.php:73
3516
+ msgid "Login with Email or Username"
3517
+ msgstr "Login mit E-Mail oder Benutzername"
3518
+
3519
+ #: profile-builder-2.0/admin/basic-info.php:74
3520
+ msgid "Allow users to log in with their email or username when accessing your site."
3521
+ msgstr "Erlaube Benutzern, sich mit ihrer E-Mail-Adresse oder ihrem Benutzername anzumelden, wenn diese auf deine Seite zugreifen möchten. "
3522
+
3523
+ #: profile-builder-2.0/admin/basic-info.php:87
3524
+ msgid "Customize Your Forms The Way You Want (*)"
3525
+ msgstr "Passen Sie die Formulare wie Sie wollen an (*)"
3526
+
3527
+ #: profile-builder-2.0/admin/basic-info.php:88
3528
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3529
+ msgstr "Mit zusätzlichen Profil-Felder kannst du genau die Anmeldeformulare erstellen, die dein Projekt benötigt."
3530
+
3531
+ #: profile-builder-2.0/admin/basic-info.php:90
3532
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3533
+ msgstr "Zusätzliche Profil-Felder erhälst du mit den Hobbyist oder PRO Versionen. "
3534
+
3535
+ #: profile-builder-2.0/admin/basic-info.php:92
3536
+ msgid "Get started with extra fields"
3537
+ msgstr "Erste Schritte mit extra Felder"
3538
+
3539
+ #: profile-builder-2.0/admin/basic-info.php:95
3540
+ msgid "Avatar Upload"
3541
+ msgstr "Profilbild hochladen"
3542
+
3543
+ #: profile-builder-2.0/admin/basic-info.php:96
3544
+ msgid "Generic Uploads"
3545
+ msgstr "Generische Uploads"
3546
+
3547
+ #: profile-builder-2.0/admin/basic-info.php:97
3548
+ msgid "Agree To Terms Checkbox"
3549
+ msgstr "AGB-Checkbox"
3550
+
3551
+ #: profile-builder-2.0/admin/basic-info.php:98
3552
+ msgid "Datepicker"
3553
+ msgstr "Datepicker"
3554
+
3555
+ #: profile-builder-2.0/admin/basic-info.php:101
3556
+ msgid "reCAPTCHA"
3557
+ msgstr "reCAPTCHA"
3558
+
3559
+ #: profile-builder-2.0/admin/basic-info.php:102
3560
+ msgid "Country Select"
3561
+ msgstr "Land auswählen"
3562
+
3563
+ #: profile-builder-2.0/admin/basic-info.php:104
3564
+ msgid "Timezone Select"
3565
+ msgstr "Zeitzone auswählen"
3566
+
3567
+ #: profile-builder-2.0/admin/basic-info.php:108
3568
+ msgid "Input / Hidden Input"
3569
+ msgstr "Eingabe / versteckte Eingabe"
3570
+
3571
+ #: profile-builder-2.0/admin/basic-info.php:110
3572
+ msgid "Checkbox"
3573
+ msgstr "Checkbox"
3574
+
3575
+ #: profile-builder-2.0/admin/basic-info.php:111
3576
+ msgid "Select"
3577
+ msgstr "Auswahl"
3578
+
3579
+ #: profile-builder-2.0/admin/basic-info.php:112
3580
+ msgid "Radio Buttons"
3581
+ msgstr "Optionsfelder"
3582
+
3583
+ #: profile-builder-2.0/admin/basic-info.php:113
3584
+ msgid "Textarea"
3585
+ msgstr "Text-bereich"
3586
+
3587
+ #: profile-builder-2.0/admin/basic-info.php:125
3588
+ msgid "Powerful Modules (**)"
3589
+ msgstr "Leistungsstarke Module (*)"
3590
+
3591
+ #: profile-builder-2.0/admin/basic-info.php:126
3592
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3593
+ msgstr "Alles, was du benötigst, um deine Benutzer zu verwalten ist wahrscheinlich schon über die Pro-Module verfügbar."
3594
+
3595
+ #: profile-builder-2.0/admin/basic-info.php:128
3596
+ msgid "Enable your modules"
3597
+ msgstr "Aktiviere deine Module"
3598
+
3599
+ #: profile-builder-2.0/admin/basic-info.php:131
3600
+ msgid "Find out more about PRO Modules"
3601
+ msgstr "Erfahre mehr über die PRO-Module"
3602
+
3603
+ #: profile-builder-2.0/admin/basic-info.php:136
3604
+ #: profile-builder-2.0/modules/modules.php:89
3605
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3606
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3607
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3608
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3609
+ msgid "User Listing"
3610
+ msgstr "Benutzer-Liste"
3611
+
3612
+ #: profile-builder-2.0/admin/basic-info.php:138
3613
+ 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."
3614
+ 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."
3615
+
3616
+ #: profile-builder-2.0/admin/basic-info.php:144
3617
+ msgid "Email Customizer"
3618
+ msgstr "E-Mail Anpassungen"
3619
+
3620
+ #: profile-builder-2.0/admin/basic-info.php:145
3621
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3622
+ msgstr "Personalisiere alle E-Mails die an Benutzer oder Administratoren gesendet werden. Bei der Registrierung, E-Mail-Bestätigung, Admin Genehmigung / un-Zulassung."
3623
+
3624
+ #: profile-builder-2.0/admin/basic-info.php:148
3625
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3626
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3627
+ #: profile-builder-2.0/modules/modules.php:110
3628
+ msgid "Custom Redirects"
3629
+ msgstr "Benutzerdefinierte Umleitungen"
3630
+
3631
+ #: profile-builder-2.0/admin/basic-info.php:149
3632
+ 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."
3633
+ msgstr "Sperre deine Benutzer aus dem WordPress-Dashboard aus und leite sie nach dem Login oder nach der Registrierung auf die Startseite weiter."
3634
+
3635
+ #: profile-builder-2.0/admin/basic-info.php:154
3636
+ #: profile-builder-2.0/modules/modules.php:75
3637
+ msgid "Multiple Registration Forms"
3638
+ msgstr "Mehrere Anmeldeformulare"
3639
+
3640
+ #: profile-builder-2.0/admin/basic-info.php:155
3641
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3642
+ msgstr "Richten Sie mehrere Anmeldeformulare mit verschiedenen Feldern für bestimmte Benutzerrollen ein. Erfassen Sie verschiedene Informationen von verschiedene Arten von Benutzern."
3643
+
3644
+ #: profile-builder-2.0/admin/basic-info.php:158
3645
+ #: profile-builder-2.0/modules/modules.php:82
3646
+ msgid "Multiple Edit-profile Forms"
3647
+ msgstr "Mehrere Profilbearbeitungs-Formulare"
3648
+
3649
+ #: profile-builder-2.0/admin/basic-info.php:159
3650
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3651
+ msgstr "Ermöglichen Sie verschiedenen Benutzerrollen, ihre spezifischen Informationen zu bearbeiten. Errichten Sie mehrere Profil Bearbeitungs-Formulare mit verschiedenen Felder für bestimmte Benutzerrollen."
3652
+
3653
+ #: profile-builder-2.0/admin/basic-info.php:187
3654
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3655
+ msgstr "* nur verfügbar in den %1$sHobbyist und Pro-Versionen %2$s."
3656
+
3657
+ #: profile-builder-2.0/admin/basic-info.php:188
3658
+ msgid "** only available in the %1$sPro version%2$s."
3659
+ msgstr "** nur in der %1$sPro Version%2$s verfügbar."
3660
+
3661
+ #: profile-builder-2.0/admin/general-settings.php:42
3662
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3663
+ msgstr "Laden Sie die CSS-Datei vom Profil-Generator in die Front-End hoch"
3664
+
3665
+ #: profile-builder-2.0/admin/general-settings.php:45
3666
+ #: profile-builder-2.0/admin/general-settings.php:58
3667
+ #: profile-builder-2.0/admin/general-settings.php:107
3668
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3669
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3670
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2142
3671
+ msgid "Yes"
3672
+ msgstr "Ja"
3673
+
3674
+ #: profile-builder-2.0/admin/general-settings.php:47
3675
+ msgid "You can find the default file here: %1$s"
3676
+ msgstr "Sie finden die Standard-Datei hier:%1$s"
3677
+
3678
+ #: profile-builder-2.0/admin/general-settings.php:54
3679
+ msgid "\"Email Confirmation\" Activated:"
3680
+ msgstr "\"E-Mail-Bestätigung\" aktiviert:"
3681
+
3682
+ #: profile-builder-2.0/admin/general-settings.php:59
3683
+ #: profile-builder-2.0/admin/general-settings.php:108
3684
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3685
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3686
+ msgid "No"
3687
+ msgstr "Nein"
3688
+
3689
+ #: profile-builder-2.0/admin/general-settings.php:64
3690
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3691
+ msgstr "Sie können eine Liste der unbestätigten Emailadressen unter %1$sUsers > alle Benutzer > E-Mail Bestätigung%2$s finden."
3692
+
3693
+ #: profile-builder-2.0/admin/general-settings.php:72
3694
+ msgid "\"Email Confirmation\" Landing Page:"
3695
+ msgstr "\"E-Mail-Bestätigung\" Landeseite:"
3696
+
3697
+ #: profile-builder-2.0/admin/general-settings.php:77
3698
+ msgid "Existing Pages"
3699
+ msgstr "Vorhandene Seiten"
3700
+
3701
+ #: profile-builder-2.0/admin/general-settings.php:92
3702
+ 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."
3703
+ 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."
3704
+
3705
+ #: profile-builder-2.0/admin/general-settings.php:103
3706
+ msgid "\"Admin Approval\" Activated:"
3707
+ msgstr "\"Admin Genehmigung\" aktiviert:"
3708
+
3709
+ #: profile-builder-2.0/admin/general-settings.php:111
3710
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3711
+ msgstr "Sie können eine Liste mit allen Benutzer unter %1$sUsers > alle Benutzer > Admin Genehmigung%2$s finden."
3712
+
3713
+ #: profile-builder-2.0/admin/general-settings.php:149
3714
+ msgid "\"Admin Approval\" Feature:"
3715
+ msgstr "\"Admin Genehmigung\" Feature:"
3716
+
3717
+ #: profile-builder-2.0/admin/general-settings.php:152
3718
+ 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."
3719
+ msgstr "Sie entscheiden, wer als Benutzer auf Ihrer Website freigeschaltet wird. Sie können Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen. Aktivieren Sie die Admin-Genehmigung mit einem Upgrade auf %1$s die Hobbyist oder PRO Version %2$s."
3720
+
3721
+ #: profile-builder-2.0/admin/general-settings.php:159
3722
+ msgid "Allow Users to Log in With:"
3723
+ msgstr "Benutzerberechtigungen zum Einloggen mit:"
3724
+
3725
+ #: profile-builder-2.0/admin/general-settings.php:164
3726
+ #: profile-builder-2.0/admin/manage-fields.php:195
3727
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3728
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3729
+ #: profile-builder-2.0/front-end/login.php:85
3730
+ #: profile-builder-2.0/front-end/login.php:99
3731
+ #: profile-builder-2.0/front-end/login.php:225
3732
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3733
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3734
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:101
3735
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:268
3736
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:704
3737
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2098
3738
+ msgid "Username"
3739
+ msgstr "Benutzername"
3740
+
3741
+ #: profile-builder-2.0/admin/general-settings.php:165
3742
+ #: profile-builder-2.0/front-end/login.php:222
3743
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3744
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:710
3745
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2099
3746
+ msgid "Email"
3747
+ msgstr "E-Mail"
3748
+
3749
+ #: profile-builder-2.0/admin/general-settings.php:177
3750
+ msgid "Minimum Password Length:"
3751
+ msgstr "Minimale Kennwortlänge:"
3752
+
3753
+ #: profile-builder-2.0/admin/general-settings.php:182
3754
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3755
+ msgstr "Geben Sie die minimalen Zeichen ein, die das Kennwort haben sollten. Lassen Sie es leer für keine Untergrenze"
3756
+
3757
+ #: profile-builder-2.0/admin/general-settings.php:189
3758
+ msgid "Minimum Password Strength:"
3759
+ msgstr "Minimale Passwortstärke:"
3760
+
3761
+ #: profile-builder-2.0/admin/general-settings.php:193
3762
+ msgid "Disabled"
3763
+ msgstr "Deaktiviert"
3764
+
3765
+ #: profile-builder-2.0/admin/manage-fields.php:12
3766
+ msgid "Manage Fields"
3767
+ msgstr "Felder verwalten"
3768
+
3769
+ #: profile-builder-2.0/admin/manage-fields.php:13
3770
+ msgid "Manage Default and Extra Fields"
3771
+ msgstr "Verwalten von Standard- und Extra Felder"
3772
+
3773
+ #: profile-builder-2.0/admin/manage-fields.php:113
3774
+ msgid "Field Title"
3775
+ msgstr "Feldtitel"
3776
+
3777
+ #: profile-builder-2.0/admin/manage-fields.php:113
3778
+ msgid "Title of the field"
3779
+ msgstr "Titel des Feldes"
3780
+
3781
+ #: profile-builder-2.0/admin/manage-fields.php:114
3782
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3783
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3784
+ msgid "Field"
3785
+ msgstr "Feld"
3786
+
3787
+ #: profile-builder-2.0/admin/manage-fields.php:115
3788
+ msgid "Meta-name"
3789
+ msgstr "Meta-name "
3790
+
3791
+ #: profile-builder-2.0/admin/manage-fields.php:116
3792
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3793
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3794
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3795
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3796
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3797
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3798
+ msgid "ID"
3799
+ msgstr "ID"
3800
+
3801
+ #: profile-builder-2.0/admin/manage-fields.php:116
3802
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3803
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3804
+ 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"
3805
+ 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"
3806
+
3807
+ #: profile-builder-2.0/admin/manage-fields.php:117
3808
+ msgid "Description"
3809
+ msgstr "Beschreibung"
3810
+
3811
+ #: profile-builder-2.0/admin/manage-fields.php:117
3812
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3813
+ msgstr "Geben Sie eine (ausführliche) Beschreibung der Option ein die die Endbenutzer lesen können <br/> Optional"
3814
+
3815
+ #: profile-builder-2.0/admin/manage-fields.php:118
3816
+ msgid "Row Count"
3817
+ msgstr "Zeilenanzahl"
3818
+
3819
+ #: profile-builder-2.0/admin/manage-fields.php:118
3820
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3821
+ msgstr "Geben Sie die Anzahl der Zeilen für ein Text-Feld ein <br/> Wenn nicht angegeben, wird dieser standardmäßig auf 5 gesetzt."
3822
+
3823
+ #: profile-builder-2.0/admin/manage-fields.php:119
3824
+ msgid "Allowed Image Extensions"
3825
+ msgstr "Erlaubte Bild-Extensions"
3826
+
3827
+ #: profile-builder-2.0/admin/manage-fields.php:120
3828
+ msgid "Allowed Upload Extensions"
3829
+ msgstr "Zulässige Dateierweiterungen beim Hochladen"
3830
+
3831
+ #: profile-builder-2.0/admin/manage-fields.php:121
3832
+ msgid "Avatar Size"
3833
+ msgstr "Profilbild-Größe"
3834
+
3835
+ #: profile-builder-2.0/admin/manage-fields.php:121
3836
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3837
+ 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"
3838
+
3839
+ #: profile-builder-2.0/admin/manage-fields.php:122
3840
+ msgid "Date-format"
3841
+ msgstr "Datum-Format"
3842
+
3843
+ #: profile-builder-2.0/admin/manage-fields.php:122
3844
+ 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"
3845
+ msgstr "Geben Sie das Format des Datums beim Verwenden vom der Datumsauswahl ein.<br/> Gültige Formate: 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. "
3846
+
3847
+ #: profile-builder-2.0/admin/manage-fields.php:123
3848
+ msgid "Terms of Agreement"
3849
+ msgstr "Nutzungsbedingungen"
3850
+
3851
+ #: profile-builder-2.0/admin/manage-fields.php:123
3852
+ 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;"
3853
+ 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;"
3854
+
3855
+ #: profile-builder-2.0/admin/manage-fields.php:124
3856
+ msgid "Options"
3857
+ msgstr "Optionen"
3858
+
3859
+ #: profile-builder-2.0/admin/manage-fields.php:125
3860
+ msgid "Labels"
3861
+ msgstr "Beschriftung "
3862
+
3863
+ #: profile-builder-2.0/admin/manage-fields.php:125
3864
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
3865
+ msgstr "Geben Sie eine durch Kommas getrennte Liste der Beschriftungen ein.<br/>Sie ist für den Benutzer sichtbar."
3866
+
3867
+ #: profile-builder-2.0/admin/manage-fields.php:132
3868
+ msgid "Default Value"
3869
+ msgstr "Standardwert"
3870
+
3871
+ #: profile-builder-2.0/admin/manage-fields.php:132
3872
+ msgid "Default value of the field"
3873
+ msgstr "Standardwert des Feldes"
3874
+
3875
+ #: profile-builder-2.0/admin/manage-fields.php:133
3876
+ #: profile-builder-2.0/admin/manage-fields.php:135
3877
+ #: profile-builder-2.0/admin/manage-fields.php:136
3878
+ #: profile-builder-2.0/admin/manage-fields.php:137
3879
+ msgid "Default Option"
3880
+ msgstr "Standardoption"
3881
+
3882
+ #: profile-builder-2.0/admin/manage-fields.php:133
3883
+ msgid "Specify the option which should be selected by default"
3884
+ msgstr "Geben Sie die Option ein, die standardmäßig ausgewählt sein soll."
3885
+
3886
+ #: profile-builder-2.0/admin/manage-fields.php:134
3887
+ msgid "Default Option(s)"
3888
+ msgstr "Standard-Option(en)"
3889
+
3890
+ #: profile-builder-2.0/admin/manage-fields.php:134
3891
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3892
+ msgstr "Geben Sie die Option, die standardmäßig überprüft werden sollen, ein.<br/>Wenn mehrere Werte vorhanden sind, trennen Sie diese mit einem Komma."
3893
+
3894
+ #: profile-builder-2.0/admin/manage-fields.php:148
3895
+ msgid "Default Content"
3896
+ msgstr "Standard-Inhalt"
3897
+
3898
+ #: profile-builder-2.0/admin/manage-fields.php:148
3899
+ msgid "Default value of the textarea"
3900
+ msgstr "Standardwert der Textfeld-Komponente"
3901
+
3902
+ #: pb-add-on-woocommerce/index.php:306
3903
+ #: profile-builder-2.0/admin/manage-fields.php:155
3904
+ msgid "Required"
3905
+ msgstr "Erforderlich"
3906
+
3907
+ #: profile-builder-2.0/admin/manage-fields.php:155
3908
+ msgid "Whether the field is required or not"
3909
+ msgstr "Ob das Feld erforderlich ist oder nicht"
3910
+
3911
+ #: profile-builder-2.0/admin/manage-fields.php:156
3912
+ msgid "Overwrite Existing"
3913
+ msgstr "Existierende überschreiben"
3914
+
3915
+ #: profile-builder-2.0/admin/manage-fields.php:156
3916
+ 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"
3917
+ msgstr "Bei Auswahl \"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/> Benutzen auf eigene Gefahr!"
3918
+
3919
+ #: profile-builder-2.0/admin/manage-fields.php:162
3920
+ msgid "Field Properties"
3921
+ msgstr "Feld-Eigenschaften"
3922
+
3923
+ #: profile-builder-2.0/admin/manage-fields.php:175
3924
+ msgid "Registration & Edit Profile"
3925
+ msgstr "Registrierung & Profil-Bearbeitung"
3926
+
3927
+ #: profile-builder-2.0/admin/manage-fields.php:194
3928
+ msgid "Name"
3929
+ msgstr "Name"
3930
+
3931
+ #: profile-builder-2.0/admin/manage-fields.php:195
3932
+ msgid "Usernames cannot be changed."
3933
+ msgstr "Benutzernamen können nicht geändert werden."
3934
+
3935
+ #: pb-add-on-woocommerce/billing-fields.php:6
3936
+ #: pb-add-on-woocommerce/shipping-fields.php:6
3937
+ #: profile-builder-2.0/admin/manage-fields.php:196
3938
+ msgid "First Name"
3939
+ msgstr "Vorname"
3940
+
3941
+ #: pb-add-on-woocommerce/billing-fields.php:7
3942
+ #: pb-add-on-woocommerce/shipping-fields.php:7
3943
+ #: profile-builder-2.0/admin/manage-fields.php:197
3944
+ msgid "Last Name"
3945
+ msgstr "Nachname"
3946
+
3947
+ #: profile-builder-2.0/admin/manage-fields.php:198
3948
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:743
3949
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2106
3950
+ msgid "Nickname"
3951
+ msgstr "Spitzname"
3952
+
3953
+ #: profile-builder-2.0/admin/manage-fields.php:199
3954
+ msgid "Display name publicly as"
3955
+ msgstr "Name öffentlich anzeigen als"
3956
+
3957
+ #: profile-builder-2.0/admin/manage-fields.php:200
3958
+ msgid "Contact Info"
3959
+ msgstr "Kontaktdaten"
3960
+
3961
+ #: profile-builder-2.0/admin/manage-fields.php:201
3962
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
3963
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
3964
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:107
3965
+ msgid "E-mail"
3966
+ msgstr "E-Mail"
3967
+
3968
+ #: profile-builder-2.0/admin/manage-fields.php:202
3969
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
3970
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:110
3971
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:725
3972
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2100
3973
+ msgid "Website"
3974
+ msgstr "Webseite"
3975
+
3976
+ #: profile-builder-2.0/admin/manage-fields.php:206
3977
+ msgid "AIM"
3978
+ msgstr "AIM"
3979
+
3980
+ #: profile-builder-2.0/admin/manage-fields.php:207
3981
+ msgid "Yahoo IM"
3982
+ msgstr "Yahoo IM"
3983
+
3984
+ #: profile-builder-2.0/admin/manage-fields.php:208
3985
+ msgid "Jabber / Google Talk"
3986
+ msgstr "Jabber / Google Talk"
3987
+
3988
+ #: profile-builder-2.0/admin/manage-fields.php:211
3989
+ msgid "About Yourself"
3990
+ msgstr "Über Dich"
3991
+
3992
+ #: profile-builder-2.0/admin/manage-fields.php:212
3993
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:113
3994
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:728
3995
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2101
3996
+ msgid "Biographical Info"
3997
+ msgstr "Lebenslauf"
3998
+
3999
+ #: profile-builder-2.0/admin/manage-fields.php:212
4000
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
4001
+ msgstr "Fülle ein paar biographische Informationen in deinem Profil aus. Diese können auch öffentlich angezeigt werden."
4002
+
4003
+ #: profile-builder-2.0/admin/manage-fields.php:213
4004
+ #: profile-builder-2.0/front-end/recover.php:73
4005
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4006
+ msgid "Password"
4007
+ msgstr "Kennwort"
4008
+
4009
+ #: profile-builder-2.0/admin/manage-fields.php:213
4010
+ msgid "Type your password."
4011
+ msgstr "Bitte gib dein Passwort ein."
4012
+
4013
+ #: profile-builder-2.0/admin/manage-fields.php:214
4014
+ #: profile-builder-2.0/front-end/recover.php:74
4015
+ msgid "Repeat Password"
4016
+ msgstr "Kennwort wiederholen"
4017
+
4018
+ #: profile-builder-2.0/admin/manage-fields.php:214
4019
+ msgid "Type your password again. "
4020
+ msgstr "Bitte geben Sie Ihr Kennwort erneut ein."
4021
+
4022
+ #: profile-builder-2.0/admin/manage-fields.php:966
4023
+ #: profile-builder-2.0/admin/manage-fields.php:1120
4024
+ msgid "You must select a field\n"
4025
+ msgstr "Sie müssen ein Feld auswählen.\n"
4026
+
4027
+ #: profile-builder-2.0/admin/manage-fields.php:976
4028
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4029
+ msgstr "Bitte wählen Sie ein anderes Feld aus. Dieses ist bereits im Formular vorhanden (muss einzigartig sein)."
4030
+
4031
+ #: profile-builder-2.0/admin/manage-fields.php:987
4032
+ msgid "The entered avatar size is not between 20 and 200\n"
4033
+ msgstr "Die eingegebene Profilbild-Größe ist nicht zwischen 20 und 200\n"
4034
+
4035
+ #: profile-builder-2.0/admin/manage-fields.php:990
4036
+ msgid "The entered avatar size is not numerical\n"
4037
+ msgstr "Die eingegebenen Profilbild-Größe ist nicht numerisch\n"
4038
+
4039
+ #: profile-builder-2.0/admin/manage-fields.php:998
4040
+ msgid "The entered row number is not numerical\n"
4041
+ msgstr "Die eingegebene Nummer der Zeile ist nicht numerisch\n"
4042
+
4043
+ #: profile-builder-2.0/admin/manage-fields.php:1001
4044
+ msgid "You must enter a value for the row number\n"
4045
+ msgstr "Sie müssen die Zeilennummer angeben.\n"
4046
+
4047
+ #: profile-builder-2.0/admin/manage-fields.php:1019
4048
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
4049
+ msgstr "Der eingegebene Wert für den Datums-picker ist kein gültiges Datumsformat\n"
4050
+
4051
+ #: profile-builder-2.0/admin/manage-fields.php:1022
4052
+ msgid "You must enter a value for the date-format\n"
4053
+ msgstr "Sie müssen das Datumsformat angeben.\n"
4054
+
4055
+ #: profile-builder-2.0/admin/manage-fields.php:1050
4056
+ #: profile-builder-2.0/admin/manage-fields.php:1058
4057
+ #: profile-builder-2.0/admin/manage-fields.php:1069
4058
+ msgid "That meta-name is already in use\n"
4059
+ msgstr "Dieser Meta-Name wird bereits verwendet\n"
4060
+
4061
+ #: profile-builder-2.0/admin/manage-fields.php:1100
4062
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4063
+ msgstr "Die folgende Option(en) übereinstimmen nicht mit denen aus der Optionsliste :%s\n"
4064
+
4065
+ #: profile-builder-2.0/admin/manage-fields.php:1104
4066
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
4067
+ msgstr "Die folgende Option übereinstimmt nicht mit denen, aus der Optionsliste: %s\n"
4068
+
4069
+ #: profile-builder-2.0/admin/manage-fields.php:1127
4070
+ msgid "That field is already added in this form\n"
4071
+ msgstr "Dieses Feld wurde bereits in dieser Form hinzugefügt.\n"
4072
+
4073
+ #: profile-builder-2.0/admin/manage-fields.php:1176
4074
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4075
+ msgstr "<pre>Titel</pre><pre>Typ</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\"> erforderlich</pre>"
4076
+
4077
+ #: profile-builder-2.0/admin/manage-fields.php:1176
4078
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4079
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4080
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4081
+ #: profile-builder-2.0/features/functions.php:745
4082
+ #: profile-builder-2.0/features/functions.php:752
4083
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4084
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4085
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4086
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4087
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4088
+ msgid "Edit"
4089
+ msgstr "Bearbeiten"
4090
+
4091
+ #: profile-builder-2.0/admin/manage-fields.php:1176
4092
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4093
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4094
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4095
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4096
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4097
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4098
+ #: profile-builder-2.0/features/functions.php:738
4099
+ #: profile-builder-2.0/features/functions.php:752
4100
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4101
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4102
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4103
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4104
+ msgid "Delete"
4105
+ msgstr "Löschen"
4106
+
4107
+ #: profile-builder-2.0/admin/manage-fields.php:1191
4108
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4109
+ msgstr "Verwenden Sie folgende Shortcodes auf den Seiten, auf denen Sie die Formulare angezeigt haben möchten:"
4110
+
4111
+ #: profile-builder-2.0/admin/manage-fields.php:1200
4112
+ 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."
4113
+ 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."
4114
+
4115
+ #: profile-builder-2.0/admin/register-version.php:14
4116
+ msgid "Register Your Version"
4117
+ msgstr "Registrieren Sie Ihre Version"
4118
+
4119
+ #: profile-builder-2.0/admin/register-version.php:14
4120
+ msgid "Register Version"
4121
+ msgstr "Version registrieren"
4122
+
4123
+ #: profile-builder-2.0/admin/register-version.php:70
4124
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4125
+ msgstr "Wenn Sie diese Version vom Profile Builder registrieren, erhalten Sie Informationen zu Upgrades, Patches und technischen Support."
4126
+
4127
+ #: profile-builder-2.0/admin/register-version.php:72
4128
+ msgid " Serial Number:"
4129
+ msgstr "Seriennummer:"
4130
+
4131
+ #: profile-builder-2.0/admin/register-version.php:77
4132
+ msgid "The serial number was successfully validated!"
4133
+ msgstr "Die Seriennummer wurde erfolgreich überprüft!"
4134
+
4135
+ #: profile-builder-2.0/admin/register-version.php:79
4136
+ msgid "The serial number entered couldn't be validated!"
4137
+ msgstr "Die eingegebene Seriennummer konnte nicht überprüft werden!"
4138
+
4139
+ #: profile-builder-2.0/admin/register-version.php:83
4140
+ msgid "The serial number couldn't be validated because it expired!"
4141
+ msgstr "Die Seriennummer konnte nicht überprüft werden, da diese abgelaufen ist!"
4142
+
4143
+ #: profile-builder-2.0/admin/register-version.php:85
4144
+ 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!"
4145
+ msgstr "Die Seriennummer konnte nicht überprüft werden, weil der Prozess einen Time-Out bekam. Dies kann passieren, wenn der Server nicht verfügbar ist. Bitte versuche es später erneut!"
4146
+
4147
+ #: profile-builder-2.0/admin/register-version.php:87
4148
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4149
+ msgstr "(z.B. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985) "
4150
+
4151
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4152
+ #: profile-builder-2.0/features/functions.php:752
4153
+ msgid "Content"
4154
+ msgstr "Inhalt"
4155
+
4156
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4157
+ msgid "Edit this item"
4158
+ msgstr "Dieses Element bearbeiten"
4159
+
4160
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4161
+ msgid "Delete this item"
4162
+ msgstr "Dieses Element löschen"
4163
+
4164
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4165
+ msgid "Please enter a value for the required field "
4166
+ msgstr "Bitte gib einen Wert für das erforderliche Feld ein"
4167
+
4168
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4169
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4170
+ msgid "Select File"
4171
+ msgstr "Datei auswählen"
4172
+
4173
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4174
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4175
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4176
+ msgid "Remove"
4177
+ msgstr "Löschen"
4178
+
4179
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:1253
4180
+ msgid "Syncronize WCK"
4181
+ msgstr "WCK synchronisieren"
4182
+
4183
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:1265
4184
+ msgid "Syncronize WCK Translation"
4185
+ msgstr "Synchronisierung der WCK Übersetzung"
4186
+
4187
+ #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4188
+ msgid "You can add the information for the %s after you add a entry"
4189
+ msgstr "Du kannst die Informationen für \"%s\" hinzufügen, nachdem du einen Eintrag hinzugefügt hast"
4190
+
4191
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4192
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4193
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4194
+ msgid "Upload "
4195
+ msgstr "Hochladen"
4196
+
4197
+ #: profile-builder-2.0/features/class-list-table.php:184
4198
+ msgid "No items found."
4199
+ msgstr "Keine Einträge wurden gefunden."
4200
+
4201
+ #: profile-builder-2.0/features/class-list-table.php:308
4202
+ msgid "Bulk Actions"
4203
+ msgstr "Bulk.Aktionen"
4204
+
4205
+ #: profile-builder-2.0/features/class-list-table.php:318
4206
+ msgid "Apply"
4207
+ msgstr "Anwenden"
4208
+
4209
+ #: profile-builder-2.0/features/class-list-table.php:402
4210
+ msgid "Show all dates"
4211
+ msgstr "Alle Termine anzeigen"
4212
+
4213
+ #: profile-builder-2.0/features/class-list-table.php:415
4214
+ msgid "%1$s %2$d"
4215
+ msgstr "%1$s %2$d "
4216
+
4217
+ #: profile-builder-2.0/features/class-list-table.php:431
4218
+ msgid "List View"
4219
+ msgstr "Listenansicht"
4220
+
4221
+ #: profile-builder-2.0/features/class-list-table.php:432
4222
+ msgid "Excerpt View"
4223
+ msgstr "Excerpt-Anzeige"
4224
+
4225
+ #: profile-builder-2.0/features/class-list-table.php:458
4226
+ msgid "%s pending"
4227
+ msgstr "%s ausstehend"
4228
+
4229
+ #: profile-builder-2.0/features/class-list-table.php:566
4230
+ msgid "%1$s of %2$s"
4231
+ msgstr "%1$s von %2$s"
4232
+
4233
+ #: profile-builder-2.0/features/class-list-table.php:713
4234
+ msgid "Select All"
4235
+ msgstr "Alle auswählen"
4236
+
4237
+ #: profile-builder-2.0/features/functions.php:304
4238
+ msgid "The user-validation has failed - the avatar was not deleted!"
4239
+ msgstr "Die Benutzer-Validierung ist fehlgeschlagen - das Profilbild wurde nicht gelöscht!"
4240
+
4241
+ #: profile-builder-2.0/features/functions.php:315
4242
+ msgid "The user-validation has failed - the attachment was not deleted!"
4243
+ msgstr "Die Benutzer-Validierung ist fehlgeschlagen - die Anlage wurde nicht gelöscht!"
4244
+
4245
+ #: profile-builder-2.0/features/functions.php:554
4246
+ msgid "Strength indicator"
4247
+ msgstr "Stärkeanzeige"
4248
+
4249
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4250
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4251
+ msgid "Admin Approval"
4252
+ msgstr "Admin-Bestätigung"
4253
+
4254
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4255
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4256
+ msgid "Do you want to"
4257
+ msgstr "Möchtest du"
4258
+
4259
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4260
+ msgid "Your session has expired! Please refresh the page and try again"
4261
+ msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal."
4262
+
4263
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:62
4264
+ msgid "User successfully approved!"
4265
+ msgstr "Benutzer erfolgreich genehmigt!"
4266
+
4267
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:70
4268
+ msgid "User successfully unapproved!"
4269
+ msgstr "Benutzer erfolgreich abgelehnt!"
4270
+
4271
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:76
4272
+ msgid "User successfully deleted!"
4273
+ msgstr "Benutzer erfolgreich gelöscht!"
4274
+
4275
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:81
4276
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:125
4277
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:135
4278
+ msgid "You either don't have permission for that action or there was an error!"
4279
+ msgstr "Sie haben entweder keine Berechtigungen für diese Aktion oder es ist ein Fehler aufgetreten!"
4280
+
4281
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:92
4282
+ msgid "Your session has expired! Please refresh the page and try again."
4283
+ msgstr "Ihre Sitzung ist abgelaufen! Bitte laden Sie die Seite neu und versuchen es noch einmal."
4284
+
4285
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:104
4286
+ msgid "Users successfully approved!"
4287
+ msgstr "Benutzer wurden erfolgreich genehmigt!"
4288
+
4289
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:113
4290
+ msgid "Users successfully unapproved!"
4291
+ msgstr "Benutzer wurden erfolgreich verwehrt!"
4292
+
4293
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:121
4294
+ msgid "Users successfully deleted!"
4295
+ msgstr "Benutzer wurden erfolgreich gelöscht!"
4296
+
4297
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:141
4298
+ msgid "Your account on %1$s has been approved!"
4299
+ msgstr "Ihr Benutzerkonto auf %1$s wurde genehmigt!"
4300
+
4301
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:142
4302
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:145
4303
+ msgid "approved"
4304
+ msgstr "genehmigt"
4305
+
4306
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:144
4307
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
4308
+ msgstr "Ein Administrator hat gerade Ihr Konto auf %1$s (%2$s) genehmigt."
4309
+
4310
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:149
4311
+ msgid "Your account on %1$s has been unapproved!"
4312
+ msgstr "Ihr Benutzerkonto auf %1$s wurde nicht genehmigt!"
4313
+
4314
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4315
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:153
4316
+ msgid "unapproved"
4317
+ msgstr "abgelehnt"
4318
+
4319
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:152
4320
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4321
+ msgstr "Ein Administrator hat Ihr Konto auf %1$ s (%2$ s) nicht genehmigt. "
4322
+
4323
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:171
4324
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4325
+ msgstr "<strong>Fehler</strong>: Ihr Konto muss von einem Administrator bestätigt werden, bevor Sie sich anmelden können. "
4326
+
4327
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:183
4328
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4329
+ msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie die \"Kennwort Wiederherstellung\"-Funktion verwenden können."
4330
+
4331
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4332
+ msgid "delete this user?"
4333
+ msgstr "Möchtest du diesen Benutzer löschen?"
4334
+
4335
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4336
+ msgid "unapprove this user?"
4337
+ msgstr "Benutzer ablehnen?"
4338
+
4339
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4340
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4341
+ msgid "Unapprove"
4342
+ msgstr "ablehnen"
4343
+
4344
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4345
+ msgid "approve this user?"
4346
+ msgstr "Möchtest du diesen Benutzer genehmigen?"
4347
+
4348
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4349
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4350
+ msgid "Approve"
4351
+ msgstr "Genehmigen"
4352
+
4353
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4354
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:269
4355
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:716
4356
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2103
4357
+ msgid "Firstname"
4358
+ msgstr "Vorname"
4359
+
4360
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4361
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:719
4362
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2104
4363
+ msgid "Lastname"
4364
+ msgstr "Nachname"
4365
+
4366
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4367
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:142
4368
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:270
4369
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:746
4370
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2108
4371
+ msgid "Role"
4372
+ msgstr "Rolle"
4373
+
4374
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4375
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4376
+ msgid "Registered"
4377
+ msgstr "Angemeldet"
4378
+
4379
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4380
+ msgid "User-status"
4381
+ msgstr "Benutzer-Status"
4382
+
4383
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4384
+ msgid "Do you want to bulk approve the selected users?"
4385
+ msgstr "Möchtest du alle ausgewählten Benutzer genehmigen?"
4386
+
4387
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4388
+ msgid "Do you want to bulk unapprove the selected users?"
4389
+ msgstr "Möchtest du alle ausgewählten Benutzer verwehren?"
4390
+
4391
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4392
+ msgid "Do you want to bulk delete the selected users?"
4393
+ msgstr "Möchtest du alle ausgewählten Benutzer löschen?"
4394
+
4395
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4396
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4397
+ msgid "Sorry, but you don't have permission to do that!"
4398
+ msgstr "Tut uns leid aber du hast keine Berechtigung dazu!"
4399
+
4400
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4401
+ msgid "Approved"
4402
+ msgstr "Genehmigt"
4403
+
4404
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4405
+ msgid "Unapproved"
4406
+ msgstr "Verwehrt"
4407
+
4408
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4409
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4410
+ msgid "All Users"
4411
+ msgstr "Alle Benutzer"
4412
+
4413
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4414
+ msgid "delete this user from the _signups table?"
4415
+ msgstr "Möchtest du diesen Benutzer aus der _signups-Tabelle löschen?"
4416
+
4417
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4418
+ msgid "confirm this email yourself?"
4419
+ msgstr "Bestätige diese E-Mail selbst?"
4420
+
4421
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4422
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4423
+ msgid "Confirm Email"
4424
+ msgstr "E-Mail bestätigen"
4425
+
4426
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4427
+ msgid "resend the activation link?"
4428
+ msgstr "Aktivierungslink erneut senden?"
4429
+
4430
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4431
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4432
+ msgid "Resend Activation Email"
4433
+ msgstr "Aktivierungs-E-Mail erneut senden"
4434
+
4435
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4436
+ msgid "%s couldn't be deleted"
4437
+ msgstr "%s konnte nicht gelöscht werden"
4438
+
4439
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4440
+ msgid "All users have been successfully deleted"
4441
+ msgstr "Alle Benutzer wurden erfolgreich gelöscht"
4442
+
4443
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4444
+ msgid "The selected users have been activated"
4445
+ msgstr "Die ausgewählten Benutzer wurden aktiviert"
4446
+
4447
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4448
+ msgid "The selected users have had their activation emails resent"
4449
+ msgstr "Die ausgewählten Benutzer haben ihre Aktivierung E-Mails erneut gesendet bekommen. "
4450
+
4451
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4452
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4453
+ msgid "Users with Unconfirmed Email Address"
4454
+ msgstr "Benutzer mit unbestätigter E-Mail-Adresse"
4455
+
4456
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:110
4457
+ msgid "There was an error performing that action!"
4458
+ msgstr "Es gab einen Fehler bei der Durchführung dieser Aktion!"
4459
+
4460
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:118
4461
+ msgid "The selected user couldn't be deleted"
4462
+ msgstr "Der ausgewählte Benutzer konnte nicht gelöscht werden"
4463
+
4464
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:129
4465
+ msgid "Email notification resent to user"
4466
+ msgstr "Die E-Mail-Benachrichtigung wurde dem Benutzer erneut geschickt."
4467
+
4468
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:389
4469
+ msgid "[%1$s] Activate %2$s"
4470
+ msgstr "[%1$s] Aktivieren %2$s"
4471
+
4472
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:433
4473
+ #: profile-builder-2.0/front-end/register.php:70
4474
+ msgid "Could not create user!"
4475
+ msgstr "Benutzer konnte nicht erstellt werden!"
4476
+
4477
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:436
4478
+ msgid "That username is already activated!"
4479
+ msgstr "Dieser Benutzername ist bereits aktiviert worden!"
4480
+
4481
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:459
4482
+ msgid "There was an error while trying to activate the user"
4483
+ msgstr "Es ist ein Fehler aufgetreten, beim Versuch, den Benutzer zu aktivieren."
4484
+
4485
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:507
4486
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4487
+ msgid "A new subscriber has (been) registered!"
4488
+ msgstr "Ein neuer Benutzer ist (wurde) registriert!"
4489
+
4490
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:510
4491
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4492
+ msgstr "Neuer Abonnent auf %1$s. <br/> <br/>Benutzername:%2$s <br/> E-Mail: %3$s <br/>"
4493
+
4494
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:625
4495
+ 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!"
4496
+ msgstr "Das \"Admin Approval\" Feature war zum Zeitpunkt der Registrierung aktiv, also bitte denke daran, dass man diesen Benutzer genehmigen muss, bevor er sich anmelden kann!"
4497
+
4498
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:561
4499
+ msgid "[%1$s] Your new account information"
4500
+ msgstr "[%1$s] Ihre neuen Kontodaten"
4501
+
4502
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:572
4503
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4504
+ msgstr "Willkommen bei %1$s! <br/> <br/> <br/>Ihr Benutzername ist: %2$s und das Kennwort: %3$s"
4505
+
4506
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:633
4507
+ #: profile-builder-2.0/front-end/register.php:130
4508
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4509
+ msgstr "Bevor du auf dein Konto zugreifen kannst, muss es von einem Administrator genehmigt werden. Du wirst per E-Mail darüber benachrichtigt."
4510
+
4511
+ #: profile-builder-2.0/features/login-widget/login-widget.php:10
4512
+ msgid "This login widget lets you add a login form in the sidebar."
4513
+ msgstr "Mit diesem Login-Widget kannst du ein Anmeldeformular in der Sidebar hinzufügen."
4514
+
4515
+ #: profile-builder-2.0/features/login-widget/login-widget.php:15
4516
+ msgid "Profile Builder Login Widget"
4517
+ msgstr "Profile Builder Login Widget"
4518
+
4519
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4520
+ #: profile-builder-2.0/front-end/class-formbuilder.php:420
4521
+ #: profile-builder-2.0/front-end/login.php:257
4522
+ msgid "Register"
4523
+ msgstr "Registrieren"
4524
+
4525
+ #: profile-builder-2.0/features/login-widget/login-widget.php:63
4526
+ msgid "Title:"
4527
+ msgstr "Titel:"
4528
+
4529
+ #: profile-builder-2.0/features/login-widget/login-widget.php:68
4530
+ msgid "After login redirect URL (optional):"
4531
+ msgstr "Weiterleitungs-URL nach dem Login (optional):"
4532
+
4533
+ #: profile-builder-2.0/features/login-widget/login-widget.php:73
4534
+ msgid "Register page URL (optional):"
4535
+ msgstr "Registrierunggseite-URL (optional):"
4536
+
4537
+ #: profile-builder-2.0/features/login-widget/login-widget.php:78
4538
+ msgid "Password Recovery page URL (optional):"
4539
+ msgstr "Kennwort Wiederherstellungs-URL (optional):"
4540
+
4541
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4542
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4543
+ msgid "The usernames cannot be changed."
4544
+ msgstr "Benutzernamen können nicht geändert werden."
4545
+
4546
+ #: profile-builder-2.0/front-end/class-formbuilder.php:161
4547
+ msgid "Only an administrator can add new users."
4548
+ msgstr "Nur ein Administrator kann neue Benutzer hinzufügen."
4549
+
4550
+ #: profile-builder-2.0/front-end/class-formbuilder.php:171
4551
+ msgid "Users can register themselves or you can manually create users here."
4552
+ msgstr "Benutzer können sich selbst anmelden, oder du kannst Benutzer von Hand hier erstellen."
4553
+
4554
+ #: profile-builder-2.0/front-end/class-formbuilder.php:174
4555
+ msgid "Users cannot currently register themselves, but you can manually create users here."
4556
+ msgstr "Benutzer können sich derzeit selbst nicht registrieren, aber du kannst Benutzer hier manuell erstellen."
4557
+
4558
+ #: profile-builder-2.0/front-end/class-formbuilder.php:196
4559
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
4560
+ msgstr "Du bist derzeit als %1s angemeldet. Du brauchst kein weiteres Konto. %2s"
4561
+
4562
+ #: profile-builder-2.0/front-end/class-formbuilder.php:196
4563
+ msgid "Log out of this account."
4564
+ msgstr "Aus diesem Konto ausloggen."
4565
+
4566
+ #: profile-builder-2.0/front-end/class-formbuilder.php:196
4567
+ msgid "Logout"
4568
+ msgstr "Ausloggen"
4569
+
4570
+ #: profile-builder-2.0/front-end/class-formbuilder.php:203
4571
+ msgid "You must be logged in to edit your profile."
4572
+ msgstr "Sie müssen angemeldet sein, um Ihr Profil zu bearbeiten."
4573
+
4574
+ #: profile-builder-2.0/front-end/class-formbuilder.php:230
4575
+ #: profile-builder-2.0/front-end/class-formbuilder.php:277
4576
+ msgid "here"
4577
+ msgstr "hier"
4578
+
4579
+ #: profile-builder-2.0/front-end/class-formbuilder.php:232
4580
+ #: profile-builder-2.0/front-end/class-formbuilder.php:277
4581
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4582
+ msgstr "Sie werden in Kürze automatisch weitergeleitet. Wenn Sie diese Seite mehr als %1$d Sekunden sehen, klicken Sie bitte hier %2$s.%3$s"
4583
+
4584
+ #: profile-builder-2.0/front-end/class-formbuilder.php:330
4585
+ #: profile-builder-2.0/front-end/class-formbuilder.php:337
4586
+ msgid "The account %1s has been successfully created!"
4587
+ msgstr "Das Konto %1s wurde erfolgreich erstellt!"
4588
+
4589
+ #: profile-builder-2.0/front-end/class-formbuilder.php:333
4590
+ #: profile-builder-2.0/front-end/class-formbuilder.php:343
4591
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4592
+ msgstr "Bevor du auf dein Konto %1S zugreifen kannst, musst du deine E-Mail-Adresse bestätigen. Bitte überprüfe deinen Posteingang und klicke auf den Aktivierungslink."
4593
+
4594
+ #: profile-builder-2.0/front-end/class-formbuilder.php:339
4595
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4596
+ msgstr "Bevor du auf dein Konto %1S zugreifen kannst, muss es von einem Administrator genehmigt werden. Über eine Bestätigung wirst du per E-Mail benachrichtigt."
4597
+
4598
+ #: profile-builder-2.0/front-end/class-formbuilder.php:353
4599
+ msgid "Your profile has been successfully updated!"
4600
+ msgstr "Ihr Profil wurde aktualisiert!"
4601
+
4602
+ #: profile-builder-2.0/front-end/class-formbuilder.php:363
4603
+ msgid "There was an error in the submitted form"
4604
+ msgstr "Bitte alle erforderlichen Felder korrekt ausfüllen!"
4605
+
4606
+ #: profile-builder-2.0/front-end/class-formbuilder.php:420
4607
+ msgid "Add User"
4608
+ msgstr "Benutzer hinzufügen"
4609
+
4610
+ #: profile-builder-2.0/admin/add-ons.php:170
4611
+ #: profile-builder-2.0/front-end/class-formbuilder.php:423
4612
+ msgid "Update"
4613
+ msgstr "Aktualisieren"
4614
+
4615
+ #: profile-builder-2.0/front-end/class-formbuilder.php:482
4616
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:47
4617
+ msgid "The avatar was successfully deleted!"
4618
+ msgstr "Das Profilbild wurde erfolgreich gelöscht!"
4619
+
4620
+ #: profile-builder-2.0/front-end/class-formbuilder.php:482
4621
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:49
4622
+ msgid "The following attachment was successfully deleted:"
4623
+ msgstr "Die folgende Anlage wurde erfolgreich gelöscht:"
4624
+
4625
+ #: profile-builder-2.0/front-end/class-formbuilder.php:494
4626
+ msgid "Send these credentials via email."
4627
+ msgstr "Senden Sie mir diese Anmeldeninformationen per E-Mail."
4628
+
4629
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:111
4630
+ #: profile-builder-2.0/front-end/login.php:137
4631
+ #: profile-builder-2.0/front-end/login.php:144
4632
+ #: profile-builder-2.0/front-end/login.php:158
4633
+ #: profile-builder-2.0/front-end/recover.php:17
4634
+ #: profile-builder-2.0/front-end/recover.php:234
4635
+ msgid "ERROR"
4636
+ msgstr "FEHLER"
4637
+
4638
+ #: profile-builder-2.0/front-end/login.php:137
4639
+ msgid "The password you entered is incorrect."
4640
+ msgstr "Das eingegebene Kennwort ist falsch."
4641
+
4642
+ #: profile-builder-2.0/front-end/login.php:138
4643
+ #: profile-builder-2.0/front-end/login.php:145
4644
+ msgid "Password Lost and Found."
4645
+ msgstr "Passwort-Fundgrube"
4646
+
4647
+ #: profile-builder-2.0/front-end/login.php:138
4648
+ #: profile-builder-2.0/front-end/login.php:145
4649
+ msgid "Lost your password"
4650
+ msgstr "Passwort vergessen"
4651
+
4652
+ #: profile-builder-2.0/front-end/login.php:158
4653
+ msgid "Both fields are empty."
4654
+ msgstr "Beide Felder sind leer."
4655
+
4656
+ #: profile-builder-2.0/front-end/login.php:308
4657
+ msgid "You are currently logged in as %1$s. %2$s"
4658
+ msgstr "Derzeit als %1$s angemeldet. %2$s "
4659
+
4660
+ #: profile-builder-2.0/front-end/login.php:307
4661
+ #: profile-builder-2.0/front-end/logout.php:29
4662
+ msgid "Log out of this account"
4663
+ msgstr "Aus diesem Konto ausloggen"
4664
+
4665
+ #: profile-builder-2.0/front-end/login.php:307
4666
+ msgid "Log out"
4667
+ msgstr "Ausloggen"
4668
+
4669
+ #: profile-builder-2.0/front-end/recover.php:17
4670
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4671
+ msgstr "Ihr Benutzerkonto muss von einem Administrator bestätigt werden, bevor Sie Ihr Kennwort zurücksetzen können."
4672
+
4673
+ #: profile-builder-2.0/front-end/recover.php:94
4674
+ msgid "Reset Password"
4675
+ msgstr "Passwort zurücksetzen"
4676
+
4677
+ #: profile-builder-2.0/front-end/recover.php:114
4678
+ msgid "Please enter your username or email address."
4679
+ msgstr "Bitte gib deinen Benutzernamen oder deine E-Mail Adresse ein."
4680
+
4681
+ #: profile-builder-2.0/front-end/recover.php:115
4682
+ msgid "You will receive a link to create a new password via email."
4683
+ msgstr "Sie werden per E-Mail einen Link erhalten, über den Sie ein neues Passwort vergeben können."
4684
+
4685
+ #: profile-builder-2.0/front-end/recover.php:120
4686
+ msgid "Username or E-mail"
4687
+ msgstr "Benutzername oder E-Mail"
4688
+
4689
+ #: profile-builder-2.0/front-end/recover.php:130
4690
+ msgid "Get New Password"
4691
+ msgstr "Neues Passwort anfordern"
4692
+
4693
+ #: profile-builder-2.0/front-end/recover.php:172
4694
+ msgid "The username entered wasn't found in the database!"
4695
+ msgstr "Der eingegebene Benutzername existiert nicht!"
4696
+
4697
+ #: profile-builder-2.0/front-end/recover.php:172
4698
+ msgid "Please check that you entered the correct username."
4699
+ msgstr "Bitte überprüfe, ob du den richtigen Benutzernamen eingegeben hast."
4700
+
4701
+ #: profile-builder-2.0/front-end/recover.php:187
4702
+ msgid "Check your e-mail for the confirmation link."
4703
+ msgstr "Überprüfe dein Ihr E-Mail Postfach für den Bestätigungslink."
4704
+
4705
+ #: profile-builder-2.0/front-end/recover.php:222
4706
+ 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"
4707
+ msgstr "Jemand hat angefragt, dass das Passwort für dieses Konto zurückgesetzt werden soll: <b>%1$s</b> <br/> Wenn diese Anfrage nicht von die ausgeht, bitte ignoriere diese E-Mail einfach und es geschieht nichts.<br/>Um dein Passwort zurückzusetzen, rufe folgenden Link auf: %2$s"
4708
+
4709
+ #: profile-builder-2.0/front-end/recover.php:225
4710
+ msgid "Password Reset from \"%1$s\""
4711
+ msgstr "Zurücksetzen des Kennworts \"%1$s\""
4712
+
4713
+ #: profile-builder-2.0/front-end/recover.php:234
4714
+ msgid "There was an error while trying to send the activation link to %1$s!"
4715
+ msgstr "Es gab einen Fehler beim Versuch den Aktivierungslink zu senden%1$s!"
4716
+
4717
+ #: profile-builder-2.0/front-end/recover.php:194
4718
+ msgid "The email address entered wasn't found in the database!"
4719
+ msgstr "Die eingegebene E-Mail-Adresse existiert nicht!"
4720
+
4721
+ #: profile-builder-2.0/front-end/recover.php:194
4722
+ msgid "Please check that you entered the correct email address."
4723
+ msgstr "Bitte prüfe, ob du die richtige E-Mail Adresse angegeben hast."
4724
+
4725
+ #: profile-builder-2.0/front-end/recover.php:262
4726
+ msgid "Your password has been successfully changed!"
4727
+ msgstr "Ihr Passwort wurde erfolgreich geändert!"
4728
+
4729
+ #: profile-builder-2.0/front-end/recover.php:281
4730
+ msgid "You have successfully reset your password to: %1$s"
4731
+ msgstr "Ihr Kennwort wurde erfolgreich zurückgesetzt: %1$s"
4732
+
4733
+ #: profile-builder-2.0/front-end/recover.php:284
4734
+ #: profile-builder-2.0/front-end/recover.php:298
4735
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
4736
+ msgstr "Kennwort erfolgreich zurückgesetzt für %1$s auf \"%2$s\""
4737
+
4738
+ #: profile-builder-2.0/front-end/recover.php:295
4739
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4740
+ msgstr "%1$s hat eine Kennwortänderung über die Funktion \"Kennwort zurücksetzen\" angefordert. <br/>Ihr neues Passwort ist: %2$s"
4741
+
4742
+ #: profile-builder-2.0/front-end/recover.php:314
4743
+ msgid "The entered passwords don't match!"
4744
+ msgstr "Die eingegebenen Passwörter stimmen nicht überein!"
4745
+
4746
+ #: profile-builder-2.0/front-end/recover.php:381
4747
+ msgid "ERROR:"
4748
+ msgstr "FEHLER:"
4749
+
4750
+ #: profile-builder-2.0/front-end/recover.php:381
4751
+ msgid "Invalid key!"
4752
+ msgstr "Ungültiger Schlüssel!"
4753
+
4754
+ #: profile-builder-2.0/front-end/register.php:55
4755
+ msgid "Invalid activation key!"
4756
+ msgstr "Ungültiger Aktivierungsschlüssel!"
4757
+
4758
+ #: profile-builder-2.0/front-end/register.php:59
4759
+ msgid "This username is now active!"
4760
+ msgstr "Dieser Benutzername ist jetzt aktiv!"
4761
+
4762
+ #: profile-builder-2.0/front-end/register.php:73
4763
+ msgid "This username is already activated!"
4764
+ msgstr "Dieser Benutzername ist bereits aktiviert!"
4765
+
4766
+ #: profile-builder-2.0/front-end/register.php:129
4767
+ msgid "Your email was successfully confirmed."
4768
+ msgstr "Ihre E-Mail wurde erfolgreich bestätigt."
4769
+
4770
+ #: profile-builder-2.0/front-end/register.php:163
4771
+ msgid "There was an error while trying to activate the user."
4772
+ msgstr "Ein Fehler ist aufgetreten, während versucht wurde, den Benutzer zu aktivieren."
4773
+
4774
+ #: pb-add-on-woocommerce/index.php:393
4775
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:47
4776
+ msgid "The email you entered is not a valid email address."
4777
+ msgstr "Die angegebene E-Mail Adresse wurde als ungültig eingestuft."
4778
+
4779
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4780
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4781
+ msgid "This email is already reserved to be used soon."
4782
+ msgstr "Diese E-Mail ist bereits reserviert worden, um bald verwendet zu werden."
4783
+
4784
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4785
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4786
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4787
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4788
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4789
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4790
+ msgid "Please try a different one!"
4791
+ msgstr "Bitte versuchen Sie es mit einer anderen!"
4792
+
4793
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4794
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4795
+ msgid "This email is already in use."
4796
+ msgstr "Diese E-Mail-Adresse ist bereits im Einsatz."
4797
+
4798
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4799
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4800
+ msgid "The passwords do not match"
4801
+ msgstr "Die Kennwörter stimmen nicht überein."
4802
+
4803
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4804
+ msgid "This username already exists."
4805
+ msgstr "Dieser Benutzername ist bereits vorhanden."
4806
+
4807
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4808
+ msgid "This username is already reserved to be used soon."
4809
+ msgstr "Dieser Benutzername ist bereits reserviert, um bald verwendet zu werden."
4810
+
4811
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:267
4812
+ msgid "Avatar"
4813
+ msgstr "Profil-Bild"
4814
+
4815
+ #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4816
+ #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4817
+ #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4818
+ #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4819
+ #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4820
+ #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4821
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4822
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4823
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4824
+ #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4825
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:46
4826
+ #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4827
+ #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4828
+ #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4829
+ #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4830
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4831
+ #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4832
+ msgid "required"
4833
+ msgstr "Erforderlich"
4834
+
4835
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:48
4836
+ msgid "To use reCAPTCHA you must get an API key from"
4837
+ msgstr "Um ReCAPTCHA zu verwenden müssen Sie einen API-Schlüssel von hier besorgen:"
4838
+
4839
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:131
4840
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4841
+ msgstr "Aus Sicherheitsgründen müssen Sie die Remote-IP eingeben um ReCAPTCHA zu benutzen!"
4842
+
4843
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:192
4844
+ msgid "To use reCAPTCHA you must get an API public key from:"
4845
+ msgstr "Um ReCAPTCHA zu verwenden muss man einen öffentlichen API-Schlüssel von hier hohlen:"
4846
+
4847
+ #: profile-builder-2.0/modules/modules.php:11
4848
+ #: profile-builder-2.0/modules/modules.php:58
4849
+ msgid "Modules"
4850
+ msgstr "Module"
4851
+
4852
+ #: profile-builder-2.0/modules/modules.php:59
4853
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4854
+ msgstr "Hier können Sie die verfügbaren Module für Profil-Generator aktivieren/deaktivieren."
4855
+
4856
+ #: profile-builder-2.0/modules/modules.php:69
4857
+ msgid "Name/Description"
4858
+ msgstr "Name/Beschreibung"
4859
+
4860
+ #: profile-builder-2.0/modules/modules.php:70
4861
+ msgid "Status"
4862
+ msgstr "Status"
4863
+
4864
+ #: profile-builder-2.0/modules/modules.php:77
4865
+ #: profile-builder-2.0/modules/modules.php:84
4866
+ #: profile-builder-2.0/modules/modules.php:91
4867
+ #: profile-builder-2.0/modules/modules.php:98
4868
+ #: profile-builder-2.0/modules/modules.php:105
4869
+ #: profile-builder-2.0/modules/modules.php:112
4870
+ #: profile-builder-2.0/modules/modules.php:119
4871
+ msgid "Active"
4872
+ msgstr "Aktiv"
4873
+
4874
+ #: profile-builder-2.0/modules/modules.php:78
4875
+ #: profile-builder-2.0/modules/modules.php:85
4876
+ #: profile-builder-2.0/modules/modules.php:92
4877
+ #: profile-builder-2.0/modules/modules.php:99
4878
+ #: profile-builder-2.0/modules/modules.php:106
4879
+ #: profile-builder-2.0/modules/modules.php:113
4880
+ #: profile-builder-2.0/modules/modules.php:120
4881
+ msgid "Inactive"
4882
+ msgstr "inaktiv"
4883
+
4884
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4885
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4886
+ #: profile-builder-2.0/modules/modules.php:96
4887
+ msgid "Admin Email Customizer"
4888
+ msgstr "Anpassen der Admin-E-Mails"
4889
+
4890
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
4891
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4892
+ #: profile-builder-2.0/modules/modules.php:103
4893
+ msgid "User Email Customizer"
4894
+ msgstr "Anpassen der Benutzer-E-Mails"
4895
+
4896
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:340
4897
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:254
4898
+ msgid "Save"
4899
+ msgstr "Speichern"
4900
+
4901
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
4902
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4903
+ msgid "Redirect"
4904
+ msgstr "Weiterleitung"
4905
+
4906
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
4907
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
4908
+ msgid "URL"
4909
+ msgstr "URL"
4910
+
4911
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4912
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4913
+ msgstr "Diese Einstellungen werden auch auf der \"Benutzer E-Mail Kustomisierung\" Einstellungs-Seite beim Speichern repliziert."
4914
+
4915
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4916
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4917
+ msgid "From (name)"
4918
+ msgstr "Von (Name)"
4919
+
4920
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4921
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4922
+ msgid "From (reply-to email)"
4923
+ msgstr "Von (Antwort auf E-Mail)"
4924
+
4925
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4926
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4927
+ msgid "Common Settings"
4928
+ msgstr "Allgemeine Einstellungen"
4929
+
4930
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4931
+ msgid ""
4932
+ "\n"
4933
+ "<p>New subscriber on {{site_name}}.</p>\n"
4934
+ "<p>Username:{{username}}</p>\n"
4935
+ "<p>E-mail:{{user_email}}</p>\n"
4936
+ msgstr ""
4937
+ "\n"
4938
+ "<p>Neue Abonnenten für {{site_name}}.</p>\n"
4939
+ "<p>Benutzername:{{username}}</p>\n"
4940
+ "<p>E-mail:{{user_email}}</p>\n"
4941
+
4942
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4943
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4944
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4945
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4946
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4947
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4948
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4949
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4950
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4951
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
4952
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
4953
+ msgid "Email Subject"
4954
+ msgstr "E-Mail Betreff"
4955
+
4956
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
4957
+ msgid "Default Registration & Registration with Email Confirmation"
4958
+ msgstr "Standard-Anmeldung & Anmeldung mit E-Mail-Bestätigung"
4959
+
4960
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
4961
+ msgid ""
4962
+ "\n"
4963
+ "<p>New subscriber on {{site_name}}.</p>\n"
4964
+ "<p>Username:{{username}}</p>\n"
4965
+ "<p>E-mail:{{user_email}}</p>\n"
4966
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
4967
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
4968
+ msgstr ""
4969
+ "<p>Neue Abonnenten für {{site_name}}.</p>\n"
4970
+ "<p>Benutzername: {{username}}</p> \n"
4971
+ "<p>E-Mail :{{user_email}}</p> \n"
4972
+ "<p>Die Admin Genehmigung Feature wurde zum Zeitpunkt der Registrierung aktiviert.\n"
4973
+ "Also bitte denken Sie daran, dass dieser Benutzer genehmigt sein muss, bevor er sich anmelden kann !</p>\n"
4974
+
4975
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
4976
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
4977
+ msgid "Registration with Admin Approval"
4978
+ msgstr "Anmeldung über Admin-Freischaltung"
4979
+
4980
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
4981
+ msgid "Available Tags"
4982
+ msgstr "Verfügbare Tags"
4983
+
4984
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
4985
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
4986
+ msgid "User Meta"
4987
+ msgstr "Benutzer-Meta"
4988
+
4989
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
4990
+ msgid "Site Url"
4991
+ msgstr "Webseite-URL"
4992
+
4993
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
4994
+ msgid "Site Name"
4995
+ msgstr "Webseite Name"
4996
+
4997
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
4998
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:151
4999
+ msgid "User Id"
5000
+ msgstr "Benutzer-Id"
5001
+
5002
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
5003
+ msgid "Reply To"
5004
+ msgstr "Antworten auf"
5005
+
5006
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
5007
+ msgid "Activation Key"
5008
+ msgstr "Aktivierungsschlüssel"
5009
+
5010
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:37
5011
+ msgid "Activation Url"
5012
+ msgstr "Aktivierungs-Url"
5013
+
5014
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:38
5015
+ msgid "Activation Link"
5016
+ msgstr "Aktivierungs-Link"
5017
+
5018
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5019
+ msgid ""
5020
+ "\n"
5021
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5022
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5023
+ msgstr ""
5024
+ "\n"
5025
+ "<h3>Willkommen bei {{Site_name}}!</h3> <p>Ihr Benutzername ist: {{Username}} und das Passwort ist: {{Passwort}}</p>\n"
5026
+
5027
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5028
+ msgid "Default Registration"
5029
+ msgstr "Standard-Anmeldung"
5030
+
5031
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5032
+ msgid ""
5033
+ "\n"
5034
+ "<p>To activate your user, please click the following link:<br/>\n"
5035
+ "{{{activation_link}}}</p>\n"
5036
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
5037
+ msgstr ""
5038
+ "\n"
5039
+ "<p>Bitte klicke auf den folgenden Link, um dein Benutzerkonto zu aktivieren: <br/> \n"
5040
+ "{{{activation_link}}}</p>\n"
5041
+ "<p>Nach der Aktivierung erhälst du eine weitere E-Mail mit deinen Anmeldeinformationen.</p>\n"
5042
+
5043
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5044
+ msgid "[{{site_name}}] Activate {{username}}"
5045
+ msgstr "[{{site_name}}] Aktivieren {{username}}"
5046
+
5047
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5048
+ msgid "Registration with Email Confirmation"
5049
+ msgstr "Registrierung mit E-Mail-Bestätigung"
5050
+
5051
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5052
+ msgid ""
5053
+ "\n"
5054
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5055
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5056
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
5057
+ msgstr ""
5058
+ "\n"
5059
+ "<h3>Willkommen bei {{site_name}}!</h3>\n"
5060
+ "<p>Ihr Benutzername ist: {{username}} und das Kennwort: {{password}}</p>\n"
5061
+ "<p>Bevor Sie in Ihr Konto zugreifen können, muss ein Administrator diesen Benutzer freischalten. Sie werden per E-Mail benachrichtigt, sobald dies passiert ist.</p>\n"
5062
+
5063
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5064
+ msgid "A new account has been created for you on {{site_name}}"
5065
+ msgstr "Ein neues Konto wurde für Sie auf {{Site_name}} erstellt"
5066
+
5067
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5068
+ msgid ""
5069
+ "\n"
5070
+ "<h3>Good News!</h3>\n"
5071
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5072
+ msgstr ""
5073
+ "\n"
5074
+ "<h3>Herzlich Willkommen!</h3>\n"
5075
+ "<p>Der Administrator hat Ihr Konto freigeschaltet: {{username}} auf {{site_name}}.</p>\n"
5076
+
5077
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5078
+ msgid "Your account on {{site_name}} has been approved!"
5079
+ msgstr "Ihr Benutzerkonto auf {{site_name}} wurde freigeschaltet!"
5080
+
5081
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5082
+ msgid "User Approval Notification"
5083
+ msgstr "Benutzer Genehmigungsbenachrichtigung"
5084
+
5085
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5086
+ msgid ""
5087
+ "\n"
5088
+ "<h3>Hello,</h3>\n"
5089
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5090
+ msgstr ""
5091
+ "\n"
5092
+ "<h3>Lieber Benutzer,</h3>\n"
5093
+ "<p>leider hat der Administrator Ihr Konto nicht freigeschaltet.</p>\n"
5094
+
5095
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5096
+ msgid "Your account on {{site_name}} has been unapproved!"
5097
+ msgstr "Ihr Benutzerkonto auf {{site_name}} wurde nicht freigeschaltet!"
5098
+
5099
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5100
+ msgid "Unapproved User Notification"
5101
+ msgstr "Nicht genehmigte Benutzerbenachrichtigung"
5102
+
5103
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5104
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5105
+ msgid "Edit-profile Form"
5106
+ msgstr "Profil-Bearbeiten Formular"
5107
+
5108
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5109
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5110
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5111
+ msgid "Add New"
5112
+ msgstr "Neu hinzufügen"
5113
+
5114
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5115
+ msgid "Add new Edit-profile Form"
5116
+ msgstr "Neues Profil-Bearbeiten Formular hinzufügen"
5117
+
5118
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5119
+ msgid "Edit the Edit-profile Forms"
5120
+ msgstr "Profil-Bearbeiten Formular bearbeiten"
5121
+
5122
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5123
+ msgid "New Edit-profile Form"
5124
+ msgstr "Neues Profil-Bearbeiten Formular"
5125
+
5126
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5127
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5128
+ msgid "Edit-profile Forms"
5129
+ msgstr "Profil-Bearbeiten Formular"
5130
+
5131
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5132
+ msgid "View the Edit-profile Form"
5133
+ msgstr "Ansicht vom Profil-Bearbeiten Formular"
5134
+
5135
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5136
+ msgid "Search the Edit-profile Forms"
5137
+ msgstr "Suchen Sie nach Profil Bearbeitungs-Formulare"
5138
+
5139
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5140
+ msgid "No Edit-profile Form found"
5141
+ msgstr "Kein Profil Bearbeitungs-Formular wurde gefunden"
5142
+
5143
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5144
+ msgid "No Edit-profile Forms found in trash"
5145
+ msgstr "Keine Profil-bearbeitungs Formulare wurden im Papierkorb gefunden"
5146
+
5147
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5148
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5149
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1994
5150
+ msgid "Shortcode"
5151
+ msgstr "Shortcode"
5152
+
5153
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5154
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5155
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2015
5156
+ msgid "(no title)"
5157
+ msgstr "(kein Titel)"
5158
+
5159
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5160
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5161
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2035
5162
+ msgid "The shortcode will be available after you publish this form."
5163
+ msgstr "Der Shortcode wird verfügbar sein, nachdem Sie dieses Formular veröffentlichen."
5164
+
5165
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5166
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5167
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2037
5168
+ msgid "Use this shortcode on the page you want the form to be displayed:"
5169
+ msgstr "Verwenden Sie diesen Shortcode auf der Seite, wo das Formular angezeigt werden soll."
5170
+
5171
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5172
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5173
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2041
5174
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5175
+ msgstr "<span style=\"color:red;\">Hinweis:</span> die Änderung des Formulartitels ändert auch den Shortcode!"
5176
+
5177
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5178
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5179
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2074
5180
+ msgid "Form Shortcode"
5181
+ msgstr "Formular-Shortcode"
5182
+
5183
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5184
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5185
+ msgid "Whether to redirect the user to a specific page or not"
5186
+ msgstr "Ob der Benutzer zu einer bestimmten Seite umgeleitet werden soll oder nicht"
5187
+
5188
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5189
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5190
+ msgid "Display Messages"
5191
+ msgstr "Meldungen anzeigen"
5192
+
5193
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5194
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5195
+ msgid "Allowed time to display any success messages (in seconds)"
5196
+ msgstr "Erlaubte Zeit (in Sekunden) um Erfolgsmeldungen anzuzeigen"
5197
+
5198
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5199
+ 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"
5200
+ msgstr "Geben Sie die URL der Seite ein, zu der die Benutzer umgeleitet werden sollten, sobald sie ihr Profil mit diesem Formular aktualisiert haben<br/> verwenden Sie folgendes Format: http://www.meineWebseite.com"
5201
+
5202
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5203
+ msgid "After Profile Update..."
5204
+ msgstr "Nach Profil-Änderung..."
5205
+
5206
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5207
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5208
+ msgid "Add New Field to the List"
5209
+ msgstr "Neues Feld zur Liste hinzufügen"
5210
+
5211
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5212
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5213
+ msgid "Choose one of the supported fields you manage <a href=\""
5214
+ msgstr "Wählen Sie eines der unterstützten Felder, die Sie verwalten aus <a href=\""
5215
+
5216
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5217
+ msgid "<pre>Title (Type)</pre>"
5218
+ msgstr "<pre>Titel (Type)</pre>"
5219
+
5220
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5221
+ msgid "You need to specify the title of the form before creating it"
5222
+ msgstr "Sie müssen dem Formular einen Titel geben, bevor Sie es anlegen können."
5223
+
5224
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5225
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5226
+ msgid "Registration Form"
5227
+ msgstr "Registrierungsformular"
5228
+
5229
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5230
+ msgid "Add new Registration Form"
5231
+ msgstr "Neues Registrierungsformular hinzufügen"
5232
+
5233
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5234
+ msgid "Edit the Registration Forms"
5235
+ msgstr "Anmeldeformulare bearbeiten"
5236
+
5237
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5238
+ msgid "New Registration Form"
5239
+ msgstr "Neues Registrierungsformular"
5240
+
5241
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5242
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5243
+ msgid "Registration Forms"
5244
+ msgstr "Registrierungsformulare"
5245
+
5246
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5247
+ msgid "View the Registration Form"
5248
+ msgstr "Registrierungsformular ansehen"
5249
+
5250
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5251
+ msgid "Search the Registration Forms"
5252
+ msgstr "Registrierungsformulare durchsuchen"
5253
+
5254
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5255
+ msgid "No Registration Form found"
5256
+ msgstr "Kein Registrierungsformular gefunden"
5257
+
5258
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5259
+ msgid "No Registration Forms found in trash"
5260
+ msgstr "Keine Registrierungsformulare wurden im Papierkorb gefunden"
5261
+
5262
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5263
+ msgid "Default Role"
5264
+ msgstr "Standardrolle"
5265
+
5266
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5267
+ msgid "Set Role"
5268
+ msgstr "Rolle einstellen"
5269
+
5270
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5271
+ 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"
5272
+ msgstr "Wähle aus, welche Rolle ein Benutzer haben sollte, nachdem er sich registriert hat.<br/> Falls nicht angegeben, wird standardmäßig die Rolle aus den WordPress-Einstellungen gesetzt. "
5273
+
5274
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5275
+ msgid "Automatically Log In"
5276
+ msgstr "Automatisch einloggen"
5277
+
5278
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5279
+ 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"
5280
+ msgstr "Ob man sich direkt automatisch als den neu registrierten Benutzer anmelden soll oder nicht.<br/> Funktioniert nur auf einzelnen Seiten ohne dass die Features \"Admin Approval\" und \"E-Mail-Bestätigung\" aktiviert sind.<br/>Achtung: Caching des Registrierungsformulars bricht die automatische Anmeldung."
5281
+
5282
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5283
+ 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"
5284
+ msgstr "Gib die URL der Seite ein, auf der die Benutzer nach der Registrierung mit diesem Formular umgeleitet werden sollen.<br/> Verwende dabei folgendes Format: http://www.meineseite.com"
5285
+
5286
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5287
+ msgid "After Registration..."
5288
+ msgstr "Nach der Registrierung..."
5289
+
5290
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:987
5291
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1429
5292
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1832
5293
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2294
5294
+ msgid "Search Users by All Fields"
5295
+ msgstr "Suche Benutzer über alle Felder"
5296
+
5297
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5298
+ msgid "Add new User Listing"
5299
+ msgstr "Neue Benutzerliste hinzufügen"
5300
+
5301
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5302
+ msgid "Edit the User Listing"
5303
+ msgstr "Benutzerliste bearbeiten"
5304
+
5305
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5306
+ msgid "New User Listing"
5307
+ msgstr "Neue Benutzerliste"
5308
+
5309
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5310
+ msgid "View the User Listing"
5311
+ msgstr "Benutzerliste anzeigen"
5312
+
5313
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5314
+ msgid "Search the User Listing"
5315
+ msgstr "Benutzerliste durchsuchen"
5316
+
5317
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5318
+ msgid "No User Listing found"
5319
+ msgstr "Keine Benutzereinträge gefunden"
5320
+
5321
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5322
+ msgid "No User Listing found in trash"
5323
+ msgstr "Keine Benutzerliste im Papierkorb gefunden"
5324
+
5325
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:104
5326
+ msgid "Display name as"
5327
+ msgstr "Name anzeigen als"
5328
+
5329
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:143
5330
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2102
5331
+ msgid "Registration Date"
5332
+ msgstr "Registrierungsdatum"
5333
+
5334
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:144
5335
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2107
5336
+ msgid "Number of Posts"
5337
+ msgstr "Beitragsanzahl"
5338
+
5339
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:148
5340
+ msgid "More Info"
5341
+ msgstr "Mehr Info"
5342
+
5343
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:149
5344
+ msgid "More Info Url"
5345
+ msgstr "Url für weitere Informationen"
5346
+
5347
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5348
+ msgid "Avatar or Gravatar"
5349
+ msgstr "Profilbild oder Gravatar"
5350
+
5351
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:189
5352
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:218
5353
+ msgid "Extra Functions"
5354
+ msgstr "Zusatzfunktionen"
5355
+
5356
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:191
5357
+ msgid "Pagination"
5358
+ msgstr "Pagination"
5359
+
5360
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:192
5361
+ msgid "Search all Fields"
5362
+ msgstr "Alle Felder durchsuchen"
5363
+
5364
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:220
5365
+ msgid "Go Back Link"
5366
+ msgstr "\"Zurück\"-Link"
5367
+
5368
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:238
5369
+ msgid "All-userlisting Template"
5370
+ msgstr "Vorlage für globale Benutzerliste"
5371
+
5372
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:241
5373
+ msgid "Single-userlisting Template"
5374
+ msgstr "Vorlage für Einzelbenutzerliste"
5375
+
5376
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:707
5377
+ msgid "First/Lastname"
5378
+ msgstr "Vor- / Nachname"
5379
+
5380
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:272
5381
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:713
5382
+ msgid "Sign-up Date"
5383
+ msgstr "Anmeldungsdatum"
5384
+
5385
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:722
5386
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2105
5387
+ msgid "Display Name"
5388
+ msgstr "Anzeigename"
5389
+
5390
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:271
5391
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:731
5392
+ msgid "Posts"
5393
+ msgstr "Beiträge"
5394
+
5395
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:734
5396
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2112
5397
+ msgid "Aim"
5398
+ msgstr "Aim"
5399
+
5400
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:737
5401
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2113
5402
+ msgid "Yim"
5403
+ msgstr "Yim"
5404
+
5405
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:740
5406
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2114
5407
+ msgid "Jabber"
5408
+ msgstr "Jabber"
5409
+
5410
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1239
5411
+ msgid "Click here to see more information about this user"
5412
+ msgstr "Klicke hier für weitere Informationen über diesen Benutzer"
5413
+
5414
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1239
5415
+ msgid "More..."
5416
+ msgstr "Mehr..."
5417
+
5418
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1242
5419
+ msgid "Click here to see more information about this user."
5420
+ msgstr "Klicke hier für weitere Informationen über diesen Benutzer "
5421
+
5422
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1383
5423
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1386
5424
+ msgid "Click here to go back"
5425
+ msgstr "Klicke hier, um zurück zu gehen"
5426
+
5427
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1383
5428
+ msgid "Back"
5429
+ msgstr "Zurück"
5430
+
5431
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1416
5432
+ msgid "&laquo;&laquo; First"
5433
+ msgstr "&laquo;&laquo; Anfang"
5434
+
5435
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1417
5436
+ msgid "&laquo; Prev"
5437
+ msgstr "&laquo; Zurück"
5438
+
5439
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1418
5440
+ msgid "Next &raquo; "
5441
+ msgstr "Nächste Seite &raquo; "
5442
+
5443
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1419
5444
+ msgid "Last &raquo;&raquo;"
5445
+ msgstr "Ende &raquo;&raquo;"
5446
+
5447
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1448
5448
+ msgid "You don't have any pagination settings on this userlisting!"
5449
+ msgstr "Sie haben keine Paginations-Einstellungen für diese Benutzerliste getätigt!"
5450
+
5451
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1849
5452
+ msgid "Search"
5453
+ msgstr "Suchen"
5454
+
5455
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1850
5456
+ msgid "Clear Results"
5457
+ msgstr "Ergebnisse löschen"
5458
+
5459
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2044
5460
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2048
5461
+ msgid "Extra shortcode parameters"
5462
+ msgstr "Zusätzliche Shortcode-Parameter"
5463
+
5464
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2051
5465
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5466
+ msgstr "Anzeige von Benutzer die einen bestimmten Meta-Wert innerhalb eines bestimmten (extra) Meta-Feld haben"
5467
+
5468
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2052
5469
+ msgid "Example:"
5470
+ msgstr "Beispiel:"
5471
+
5472
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2054
5473
+ msgid "Remember though, that the field-value combination must exist in the database."
5474
+ msgstr "Denken Sie daran, dass die Feld-Wert Kombination in der Datenbank vorhanden sein muss."
5475
+
5476
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2124
5477
+ msgid "Random (very slow on large databases > 10K user)"
5478
+ msgstr "Random (sehr langsam auf große Datenbanken > 10K Benutzer)"
5479
+
5480
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5481
+ msgid "Roles to Display"
5482
+ msgstr "Rollen anzeigen"
5483
+
5484
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5485
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5486
+ 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"
5487
+
5488
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2137
5489
+ msgid "Number of Users/Page"
5490
+ msgstr "Anzahl Benutzer/Seite"
5491
+
5492
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2138
5493
+ msgid "Default Sorting Criteria"
5494
+ msgstr "Standard-Sortierkriterien"
5495
+
5496
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2138
5497
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5498
+ msgstr "Festlegen der Standard-Sortierungskriterien <br/> Sie können temporär für jede neue Sitzung geändert werden."
5499
+
5500
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2139
5501
+ msgid "Default Sorting Order"
5502
+ msgstr "Standard-Sortierreihenfolge"
5503
+
5504
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2139
5505
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5506
+ msgstr "Festlegen der standard Sortierungskriterien <br/> Dieses kann temporär für jede neue Sitzung geändert werden"
5507
+
5508
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2140
5509
+ msgid "Avatar Size (All-userlisting)"
5510
+ msgstr "Profilbild-Größe (alle Benutzereinträge)"
5511
+
5512
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2140
5513
+ msgid "Set the avatar size on the all-userlisting only"
5514
+ msgstr "Legen Sie die Profilbildgröße für alle Benutzer-Listen fest."
5515
+
5516
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2141
5517
+ msgid "Avatar Size (Single-userlisting)"
5518
+ msgstr "Profilbild-Größe (Einzel-Benutzeranzeige)"
5519
+
5520
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2141
5521
+ msgid "Set the avatar size on the single-userlisting only"
5522
+ msgstr "Setzen Sie die Profilbild-Größe (nur für die Einzel-Benutzeranzeige)"
5523
+
5524
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2142
5525
+ msgid "Visible only to logged in users?"
5526
+ msgstr "Nur für angemeldete Benutzer sichtbar?"
5527
+
5528
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2142
5529
+ msgid "The userlisting will only be visible only to the logged in users"
5530
+ msgstr "Die Benutzeranzeigen werden nur für die angemeldeten Benutzer sichtbar sein"
5531
+
5532
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2143
5533
+ msgid "Visible to following Roles"
5534
+ msgstr "Für folgende Rollen sichtbar"
5535
+
5536
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2143
5537
+ msgid "The userlisting will only be visible to the following roles"
5538
+ msgstr " Die Benutzeranzeige wird nur für folgende Rollen sichtbar sein."
5539
+
5540
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2149
5541
+ msgid "Userlisting Settings"
5542
+ msgstr "Einstellungen für Benutzerliste"
5543
+
5544
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2270
5545
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5546
+ msgstr "Sie müssen die Benutzerlisten-Funktion innerhalb des Tabs \"Module\" aktivieren!"
5547
+
5548
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2270
5549
+ msgid "You can find it in the Profile Builder menu."
5550
+ msgstr "Sie finden es im Menü vom Profile Builder"
5551
+
5552
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2433
5553
+ msgid "No results found!"
5554
+ msgstr "Es wurden keine Ergebnisse gefunden!"
translation/profile-builder-es_ES.mo CHANGED
Binary file
translation/profile-builder-es_ES.po CHANGED
@@ -1,4041 +1,5553 @@
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!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2016-11-28 13:12:37+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
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:239
14
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
15
+ msgstr ""
16
+
17
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
18
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
19
+ msgstr ""
20
+
21
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1269
22
+ msgid "View Map"
23
+ msgstr ""
24
+
25
+ #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
26
+ #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
27
+ #: pb-add-on-woocommerce/index.php:493
28
+ msgid "Address line 2"
29
+ msgstr ""
30
+
31
+ #: pb-add-on-woocommerce/index.php:256
32
+ msgid "Billing Fields"
33
+ msgstr ""
34
+
35
+ #: pb-add-on-woocommerce/index.php:256
36
+ msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
37
+ msgstr ""
38
+
39
+ #: pb-add-on-woocommerce/index.php:257
40
+ msgid "Billing Fields Order"
41
+ msgstr ""
42
+
43
+ #: pb-add-on-woocommerce/index.php:257
44
+ msgid "Save the billing fields order from the billing fields checkboxes"
45
+ msgstr ""
46
+
47
+ #: pb-add-on-woocommerce/index.php:258
48
+ msgid "Billing Fields Name"
49
+ msgstr ""
50
+
51
+ #: pb-add-on-woocommerce/index.php:258
52
+ msgid "Save the billing fields names"
53
+ msgstr ""
54
+
55
+ #: pb-add-on-woocommerce/index.php:275
56
+ msgid "Shipping Fields"
57
+ msgstr ""
58
+
59
+ #: pb-add-on-woocommerce/index.php:275
60
+ msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
61
+ msgstr ""
62
+
63
+ #: pb-add-on-woocommerce/index.php:276
64
+ msgid "Shipping Fields Order"
65
+ msgstr ""
66
+
67
+ #: pb-add-on-woocommerce/index.php:276
68
+ msgid "Save the shipping fields order from the billing fields checkboxes"
69
+ msgstr ""
70
+
71
+ #: pb-add-on-woocommerce/index.php:277
72
+ msgid "Shipping Fields Name"
73
+ msgstr ""
74
+
75
+ #: pb-add-on-woocommerce/index.php:277
76
+ msgid "Save the shipping fields names"
77
+ msgstr ""
78
+
79
+ #: pb-add-on-woocommerce/index.php:305
80
+ msgid "Field Name"
81
+ msgstr ""
82
+
83
+ #: pb-add-on-woocommerce/index.php:369
84
+ msgid "Click to edit "
85
+ msgstr ""
86
+
87
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
88
+ msgid "is not a valid phone number."
89
+ msgstr ""
90
+
91
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
92
+ msgid "is not a number."
93
+ msgstr ""
94
+
95
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
96
+ msgid "must be a multiplier of "
97
+ msgstr ""
98
+
99
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
100
+ msgid "must be a greater than or equal to "
101
+ msgstr ""
102
+
103
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
104
+ msgid "must be less than or equal to "
105
+ msgstr ""
106
+
107
+ #: profile-builder-2.0/admin/add-ons.php:103
108
+ msgid "Available in Hobbyist and Pro Versions"
109
+ msgstr ""
110
+
111
+ #: profile-builder-2.0/admin/add-ons.php:105
112
+ msgid "Available in All Versions"
113
+ msgstr ""
114
+
115
+ #: profile-builder-2.0/admin/add-ons.php:148
116
+ msgid "Learn More"
117
+ msgstr ""
118
+
119
+ #: profile-builder-2.0/admin/basic-info.php:99
120
+ msgid "Timepicker"
121
+ msgstr ""
122
+
123
+ #: profile-builder-2.0/admin/basic-info.php:100
124
+ msgid "Colorpicker"
125
+ msgstr ""
126
+
127
+ #: profile-builder-2.0/admin/basic-info.php:103
128
+ msgid "Currency Select"
129
+ msgstr ""
130
+
131
+ #: profile-builder-2.0/admin/basic-info.php:109
132
+ msgid "Number"
133
+ msgstr ""
134
+
135
+ #: profile-builder-2.0/admin/basic-info.php:114
136
+ msgid "Validation"
137
+ msgstr ""
138
+
139
+ #: profile-builder-2.0/admin/basic-info.php:115
140
+ msgid "Map"
141
+ msgstr ""
142
+
143
+ #: profile-builder-2.0/admin/basic-info.php:116
144
+ msgid "HTML"
145
+ msgstr ""
146
+
147
+ #: profile-builder-2.0/admin/basic-info.php:162
148
+ #: profile-builder-2.0/modules/modules.php:117
149
+ msgid "Repeater Fields"
150
+ msgstr ""
151
+
152
+ #: profile-builder-2.0/admin/basic-info.php:163
153
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
154
+ msgstr ""
155
+
156
+ #: profile-builder-2.0/admin/general-settings.php:62
157
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
158
+ msgstr ""
159
+
160
+ #: profile-builder-2.0/admin/manage-fields.php:115
161
+ msgid "Use this in conjunction 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 unique)<br/>Changing this might take long in case of a very big user-count"
162
+ msgstr ""
163
+
164
+ #: profile-builder-2.0/admin/manage-fields.php:138
165
+ msgid "Show Currency Symbol"
166
+ msgstr ""
167
+
168
+ #: profile-builder-2.0/admin/manage-fields.php:138
169
+ msgid "Whether the currency symbol should be displayed after the currency name in the select option."
170
+ msgstr ""
171
+
172
+ #: profile-builder-2.0/admin/manage-fields.php:139
173
+ msgid "Show Post Type"
174
+ msgstr ""
175
+
176
+ #: profile-builder-2.0/admin/manage-fields.php:139
177
+ msgid "Posts from what post type will be displayed in the select."
178
+ msgstr ""
179
+
180
+ #: profile-builder-2.0/admin/manage-fields.php:140
181
+ msgid "Allowable Values"
182
+ msgstr ""
183
+
184
+ #: profile-builder-2.0/admin/manage-fields.php:140
185
+ msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
186
+ msgstr ""
187
+
188
+ #: profile-builder-2.0/admin/manage-fields.php:141
189
+ msgid "Error Message"
190
+ msgstr ""
191
+
192
+ #: profile-builder-2.0/admin/manage-fields.php:141
193
+ msgid "Set a custom error message that will be displayed to the user."
194
+ msgstr ""
195
+
196
+ #: profile-builder-2.0/admin/manage-fields.php:142
197
+ msgid "Time Format"
198
+ msgstr ""
199
+
200
+ #: profile-builder-2.0/admin/manage-fields.php:142
201
+ msgid "Specify the time format."
202
+ msgstr ""
203
+
204
+ #: profile-builder-2.0/admin/manage-fields.php:143
205
+ msgid "Google Maps API Key"
206
+ msgstr ""
207
+
208
+ #: profile-builder-2.0/admin/manage-fields.php:143
209
+ msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
210
+ msgstr ""
211
+
212
+ #: profile-builder-2.0/admin/manage-fields.php:144
213
+ msgid "Default Latitude"
214
+ msgstr ""
215
+
216
+ #: profile-builder-2.0/admin/manage-fields.php:144
217
+ msgid "The latitude at which the map should be displayed when no pins are attached."
218
+ msgstr ""
219
+
220
+ #: profile-builder-2.0/admin/manage-fields.php:145
221
+ msgid "Default Longitude"
222
+ msgstr ""
223
+
224
+ #: profile-builder-2.0/admin/manage-fields.php:145
225
+ msgid "The longitude at which the map should be displayed when no pins are attached."
226
+ msgstr ""
227
+
228
+ #: profile-builder-2.0/admin/manage-fields.php:146
229
+ msgid "Default Zoom Level"
230
+ msgstr ""
231
+
232
+ #: profile-builder-2.0/admin/manage-fields.php:146
233
+ msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
234
+ msgstr ""
235
+
236
+ #: profile-builder-2.0/admin/manage-fields.php:147
237
+ msgid "Map Height"
238
+ msgstr ""
239
+
240
+ #: profile-builder-2.0/admin/manage-fields.php:147
241
+ msgid "The height of the map."
242
+ msgstr ""
243
+
244
+ #: profile-builder-2.0/admin/manage-fields.php:149
245
+ msgid "HTML Content"
246
+ msgstr ""
247
+
248
+ #: profile-builder-2.0/admin/manage-fields.php:149
249
+ msgid "Add your HTML (or text) content"
250
+ msgstr ""
251
+
252
+ #: profile-builder-2.0/admin/manage-fields.php:150
253
+ msgid "Phone Format"
254
+ msgstr ""
255
+
256
+ #: profile-builder-2.0/admin/manage-fields.php:150
257
+ msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
258
+ msgstr ""
259
+
260
+ #: profile-builder-2.0/admin/manage-fields.php:150
261
+ msgid "Eg. (###) ###-####"
262
+ msgstr ""
263
+
264
+ #: profile-builder-2.0/admin/manage-fields.php:150
265
+ msgid "Empty field won't check for correct phone number."
266
+ msgstr ""
267
+
268
+ #: profile-builder-2.0/admin/manage-fields.php:151
269
+ msgid "Heading Tag"
270
+ msgstr ""
271
+
272
+ #: profile-builder-2.0/admin/manage-fields.php:151
273
+ msgid "Change heading field size on front-end forms"
274
+ msgstr ""
275
+
276
+ #: profile-builder-2.0/admin/manage-fields.php:152
277
+ msgid "Min Number Value"
278
+ msgstr ""
279
+
280
+ #: profile-builder-2.0/admin/manage-fields.php:152
281
+ msgid "Min allowed number value (0 to allow only positive numbers)"
282
+ msgstr ""
283
+
284
+ #: profile-builder-2.0/admin/manage-fields.php:152
285
+ msgid "Leave it empty for no min value"
286
+ msgstr ""
287
+
288
+ #: profile-builder-2.0/admin/manage-fields.php:153
289
+ msgid "Max Number Value"
290
+ msgstr ""
291
+
292
+ #: profile-builder-2.0/admin/manage-fields.php:153
293
+ msgid "Max allowed number value (0 to allow only negative numbers)"
294
+ msgstr ""
295
+
296
+ #: profile-builder-2.0/admin/manage-fields.php:153
297
+ msgid "Leave it empty for no max value"
298
+ msgstr ""
299
+
300
+ #: profile-builder-2.0/admin/manage-fields.php:154
301
+ msgid "Number Step Value"
302
+ msgstr ""
303
+
304
+ #: profile-builder-2.0/admin/manage-fields.php:154
305
+ msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
306
+ msgstr ""
307
+
308
+ #: profile-builder-2.0/admin/manage-fields.php:154
309
+ msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
310
+ msgstr ""
311
+
312
+ #: profile-builder-2.0/admin/manage-fields.php:154
313
+ msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
314
+ msgstr ""
315
+
316
+ #: profile-builder-2.0/admin/manage-fields.php:154
317
+ msgid "Leave it empty for no restriction"
318
+ msgstr ""
319
+
320
+ #: profile-builder-2.0/admin/manage-fields.php:555
321
+ msgid "Albania Lek"
322
+ msgstr ""
323
+
324
+ #: profile-builder-2.0/admin/manage-fields.php:556
325
+ msgid "Afghanistan Afghani"
326
+ msgstr ""
327
+
328
+ #: profile-builder-2.0/admin/manage-fields.php:557
329
+ msgid "Argentina Peso"
330
+ msgstr ""
331
+
332
+ #: profile-builder-2.0/admin/manage-fields.php:558
333
+ msgid "Aruba Guilder"
334
+ msgstr ""
335
+
336
+ #: profile-builder-2.0/admin/manage-fields.php:559
337
+ msgid "Australia Dollar"
338
+ msgstr ""
339
+
340
+ #: profile-builder-2.0/admin/manage-fields.php:560
341
+ msgid "Azerbaijan New Manat"
342
+ msgstr ""
343
+
344
+ #: profile-builder-2.0/admin/manage-fields.php:561
345
+ msgid "Bahamas Dollar"
346
+ msgstr ""
347
+
348
+ #: profile-builder-2.0/admin/manage-fields.php:562
349
+ msgid "Barbados Dollar"
350
+ msgstr ""
351
+
352
+ #: profile-builder-2.0/admin/manage-fields.php:563
353
+ msgid "Bangladeshi taka"
354
+ msgstr ""
355
+
356
+ #: profile-builder-2.0/admin/manage-fields.php:564
357
+ msgid "Belarus Ruble"
358
+ msgstr ""
359
+
360
+ #: profile-builder-2.0/admin/manage-fields.php:565
361
+ msgid "Belize Dollar"
362
+ msgstr ""
363
+
364
+ #: profile-builder-2.0/admin/manage-fields.php:566
365
+ msgid "Bermuda Dollar"
366
+ msgstr ""
367
+
368
+ #: profile-builder-2.0/admin/manage-fields.php:567
369
+ msgid "Bolivia Boliviano"
370
+ msgstr ""
371
+
372
+ #: profile-builder-2.0/admin/manage-fields.php:568
373
+ msgid "Bosnia and Herzegovina Convertible Marka"
374
+ msgstr ""
375
+
376
+ #: profile-builder-2.0/admin/manage-fields.php:569
377
+ msgid "Botswana Pula"
378
+ msgstr ""
379
+
380
+ #: profile-builder-2.0/admin/manage-fields.php:570
381
+ msgid "Bulgaria Lev"
382
+ msgstr ""
383
+
384
+ #: profile-builder-2.0/admin/manage-fields.php:571
385
+ msgid "Brazil Real"
386
+ msgstr ""
387
+
388
+ #: profile-builder-2.0/admin/manage-fields.php:572
389
+ msgid "Brunei Darussalam Dollar"
390
+ msgstr ""
391
+
392
+ #: profile-builder-2.0/admin/manage-fields.php:573
393
+ msgid "Cambodia Riel"
394
+ msgstr ""
395
+
396
+ #: profile-builder-2.0/admin/manage-fields.php:574
397
+ msgid "Canada Dollar"
398
+ msgstr ""
399
+
400
+ #: profile-builder-2.0/admin/manage-fields.php:575
401
+ msgid "Cayman Islands Dollar"
402
+ msgstr ""
403
+
404
+ #: profile-builder-2.0/admin/manage-fields.php:576
405
+ msgid "Chile Peso"
406
+ msgstr ""
407
+
408
+ #: profile-builder-2.0/admin/manage-fields.php:577
409
+ msgid "China Yuan Renminbi"
410
+ msgstr ""
411
+
412
+ #: profile-builder-2.0/admin/manage-fields.php:578
413
+ msgid "Colombia Peso"
414
+ msgstr ""
415
+
416
+ #: profile-builder-2.0/admin/manage-fields.php:579
417
+ msgid "Costa Rica Colon"
418
+ msgstr ""
419
+
420
+ #: profile-builder-2.0/admin/manage-fields.php:580
421
+ msgid "Croatia Kuna"
422
+ msgstr ""
423
+
424
+ #: profile-builder-2.0/admin/manage-fields.php:581
425
+ msgid "Cuba Peso"
426
+ msgstr ""
427
+
428
+ #: profile-builder-2.0/admin/manage-fields.php:582
429
+ msgid "Czech Republic Koruna"
430
+ msgstr ""
431
+
432
+ #: profile-builder-2.0/admin/manage-fields.php:583
433
+ msgid "Denmark Krone"
434
+ msgstr ""
435
+
436
+ #: profile-builder-2.0/admin/manage-fields.php:584
437
+ msgid "Dominican Republic Peso"
438
+ msgstr ""
439
+
440
+ #: profile-builder-2.0/admin/manage-fields.php:585
441
+ msgid "East Caribbean Dollar"
442
+ msgstr ""
443
+
444
+ #: profile-builder-2.0/admin/manage-fields.php:586
445
+ msgid "Egypt Pound"
446
+ msgstr ""
447
+
448
+ #: profile-builder-2.0/admin/manage-fields.php:587
449
+ msgid "El Salvador Colon"
450
+ msgstr ""
451
+
452
+ #: profile-builder-2.0/admin/manage-fields.php:588
453
+ msgid "Estonia Kroon"
454
+ msgstr ""
455
+
456
+ #: profile-builder-2.0/admin/manage-fields.php:589
457
+ msgid "Euro"
458
+ msgstr ""
459
+
460
+ #: profile-builder-2.0/admin/manage-fields.php:590
461
+ msgid "Falkland Islands (Malvinas) Pound"
462
+ msgstr ""
463
+
464
+ #: profile-builder-2.0/admin/manage-fields.php:591
465
+ msgid "Fiji Dollar"
466
+ msgstr ""
467
+
468
+ #: profile-builder-2.0/admin/manage-fields.php:592
469
+ msgid "Ghana Cedis"
470
+ msgstr ""
471
+
472
+ #: profile-builder-2.0/admin/manage-fields.php:593
473
+ msgid "Gibraltar Pound"
474
+ msgstr ""
475
+
476
+ #: profile-builder-2.0/admin/manage-fields.php:594
477
+ msgid "Guatemala Quetzal"
478
+ msgstr ""
479
+
480
+ #: profile-builder-2.0/admin/manage-fields.php:595
481
+ msgid "Guernsey Pound"
482
+ msgstr ""
483
+
484
+ #: profile-builder-2.0/admin/manage-fields.php:596
485
+ msgid "Guyana Dollar"
486
+ msgstr ""
487
+
488
+ #: profile-builder-2.0/admin/manage-fields.php:597
489
+ msgid "Honduras Lempira"
490
+ msgstr ""
491
+
492
+ #: profile-builder-2.0/admin/manage-fields.php:598
493
+ msgid "Hong Kong Dollar"
494
+ msgstr ""
495
+
496
+ #: profile-builder-2.0/admin/manage-fields.php:599
497
+ msgid "Hungary Forint"
498
+ msgstr ""
499
+
500
+ #: profile-builder-2.0/admin/manage-fields.php:600
501
+ msgid "Iceland Krona"
502
+ msgstr ""
503
+
504
+ #: profile-builder-2.0/admin/manage-fields.php:601
505
+ msgid "India Rupee"
506
+ msgstr ""
507
+
508
+ #: profile-builder-2.0/admin/manage-fields.php:602
509
+ msgid "Indonesia Rupiah"
510
+ msgstr ""
511
+
512
+ #: profile-builder-2.0/admin/manage-fields.php:603
513
+ msgid "Iran Rial"
514
+ msgstr ""
515
+
516
+ #: profile-builder-2.0/admin/manage-fields.php:604
517
+ msgid "Isle of Man Pound"
518
+ msgstr ""
519
+
520
+ #: profile-builder-2.0/admin/manage-fields.php:605
521
+ msgid "Israel Shekel"
522
+ msgstr ""
523
+
524
+ #: profile-builder-2.0/admin/manage-fields.php:606
525
+ msgid "Jamaica Dollar"
526
+ msgstr ""
527
+
528
+ #: profile-builder-2.0/admin/manage-fields.php:607
529
+ msgid "Japan Yen"
530
+ msgstr ""
531
+
532
+ #: profile-builder-2.0/admin/manage-fields.php:608
533
+ msgid "Jersey Pound"
534
+ msgstr ""
535
+
536
+ #: profile-builder-2.0/admin/manage-fields.php:609
537
+ msgid "Kazakhstan Tenge"
538
+ msgstr ""
539
+
540
+ #: profile-builder-2.0/admin/manage-fields.php:610
541
+ msgid "Korea (North) Won"
542
+ msgstr ""
543
+
544
+ #: profile-builder-2.0/admin/manage-fields.php:611
545
+ msgid "Korea (South) Won"
546
+ msgstr ""
547
+
548
+ #: profile-builder-2.0/admin/manage-fields.php:612
549
+ msgid "Kyrgyzstan Som"
550
+ msgstr ""
551
+
552
+ #: profile-builder-2.0/admin/manage-fields.php:613
553
+ msgid "Laos Kip"
554
+ msgstr ""
555
+
556
+ #: profile-builder-2.0/admin/manage-fields.php:614
557
+ msgid "Latvia Lat"
558
+ msgstr ""
559
+
560
+ #: profile-builder-2.0/admin/manage-fields.php:615
561
+ msgid "Lebanon Pound"
562
+ msgstr ""
563
+
564
+ #: profile-builder-2.0/admin/manage-fields.php:616
565
+ msgid "Liberia Dollar"
566
+ msgstr ""
567
+
568
+ #: profile-builder-2.0/admin/manage-fields.php:617
569
+ msgid "Lithuania Litas"
570
+ msgstr ""
571
+
572
+ #: profile-builder-2.0/admin/manage-fields.php:618
573
+ msgid "Macedonia Denar"
574
+ msgstr ""
575
+
576
+ #: profile-builder-2.0/admin/manage-fields.php:619
577
+ msgid "Malaysia Ringgit"
578
+ msgstr ""
579
+
580
+ #: profile-builder-2.0/admin/manage-fields.php:620
581
+ msgid "Mauritius Rupee"
582
+ msgstr ""
583
+
584
+ #: profile-builder-2.0/admin/manage-fields.php:621
585
+ msgid "Mexico Peso"
586
+ msgstr ""
587
+
588
+ #: profile-builder-2.0/admin/manage-fields.php:622
589
+ msgid "Mongolia Tughrik"
590
+ msgstr ""
591
+
592
+ #: profile-builder-2.0/admin/manage-fields.php:623
593
+ msgid "Mozambique Metical"
594
+ msgstr ""
595
+
596
+ #: profile-builder-2.0/admin/manage-fields.php:624
597
+ msgid "Namibia Dollar"
598
+ msgstr ""
599
+
600
+ #: profile-builder-2.0/admin/manage-fields.php:625
601
+ msgid "Nepal Rupee"
602
+ msgstr ""
603
+
604
+ #: profile-builder-2.0/admin/manage-fields.php:626
605
+ msgid "Netherlands Antilles Guilder"
606
+ msgstr ""
607
+
608
+ #: profile-builder-2.0/admin/manage-fields.php:627
609
+ msgid "New Zealand Dollar"
610
+ msgstr ""
611
+
612
+ #: profile-builder-2.0/admin/manage-fields.php:628
613
+ msgid "Nicaragua Cordoba"
614
+ msgstr ""
615
+
616
+ #: profile-builder-2.0/admin/manage-fields.php:629
617
+ msgid "Nigeria Naira"
618
+ msgstr ""
619
+
620
+ #: profile-builder-2.0/admin/manage-fields.php:630
621
+ msgid "Norway Krone"
622
+ msgstr ""
623
+
624
+ #: profile-builder-2.0/admin/manage-fields.php:631
625
+ msgid "Oman Rial"
626
+ msgstr ""
627
+
628
+ #: profile-builder-2.0/admin/manage-fields.php:632
629
+ msgid "Pakistan Rupee"
630
+ msgstr ""
631
+
632
+ #: profile-builder-2.0/admin/manage-fields.php:633
633
+ msgid "Panama Balboa"
634
+ msgstr ""
635
+
636
+ #: profile-builder-2.0/admin/manage-fields.php:634
637
+ msgid "Paraguay Guarani"
638
+ msgstr ""
639
+
640
+ #: profile-builder-2.0/admin/manage-fields.php:635
641
+ msgid "Peru Nuevo Sol"
642
+ msgstr ""
643
+
644
+ #: profile-builder-2.0/admin/manage-fields.php:636
645
+ msgid "Philippines Peso"
646
+ msgstr ""
647
+
648
+ #: profile-builder-2.0/admin/manage-fields.php:637
649
+ msgid "Poland Zloty"
650
+ msgstr ""
651
+
652
+ #: profile-builder-2.0/admin/manage-fields.php:638
653
+ msgid "Qatar Riyal"
654
+ msgstr ""
655
+
656
+ #: profile-builder-2.0/admin/manage-fields.php:639
657
+ msgid "Romania New Leu"
658
+ msgstr ""
659
+
660
+ #: profile-builder-2.0/admin/manage-fields.php:640
661
+ msgid "Russia Ruble"
662
+ msgstr ""
663
+
664
+ #: profile-builder-2.0/admin/manage-fields.php:641
665
+ msgid "Saint Helena Pound"
666
+ msgstr ""
667
+
668
+ #: profile-builder-2.0/admin/manage-fields.php:642
669
+ msgid "Saudi Arabia Riyal"
670
+ msgstr ""
671
+
672
+ #: profile-builder-2.0/admin/manage-fields.php:643
673
+ msgid "Serbia Dinar"
674
+ msgstr ""
675
+
676
+ #: profile-builder-2.0/admin/manage-fields.php:644
677
+ msgid "Seychelles Rupee"
678
+ msgstr ""
679
+
680
+ #: profile-builder-2.0/admin/manage-fields.php:645
681
+ msgid "Singapore Dollar"
682
+ msgstr ""
683
+
684
+ #: profile-builder-2.0/admin/manage-fields.php:646
685
+ msgid "Solomon Islands Dollar"
686
+ msgstr ""
687
+
688
+ #: profile-builder-2.0/admin/manage-fields.php:647
689
+ msgid "Somalia Shilling"
690
+ msgstr ""
691
+
692
+ #: profile-builder-2.0/admin/manage-fields.php:648
693
+ msgid "South Africa Rand"
694
+ msgstr ""
695
+
696
+ #: profile-builder-2.0/admin/manage-fields.php:649
697
+ msgid "Sri Lanka Rupee"
698
+ msgstr ""
699
+
700
+ #: profile-builder-2.0/admin/manage-fields.php:650
701
+ msgid "Sweden Krona"
702
+ msgstr ""
703
+
704
+ #: profile-builder-2.0/admin/manage-fields.php:651
705
+ msgid "Switzerland Franc"
706
+ msgstr ""
707
+
708
+ #: profile-builder-2.0/admin/manage-fields.php:652
709
+ msgid "Suriname Dollar"
710
+ msgstr ""
711
+
712
+ #: profile-builder-2.0/admin/manage-fields.php:653
713
+ msgid "Syria Pound"
714
+ msgstr ""
715
+
716
+ #: profile-builder-2.0/admin/manage-fields.php:654
717
+ msgid "Taiwan New Dollar"
718
+ msgstr ""
719
+
720
+ #: profile-builder-2.0/admin/manage-fields.php:655
721
+ msgid "Thailand Baht"
722
+ msgstr ""
723
+
724
+ #: profile-builder-2.0/admin/manage-fields.php:656
725
+ msgid "Trinidad and Tobago Dollar"
726
+ msgstr ""
727
+
728
+ #: profile-builder-2.0/admin/manage-fields.php:657
729
+ #: profile-builder-2.0/admin/manage-fields.php:658
730
+ msgid "Turkey Lira"
731
+ msgstr ""
732
+
733
+ #: profile-builder-2.0/admin/manage-fields.php:659
734
+ msgid "Tuvalu Dollar"
735
+ msgstr ""
736
+
737
+ #: profile-builder-2.0/admin/manage-fields.php:660
738
+ msgid "Ukraine Hryvna"
739
+ msgstr ""
740
+
741
+ #: profile-builder-2.0/admin/manage-fields.php:661
742
+ msgid "United Kingdom Pound"
743
+ msgstr ""
744
+
745
+ #: profile-builder-2.0/admin/manage-fields.php:662
746
+ msgid "Uganda Shilling"
747
+ msgstr ""
748
+
749
+ #: profile-builder-2.0/admin/manage-fields.php:663
750
+ msgid "US Dollar"
751
+ msgstr ""
752
+
753
+ #: profile-builder-2.0/admin/manage-fields.php:664
754
+ msgid "Uruguay Peso"
755
+ msgstr ""
756
+
757
+ #: profile-builder-2.0/admin/manage-fields.php:665
758
+ msgid "Uzbekistan Som"
759
+ msgstr ""
760
+
761
+ #: profile-builder-2.0/admin/manage-fields.php:666
762
+ msgid "Venezuela Bolivar"
763
+ msgstr ""
764
+
765
+ #: profile-builder-2.0/admin/manage-fields.php:667
766
+ msgid "Viet Nam Dong"
767
+ msgstr ""
768
+
769
+ #: profile-builder-2.0/admin/manage-fields.php:668
770
+ msgid "Yemen Rial"
771
+ msgstr ""
772
+
773
+ #: profile-builder-2.0/admin/manage-fields.php:669
774
+ msgid "Zimbabwe Dollar"
775
+ msgstr ""
776
+
777
+ #: profile-builder-2.0/admin/manage-fields.php:1080
778
+ msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
779
+ msgstr ""
780
+
781
+ #: profile-builder-2.0/admin/manage-fields.php:1296
782
+ msgid "Search Location"
783
+ msgstr ""
784
+
785
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
786
+ msgid "You are not allowed to do this."
787
+ msgstr ""
788
+
789
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
790
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
791
+ msgid "Search Users"
792
+ msgstr ""
793
+
794
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
795
+ msgid "Conditional Logic"
796
+ msgstr ""
797
+
798
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
799
+ msgid "Conditional Rules"
800
+ msgstr ""
801
+
802
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:432
803
+ msgid "This field has conditional logic enabled."
804
+ msgstr ""
805
+
806
+ #: profile-builder-2.0/features/functions.php:712
807
+ msgid "Incorrect phone number"
808
+ msgstr ""
809
+
810
+ #: profile-builder-2.0/front-end/class-formbuilder.php:120
811
+ msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
812
+ msgstr ""
813
+
814
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
815
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
816
+ msgid "Please add the Google Maps API key for this field."
817
+ msgstr ""
818
+
819
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
820
+ msgid "Something went wrong. Please try again."
821
+ msgstr ""
822
+
823
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
824
+ msgid "Please enter numbers only"
825
+ msgstr ""
826
+
827
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
828
+ msgid "Value must be a multiplier of %1$s"
829
+ msgstr ""
830
+
831
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
832
+ msgid "Value must be greater than or equal to %1$s"
833
+ msgstr ""
834
+
835
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
836
+ msgid "Value must be less than or equal to %1$s"
837
+ msgstr ""
838
+
839
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
840
+ msgid "Required phone number format: "
841
+ msgstr ""
842
+
843
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
844
+ msgid "Bolivia, __( Plurinational State of"
845
+ msgstr ""
846
+
847
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
848
+ msgid "Bonaire, __( Sint Eustatius and Saba"
849
+ msgstr ""
850
+
851
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
852
+ msgid "Brunei Darussalam"
853
+ msgstr ""
854
+
855
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
856
+ msgid "Cabo Verde"
857
+ msgstr ""
858
+
859
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
860
+ msgid "Cocos (Keeling) Islands"
861
+ msgstr ""
862
+
863
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
864
+ msgid "Congo"
865
+ msgstr ""
866
+
867
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
868
+ msgid "Congo, __( the Democratic Republic of the"
869
+ msgstr ""
870
+
871
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
872
+ msgid "Cote dIvoire"
873
+ msgstr ""
874
+
875
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
876
+ msgid "Falkland Islands (Malvinas)"
877
+ msgstr ""
878
+
879
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
880
+ msgid "Holy See (Vatican City State)"
881
+ msgstr ""
882
+
883
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
884
+ msgid "Iran, __( Islamic Republic of"
885
+ msgstr ""
886
+
887
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
888
+ msgid "Korea, __( Democratic Peoples Republic of"
889
+ msgstr ""
890
+
891
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
892
+ msgid "Korea, __( Republic of"
893
+ msgstr ""
894
+
895
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
896
+ msgid "Lao Peoples Democratic Republic"
897
+ msgstr ""
898
+
899
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
900
+ msgid "Macedonia, __( the former Yugoslav Republic of"
901
+ msgstr ""
902
+
903
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
904
+ msgid "Micronesia, __( Federated States of"
905
+ msgstr ""
906
+
907
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
908
+ msgid "Moldova, __( Republic of"
909
+ msgstr ""
910
+
911
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
912
+ msgid "Palestine, __( State of"
913
+ msgstr ""
914
+
915
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
916
+ msgid "Russian Federation"
917
+ msgstr ""
918
+
919
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
920
+ msgid "Saint Helena, __( Ascension and Tristan da Cunha"
921
+ msgstr ""
922
+
923
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
924
+ msgid "Saint Martin (French part)"
925
+ msgstr ""
926
+
927
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
928
+ msgid "Sint Maarten (Dutch part)"
929
+ msgstr ""
930
+
931
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
932
+ msgid "Syrian Arab Republic"
933
+ msgstr ""
934
+
935
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
936
+ msgid "Taiwan, __( Province of China"
937
+ msgstr ""
938
+
939
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
940
+ msgid "Tanzania, __( United Republic of"
941
+ msgstr ""
942
+
943
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
944
+ msgid "Timor-Leste"
945
+ msgstr ""
946
+
947
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
948
+ msgid "Venezuela, __( Bolivarian Republic of"
949
+ msgstr ""
950
+
951
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
952
+ msgid "Viet Nam"
953
+ msgstr ""
954
+
955
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
956
+ msgid "Virgin Islands, __( British"
957
+ msgstr ""
958
+
959
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
960
+ msgid "Virgin Islands, __( U.S."
961
+ msgstr ""
962
+
963
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
964
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:179
965
+ msgid "User Fields Tags"
966
+ msgstr ""
967
+
968
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:462
969
+ msgid "The users selected password at signup"
970
+ msgstr ""
971
+
972
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
973
+ msgid "[{{site_name}}] Notice of Email Change"
974
+ msgstr ""
975
+
976
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
977
+ msgid "Changed Email Address Notification"
978
+ msgstr ""
979
+
980
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
981
+ msgid "Limit"
982
+ msgstr ""
983
+
984
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:189
985
+ msgid "Enable limit to the number of fields to be generated by users in front end forms "
986
+ msgstr ""
987
+
988
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
989
+ msgid "General Limit"
990
+ msgstr ""
991
+
992
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
993
+ msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
994
+ msgstr ""
995
+
996
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
997
+ msgid "Limit reached message"
998
+ msgstr ""
999
+
1000
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1001
+ msgid "The maximum number of fields has been reached."
1002
+ msgstr ""
1003
+
1004
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1005
+ msgid "The popup message to display when the limit of repeater groups is reached."
1006
+ msgstr ""
1007
+
1008
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1009
+ msgid "Limit per Role"
1010
+ msgstr ""
1011
+
1012
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1013
+ msgid "Leave 0 for unlimited."
1014
+ msgstr ""
1015
+
1016
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1017
+ msgid "Repeated field group"
1018
+ msgstr ""
1019
+
1020
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1021
+ msgid "Manage field or group of fields that will be repeatable."
1022
+ msgstr ""
1023
+
1024
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:258
1025
+ msgid "Edit field group"
1026
+ msgstr ""
1027
+
1028
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1029
+ msgid "Repeatable fields saved!"
1030
+ msgstr ""
1031
+
1032
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:276
1033
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:325
1034
+ msgid "Please enter a unique field title.\n"
1035
+ msgstr ""
1036
+
1037
+ #: profile-builder-2.0/modules/repeater-field/repeater-field.php:258
1038
+ msgid "Are you sure you want to delete this?"
1039
+ msgstr ""
1040
+
1041
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:185
1042
+ msgid "Sort Tags"
1043
+ msgstr ""
1044
+
1045
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:193
1046
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2178
1047
+ msgid "Faceted Menus"
1048
+ msgstr ""
1049
+
1050
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:194
1051
+ msgid "User Count"
1052
+ msgstr ""
1053
+
1054
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1495
1055
+ msgid "Show All"
1056
+ msgstr ""
1057
+
1058
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1538
1059
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1560
1060
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1613
1061
+ msgid "No options available"
1062
+ msgstr ""
1063
+
1064
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1753
1065
+ msgid "Remove All Filters"
1066
+ msgstr ""
1067
+
1068
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1069
+ msgid "Label"
1070
+ msgstr ""
1071
+
1072
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2168
1073
+ msgid "Choose the facet name that appears on the frontend"
1074
+ msgstr ""
1075
+
1076
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1077
+ msgid "Facet Type"
1078
+ msgstr ""
1079
+
1080
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
1081
+ msgid "Choose the facet menu type"
1082
+ msgstr ""
1083
+
1084
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1085
+ msgid "Facet Meta"
1086
+ msgstr ""
1087
+
1088
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2170
1089
+ msgid "Choose the meta field for the facet menu"
1090
+ msgstr ""
1091
+
1092
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1093
+ msgid "Behaviour"
1094
+ msgstr ""
1095
+
1096
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1097
+ msgid "Narrow the results"
1098
+ msgstr ""
1099
+
1100
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1101
+ msgid "Expand the results"
1102
+ msgstr ""
1103
+
1104
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2171
1105
+ msgid "Choose how multiple selections affect the results"
1106
+ msgstr ""
1107
+
1108
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1109
+ msgid "Visible choices"
1110
+ msgstr ""
1111
+
1112
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
1113
+ msgid "Show a toggle link after this many choices. Leave blank for all"
1114
+ msgstr ""
1115
+
1116
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1117
+ msgid "Search Fields"
1118
+ msgstr ""
1119
+
1120
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
1121
+ msgid "Choose the fields in which the Search Field will look in"
1122
+ msgstr ""
1123
+
1124
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2200
1125
+ msgid "Search Settings"
1126
+ msgstr ""
1127
+
1128
+ #: pb-add-on-woocommerce/billing-fields.php:8
1129
+ #: pb-add-on-woocommerce/shipping-fields.php:8
1130
+ msgid "Company Name"
1131
+ msgstr "Nombre de la empresa"
1132
+
1133
+ #: pb-add-on-woocommerce/billing-fields.php:9
1134
+ #: pb-add-on-woocommerce/shipping-fields.php:9
1135
+ msgid "Address"
1136
+ msgstr "Dirección"
1137
+
1138
+ #: pb-add-on-woocommerce/billing-fields.php:5
1139
+ #: pb-add-on-woocommerce/shipping-fields.php:5
1140
+ msgid "Country"
1141
+ msgstr "País"
1142
+
1143
+ #: pb-add-on-woocommerce/billing-fields.php:11
1144
+ #: pb-add-on-woocommerce/shipping-fields.php:11
1145
+ msgid "Town / City"
1146
+ msgstr "Ciudad"
1147
+
1148
+ #: pb-add-on-woocommerce/billing-fields.php:12
1149
+ #: pb-add-on-woocommerce/shipping-fields.php:12
1150
+ msgid "State / County"
1151
+ msgstr "Estado / Región"
1152
+
1153
+ #: pb-add-on-woocommerce/billing-fields.php:13
1154
+ #: pb-add-on-woocommerce/shipping-fields.php:13
1155
+ msgid "Postcode / Zip"
1156
+ msgstr "Código Postal"
1157
+
1158
+ #: pb-add-on-woocommerce/billing-fields.php:14
1159
+ msgid "Email Address"
1160
+ msgstr "Correo electrónico"
1161
+
1162
+ #: pb-add-on-woocommerce/billing-fields.php:15
1163
+ msgid "Phone"
1164
+ msgstr "Teléfono"
1165
+
1166
+ #: pb-add-on-woocommerce/billing-fields.php:278
1167
+ msgid "Ship to a different address?"
1168
+ msgstr "¿Enviar a una dirección diferente?"
1169
+
1170
+ #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1171
+ msgid "Billing Address"
1172
+ msgstr "Dirección de Facturación"
1173
+
1174
+ #: pb-add-on-woocommerce/index.php:169
1175
+ msgid "Displays customer billing fields in front-end. "
1176
+ msgstr "Mostrar campos de facturación del cliente en el front-end"
1177
+
1178
+ #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1179
+ msgid "Shipping Address"
1180
+ msgstr "Dirección de envío"
1181
+
1182
+ #: pb-add-on-woocommerce/index.php:173
1183
+ msgid "Displays customer shipping fields in front-end. "
1184
+ msgstr "Mostrar campos de envío del cliente en el front-end"
1185
+
1186
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1187
+ msgid "Display on WooCommerce Checkout"
1188
+ msgstr "Mostrar en el Checkout de Woocommerce"
1189
+
1190
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1191
+ msgid "Whether the field should be added to the WooCommerce checkout form or not"
1192
+ msgstr "Ya sea que el campo debe ser añadido a la forma de pago WooCommerce o no"
1193
+
1194
+ #: pb-add-on-woocommerce/index.php:541
1195
+ msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1196
+ msgstr "WooCommerce necesita estar instalado y activado para que Profile Builder - WooCommerce Sync Add-on trabaje correctamente!"
1197
+
1198
+ #: pb-add-on-woocommerce/woosync-page.php:23
1199
+ #: pb-add-on-woocommerce/woosync-page.php:70
1200
+ msgid "WooCommerce Sync"
1201
+ msgstr "WooCommerce Sync"
1202
+
1203
+ #: pb-add-on-woocommerce/woosync-page.php:76
1204
+ msgid "Choose Register form to display on My Account page:"
1205
+ msgstr "Seleccione el formulario de Registro a mostrar en la página \"Mi cuenta\""
1206
+
1207
+ #: pb-add-on-woocommerce/woosync-page.php:81
1208
+ msgid "Default Register"
1209
+ msgstr "Registro por defecto"
1210
+
1211
+ #: pb-add-on-woocommerce/woosync-page.php:103
1212
+ msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1213
+ msgstr ""
1214
+ "Selecciona el formulario de Profile Builder para mostrar en la página \"Mi cuenta\" de WooCommerce.<br/>\n"
1215
+ "Esto también añadirá el formulario de Profile Builder Login a la página \"Mi cuenta\"."
1216
+
1217
+ #: pb-add-on-woocommerce/woosync-page.php:110
1218
+ msgid "Choose Edit Profile form to display on My Account page:"
1219
+ msgstr "Elige el formulario Editar Perfil para que aparezca en la pagina de Mi Cuenta:"
1220
+
1221
+ #: pb-add-on-woocommerce/woosync-page.php:115
1222
+ msgid "Default Edit Profile"
1223
+ msgstr "Perfil de Editar Predeterminado"
1224
+
1225
+ #: pb-add-on-woocommerce/woosync-page.php:137
1226
+ msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1227
+ msgstr "Selecciona que formulario de Editar-perfil de Profile Builder para mostrar en la pagina Mi cuenta de WooComerce"
1228
+
1229
+ #: profile-builder-2.0/admin/add-ons.php:190
1230
+ msgid "Recommended Plugins"
1231
+ msgstr "Plugins recomendados"
1232
+
1233
+ #: profile-builder-2.0/admin/add-ons.php:219
1234
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1235
+ msgid "Free"
1236
+ msgstr "Gratis"
1237
+
1238
+ #: profile-builder-2.0/admin/add-ons.php:221
1239
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1240
+ msgstr "Aceptar pagos de usuarios, crear planes de suscripciones y restringir el contenido en tu sitio de afiliación"
1241
+
1242
+ #: profile-builder-2.0/admin/add-ons.php:222
1243
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1244
+ msgid "More Details"
1245
+ msgstr "Mas detalles"
1246
+
1247
+ #: profile-builder-2.0/admin/add-ons.php:240
1248
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1249
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1250
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1251
+ msgid "Plugin is <strong>inactive</strong>"
1252
+ msgstr "Plugin <strong>desactivado</strong>"
1253
+
1254
+ #: profile-builder-2.0/admin/add-ons.php:242
1255
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1256
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1257
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1258
+ msgid "Plugin is <strong>active</strong>"
1259
+ msgstr "Plugin <strong>activado</strong>"
1260
+
1261
+ #: profile-builder-2.0/admin/add-ons.php:256
1262
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1263
+ msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1264
+ msgstr "No se pudo instalar el plugin. Reintente o <a href=\"%s\" target=\"_blank\">instale manualmente</a>."
1265
+
1266
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1267
+ msgid "Paid Accounts"
1268
+ msgstr "Cuentas de Pago"
1269
+
1270
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1271
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1272
+ msgstr "Paid Member Subscription - un plugin gratuito de WordPress"
1273
+
1274
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1275
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1276
+ msgstr "Con el nuevo Campo de Suscripciones en Profile Builder, tus formularios de registro le permitirán a tus usuario registrarse en cuentas de paga."
1277
+
1278
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1279
+ msgid "Paid & Free Subscriptions"
1280
+ msgstr "Suscripciones Gratuitas y de Pago."
1281
+
1282
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1283
+ msgid "Restrict Content"
1284
+ msgstr "Contenido restringido"
1285
+
1286
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1287
+ msgid "Member Management"
1288
+ msgstr "Gestion de Miembros"
1289
+
1290
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1291
+ msgid "Email Templates"
1292
+ msgstr "Plantillas de Correo Electronico"
1293
+
1294
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1295
+ msgid "Account Management"
1296
+ msgstr "Administrar cuenta"
1297
+
1298
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1299
+ msgid "Subscription Management"
1300
+ msgstr "Administrar suscripción"
1301
+
1302
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1303
+ msgid "Payment Management"
1304
+ msgstr "Administrar pago"
1305
+
1306
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1307
+ msgid "Plugin is Active"
1308
+ msgstr "El plugin está activado"
1309
+
1310
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1311
+ msgid "Plugin has been activated"
1312
+ msgstr "El plugin ha sido activado"
1313
+
1314
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1315
+ msgid "Plugin has been deactivated."
1316
+ msgstr "El plugin ha sido desactivado"
1317
+
1318
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1319
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1320
+ msgstr "Aceptar pagos de los usuarios , crear planes de suscripción y restringir el contenido de su página web."
1321
+
1322
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1323
+ msgid "Step by Step Quick Setup"
1324
+ msgstr "Configuración Rapida Paso a Paso"
1325
+
1326
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:392
1327
+ 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."
1328
+ msgstr "Para activar tu usuario, por favor haz click en el siguiente link: :<br><br>%s%s%s<br><br> Después de activarlo, recibirás *otro e-mail* con tu login."
1329
+
1330
+ #: profile-builder-2.0/front-end/register.php:133
1331
+ msgid "You will soon be redirected automatically."
1332
+ msgstr "Pronto serás redirigido automáticamente."
1333
+
1334
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1335
+ msgid "After Login"
1336
+ msgstr "Después de Iniciar sesión"
1337
+
1338
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1339
+ msgid "After Logout"
1340
+ msgstr "Después de Terminar sesión"
1341
+
1342
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1343
+ msgid "After Registration"
1344
+ msgstr "Después de Registrarse"
1345
+
1346
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1347
+ msgid "After Edit Profile"
1348
+ msgstr ""
1349
+
1350
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1351
+ msgid "After Successful Email Confirmation"
1352
+ msgstr ""
1353
+
1354
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1355
+ msgid "After Successful Password Reset"
1356
+ msgstr ""
1357
+
1358
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1359
+ msgid "Dashboard (redirect users from accessing the dashboard)"
1360
+ msgstr ""
1361
+
1362
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1363
+ msgid "User ID"
1364
+ msgstr "Identidicación del usuario"
1365
+
1366
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1367
+ msgid "User ID or Username"
1368
+ msgstr "ID o Nombre de Usuario"
1369
+
1370
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1371
+ msgid "User ID / Username"
1372
+ msgstr ""
1373
+
1374
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1375
+ msgid "Please select and enter the ID or username of your user."
1376
+ msgstr "Por favor elije e ingrese el ID o el nombre de usuario de su cuenta."
1377
+
1378
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1379
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1380
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1381
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1382
+ msgid "Redirect Type"
1383
+ msgstr ""
1384
+
1385
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1386
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1387
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1388
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1389
+ msgid "Redirect URL"
1390
+ msgstr ""
1391
+
1392
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1393
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1394
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1395
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1396
+ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1397
+ msgstr ""
1398
+
1399
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1400
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
1401
+ msgid "Individual User Redirects"
1402
+ msgstr ""
1403
+
1404
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1405
+ msgid "... Choose"
1406
+ msgstr ""
1407
+
1408
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1409
+ msgid "Select a user role."
1410
+ msgstr ""
1411
+
1412
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1413
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1414
+ msgid "User Role based Redirects"
1415
+ msgstr ""
1416
+
1417
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1418
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1419
+ msgid "Global Redirects"
1420
+ msgstr ""
1421
+
1422
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1423
+ msgid "Login ( wp_login.php )"
1424
+ msgstr ""
1425
+
1426
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1427
+ msgid "Register ( wp-login.php?action=register )"
1428
+ msgstr ""
1429
+
1430
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1431
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
1432
+ msgstr ""
1433
+
1434
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1435
+ msgid "Author Archive ( http://sitename.com/author/admin )"
1436
+ msgstr ""
1437
+
1438
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1439
+ msgid "Redirect Default WordPress Forms and Pages"
1440
+ msgstr ""
1441
+
1442
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1443
+ msgid "How does this work?"
1444
+ msgstr ""
1445
+
1446
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1447
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1448
+ msgstr ""
1449
+
1450
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1451
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1452
+ msgstr ""
1453
+
1454
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1455
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1456
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
1457
+ msgstr ""
1458
+
1459
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1460
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1461
+ msgstr ""
1462
+
1463
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1464
+ msgid "Which redirect happens depends on the following priority:"
1465
+ msgstr ""
1466
+
1467
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1468
+ 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)"
1469
+ msgstr ""
1470
+
1471
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:246
1472
+ msgid "Redirect Default WordPress forms and pages"
1473
+ msgstr ""
1474
+
1475
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1476
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1477
+ msgstr ""
1478
+
1479
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:249
1480
+ msgid "Available tags for dynamic URLs"
1481
+ msgstr ""
1482
+
1483
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1484
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1485
+ msgstr ""
1486
+
1487
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:252
1488
+ msgid "generates a url of the current website homepage."
1489
+ msgstr ""
1490
+
1491
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1492
+ 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"
1493
+ msgstr ""
1494
+
1495
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1496
+ msgid "the ID of the user"
1497
+ msgstr ""
1498
+
1499
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1500
+ 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."
1501
+ msgstr ""
1502
+
1503
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1504
+ msgid "the URL of the previously visited page"
1505
+ msgstr ""
1506
+
1507
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:339
1508
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:345
1509
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:351
1510
+ msgid "You can't add duplicate redirects!"
1511
+ msgstr ""
1512
+
1513
+ #: profile-builder-2.0/admin/admin-functions.php:40
1514
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
1515
+ msgstr ""
1516
+
1517
+ #: profile-builder-2.0/admin/basic-info.php:37
1518
+ msgid "Friction-less login using %s shortcode or a widget."
1519
+ msgstr ""
1520
+
1521
+ #: profile-builder-2.0/admin/basic-info.php:41
1522
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
1523
+ msgstr ""
1524
+
1525
+ #: profile-builder-2.0/admin/basic-info.php:45
1526
+ msgid "Straight forward edit profile forms using %s shortcode."
1527
+ msgstr ""
1528
+
1529
+ #: profile-builder-2.0/admin/basic-info.php:58
1530
+ msgid "Allow users to recover their password in the front-end using the %s."
1531
+ msgstr ""
1532
+
1533
+ #: profile-builder-2.0/admin/basic-info.php:140
1534
+ 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."
1535
+ msgstr ""
1536
+
1537
+ #: profile-builder-2.0/admin/general-settings.php:118
1538
+ msgid "\"Admin Approval\" on User Role:"
1539
+ msgstr ""
1540
+
1541
+ #: profile-builder-2.0/admin/general-settings.php:137
1542
+ msgid "Select on what user roles to activate Admin Approval."
1543
+ msgstr ""
1544
+
1545
+ #: profile-builder-2.0/admin/manage-fields.php:128
1546
+ msgid "Display on PB forms"
1547
+ msgstr ""
1548
+
1549
+ #: profile-builder-2.0/admin/manage-fields.php:128
1550
+ msgid "PB Login"
1551
+ msgstr ""
1552
+
1553
+ #: profile-builder-2.0/admin/manage-fields.php:128
1554
+ msgid "PB Register"
1555
+ msgstr ""
1556
+
1557
+ #: profile-builder-2.0/admin/manage-fields.php:128
1558
+ msgid "PB Recover Password"
1559
+ msgstr ""
1560
+
1561
+ #: profile-builder-2.0/admin/manage-fields.php:128
1562
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
1563
+ msgstr ""
1564
+
1565
+ #: profile-builder-2.0/admin/manage-fields.php:129
1566
+ msgid "Display on default WP forms"
1567
+ msgstr ""
1568
+
1569
+ #: profile-builder-2.0/admin/manage-fields.php:129
1570
+ msgid "Default WP Login"
1571
+ msgstr ""
1572
+
1573
+ #: profile-builder-2.0/admin/manage-fields.php:129
1574
+ msgid "Default WP Register"
1575
+ msgstr ""
1576
+
1577
+ #: profile-builder-2.0/admin/manage-fields.php:129
1578
+ msgid "Default WP Recover Password"
1579
+ msgstr ""
1580
+
1581
+ #: profile-builder-2.0/admin/manage-fields.php:129
1582
+ msgid "Select on which default WP forms to display reCAPTCHA"
1583
+ msgstr ""
1584
+
1585
+ #: profile-builder-2.0/admin/manage-fields.php:135
1586
+ #: profile-builder-2.0/admin/manage-fields.php:136
1587
+ #: profile-builder-2.0/admin/manage-fields.php:137
1588
+ msgid "Default option of the field"
1589
+ msgstr ""
1590
+
1591
+ #: profile-builder-2.0/admin/manage-fields.php:273
1592
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1593
+ msgid "Afghanistan"
1594
+ msgstr "Afghanistan"
1595
+
1596
+ #: profile-builder-2.0/admin/manage-fields.php:274
1597
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1598
+ msgid "Aland Islands"
1599
+ msgstr "Aland Islands"
1600
+
1601
+ #: profile-builder-2.0/admin/manage-fields.php:275
1602
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1603
+ msgid "Albania"
1604
+ msgstr "Albania"
1605
+
1606
+ #: profile-builder-2.0/admin/manage-fields.php:276
1607
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1608
+ msgid "Algeria"
1609
+ msgstr "Algeria"
1610
+
1611
+ #: profile-builder-2.0/admin/manage-fields.php:277
1612
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1613
+ msgid "American Samoa"
1614
+ msgstr "American Samoa"
1615
+
1616
+ #: profile-builder-2.0/admin/manage-fields.php:278
1617
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1618
+ msgid "Andorra"
1619
+ msgstr "Andorra"
1620
+
1621
+ #: profile-builder-2.0/admin/manage-fields.php:279
1622
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1623
+ msgid "Angola"
1624
+ msgstr "Angola"
1625
+
1626
+ #: profile-builder-2.0/admin/manage-fields.php:280
1627
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1628
+ msgid "Anguilla"
1629
+ msgstr "Anguilla"
1630
+
1631
+ #: profile-builder-2.0/admin/manage-fields.php:281
1632
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1633
+ msgid "Antarctica"
1634
+ msgstr "Antarctica"
1635
+
1636
+ #: profile-builder-2.0/admin/manage-fields.php:282
1637
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1638
+ msgid "Antigua and Barbuda"
1639
+ msgstr "Antigua and Barbuda"
1640
+
1641
+ #: profile-builder-2.0/admin/manage-fields.php:283
1642
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1643
+ msgid "Argentina"
1644
+ msgstr "Argentina"
1645
+
1646
+ #: profile-builder-2.0/admin/manage-fields.php:284
1647
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1648
+ msgid "Armenia"
1649
+ msgstr "Armenia"
1650
+
1651
+ #: profile-builder-2.0/admin/manage-fields.php:285
1652
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1653
+ msgid "Aruba"
1654
+ msgstr "Aruba"
1655
+
1656
+ #: profile-builder-2.0/admin/manage-fields.php:286
1657
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1658
+ msgid "Australia"
1659
+ msgstr "Australia"
1660
+
1661
+ #: profile-builder-2.0/admin/manage-fields.php:287
1662
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1663
+ msgid "Austria"
1664
+ msgstr "Austria"
1665
+
1666
+ #: profile-builder-2.0/admin/manage-fields.php:288
1667
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1668
+ msgid "Azerbaijan"
1669
+ msgstr "Azerbaijan"
1670
+
1671
+ #: profile-builder-2.0/admin/manage-fields.php:289
1672
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1673
+ msgid "Bahamas"
1674
+ msgstr "Bahamas"
1675
+
1676
+ #: profile-builder-2.0/admin/manage-fields.php:290
1677
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1678
+ msgid "Bahrain"
1679
+ msgstr "Bahrain"
1680
+
1681
+ #: profile-builder-2.0/admin/manage-fields.php:291
1682
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1683
+ msgid "Bangladesh"
1684
+ msgstr "Bangladesh"
1685
+
1686
+ #: profile-builder-2.0/admin/manage-fields.php:292
1687
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1688
+ msgid "Barbados"
1689
+ msgstr "Barbados"
1690
+
1691
+ #: profile-builder-2.0/admin/manage-fields.php:293
1692
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1693
+ msgid "Belarus"
1694
+ msgstr "Belarus"
1695
+
1696
+ #: profile-builder-2.0/admin/manage-fields.php:294
1697
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1698
+ msgid "Belgium"
1699
+ msgstr "Belgium"
1700
+
1701
+ #: profile-builder-2.0/admin/manage-fields.php:295
1702
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1703
+ msgid "Belize"
1704
+ msgstr "Belize"
1705
+
1706
+ #: profile-builder-2.0/admin/manage-fields.php:296
1707
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1708
+ msgid "Benin"
1709
+ msgstr "Benin"
1710
+
1711
+ #: profile-builder-2.0/admin/manage-fields.php:297
1712
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1713
+ msgid "Bermuda"
1714
+ msgstr "Bermuda"
1715
+
1716
+ #: profile-builder-2.0/admin/manage-fields.php:298
1717
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1718
+ msgid "Bhutan"
1719
+ msgstr "Bhutan"
1720
+
1721
+ #: profile-builder-2.0/admin/manage-fields.php:299
1722
+ msgid "Bolivia"
1723
+ msgstr "Bolivia"
1724
+
1725
+ #: profile-builder-2.0/admin/manage-fields.php:300
1726
+ msgid "Bonaire, Saint Eustatius and Saba"
1727
+ msgstr "Bonaire, Saint Eustatius and Saba"
1728
+
1729
+ #: profile-builder-2.0/admin/manage-fields.php:301
1730
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1731
+ msgid "Bosnia and Herzegovina"
1732
+ msgstr "Bosnia and Herzegovina"
1733
+
1734
+ #: profile-builder-2.0/admin/manage-fields.php:302
1735
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1736
+ msgid "Botswana"
1737
+ msgstr "Botswana"
1738
+
1739
+ #: profile-builder-2.0/admin/manage-fields.php:303
1740
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1741
+ msgid "Bouvet Island"
1742
+ msgstr "Bouvet Island"
1743
+
1744
+ #: profile-builder-2.0/admin/manage-fields.php:304
1745
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1746
+ msgid "Brazil"
1747
+ msgstr "Brazil"
1748
+
1749
+ #: profile-builder-2.0/admin/manage-fields.php:305
1750
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1751
+ msgid "British Indian Ocean Territory"
1752
+ msgstr "British Indian Ocean Territory"
1753
+
1754
+ #: profile-builder-2.0/admin/manage-fields.php:306
1755
+ msgid "British Virgin Islands"
1756
+ msgstr "British Virgin Islands"
1757
+
1758
+ #: profile-builder-2.0/admin/manage-fields.php:307
1759
+ msgid "Brunei"
1760
+ msgstr "Brunei"
1761
+
1762
+ #: profile-builder-2.0/admin/manage-fields.php:308
1763
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1764
+ msgid "Bulgaria"
1765
+ msgstr "Bulgaria"
1766
+
1767
+ #: profile-builder-2.0/admin/manage-fields.php:309
1768
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1769
+ msgid "Burkina Faso"
1770
+ msgstr "Burkina Faso"
1771
+
1772
+ #: profile-builder-2.0/admin/manage-fields.php:310
1773
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1774
+ msgid "Burundi"
1775
+ msgstr "Burundi"
1776
+
1777
+ #: profile-builder-2.0/admin/manage-fields.php:311
1778
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1779
+ msgid "Cambodia"
1780
+ msgstr "Cambodia"
1781
+
1782
+ #: profile-builder-2.0/admin/manage-fields.php:312
1783
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1784
+ msgid "Cameroon"
1785
+ msgstr "Cameroon"
1786
+
1787
+ #: profile-builder-2.0/admin/manage-fields.php:313
1788
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1789
+ msgid "Canada"
1790
+ msgstr "Canada"
1791
+
1792
+ #: profile-builder-2.0/admin/manage-fields.php:314
1793
+ msgid "Cape Verde"
1794
+ msgstr "Cape Verde"
1795
+
1796
+ #: profile-builder-2.0/admin/manage-fields.php:315
1797
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1798
+ msgid "Cayman Islands"
1799
+ msgstr "Cayman Islands"
1800
+
1801
+ #: profile-builder-2.0/admin/manage-fields.php:316
1802
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1803
+ msgid "Central African Republic"
1804
+ msgstr "Central African Republic"
1805
+
1806
+ #: profile-builder-2.0/admin/manage-fields.php:317
1807
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1808
+ msgid "Chad"
1809
+ msgstr "Chad"
1810
+
1811
+ #: profile-builder-2.0/admin/manage-fields.php:318
1812
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1813
+ msgid "Chile"
1814
+ msgstr "Chile"
1815
+
1816
+ #: profile-builder-2.0/admin/manage-fields.php:319
1817
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1818
+ msgid "China"
1819
+ msgstr "China"
1820
+
1821
+ #: profile-builder-2.0/admin/manage-fields.php:320
1822
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1823
+ msgid "Christmas Island"
1824
+ msgstr "Christmas Island"
1825
+
1826
+ #: profile-builder-2.0/admin/manage-fields.php:321
1827
+ msgid "Cocos Islands"
1828
+ msgstr "Cocos Islands"
1829
+
1830
+ #: profile-builder-2.0/admin/manage-fields.php:322
1831
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1832
+ msgid "Colombia"
1833
+ msgstr "Colombia"
1834
+
1835
+ #: profile-builder-2.0/admin/manage-fields.php:323
1836
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1837
+ msgid "Comoros"
1838
+ msgstr "Comoros"
1839
+
1840
+ #: profile-builder-2.0/admin/manage-fields.php:324
1841
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1842
+ msgid "Cook Islands"
1843
+ msgstr "Cook Islands"
1844
+
1845
+ #: profile-builder-2.0/admin/manage-fields.php:325
1846
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1847
+ msgid "Costa Rica"
1848
+ msgstr "Costa Rica"
1849
+
1850
+ #: profile-builder-2.0/admin/manage-fields.php:326
1851
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1852
+ msgid "Croatia"
1853
+ msgstr "Croatia"
1854
+
1855
+ #: profile-builder-2.0/admin/manage-fields.php:327
1856
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1857
+ msgid "Cuba"
1858
+ msgstr "Cuba"
1859
+
1860
+ #: profile-builder-2.0/admin/manage-fields.php:328
1861
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1862
+ msgid "Curacao"
1863
+ msgstr "Curacao"
1864
+
1865
+ #: profile-builder-2.0/admin/manage-fields.php:329
1866
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1867
+ msgid "Cyprus"
1868
+ msgstr "Cyprus"
1869
+
1870
+ #: profile-builder-2.0/admin/manage-fields.php:330
1871
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1872
+ msgid "Czech Republic"
1873
+ msgstr "Czech Republic"
1874
+
1875
+ #: profile-builder-2.0/admin/manage-fields.php:331
1876
+ msgid "Democratic Republic of the Congo"
1877
+ msgstr "Democratic Republic of the Congo"
1878
+
1879
+ #: profile-builder-2.0/admin/manage-fields.php:332
1880
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1881
+ msgid "Denmark"
1882
+ msgstr "Denmark"
1883
+
1884
+ #: profile-builder-2.0/admin/manage-fields.php:333
1885
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1886
+ msgid "Djibouti"
1887
+ msgstr "Djibouti"
1888
+
1889
+ #: profile-builder-2.0/admin/manage-fields.php:334
1890
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1891
+ msgid "Dominica"
1892
+ msgstr "Dominica"
1893
+
1894
+ #: profile-builder-2.0/admin/manage-fields.php:335
1895
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1896
+ msgid "Dominican Republic"
1897
+ msgstr "Dominican Republic"
1898
+
1899
+ #: profile-builder-2.0/admin/manage-fields.php:336
1900
+ msgid "East Timor"
1901
+ msgstr "East Timor"
1902
+
1903
+ #: profile-builder-2.0/admin/manage-fields.php:337
1904
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1905
+ msgid "Ecuador"
1906
+ msgstr "Ecuador"
1907
+
1908
+ #: profile-builder-2.0/admin/manage-fields.php:338
1909
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1910
+ msgid "Egypt"
1911
+ msgstr "Egypt"
1912
+
1913
+ #: profile-builder-2.0/admin/manage-fields.php:339
1914
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1915
+ msgid "El Salvador"
1916
+ msgstr "El Salvador"
1917
+
1918
+ #: profile-builder-2.0/admin/manage-fields.php:340
1919
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1920
+ msgid "Equatorial Guinea"
1921
+ msgstr "Equatorial Guinea"
1922
+
1923
+ #: profile-builder-2.0/admin/manage-fields.php:341
1924
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1925
+ msgid "Eritrea"
1926
+ msgstr "Eritrea"
1927
+
1928
+ #: profile-builder-2.0/admin/manage-fields.php:342
1929
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1930
+ msgid "Estonia"
1931
+ msgstr "Estonia"
1932
+
1933
+ #: profile-builder-2.0/admin/manage-fields.php:343
1934
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1935
+ msgid "Ethiopia"
1936
+ msgstr "Ethiopia"
1937
+
1938
+ #: profile-builder-2.0/admin/manage-fields.php:344
1939
+ msgid "Falkland Islands"
1940
+ msgstr "Falkland Islands"
1941
+
1942
+ #: profile-builder-2.0/admin/manage-fields.php:345
1943
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1944
+ msgid "Faroe Islands"
1945
+ msgstr "Faroe Islands"
1946
+
1947
+ #: profile-builder-2.0/admin/manage-fields.php:346
1948
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1949
+ msgid "Fiji"
1950
+ msgstr "Fiji"
1951
+
1952
+ #: profile-builder-2.0/admin/manage-fields.php:347
1953
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1954
+ msgid "Finland"
1955
+ msgstr "Finland"
1956
+
1957
+ #: profile-builder-2.0/admin/manage-fields.php:348
1958
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1959
+ msgid "France"
1960
+ msgstr "France"
1961
+
1962
+ #: profile-builder-2.0/admin/manage-fields.php:349
1963
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1964
+ msgid "French Guiana"
1965
+ msgstr "French Guiana"
1966
+
1967
+ #: profile-builder-2.0/admin/manage-fields.php:350
1968
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1969
+ msgid "French Polynesia"
1970
+ msgstr "French Polynesia"
1971
+
1972
+ #: profile-builder-2.0/admin/manage-fields.php:351
1973
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1974
+ msgid "French Southern Territories"
1975
+ msgstr "French Southern Territories"
1976
+
1977
+ #: profile-builder-2.0/admin/manage-fields.php:352
1978
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1979
+ msgid "Gabon"
1980
+ msgstr "Gabon"
1981
+
1982
+ #: profile-builder-2.0/admin/manage-fields.php:353
1983
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1984
+ msgid "Gambia"
1985
+ msgstr "Gambia"
1986
+
1987
+ #: profile-builder-2.0/admin/manage-fields.php:354
1988
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1989
+ msgid "Georgia"
1990
+ msgstr "Georgia"
1991
+
1992
+ #: profile-builder-2.0/admin/manage-fields.php:355
1993
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1994
+ msgid "Germany"
1995
+ msgstr "Germany"
1996
+
1997
+ #: profile-builder-2.0/admin/manage-fields.php:356
1998
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1999
+ msgid "Ghana"
2000
+ msgstr "Ghana"
2001
+
2002
+ #: profile-builder-2.0/admin/manage-fields.php:357
2003
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2004
+ msgid "Gibraltar"
2005
+ msgstr "Gibraltar"
2006
+
2007
+ #: profile-builder-2.0/admin/manage-fields.php:358
2008
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2009
+ msgid "Greece"
2010
+ msgstr "Greece"
2011
+
2012
+ #: profile-builder-2.0/admin/manage-fields.php:359
2013
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2014
+ msgid "Greenland"
2015
+ msgstr "Greenland"
2016
+
2017
+ #: profile-builder-2.0/admin/manage-fields.php:360
2018
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2019
+ msgid "Grenada"
2020
+ msgstr "Grenada"
2021
+
2022
+ #: profile-builder-2.0/admin/manage-fields.php:361
2023
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2024
+ msgid "Guadeloupe"
2025
+ msgstr "Guadeloupe"
2026
+
2027
+ #: profile-builder-2.0/admin/manage-fields.php:362
2028
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2029
+ msgid "Guam"
2030
+ msgstr "Guam"
2031
+
2032
+ #: profile-builder-2.0/admin/manage-fields.php:363
2033
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2034
+ msgid "Guatemala"
2035
+ msgstr "Guatemala"
2036
+
2037
+ #: profile-builder-2.0/admin/manage-fields.php:364
2038
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2039
+ msgid "Guernsey"
2040
+ msgstr "Guernsey"
2041
+
2042
+ #: profile-builder-2.0/admin/manage-fields.php:365
2043
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2044
+ msgid "Guinea"
2045
+ msgstr "Guinea"
2046
+
2047
+ #: profile-builder-2.0/admin/manage-fields.php:366
2048
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2049
+ msgid "Guinea-Bissau"
2050
+ msgstr "Guinea-Bissau"
2051
+
2052
+ #: profile-builder-2.0/admin/manage-fields.php:367
2053
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2054
+ msgid "Guyana"
2055
+ msgstr "Guyana"
2056
+
2057
+ #: profile-builder-2.0/admin/manage-fields.php:368
2058
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2059
+ msgid "Haiti"
2060
+ msgstr "Haiti"
2061
+
2062
+ #: profile-builder-2.0/admin/manage-fields.php:369
2063
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2064
+ msgid "Heard Island and McDonald Islands"
2065
+ msgstr "Heard Island and McDonald Islands"
2066
+
2067
+ #: profile-builder-2.0/admin/manage-fields.php:370
2068
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2069
+ msgid "Honduras"
2070
+ msgstr "Honduras"
2071
+
2072
+ #: profile-builder-2.0/admin/manage-fields.php:371
2073
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2074
+ msgid "Hong Kong"
2075
+ msgstr "Hong Kong"
2076
+
2077
+ #: profile-builder-2.0/admin/manage-fields.php:372
2078
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2079
+ msgid "Hungary"
2080
+ msgstr "Hungary"
2081
+
2082
+ #: profile-builder-2.0/admin/manage-fields.php:373
2083
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2084
+ msgid "Iceland"
2085
+ msgstr "Iceland"
2086
+
2087
+ #: profile-builder-2.0/admin/manage-fields.php:374
2088
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2089
+ msgid "India"
2090
+ msgstr "India"
2091
+
2092
+ #: profile-builder-2.0/admin/manage-fields.php:375
2093
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2094
+ msgid "Indonesia"
2095
+ msgstr "Indonesia"
2096
+
2097
+ #: profile-builder-2.0/admin/manage-fields.php:376
2098
+ msgid "Iran"
2099
+ msgstr "Iran"
2100
+
2101
+ #: profile-builder-2.0/admin/manage-fields.php:377
2102
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2103
+ msgid "Iraq"
2104
+ msgstr "Iraq"
2105
+
2106
+ #: profile-builder-2.0/admin/manage-fields.php:378
2107
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2108
+ msgid "Ireland"
2109
+ msgstr "Ireland"
2110
+
2111
+ #: profile-builder-2.0/admin/manage-fields.php:379
2112
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2113
+ msgid "Isle of Man"
2114
+ msgstr "Isle of Man"
2115
+
2116
+ #: profile-builder-2.0/admin/manage-fields.php:380
2117
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2118
+ msgid "Israel"
2119
+ msgstr "Israel"
2120
+
2121
+ #: profile-builder-2.0/admin/manage-fields.php:381
2122
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2123
+ msgid "Italy"
2124
+ msgstr "Italy"
2125
+
2126
+ #: profile-builder-2.0/admin/manage-fields.php:382
2127
+ msgid "Ivory Coast"
2128
+ msgstr "Ivory Coast"
2129
+
2130
+ #: profile-builder-2.0/admin/manage-fields.php:383
2131
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2132
+ msgid "Jamaica"
2133
+ msgstr "Jamaica"
2134
+
2135
+ #: profile-builder-2.0/admin/manage-fields.php:384
2136
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2137
+ msgid "Japan"
2138
+ msgstr "Japan"
2139
+
2140
+ #: profile-builder-2.0/admin/manage-fields.php:385
2141
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2142
+ msgid "Jersey"
2143
+ msgstr "Jersey"
2144
+
2145
+ #: profile-builder-2.0/admin/manage-fields.php:386
2146
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2147
+ msgid "Jordan"
2148
+ msgstr "Jordan"
2149
+
2150
+ #: profile-builder-2.0/admin/manage-fields.php:387
2151
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2152
+ msgid "Kazakhstan"
2153
+ msgstr "Kazakhstan"
2154
+
2155
+ #: profile-builder-2.0/admin/manage-fields.php:388
2156
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2157
+ msgid "Kenya"
2158
+ msgstr "Kenya"
2159
+
2160
+ #: profile-builder-2.0/admin/manage-fields.php:389
2161
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2162
+ msgid "Kiribati"
2163
+ msgstr "Kiribati"
2164
+
2165
+ #: profile-builder-2.0/admin/manage-fields.php:390
2166
+ msgid "Kosovo"
2167
+ msgstr "Kosovo"
2168
+
2169
+ #: profile-builder-2.0/admin/manage-fields.php:391
2170
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2171
+ msgid "Kuwait"
2172
+ msgstr "Kuwait"
2173
+
2174
+ #: profile-builder-2.0/admin/manage-fields.php:392
2175
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2176
+ msgid "Kyrgyzstan"
2177
+ msgstr "Kyrgyzstan"
2178
+
2179
+ #: profile-builder-2.0/admin/manage-fields.php:393
2180
+ msgid "Laos"
2181
+ msgstr "Laos"
2182
+
2183
+ #: profile-builder-2.0/admin/manage-fields.php:394
2184
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2185
+ msgid "Latvia"
2186
+ msgstr "Latvia"
2187
+
2188
+ #: profile-builder-2.0/admin/manage-fields.php:395
2189
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2190
+ msgid "Lebanon"
2191
+ msgstr "Lebanon"
2192
+
2193
+ #: profile-builder-2.0/admin/manage-fields.php:396
2194
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2195
+ msgid "Lesotho"
2196
+ msgstr "Lesotho"
2197
+
2198
+ #: profile-builder-2.0/admin/manage-fields.php:397
2199
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2200
+ msgid "Liberia"
2201
+ msgstr "Liberia"
2202
+
2203
+ #: profile-builder-2.0/admin/manage-fields.php:398
2204
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2205
+ msgid "Libya"
2206
+ msgstr "Libya"
2207
+
2208
+ #: profile-builder-2.0/admin/manage-fields.php:399
2209
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2210
+ msgid "Liechtenstein"
2211
+ msgstr "Liechtenstein"
2212
+
2213
+ #: profile-builder-2.0/admin/manage-fields.php:400
2214
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2215
+ msgid "Lithuania"
2216
+ msgstr "Lithuania"
2217
+
2218
+ #: profile-builder-2.0/admin/manage-fields.php:401
2219
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2220
+ msgid "Luxembourg"
2221
+ msgstr "Luxembourg"
2222
+
2223
+ #: profile-builder-2.0/admin/manage-fields.php:402
2224
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2225
+ msgid "Macao"
2226
+ msgstr "Macao"
2227
+
2228
+ #: profile-builder-2.0/admin/manage-fields.php:403
2229
+ msgid "Macedonia"
2230
+ msgstr "Macedonia"
2231
+
2232
+ #: profile-builder-2.0/admin/manage-fields.php:404
2233
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2234
+ msgid "Madagascar"
2235
+ msgstr "Madagascar"
2236
+
2237
+ #: profile-builder-2.0/admin/manage-fields.php:405
2238
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2239
+ msgid "Malawi"
2240
+ msgstr "Malawi"
2241
+
2242
+ #: profile-builder-2.0/admin/manage-fields.php:406
2243
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2244
+ msgid "Malaysia"
2245
+ msgstr "Malaysia"
2246
+
2247
+ #: profile-builder-2.0/admin/manage-fields.php:407
2248
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2249
+ msgid "Maldives"
2250
+ msgstr "Maldives"
2251
+
2252
+ #: profile-builder-2.0/admin/manage-fields.php:408
2253
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2254
+ msgid "Mali"
2255
+ msgstr "Mali"
2256
+
2257
+ #: profile-builder-2.0/admin/manage-fields.php:409
2258
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2259
+ msgid "Malta"
2260
+ msgstr "Malta"
2261
+
2262
+ #: profile-builder-2.0/admin/manage-fields.php:410
2263
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2264
+ msgid "Marshall Islands"
2265
+ msgstr "Marshall Islands"
2266
+
2267
+ #: profile-builder-2.0/admin/manage-fields.php:411
2268
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2269
+ msgid "Martinique"
2270
+ msgstr "Martinique"
2271
+
2272
+ #: profile-builder-2.0/admin/manage-fields.php:412
2273
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2274
+ msgid "Mauritania"
2275
+ msgstr "Mauritania"
2276
+
2277
+ #: profile-builder-2.0/admin/manage-fields.php:413
2278
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2279
+ msgid "Mauritius"
2280
+ msgstr "Mauritius"
2281
+
2282
+ #: profile-builder-2.0/admin/manage-fields.php:414
2283
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2284
+ msgid "Mayotte"
2285
+ msgstr "Mayotte"
2286
+
2287
+ #: profile-builder-2.0/admin/manage-fields.php:415
2288
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2289
+ msgid "Mexico"
2290
+ msgstr "Mexico"
2291
+
2292
+ #: profile-builder-2.0/admin/manage-fields.php:416
2293
+ msgid "Micronesia"
2294
+ msgstr "Micronesia"
2295
+
2296
+ #: profile-builder-2.0/admin/manage-fields.php:417
2297
+ msgid "Moldova"
2298
+ msgstr "Moldova"
2299
+
2300
+ #: profile-builder-2.0/admin/manage-fields.php:418
2301
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2302
+ msgid "Monaco"
2303
+ msgstr "Monaco"
2304
+
2305
+ #: profile-builder-2.0/admin/manage-fields.php:419
2306
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2307
+ msgid "Mongolia"
2308
+ msgstr "Mongolia"
2309
+
2310
+ #: profile-builder-2.0/admin/manage-fields.php:420
2311
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2312
+ msgid "Montenegro"
2313
+ msgstr "Montenegro"
2314
+
2315
+ #: profile-builder-2.0/admin/manage-fields.php:421
2316
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2317
+ msgid "Montserrat"
2318
+ msgstr "Montserrat"
2319
+
2320
+ #: profile-builder-2.0/admin/manage-fields.php:422
2321
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2322
+ msgid "Morocco"
2323
+ msgstr "Morocco"
2324
+
2325
+ #: profile-builder-2.0/admin/manage-fields.php:423
2326
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2327
+ msgid "Mozambique"
2328
+ msgstr "Mozambique"
2329
+
2330
+ #: profile-builder-2.0/admin/manage-fields.php:424
2331
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2332
+ msgid "Myanmar"
2333
+ msgstr "Myanmar"
2334
+
2335
+ #: profile-builder-2.0/admin/manage-fields.php:425
2336
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2337
+ msgid "Namibia"
2338
+ msgstr "Namibia"
2339
+
2340
+ #: profile-builder-2.0/admin/manage-fields.php:426
2341
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2342
+ msgid "Nauru"
2343
+ msgstr "Nauru"
2344
+
2345
+ #: profile-builder-2.0/admin/manage-fields.php:427
2346
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2347
+ msgid "Nepal"
2348
+ msgstr "Nepal"
2349
+
2350
+ #: profile-builder-2.0/admin/manage-fields.php:428
2351
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2352
+ msgid "Netherlands"
2353
+ msgstr "Netherlands"
2354
+
2355
+ #: profile-builder-2.0/admin/manage-fields.php:429
2356
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2357
+ msgid "New Caledonia"
2358
+ msgstr "New Caledonia"
2359
+
2360
+ #: profile-builder-2.0/admin/manage-fields.php:430
2361
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2362
+ msgid "New Zealand"
2363
+ msgstr "New Zealand"
2364
+
2365
+ #: profile-builder-2.0/admin/manage-fields.php:431
2366
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2367
+ msgid "Nicaragua"
2368
+ msgstr "Nicaragua"
2369
+
2370
+ #: profile-builder-2.0/admin/manage-fields.php:432
2371
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2372
+ msgid "Niger"
2373
+ msgstr "Niger"
2374
+
2375
+ #: profile-builder-2.0/admin/manage-fields.php:433
2376
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2377
+ msgid "Nigeria"
2378
+ msgstr "Nigeria"
2379
+
2380
+ #: profile-builder-2.0/admin/manage-fields.php:434
2381
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2382
+ msgid "Niue"
2383
+ msgstr "Niue"
2384
+
2385
+ #: profile-builder-2.0/admin/manage-fields.php:435
2386
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2387
+ msgid "Norfolk Island"
2388
+ msgstr "Norfolk Island"
2389
+
2390
+ #: profile-builder-2.0/admin/manage-fields.php:436
2391
+ msgid "North Korea"
2392
+ msgstr "North Korea"
2393
+
2394
+ #: profile-builder-2.0/admin/manage-fields.php:437
2395
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2396
+ msgid "Northern Mariana Islands"
2397
+ msgstr "Northern Mariana Islands"
2398
+
2399
+ #: profile-builder-2.0/admin/manage-fields.php:438
2400
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2401
+ msgid "Norway"
2402
+ msgstr "Norway"
2403
+
2404
+ #: profile-builder-2.0/admin/manage-fields.php:439
2405
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2406
+ msgid "Oman"
2407
+ msgstr "Oman"
2408
+
2409
+ #: profile-builder-2.0/admin/manage-fields.php:440
2410
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2411
+ msgid "Pakistan"
2412
+ msgstr "Pakistan"
2413
+
2414
+ #: profile-builder-2.0/admin/manage-fields.php:441
2415
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2416
+ msgid "Palau"
2417
+ msgstr "Palau"
2418
+
2419
+ #: profile-builder-2.0/admin/manage-fields.php:442
2420
+ msgid "Palestinian Territory"
2421
+ msgstr "Palestinian Territory"
2422
+
2423
+ #: profile-builder-2.0/admin/manage-fields.php:443
2424
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2425
+ msgid "Panama"
2426
+ msgstr "Panama"
2427
+
2428
+ #: profile-builder-2.0/admin/manage-fields.php:444
2429
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2430
+ msgid "Papua New Guinea"
2431
+ msgstr "Papua New Guinea"
2432
+
2433
+ #: profile-builder-2.0/admin/manage-fields.php:445
2434
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2435
+ msgid "Paraguay"
2436
+ msgstr "Paraguay"
2437
+
2438
+ #: profile-builder-2.0/admin/manage-fields.php:446
2439
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2440
+ msgid "Peru"
2441
+ msgstr "Peru"
2442
+
2443
+ #: profile-builder-2.0/admin/manage-fields.php:447
2444
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2445
+ msgid "Philippines"
2446
+ msgstr "Philippines"
2447
+
2448
+ #: profile-builder-2.0/admin/manage-fields.php:448
2449
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2450
+ msgid "Pitcairn"
2451
+ msgstr "Pitcairn"
2452
+
2453
+ #: profile-builder-2.0/admin/manage-fields.php:449
2454
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2455
+ msgid "Poland"
2456
+ msgstr "Poland"
2457
+
2458
+ #: profile-builder-2.0/admin/manage-fields.php:450
2459
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2460
+ msgid "Portugal"
2461
+ msgstr "Portugal"
2462
+
2463
+ #: profile-builder-2.0/admin/manage-fields.php:451
2464
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2465
+ msgid "Puerto Rico"
2466
+ msgstr "Puerto Rico"
2467
+
2468
+ #: profile-builder-2.0/admin/manage-fields.php:452
2469
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2470
+ msgid "Qatar"
2471
+ msgstr "Qatar"
2472
+
2473
+ #: profile-builder-2.0/admin/manage-fields.php:453
2474
+ msgid "Republic of the Congo"
2475
+ msgstr "Republic of the Congo"
2476
+
2477
+ #: profile-builder-2.0/admin/manage-fields.php:454
2478
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2479
+ msgid "Reunion"
2480
+ msgstr "Reunion"
2481
+
2482
+ #: profile-builder-2.0/admin/manage-fields.php:455
2483
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2484
+ msgid "Romania"
2485
+ msgstr "Romania"
2486
+
2487
+ #: profile-builder-2.0/admin/manage-fields.php:456
2488
+ msgid "Russia"
2489
+ msgstr "Russia"
2490
+
2491
+ #: profile-builder-2.0/admin/manage-fields.php:457
2492
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2493
+ msgid "Rwanda"
2494
+ msgstr "Rwanda"
2495
+
2496
+ #: profile-builder-2.0/admin/manage-fields.php:458
2497
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2498
+ msgid "Saint Barthelemy"
2499
+ msgstr "Saint Barthelemy"
2500
+
2501
+ #: profile-builder-2.0/admin/manage-fields.php:459
2502
+ msgid "Saint Helena"
2503
+ msgstr "Saint Helena"
2504
+
2505
+ #: profile-builder-2.0/admin/manage-fields.php:460
2506
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2507
+ msgid "Saint Kitts and Nevis"
2508
+ msgstr "Saint Kitts and Nevis"
2509
+
2510
+ #: profile-builder-2.0/admin/manage-fields.php:461
2511
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2512
+ msgid "Saint Lucia"
2513
+ msgstr "Saint Lucia"
2514
+
2515
+ #: profile-builder-2.0/admin/manage-fields.php:462
2516
+ msgid "Saint Martin"
2517
+ msgstr "Saint Martin"
2518
+
2519
+ #: profile-builder-2.0/admin/manage-fields.php:463
2520
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2521
+ msgid "Saint Pierre and Miquelon"
2522
+ msgstr "Saint Pierre and Miquelon"
2523
+
2524
+ #: profile-builder-2.0/admin/manage-fields.php:464
2525
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2526
+ msgid "Saint Vincent and the Grenadines"
2527
+ msgstr "Saint Vincent and the Grenadines"
2528
+
2529
+ #: profile-builder-2.0/admin/manage-fields.php:465
2530
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2531
+ msgid "Samoa"
2532
+ msgstr "Samoa"
2533
+
2534
+ #: profile-builder-2.0/admin/manage-fields.php:466
2535
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2536
+ msgid "San Marino"
2537
+ msgstr "San Marino"
2538
+
2539
+ #: profile-builder-2.0/admin/manage-fields.php:467
2540
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2541
+ msgid "Sao Tome and Principe"
2542
+ msgstr "Sao Tome and Principe"
2543
+
2544
+ #: profile-builder-2.0/admin/manage-fields.php:468
2545
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2546
+ msgid "Saudi Arabia"
2547
+ msgstr "Saudi Arabia"
2548
+
2549
+ #: profile-builder-2.0/admin/manage-fields.php:469
2550
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2551
+ msgid "Senegal"
2552
+ msgstr "Senegal"
2553
+
2554
+ #: profile-builder-2.0/admin/manage-fields.php:470
2555
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2556
+ msgid "Serbia"
2557
+ msgstr "Serbia"
2558
+
2559
+ #: profile-builder-2.0/admin/manage-fields.php:471
2560
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2561
+ msgid "Seychelles"
2562
+ msgstr "Seychelles"
2563
+
2564
+ #: profile-builder-2.0/admin/manage-fields.php:472
2565
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2566
+ msgid "Sierra Leone"
2567
+ msgstr "Sierra Leone"
2568
+
2569
+ #: profile-builder-2.0/admin/manage-fields.php:473
2570
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2571
+ msgid "Singapore"
2572
+ msgstr "Singapore"
2573
+
2574
+ #: profile-builder-2.0/admin/manage-fields.php:474
2575
+ msgid "Sint Maarten"
2576
+ msgstr "Sint Maarten"
2577
+
2578
+ #: profile-builder-2.0/admin/manage-fields.php:475
2579
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2580
+ msgid "Slovakia"
2581
+ msgstr "Slovakia"
2582
+
2583
+ #: profile-builder-2.0/admin/manage-fields.php:476
2584
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2585
+ msgid "Slovenia"
2586
+ msgstr "Slovenia"
2587
+
2588
+ #: profile-builder-2.0/admin/manage-fields.php:477
2589
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2590
+ msgid "Solomon Islands"
2591
+ msgstr "Solomon Islands"
2592
+
2593
+ #: profile-builder-2.0/admin/manage-fields.php:478
2594
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2595
+ msgid "Somalia"
2596
+ msgstr "Somalia"
2597
+
2598
+ #: profile-builder-2.0/admin/manage-fields.php:479
2599
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2600
+ msgid "South Africa"
2601
+ msgstr "South Africa"
2602
+
2603
+ #: profile-builder-2.0/admin/manage-fields.php:480
2604
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2605
+ msgid "South Georgia and the South Sandwich Islands"
2606
+ msgstr "South Georgia and the South Sandwich Islands"
2607
+
2608
+ #: profile-builder-2.0/admin/manage-fields.php:481
2609
+ msgid "South Korea"
2610
+ msgstr "South Korea"
2611
+
2612
+ #: profile-builder-2.0/admin/manage-fields.php:482
2613
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2614
+ msgid "South Sudan"
2615
+ msgstr "South Sudan"
2616
+
2617
+ #: profile-builder-2.0/admin/manage-fields.php:483
2618
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2619
+ msgid "Spain"
2620
+ msgstr "Spain"
2621
+
2622
+ #: profile-builder-2.0/admin/manage-fields.php:484
2623
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2624
+ msgid "Sri Lanka"
2625
+ msgstr "Sri Lanka"
2626
+
2627
+ #: profile-builder-2.0/admin/manage-fields.php:485
2628
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2629
+ msgid "Sudan"
2630
+ msgstr "Sudan"
2631
+
2632
+ #: profile-builder-2.0/admin/manage-fields.php:486
2633
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2634
+ msgid "Suriname"
2635
+ msgstr "Suriname"
2636
+
2637
+ #: profile-builder-2.0/admin/manage-fields.php:487
2638
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2639
+ msgid "Svalbard and Jan Mayen"
2640
+ msgstr "Svalbard and Jan Mayen"
2641
+
2642
+ #: profile-builder-2.0/admin/manage-fields.php:488
2643
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2644
+ msgid "Swaziland"
2645
+ msgstr "Swaziland"
2646
+
2647
+ #: profile-builder-2.0/admin/manage-fields.php:489
2648
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2649
+ msgid "Sweden"
2650
+ msgstr "Sweden"
2651
+
2652
+ #: profile-builder-2.0/admin/manage-fields.php:490
2653
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2654
+ msgid "Switzerland"
2655
+ msgstr "Switzerland"
2656
+
2657
+ #: profile-builder-2.0/admin/manage-fields.php:491
2658
+ msgid "Syria"
2659
+ msgstr "Syria"
2660
+
2661
+ #: profile-builder-2.0/admin/manage-fields.php:492
2662
+ msgid "Taiwan"
2663
+ msgstr "Taiwan"
2664
+
2665
+ #: profile-builder-2.0/admin/manage-fields.php:493
2666
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2667
+ msgid "Tajikistan"
2668
+ msgstr "Tajikistan"
2669
+
2670
+ #: profile-builder-2.0/admin/manage-fields.php:494
2671
+ msgid "Tanzania"
2672
+ msgstr "Tanzania"
2673
+
2674
+ #: profile-builder-2.0/admin/manage-fields.php:495
2675
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2676
+ msgid "Thailand"
2677
+ msgstr "Thailand"
2678
+
2679
+ #: profile-builder-2.0/admin/manage-fields.php:496
2680
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2681
+ msgid "Togo"
2682
+ msgstr "Togo"
2683
+
2684
+ #: profile-builder-2.0/admin/manage-fields.php:497
2685
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2686
+ msgid "Tokelau"
2687
+ msgstr "Tokelau"
2688
+
2689
+ #: profile-builder-2.0/admin/manage-fields.php:498
2690
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2691
+ msgid "Tonga"
2692
+ msgstr "Tonga"
2693
+
2694
+ #: profile-builder-2.0/admin/manage-fields.php:499
2695
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2696
+ msgid "Trinidad and Tobago"
2697
+ msgstr "Trinidad and Tobago"
2698
+
2699
+ #: profile-builder-2.0/admin/manage-fields.php:500
2700
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2701
+ msgid "Tunisia"
2702
+ msgstr "Tunisia"
2703
+
2704
+ #: profile-builder-2.0/admin/manage-fields.php:501
2705
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2706
+ msgid "Turkey"
2707
+ msgstr "Turkey"
2708
+
2709
+ #: profile-builder-2.0/admin/manage-fields.php:502
2710
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2711
+ msgid "Turkmenistan"
2712
+ msgstr "Turkmenistan"
2713
+
2714
+ #: profile-builder-2.0/admin/manage-fields.php:503
2715
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2716
+ msgid "Turks and Caicos Islands"
2717
+ msgstr "Turks and Caicos Islands"
2718
+
2719
+ #: profile-builder-2.0/admin/manage-fields.php:504
2720
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2721
+ msgid "Tuvalu"
2722
+ msgstr "Tuvalu"
2723
+
2724
+ #: profile-builder-2.0/admin/manage-fields.php:505
2725
+ msgid "U.S. Virgin Islands"
2726
+ msgstr "U.S. Virgin Islands"
2727
+
2728
+ #: profile-builder-2.0/admin/manage-fields.php:506
2729
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2730
+ msgid "Uganda"
2731
+ msgstr "Uganda"
2732
+
2733
+ #: profile-builder-2.0/admin/manage-fields.php:507
2734
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2735
+ msgid "Ukraine"
2736
+ msgstr "Ukraine"
2737
+
2738
+ #: profile-builder-2.0/admin/manage-fields.php:508
2739
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2740
+ msgid "United Arab Emirates"
2741
+ msgstr "United Arab Emirates"
2742
+
2743
+ #: profile-builder-2.0/admin/manage-fields.php:509
2744
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2745
+ msgid "United Kingdom"
2746
+ msgstr "United Kingdom"
2747
+
2748
+ #: profile-builder-2.0/admin/manage-fields.php:510
2749
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2750
+ msgid "United States"
2751
+ msgstr "United States"
2752
+
2753
+ #: profile-builder-2.0/admin/manage-fields.php:511
2754
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2755
+ msgid "United States Minor Outlying Islands"
2756
+ msgstr "United States Minor Outlying Islands"
2757
+
2758
+ #: profile-builder-2.0/admin/manage-fields.php:512
2759
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2760
+ msgid "Uruguay"
2761
+ msgstr "Uruguay"
2762
+
2763
+ #: profile-builder-2.0/admin/manage-fields.php:513
2764
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2765
+ msgid "Uzbekistan"
2766
+ msgstr "Uzbekistan"
2767
+
2768
+ #: profile-builder-2.0/admin/manage-fields.php:514
2769
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2770
+ msgid "Vanuatu"
2771
+ msgstr "Vanuatu"
2772
+
2773
+ #: profile-builder-2.0/admin/manage-fields.php:515
2774
+ msgid "Vatican"
2775
+ msgstr "Vatican"
2776
+
2777
+ #: profile-builder-2.0/admin/manage-fields.php:516
2778
+ msgid "Venezuela"
2779
+ msgstr "Venezuela"
2780
+
2781
+ #: profile-builder-2.0/admin/manage-fields.php:517
2782
+ msgid "Vietnam"
2783
+ msgstr "Vietnam"
2784
+
2785
+ #: profile-builder-2.0/admin/manage-fields.php:518
2786
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2787
+ msgid "Wallis and Futuna"
2788
+ msgstr "Wallis and Futuna"
2789
+
2790
+ #: profile-builder-2.0/admin/manage-fields.php:519
2791
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2792
+ msgid "Western Sahara"
2793
+ msgstr "Western Sahara"
2794
+
2795
+ #: profile-builder-2.0/admin/manage-fields.php:520
2796
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2797
+ msgid "Yemen"
2798
+ msgstr "Yemen"
2799
+
2800
+ #: profile-builder-2.0/admin/manage-fields.php:521
2801
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2802
+ msgid "Zambia"
2803
+ msgstr "Zambia"
2804
+
2805
+ #: profile-builder-2.0/admin/manage-fields.php:522
2806
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2807
+ msgid "Zimbabwe"
2808
+ msgstr "Zimbabwe"
2809
+
2810
+ #: profile-builder-2.0/admin/manage-fields.php:1202
2811
+ 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."
2812
+ msgstr ""
2813
+
2814
+ #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:241
2815
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2816
+ msgstr "Tu cuenta debe ser confirmada por un administrador antes de que puedas loggearte."
2817
+
2818
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:210
2819
+ msgid "Your account has been successfully created!"
2820
+ msgstr "¡Tu cuenta ha sido creada exitosamente!"
2821
+
2822
+ #: profile-builder-2.0/features/functions.php:705
2823
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:374
2824
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:379
2825
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:421
2826
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:458
2827
+ msgid "Please enter a (valid) reCAPTCHA value"
2828
+ msgstr ""
2829
+
2830
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:421
2831
+ msgid "Click the BACK button on your browser, and try again."
2832
+ msgstr ""
2833
+
2834
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2835
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2836
+ msgid "Sorry, you cannot upload this file type for this field."
2837
+ msgstr ""
2838
+
2839
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2840
+ msgid "An error occurred, please try again later."
2841
+ msgstr "Ha ocurrido un error, por favor inténtalo de nuevo más tarde."
2842
+
2843
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:273
2844
+ msgid "More"
2845
+ msgstr "Más"
2846
+
2847
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:367
2848
+ msgid "You do not have permission to view this user list."
2849
+ msgstr ""
2850
+
2851
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:380
2852
+ msgid "You do not have the required user role to view this user list."
2853
+ msgstr ""
2854
+
2855
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2127
2856
+ msgid "Ascending"
2857
+ msgstr ""
2858
+
2859
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2128
2860
+ msgid "Descending"
2861
+ msgstr ""
2862
+
2863
+ #: profile-builder-2.0/admin/add-ons.php:148
2864
+ #: profile-builder-2.0/admin/add-ons.php:248
2865
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:134
2866
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:213
2867
+ msgid "Download Now"
2868
+ msgstr "Descargar"
2869
+
2870
+ #: profile-builder-2.0/admin/admin-functions.php:197
2871
+ 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. "
2872
+ msgstr ""
2873
+
2874
+ #: profile-builder-2.0/admin/manage-fields.php:77
2875
+ msgid "Choose one of the supported field types"
2876
+ msgstr "Escoja uno de los campos disponibles"
2877
+
2878
+ #: profile-builder-2.0/admin/manage-fields.php:79
2879
+ msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2880
+ msgstr ""
2881
+
2882
+ #: profile-builder-2.0/admin/manage-fields.php:126
2883
+ msgid "Site Key"
2884
+ msgstr "Sitio clave"
2885
+
2886
+ #: profile-builder-2.0/admin/manage-fields.php:126
2887
+ msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2888
+ msgstr ""
2889
+
2890
+ #: profile-builder-2.0/admin/manage-fields.php:127
2891
+ msgid "Secret Key"
2892
+ msgstr "Clave secreta"
2893
+
2894
+ #: profile-builder-2.0/admin/manage-fields.php:127
2895
+ msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2896
+ msgstr ""
2897
+
2898
+ #: profile-builder-2.0/admin/manage-fields.php:1009
2899
+ msgid "You must enter the site key\n"
2900
+ msgstr "Debes ingresar la clave del sitio\n"
2901
+
2902
+ #: profile-builder-2.0/admin/manage-fields.php:1011
2903
+ msgid "You must enter the secret key\n"
2904
+ msgstr ""
2905
+
2906
+ #: profile-builder-2.0/admin/add-ons.php:10
2907
+ #: profile-builder-2.0/admin/add-ons.php:32
2908
+ msgid "Add-Ons"
2909
+ msgstr "Add-Ons"
2910
+
2911
+ #: profile-builder-2.0/admin/add-ons.php:34
2912
+ #: profile-builder-2.0/admin/add-ons.php:129
2913
+ #: profile-builder-2.0/admin/add-ons.php:231
2914
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:78
2915
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:114
2916
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:193
2917
+ msgid "Activate"
2918
+ msgstr "Activar"
2919
+
2920
+ #: profile-builder-2.0/admin/add-ons.php:36
2921
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:80
2922
+ msgid "Downloading and installing..."
2923
+ msgstr "Bajando e instalando..."
2924
+
2925
+ #: profile-builder-2.0/admin/add-ons.php:37
2926
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:81
2927
+ msgid "Installation complete"
2928
+ msgstr "Instalación completada"
2929
+
2930
+ #: profile-builder-2.0/admin/add-ons.php:39
2931
+ msgid "Add-On is Active"
2932
+ msgstr "El Add-Ons está activado"
2933
+
2934
+ #: profile-builder-2.0/admin/add-ons.php:40
2935
+ msgid "Add-On has been activated"
2936
+ msgstr "El Add-On ha sido activado"
2937
+
2938
+ #: profile-builder-2.0/admin/add-ons.php:41
2939
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:85
2940
+ msgid "Retry Install"
2941
+ msgstr "Reintentar Instalación"
2942
+
2943
+ #: profile-builder-2.0/admin/add-ons.php:43
2944
+ #: profile-builder-2.0/admin/add-ons.php:140
2945
+ msgid "Add-On is <strong>active</strong>"
2946
+ msgstr ""
2947
+
2948
+ #: profile-builder-2.0/admin/add-ons.php:44
2949
+ #: profile-builder-2.0/admin/add-ons.php:138
2950
+ msgid "Add-On is <strong>inactive</strong>"
2951
+ msgstr ""
2952
+
2953
+ #: profile-builder-2.0/admin/add-ons.php:46
2954
+ #: profile-builder-2.0/admin/add-ons.php:133
2955
+ #: profile-builder-2.0/admin/add-ons.php:235
2956
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:90
2957
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:118
2958
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:197
2959
+ msgid "Deactivate"
2960
+ msgstr ""
2961
+
2962
+ #: profile-builder-2.0/admin/add-ons.php:47
2963
+ msgid "Add-On has been deactivated."
2964
+ msgstr ""
2965
+
2966
+ #: profile-builder-2.0/admin/add-ons.php:59
2967
+ msgid "Something went wrong, we could not connect to the server. Please try again later."
2968
+ msgstr ""
2969
+
2970
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:137
2971
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:216
2972
+ msgid "Install Now"
2973
+ msgstr ""
2974
+
2975
+ #: profile-builder-2.0/admin/add-ons.php:153
2976
+ #: profile-builder-2.0/admin/add-ons.php:251
2977
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:141
2978
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:220
2979
+ msgid "Compatible with your version of Profile Builder."
2980
+ msgstr ""
2981
+
2982
+ #: profile-builder-2.0/admin/add-ons.php:162
2983
+ msgid "Upgrade Profile Builder"
2984
+ msgstr ""
2985
+
2986
+ #: profile-builder-2.0/admin/add-ons.php:163
2987
+ msgid "Not compatible with Profile Builder"
2988
+ msgstr ""
2989
+
2990
+ #: profile-builder-2.0/admin/add-ons.php:171
2991
+ msgid "Not compatible with your version of Profile Builder."
2992
+ msgstr ""
2993
+
2994
+ #: profile-builder-2.0/admin/add-ons.php:172
2995
+ msgid "Minimum required Profile Builder version:"
2996
+ msgstr ""
2997
+
2998
+ #: profile-builder-2.0/admin/add-ons.php:177
2999
+ msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
3000
+ msgstr ""
3001
+
3002
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3003
+ msgid "You must enter a valid email address."
3004
+ msgstr "Debe ingresar una dirección válida de email"
3005
+
3006
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3007
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3008
+ msgid "This username is invalid because it uses illegal characters."
3009
+ msgstr ""
3010
+
3011
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3012
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3013
+ msgid "Please enter a valid username."
3014
+ msgstr "Por favor ingrese un nombre de usuario válido"
3015
+
3016
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:72
3017
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:85
3018
+ msgid "Only administrators can see this field on edit profile forms."
3019
+ msgstr "Sólo administradores pueden ver este campo en el editor de formularios de perfiles"
3020
+
3021
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:81
3022
+ msgid "As an administrator you cannot change your role."
3023
+ msgstr "Como administrador, no puedes cambiar tu Rol"
3024
+
3025
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3026
+ msgid ""
3027
+ "\n"
3028
+ "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3029
+ "<p>His/her new password is: {{password}}</p>\n"
3030
+ msgstr ""
3031
+
3032
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3033
+ msgid "Admin Notification for User Password Reset"
3034
+ msgstr ""
3035
+
3036
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
3037
+ msgid "Reset Key"
3038
+ msgstr ""
3039
+
3040
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:43
3041
+ msgid "Reset Url"
3042
+ msgstr ""
3043
+
3044
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:44
3045
+ msgid "Reset Link"
3046
+ msgstr ""
3047
+
3048
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3049
+ msgid ""
3050
+ "\n"
3051
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3052
+ "Username: {{username}}</p>\n"
3053
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
3054
+ "<p>To reset your password, visit the following address:<br/>\n"
3055
+ "{{{reset_link}}}</p>\n"
3056
+ msgstr ""
3057
+
3058
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3059
+ msgid "[{{site_name}}] Password Reset"
3060
+ msgstr "[{{site_name}}] Restaurar Contraseña"
3061
+
3062
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3063
+ msgid "Password Reset Email"
3064
+ msgstr "Restaurar Contraseña vía E-mail"
3065
+
3066
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3067
+ msgid ""
3068
+ "\n"
3069
+ "<p>You have successfully reset your password to: {{password}}</p>\n"
3070
+ msgstr ""
3071
+ "\n"
3072
+ "<p>Tu contraseña ha sido exitosamente restaurada a: {{password}}</p>\n"
3073
+
3074
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3075
+ msgid "[{{site_name}}] Password Reset Successfully"
3076
+ msgstr ""
3077
+
3078
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3079
+ msgid "Password Reset Success Email"
3080
+ msgstr ""
3081
+
3082
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:152
3083
+ msgid "User Nicename"
3084
+ msgstr "Nicename del Usuario"
3085
+
3086
+ #: pb-add-on-woocommerce/woosync-page.php:80
3087
+ #: pb-add-on-woocommerce/woosync-page.php:114
3088
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:486
3089
+ msgid "None"
3090
+ msgstr "Ninguno"
3091
+
3092
+ #: profile-builder-2.0/admin/admin-functions.php:128
3093
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3094
+ msgstr "<strong>ERROR</strong>: La contraseña tiene que tener un tamaño mínimo de %s caracteres"
3095
+
3096
+ #: profile-builder-2.0/admin/admin-functions.php:145
3097
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3098
+ msgstr "<strong>ERROR</strong>: La contraseña tiene que tener una fortaleza mínima de %s"
3099
+
3100
+ #: profile-builder-2.0/admin/general-settings.php:163
3101
+ msgid "Username and Email"
3102
+ msgstr "Usuario o Email"
3103
+
3104
+ #: profile-builder-2.0/admin/general-settings.php:168
3105
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
3106
+ msgstr "\"Nombre de Usuario y Email\" - los usuarios pueden Autenticarse tanto con el Nombre de Usuario como con el Email."
3107
+
3108
+ #: profile-builder-2.0/admin/general-settings.php:169
3109
+ msgid "\"Username\" - users can Log In only with Username."
3110
+ msgstr "\"Nombre de Usuario\" - los usuarios pueden Autenticarse con el Nombre de Usuario."
3111
+
3112
+ #: profile-builder-2.0/admin/general-settings.php:170
3113
+ msgid "\"Email\" - users can Log In only with Email."
3114
+ msgstr "\"Email\" - los usuarios pueden Autenticarse con el Email."
3115
+
3116
+ #: profile-builder-2.0/admin/manage-fields.php:119
3117
+ 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 (.*)"
3118
+ 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 (.*)"
3119
+
3120
+ #: profile-builder-2.0/admin/manage-fields.php:120
3121
+ 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 (.*)"
3122
+ 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 (.*)"
3123
+
3124
+ #: profile-builder-2.0/admin/manage-fields.php:130
3125
+ msgid "User Roles"
3126
+ msgstr "Roles de Usuario"
3127
+
3128
+ #: profile-builder-2.0/admin/manage-fields.php:130
3129
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3130
+ msgstr "Seleccionar cuáles roles de usuario mostrar al usuario (arrastre y suelte para reorganizar)"
3131
+
3132
+ #: profile-builder-2.0/admin/manage-fields.php:131
3133
+ msgid "User Roles Order"
3134
+ msgstr "Orden de Roles de Usuario"
3135
+
3136
+ #: profile-builder-2.0/admin/manage-fields.php:131
3137
+ msgid "Save the user role order from the user roles checkboxes"
3138
+ msgstr "Salvar el orden de roles de usuario de las casillas de roles de usuario"
3139
+
3140
+ #: profile-builder-2.0/admin/manage-fields.php:1111
3141
+ msgid "Please select at least one user role\n"
3142
+ msgstr "Por favor seleccione al menos un rol de usuario\n"
3143
+
3144
+ #: profile-builder-2.0/admin/register-version.php:22
3145
+ msgid "Profile Builder Register"
3146
+ msgstr "Registro de Profile Builder"
3147
+
3148
+ #: profile-builder-2.0/admin/register-version.php:81
3149
+ msgid "The serial number is about to expire soon!"
3150
+ msgstr "¡El número de serie está a punto de expirar!"
3151
+
3152
+ #: profile-builder-2.0/admin/register-version.php:81
3153
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3154
+ msgstr "Su número de serie está a punto de expirar, por favor %1$s Renueve Su Licencia%2$s."
3155
+
3156
+ #: profile-builder-2.0/admin/register-version.php:83
3157
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3158
+ msgstr "Su número de serie expiró, por favor %1$s Renueve Su Licencia%2$s."
3159
+
3160
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:340
3161
+ msgid "Add Entry"
3162
+ msgstr "Adicionar Entrada"
3163
+
3164
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3165
+ msgid "show"
3166
+ msgstr "mostrar"
3167
+
3168
+ #: profile-builder-2.0/features/functions.php:763
3169
+ 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"
3170
+ 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"
3171
+
3172
+ #: profile-builder-2.0/front-end/class-formbuilder.php:681
3173
+ msgid "User to edit:"
3174
+ msgstr "Usuarios a editar:"
3175
+
3176
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3177
+ #: profile-builder-2.0/front-end/recover.php:251
3178
+ msgid "The password must have the minimum length of %s characters"
3179
+ msgstr "La contraseña tiene que tener un tamaño mínimo de %s caracteres"
3180
+
3181
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3182
+ #: profile-builder-2.0/front-end/recover.php:255
3183
+ msgid "The password must have a minimum strength of %s"
3184
+ msgstr "La contraseña tiene que tener una fortaleza mínima de %s"
3185
+
3186
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:118
3187
+ msgid "You cannot register this user role"
3188
+ msgstr "Usted no puede registrar este rol de usuario"
3189
+
3190
+ #: profile-builder-2.0/front-end/login.php:153
3191
+ msgid "username or email"
3192
+ msgstr "nombre de usuario o email"
3193
+
3194
+ #: profile-builder-2.0/front-end/login.php:229
3195
+ msgid "Username or Email"
3196
+ msgstr "Usuario o Email"
3197
+
3198
+ #: profile-builder-2.0/front-end/logout.php:15
3199
+ msgid "You are currently logged in as %s. "
3200
+ msgstr "Usted está autenticado actualmente como %s"
3201
+
3202
+ #: profile-builder-2.0/front-end/logout.php:15
3203
+ msgid "Log out &raquo;"
3204
+ msgstr "Salir &raquo;"
3205
+
3206
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3207
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3208
+ msgid "User Role"
3209
+ msgstr "Role del Usuario"
3210
+
3211
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2046
3212
+ msgid "View all extra shortcode parameters"
3213
+ msgstr "Ver todos los parámetros de código corto adicionales"
3214
+
3215
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2060
3216
+ msgid "displays only the users that you specified the user_id for"
3217
+ msgstr "muestra solamente los usuarios para los que usted ha especificado el user_id"
3218
+
3219
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2066
3220
+ msgid "displays all users except the ones you specified the user_id for"
3221
+ msgstr "muestra todos los usuarios excepto aquellos para los que usted ha especificado el user_id"
3222
+
3223
+ #: profile-builder-2.0/features/functions.php:593
3224
+ msgid "Minimum length of %d characters"
3225
+ msgstr "Mínimo de %d caracteres. "
3226
+
3227
+ #: profile-builder-2.0/front-end/class-formbuilder.php:171
3228
+ #: profile-builder-2.0/front-end/class-formbuilder.php:174
3229
+ msgid "This message is only visible by administrators"
3230
+ msgstr "Este mensaje está visible solamente por administradores"
3231
+
3232
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:404
3233
+ msgid "User not found"
3234
+ msgstr "Usuario no encontrado"
3235
+
3236
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3237
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3238
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
3239
+ msgstr "Etiquetas válidas {{reply_to}} y {{site_name}}"
3240
+
3241
+ #: profile-builder-2.0/admin/admin-bar.php:48
3242
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3243
+ msgstr "Escoger qué roles de usuario ve el admin bar en la vista pública del sitio web."
3244
+
3245
+ #: profile-builder-2.0/admin/manage-fields.php:124
3246
+ 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"
3247
+ 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"
3248
+
3249
+ #: profile-builder-2.0/admin/manage-fields.php:1038
3250
+ msgid "The meta-name cannot be empty\n"
3251
+ msgstr "El meta-nombre no puede ser vacío\n"
3252
+
3253
+ #: profile-builder-2.0/admin/register-version.php:69
3254
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3255
+ 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ó"
3256
+
3257
+ #: profile-builder-2.0/admin/register-version.php:243
3258
+ 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>"
3259
+ 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>"
3260
+
3261
+ #: profile-builder-2.0/admin/register-version.php:246
3262
+ 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>"
3263
+ 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>"
3264
+
3265
+ #: profile-builder-2.0/admin/register-version.php:251
3266
+ 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>"
3267
+ 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>"
3268
+
3269
+ #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3270
+ #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3271
+ #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3272
+ #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3273
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:32
3274
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:54
3275
+ msgid "...Choose"
3276
+ msgstr "...Escoger"
3277
+
3278
+ #: profile-builder-2.0/features/class-list-table.php:526
3279
+ #: profile-builder-2.0/features/class-list-table.php:942
3280
+ msgid "1 item"
3281
+ msgstr "1 elemento"
3282
+
3283
+ #: profile-builder-2.0/features/functions.php:579
3284
+ msgid "Very Weak"
3285
+ msgstr "Muy Débil"
3286
+
3287
+ #: profile-builder-2.0/features/functions.php:667
3288
+ msgid "This field is required"
3289
+ msgstr "Campo requerido"
3290
+
3291
+ #: profile-builder-2.0/features/functions.php:731
3292
+ msgid "Cancel"
3293
+ msgstr "Cancelar"
3294
+
3295
+ #: profile-builder-2.0/features/functions.php:767
3296
+ 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"
3297
+ 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"
3298
+
3299
+ #: profile-builder-2.0/front-end/login.php:144
3300
+ msgid "Invalid username."
3301
+ msgstr "Nombre de usuario inválido."
3302
+
3303
+ #: profile-builder-2.0/front-end/login.php:149
3304
+ #: profile-builder-2.0/front-end/login.php:153
3305
+ msgid "username"
3306
+ msgstr "nombre de usuario"
3307
+
3308
+ #: profile-builder-2.0/front-end/login.php:149
3309
+ msgid "email"
3310
+ msgstr "email"
3311
+
3312
+ #: profile-builder-2.0/front-end/login.php:263
3313
+ msgid "Lost your password?"
3314
+ msgstr "¿Perdió su contraseña?"
3315
+
3316
+ #: profile-builder-2.0/index.php:34
3317
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3318
+ msgstr "está también activado. Necesita desactivarlo antes de activar está versión del plugin."
3319
+
3320
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3321
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3322
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3323
+ msgstr "Tiene que ser una dirección de email válida o la etiqueta {{reply_to}} que tiene por defecto el email del administrador"
3324
+
3325
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:565
3326
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3327
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:470
3328
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:477
3329
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:491
3330
+ msgid "Your selected password at signup"
3331
+ msgstr "Su contraseña seleccionada al inscribirse"
3332
+
3333
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3334
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3335
+ msgstr "Estos ajustes también se replican en la página de ajustes de \"Personalizador de Email de Admin\" al salvar."
3336
+
3337
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3338
+ msgid "This form is empty."
3339
+ msgstr "Esta forma está vacía."
3340
+
3341
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3342
+ msgid "Delete all items"
3343
+ msgstr "Borrar todos los elementos"
3344
+
3345
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3346
+ msgid "Delete all"
3347
+ msgstr "Borrar todo"
3348
+
3349
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3350
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1551
3351
+ msgid "Choose..."
3352
+ msgstr "Escoger..."
3353
+
3354
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2137
3355
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3356
+ msgstr "Establecer el número de usuarios a mostrarse en cada parte paginada del all-userlisting"
3357
+
3358
+ #: profile-builder-2.0/admin/admin-bar.php:10
3359
+ msgid "Show/Hide the Admin Bar on the Front-End"
3360
+ msgstr "Mostrar/Ocultar el Admin Bar en la Vista Pública"
3361
+
3362
+ #: profile-builder-2.0/admin/admin-bar.php:10
3363
+ #: profile-builder-2.0/admin/admin-bar.php:47
3364
+ msgid "Admin Bar Settings"
3365
+ msgstr "Ajustes de Admin Bar"
3366
+
3367
+ #: profile-builder-2.0/admin/admin-bar.php:57
3368
+ msgid "User-Role"
3369
+ msgstr "Usuario-Rol"
3370
+
3371
+ #: profile-builder-2.0/admin/admin-bar.php:58
3372
+ msgid "Visibility"
3373
+ msgstr "Visibilidad"
3374
+
3375
+ #: profile-builder-2.0/admin/admin-bar.php:73
3376
+ msgid "Default"
3377
+ msgstr "Valor Por Defecto"
3378
+
3379
+ #: profile-builder-2.0/admin/admin-bar.php:74
3380
+ msgid "Show"
3381
+ msgstr "Mostrar"
3382
+
3383
+ #: profile-builder-2.0/admin/admin-bar.php:75
3384
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1496
3385
+ msgid "Hide"
3386
+ msgstr "Ocultar"
3387
+
3388
+ #: pb-add-on-woocommerce/woosync-page.php:147
3389
+ #: profile-builder-2.0/admin/admin-bar.php:86
3390
+ #: profile-builder-2.0/admin/general-settings.php:208
3391
+ #: profile-builder-2.0/admin/register-version.php:95
3392
+ #: profile-builder-2.0/features/functions.php:724
3393
+ #: profile-builder-2.0/modules/modules.php:127
3394
+ msgid "Save Changes"
3395
+ msgstr "Salvar Cambios"
3396
+
3397
+ #: profile-builder-2.0/admin/admin-functions.php:34
3398
+ 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 )"
3399
+ 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\") "
3400
+
3401
+ #: profile-builder-2.0/admin/admin-functions.php:34
3402
+ #: profile-builder-2.0/admin/general-settings.php:10
3403
+ #: profile-builder-2.0/admin/general-settings.php:38
3404
+ msgid "General Settings"
3405
+ msgstr "Ajustes Generales"
3406
+
3407
+ #: profile-builder-2.0/admin/admin-functions.php:134
3408
+ #: profile-builder-2.0/admin/general-settings.php:194
3409
+ msgid "Very weak"
3410
+ msgstr "Muy débil"
3411
+
3412
+ #: profile-builder-2.0/admin/admin-functions.php:134
3413
+ #: profile-builder-2.0/admin/general-settings.php:195
3414
+ #: profile-builder-2.0/features/functions.php:579
3415
+ msgid "Weak"
3416
+ msgstr "Débil"
3417
+
3418
+ #: profile-builder-2.0/admin/admin-functions.php:134
3419
+ #: profile-builder-2.0/admin/general-settings.php:196
3420
+ #: profile-builder-2.0/features/functions.php:579
3421
+ msgid "Medium"
3422
+ msgstr "Media"
3423
+
3424
+ #: profile-builder-2.0/admin/admin-functions.php:134
3425
+ #: profile-builder-2.0/admin/general-settings.php:197
3426
+ #: profile-builder-2.0/features/functions.php:579
3427
+ msgid "Strong"
3428
+ msgstr "Fuerte"
3429
+
3430
+ #: profile-builder-2.0/admin/admin-functions.php:184
3431
+ msgid "Add Field"
3432
+ msgstr "Adicionar Campo"
3433
+
3434
+ #: profile-builder-2.0/admin/admin-functions.php:186
3435
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3436
+ msgid "Save Settings"
3437
+ msgstr "Salvar Ajustes"
3438
+
3439
+ #: profile-builder-2.0/admin/basic-info.php:10
3440
+ msgid "Basic Information"
3441
+ msgstr "Información Básica"
3442
+
3443
+ #: profile-builder-2.0/admin/basic-info.php:29
3444
+ msgid "Version %s"
3445
+ msgstr "Versión %s"
3446
+
3447
+ #: profile-builder-2.0/admin/basic-info.php:30
3448
+ msgid "<strong>Profile Builder </strong>"
3449
+ msgstr "<strong>Profile Builder </strong>"
3450
+
3451
+ #: profile-builder-2.0/admin/basic-info.php:31
3452
+ msgid "The best way to add front-end registration, edit profile and login forms."
3453
+ msgstr "La mejor forma de adicionar el registro en la vista pública, editar el perfil y las formas de autenticación."
3454
+
3455
+ #: profile-builder-2.0/admin/basic-info.php:33
3456
+ msgid "For Modern User Interaction"
3457
+ msgstr "Para la Interacción del Usuario Moderno"
3458
+
3459
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3460
+ #: profile-builder-2.0/admin/basic-info.php:36
3461
+ #: profile-builder-2.0/features/login-widget/login-widget.php:59
3462
+ msgid "Login"
3463
+ msgstr "Autenticación"
3464
+
3465
+ #: profile-builder-2.0/admin/basic-info.php:40
3466
+ msgid "Registration"
3467
+ msgstr "Registro"
3468
+
3469
+ #: profile-builder-2.0/admin/basic-info.php:44
3470
+ msgid "Edit Profile"
3471
+ msgstr "Editar Perfil"
3472
+
3473
+ #: profile-builder-2.0/admin/basic-info.php:51
3474
+ msgid "Extra Features"
3475
+ msgstr "Características extras."
3476
+
3477
+ #: profile-builder-2.0/admin/basic-info.php:52
3478
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3479
+ 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."
3480
+
3481
+ #: profile-builder-2.0/admin/basic-info.php:53
3482
+ msgid "Enable extra features"
3483
+ msgstr "Habilitar características extras"
3484
+
3485
+ #: profile-builder-2.0/admin/basic-info.php:57
3486
+ msgid "Recover Password"
3487
+ msgstr "Recuperar contraseña"
3488
+
3489
+ #: profile-builder-2.0/admin/basic-info.php:61
3490
+ msgid "Admin Approval (*)"
3491
+ msgstr "Aprobación del Admin (*)"
3492
+
3493
+ #: profile-builder-2.0/admin/basic-info.php:62
3494
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3495
+ 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."
3496
+
3497
+ #: profile-builder-2.0/admin/basic-info.php:65
3498
+ msgid "Email Confirmation"
3499
+ msgstr "Confirmación de Email"
3500
+
3501
+ #: profile-builder-2.0/admin/basic-info.php:66
3502
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3503
+ 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."
3504
+
3505
+ #: profile-builder-2.0/admin/basic-info.php:69
3506
+ msgid "Minimum Password Length and Strength Meter"
3507
+ msgstr "Tamaño Mínimo de Contraseña y Medidor de Fortaleza"
3508
+
3509
+ #: profile-builder-2.0/admin/basic-info.php:70
3510
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3511
+ msgstr "Elimine contraseñas débiles estableciendo un tamaño mínimo de contraseña y forzando una cierta fortaleza de contraseña."
3512
+
3513
+ #: profile-builder-2.0/admin/basic-info.php:73
3514
+ msgid "Login with Email or Username"
3515
+ msgstr "Autenticación con Email o Nombre de Usuario"
3516
+
3517
+ #: profile-builder-2.0/admin/basic-info.php:74
3518
+ msgid "Allow users to log in with their email or username when accessing your site."
3519
+ msgstr "Permite a usuarios autenticarse con su correo o nombre de usuario cuando se accede al sitio."
3520
+
3521
+ #: profile-builder-2.0/admin/basic-info.php:87
3522
+ msgid "Customize Your Forms The Way You Want (*)"
3523
+ msgstr "Personalice Sus Formas De La Manera Que Quiera (*)"
3524
+
3525
+ #: profile-builder-2.0/admin/basic-info.php:88
3526
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3527
+ msgstr "Con Campos Extras del Perfil usted puede crear la forma exacta de registro de sus necesidades del proyecto."
3528
+
3529
+ #: profile-builder-2.0/admin/basic-info.php:90
3530
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3531
+ msgstr "Los Campos Extras del Perfil están disponibles en versiones de Hobbyist o PRO"
3532
+
3533
+ #: profile-builder-2.0/admin/basic-info.php:92
3534
+ msgid "Get started with extra fields"
3535
+ msgstr "Comience con los campos extras"
3536
+
3537
+ #: profile-builder-2.0/admin/basic-info.php:95
3538
+ msgid "Avatar Upload"
3539
+ msgstr "Subida de Avatar"
3540
+
3541
+ #: profile-builder-2.0/admin/basic-info.php:96
3542
+ msgid "Generic Uploads"
3543
+ msgstr "Subidas Genéricas"
3544
+
3545
+ #: profile-builder-2.0/admin/basic-info.php:97
3546
+ msgid "Agree To Terms Checkbox"
3547
+ msgstr "Casilla de Aceptar los Términos"
3548
+
3549
+ #: profile-builder-2.0/admin/basic-info.php:98
3550
+ msgid "Datepicker"
3551
+ msgstr "Selector de Fecha"
3552
+
3553
+ #: profile-builder-2.0/admin/basic-info.php:101
3554
+ msgid "reCAPTCHA"
3555
+ msgstr "reCAPTCHA"
3556
+
3557
+ #: profile-builder-2.0/admin/basic-info.php:102
3558
+ msgid "Country Select"
3559
+ msgstr "Selector de País"
3560
+
3561
+ #: profile-builder-2.0/admin/basic-info.php:104
3562
+ msgid "Timezone Select"
3563
+ msgstr "Selector de Zona Horaria"
3564
+
3565
+ #: profile-builder-2.0/admin/basic-info.php:108
3566
+ msgid "Input / Hidden Input"
3567
+ msgstr "Input / Input Oculto"
3568
+
3569
+ #: profile-builder-2.0/admin/basic-info.php:110
3570
+ msgid "Checkbox"
3571
+ msgstr "Casilla"
3572
+
3573
+ #: profile-builder-2.0/admin/basic-info.php:111
3574
+ msgid "Select"
3575
+ msgstr "Selector"
3576
+
3577
+ #: profile-builder-2.0/admin/basic-info.php:112
3578
+ msgid "Radio Buttons"
3579
+ msgstr "Botones Redondos"
3580
+
3581
+ #: profile-builder-2.0/admin/basic-info.php:113
3582
+ msgid "Textarea"
3583
+ msgstr "Área de Texto"
3584
+
3585
+ #: profile-builder-2.0/admin/basic-info.php:125
3586
+ msgid "Powerful Modules (**)"
3587
+ msgstr "Módulos Potentes (**)"
3588
+
3589
+ #: profile-builder-2.0/admin/basic-info.php:126
3590
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3591
+ msgstr "Todo lo que necesite para gestionar sus usuarios está probablemente disponible utilizando el Pro Modules. "
3592
+
3593
+ #: profile-builder-2.0/admin/basic-info.php:128
3594
+ msgid "Enable your modules"
3595
+ msgstr "Habilitar sus módulos"
3596
+
3597
+ #: profile-builder-2.0/admin/basic-info.php:131
3598
+ msgid "Find out more about PRO Modules"
3599
+ msgstr "Descubra más acerca de PRO Modules"
3600
+
3601
+ #: profile-builder-2.0/admin/basic-info.php:136
3602
+ #: profile-builder-2.0/modules/modules.php:89
3603
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3604
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3605
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3606
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3607
+ msgid "User Listing"
3608
+ msgstr "Listado de Usuario"
3609
+
3610
+ #: profile-builder-2.0/admin/basic-info.php:138
3611
+ 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."
3612
+ 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."
3613
+
3614
+ #: profile-builder-2.0/admin/basic-info.php:144
3615
+ msgid "Email Customizer"
3616
+ msgstr "Personalizador de Email"
3617
+
3618
+ #: profile-builder-2.0/admin/basic-info.php:145
3619
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3620
+ 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."
3621
+
3622
+ #: profile-builder-2.0/admin/basic-info.php:148
3623
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3624
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3625
+ #: profile-builder-2.0/modules/modules.php:110
3626
+ msgid "Custom Redirects"
3627
+ msgstr "Redirecciones Personalizadas"
3628
+
3629
+ #: profile-builder-2.0/admin/basic-info.php:149
3630
+ 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."
3631
+ 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."
3632
+
3633
+ #: profile-builder-2.0/admin/basic-info.php:154
3634
+ #: profile-builder-2.0/modules/modules.php:75
3635
+ msgid "Multiple Registration Forms"
3636
+ msgstr "Formas de Registro Múltiple"
3637
+
3638
+ #: profile-builder-2.0/admin/basic-info.php:155
3639
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3640
+ msgstr "Establecer formas de registro múltiples con diferentes campos para ciertos roles de usuario. Capturar diferentes informaciones de diferentes tipos de usuarios."
3641
+
3642
+ #: profile-builder-2.0/admin/basic-info.php:158
3643
+ #: profile-builder-2.0/modules/modules.php:82
3644
+ msgid "Multiple Edit-profile Forms"
3645
+ msgstr "Formas de Edición de Múltiples Perfiles"
3646
+
3647
+ #: profile-builder-2.0/admin/basic-info.php:159
3648
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3649
+ 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."
3650
+
3651
+ #: profile-builder-2.0/admin/basic-info.php:187
3652
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3653
+ msgstr "* solamente disponible en las %1$sversiones Hobbyist y Pro%2$s."
3654
+
3655
+ #: profile-builder-2.0/admin/basic-info.php:188
3656
+ msgid "** only available in the %1$sPro version%2$s."
3657
+ msgstr "* solamente disponible en la %1$sversión Pro%2$s."
3658
+
3659
+ #: profile-builder-2.0/admin/general-settings.php:42
3660
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3661
+ msgstr "El propio CSS de Load Profile Builder en la vista pública:"
3662
+
3663
+ #: profile-builder-2.0/admin/general-settings.php:45
3664
+ #: profile-builder-2.0/admin/general-settings.php:58
3665
+ #: profile-builder-2.0/admin/general-settings.php:107
3666
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3667
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3668
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2142
3669
+ msgid "Yes"
3670
+ msgstr "Si"
3671
+
3672
+ #: profile-builder-2.0/admin/general-settings.php:47
3673
+ msgid "You can find the default file here: %1$s"
3674
+ msgstr "Usted puede encontrar el archivo por defecto aquí: %1$s"
3675
+
3676
+ #: profile-builder-2.0/admin/general-settings.php:54
3677
+ msgid "\"Email Confirmation\" Activated:"
3678
+ msgstr "\"Confirmación de Email\" Activada:"
3679
+
3680
+ #: profile-builder-2.0/admin/general-settings.php:59
3681
+ #: profile-builder-2.0/admin/general-settings.php:108
3682
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3683
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3684
+ msgid "No"
3685
+ msgstr "No"
3686
+
3687
+ #: profile-builder-2.0/admin/general-settings.php:64
3688
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3689
+ msgstr "Usted puede encontrar una lista de direcciones de email no confirmadas %1$sUsers > All Users > Email Confirmation%2$s."
3690
+
3691
+ #: profile-builder-2.0/admin/general-settings.php:72
3692
+ msgid "\"Email Confirmation\" Landing Page:"
3693
+ msgstr "Página de llegada de \"Confirmación de Email\":"
3694
+
3695
+ #: profile-builder-2.0/admin/general-settings.php:77
3696
+ msgid "Existing Pages"
3697
+ msgstr "Páginas Existentes"
3698
+
3699
+ #: profile-builder-2.0/admin/general-settings.php:92
3700
+ 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."
3701
+ 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."
3702
+
3703
+ #: profile-builder-2.0/admin/general-settings.php:103
3704
+ msgid "\"Admin Approval\" Activated:"
3705
+ msgstr "\"Aprobación del Admin\" Activada:"
3706
+
3707
+ #: profile-builder-2.0/admin/general-settings.php:111
3708
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3709
+ msgstr "Usted puede encontrar una lista de usuario en %1$sUsers > All Users > Admin Approval%2$s."
3710
+
3711
+ #: profile-builder-2.0/admin/general-settings.php:149
3712
+ msgid "\"Admin Approval\" Feature:"
3713
+ msgstr "Característica \"Aprobación del Admin\":"
3714
+
3715
+ #: profile-builder-2.0/admin/general-settings.php:152
3716
+ 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."
3717
+ 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."
3718
+
3719
+ #: profile-builder-2.0/admin/general-settings.php:159
3720
+ msgid "Allow Users to Log in With:"
3721
+ msgstr "Permitir a los Usuaios Autenticarse Con:"
3722
+
3723
+ #: profile-builder-2.0/admin/general-settings.php:164
3724
+ #: profile-builder-2.0/admin/manage-fields.php:195
3725
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3726
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3727
+ #: profile-builder-2.0/front-end/login.php:85
3728
+ #: profile-builder-2.0/front-end/login.php:99
3729
+ #: profile-builder-2.0/front-end/login.php:225
3730
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3731
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3732
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:101
3733
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:268
3734
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:704
3735
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2098
3736
+ msgid "Username"
3737
+ msgstr "Nombre de Usuario"
3738
+
3739
+ #: profile-builder-2.0/admin/general-settings.php:165
3740
+ #: profile-builder-2.0/front-end/login.php:222
3741
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3742
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:710
3743
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2099
3744
+ msgid "Email"
3745
+ msgstr "Email"
3746
+
3747
+ #: profile-builder-2.0/admin/general-settings.php:177
3748
+ msgid "Minimum Password Length:"
3749
+ msgstr "Tamaño Mínimo de Contraseña:"
3750
+
3751
+ #: profile-builder-2.0/admin/general-settings.php:182
3752
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3753
+ msgstr "Entre los caracteres mínimos que la contraseña debe tener. Deje en blanco para no límite mínimo."
3754
+
3755
+ #: profile-builder-2.0/admin/general-settings.php:189
3756
+ msgid "Minimum Password Strength:"
3757
+ msgstr "Fortaleza Mínima de Contraseña:"
3758
+
3759
+ #: profile-builder-2.0/admin/general-settings.php:193
3760
+ msgid "Disabled"
3761
+ msgstr "Deshabilitado"
3762
+
3763
+ #: profile-builder-2.0/admin/manage-fields.php:12
3764
+ msgid "Manage Fields"
3765
+ msgstr "Gestionar Campos"
3766
+
3767
+ #: profile-builder-2.0/admin/manage-fields.php:13
3768
+ msgid "Manage Default and Extra Fields"
3769
+ msgstr "Gestionar Campos Por Defecto y Adicionales"
3770
+
3771
+ #: profile-builder-2.0/admin/manage-fields.php:113
3772
+ msgid "Field Title"
3773
+ msgstr "Título del Campo"
3774
+
3775
+ #: profile-builder-2.0/admin/manage-fields.php:113
3776
+ msgid "Title of the field"
3777
+ msgstr "Título del Campo"
3778
+
3779
+ #: profile-builder-2.0/admin/manage-fields.php:114
3780
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3781
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3782
+ msgid "Field"
3783
+ msgstr "Campo"
3784
+
3785
+ #: profile-builder-2.0/admin/manage-fields.php:115
3786
+ msgid "Meta-name"
3787
+ msgstr "Meta-nombre"
3788
+
3789
+ #: profile-builder-2.0/admin/manage-fields.php:116
3790
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3791
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3792
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3793
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3794
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3795
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3796
+ msgid "ID"
3797
+ msgstr "ID"
3798
+
3799
+ #: profile-builder-2.0/admin/manage-fields.php:116
3800
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3801
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3802
+ 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"
3803
+ 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"
3804
+
3805
+ #: profile-builder-2.0/admin/manage-fields.php:117
3806
+ msgid "Description"
3807
+ msgstr "Descripción"
3808
+
3809
+ #: profile-builder-2.0/admin/manage-fields.php:117
3810
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3811
+ msgstr "Entre una descripción (detallada) de la opción para que los usuarios finales lean<br/>Opcional"
3812
+
3813
+ #: profile-builder-2.0/admin/manage-fields.php:118
3814
+ msgid "Row Count"
3815
+ msgstr "Cantidad de Filas"
3816
+
3817
+ #: profile-builder-2.0/admin/manage-fields.php:118
3818
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3819
+ msgstr "Especificar el número de filas para un campo 'Textarea'<br/>"
3820
+
3821
+ #: profile-builder-2.0/admin/manage-fields.php:119
3822
+ msgid "Allowed Image Extensions"
3823
+ msgstr "Extensiones de Imagen Permitidas"
3824
+
3825
+ #: profile-builder-2.0/admin/manage-fields.php:120
3826
+ msgid "Allowed Upload Extensions"
3827
+ msgstr "Extensiones de Subida Permitidas"
3828
+
3829
+ #: profile-builder-2.0/admin/manage-fields.php:121
3830
+ msgid "Avatar Size"
3831
+ msgstr "Tamaño del Avatar"
3832
+
3833
+ #: profile-builder-2.0/admin/manage-fields.php:121
3834
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3835
+ msgstr "Entrar un valor (entre 20 y 200) para el tamaño del 'Avatar'<br/>Si no se especifica, deja por defecto 100"
3836
+
3837
+ #: profile-builder-2.0/admin/manage-fields.php:122
3838
+ msgid "Date-format"
3839
+ msgstr "Formato de fecha"
3840
+
3841
+ #: profile-builder-2.0/admin/manage-fields.php:122
3842
+ 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"
3843
+ 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"
3844
+
3845
+ #: profile-builder-2.0/admin/manage-fields.php:123
3846
+ msgid "Terms of Agreement"
3847
+ msgstr "Términos del Acuerdo"
3848
+
3849
+ #: profile-builder-2.0/admin/manage-fields.php:123
3850
+ 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;"
3851
+ 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;"
3852
+
3853
+ #: profile-builder-2.0/admin/manage-fields.php:124
3854
+ msgid "Options"
3855
+ msgstr "Opciones"
3856
+
3857
+ #: profile-builder-2.0/admin/manage-fields.php:125
3858
+ msgid "Labels"
3859
+ msgstr "Etiquetas"
3860
+
3861
+ #: profile-builder-2.0/admin/manage-fields.php:125
3862
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
3863
+ msgstr "Entrar una lista separada por coma de etiquetas<br/>Visible para los usuarios"
3864
+
3865
+ #: profile-builder-2.0/admin/manage-fields.php:132
3866
+ msgid "Default Value"
3867
+ msgstr "Valor Por Defecto"
3868
+
3869
+ #: profile-builder-2.0/admin/manage-fields.php:132
3870
+ msgid "Default value of the field"
3871
+ msgstr "Valor por defecto del campo"
3872
+
3873
+ #: profile-builder-2.0/admin/manage-fields.php:133
3874
+ #: profile-builder-2.0/admin/manage-fields.php:135
3875
+ #: profile-builder-2.0/admin/manage-fields.php:136
3876
+ #: profile-builder-2.0/admin/manage-fields.php:137
3877
+ msgid "Default Option"
3878
+ msgstr "Opción Por Defecto"
3879
+
3880
+ #: profile-builder-2.0/admin/manage-fields.php:133
3881
+ msgid "Specify the option which should be selected by default"
3882
+ msgstr "Especificar la opción que debería ser seleccionada por defecto"
3883
+
3884
+ #: profile-builder-2.0/admin/manage-fields.php:134
3885
+ msgid "Default Option(s)"
3886
+ msgstr "Opción(es) Por Defecto"
3887
+
3888
+ #: profile-builder-2.0/admin/manage-fields.php:134
3889
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3890
+ msgstr "Especificar la opción que debería ser seleccionada por defecto<br/>Si hay valores múltiples, separarlos con una ',' (coma)"
3891
+
3892
+ #: profile-builder-2.0/admin/manage-fields.php:148
3893
+ msgid "Default Content"
3894
+ msgstr "Contenido Por Defecto"
3895
+
3896
+ #: profile-builder-2.0/admin/manage-fields.php:148
3897
+ msgid "Default value of the textarea"
3898
+ msgstr "Valor por defecto del textarea"
3899
+
3900
+ #: pb-add-on-woocommerce/index.php:306
3901
+ #: profile-builder-2.0/admin/manage-fields.php:155
3902
+ msgid "Required"
3903
+ msgstr "Requerido"
3904
+
3905
+ #: profile-builder-2.0/admin/manage-fields.php:155
3906
+ msgid "Whether the field is required or not"
3907
+ msgstr "Si el campo es requerido o no"
3908
+
3909
+ #: profile-builder-2.0/admin/manage-fields.php:156
3910
+ msgid "Overwrite Existing"
3911
+ msgstr "Sobrescribir Existente"
3912
+
3913
+ #: profile-builder-2.0/admin/manage-fields.php:156
3914
+ 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"
3915
+ 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 "
3916
+
3917
+ #: profile-builder-2.0/admin/manage-fields.php:162
3918
+ msgid "Field Properties"
3919
+ msgstr "Propiedades del campo"
3920
+
3921
+ #: profile-builder-2.0/admin/manage-fields.php:175
3922
+ msgid "Registration & Edit Profile"
3923
+ msgstr "Registro y Edición del Perfil"
3924
+
3925
+ #: profile-builder-2.0/admin/manage-fields.php:194
3926
+ msgid "Name"
3927
+ msgstr "Nombre"
3928
+
3929
+ #: profile-builder-2.0/admin/manage-fields.php:195
3930
+ msgid "Usernames cannot be changed."
3931
+ msgstr "Los nombres de usuario no pueden ser cambiados."
3932
+
3933
+ #: pb-add-on-woocommerce/billing-fields.php:6
3934
+ #: pb-add-on-woocommerce/shipping-fields.php:6
3935
+ #: profile-builder-2.0/admin/manage-fields.php:196
3936
+ msgid "First Name"
3937
+ msgstr "Primer Nombre"
3938
+
3939
+ #: pb-add-on-woocommerce/billing-fields.php:7
3940
+ #: pb-add-on-woocommerce/shipping-fields.php:7
3941
+ #: profile-builder-2.0/admin/manage-fields.php:197
3942
+ msgid "Last Name"
3943
+ msgstr "Apellidos"
3944
+
3945
+ #: profile-builder-2.0/admin/manage-fields.php:198
3946
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:743
3947
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2106
3948
+ msgid "Nickname"
3949
+ msgstr "Apodo"
3950
+
3951
+ #: profile-builder-2.0/admin/manage-fields.php:199
3952
+ msgid "Display name publicly as"
3953
+ msgstr "Mostrar el nombre públicamente como"
3954
+
3955
+ #: profile-builder-2.0/admin/manage-fields.php:200
3956
+ msgid "Contact Info"
3957
+ msgstr "Información de Contacto"
3958
+
3959
+ #: profile-builder-2.0/admin/manage-fields.php:201
3960
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
3961
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
3962
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:107
3963
+ msgid "E-mail"
3964
+ msgstr "E-mail"
3965
+
3966
+ #: profile-builder-2.0/admin/manage-fields.php:202
3967
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
3968
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:110
3969
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:725
3970
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2100
3971
+ msgid "Website"
3972
+ msgstr "Sitio Web"
3973
+
3974
+ #: profile-builder-2.0/admin/manage-fields.php:206
3975
+ msgid "AIM"
3976
+ msgstr "AIM"
3977
+
3978
+ #: profile-builder-2.0/admin/manage-fields.php:207
3979
+ msgid "Yahoo IM"
3980
+ msgstr "Yahoo IM"
3981
+
3982
+ #: profile-builder-2.0/admin/manage-fields.php:208
3983
+ msgid "Jabber / Google Talk"
3984
+ msgstr "Jabber / Google Talk"
3985
+
3986
+ #: profile-builder-2.0/admin/manage-fields.php:211
3987
+ msgid "About Yourself"
3988
+ msgstr "Acerca de Usted"
3989
+
3990
+ #: profile-builder-2.0/admin/manage-fields.php:212
3991
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:113
3992
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:728
3993
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2101
3994
+ msgid "Biographical Info"
3995
+ msgstr "Información Biográfica"
3996
+
3997
+ #: profile-builder-2.0/admin/manage-fields.php:212
3998
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
3999
+ msgstr "Compartir una pequeña información biográfica para llenar su perfil. Esto puede mostrarse públicamente. "
4000
+
4001
+ #: profile-builder-2.0/admin/manage-fields.php:213
4002
+ #: profile-builder-2.0/front-end/recover.php:73
4003
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4004
+ msgid "Password"
4005
+ msgstr "Contraseña"
4006
+
4007
+ #: profile-builder-2.0/admin/manage-fields.php:213
4008
+ msgid "Type your password."
4009
+ msgstr "Escriba su contraseña."
4010
+
4011
+ #: profile-builder-2.0/admin/manage-fields.php:214
4012
+ #: profile-builder-2.0/front-end/recover.php:74
4013
+ msgid "Repeat Password"
4014
+ msgstr "Repetir contraseña"
4015
+
4016
+ #: profile-builder-2.0/admin/manage-fields.php:214
4017
+ msgid "Type your password again. "
4018
+ msgstr "Escriba su contraseña nuevamente."
4019
+
4020
+ #: profile-builder-2.0/admin/manage-fields.php:966
4021
+ #: profile-builder-2.0/admin/manage-fields.php:1120
4022
+ msgid "You must select a field\n"
4023
+ msgstr "Tiene que seleccionar un campo\n"
4024
+
4025
+ #: profile-builder-2.0/admin/manage-fields.php:976
4026
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4027
+ msgstr "Por favor escoja un tipo de campo diferente dado que este solo existe en su forma (debe ser único)\n"
4028
+
4029
+ #: profile-builder-2.0/admin/manage-fields.php:987
4030
+ msgid "The entered avatar size is not between 20 and 200\n"
4031
+ msgstr "El tamaño del avatar entrado no está entre 20 y 200\n"
4032
+
4033
+ #: profile-builder-2.0/admin/manage-fields.php:990
4034
+ msgid "The entered avatar size is not numerical\n"
4035
+ msgstr "El tamaño del avatar entrado no es numérico\n"
4036
+
4037
+ #: profile-builder-2.0/admin/manage-fields.php:998
4038
+ msgid "The entered row number is not numerical\n"
4039
+ msgstr "El número de la fila entrado no es numérico\n"
4040
+
4041
+ #: profile-builder-2.0/admin/manage-fields.php:1001
4042
+ msgid "You must enter a value for the row number\n"
4043
+ msgstr "Usted tiene que entrar un valor para el número de la fila\n"
4044
+
4045
+ #: profile-builder-2.0/admin/manage-fields.php:1019
4046
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
4047
+ msgstr "El valor entrado para el Datepicker no es un formato de fecha válido\n"
4048
+
4049
+ #: profile-builder-2.0/admin/manage-fields.php:1022
4050
+ msgid "You must enter a value for the date-format\n"
4051
+ msgstr "Usted tiene que entrar un valor para el formato de fecha\n"
4052
+
4053
+ #: profile-builder-2.0/admin/manage-fields.php:1050
4054
+ #: profile-builder-2.0/admin/manage-fields.php:1058
4055
+ #: profile-builder-2.0/admin/manage-fields.php:1069
4056
+ msgid "That meta-name is already in use\n"
4057
+ msgstr "Ese meta nombre ya está en uso\n"
4058
+
4059
+ #: profile-builder-2.0/admin/manage-fields.php:1100
4060
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4061
+ msgstr "La(s) siguiente(s) opción(es) no coincide(n) con aquellas en la lista de opciones:%s\n"
4062
+
4063
+ #: profile-builder-2.0/admin/manage-fields.php:1104
4064
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
4065
+ msgstr "La siguiente opción no coincidió con aquellas de la lista de opciones: %s\n"
4066
+
4067
+ #: profile-builder-2.0/admin/manage-fields.php:1127
4068
+ msgid "That field is already added in this form\n"
4069
+ msgstr "Ese campo ya está añadido en esta forma\n"
4070
+
4071
+ #: profile-builder-2.0/admin/manage-fields.php:1176
4072
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4073
+ msgstr "<pre>Título</pre><pre>Tipo</pre><pre>Meta Nombre</pre><pre class=\"wppb-mb-head-required\">Requerido</pre>"
4074
+
4075
+ #: profile-builder-2.0/admin/manage-fields.php:1176
4076
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4077
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4078
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4079
+ #: profile-builder-2.0/features/functions.php:745
4080
+ #: profile-builder-2.0/features/functions.php:752
4081
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4082
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4083
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4084
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4085
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4086
+ msgid "Edit"
4087
+ msgstr "Editar"
4088
+
4089
+ #: profile-builder-2.0/admin/manage-fields.php:1176
4090
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4091
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4092
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4093
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4094
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4095
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4096
+ #: profile-builder-2.0/features/functions.php:738
4097
+ #: profile-builder-2.0/features/functions.php:752
4098
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4099
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4100
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4101
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4102
+ msgid "Delete"
4103
+ msgstr "Editar"
4104
+
4105
+ #: profile-builder-2.0/admin/manage-fields.php:1191
4106
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4107
+ msgstr "Usar estos códigos cortos en las páginas en las que quiere que las formas se muestren:"
4108
+
4109
+ #: profile-builder-2.0/admin/manage-fields.php:1200
4110
+ 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."
4111
+ 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."
4112
+
4113
+ #: profile-builder-2.0/admin/register-version.php:14
4114
+ msgid "Register Your Version"
4115
+ 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."
4116
+
4117
+ #: profile-builder-2.0/admin/register-version.php:14
4118
+ msgid "Register Version"
4119
+ msgstr "Registre la Versión"
4120
+
4121
+ #: profile-builder-2.0/admin/register-version.php:70
4122
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4123
+ msgstr "Si usted registra esta versión de Profile Builder, recibirá información referente a actualizaciones, parches, y soporte técnico."
4124
+
4125
+ #: profile-builder-2.0/admin/register-version.php:72
4126
+ msgid " Serial Number:"
4127
+ msgstr "Número de Serie:"
4128
+
4129
+ #: profile-builder-2.0/admin/register-version.php:77
4130
+ msgid "The serial number was successfully validated!"
4131
+ msgstr "¡El número de serie fue validado satisfactoriamente!"
4132
+
4133
+ #: profile-builder-2.0/admin/register-version.php:79
4134
+ msgid "The serial number entered couldn't be validated!"
4135
+ msgstr "¡El número de serie está a punto de expirar!"
4136
+
4137
+ #: profile-builder-2.0/admin/register-version.php:83
4138
+ msgid "The serial number couldn't be validated because it expired!"
4139
+ msgstr "¡El número de serie no ha podido ser validado porque expiró!"
4140
+
4141
+ #: profile-builder-2.0/admin/register-version.php:85
4142
+ 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!"
4143
+ 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! "
4144
+
4145
+ #: profile-builder-2.0/admin/register-version.php:87
4146
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4147
+ msgstr "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4148
+
4149
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:443
4150
+ #: profile-builder-2.0/features/functions.php:752
4151
+ msgid "Content"
4152
+ msgstr "Contenido"
4153
+
4154
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4155
+ msgid "Edit this item"
4156
+ msgstr "Editar este elemento"
4157
+
4158
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4159
+ msgid "Delete this item"
4160
+ msgstr "Borrar este elemento"
4161
+
4162
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4163
+ msgid "Please enter a value for the required field "
4164
+ msgstr "Por favor entre un valor para el campo requerido"
4165
+
4166
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4167
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4168
+ msgid "Select File"
4169
+ msgstr "Seleccionar archivo"
4170
+
4171
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4172
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4173
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4174
+ msgid "Remove"
4175
+ msgstr "Eliminar"
4176
+
4177
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:1253
4178
+ msgid "Syncronize WCK"
4179
+ msgstr "Sincronizar WCK"
4180
+
4181
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:1265
4182
+ msgid "Syncronize WCK Translation"
4183
+ msgstr "Sincronizar WCK Translation"
4184
+
4185
+ #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4186
+ msgid "You can add the information for the %s after you add a entry"
4187
+ msgstr "Usted puede adicionar la información para el %s luego de que adicione una entrada"
4188
+
4189
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4190
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4191
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4192
+ msgid "Upload "
4193
+ msgstr "Subir"
4194
+
4195
+ #: profile-builder-2.0/features/class-list-table.php:184
4196
+ msgid "No items found."
4197
+ msgstr "No se encontraron elementos."
4198
+
4199
+ #: profile-builder-2.0/features/class-list-table.php:308
4200
+ msgid "Bulk Actions"
4201
+ msgstr "Acciones en Bloque"
4202
+
4203
+ #: profile-builder-2.0/features/class-list-table.php:318
4204
+ msgid "Apply"
4205
+ msgstr "Aplicar"
4206
+
4207
+ #: profile-builder-2.0/features/class-list-table.php:402
4208
+ msgid "Show all dates"
4209
+ msgstr "Mostrar todas las fechas"
4210
+
4211
+ #: profile-builder-2.0/features/class-list-table.php:415
4212
+ msgid "%1$s %2$d"
4213
+ msgstr "%1$s %2$d"
4214
+
4215
+ #: profile-builder-2.0/features/class-list-table.php:431
4216
+ msgid "List View"
4217
+ msgstr "Vista de Lista"
4218
+
4219
+ #: profile-builder-2.0/features/class-list-table.php:432
4220
+ msgid "Excerpt View"
4221
+ msgstr "Vista de Extracto"
4222
+
4223
+ #: profile-builder-2.0/features/class-list-table.php:458
4224
+ msgid "%s pending"
4225
+ msgstr "%s pendiente"
4226
+
4227
+ #: profile-builder-2.0/features/class-list-table.php:566
4228
+ msgid "%1$s of %2$s"
4229
+ msgstr "%1$s de %2$s"
4230
+
4231
+ #: profile-builder-2.0/features/class-list-table.php:713
4232
+ msgid "Select All"
4233
+ msgstr "Seleccionar Todo"
4234
+
4235
+ #: profile-builder-2.0/features/functions.php:304
4236
+ msgid "The user-validation has failed - the avatar was not deleted!"
4237
+ msgstr "La validación del usuario ha fallado - ¡el avatar no fue eliminado!"
4238
+
4239
+ #: profile-builder-2.0/features/functions.php:315
4240
+ msgid "The user-validation has failed - the attachment was not deleted!"
4241
+ msgstr "La validación del usuario ha fallado - ¡el adjunto no fue eliminado!"
4242
+
4243
+ #: profile-builder-2.0/features/functions.php:554
4244
+ msgid "Strength indicator"
4245
+ msgstr "Indicador de Fortaleza"
4246
+
4247
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4248
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4249
+ msgid "Admin Approval"
4250
+ msgstr "Aprobación del Admin"
4251
+
4252
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4253
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4254
+ msgid "Do you want to"
4255
+ msgstr "¿Usted desea"
4256
+
4257
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4258
+ msgid "Your session has expired! Please refresh the page and try again"
4259
+ msgstr "¡Su sesión ha expirado! Por favor refresque la página y trate nuevamente"
4260
+
4261
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:62
4262
+ msgid "User successfully approved!"
4263
+ msgstr "¡Usuario aprobado satisfactoriamente!"
4264
+
4265
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:70
4266
+ msgid "User successfully unapproved!"
4267
+ msgstr "¡Usuario desaprobado satisfactoriamente!"
4268
+
4269
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:76
4270
+ msgid "User successfully deleted!"
4271
+ msgstr "¡Usuario eliminado satisfactoriamente!"
4272
+
4273
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:81
4274
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:125
4275
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:135
4276
+ msgid "You either don't have permission for that action or there was an error!"
4277
+ msgstr "¡Usted o no tiene permiso para esa acción o hubo un error"
4278
+
4279
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:92
4280
+ msgid "Your session has expired! Please refresh the page and try again."
4281
+ msgstr "¡Su sesión ha expirado! Por favor refresque la página e intente nuevamente."
4282
+
4283
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:104
4284
+ msgid "Users successfully approved!"
4285
+ msgstr "¡Usuario aprobado satisfactoriamente!"
4286
+
4287
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:113
4288
+ msgid "Users successfully unapproved!"
4289
+ msgstr "¡Usuario desaprobado satisfactoriamente!"
4290
+
4291
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:121
4292
+ msgid "Users successfully deleted!"
4293
+ msgstr "¡Usuario eliminado satisfactoriamente!"
4294
+
4295
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:141
4296
+ msgid "Your account on %1$s has been approved!"
4297
+ msgstr "¡Su cuenta el %1$s ha sido aprobada!"
4298
+
4299
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:142
4300
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:145
4301
+ msgid "approved"
4302
+ msgstr "aprobada"
4303
+
4304
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:144
4305
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
4306
+ msgstr "Un administrador ha aprobado su cuenta el %1$s (%2$s)."
4307
+
4308
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:149
4309
+ msgid "Your account on %1$s has been unapproved!"
4310
+ msgstr "¡Su cuenta ha sido desaprobada el %1$s!"
4311
+
4312
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4313
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:153
4314
+ msgid "unapproved"
4315
+ msgstr "desaprobado"
4316
+
4317
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:152
4318
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4319
+ msgstr "Un administrador ha desaprobado su cuenta el %1$s (%2$s)."
4320
+
4321
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:171
4322
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4323
+ msgstr "<strong>ERROR</strong>: Su cuenta tiene que ser confirmada por un administrador antes de que pueda autenticarse."
4324
+
4325
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:183
4326
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4327
+ msgstr "Su cuenta tiene que ser confirmada por un administrador antes de que pueda usar la característica \"Recuperar Contraseña\""
4328
+
4329
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4330
+ msgid "delete this user?"
4331
+ msgstr "¿eliminar este usuario?"
4332
+
4333
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4334
+ msgid "unapprove this user?"
4335
+ msgstr "¿desaprobar este usuario?"
4336
+
4337
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4338
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4339
+ msgid "Unapprove"
4340
+ msgstr "Desaprobar"
4341
+
4342
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4343
+ msgid "approve this user?"
4344
+ msgstr "¿Aprobar este usuario?"
4345
+
4346
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4347
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4348
+ msgid "Approve"
4349
+ msgstr "Aprobar"
4350
+
4351
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4352
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:269
4353
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:716
4354
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2103
4355
+ msgid "Firstname"
4356
+ msgstr "Primer Nombre"
4357
+
4358
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4359
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:719
4360
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2104
4361
+ msgid "Lastname"
4362
+ msgstr "Apellidos"
4363
+
4364
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4365
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:142
4366
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:270
4367
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:746
4368
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2108
4369
+ msgid "Role"
4370
+ msgstr "Rol"
4371
+
4372
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4373
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4374
+ msgid "Registered"
4375
+ msgstr "Registrado"
4376
+
4377
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4378
+ msgid "User-status"
4379
+ msgstr "Estado del usuario"
4380
+
4381
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4382
+ msgid "Do you want to bulk approve the selected users?"
4383
+ msgstr "¿Desea aprobar en bloque los usuarios seleccionados?"
4384
+
4385
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4386
+ msgid "Do you want to bulk unapprove the selected users?"
4387
+ msgstr "¿Desea desaprobar en bloque los usuarios seleccionados?"
4388
+
4389
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4390
+ msgid "Do you want to bulk delete the selected users?"
4391
+ msgstr "¿Desea eliminar en bloque los usuarios seleccionados?"
4392
+
4393
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4394
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4395
+ msgid "Sorry, but you don't have permission to do that!"
4396
+ msgstr "Disculpe, ¡pero no tiene permisos para hacer eso!"
4397
+
4398
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4399
+ msgid "Approved"
4400
+ msgstr "Aprobado"
4401
+
4402
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4403
+ msgid "Unapproved"
4404
+ msgstr "Desaprobado"
4405
+
4406
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4407
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4408
+ msgid "All Users"
4409
+ msgstr "Todos los Usuarios"
4410
+
4411
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4412
+ msgid "delete this user from the _signups table?"
4413
+ msgstr "¿eliminar este usuario de la tabla _signups?"
4414
+
4415
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4416
+ msgid "confirm this email yourself?"
4417
+ msgstr "¿confirmar este email usted mismo?"
4418
+
4419
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4420
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4421
+ msgid "Confirm Email"
4422
+ msgstr "Confirmar Email"
4423
+
4424
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4425
+ msgid "resend the activation link?"
4426
+ msgstr "¿reenviar el enlace de activación?"
4427
+
4428
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4429
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4430
+ msgid "Resend Activation Email"
4431
+ msgstr "Reenviar Email de Activación"
4432
+
4433
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4434
+ msgid "%s couldn't be deleted"
4435
+ msgstr "%s no pudo ser eliminado"
4436
+
4437
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4438
+ msgid "All users have been successfully deleted"
4439
+ msgstr "Todos los usuarios han sido eliminados satisfactoriamenet"
4440
+
4441
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4442
+ msgid "The selected users have been activated"
4443
+ msgstr "Los usuarios seleccionados han sido activados"
4444
+
4445
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4446
+ msgid "The selected users have had their activation emails resent"
4447
+ msgstr "Los usuarios seleccionados han tenido sus email de activación reenviados"
4448
+
4449
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4450
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4451
+ msgid "Users with Unconfirmed Email Address"
4452
+ msgstr "Usuarios con Direcciones de Email Sin Confirmar"
4453
+
4454
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:110
4455
+ msgid "There was an error performing that action!"
4456
+ msgstr "¡Hubo un error ejecutando esa acción!"
4457
+
4458
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:118
4459
+ msgid "The selected user couldn't be deleted"
4460
+ msgstr "El usuario seleccionado no pudo ser eliminado"
4461
+
4462
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:129
4463
+ msgid "Email notification resent to user"
4464
+ msgstr "Notificación de Email reenviada al usuario"
4465
+
4466
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:389
4467
+ msgid "[%1$s] Activate %2$s"
4468
+ msgstr "[%1$s] Activar %2$s"
4469
+
4470
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:433
4471
+ #: profile-builder-2.0/front-end/register.php:70
4472
+ msgid "Could not create user!"
4473
+ msgstr "¡No se pudo crear el usuario!"
4474
+
4475
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:436
4476
+ msgid "That username is already activated!"
4477
+ msgstr "¡Ese nombre de usuario ya está activado!"
4478
+
4479
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:459
4480
+ msgid "There was an error while trying to activate the user"
4481
+ msgstr "Hubo un error intentando activar el usuario"
4482
+
4483
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:507
4484
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4485
+ msgid "A new subscriber has (been) registered!"
4486
+ msgstr "¡Un nuevo suscriptor ha sido registrado!"
4487
+
4488
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:510
4489
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4490
+ msgstr "Nuevo suscriptor el %1$s.<br/><br/>Nombre de Usuario:%2$s<br/>E-mail:%3$s<br/>"
4491
+
4492
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:625
4493
+ 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!"
4494
+ 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!"
4495
+
4496
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:561
4497
+ msgid "[%1$s] Your new account information"
4498
+ msgstr "[%1$s] La información de su nueva cuenta"
4499
+
4500
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:572
4501
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4502
+ msgstr "¡Bienvenido a %1$s!<br/><br/><br/>Su nombre de usuario es:%2$s y contraseña:%3$s"
4503
+
4504
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:633
4505
+ #: profile-builder-2.0/front-end/register.php:130
4506
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4507
+ msgstr "Antes de que pueda acceder su cuenta, un administrador necesita aprobarla. Usted será notificado via email."
4508
+
4509
+ #: profile-builder-2.0/features/login-widget/login-widget.php:10
4510
+ msgid "This login widget lets you add a login form in the sidebar."
4511
+ msgstr "El widget de autenticación le permite añadir una forma de autenticación en la barra lateral."
4512
+
4513
+ #: profile-builder-2.0/features/login-widget/login-widget.php:15
4514
+ msgid "Profile Builder Login Widget"
4515
+ msgstr "Widget de Autenticación de Profile Builder"
4516
+
4517
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4518
+ #: profile-builder-2.0/front-end/class-formbuilder.php:420
4519
+ #: profile-builder-2.0/front-end/login.php:257
4520
+ msgid "Register"
4521
+ msgstr "Registrar"
4522
+
4523
+ #: profile-builder-2.0/features/login-widget/login-widget.php:63
4524
+ msgid "Title:"
4525
+ msgstr "Título:"
4526
+
4527
+ #: profile-builder-2.0/features/login-widget/login-widget.php:68
4528
+ msgid "After login redirect URL (optional):"
4529
+ msgstr "URL de redirección luego de autenticarse (opcional):"
4530
+
4531
+ #: profile-builder-2.0/features/login-widget/login-widget.php:73
4532
+ msgid "Register page URL (optional):"
4533
+ msgstr "URL de página de registro (opcional):"
4534
+
4535
+ #: profile-builder-2.0/features/login-widget/login-widget.php:78
4536
+ msgid "Password Recovery page URL (optional):"
4537
+ msgstr "URL de página de Recuperar Contraseña (opcional):"
4538
+
4539
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4540
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4541
+ msgid "The usernames cannot be changed."
4542
+ msgstr "Los nombres de usuario no pueden ser cambiados."
4543
+
4544
+ #: profile-builder-2.0/front-end/class-formbuilder.php:161
4545
+ msgid "Only an administrator can add new users."
4546
+ msgstr "Solamente un administrador puede adicionar nuevos usuarios."
4547
+
4548
+ #: profile-builder-2.0/front-end/class-formbuilder.php:171
4549
+ msgid "Users can register themselves or you can manually create users here."
4550
+ msgstr "Los usuarios pueden registrarse ellos mismos o usted puede manualmente crear usuarios aquí."
4551
+
4552
+ #: profile-builder-2.0/front-end/class-formbuilder.php:174
4553
+ msgid "Users cannot currently register themselves, but you can manually create users here."
4554
+ msgstr "Los usuarios no pueden registrarse ellos mismos actualmente, pero usted puede crear usuarios manualmente aquí."
4555
+
4556
+ #: profile-builder-2.0/front-end/class-formbuilder.php:196
4557
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
4558
+ msgstr "Usted está autenticado actualmente como %1s. Usted no necesita otra cuenta. %2s"
4559
+
4560
+ #: profile-builder-2.0/front-end/class-formbuilder.php:196
4561
+ msgid "Log out of this account."
4562
+ msgstr "Salir de esta cuenta."
4563
+
4564
+ #: profile-builder-2.0/front-end/class-formbuilder.php:196
4565
+ msgid "Logout"
4566
+ msgstr "Salir"
4567
+
4568
+ #: profile-builder-2.0/front-end/class-formbuilder.php:203
4569
+ msgid "You must be logged in to edit your profile."
4570
+ msgstr "Usted tiene que estar autenticado para editar su perfil."
4571
+
4572
+ #: profile-builder-2.0/front-end/class-formbuilder.php:230
4573
+ #: profile-builder-2.0/front-end/class-formbuilder.php:277
4574
+ msgid "here"
4575
+ msgstr "aquí"
4576
+
4577
+ #: profile-builder-2.0/front-end/class-formbuilder.php:232
4578
+ #: profile-builder-2.0/front-end/class-formbuilder.php:277
4579
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4580
+ 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"
4581
+
4582
+ #: profile-builder-2.0/front-end/class-formbuilder.php:330
4583
+ #: profile-builder-2.0/front-end/class-formbuilder.php:337
4584
+ msgid "The account %1s has been successfully created!"
4585
+ msgstr "¡La cuenta %1s ha sido creada satisfactoriamente!"
4586
+
4587
+ #: profile-builder-2.0/front-end/class-formbuilder.php:333
4588
+ #: profile-builder-2.0/front-end/class-formbuilder.php:343
4589
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4590
+ 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."
4591
+
4592
+ #: profile-builder-2.0/front-end/class-formbuilder.php:339
4593
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4594
+ msgstr "Antes de que pueda acceder a su cuenta %1s, un administrador tiene que aprobarla. Usted será notificado via email."
4595
+
4596
+ #: profile-builder-2.0/front-end/class-formbuilder.php:353
4597
+ msgid "Your profile has been successfully updated!"
4598
+ msgstr "¡Su perfil ha sido actualizado satisfactoriamente!"
4599
+
4600
+ #: profile-builder-2.0/front-end/class-formbuilder.php:363
4601
+ msgid "There was an error in the submitted form"
4602
+ msgstr "Hubo un error en la forma enviada"
4603
+
4604
+ #: profile-builder-2.0/front-end/class-formbuilder.php:420
4605
+ msgid "Add User"
4606
+ msgstr "Adicionar Usuario"
4607
+
4608
+ #: profile-builder-2.0/admin/add-ons.php:170
4609
+ #: profile-builder-2.0/front-end/class-formbuilder.php:423
4610
+ msgid "Update"
4611
+ msgstr "Actualizar"
4612
+
4613
+ #: profile-builder-2.0/front-end/class-formbuilder.php:482
4614
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:47
4615
+ msgid "The avatar was successfully deleted!"
4616
+ msgstr "¡El avatar ha sido eliminado satisfactoriamente!"
4617
+
4618
+ #: profile-builder-2.0/front-end/class-formbuilder.php:482
4619
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:49
4620
+ msgid "The following attachment was successfully deleted:"
4621
+ msgstr "El siguiente adjunto fue borrado satisfactoriamente:"
4622
+
4623
+ #: profile-builder-2.0/front-end/class-formbuilder.php:494
4624
+ msgid "Send these credentials via email."
4625
+ msgstr "Enviar estas credenciales via email."
4626
+
4627
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:111
4628
+ #: profile-builder-2.0/front-end/login.php:137
4629
+ #: profile-builder-2.0/front-end/login.php:144
4630
+ #: profile-builder-2.0/front-end/login.php:158
4631
+ #: profile-builder-2.0/front-end/recover.php:17
4632
+ #: profile-builder-2.0/front-end/recover.php:234
4633
+ msgid "ERROR"
4634
+ msgstr "ERROR"
4635
+
4636
+ #: profile-builder-2.0/front-end/login.php:137
4637
+ msgid "The password you entered is incorrect."
4638
+ msgstr "La contraseña que entró es incorrecta."
4639
+
4640
+ #: profile-builder-2.0/front-end/login.php:138
4641
+ #: profile-builder-2.0/front-end/login.php:145
4642
+ msgid "Password Lost and Found."
4643
+ msgstr "Perdido y Encontrado de Contraseña."
4644
+
4645
+ #: profile-builder-2.0/front-end/login.php:138
4646
+ #: profile-builder-2.0/front-end/login.php:145
4647
+ msgid "Lost your password"
4648
+ msgstr "Perdió su contraseña"
4649
+
4650
+ #: profile-builder-2.0/front-end/login.php:158
4651
+ msgid "Both fields are empty."
4652
+ msgstr "Ambos campos están vacíos."
4653
+
4654
+ #: profile-builder-2.0/front-end/login.php:308
4655
+ msgid "You are currently logged in as %1$s. %2$s"
4656
+ msgstr "Usted está autenticado actualmente como %1$s. %2$s"
4657
+
4658
+ #: profile-builder-2.0/front-end/login.php:307
4659
+ #: profile-builder-2.0/front-end/logout.php:29
4660
+ msgid "Log out of this account"
4661
+ msgstr "Salir de esta cuenta"
4662
+
4663
+ #: profile-builder-2.0/front-end/login.php:307
4664
+ msgid "Log out"
4665
+ msgstr "Salir"
4666
+
4667
+ #: profile-builder-2.0/front-end/recover.php:17
4668
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4669
+ msgstr "Su cuenta tiene que ser confirmada por un administrador antes de que pueda usar la característica \"Resetear Contraseña\"."
4670
+
4671
+ #: profile-builder-2.0/front-end/recover.php:94
4672
+ msgid "Reset Password"
4673
+ msgstr "Resetear Contraseña"
4674
+
4675
+ #: profile-builder-2.0/front-end/recover.php:114
4676
+ msgid "Please enter your username or email address."
4677
+ msgstr "Por favor entre su nombre de usuario o dirección de email."
4678
+
4679
+ #: profile-builder-2.0/front-end/recover.php:115
4680
+ msgid "You will receive a link to create a new password via email."
4681
+ msgstr "Usted recibirá un enlace para crear una nueva contraseña via email."
4682
+
4683
+ #: profile-builder-2.0/front-end/recover.php:120
4684
+ msgid "Username or E-mail"
4685
+ msgstr " Nombre de Usuario o E-mail"
4686
+
4687
+ #: profile-builder-2.0/front-end/recover.php:130
4688
+ msgid "Get New Password"
4689
+ msgstr "Obtener Nueva Contraseña"
4690
+
4691
+ #: profile-builder-2.0/front-end/recover.php:172
4692
+ msgid "The username entered wasn't found in the database!"
4693
+ msgstr "¡El nombre de usuario entrado no se encontró en la base de datos!"
4694
+
4695
+ #: profile-builder-2.0/front-end/recover.php:172
4696
+ msgid "Please check that you entered the correct username."
4697
+ msgstr "Por favor chequee que entró el nombre de usuario correcto."
4698
+
4699
+ #: profile-builder-2.0/front-end/recover.php:187
4700
+ msgid "Check your e-mail for the confirmation link."
4701
+ msgstr "Chequee su e-mail para el enlace de confirmación."
4702
+
4703
+ #: profile-builder-2.0/front-end/recover.php:222
4704
+ 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"
4705
+ 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"
4706
+
4707
+ #: profile-builder-2.0/front-end/recover.php:225
4708
+ msgid "Password Reset from \"%1$s\""
4709
+ msgstr "Reseteo de Contraseña desde \"%1$s\""
4710
+
4711
+ #: profile-builder-2.0/front-end/recover.php:234
4712
+ msgid "There was an error while trying to send the activation link to %1$s!"
4713
+ msgstr "¡Hubo un error mientras se intentaba enviar el enlace de activación a %1$s!"
4714
+
4715
+ #: profile-builder-2.0/front-end/recover.php:194
4716
+ msgid "The email address entered wasn't found in the database!"
4717
+ msgstr "¡La dirección de email entrada no se encontró en la base de datos!"
4718
+
4719
+ #: profile-builder-2.0/front-end/recover.php:194
4720
+ msgid "Please check that you entered the correct email address."
4721
+ msgstr "Por favor chequee que entró la dirección de email correcta."
4722
+
4723
+ #: profile-builder-2.0/front-end/recover.php:262
4724
+ msgid "Your password has been successfully changed!"
4725
+ msgstr "¡Su contraseña ha sido cambiada satisfactoriamente!"
4726
+
4727
+ #: profile-builder-2.0/front-end/recover.php:281
4728
+ msgid "You have successfully reset your password to: %1$s"
4729
+ msgstr "Usted ha reseteado satisfactoriamente su contraseña a: %1$s"
4730
+
4731
+ #: profile-builder-2.0/front-end/recover.php:284
4732
+ #: profile-builder-2.0/front-end/recover.php:298
4733
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
4734
+ msgstr "Contraseña Reseteada Satisfactoriamente para %1$s el \"%2$s\""
4735
+
4736
+ #: profile-builder-2.0/front-end/recover.php:295
4737
+ msgid "%1$s has re