myCRED - Version 1.7.5

Version Description

Bug fixes, query improvements, Coupon add-on updates and WP 4.7 comp.

=

Download this release

Release Info

Developer designbymerovingi
Plugin Icon 128x128 myCRED
Version 1.7.5
Comparing to
See all releases

Code changes from version 1.7.4 to 1.7.5

addons/buy-creds/modules/buycred-module-core.php CHANGED
@@ -683,70 +683,49 @@ jQuery(function($) {
683
  * Render the dedicated admin screen where all point purchases are shown from the myCRED Log.
684
  * This screen is added in for each point type that is set to be for sale.
685
  * @since 1.4
686
- * @version 1.4.1
687
  */
688
  public function purchase_log_page() {
689
 
690
- $type = str_replace( 'mycred-purchases-', '', $_GET['page'] );
691
- $installed = $this->get();
692
 
693
- if ( $type == MYCRED_DEFAULT_TYPE_KEY )
694
- $mycred = $this->core;
695
- else
696
- $mycred = mycred( $type );
697
 
698
  // Security (incase the user has setup different capabilities to manage this particular point type)
699
  if ( ! $mycred->can_edit_creds() ) wp_die( 'Access Denied' );
700
 
701
- $per_page = mycred_get_user_meta( $this->current_user_id, 'mycred_payments_' . $type, '', true );
 
 
702
  if ( empty( $per_page ) || $per_page < 1 ) $per_page = 10;
703
 
 
 
 
 
704
  // Get references
705
- $references = apply_filters( 'mycred_buycred_log_refs', array(
706
  'buy_creds_with_paypal_standard',
707
  'buy_creds_with_skrill',
708
  'buy_creds_with_zombaio',
709
  'buy_creds_with_netbilling',
710
- 'buy_creds_with_bitpay'
711
- ), $this, $type );
712
-
713
- // Prep
714
- $args = array(
715
- 'number' => $per_page,
716
- 'ctype' => $type,
717
- 'ref' => implode( ',', $references )
718
- );
719
-
720
- if ( isset( $_GET['user_id'] ) && ! empty( $_GET['user_id'] ) )
721
- $args['user_id'] = $_GET['user_id'];
722
 
723
- if ( isset( $_GET['s'] ) && ! empty( $_GET['s'] ) )
724
- $args['s'] = $_GET['s'];
725
 
726
- if ( isset( $_GET['ref'] ) && ! empty( $_GET['ref'] ) )
727
- $args['ref'] = $_GET['ref'];
728
-
729
- if ( isset( $_GET['show'] ) && ! empty( $_GET['show'] ) )
730
- $args['time'] = $_GET['show'];
731
-
732
- if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
733
- $args['order'] = $_GET['order'];
734
-
735
- if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) )
736
- $args['paged'] = $_GET['paged'];
737
-
738
- if ( isset( $_GET['start'] ) && isset( $_GET['end'] ) )
739
- $args['amount'] = array( 'start' => $_GET['start'], 'end' => $_GET['end'] );
740
-
741
- elseif ( isset( $_GET['num'] ) && isset( $_GET['compare'] ) )
742
- $args['amount'] = array( 'num' => $_GET['num'], 'compare' => $_GET['compare'] );
743
-
744
- elseif ( isset( $_GET['amount'] ) )
745
- $args['amount'] = $_GET['amount'];
746
 
747
- $log = new myCRED_Query_Log( $args );
748
 
749
- $log->headers = apply_filters( 'mycred_buycred_log_columns', array(
750
  'column-gateway' => __( 'Gateway', 'mycred' ),
751
  'column-username' => __( 'Buyer', 'mycred' ),
752
  'column-date' => __( 'Date', 'mycred' ),
@@ -755,7 +734,7 @@ jQuery(function($) {
755
  'column-tranid' => __( 'Transaction ID', 'mycred' )
756
  ) );
757
 
758
- $filter_url = admin_url( 'admin.php?page=' . MYCRED_SLUG . '-purchases-' . $type );
759
 
760
  ?>
761
  <div class="wrap list" id="myCRED-wrap">
@@ -763,32 +742,28 @@ jQuery(function($) {
763
 
764
  <?php $log->filter_dates( esc_url( $filter_url ) ); ?>
765
 
766
- <div class="clear"></div>
767
- <form method="get" action="">
768
  <?php
769
 
770
- if ( isset( $_GET['user_id'] ) && ! empty( $_GET['user_id'] ) )
771
- echo '<input type="hidden" name="user_id" value="' . esc_attr( $_GET['user_id'] ) . '" />';
772
-
773
- if ( isset( $_GET['s'] ) && ! empty( $_GET['s'] ) )
774
- echo '<input type="hidden" name="s" value="' . esc_attr( $_GET['s'] ) . '" />';
775
 
776
- if ( isset( $_GET['ref'] ) && ! empty( $_GET['ref'] ) )
777
- echo '<input type="hidden" name="ref" value="' . esc_attr( $_GET['ref'] ) . '" />';
778
 
779
- if ( isset( $_GET['show'] ) && ! empty( $_GET['show'] ) )
780
  echo '<input type="hidden" name="show" value="' . esc_attr( $_GET['show'] ) . '" />';
781
 
782
- if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
783
- echo '<input type="hidden" name="order" value="' . esc_attr( $_GET['order'] ) . '" />';
784
 
785
- if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) )
786
- echo '<input type="hidden" name="paged" value="' . esc_attr( $_GET['paged'] ) . '" />';
787
 
788
  $log->search();
789
 
790
  ?>
791
- <input type="hidden" name="page" value="<?php echo esc_attr( $_GET['page'] ); ?>" />
792
 
793
  <?php do_action( 'mycred_above_payment_log_table', $this ); ?>
794
 
@@ -1420,7 +1395,7 @@ jQuery(function($) {
1420
 
1421
  ?>
1422
  <div class="row">
1423
- <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
1424
  <form method="post" class="form<?php if ( $inline == 1 ) echo '-inline'; ?> <?php echo implode( ' ', $classes ); ?>" action="">
1425
  <input type="hidden" name="token" value="<?php echo wp_create_nonce( 'mycred-buy-creds' ); ?>" />
1426
  <input type="hidden" name="transaction_id" value="<?php echo strtoupper( wp_generate_password( 6, false, false ) ); ?>" />
@@ -1573,5 +1548,3 @@ if ( ! function_exists( 'mycred_load_buycred_core_addon' ) ) :
1573
  }
1574
  endif;
1575
  add_filter( 'mycred_load_modules', 'mycred_load_buycred_core_addon', 30, 2 );
1576
-
1577
- ?>
683
  * Render the dedicated admin screen where all point purchases are shown from the myCRED Log.
684
  * This screen is added in for each point type that is set to be for sale.
685
  * @since 1.4
686
+ * @version 1.4.2
687
  */
688
  public function purchase_log_page() {
689
 
690
+ $point_type = str_replace( 'mycred-purchases-', '', $_GET['page'] );
691
+ $installed = $this->get();
692
 
693
+ $mycred = $this->core;
694
+ if ( $point_type != MYCRED_DEFAULT_TYPE_KEY && mycred_point_type_exists( $point_type ) )
695
+ $mycred = mycred( $point_type );
 
696
 
697
  // Security (incase the user has setup different capabilities to manage this particular point type)
698
  if ( ! $mycred->can_edit_creds() ) wp_die( 'Access Denied' );
699
 
700
+ $search_args = mycred_get_search_args();
701
+
702
+ $per_page = mycred_get_user_meta( $this->current_user_id, 'mycred_payments_' . $point_type, '', true );
703
  if ( empty( $per_page ) || $per_page < 1 ) $per_page = 10;
704
 
705
+ // Entries per page
706
+ if ( ! array_key_exists( 'number', $search_args ) )
707
+ $search_args['number'] = absint( $per_page );
708
+
709
  // Get references
710
+ $references = apply_filters( 'mycred_buycred_log_refs', array(
711
  'buy_creds_with_paypal_standard',
712
  'buy_creds_with_skrill',
713
  'buy_creds_with_zombaio',
714
  'buy_creds_with_netbilling',
715
+ 'buy_creds_with_bitpay',
716
+ 'buy_creds_with_bank'
717
+ ), $this, $point_type );
 
 
 
 
 
 
 
 
 
718
 
719
+ $search_args['ctype'] = $point_type;
 
720
 
721
+ $search_args['ref'] = array(
722
+ 'ids' => $references,
723
+ 'compare' => 'IN'
724
+ );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
725
 
726
+ $log = new myCRED_Query_Log( $search_args );
727
 
728
+ $log->headers = apply_filters( 'mycred_buycred_log_columns', array(
729
  'column-gateway' => __( 'Gateway', 'mycred' ),
730
  'column-username' => __( 'Buyer', 'mycred' ),
731
  'column-date' => __( 'Date', 'mycred' ),
734
  'column-tranid' => __( 'Transaction ID', 'mycred' )
735
  ) );
736
 
737
+ $filter_url = admin_url( 'admin.php?page=' . MYCRED_SLUG . '-purchases-' . $point_type );
738
 
739
  ?>
740
  <div class="wrap list" id="myCRED-wrap">
742
 
743
  <?php $log->filter_dates( esc_url( $filter_url ) ); ?>
744
 
745
+ <form method="get" action="" name="mycred-buycred-form" novalidate>
746
+ <input type="hidden" name="page" value="<?php echo esc_attr( $_GET['page'] ); ?>" />
747
  <?php
748
 
749
+ if ( array_key_exists( 's', $search_args ) )
750
+ echo '<input type="hidden" name="s" value="' . esc_attr( $search_args['s'] ) . '" />';
 
 
 
751
 
752
+ if ( isset( $_GET['ref'] ) )
753
+ echo '<input type="hidden" name="show" value="' . esc_attr( $_GET['ref'] ) . '" />';
754
 
755
+ if ( isset( $_GET['show'] ) )
756
  echo '<input type="hidden" name="show" value="' . esc_attr( $_GET['show'] ) . '" />';
757
 
758
+ if ( array_key_exists( 'order', $search_args ) )
759
+ echo '<input type="hidden" name="order" value="' . esc_attr( $search_args['order'] ) . '" />';
760
 
761
+ if ( array_key_exists( 'paged', $search_args ) )
762
+ echo '<input type="hidden" name="paged" value="' . esc_attr( $search_args['paged'] ) . '" />';
763
 
764
  $log->search();
765
 
766
  ?>
 
767
 
768
  <?php do_action( 'mycred_above_payment_log_table', $this ); ?>
769
 
1395
 
1396
  ?>
1397
  <div class="row">
1398
+ <div class="col-xs-12">
1399
  <form method="post" class="form<?php if ( $inline == 1 ) echo '-inline'; ?> <?php echo implode( ' ', $classes ); ?>" action="">
1400
  <input type="hidden" name="token" value="<?php echo wp_create_nonce( 'mycred-buy-creds' ); ?>" />
1401
  <input type="hidden" name="transaction_id" value="<?php echo strtoupper( wp_generate_password( 6, false, false ) ); ?>" />
1548
  }
1549
  endif;
1550
  add_filter( 'mycred_load_modules', 'mycred_load_buycred_core_addon', 30, 2 );
 
 
addons/buy-creds/modules/buycred-module-pending.php CHANGED
@@ -397,7 +397,7 @@ if ( ! class_exists( 'buyCRED_Pending_Payments' ) ) :
397
  /**
398
  * Edit Pending Payment Style
399
  * @since 1.7
400
- * @version 1.0
401
  */
402
  public function edit_pending_payment_style() {
403
 
@@ -415,8 +415,10 @@ if ( ! class_exists( 'buyCRED_Pending_Payments' ) ) :
415
  <script type="text/javascript">
416
  jQuery(function($){
417
 
418
- $( 'h1 .page-title-action' ).remove();
419
- $( '#titlewrap #title' ).attr( 'readonly', 'readonly' ).addClass( 'readonly' );
 
 
420
 
421
  });
422
  </script>
@@ -427,7 +429,7 @@ jQuery(function($){
427
  /**
428
  * Pending Payment Style
429
  * @since 1.7
430
- * @version 1.0
431
  */
432
  public function pending_payments_style() {
433
 
@@ -439,7 +441,9 @@ jQuery(function($){
439
  <script type="text/javascript">
440
  jQuery(function($){
441
 
442
- $( 'h1 .page-title-action' ).remove();
 
 
443
 
444
  });
445
  </script>
@@ -494,7 +498,7 @@ jQuery(function($){
494
  <div><a href="<?php echo $payout_url; ?>" class="button button-secondary button-block"><?php _e( 'Pay Out', 'mycred' ); ?></a></div>
495
  <div><a href="<?php echo $delete_url; ?>" class="button button-secondary button-block"><?php _e( 'Trash', 'mycred' ); ?></a></div>
496
 
497
- </div><!-- #minor-publishing-actions -->
498
 
499
  <div class="clear"></div>
500
  </div>
@@ -516,16 +520,16 @@ jQuery(function($){
516
  /**
517
  * Metabox: Pending Payment
518
  * @since 1.7
519
- * @version 1.0
520
  */
521
  public function metabox_pending_payment( $post ) {
522
 
523
  global $mycred_modules;
524
 
525
  $pending_payment = buycred_get_pending_payment( $post->ID );
 
526
 
527
- $buyer_name = 'ID: ' . $pending_payment->buyer_id;
528
- $buyer_object = get_userdata( $pending_payment->buyer_id );
529
  if ( isset( $buyer_object->ID ) ) {
530
  $buyer_name = $buyer_object->display_name;
531
  if ( $buyer_name == '' )
@@ -554,13 +558,13 @@ jQuery(function($){
554
  ?>
555
  <div class="form">
556
  <div class="row">
557
- <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
558
  <div class="form-group">
559
  <label><?php _e( 'Payer', 'mycred' ); ?></label>
560
  <p class="form-control-static"><?php echo esc_attr( $buyer_name ); ?></p>
561
  </div>
562
  </div>
563
- <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
564
  <div class="form-group">
565
  <label><?php _e( 'Recipient', 'mycred' ); ?></label>
566
  <p class="form-control-static"><?php echo esc_attr( $recipient_name ); ?></p>
@@ -568,7 +572,7 @@ jQuery(function($){
568
  </div>
569
  </div>
570
  <div class="row">
571
- <div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
572
  <div class="form-group">
573
  <label for="buycred-pending-payment-point_type"><?php _e( 'Point Type', 'mycred' ); ?></label>
574
  <?php
@@ -607,7 +611,7 @@ jQuery(function($){
607
  ?>
608
  </div>
609
  </div>
610
- <div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
611
  <div class="form-group">
612
  <label for="buycred-pending-payment-gateway"><?php _e( 'Gateway', 'mycred' ); ?></label>
613
  <select name="buycred_pending_payment[gateway]" id="buycred-pending-payment-gateway" class="form-control">
@@ -626,19 +630,19 @@ jQuery(function($){
626
  </select>
627
  </div>
628
  </div>
629
- <div class="col-lg-2 col-md-2 col-sm-6 col-xs-12">
630
  <div class="form-group">
631
  <label for="buycred-pending-payment-amount"><?php _e( 'Amount', 'mycred' ); ?></label>
632
  <input type="text" name="buycred_pending_payment[amount]" id="buycred-pending-payment-amount" class="form-control" value="<?php echo $mycred->number( $pending_payment->amount ); ?>" />
633
  </div>
634
  </div>
635
- <div class="col-lg-2 col-md-2 col-sm-6 col-xs-12">
636
  <div class="form-group">
637
  <label for="buycred-pending-payment-cost"><?php _e( 'Cost', 'mycred' ); ?></label>
638
  <input type="text" name="buycred_pending_payment[cost]" id="buycred-pending-payment-cost" class="form-control" value="<?php echo esc_attr( $pending_payment->cost ); ?>" />
639
  </div>
640
  </div>
641
- <div class="col-lg-2 col-md-2 col-sm-6 col-xs-12">
642
  <div class="form-group">
643
  <label for="buycred-pending-payment-currency"><?php _e( 'Currency', 'mycred' ); ?></label>
644
  <input type="text" name="buycred_pending_payment[currency]" id="buycred-pending-payment-currency" class="form-control" value="<?php echo esc_attr( $pending_payment->currency ); ?>" />
@@ -849,5 +853,3 @@ if ( ! function_exists( 'mycred_load_buycred_pending_addon' ) ) :
849
  }
850
  endif;
851
  add_filter( 'mycred_load_modules', 'mycred_load_buycred_pending_addon', 40, 2 );
852
-
853
- ?>
397
  /**
398
  * Edit Pending Payment Style
399
  * @since 1.7
400
+ * @version 1.0.1
401
  */
402
  public function edit_pending_payment_style() {
403
 
415
  <script type="text/javascript">
416
  jQuery(function($){
417
 
418
+ $(document).ready(function(){
419
+ $( 'h1 .page-title-action, .wrap .page-title-action' ).remove();
420
+ $( '#titlewrap #title' ).attr( 'readonly', 'readonly' ).addClass( 'readonly' );
421
+ });
422
 
423
  });
424
  </script>
429
  /**
430
  * Pending Payment Style
431
  * @since 1.7
432
+ * @version 1.0.1
433
  */
434
  public function pending_payments_style() {
435
 
441
  <script type="text/javascript">
442
  jQuery(function($){
443
 
444
+ $(document).ready(function(){
445
+ $( 'h1 .page-title-action, .wrap .page-title-action' ).remove();
446
+ });
447
 
448
  });
449
  </script>
498
  <div><a href="<?php echo $payout_url; ?>" class="button button-secondary button-block"><?php _e( 'Pay Out', 'mycred' ); ?></a></div>
499
  <div><a href="<?php echo $delete_url; ?>" class="button button-secondary button-block"><?php _e( 'Trash', 'mycred' ); ?></a></div>
500
 
501
+ </div>
502
 
503
  <div class="clear"></div>
504
  </div>
520
  /**
521
  * Metabox: Pending Payment
522
  * @since 1.7
523
+ * @version 1.0.1
524
  */
525
  public function metabox_pending_payment( $post ) {
526
 
527
  global $mycred_modules;
528
 
529
  $pending_payment = buycred_get_pending_payment( $post->ID );
530
+ $buyer_name = 'ID: ' . $pending_payment->buyer_id;
531
 
532
+ $buyer_object = get_userdata( $pending_payment->buyer_id );
 
533
  if ( isset( $buyer_object->ID ) ) {
534
  $buyer_name = $buyer_object->display_name;
535
  if ( $buyer_name == '' )
558
  ?>
559
  <div class="form">
560
  <div class="row">
561
+ <div class="col-md-6">
562
  <div class="form-group">
563
  <label><?php _e( 'Payer', 'mycred' ); ?></label>
564
  <p class="form-control-static"><?php echo esc_attr( $buyer_name ); ?></p>
565
  </div>
566
  </div>
567
+ <div class="col-md-6">
568
  <div class="form-group">
569
  <label><?php _e( 'Recipient', 'mycred' ); ?></label>
570
  <p class="form-control-static"><?php echo esc_attr( $recipient_name ); ?></p>
572
  </div>
573
  </div>
574
  <div class="row">
575
+ <div class="col-md-3 col-sm-6">
576
  <div class="form-group">
577
  <label for="buycred-pending-payment-point_type"><?php _e( 'Point Type', 'mycred' ); ?></label>
578
  <?php
611
  ?>
612
  </div>
613
  </div>
614
+ <div class="col-md-3 col-sm-6">
615
  <div class="form-group">
616
  <label for="buycred-pending-payment-gateway"><?php _e( 'Gateway', 'mycred' ); ?></label>
617
  <select name="buycred_pending_payment[gateway]" id="buycred-pending-payment-gateway" class="form-control">
630
  </select>
631
  </div>
632
  </div>
633
+ <div class="col-md-2 col-sm-6">
634
  <div class="form-group">
635
  <label for="buycred-pending-payment-amount"><?php _e( 'Amount', 'mycred' ); ?></label>
636
  <input type="text" name="buycred_pending_payment[amount]" id="buycred-pending-payment-amount" class="form-control" value="<?php echo $mycred->number( $pending_payment->amount ); ?>" />
637
  </div>
638
  </div>
639
+ <div class="col-md-2 col-sm-6">
640
  <div class="form-group">
641
  <label for="buycred-pending-payment-cost"><?php _e( 'Cost', 'mycred' ); ?></label>
642
  <input type="text" name="buycred_pending_payment[cost]" id="buycred-pending-payment-cost" class="form-control" value="<?php echo esc_attr( $pending_payment->cost ); ?>" />
643
  </div>
644
  </div>
645
+ <div class="col-md-2 col-sm-6">
646
  <div class="form-group">
647
  <label for="buycred-pending-payment-currency"><?php _e( 'Currency', 'mycred' ); ?></label>
648
  <input type="text" name="buycred_pending_payment[currency]" id="buycred-pending-payment-currency" class="form-control" value="<?php echo esc_attr( $pending_payment->currency ); ?>" />
853
  }
854
  endif;
855
  add_filter( 'mycred_load_modules', 'mycred_load_buycred_pending_addon', 40, 2 );
 
 
addons/coupons/includes/mycred-coupon-functions.php CHANGED
@@ -23,7 +23,6 @@ if ( ! function_exists( 'mycred_get_coupon' ) ) :
23
  $coupon->requires_min_type = $coupon->requires_min['type'];
24
  $coupon->requires_max = mycred_get_coupon_max_balance( $coupon_post_id );
25
  $coupon->requires_max_type = $coupon->requires_max['type'];
26
- $coupon->expires = mycred_get_coupon_expire_date( $coupon_post_id );
27
  $coupon->used = mycred_get_global_coupon_count( $coupon_post_id );
28
 
29
  if ( ! mycred_point_type_exists( $coupon->point_type ) )
@@ -35,6 +34,27 @@ if ( ! function_exists( 'mycred_get_coupon' ) ) :
35
  if ( ! mycred_point_type_exists( $coupon->requires_max_type ) )
36
  $coupon->requires_max_type = MYCRED_DEFAULT_TYPE_KEY;
37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  return apply_filters( 'mycred_get_coupon', $coupon, $coupon_post_id );
39
 
40
  }
@@ -58,17 +78,19 @@ endif;
58
  * Get Coupon Expire Date
59
  * @filter mycred_coupon_max_balance
60
  * @since 1.4
61
- * @version 1.0
62
  */
63
  if ( ! function_exists( 'mycred_get_coupon_expire_date' ) ) :
64
  function mycred_get_coupon_expire_date( $post_id = 0, $unix = false ) {
65
 
66
- $date = get_post_meta( $post_id, 'expires', true );
67
 
68
- if ( ! empty( $date ) && $unix )
69
- $date = strtotime( $date );
70
 
71
- return apply_filters( 'mycred_coupon_expires', $date, $post_id, $unix );
 
 
72
 
73
  }
74
  endif;
@@ -78,12 +100,12 @@ endif;
78
  * The maximum number a user can use this coupon.
79
  * @filter mycred_coupon_user_max
80
  * @since 1.4
81
- * @version 1.0
82
  */
83
  if ( ! function_exists( 'mycred_get_coupon_user_max' ) ) :
84
  function mycred_get_coupon_user_max( $post_id = 0 ) {
85
 
86
- return apply_filters( 'mycred_coupon_user_max', get_post_meta( $post_id, 'user', true ), $post_id );
87
 
88
  }
89
  endif;
@@ -92,12 +114,12 @@ endif;
92
  * Get Coupons Global Max
93
  * @filter mycred_coupon_global_max
94
  * @since 1.4
95
- * @version 1.0
96
  */
97
  if ( ! function_exists( 'mycred_get_coupon_global_max' ) ) :
98
  function mycred_get_coupon_global_max( $post_id = 0 ) {
99
 
100
- return apply_filters( 'mycred_coupon_global_max', get_post_meta( $post_id, 'global', true ), $post_id );
101
 
102
  }
103
  endif;
@@ -208,36 +230,36 @@ endif;
208
  * to a given user. Requires you to provide a log entry template.
209
  * @action mycred_use_coupon
210
  * @since 1.4
211
- * @version 1.1
212
  */
213
  if ( ! function_exists( 'mycred_use_coupon' ) ) :
214
  function mycred_use_coupon( $code = '', $user_id = 0 ) {
215
 
216
  // Missing required information
217
- if ( empty( $code ) || $user_id === 0 ) return 'missing';
218
 
219
- $can_use = true;
220
 
221
  // Get coupon by code (post title)
222
- $coupon = mycred_get_coupon_post( $code );
 
 
 
 
223
 
224
  // Coupon does not exist
225
- if ( $coupon === NULL )
226
- return 'missing';
 
227
 
228
  // Check Expiration
229
- $now = current_time( 'timestamp' );
230
- $expires = mycred_get_coupon_expire_date( $coupon->ID, true );
231
- if ( ! empty( $expires ) && $expires !== 0 && $expires <= $now )
232
  $can_use = 'expired';
233
 
234
  // Get Global Count
235
  if ( $can_use === true ) {
236
 
237
- $global_count = mycred_get_global_coupon_count( $coupon->ID );
238
- $global_max = mycred_get_coupon_global_max( $coupon->ID );
239
-
240
- if ( $global_count >= $global_max )
241
  $can_use = 'expired';
242
 
243
  }
@@ -245,104 +267,90 @@ if ( ! function_exists( 'mycred_use_coupon' ) ) :
245
  // Get User max
246
  if ( $can_use === true ) {
247
 
248
- $user_count = mycred_get_users_coupon_count( $code, $user_id );
249
- $user_max = mycred_get_coupon_user_max( $coupon->ID );
250
-
251
- if ( $user_count >= $user_max )
252
- $can_use = 'max';
253
 
254
  }
255
 
256
- $type = get_post_meta( $coupon->ID, 'type', true );
257
- if ( $type == '' )
258
- $type = MYCRED_DEFAULT_TYPE_KEY;
259
 
260
- $mycred = mycred( $type );
261
 
262
  if ( $can_use === true ) {
263
 
264
  // Min balance requirement
265
- $users_balance = $mycred->get_users_balance( $user_id, $type );
266
- $min_balance = mycred_get_coupon_min_balance( $coupon->ID );
267
-
268
- if ( $min_balance['type'] != $type ) {
269
 
270
- $mycred = mycred( $min_balance['type'] );
271
- $users_balance = $mycred->get_users_balance( $user_id, $min_balance['type'] );
272
 
273
  }
274
 
275
- if ( $mycred->number( $min_balance['value'] ) > $mycred->zero() && $users_balance < $mycred->number( $min_balance['value'] ) )
276
- $can_use = 'min_balance';
277
 
278
  // Max balance requirement
279
  if ( $can_use === true ) {
280
 
281
- $max_balance = mycred_get_coupon_max_balance( $coupon->ID );
282
 
283
- if ( $max_balance['type'] != $type ) {
284
-
285
- $mycred = mycred( $max_balance['type'] );
286
- $users_balance = $mycred->get_users_balance( $user_id, $max_balance['type'] );
287
 
288
  }
289
 
290
- if ( $mycred->number( $max_balance['value'] ) > $mycred->zero() && $users_balance >= $mycred->number( $max_balance['value'] ) )
291
- $can_use = 'max_balance';
292
 
293
  }
294
 
295
  }
296
 
297
  // Let other play and change the value of $can_use
298
- $can_use = apply_filters( 'mycred_can_use_coupon', $can_use, $code, $user_id, $coupon );
299
 
300
  // Ready to use coupon!
301
  if ( $can_use === true ) {
302
 
303
- $mycred = mycred( $type );
304
-
305
- $value = mycred_get_coupon_value( $coupon->ID );
306
- $value = $mycred->number( $value );
307
-
308
  // Get Coupon log template
309
  if ( ! isset( $mycred->core['coupons']['log'] ) )
310
- $mycred->core['coupons']['log'] = 'Coupon redemption';
311
 
312
  // Apply Coupon
313
  $mycred->add_creds(
314
  'coupon',
315
  $user_id,
316
- $value,
317
  $mycred->core['coupons']['log'],
318
- $coupon->ID,
319
- $code,
320
- $type
321
  );
322
 
323
  do_action( 'mycred_use_coupon', $user_id, $coupon );
324
 
325
  // Increment global counter
326
- $global_count ++;
327
- update_post_meta( $coupon->ID, 'global_count', $global_count );
328
 
329
  // If the updated counter reaches the max, trash the coupon now
330
- if ( $global_count >= $global_max )
331
- wp_trash_post( $coupon->ID );
332
 
333
  // This should resolves issues where caching prevents the new global count from being loaded.
334
  else {
335
- clean_post_cache( $coupon->ID );
336
  }
337
 
338
- return $mycred->number( $users_balance+$value );
339
 
340
  }
341
 
342
  // Trash expired coupons to preent further usage
343
  elseif ( $can_use == 'expired' ) {
344
 
345
- wp_trash_post( $coupon->ID );
346
 
347
  }
348
 
@@ -351,6 +359,65 @@ if ( ! function_exists( 'mycred_use_coupon' ) ) :
351
  }
352
  endif;
353
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
  /**
355
  * Get Users Coupon Count
356
  * Counts the number of times a user has used a given coupon.
@@ -380,17 +447,21 @@ endif;
380
  * Get Coupons Global Count
381
  * @filter mycred_get_global_coupon_count
382
  * @since 1.4
383
- * @version 1.1
384
  */
385
  if ( ! function_exists( 'mycred_get_global_coupon_count' ) ) :
386
  function mycred_get_global_coupon_count( $post_id = 0 ) {
387
 
388
  global $wpdb, $mycred;
389
 
 
 
 
 
390
  $count = $wpdb->get_var( $wpdb->prepare( "
391
  SELECT COUNT(*)
392
  FROM {$mycred->log_table}
393
- WHERE ref = 'coupon' AND ref_id = %d;", $post_id ) );
394
 
395
  if ( $count === NULL ) $count = 0;
396
 
@@ -403,7 +474,7 @@ endif;
403
  * Get Coupons Minimum Balance Requirement
404
  * @filter mycred_coupon_min_balance
405
  * @since 1.4
406
- * @version 1.1
407
  */
408
  if ( ! function_exists( 'mycred_get_coupon_min_balance' ) ) :
409
  function mycred_get_coupon_min_balance( $post_id = 0 ) {
@@ -412,7 +483,7 @@ if ( ! function_exists( 'mycred_get_coupon_min_balance' ) ) :
412
  if ( ! mycred_point_type_exists( $type ) ) $type = MYCRED_DEFAULT_TYPE_KEY;
413
 
414
  $min = get_post_meta( $post_id, 'min_balance', true );
415
- if ( $min == '' ) $min == 0;
416
 
417
  return apply_filters( 'mycred_coupon_min_balance', array(
418
  'type' => $type,
@@ -426,7 +497,7 @@ endif;
426
  * Get Coupons Maximum Balance Requirement
427
  * @filter mycred_coupon_max_balance
428
  * @since 1.4
429
- * @version 1.1
430
  */
431
  if ( ! function_exists( 'mycred_get_coupon_max_balance' ) ) :
432
  function mycred_get_coupon_max_balance( $post_id = 0 ) {
@@ -435,7 +506,7 @@ if ( ! function_exists( 'mycred_get_coupon_max_balance' ) ) :
435
  if ( ! mycred_point_type_exists( $type ) ) $type = MYCRED_DEFAULT_TYPE_KEY;
436
 
437
  $max = get_post_meta( $post_id, 'max_balance', true );
438
- if ( $max == '' ) $max == 0;
439
 
440
  return apply_filters( 'mycred_coupon_max_balance', array(
441
  'type' => $type,
@@ -444,4 +515,3 @@ if ( ! function_exists( 'mycred_get_coupon_max_balance' ) ) :
444
 
445
  }
446
  endif;
447
- ?>
23
  $coupon->requires_min_type = $coupon->requires_min['type'];
24
  $coupon->requires_max = mycred_get_coupon_max_balance( $coupon_post_id );
25
  $coupon->requires_max_type = $coupon->requires_max['type'];
 
26
  $coupon->used = mycred_get_global_coupon_count( $coupon_post_id );
27
 
28
  if ( ! mycred_point_type_exists( $coupon->point_type ) )
34
  if ( ! mycred_point_type_exists( $coupon->requires_max_type ) )
35
  $coupon->requires_max_type = MYCRED_DEFAULT_TYPE_KEY;
36
 
37
+ $coupon->expires = mycred_get_coupon_expire_date( $coupon_post_id );
38
+ $coupon->expires_unix = false;
39
+
40
+ // If there is an expiration date
41
+ if ( $coupon->expires !== false ) {
42
+
43
+ $coupon->expires_unix = ( strtotime( $coupon->expires . ' midnight' ) + ( DAY_IN_SECONDS - 1 ) );
44
+
45
+ // Ill formatted expiration date. Not using a format strtotime() understands
46
+ // Prevent expiration and warn user when editing the coupon
47
+ if ( $coupon->expires_unix <= 0 || $coupon->expires_unix === false ) {
48
+
49
+ $coupon->expires = false;
50
+
51
+ update_post_meta( $coupon_post_id, '_warning_bad_expiration', $coupon->expires );
52
+ delete_post_meta( $coupon_post_id, 'expires' );
53
+
54
+ }
55
+
56
+ }
57
+
58
  return apply_filters( 'mycred_get_coupon', $coupon, $coupon_post_id );
59
 
60
  }
78
  * Get Coupon Expire Date
79
  * @filter mycred_coupon_max_balance
80
  * @since 1.4
81
+ * @version 1.0.1
82
  */
83
  if ( ! function_exists( 'mycred_get_coupon_expire_date' ) ) :
84
  function mycred_get_coupon_expire_date( $post_id = 0, $unix = false ) {
85
 
86
+ $expires = get_post_meta( $post_id, 'expires', true );
87
 
88
+ if ( ! empty( $expires ) && $unix )
89
+ $expires = ( strtotime( $expires . ' midnight' ) + ( DAY_IN_SECONDS - 1 ) );
90
 
91
+ if ( empty( $expires ) ) $expires = false;
92
+
93
+ return apply_filters( 'mycred_coupon_expires', $expires, $post_id, $unix );
94
 
95
  }
96
  endif;
100
  * The maximum number a user can use this coupon.
101
  * @filter mycred_coupon_user_max
102
  * @since 1.4
103
+ * @version 1.0.1
104
  */
105
  if ( ! function_exists( 'mycred_get_coupon_user_max' ) ) :
106
  function mycred_get_coupon_user_max( $post_id = 0 ) {
107
 
108
+ return (int) apply_filters( 'mycred_coupon_user_max', get_post_meta( $post_id, 'user', true ), $post_id );
109
 
110
  }
111
  endif;
114
  * Get Coupons Global Max
115
  * @filter mycred_coupon_global_max
116
  * @since 1.4
117
+ * @version 1.0.1
118
  */
119
  if ( ! function_exists( 'mycred_get_coupon_global_max' ) ) :
120
  function mycred_get_coupon_global_max( $post_id = 0 ) {
121
 
122
+ return (int) apply_filters( 'mycred_coupon_global_max', get_post_meta( $post_id, 'global', true ), $post_id );
123
 
124
  }
125
  endif;
230
  * to a given user. Requires you to provide a log entry template.
231
  * @action mycred_use_coupon
232
  * @since 1.4
233
+ * @version 1.2
234
  */
235
  if ( ! function_exists( 'mycred_use_coupon' ) ) :
236
  function mycred_use_coupon( $code = '', $user_id = 0 ) {
237
 
238
  // Missing required information
239
+ if ( empty( $code ) || $user_id === 0 ) return 'invalid';
240
 
241
+ $can_use = true;
242
 
243
  // Get coupon by code (post title)
244
+ if ( ! is_object( $code ) ) {
245
+ $coupon = mycred_get_coupon_post( $code );
246
+ if ( $coupon === false ) return 'invalid';
247
+ $coupon = mycred_get_coupon( $coupon->ID );
248
+ }
249
 
250
  // Coupon does not exist
251
+ if ( $coupon === false ) return 'invalid';
252
+
253
+ $now = current_time( 'timestamp' );
254
 
255
  // Check Expiration
256
+ if ( $coupon->expires !== false && $coupon->expires_unix <= $now )
 
 
257
  $can_use = 'expired';
258
 
259
  // Get Global Count
260
  if ( $can_use === true ) {
261
 
262
+ if ( $coupon->used >= $coupon->max_global )
 
 
 
263
  $can_use = 'expired';
264
 
265
  }
267
  // Get User max
268
  if ( $can_use === true ) {
269
 
270
+ $user_count = mycred_get_users_coupon_count( $coupon->code, $user_id );
271
+ if ( $user_count >= $coupon->max_user )
272
+ $can_use = 'user_limit';
 
 
273
 
274
  }
275
 
276
+ $mycred = mycred( $coupon->point_type );
277
+ if ( $mycred->exclude_user( $user_id ) ) return 'excluded';
 
278
 
279
+ $users_balance = $mycred->get_users_balance( $user_id, $coupon->point_type );
280
 
281
  if ( $can_use === true ) {
282
 
283
  // Min balance requirement
284
+ if ( $coupon->requires_min_type != $coupon->point_type ) {
 
 
 
285
 
286
+ $mycred = mycred( $coupon->requires_min_type );
287
+ $users_balance = $mycred->get_users_balance( $user_id, $coupon->requires_min_type );
288
 
289
  }
290
 
291
+ if ( $mycred->number( $coupon->requires_min['value'] ) > $mycred->zero() && $users_balance < $mycred->number( $coupon->requires_min['value'] ) )
292
+ $can_use = 'min';
293
 
294
  // Max balance requirement
295
  if ( $can_use === true ) {
296
 
297
+ if ( $coupon->requires_max_type != $coupon->point_type ) {
298
 
299
+ $mycred = mycred( $coupon->requires_max_type );
300
+ $users_balance = $mycred->get_users_balance( $user_id, $coupon->requires_max_type );
 
 
301
 
302
  }
303
 
304
+ if ( $mycred->number( $coupon->requires_max['value'] ) > $mycred->zero() && $users_balance >= $mycred->number( $coupon->requires_max['value'] ) )
305
+ $can_use = 'max';
306
 
307
  }
308
 
309
  }
310
 
311
  // Let other play and change the value of $can_use
312
+ $can_use = apply_filters( 'mycred_can_use_coupon', $can_use, $coupon->code, $user_id, $coupon );
313
 
314
  // Ready to use coupon!
315
  if ( $can_use === true ) {
316
 
 
 
 
 
 
317
  // Get Coupon log template
318
  if ( ! isset( $mycred->core['coupons']['log'] ) )
319
+ $mycred->core['coupons']['log'] = 'Coupon deposit';
320
 
321
  // Apply Coupon
322
  $mycred->add_creds(
323
  'coupon',
324
  $user_id,
325
+ $coupon->value,
326
  $mycred->core['coupons']['log'],
327
+ $coupon->post_id,
328
+ $coupon->code,
329
+ $coupon->point_type
330
  );
331
 
332
  do_action( 'mycred_use_coupon', $user_id, $coupon );
333
 
334
  // Increment global counter
335
+ $coupon->used ++;
 
336
 
337
  // If the updated counter reaches the max, trash the coupon now
338
+ if ( $coupon->used >= $coupon->max_global )
339
+ wp_trash_post( $coupon->post_id );
340
 
341
  // This should resolves issues where caching prevents the new global count from being loaded.
342
  else {
343
+ clean_post_cache( $coupon->post_id );
344
  }
345
 
346
+ return $mycred->number( $users_balance + $coupon->value );
347
 
348
  }
349
 
350
  // Trash expired coupons to preent further usage
351
  elseif ( $can_use == 'expired' ) {
352
 
353
+ wp_trash_post( $coupon->post_id );
354
 
355
  }
356
 
359
  }
360
  endif;
361
 
362
+ /**
363
+ * Was Coupon Successfully Used?
364
+ * Checks to see if mycred_use_coupon() successfully paid out or if
365
+ * we ran into issues.
366
+ * @since 1.7.5
367
+ * @version 1.0
368
+ */
369
+ if ( ! function_exists( 'mycred_coupon_was_successfully_used' ) ) :
370
+ function mycred_coupon_was_successfully_used( $code = '' ) {
371
+
372
+ $results = true;
373
+ $error_codes = apply_filters( 'mycred_coupon_error_codes', array( 'invalid', 'expired', 'user_limit', 'min', 'max', 'excluded' ) );
374
+
375
+ if ( $code === false || in_array( $code, $error_codes ) )
376
+ $results = false;
377
+
378
+ return $results;
379
+
380
+ }
381
+ endif;
382
+
383
+ /**
384
+ * Coupon Error Message
385
+ * Translates a coupon error code into a readable message.
386
+ * we ran into issues.
387
+ * @since 1.7.5
388
+ * @version 1.0
389
+ */
390
+ if ( ! function_exists( 'mycred_get_coupon_error_message' ) ) :
391
+ function mycred_get_coupon_error_message( $code = '', $coupon = NULL ) {
392
+
393
+ $message = __( 'An unknown error occurred. Coupon not used.', 'mycred' );
394
+
395
+ if ( ! is_object( $coupon ) ) return $message;
396
+
397
+ global $mycred;
398
+
399
+ if ( array_key_exists( $code, $mycred->coupons ) )
400
+ $message = $mycred->coupons[ $code ];
401
+
402
+ if ( $code == 'min' ) {
403
+
404
+ $mycred = mycred( $coupon->requires_min_type );
405
+ $message = str_replace( array( '%min%', '%amount%' ), $mycred->format_creds( $coupon->requires_min['value'] ), $message );
406
+
407
+ }
408
+
409
+ elseif ( $code == 'max' ) {
410
+
411
+ $mycred = mycred( $coupon->requires_max_type );
412
+ $message = str_replace( array( '%max%', '%amount%' ), $mycred->format_creds( $coupon->requires_max['value'] ), $message );
413
+
414
+ }
415
+
416
+ return apply_filters( 'mycred_coupon_error_message', $message, $code, $coupon );
417
+
418
+ }
419
+ endif;
420
+
421
  /**
422
  * Get Users Coupon Count
423
  * Counts the number of times a user has used a given coupon.
447
  * Get Coupons Global Count
448
  * @filter mycred_get_global_coupon_count
449
  * @since 1.4
450
+ * @version 1.1.1
451
  */
452
  if ( ! function_exists( 'mycred_get_global_coupon_count' ) ) :
453
  function mycred_get_global_coupon_count( $post_id = 0 ) {
454
 
455
  global $wpdb, $mycred;
456
 
457
+ $point_type = get_post_meta( $post_id, 'type', true );
458
+ if ( ! mycred_point_type_exists( $point_type ) )
459
+ $point_type = MYCRED_DEFAULT_TYPE_KEY;
460
+
461
  $count = $wpdb->get_var( $wpdb->prepare( "
462
  SELECT COUNT(*)
463
  FROM {$mycred->log_table}
464
+ WHERE ref = 'coupon' AND ref_id = %d AND ctype = %s;", $post_id, $point_type ) );
465
 
466
  if ( $count === NULL ) $count = 0;
467
 
474
  * Get Coupons Minimum Balance Requirement
475
  * @filter mycred_coupon_min_balance
476
  * @since 1.4
477
+ * @version 1.1.1
478
  */
479
  if ( ! function_exists( 'mycred_get_coupon_min_balance' ) ) :
480
  function mycred_get_coupon_min_balance( $post_id = 0 ) {
483
  if ( ! mycred_point_type_exists( $type ) ) $type = MYCRED_DEFAULT_TYPE_KEY;
484
 
485
  $min = get_post_meta( $post_id, 'min_balance', true );
486
+ if ( $min == '' ) $min = 0;
487
 
488
  return apply_filters( 'mycred_coupon_min_balance', array(
489
  'type' => $type,
497
  * Get Coupons Maximum Balance Requirement
498
  * @filter mycred_coupon_max_balance
499
  * @since 1.4
500
+ * @version 1.1.1
501
  */
502
  if ( ! function_exists( 'mycred_get_coupon_max_balance' ) ) :
503
  function mycred_get_coupon_max_balance( $post_id = 0 ) {
506
  if ( ! mycred_point_type_exists( $type ) ) $type = MYCRED_DEFAULT_TYPE_KEY;
507
 
508
  $max = get_post_meta( $post_id, 'max_balance', true );
509
+ if ( $max == '' ) $max = 0;
510
 
511
  return apply_filters( 'mycred_coupon_max_balance', array(
512
  'type' => $type,
515
 
516
  }
517
  endif;
 
addons/coupons/includes/mycred-coupon-shortcodes.php CHANGED
@@ -3,10 +3,10 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
 
4
  /**
5
  * Load Coupon Shortcode
6
- * @filter mycred_get_coupon_by_code
7
- * @filter mycred_load_coupon
8
  * @since 1.4
9
- * @version 1.1.1
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
12
  function mycred_render_shortcode_load_coupon( $atts, $content = NULL ) {
@@ -29,45 +29,39 @@ if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
29
 
30
  $output = '<div class="mycred-coupon-form">';
31
 
32
- // No show for excluded users
33
- if ( ! $mycred->exclude_user( $user_id ) ) {
34
 
35
- // On submits
36
- if ( isset( $_POST['mycred_coupon_load']['token'] ) && wp_verify_nonce( $_POST['mycred_coupon_load']['token'], 'mycred-load-coupon' . $user_id ) ) {
 
37
 
38
- $coupon = mycred_get_coupon_post( $_POST['mycred_coupon_load']['couponkey'] );
39
- $load = mycred_use_coupon( $_POST['mycred_coupon_load']['couponkey'], $user_id );
40
 
41
- // Coupon does not exist
42
- if ( $load === 'missing' )
43
- $output .= '<div class="alert alert-danger">' . $mycred->coupons['invalid'] . '</div>';
44
 
45
- // Coupon has expired
46
- elseif ( $load === 'expired' )
47
- $output .= '<div class="alert alert-danger">' . $mycred->coupons['expired'] . '</div>';
48
 
49
- // User limit reached
50
- elseif ( $load === 'max' )
51
- $output .= '<div class="alert alert-warning">' . $mycred->coupons['user_limit'] . '</div>';
 
 
 
52
 
53
- // Failed minimum balance requirement
54
- elseif ( $load === 'min_balance' ) {
55
- $min = get_post_meta( $coupon->ID, 'min_balance', true );
56
- $template = str_replace( '%min%', $min, $mycred->coupons['min'] );
57
- $output .= '<div class="alert alert-danger">' . $template . '</div>';
58
  }
59
 
60
- // Failed maximum balance requirement
61
- elseif ( $load === 'max_balance' ) {
62
- $max = get_post_meta( $coupon->ID, 'max_balance', true );
63
- $template = str_replace( '%max%', $max, $mycred->coupons['max'] );
64
- $output .= '<div class="alert alert-danger">' . $template . '</div>';
 
65
  }
66
 
67
- // Success
68
- else
69
- $output .= '<div class="alert alert-success">' . $mycred->coupons['success'] . '</div>';
70
-
71
  }
72
 
73
  }
@@ -92,5 +86,3 @@ if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
92
 
93
  }
94
  endif;
95
-
96
- ?>
3
 
4
  /**
5
  * Load Coupon Shortcode
6
+ * Renders the form that allows users to redeem coupons from.
7
+ * @see http://codex.mycred.me/shortcodes/mycred_load_coupon/
8
  * @since 1.4
9
+ * @version 1.3
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
12
  function mycred_render_shortcode_load_coupon( $atts, $content = NULL ) {
29
 
30
  $output = '<div class="mycred-coupon-form">';
31
 
32
+ // On submits
33
+ if ( isset( $_POST['mycred_coupon_load']['token'] ) && wp_verify_nonce( $_POST['mycred_coupon_load']['token'], 'mycred-load-coupon' . $user_id ) ) {
34
 
35
+ $coupon_code = sanitize_text_field( $_POST['mycred_coupon_load']['couponkey'] );
36
+ $coupon_post = mycred_get_coupon_post( $coupon_code );
37
+ if ( isset( $coupon_post->ID ) ) {
38
 
39
+ $coupon = mycred_get_coupon( $coupon_post->ID );
 
40
 
41
+ // Attempt to use this coupon
42
+ $load = mycred_use_coupon( $coupon_code, $user_id );
 
43
 
44
+ // Load myCRED in the type we are paying out for messages
45
+ if ( isset( $coupon->point_type ) && $coupon->point_type != $mycred->cred_id )
46
+ $mycred = mycred( $coupon->point_type );
47
 
48
+ // That did not work out well, need to show an error message
49
+ if ( ! mycred_coupon_was_successfully_used( $load ) ) {
50
+
51
+ $message = mycred_get_coupon_error_message( $code, $coupon );
52
+ $message = $mycred->template_tags_general( $message );
53
+ $output .= '<div class="alert alert-danger">' . $message . '</div>';
54
 
 
 
 
 
 
55
  }
56
 
57
+ // Success!
58
+ else {
59
+
60
+ $message = $mycred->template_tags_amount( $mycred->coupons['success'], $coupon->value );
61
+ $output .= '<div class="alert alert-success">' . $message . '</div>';
62
+
63
  }
64
 
 
 
 
 
65
  }
66
 
67
  }
86
 
87
  }
88
  endif;
 
 
addons/coupons/myCRED-addon-coupons.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Coupons
4
  * Addon URI: http://mycred.me/add-ons/coupons/
5
- * Version: 1.3
6
  */
7
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
8
 
@@ -16,7 +16,7 @@ require_once myCRED_COUPONS_DIR . 'includes/mycred-coupon-shortcodes.php';
16
  /**
17
  * myCRED_Coupons_Module class
18
  * @since 1.4
19
- * @version 1.0
20
  */
21
  if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
22
  class myCRED_Coupons_Module extends myCRED_Module {
@@ -35,9 +35,10 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
35
  'invalid' => 'This is not a valid coupon',
36
  'expired' => 'This coupon has expired',
37
  'user_limit' => 'You have already used this coupon',
38
- 'min' => 'A minimum of %min% is required to use this coupon',
39
- 'max' => 'A maximum of %max% is required to use this coupon',
40
- 'success' => 'Coupon successfully deposited into your account'
 
41
  ),
42
  'register' => false,
43
  'add_to_core' => true,
@@ -59,7 +60,8 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
59
 
60
  add_shortcode( 'mycred_load_coupon', 'mycred_render_shortcode_load_coupon' );
61
 
62
- add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos );
 
63
 
64
  }
65
 
@@ -75,8 +77,8 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
75
  add_filter( 'manage_mycred_coupon_posts_columns', array( $this, 'adjust_column_headers' ) );
76
  add_action( 'manage_mycred_coupon_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
77
 
78
- add_filter( 'parent_file', array( $this, 'parent_file' ) );
79
- add_filter( 'submenu_file', array( $this, 'subparent_file' ), 10, 2 );
80
 
81
  add_filter( 'enter_title_here', array( $this, 'enter_title_here' ) );
82
  add_filter( 'post_row_actions', array( $this, 'adjust_row_actions' ), 10, 2 );
@@ -97,19 +99,19 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
97
  protected function register_coupons() {
98
 
99
  $labels = array(
100
- 'name' => __( 'Coupons', 'mycred' ),
101
- 'singular_name' => __( 'Coupon', 'mycred' ),
102
- 'add_new' => __( 'Create New', 'mycred' ),
103
- 'add_new_item' => __( 'Create New', 'mycred' ),
104
- 'edit_item' => __( 'Edit Coupon', 'mycred' ),
105
- 'new_item' => __( 'New Coupon', 'mycred' ),
106
- 'all_items' => __( 'Coupons', 'mycred' ),
107
- 'view_item' => '',
108
- 'search_items' => __( 'Search coupons', 'mycred' ),
109
- 'not_found' => __( 'No coupons found', 'mycred' ),
110
- 'not_found_in_trash' => __( 'No coupons found in Trash', 'mycred' ),
111
- 'parent_item_colon' => '',
112
- 'menu_name' => __( 'Email Notices', 'mycred' )
113
  );
114
  $args = array(
115
  'labels' => $labels,
@@ -260,7 +262,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
260
  /**
261
  * Adjust Column Body
262
  * @since 1.4
263
- * @version 1.1.2
264
  */
265
  public function adjust_column_content( $column_name, $post_id ) {
266
 
@@ -292,7 +294,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
292
  if ( $set_type != MYCRED_DEFAULT_TYPE_KEY && array_key_exists( $set_type, $this->point_types ) )
293
  $page .= '_' . $set_type;
294
 
295
- $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'data' => get_the_title( $post_id ) ), admin_url( 'admin.php' ) );
296
  echo '<a href="' . esc_url( $url ) . '">' . sprintf( _n( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
297
 
298
  }
@@ -312,18 +314,23 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
312
 
313
  $expires = mycred_get_coupon_expire_date( $post_id, true );
314
 
315
- if ( empty( $expires ) || $expires === 0 )
316
- _e( 'Never', 'mycred' );
317
 
318
  else {
319
 
320
  if ( $expires < current_time( 'timestamp' ) ) {
 
321
  wp_trash_post( $post_id );
 
322
  echo '<span style="color:red;">' . __( 'Expired', 'mycred' ) . '</span>';
 
323
  }
324
 
325
  else {
 
326
  echo sprintf( __( 'In %s time', 'mycred' ), human_time_diff( $expires ) ) . '<br /><small class="description">' . date( get_option( 'date_format' ), $expires ) . '</small>';
 
327
  }
328
 
329
  }
@@ -459,10 +466,35 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
459
 
460
  }
461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  /**
463
  * Metabox: Coupon Setup
464
  * @since 1.4
465
- * @version 1.2
466
  */
467
  public function metabox_coupon_setup( $post ) {
468
 
@@ -480,7 +512,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
480
  <div class="form-group">
481
  <label for=""><?php _e( 'Value', 'mycred' ); ?></label>
482
  <input type="text" name="mycred_coupon[value]" class="form-control" id="mycred-coupon-value" value="<?php echo $mycred->number( $coupon->value ); ?>" />
483
- <span class="description"><?php echo $mycred->template_tags_general( __( 'The amount of %plural% this coupon is worth.', 'mycred' ) ); ?></span>
484
  </div>
485
  </div>
486
  <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
@@ -494,7 +526,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
494
  <?php else : ?>
495
 
496
  <p class="form-control-static"><?php echo $mycred->plural(); ?></p>
497
- <input type="hidden" name="mycred_coupon[type]" value="mycred_default" />
498
 
499
  <?php endif; ?>
500
  </div>
@@ -502,7 +534,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
502
  <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
503
  <div class="form-group">
504
  <label for=""><?php _e( 'Expire', 'mycred' ); ?></label>
505
- <input type="text" name="mycred_coupon[expires]" class="form-control" id="mycred-coupon-expire" value="<?php echo $coupon->expires; ?>" placeholder="YYYY-MM-DD" />
506
  <span class="description"><?php _e( 'Optional date when this coupon expires. Expired coupons will be trashed.', 'mycred' ); ?></span>
507
  </div>
508
  </div>
@@ -533,7 +565,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
533
  <div class="form-group">
534
  <label for="mycred-coupon-global"><?php _e( 'Global Maximum', 'mycred' ); ?></label>
535
  <input type="text" name="mycred_coupon[global]" class="form-control" id="mycred-coupon-global" value="<?php echo absint( $coupon->max_global ); ?>" />
536
- <span class="description"><?php _e( 'The maximum number of times this coupon can be used.', 'mycred' ); ?></span>
537
  </div>
538
  </div>
539
  <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
@@ -563,9 +595,6 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
563
  else
564
  $mycred = $this->core;
565
 
566
- $min_balance_type = mycred_types_select_from_dropdown( 'mycred_coupon[min_balance_type]', 'mycred-coupon-min_balance_type', $coupon->requires_min_type, true, ' style="vertical-align: top;"' );
567
- $max_balance_type = mycred_types_select_from_dropdown( 'mycred_coupon[max_balance_type]', 'mycred-coupon-max_balance_type', $coupon->requires_max_type, true, ' style="vertical-align: top;"' );
568
-
569
  ?>
570
  <div class="form">
571
  <div class="row">
@@ -574,7 +603,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
574
  <label for="mycred-coupon-min_balance"><?php _e( 'Minimum Balance', 'mycred' ); ?></label>
575
  <div>
576
  <input type="text" name="mycred_coupon[min_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-min_balance" value="<?php echo $mycred->number( $coupon->requires_min['value'] ); ?>" />
577
- <?php echo $min_balance_type; ?>
578
  </div>
579
  <span class="description"><?php _e( 'Optional minimum balance a user must have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
580
  </div>
@@ -586,7 +615,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
586
  <label for="mycred-coupon-max_balance"><?php _e( 'Maximum Balance', 'mycred' ); ?></label>
587
  <div>
588
  <input type="text" name="mycred_coupon[max_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-max_balance" value="<?php echo $mycred->number( $coupon->requires_max['value'] ); ?>" />
589
- <?php echo $max_balance_type; ?>
590
  </div>
591
  <span class="description"><?php _e( 'Optional maximum balance a user can have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
592
  </div>
@@ -600,7 +629,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
600
  /**
601
  * Metabox: Coupon Usage
602
  * @since 1.6
603
- * @version 1.0
604
  */
605
  public function mycred_coupon_usage( $post ) {
606
 
@@ -617,7 +646,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
617
  $page .= '_' . $set_type;
618
 
619
  $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'data' => $post->post_title ), admin_url( 'admin.php' ) );
620
- echo '<a href="' . esc_url( $url ) . '">' . sprintf( __( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
621
 
622
  }
623
 
@@ -626,7 +655,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
626
  /**
627
  * Save Coupon
628
  * @since 1.4
629
- * @version 1.0
630
  */
631
  public function save_coupon( $post_id, $post = NULL ) {
632
 
@@ -635,6 +664,20 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
635
  foreach ( $_POST['mycred_coupon'] as $meta_key => $meta_value ) {
636
 
637
  $new_value = sanitize_text_field( $meta_value );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
638
  $old_value = get_post_meta( $post_id, $meta_key, true );
639
  if ( $new_value != $old_value )
640
  update_post_meta( $post_id, $meta_key, $new_value );
@@ -646,7 +689,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
646
  /**
647
  * Add to General Settings
648
  * @since 1.4
649
- * @version 1.0
650
  */
651
  public function after_general_settings( $mycred = NULL ) {
652
 
@@ -658,53 +701,60 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
658
  ?>
659
  <h4><span class="dashicons dashicons-admin-plugins static"></span><?php _e( 'Coupons', 'mycred' ); ?></h4>
660
  <div class="body" style="display:none;">
661
- <label class="subheader" for="<?php echo $this->field_id( 'log' ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
662
- <ol id="myCRED-coupon-log">
663
- <li>
664
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo $prefs['log']; ?>" class="long" /></div>
665
- <span class="description"><?php _e( 'Log entry for successful coupon redemption. Use %coupon% to show the coupon code.', 'mycred' ); ?></span>
666
- </li>
667
- </ol>
668
  <label class="subheader" for="<?php echo $this->field_id( 'invalid' ); ?>"><?php _e( 'Invalid Coupon Message', 'mycred' ); ?></label>
669
  <ol id="myCRED-coupon-log">
670
  <li>
671
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'invalid' ); ?>" id="<?php echo $this->field_id( 'invalid' ); ?>" value="<?php echo $prefs['invalid']; ?>" class="long" /></div>
672
- <span class="description"><?php _e( 'Message to show when users try to use a coupon that does not exists.', 'mycred' ); ?></span>
673
  </li>
674
  </ol>
675
  <label class="subheader" for="<?php echo $this->field_id( 'expired' ); ?>"><?php _e( 'Expired Coupon Message', 'mycred' ); ?></label>
676
  <ol id="myCRED-coupon-log">
677
  <li>
678
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'expired' ); ?>" id="<?php echo $this->field_id( 'expired' ); ?>" value="<?php echo $prefs['expired']; ?>" class="long" /></div>
679
- <span class="description"><?php _e( 'Message to show when users try to use that has expired.', 'mycred' ); ?></span>
680
  </li>
681
  </ol>
682
  <label class="subheader" for="<?php echo $this->field_id( 'user_limit' ); ?>"><?php _e( 'User Limit Message', 'mycred' ); ?></label>
683
  <ol id="myCRED-coupon-log">
684
  <li>
685
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'user_limit' ); ?>" id="<?php echo $this->field_id( 'user_limit' ); ?>" value="<?php echo $prefs['user_limit']; ?>" class="long" /></div>
686
- <span class="description"><?php _e( 'Message to show when the user limit has been reached for the coupon.', 'mycred' ); ?></span>
687
  </li>
688
  </ol>
689
  <label class="subheader" for="<?php echo $this->field_id( 'min' ); ?>"><?php _e( 'Minimum Balance Message', 'mycred' ); ?></label>
690
  <ol id="myCRED-coupon-log">
691
  <li>
692
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'min' ); ?>" id="<?php echo $this->field_id( 'min' ); ?>" value="<?php echo $prefs['min']; ?>" class="long" /></div>
693
- <span class="description"><?php _e( 'Message to show when a user does not meet the minimum balance requirement. (if used)', 'mycred' ); ?></span>
694
  </li>
695
  </ol>
696
  <label class="subheader" for="<?php echo $this->field_id( 'max' ); ?>"><?php _e( 'Maximum Balance Message', 'mycred' ); ?></label>
697
  <ol id="myCRED-coupon-log">
698
  <li>
699
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'max' ); ?>" id="<?php echo $this->field_id( 'max' ); ?>" value="<?php echo $prefs['max']; ?>" class="long" /></div>
700
- <span class="description"><?php _e( 'Message to show when a user does not meet the maximum balance requirement. (if used)', 'mycred' ); ?></span>
 
 
 
 
 
 
 
701
  </li>
702
  </ol>
703
  <label class="subheader" for="<?php echo $this->field_id( 'success' ); ?>"><?php _e( 'Success Message', 'mycred' ); ?></label>
704
  <ol id="myCRED-coupon-log">
705
  <li>
706
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'success' ); ?>" id="<?php echo $this->field_id( 'success' ); ?>" value="<?php echo $prefs['success']; ?>" class="long" /></div>
707
- <span class="description"><?php _e( 'Message to show when a coupon was successfully deposited to a users account.', 'mycred' ); ?></span>
 
 
 
 
 
 
 
708
  </li>
709
  </ol>
710
  </div>
@@ -715,7 +765,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
715
  /**
716
  * Save Settings
717
  * @since 1.4
718
- * @version 1.0
719
  */
720
  public function sanitize_extra_settings( $new_data, $data, $core ) {
721
 
@@ -726,6 +776,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
726
  $new_data['coupons']['user_limit'] = sanitize_text_field( $data['coupons']['user_limit'] );
727
  $new_data['coupons']['min'] = sanitize_text_field( $data['coupons']['min'] );
728
  $new_data['coupons']['max'] = sanitize_text_field( $data['coupons']['max'] );
 
729
  $new_data['coupons']['success'] = sanitize_text_field( $data['coupons']['success'] );
730
 
731
  return $new_data;
@@ -762,5 +813,3 @@ if ( ! function_exists( 'mycred_load_coupons_addon' ) ) :
762
  }
763
  endif;
764
  add_filter( 'mycred_load_modules', 'mycred_load_coupons_addon', 50, 2 );
765
-
766
- ?>
2
  /**
3
  * Addon: Coupons
4
  * Addon URI: http://mycred.me/add-ons/coupons/
5
+ * Version: 1.3.1
6
  */
7
  if ( ! defined( 'myCRED_VERSION' ) ) exit;
8
 
16
  /**
17
  * myCRED_Coupons_Module class
18
  * @since 1.4
19
+ * @version 1.0.1
20
  */
21
  if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
22
  class myCRED_Coupons_Module extends myCRED_Module {
35
  'invalid' => 'This is not a valid coupon',
36
  'expired' => 'This coupon has expired',
37
  'user_limit' => 'You have already used this coupon',
38
+ 'min' => 'A minimum of %amount% is required to use this coupon',
39
+ 'max' => 'A maximum of %amount% is required to use this coupon',
40
+ 'excluded' => 'You can not use coupons.',
41
+ 'success' => '%amount% successfully deposited into your account'
42
  ),
43
  'register' => false,
44
  'add_to_core' => true,
60
 
61
  add_shortcode( 'mycred_load_coupon', 'mycred_render_shortcode_load_coupon' );
62
 
63
+ add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos );
64
+ add_action( 'admin_notices', array( $this, 'warn_bad_expiration' ), $this->menu_pos );
65
 
66
  }
67
 
77
  add_filter( 'manage_mycred_coupon_posts_columns', array( $this, 'adjust_column_headers' ) );
78
  add_action( 'manage_mycred_coupon_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
79
 
80
+ add_filter( 'parent_file', array( $this, 'parent_file' ) );
81
+ add_filter( 'submenu_file', array( $this, 'subparent_file' ), 10, 2 );
82
 
83
  add_filter( 'enter_title_here', array( $this, 'enter_title_here' ) );
84
  add_filter( 'post_row_actions', array( $this, 'adjust_row_actions' ), 10, 2 );
99
  protected function register_coupons() {
100
 
101
  $labels = array(
102
+ 'name' => __( 'Coupons', 'mycred' ),
103
+ 'singular_name' => __( 'Coupon', 'mycred' ),
104
+ 'add_new' => __( 'Create New', 'mycred' ),
105
+ 'add_new_item' => __( 'Create New', 'mycred' ),
106
+ 'edit_item' => __( 'Edit Coupon', 'mycred' ),
107
+ 'new_item' => __( 'New Coupon', 'mycred' ),
108
+ 'all_items' => __( 'Coupons', 'mycred' ),
109
+ 'view_item' => '',
110
+ 'search_items' => __( 'Search coupons', 'mycred' ),
111
+ 'not_found' => __( 'No coupons found', 'mycred' ),
112
+ 'not_found_in_trash' => __( 'No coupons found in Trash', 'mycred' ),
113
+ 'parent_item_colon' => '',
114
+ 'menu_name' => __( 'Email Notices', 'mycred' )
115
  );
116
  $args = array(
117
  'labels' => $labels,
262
  /**
263
  * Adjust Column Body
264
  * @since 1.4
265
+ * @version 1.1.3
266
  */
267
  public function adjust_column_content( $column_name, $post_id ) {
268
 
294
  if ( $set_type != MYCRED_DEFAULT_TYPE_KEY && array_key_exists( $set_type, $this->point_types ) )
295
  $page .= '_' . $set_type;
296
 
297
+ $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'ref_id' => $post_id ), admin_url( 'admin.php' ) );
298
  echo '<a href="' . esc_url( $url ) . '">' . sprintf( _n( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
299
 
300
  }
314
 
315
  $expires = mycred_get_coupon_expire_date( $post_id, true );
316
 
317
+ if ( $expires === false )
318
+ echo '-';
319
 
320
  else {
321
 
322
  if ( $expires < current_time( 'timestamp' ) ) {
323
+
324
  wp_trash_post( $post_id );
325
+
326
  echo '<span style="color:red;">' . __( 'Expired', 'mycred' ) . '</span>';
327
+
328
  }
329
 
330
  else {
331
+
332
  echo sprintf( __( 'In %s time', 'mycred' ), human_time_diff( $expires ) ) . '<br /><small class="description">' . date( get_option( 'date_format' ), $expires ) . '</small>';
333
+
334
  }
335
 
336
  }
466
 
467
  }
468
 
469
+ /**
470
+ * Admin Notice
471
+ * If we are have an issue with the expiration date set for this coupon we need to warn the user.
472
+ * @since 1.7.5
473
+ * @version 1.0
474
+ */
475
+ public function warn_bad_expiration() {
476
+
477
+ if ( isset( $_GET['post'] ) && isset( $_GET['action'] ) && $_GET['action'] == 'edit' && get_post_type( absint( $_GET['post'] ) ) == 'mycred_coupon' ) {
478
+
479
+ $post_id = absint( $_GET['post'] );
480
+ $expiration_warning = get_post_meta( $post_id, '_warning_bad_expiration', true );
481
+
482
+ if ( $expiration_warning != '' ) {
483
+
484
+ delete_post_meta( $post_id, '_warning_bad_expiration' );
485
+
486
+ echo '<div id="message" class="error notice is-dismissible"><p>' . __( 'Warning. The previous expiration date set for this coupon was formatted incorrectly and was deleted. If you still want the coupon to expire, please enter a new date or leave empty to disable.', 'mycred' ) . '</p><button type="button" class="notice-dismiss"></button></div>';
487
+
488
+ }
489
+
490
+ }
491
+
492
+ }
493
+
494
  /**
495
  * Metabox: Coupon Setup
496
  * @since 1.4
497
+ * @version 1.2.1
498
  */
499
  public function metabox_coupon_setup( $post ) {
500
 
512
  <div class="form-group">
513
  <label for=""><?php _e( 'Value', 'mycred' ); ?></label>
514
  <input type="text" name="mycred_coupon[value]" class="form-control" id="mycred-coupon-value" value="<?php echo $mycred->number( $coupon->value ); ?>" />
515
+ <span class="description"><?php echo $mycred->template_tags_general( __( 'The amount of %plural% a user receives when redeeming this coupon.', 'mycred' ) ); ?></span>
516
  </div>
517
  </div>
518
  <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
526
  <?php else : ?>
527
 
528
  <p class="form-control-static"><?php echo $mycred->plural(); ?></p>
529
+ <input type="hidden" name="mycred_coupon[type]" value="<?php echo MYCRED_DEFAULT_TYPE_KEY; ?>" />
530
 
531
  <?php endif; ?>
532
  </div>
534
  <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
535
  <div class="form-group">
536
  <label for=""><?php _e( 'Expire', 'mycred' ); ?></label>
537
+ <input type="text" name="mycred_coupon[expires]" class="form-control" id="mycred-coupon-expire" maxlength="10" value="<?php echo esc_attr( $coupon->expires ); ?>" placeholder="YYYY-MM-DD" />
538
  <span class="description"><?php _e( 'Optional date when this coupon expires. Expired coupons will be trashed.', 'mycred' ); ?></span>
539
  </div>
540
  </div>
565
  <div class="form-group">
566
  <label for="mycred-coupon-global"><?php _e( 'Global Maximum', 'mycred' ); ?></label>
567
  <input type="text" name="mycred_coupon[global]" class="form-control" id="mycred-coupon-global" value="<?php echo absint( $coupon->max_global ); ?>" />
568
+ <span class="description"><?php _e( 'The maximum number of times this coupon can be used in total. Once this is reached, the coupon is automatically trashed.', 'mycred' ); ?></span>
569
  </div>
570
  </div>
571
  <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
595
  else
596
  $mycred = $this->core;
597
 
 
 
 
598
  ?>
599
  <div class="form">
600
  <div class="row">
603
  <label for="mycred-coupon-min_balance"><?php _e( 'Minimum Balance', 'mycred' ); ?></label>
604
  <div>
605
  <input type="text" name="mycred_coupon[min_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-min_balance" value="<?php echo $mycred->number( $coupon->requires_min['value'] ); ?>" />
606
+ <?php echo mycred_types_select_from_dropdown( 'mycred_coupon[min_balance_type]', 'mycred-coupon-min_balance_type', $coupon->requires_min_type, true, ' style="vertical-align: top;"' ); ?>
607
  </div>
608
  <span class="description"><?php _e( 'Optional minimum balance a user must have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
609
  </div>
615
  <label for="mycred-coupon-max_balance"><?php _e( 'Maximum Balance', 'mycred' ); ?></label>
616
  <div>
617
  <input type="text" name="mycred_coupon[max_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-max_balance" value="<?php echo $mycred->number( $coupon->requires_max['value'] ); ?>" />
618
+ <?php echo mycred_types_select_from_dropdown( 'mycred_coupon[max_balance_type]', 'mycred-coupon-max_balance_type', $coupon->requires_max_type, true, ' style="vertical-align: top;"' ); ?>
619
  </div>
620
  <span class="description"><?php _e( 'Optional maximum balance a user can have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
621
  </div>
629
  /**
630
  * Metabox: Coupon Usage
631
  * @since 1.6
632
+ * @version 1.0.1
633
  */
634
  public function mycred_coupon_usage( $post ) {
635
 
646
  $page .= '_' . $set_type;
647
 
648
  $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'data' => $post->post_title ), admin_url( 'admin.php' ) );
649
+ echo '<a href="' . esc_url( $url ) . '">' . sprintf( _n( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
650
 
651
  }
652
 
655
  /**
656
  * Save Coupon
657
  * @since 1.4
658
+ * @version 1.0.1
659
  */
660
  public function save_coupon( $post_id, $post = NULL ) {
661
 
664
  foreach ( $_POST['mycred_coupon'] as $meta_key => $meta_value ) {
665
 
666
  $new_value = sanitize_text_field( $meta_value );
667
+
668
+ // Make sure we provide a valid date that strtotime() can understand
669
+ if ( $meta_key == 'expires' && $new_value != '' ) {
670
+
671
+ // Always expires at midnight
672
+ $check = ( strtotime( $new_value . ' midnight' ) + ( DAY_IN_SECONDS - 1 ) );
673
+
674
+ // Thats not good. Date is in the past?
675
+ if ( $check === false || $check < current_time( 'timestamp' ) )
676
+ $new_value = '';
677
+
678
+ }
679
+
680
+ // No need to update if it's still the same value
681
  $old_value = get_post_meta( $post_id, $meta_key, true );
682
  if ( $new_value != $old_value )
683
  update_post_meta( $post_id, $meta_key, $new_value );
689
  /**
690
  * Add to General Settings
691
  * @since 1.4
692
+ * @version 1.0.1
693
  */
694
  public function after_general_settings( $mycred = NULL ) {
695
 
701
  ?>
702
  <h4><span class="dashicons dashicons-admin-plugins static"></span><?php _e( 'Coupons', 'mycred' ); ?></h4>
703
  <div class="body" style="display:none;">
 
 
 
 
 
 
 
704
  <label class="subheader" for="<?php echo $this->field_id( 'invalid' ); ?>"><?php _e( 'Invalid Coupon Message', 'mycred' ); ?></label>
705
  <ol id="myCRED-coupon-log">
706
  <li>
707
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'invalid' ); ?>" id="<?php echo $this->field_id( 'invalid' ); ?>" value="<?php echo esc_attr( $prefs['invalid'] ); ?>" class="long" /></div>
708
+ <span class="description"><?php _e( 'Message to show when users try to use a coupon that does not exists.', 'mycred' ); ?> <?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
709
  </li>
710
  </ol>
711
  <label class="subheader" for="<?php echo $this->field_id( 'expired' ); ?>"><?php _e( 'Expired Coupon Message', 'mycred' ); ?></label>
712
  <ol id="myCRED-coupon-log">
713
  <li>
714
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'expired' ); ?>" id="<?php echo $this->field_id( 'expired' ); ?>" value="<?php echo esc_attr( $prefs['expired'] ); ?>" class="long" /></div>
715
+ <span class="description"><?php _e( 'Message to show when users try to use that has expired.', 'mycred' ); ?> <?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
716
  </li>
717
  </ol>
718
  <label class="subheader" for="<?php echo $this->field_id( 'user_limit' ); ?>"><?php _e( 'User Limit Message', 'mycred' ); ?></label>
719
  <ol id="myCRED-coupon-log">
720
  <li>
721
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'user_limit' ); ?>" id="<?php echo $this->field_id( 'user_limit' ); ?>" value="<?php echo esc_attr( $prefs['user_limit'] ); ?>" class="long" /></div>
722
+ <span class="description"><?php _e( 'Message to show when the user limit has been reached for the coupon.', 'mycred' ); ?> <?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
723
  </li>
724
  </ol>
725
  <label class="subheader" for="<?php echo $this->field_id( 'min' ); ?>"><?php _e( 'Minimum Balance Message', 'mycred' ); ?></label>
726
  <ol id="myCRED-coupon-log">
727
  <li>
728
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'min' ); ?>" id="<?php echo $this->field_id( 'min' ); ?>" value="<?php echo esc_attr( $prefs['min'] ); ?>" class="long" /></div>
729
+ <span class="description"><?php _e( 'Message to show when a user does not meet the minimum balance requirement. (if used)', 'mycred' ); ?> <?php echo $this->available_template_tags( array( 'general', 'amount' ) ); ?></span>
730
  </li>
731
  </ol>
732
  <label class="subheader" for="<?php echo $this->field_id( 'max' ); ?>"><?php _e( 'Maximum Balance Message', 'mycred' ); ?></label>
733
  <ol id="myCRED-coupon-log">
734
  <li>
735
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'max' ); ?>" id="<?php echo $this->field_id( 'max' ); ?>" value="<?php echo esc_attr( $prefs['max'] ); ?>" class="long" /></div>
736
+ <span class="description"><?php _e( 'Message to show when a user does not meet the maximum balance requirement. (if used)', 'mycred' ); ?> <?php echo $this->available_template_tags( array( 'general', 'amount' ) ); ?></span>
737
+ </li>
738
+ </ol>
739
+ <label class="subheader" for="<?php echo $this->field_id( 'excluded' ); ?>"><?php _e( 'Excluded Message', 'mycred' ); ?></label>
740
+ <ol id="myCRED-coupon-log">
741
+ <li>
742
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'excluded' ); ?>" id="<?php echo $this->field_id( 'excluded' ); ?>" value="<?php echo esc_attr( $prefs['excluded'] ); ?>" class="long" /></div>
743
+ <span class="description"><?php _e( 'Message to show when a user is excluded from the point type the coupon gives.', 'mycred' ); ?> <?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
744
  </li>
745
  </ol>
746
  <label class="subheader" for="<?php echo $this->field_id( 'success' ); ?>"><?php _e( 'Success Message', 'mycred' ); ?></label>
747
  <ol id="myCRED-coupon-log">
748
  <li>
749
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'success' ); ?>" id="<?php echo $this->field_id( 'success' ); ?>" value="<?php echo esc_attr( $prefs['success'] ); ?>" class="long" /></div>
750
+ <span class="description"><?php _e( 'Message to show when a coupon was successfully deposited to a users account.', 'mycred' ); ?> <?php echo $this->available_template_tags( array( 'general', 'amount' ) ); ?></span>
751
+ </li>
752
+ </ol>
753
+ <label class="subheader" for="<?php echo $this->field_id( 'log' ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
754
+ <ol id="myCRED-coupon-log">
755
+ <li>
756
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo esc_attr( $prefs['log'] ); ?>" class="long" /></div>
757
+ <span class="description"><?php _e( 'Log entry for successful coupon redemption. Use %coupon% to show the coupon code.', 'mycred' ); ?> <?php echo $this->available_template_tags( array( 'general', 'amount' ) ); ?></span>
758
  </li>
759
  </ol>
760
  </div>
765
  /**
766
  * Save Settings
767
  * @since 1.4
768
+ * @version 1.0.1
769
  */
770
  public function sanitize_extra_settings( $new_data, $data, $core ) {
771
 
776
  $new_data['coupons']['user_limit'] = sanitize_text_field( $data['coupons']['user_limit'] );
777
  $new_data['coupons']['min'] = sanitize_text_field( $data['coupons']['min'] );
778
  $new_data['coupons']['max'] = sanitize_text_field( $data['coupons']['max'] );
779
+ $new_data['coupons']['excluded'] = sanitize_text_field( $data['coupons']['excluded'] );
780
  $new_data['coupons']['success'] = sanitize_text_field( $data['coupons']['success'] );
781
 
782
  return $new_data;
813
  }
814
  endif;
815
  add_filter( 'mycred_load_modules', 'mycred_load_coupons_addon', 50, 2 );
 
 
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -1244,7 +1244,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1244
  /**
1245
  * Request Related Template Tags
1246
  * @since 1.1
1247
- * @version 1.3.1
1248
  */
1249
  public function template_tags_request( $content, $request ) {
1250
 
@@ -1253,15 +1253,15 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1253
  $type = mycred( $request['type'] );
1254
 
1255
  $user_id = absint( $request['user_id'] );
1256
- $old_balance = $type->get_users_balance( $user_id, $request['type'] );
1257
-
1258
- $content = str_replace( '%old_balance%', $old_balance, $content );
1259
- $content = str_replace( '%old_balance_f%', $type->format_creds( $old_balance ), $content );
1260
 
1261
  if ( $request['amount'] > 0 )
1262
- $new_balance = $type->number( $old_balance + $request['amount'] );
1263
  else
1264
- $new_balance = $type->number( $old_balance - $request['amount'] );
 
 
 
1265
 
1266
  $content = str_replace( '%new_balance%', $new_balance, $content );
1267
  $content = str_replace( '%new_balance_f%', $type->format_creds( $new_balance ), $content );
1244
  /**
1245
  * Request Related Template Tags
1246
  * @since 1.1
1247
+ * @version 1.3.2
1248
  */
1249
  public function template_tags_request( $content, $request ) {
1250
 
1253
  $type = mycred( $request['type'] );
1254
 
1255
  $user_id = absint( $request['user_id'] );
1256
+ $new_balance = $type->get_users_balance( $user_id, $request['type'] );
 
 
 
1257
 
1258
  if ( $request['amount'] > 0 )
1259
+ $old_balance = $type->number( $new_balance - $request['amount'] );
1260
  else
1261
+ $old_balance = $type->number( $new_balance + $request['amount'] );
1262
+
1263
+ $content = str_replace( '%old_balance%', $old_balance, $content );
1264
+ $content = str_replace( '%old_balance_f%', $type->format_creds( $old_balance ), $content );
1265
 
1266
  $content = str_replace( '%new_balance%', $new_balance, $content );
1267
  $content = str_replace( '%new_balance_f%', $type->format_creds( $new_balance ), $content );
includes/classes/class.query-log.php CHANGED
@@ -5,191 +5,414 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * Query Log
6
  * @see http://codex.mycred.me/classes/mycred_query_log/
7
  * @since 0.1
8
- * @version 1.6
9
  */
10
  if ( ! class_exists( 'myCRED_Query_Log' ) ) :
11
  class myCRED_Query_Log {
12
 
13
- public $now;
14
- public $args;
15
- public $request;
16
- public $num_rows;
17
- public $max_num_pages;
18
- public $total_rows;
 
19
 
20
- public $results;
21
 
22
  public $headers = array();
23
  public $hidden_headers = array();
24
  public $core;
25
  public $is_admin = false;
26
  public $references = array();
 
 
27
 
28
  /**
29
  * Construct
30
  */
31
  public function __construct( $args = array(), $array = false ) {
32
 
33
- if ( empty( $args ) || ! MYCRED_ENABLE_LOGGING ) return false;
34
 
35
- global $wpdb, $mycred;
36
 
37
  $select = $where = $sortby = $limits = '';
38
  $wheres = array();
39
  $this->now = current_time( 'timestamp' );
40
  $this->references = mycred_get_all_references();
41
 
42
- // Load General Settings
43
- $type = MYCRED_DEFAULT_TYPE_KEY;
44
- if ( isset( $args['ctype'] ) && mycred_point_type_exists( $args['ctype'] ) )
45
- $type = $args['ctype'];
46
-
47
- $this->core = mycred( $type );
48
- if ( $this->core->format['decimals'] > 0 )
49
- $format = '%f';
50
- else
51
- $format = '%d';
52
-
53
- // Prep Defaults
54
  $defaults = array(
55
  'entry_id' => NULL,
56
  'user_id' => NULL,
57
  'ctype' => MYCRED_DEFAULT_TYPE_KEY,
58
- 'number' => 25,
59
  'time' => NULL,
60
  'ref' => NULL,
61
  'ref_id' => NULL,
62
  'amount' => NULL,
63
  's' => NULL,
64
  'data' => NULL,
65
- 'orderby' => 'time',
66
  'offset' => '',
 
67
  'order' => 'DESC',
68
- 'ids' => false,
 
69
  'paged' => $this->get_pagenum()
70
  );
71
- $this->args = wp_parse_args( apply_filters( 'mycred_query_log_args', $args ), $defaults );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
 
73
- // Difference between default and given args
74
- $this->diff = array_diff_assoc( $this->args, $defaults );
75
- if ( isset( $this->diff['number'] ) )
76
- unset( $this->diff['number'] );
77
 
78
- // Point Type
79
- if ( $this->args['ctype'] !== NULL )
80
- $wheres[] = $wpdb->prepare( "ctype = %s", $this->args['ctype'] );
81
 
82
- if ( $this->args['entry_id'] !== NULL )
83
- $wheres[] = $wpdb->prepare( "id = %d", absint( $this->args['entry_id'] ) );
84
 
85
- // User ID
86
- if ( $this->args['user_id'] !== NULL ) {
 
87
 
88
- $user_id = $this->get_user_id( $this->args['user_id'] );
 
89
 
90
- if ( $user_id !== false )
91
- $wheres[] = $wpdb->prepare( "user_id = %d", $user_id );
92
 
93
- }
 
 
94
 
95
- // Reference(s) - single value, comma separated list or an array
96
- if ( $this->args['ref'] !== NULL ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
 
98
- $_clean_refs = array();
99
- $references = ( ( ! is_array( $this->args['ref'] ) ) ? explode( ',', urldecode( $this->args['ref'] ) ) : $this->args['ref'] );
100
 
101
- if ( ! empty( $references ) ) {
102
- foreach ( $references as $reference ) {
103
 
104
- $reference = sanitize_key( $reference );
105
- if ( $reference == '' ) continue;
106
- $_clean_refs[] = $reference;
107
 
 
 
 
 
 
108
  }
 
109
  }
110
 
111
- if ( ! empty( $_clean_refs ) ) {
112
 
113
- if ( count( $_clean_refs ) == 1 )
114
- $wheres[] = $wpdb->prepare( "ref = %s", $_clean_refs[0] );
 
115
 
116
- else
117
- $wheres[] = $wpdb->prepare( "ref IN (%s" . str_repeat( ',%s', ( count( $_clean_refs ) - 1 ) ) . ")", $_clean_refs );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
 
120
  }
121
 
122
  }
123
 
124
- // Reference ID(s) - single value, comma separated list or an array
125
- if ( $this->args['ref_id'] !== NULL ) {
 
 
 
 
 
 
 
 
 
 
 
 
126
 
127
- $_clean_ids = array();
128
- $ref_ids = ( ( ! is_array( $this->args['ref'] ) ) ? explode( ',', $this->args['ref_id'] ) : $this->args['ref_id'] );
 
 
 
 
129
 
130
- if ( ! empty( $ref_ids ) ) {
131
- foreach ( $ref_ids as $ref_id ) {
132
 
133
- $ref_id = absint( $ref_id );
134
- if ( $ref_id === 0 ) continue;
135
- $_clean_ids[] = $ref_id;
 
 
 
 
 
 
 
 
 
136
 
137
  }
 
138
  }
139
 
140
- if ( ! empty( $_clean_ids ) ) {
141
 
142
- if ( count( $_clean_ids ) == 1 )
143
- $wheres[] = $wpdb->prepare( "ref_id = %d", $_clean_ids[0] );
 
144
 
145
- else
146
- $wheres[] = $wpdb->prepare( "ref IN (%d" . str_repeat( ',%d', ( count( $_clean_ids ) - 1 ) ) . ")", $_clean_ids );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
 
149
  }
150
 
151
  }
152
 
153
- // Amount
154
- if ( $this->args['amount'] !== NULL ) {
 
155
 
156
- // Advanced query
157
- if ( is_array( $this->args['amount'] ) ) {
 
 
 
 
 
 
 
 
158
 
159
- // Range
160
- if ( isset( $this->args['amount']['start'] ) && isset( $this->args['amount']['end'] ) )
161
- $wheres[] = $wpdb->prepare( "creds BETWEEN {$format} AND {$format}", $this->core->number( sanitize_text_field( $this->args['amount']['start'] ) ), $this->core->number( sanitize_text_field( $this->args['amount']['end'] ) ) );
 
 
 
162
 
163
- // Compare
164
- elseif ( isset( $this->args['amount']['num'] ) && isset( $this->args['amount']['compare'] ) ) {
165
 
166
- $compare = trim( urldecode( $this->args['amount']['compare'] ) );
167
- if ( in_array( $compare, array( '=', '!=', '>', '<', '<>') ) )
168
- $wheres[] = $wpdb->prepare( "creds {$compare} {$format}", $this->core->number( sanitize_text_field( $this->args['amount']['num'] ) ) );
169
 
170
- }
 
 
 
 
 
 
 
 
171
 
172
  }
173
 
174
- // Specific amount(s)
175
- else {
176
 
177
- $_clean_values = array();
178
- $point_values = ( ( ! is_array( $this->args['amount'] ) ) ? explode( ',', $this->args['amount'] ) : $this->args['amount'] );
 
 
 
 
 
 
 
179
 
180
- if ( ! empty( $point_values ) ) {
181
- foreach ( $point_values as $amount )
182
- $_clean_values[] = $this->core->number( $amount );
183
  }
184
 
185
- if ( ! empty( $_clean_values ) ) {
186
 
187
- if ( count( $_clean_values ) == 1 )
188
- $wheres[] = $wpdb->prepare( "ref_id = {$format}", $_clean_values[0] );
189
 
190
- else
191
- $wheres[] = $wpdb->prepare( "ref IN ({$format}" . str_repeat( ",{$format}", ( count( $_clean_values ) - 1 ) ) . ")", $_clean_values );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
 
194
  }
195
 
@@ -197,111 +420,391 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
197
 
198
  }
199
 
200
- // Time
201
- if ( $this->args['time'] !== NULL && $this->args['time'] != '' ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
 
203
- $today = strtotime( date( 'Y-m-d', $this->now ) . ' midnight' );
204
- $todays_date = date( 'd', $this->now );
205
 
206
- // Show todays entries
207
- if ( $this->args['time'] == 'today' )
208
- $wheres[] = "time BETWEEN {$today} AND {$this->now}";
 
 
 
 
 
 
 
 
 
209
 
210
- // Show yesterdays entries
211
- elseif ( $this->args['time'] == 'yesterday' ) {
212
- $yesterday = strtotime( '-1 day midnight', $this->now );
213
- $wheres[] = "time BETWEEN {$yesterday} AND {$today}";
214
  }
215
 
216
- // Show this weeks entries
217
- elseif ( $this->args['time'] == 'thisweek' ) {
218
 
219
- $weekday = date( 'w', $this->now );
 
220
 
221
- // New week started today so show only todays
222
- if ( get_option( 'start_of_week' ) == $weekday )
223
- $wheres[] = "time BETWEEN {$today} AND {$this->now}";
 
 
 
 
 
 
 
 
 
 
 
224
 
225
- // Show rest of this week
226
- else {
227
- $week_start = strtotime( '-' . ( $weekday+1 ) . ' days midnight', $this->now );
228
- $wheres[] = "time BETWEEN {$week_start} AND {$this->now}";
229
  }
230
 
231
  }
232
 
233
- // Show this months entries
234
- elseif ( $this->args['time'] == 'thismonth' ) {
235
- $start_of_month = strtotime( date( 'Y-m-01' ) . ' midnight', $this->now );
236
- $wheres[] = "time BETWEEN {$start_of_month} AND {$this->now}";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  }
238
 
239
- // Show entries based on given time frames
240
- else {
241
 
242
- $timestamps = array();
243
- $times = ( ( ! is_array( $this->args['time'] ) ) ? explode( ',', $this->args['time'] ) : $this->args['time'] );
244
 
245
- if ( ! empty( $times ) ) {
246
- foreach ( $times as $time_string ) {
 
 
247
 
248
- $time_string = $this->get_timestamp( $time_string );
249
- if ( $time_string === false && ! in_array( $this->now, $timestamps ) ) $time_string = $this->now;
250
- $timestamps[] = $time_string;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251
 
252
- }
253
  }
254
- $this->timestamps = $timestamps;
255
- if ( count( $timestamps ) == 2 )
256
- $wheres[] = $wpdb->prepare( "time BETWEEN %d AND %d", $timestamps );
257
 
258
  }
259
 
260
  }
261
 
262
- // Entry Search
263
- if ( $this->args['s'] !== NULL && $this->args['s'] != '' ) {
 
 
 
 
 
 
 
264
 
265
  $search_query = sanitize_text_field( $this->args['s'] );
266
 
267
- if ( is_int( $search_query ) )
268
- $search_query = (string) $search_query;
 
269
 
270
- $wheres[] = $wpdb->prepare( "entry LIKE %s", "%$search_query%" );
 
271
 
272
  }
273
 
274
- // Data
275
- if ( $this->args['data'] !== NULL && $this->args['data'] != '' ) {
 
 
 
 
 
 
 
276
 
277
  $data_query = sanitize_text_field( $this->args['data'] );
278
 
279
- if ( is_int( $data_query ) )
280
- $data_query = (string) $data_query;
 
281
 
282
- $wheres[] = $wpdb->prepare( "entry LIKE %s", "%$data_query%" );
 
283
 
284
  }
285
 
286
- // Order by
287
- if ( strlen( $this->args['orderby'] ) > 0 ) {
 
 
 
 
 
 
 
 
 
 
 
288
 
289
  // Make sure $sortby is valid
290
  $allowed = apply_filters( 'mycred_allowed_sortby', array( 'id', 'ref', 'ref_id', 'user_id', 'creds', 'ctype', 'entry', 'data', 'time' ) );
291
- if ( in_array( $this->args['orderby'], $allowed ) )
292
- $sortby = "ORDER BY " . $this->args['orderby'] . " " . $this->args['order'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
 
294
  }
295
 
296
- // Number of results
297
- $number = $this->args['number'];
298
- if ( $number < -1 )
299
- $number = abs( $number );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
300
 
301
- elseif ( $number == 0 || $number == -1 )
302
- $number = NULL;
 
 
303
 
304
- // Limits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  if ( $number !== NULL ) {
306
 
307
  $page = 1;
@@ -324,28 +827,47 @@ $this->timestamps = $timestamps;
324
 
325
  }
326
 
327
- // Prep return
328
- $select = '*';
329
- if ( $this->args['ids'] === true )
330
- $select = 'id';
331
 
332
- $found_rows = '';
333
- if ( $limits != '' )
334
- $found_rows = 'SQL_CALC_FOUND_ROWS';
 
 
335
 
336
- $where = 'WHERE ' . implode( ' AND ', $wheres );
 
 
 
 
337
 
338
- // Run
339
- $this->request = "SELECT {$found_rows} {$select} FROM {$mycred->log_table} {$where} {$sortby} {$limits};";
340
- $this->results = $wpdb->get_results( $this->request, $array ? ARRAY_A : OBJECT );
341
 
342
- if ( $limits != '' )
343
- $this->num_rows = $wpdb->get_var( 'SELECT FOUND_ROWS()' );
344
- else
345
- $this->num_rows = count( $this->results );
346
 
347
- if ( $limits != '' )
348
- $this->max_num_pages = ceil( $this->num_rows / $number );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
 
350
  $this->total_rows = $wpdb->get_var( "SELECT COUNT(*) FROM {$this->core->log_table}" );
351
 
@@ -356,12 +878,12 @@ $this->timestamps = $timestamps;
356
  * Returns all table column headers.
357
  * @filter mycred_log_column_headers
358
  * @since 0.1
359
- * @version 1.1.2
360
  */
361
  public function table_headers() {
362
 
363
  // Headers already set
364
- if ( ! empty( $this->headers ) ) return;
365
 
366
  global $mycred_types;
367
 
@@ -389,6 +911,11 @@ $this->timestamps = $timestamps;
389
  if ( empty( $this->headers ) )
390
  $headers = $columns;
391
 
 
 
 
 
 
392
  $this->headers = apply_filters( 'mycred_log_column_headers', $headers, $this, $this->is_admin );
393
 
394
  }
@@ -455,11 +982,11 @@ $this->timestamps = $timestamps;
455
  /**
456
  * Table Nav
457
  * @since 0.1
458
- * @version 1.1
459
  */
460
  public function table_nav( $location = 'top', $is_profile = false ) {
461
 
462
- if ( ! $this->have_entries() ) return;
463
 
464
  if ( $location == 'top' ) {
465
 
@@ -479,11 +1006,11 @@ $this->timestamps = $timestamps;
479
  /**
480
  * Bulk Actions
481
  * @since 1.7
482
- * @version 1.0
483
  */
484
  public function bulk_actions() {
485
 
486
- if ( ! $this->is_admin ) return;
487
 
488
  $bulk_actions = apply_filters( 'mycred_log_bulk_actions', array(
489
  '-1' => __( 'Bulk Actions', 'mycred' ),
@@ -513,19 +1040,20 @@ $this->timestamps = $timestamps;
513
  /**
514
  * Filter Log options
515
  * @since 0.1
516
- * @version 1.3.1
517
  */
518
- public function filter_options( $is_profile = false, $refs = array() ) {
 
 
519
 
520
  echo '<div class="alignleft actions">';
521
  $show = false;
522
 
523
  // Filter by reference
524
- $references = $this->get_refs( $refs );
525
- if ( ! empty( $references ) ) {
526
 
527
  echo '<select name="ref" id="myCRED-reference-filter"><option value="">' . __( 'Show all references', 'mycred' ) . '</option>';
528
- foreach ( $references as $ref ) {
529
 
530
  $label = str_replace( array( '_', '-' ), ' ', $ref );
531
  echo '<option value="' . $ref . '"';
@@ -580,15 +1108,15 @@ $this->timestamps = $timestamps;
580
  * Front Navigation
581
  * Renders navigation with bootstrap support
582
  * @since 1.7
583
- * @version 1.0
584
  */
585
  public function front_navigation( $location = 'top', $pagination = 10 ) {
586
 
587
- if ( ! $this->have_entries() || $this->max_num_pages == 1 ) return;
588
 
589
  ?>
590
  <div class="row pagination-<?php echo $location; ?>">
591
- <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
592
 
593
  <?php $this->front_pagination( $pagination ); ?>
594
 
@@ -601,10 +1129,12 @@ $this->timestamps = $timestamps;
601
  /**
602
  * Navigation Wrapper
603
  * @since 0.1
604
- * @version 1.1
605
  */
606
  public function navigation( $location = 'top', $id = '' ) {
607
 
 
 
608
  ?>
609
  <h2 class="screen-reader-text sr-only"><?php _e( 'Log entries navigation', 'mycred' ); ?></h2>
610
  <div class="tablenav-pages<?php if ( $this->max_num_pages == 1 ) echo ' one-page'; ?>">
@@ -620,11 +1150,11 @@ $this->timestamps = $timestamps;
620
  /**
621
  * Front Pagination
622
  * @since 1.7
623
- * @version 1.0.1
624
  */
625
  public function front_pagination( $pages_to_show = 5 ) {
626
 
627
- if ( ! $this->have_entries() ) return;
628
 
629
  $page_links = array();
630
  $total_pages = $this->max_num_pages;
@@ -715,10 +1245,12 @@ $this->timestamps = $timestamps;
715
  /**
716
  * Pagination
717
  * @since 1.4
718
- * @version 1.1
719
  */
720
  public function pagination( $location = 'top', $id = '' ) {
721
 
 
 
722
  $page_links = array();
723
  $output = '';
724
  $total_pages = $this->max_num_pages;
@@ -828,11 +1360,12 @@ $this->timestamps = $timestamps;
828
  /**
829
  * Display
830
  * @since 0.1
831
- * @version 1.0
832
  */
833
  public function display() {
834
 
835
- echo $this->get_display();
 
836
 
837
  }
838
 
@@ -840,10 +1373,12 @@ $this->timestamps = $timestamps;
840
  * Get Display
841
  * Generates a table for our results.
842
  * @since 0.1
843
- * @version 1.1.1
844
  */
845
  public function get_display() {
846
 
 
 
847
  $this->table_headers();
848
 
849
  $table_class = 'table table-condensed mycred-table';
@@ -933,11 +1468,12 @@ $this->timestamps = $timestamps;
933
  /**
934
  * The Entry
935
  * @since 0.1
936
- * @version 1.1
937
  */
938
  public function the_entry( $log_entry, $wrap = 'td' ) {
939
 
940
- echo $this->get_the_entry( $log_entry, $wrap );
 
941
 
942
  }
943
 
@@ -946,10 +1482,12 @@ $this->timestamps = $timestamps;
946
  * Generated a single entry row depending on the columns used / requested.
947
  * @filter mycred_log_date
948
  * @since 0.1
949
- * @version 1.4.1
950
  */
951
  public function get_the_entry( $log_entry, $wrap = 'td' ) {
952
 
 
 
953
  $date_format = get_option( 'date_format' ) . ' ' . get_option( 'time_format' );
954
  $entry_data = '';
955
 
@@ -1020,7 +1558,7 @@ $this->timestamps = $timestamps;
1020
  // Amount Column
1021
  case 'creds' :
1022
 
1023
- $content = $creds = $this->core->format_creds( $log_entry->creds );
1024
  $content = apply_filters( 'mycred_log_creds', $content, $log_entry->creds, $log_entry );
1025
  $data = ' data-raw="' . esc_attr( $log_entry->creds ) . '"';
1026
 
@@ -1029,7 +1567,7 @@ $this->timestamps = $timestamps;
1029
  // Log Entry Column
1030
  case 'entry' :
1031
 
1032
- $content = $this->core->parse_template_tags( $log_entry->entry, $log_entry );
1033
  $content = apply_filters( 'mycred_log_entry', $content, $log_entry->entry, $log_entry );
1034
  $data = ' data-raw="' . esc_attr( $log_entry->entry ) . '"';
1035
 
@@ -1056,11 +1594,11 @@ $this->timestamps = $timestamps;
1056
  /**
1057
  * Row Actions
1058
  * @since 1.7
1059
- * @version 1.0
1060
  */
1061
  public function get_row_actions( $entry, $user ) {
1062
 
1063
- if ( ! $this->is_admin ) return;
1064
 
1065
  $filter_label = __( 'Filter by User', 'mycred' );
1066
  if ( $user === false )
@@ -1100,12 +1638,12 @@ $this->timestamps = $timestamps;
1100
  * Exporter
1101
  * Displays all available export options.
1102
  * @since 0.1
1103
- * @version 1.1
1104
  */
1105
  public function exporter( $title = '', $is_profile = false ) {
1106
 
1107
  // Must be logged in
1108
- if ( ! is_user_logged_in() ) return;
1109
 
1110
  // Export options
1111
  $exports = mycred_get_log_exports();
@@ -1164,10 +1702,12 @@ jQuery(function($) {
1164
  /**
1165
  * Log Search
1166
  * @since 0.1
1167
- * @version 1.0.4
1168
  */
1169
  public function search() {
1170
 
 
 
1171
  if ( isset( $_GET['s'] ) && $_GET['s'] != '' )
1172
  $serarch_string = $_GET['s'];
1173
  else
@@ -1186,10 +1726,12 @@ jQuery(function($) {
1186
  /**
1187
  * Filter by Dates
1188
  * @since 0.1
1189
- * @version 1.0
1190
  */
1191
  public function filter_dates( $url = '' ) {
1192
 
 
 
1193
  $date_sorting = apply_filters( 'mycred_sort_by_time', array(
1194
  '' => __( 'All', 'mycred' ),
1195
  'today' => __( 'Today', 'mycred' ),
@@ -1251,34 +1793,14 @@ jQuery(function($) {
1251
 
1252
  }
1253
 
1254
- /**
1255
- * Get References
1256
- * Returns all available references in the database.
1257
- * @since 0.1
1258
- * @version 1.1
1259
- */
1260
- protected function get_refs( $req = array() ) {
1261
-
1262
- $refs = mycred_get_used_references( $this->args['ctype'] );
1263
-
1264
- foreach ( $refs as $i => $ref ) {
1265
- if ( ! empty( $req ) && ! in_array( $ref, $req ) )
1266
- unset( $refs[ $i ] );
1267
- }
1268
- $refs = array_values( $refs );
1269
-
1270
- return apply_filters( 'mycred_log_get_refs', $refs );
1271
-
1272
- }
1273
-
1274
  /**
1275
  * Get Time from Filter
1276
  * @since 0.1
1277
- * @version 1.0
1278
  */
1279
  protected function get_time_for_filter( $timestamp ) {
1280
 
1281
- $start = strtotime( date( 'Y-m-d 00:00:00', $timestamp ) );
1282
  $end = $start + ( DAY_IN_SECONDS - 1 );
1283
 
1284
  return $start . ',' . $end;
@@ -1314,6 +1836,54 @@ jQuery(function($) {
1314
 
1315
  }
1316
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1317
  /**
1318
  * Get Timestamp
1319
  * @since 1.7
@@ -1321,6 +1891,7 @@ jQuery(function($) {
1321
  */
1322
  protected function get_timestamp( $string = '' ) {
1323
 
 
1324
  if ( is_numeric( $string ) && strtotime( date( 'd-m-Y H:i:s', $string ) ) === (int) $string )
1325
  return $string;
1326
 
@@ -1333,6 +1904,62 @@ jQuery(function($) {
1333
 
1334
  }
1335
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1336
  /**
1337
  * Reset Query
1338
  * @since 1.3
@@ -1533,7 +2160,7 @@ endif;
1533
  * Returns an array of references currently existing in the log
1534
  * for a particular point type. Will return false if empty.
1535
  * @since 1.5
1536
- * @version 1.3
1537
  */
1538
  if ( ! function_exists( 'mycred_get_all_references' ) ) :
1539
  function mycred_get_all_references() {
@@ -1653,11 +2280,12 @@ if ( ! function_exists( 'mycred_get_all_references' ) ) :
1653
  $addons['buy_creds_with_zombaio'] = __( 'buyCRED Purchase (Zombaio)', 'mycred' );
1654
  $addons['buy_creds_with_netbilling'] = __( 'buyCRED Purchase (NETBilling)', 'mycred' );
1655
  $addons['buy_creds_with_bitpay'] = __( 'buyCRED Purchase (BitPay)', 'mycred' );
 
1656
  $addons = apply_filters( 'mycred_buycred_refs', $addons );
1657
  }
1658
 
1659
  if ( class_exists( 'myCRED_Coupons_Module' ) )
1660
- $addons['coupon'] = __( 'Coupon Purchase', 'mycred' );
1661
 
1662
  if ( defined( 'myCRED_GATE' ) ) {
1663
  if ( class_exists( 'WooCommerce' ) ) {
@@ -1707,29 +2335,20 @@ endif;
1707
  * Returns an array of references currently existing in the log
1708
  * for a particular point type. Will return false if empty.
1709
  * @since 1.5
1710
- * @version 1.0
1711
  */
1712
  if ( ! function_exists( 'mycred_get_used_references' ) ) :
1713
- function mycred_get_used_references( $type = MYCRED_DEFAULT_TYPE_KEY ) {
1714
 
1715
- $references = wp_cache_get( 'mycred_references' );
1716
 
1717
- if ( false === $references ) {
1718
-
1719
- global $wpdb;
1720
 
1721
- $mycred = mycred( $type );
1722
- $references = $wpdb->get_col( $wpdb->prepare( "
1723
- SELECT DISTINCT ref
1724
- FROM {$mycred->log_table}
1725
- WHERE ref != ''
1726
- AND ctype = %s;", $type ) );
1727
-
1728
- if ( $references ) wp_cache_set( 'mycred_references', $references );
1729
-
1730
- }
1731
 
1732
- return apply_filters( 'mycred_used_references', $references );
1733
 
1734
  }
1735
  endif;
@@ -1960,7 +2579,7 @@ endif;
1960
  * Get Search Args
1961
  * Converts URL arguments into an array of log query friendly arguments.
1962
  * @since 1.7
1963
- * @version 1.0
1964
  */
1965
  if ( ! function_exists( 'mycred_get_search_args' ) ) :
1966
  function mycred_get_search_args( $exclude = NULL ) {
@@ -1973,16 +2592,17 @@ if ( ! function_exists( 'mycred_get_search_args' ) ) :
1973
  foreach ( $_GET as $key => $value ) {
1974
 
1975
  $key = sanitize_key( $key );
1976
-
1977
- if ( $key === '' || in_array( $key, array( 'page', 'mycred-export', 'mycred-action', 'action', 'set', '_token' ) ) ) continue;
1978
 
1979
- if ( in_array( $value, array( 'compare' ) ) )
1980
- $value = urldecode( $value );
1981
 
1982
  if ( in_array( $key, array( 'user_id', 'paged', 'number' ) ) ) {
1983
  $value = absint( $value );
1984
  if ( $value === 0 ) continue;
1985
  }
 
 
 
 
1986
  else {
1987
  $value = sanitize_text_field( $value );
1988
  if ( strlen( $value ) == 0 ) continue;
@@ -1994,9 +2614,6 @@ if ( ! function_exists( 'mycred_get_search_args' ) ) :
1994
  elseif ( $key === 'show' )
1995
  $key = 'time';
1996
 
1997
- elseif ( $key === 'show' )
1998
- $key = 'time';
1999
-
2000
  $search_args[ $key ] = $value;
2001
 
2002
  }
@@ -2004,14 +2621,34 @@ if ( ! function_exists( 'mycred_get_search_args' ) ) :
2004
 
2005
  if ( ! empty( $search_args ) ) {
2006
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2007
  if ( array_key_exists( 'start', $search_args ) && array_key_exists( 'end', $search_args ) ) {
2008
- $search_args['amount'] = array( 'start' => $search_args['start'], 'end' => $search_args['end'] );
2009
  unset( $search_args['start'] );
2010
  unset( $search_args['end'] );
2011
  }
2012
 
2013
  elseif ( array_key_exists( 'num', $search_args ) && array_key_exists( 'compare', $search_args ) ) {
2014
- $search_args['amount'] = array( 'num' => $search_args['num'], 'compare' => $search_args['compare'] );
2015
  unset( $search_args['num'] );
2016
  unset( $search_args['compare'] );
2017
  }
@@ -2022,5 +2659,3 @@ if ( ! function_exists( 'mycred_get_search_args' ) ) :
2022
 
2023
  }
2024
  endif;
2025
-
2026
- ?>
5
  * Query Log
6
  * @see http://codex.mycred.me/classes/mycred_query_log/
7
  * @since 0.1
8
+ * @version 1.7
9
  */
10
  if ( ! class_exists( 'myCRED_Query_Log' ) ) :
11
  class myCRED_Query_Log {
12
 
13
+ public $now = 0;
14
+ public $render_mode = true;
15
+ public $args = array();
16
+ public $request = '';
17
+ public $num_rows = 0;
18
+ public $max_num_pages = 1;
19
+ public $total_rows = 0;
20
 
21
+ public $results = array();
22
 
23
  public $headers = array();
24
  public $hidden_headers = array();
25
  public $core;
26
  public $is_admin = false;
27
  public $references = array();
28
+ public $types = array();
29
+ public $refs = array();
30
 
31
  /**
32
  * Construct
33
  */
34
  public function __construct( $args = array(), $array = false ) {
35
 
36
+ if ( ! MYCRED_ENABLE_LOGGING ) return false;
37
 
38
+ global $wpdb;
39
 
40
  $select = $where = $sortby = $limits = '';
41
  $wheres = array();
42
  $this->now = current_time( 'timestamp' );
43
  $this->references = mycred_get_all_references();
44
 
45
+ /**
46
+ * Populate Query Arguments
47
+ * @uses mycred_query_log_args
48
+ * @see http://codex.mycred.me/filters/mycred_query_log_args/
49
+ */
 
 
 
 
 
 
 
50
  $defaults = array(
51
  'entry_id' => NULL,
52
  'user_id' => NULL,
53
  'ctype' => MYCRED_DEFAULT_TYPE_KEY,
 
54
  'time' => NULL,
55
  'ref' => NULL,
56
  'ref_id' => NULL,
57
  'amount' => NULL,
58
  's' => NULL,
59
  'data' => NULL,
60
+ 'number' => 25,
61
  'offset' => '',
62
+ 'orderby' => 'time',
63
  'order' => 'DESC',
64
+ 'ids' => false, // depreciated as of 1.7.5
65
+ 'fields' => 'all', // in favor for fields
66
  'paged' => $this->get_pagenum()
67
  );
68
+ $this->args = apply_filters( 'mycred_query_log_args', wp_parse_args( $args, $defaults ), $defaults );
69
+
70
+ /**
71
+ * Setup Point Format
72
+ * Make sure the core property is loaded for the correct point type as this will
73
+ * determen how we format point related values. When we have a query for multiple point types,
74
+ * the default type dictates formating. If the default type does not use decimals, neither does any other type.
75
+ */
76
+ $this->core = mycred();
77
+ $this->types[ MYCRED_DEFAULT_TYPE_KEY ] = $this->core;
78
+ $format = '%d';
79
+ if ( isset( $this->core->format['decimals'] ) && $this->core->format['decimals'] > 0 ) {
80
+ $length = 65 - $this->core->format['decimals'];
81
+ $format = 'CAST( %f AS DECIMAL( ' . $length . ', ' . $this->core->format['decimals'] . ' ) )';
82
+ }
83
 
84
+ if ( $this->args['ctype'] !== NULL && ! empty( $this->args['ctype'] ) ) {
 
 
 
85
 
86
+ // Convert string queries to array queries
87
+ if ( ! is_array( $this->args['ctype'] ) ) {
 
88
 
89
+ $point_types = ( ( count( explode( ',', $this->args['ctype'] ) ) > 0 ) ? explode( ',', $this->args['ctype'] ) : array( $this->args['ctype'] ) );
 
90
 
91
+ // Single point type query
92
+ if ( count( $point_types ) == 1 )
93
+ $this->args['ctype'] = array( 'ids' => $point_types[0], 'compare' => '=' );
94
 
95
+ // Multiple point types query
96
+ elseif ( count( $point_types ) > 1 ) {
97
 
98
+ $this->args['ctype'] = array( 'ids' => $point_types, 'compare' => 'IN' );
 
99
 
100
+ }
101
+
102
+ }
103
 
104
+ // Check if this is a single point type query
105
+ // We need to do this to see if the query is for a point type that is not the default one
106
+ // This is to format values correctly based on the point types setup
107
+ if ( ( is_array( $this->args['ctype']['ids'] ) && count( $this->args['ctype']['ids'] ) == 1 ) || ! is_array( $this->args['ctype']['ids'] ) ) {
108
+
109
+ if ( ! is_array( $this->args['ctype']['ids'] ) )
110
+ $requested_point_type = $this->args['ctype']['ids'];
111
+ else
112
+ $requested_point_type = $this->args['ctype']['ids'][0];
113
+
114
+ // If this is a query for a custom point type, change the balance format now
115
+ if ( $requested_point_type != $this->core->cred_id ) {
116
+ $this->core = mycred( $requested_point_type );
117
+ if ( isset( $this->core->format['decimals'] ) && $this->core->format['decimals'] > 0 ) {
118
+ $length = 65 - $this->core->format['decimals'];
119
+ $format = 'CAST( %f AS DECIMAL( ' . $length . ', ' . $this->core->format['decimals'] . ' ) )';
120
+ }
121
+ }
122
 
123
+ if ( ! array_key_exists( $requested_point_type, $this->types ) )
124
+ $this->types[ $requested_point_type ] = $this->core;
125
 
126
+ }
 
127
 
128
+ // Indicate that this query uses multiple point types.
129
+ // Mainly used to load the correct label for the point amount column in the table
130
+ elseif ( is_array( $this->args['ctype']['ids'] ) && count( $this->args['ctype']['ids'] ) > 1 ) {
131
 
132
+ // Populate the types property with each point type object
133
+ // This is used so the correct point type format is shown in the table for each row
134
+ foreach ( $this->args['ctype']['ids'] as $point_type_key ) {
135
+ if ( ! array_key_exists( $point_type_key, $this->types ) )
136
+ $this->types[ $point_type_key ] = mycred( $point_type_key );
137
  }
138
+
139
  }
140
 
141
+ }
142
 
143
+ /**
144
+ * Entry ID Query
145
+ *
146
 
147
+ // Singular check
148
+ entry_id=1
149
+ 'entry_id' => array(
150
+ 'ids' => 1,
151
+ 'compare' => '='
152
+ )
153
+ 'entry_id' => array(
154
+ 'ids' => 1,
155
+ 'compare' => '!='
156
+ )
157
+
158
+ // Multiple checks
159
+ entry_id=1,2,3
160
+ 'entry_id' => array(
161
+ 'ids' => array( 1, 2, 3 )
162
+ 'compare' => 'IN'
163
+ )
164
+
165
+ */
166
+ if ( $this->args['entry_id'] !== NULL && ! empty( $this->args['entry_id'] ) ) {
167
+
168
+ // Convert string queries to array queries
169
+ if ( ! is_array( $this->args['entry_id'] ) ) {
170
+
171
+ $entry_ids = ( ( count( explode( ',', $this->args['entry_id'] ) ) > 0 ) ? explode( ',', $this->args['entry_id'] ) : array( $this->args['entry_id'] ) );
172
+
173
+ // Single user query
174
+ if ( count( $entry_ids ) == 1 )
175
+ $this->args['entry_id'] = array( 'ids' => $entry_ids[0], 'compare' => '=' );
176
 
177
+ // Multiple user query
178
+ elseif ( count( $entry_ids ) > 1 )
179
+ $this->args['entry_id'] = array( 'ids' => $entry_ids, 'compare' => 'IN' );
180
+
181
+ }
182
+
183
+ // Make sure query is properly formatted
184
+ if ( array_key_exists( 'ids', $this->args['entry_id'] ) && array_key_exists( 'compare', $this->args['entry_id'] ) ) {
185
+
186
+ // IN or NOT IN comparisons
187
+ if ( in_array( $this->args['entry_id']['compare'], array( 'IN', 'NOT IN' ) ) && is_array( $this->args['entry_id']['ids'] ) )
188
+ $wheres[] = $wpdb->prepare( "id IN ( " . str_repeat( "%d,", ( count( $this->args['entry_id']['ids'] ) ) ) . " )", $this->args['entry_id']['ids'] );
189
+
190
+ // All other supported comparisons
191
+ elseif ( in_array( $this->args['entry_id']['compare'], array( '=', '!=' ) ) && ! is_array( $this->args['entry_id']['ids'] ) ) {
192
+
193
+ $compare = esc_sql( $this->args['entry_id']['compare'] );
194
+ $wheres[] = $wpdb->prepare( "id {$compare} %d", absint( $this->args['entry_id']['ids'] ) );
195
+
196
+ }
197
 
198
  }
199
 
200
  }
201
 
202
+ /**
203
+ * Point Type Query
204
+ *
205
+
206
+ // Singular check
207
+ ctype=mycred_default
208
+ 'ctype' => array(
209
+ 'ids' => 'mycred_default',
210
+ 'compare' => '='
211
+ )
212
+ 'ctype' => array(
213
+ 'ids' => 'mycred_default',
214
+ 'compare' => '!='
215
+ )
216
 
217
+ // Multiple checks
218
+ ctype=mycred_default,custom_point_type
219
+ 'ctype' => array(
220
+ 'ids' => array( 'mycred_default', 'custom_point_type' )
221
+ 'compare' => 'IN'
222
+ )
223
 
224
+ */
225
+ if ( $this->args['ctype'] !== NULL && ! empty( $this->args['ctype'] ) ) {
226
 
227
+ // Make sure query is properly formatted
228
+ if ( array_key_exists( 'ids', $this->args['ctype'] ) && array_key_exists( 'compare', $this->args['ctype'] ) ) {
229
+
230
+ // IN or NOT IN comparisons
231
+ if ( in_array( $this->args['ctype']['compare'], array( 'IN', 'NOT IN' ) ) && is_array( $this->args['ctype']['ids'] ) )
232
+ $wheres[] = $wpdb->prepare( "ctype IN ( %s" . str_repeat( ",%s", ( count( $this->args['ctype']['ids'] ) - 1 ) ) . " )", $this->args['ctype']['ids'] );
233
+
234
+ // All other supported comparisons
235
+ elseif ( in_array( $this->args['ctype']['compare'], array( '=', '!=' ) ) && ! is_array( $this->args['ctype']['ids'] ) ) {
236
+
237
+ $compare = esc_sql( $this->args['ctype']['compare'] );
238
+ $wheres[] = $wpdb->prepare( "ctype {$compare} %s", sanitize_key( $this->args['ctype']['ids'] ) );
239
 
240
  }
241
+
242
  }
243
 
244
+ }
245
 
246
+ /**
247
+ * User ID Query
248
+ *
249
 
250
+ // Singular check
251
+ user_id=1
252
+ 'user_id' => array(
253
+ 'ids' => 1,
254
+ 'compare' => '='
255
+ )
256
+ 'user_id' => array(
257
+ 'ids' => 1,
258
+ 'compare' => '!='
259
+ )
260
+
261
+ // Multiple checks
262
+ user_id=1,2,3
263
+ 'user_id' => array(
264
+ 'ids' => array( 1, 2, 3 )
265
+ 'compare' => 'IN'
266
+ )
267
+
268
+ */
269
+ if ( $this->args['user_id'] !== NULL && ! empty( $this->args['user_id'] ) ) {
270
+
271
+ // Convert string queries to array queries
272
+ if ( ! is_array( $this->args['user_id'] ) ) {
273
 
274
+ $user_ids = ( ( count( explode( ',', $this->args['user_id'] ) ) > 0 ) ? explode( ',', $this->args['user_id'] ) : array( $this->args['user_id'] ) );
275
+
276
+ // Single user query
277
+ if ( count( $user_ids ) == 1 )
278
+ $this->args['user_id'] = array( 'ids' => $user_ids[0], 'compare' => '=' );
279
+
280
+ // Multiple user query
281
+ elseif ( count( $user_ids ) > 1 )
282
+ $this->args['user_id'] = array( 'ids' => $user_ids, 'compare' => 'IN' );
283
+
284
+ }
285
+
286
+ // Make sure query is properly formatted
287
+ if ( array_key_exists( 'ids', $this->args['user_id'] ) && array_key_exists( 'compare', $this->args['user_id'] ) ) {
288
+
289
+ // IN or NOT IN comparisons
290
+ if ( in_array( $this->args['user_id']['compare'], array( 'IN', 'NOT IN' ) ) && is_array( $this->args['user_id']['ids'] ) )
291
+ $wheres[] = $wpdb->prepare( "user_id IN ( %d" . str_repeat( ",%d", ( count( $this->args['user_id']['ids'] ) - 1 ) ) . " )", $this->args['user_id']['ids'] );
292
+
293
+ // All other supported comparisons
294
+ elseif ( in_array( $this->args['user_id']['compare'], array( '=', '!=' ) ) && ! is_array( $this->args['user_id']['ids'] ) ) {
295
+
296
+ $compare = esc_sql( $this->args['user_id']['compare'] );
297
+ $wheres[] = $wpdb->prepare( "user_id {$compare} %d", absint( $this->args['user_id']['ids'] ) );
298
+
299
+ }
300
 
301
  }
302
 
303
  }
304
 
305
+ /**
306
+ * Reference Query
307
+ *
308
 
309
+ // Singular check
310
+ ref=approved_comment
311
+ 'ref' => array(
312
+ 'ids' => 'approved_comment',
313
+ 'compare' => '='
314
+ )
315
+ 'ref' => array(
316
+ 'ids' => 'approved_comment',
317
+ 'compare' => '!='
318
+ )
319
 
320
+ // Multiple checks
321
+ ref=approved_comment,published_content
322
+ 'ref' => array(
323
+ 'ids' => array( 'approved_comment', 'published_content' )
324
+ 'compare' => 'IN'
325
+ )
326
 
327
+ */
328
+ if ( $this->args['ref'] !== NULL && ! empty( $this->args['ref'] ) ) {
329
 
330
+ // Convert string queries to array queries
331
+ if ( ! is_array( $this->args['ref'] ) ) {
 
332
 
333
+ $references = ( ( count( explode( ',', $this->args['ref'] ) ) > 0 ) ? explode( ',', $this->args['ref'] ) : array( $this->args['ref'] ) );
334
+
335
+ // Single reference query
336
+ if ( count( $references ) == 1 )
337
+ $this->args['ref'] = array( 'ids' => $references[0], 'compare' => '=' );
338
+
339
+ // Multiple reference query
340
+ elseif ( count( $references ) > 1 )
341
+ $this->args['ref'] = array( 'ids' => $references, 'compare' => 'IN' );
342
 
343
  }
344
 
345
+ // Make sure query is properly formatted
346
+ if ( array_key_exists( 'ids', $this->args['ref'] ) && array_key_exists( 'compare', $this->args['ref'] ) ) {
347
 
348
+ // IN or NOT IN comparisons
349
+ if ( in_array( $this->args['ref']['compare'], array( 'IN', 'NOT IN' ) ) && is_array( $this->args['ref']['ids'] ) )
350
+ $wheres[] = $wpdb->prepare( "ref IN ( %s" . str_repeat( ",%s", ( count( $this->args['ref']['ids'] ) - 1 ) ) . " )", $this->args['ref']['ids'] );
351
+
352
+ // All other supported comparisons
353
+ elseif ( in_array( $this->args['ref']['compare'], array( '=', '!=' ) ) && ! is_array( $this->args['ref']['ids'] ) ) {
354
+
355
+ $compare = esc_sql( $this->args['ref']['compare'] );
356
+ $wheres[] = $wpdb->prepare( "ref {$compare} %s", sanitize_key( $this->args['ref']['ids'] ) );
357
 
 
 
 
358
  }
359
 
360
+ }
361
 
362
+ }
 
363
 
364
+ /**
365
+ * Reference ID Query
366
+ *
367
+
368
+ // Singular check
369
+ ref_id=1
370
+ 'ref_id' => array(
371
+ 'ids' => 1,
372
+ 'compare' => '='
373
+ )
374
+ 'ref_id' => array(
375
+ 'ids' => 1,
376
+ 'compare' => '!='
377
+ )
378
+
379
+ // Multiple checks
380
+ ref_id=1,2,3
381
+ 'ref_id' => array(
382
+ 'ids' => array( 1, 2, 3 )
383
+ 'compare' => 'IN'
384
+ )
385
+
386
+ */
387
+ if ( $this->args['ref_id'] !== NULL && ! empty( $this->args['ref_id'] ) ) {
388
 
389
+ // Convert string queries to array queries
390
+ if ( ! is_array( $this->args['ref_id'] ) ) {
391
+
392
+ $reference_ids = ( ( count( explode( ',', $this->args['ref_id'] ) ) > 0 ) ? explode( ',', $this->args['ref_id'] ) : array( $this->args['ref_id'] ) );
393
+
394
+ // Single id query
395
+ if ( count( $reference_ids ) == 1 )
396
+ $this->args['ref_id'] = array( 'ids' => $reference_ids[0], 'compare' => '=' );
397
+
398
+ // Multiple id query
399
+ elseif ( count( $reference_ids ) > 1 )
400
+ $this->args['ref_id'] = array( 'ids' => $reference_ids, 'compare' => 'IN' );
401
+
402
+ }
403
+
404
+ // Make sure query is properly formatted
405
+ if ( array_key_exists( 'ids', $this->args['ref_id'] ) && array_key_exists( 'compare', $this->args['ref_id'] ) ) {
406
+
407
+ // IN or NOT IN comparisons
408
+ if ( in_array( $this->args['ref_id']['compare'], array( 'IN', 'NOT IN' ) ) && is_array( $this->args['ref_id']['ids'] ) )
409
+ $wheres[] = $wpdb->prepare( "ref_id IN ( %d" . str_repeat( ",%d", ( count( $this->args['ref_id']['ids'] ) - 1 ) ) . " )", $this->args['ref_id']['ids'] );
410
+
411
+ // All other supported comparisons
412
+ elseif ( in_array( $this->args['ref_id']['compare'], array( '=', '!=', '>', '>=', '<', '<=' ) ) && ! is_array( $this->args['ref_id']['ids'] ) ) {
413
+
414
+ $compare = esc_sql( $this->args['ref_id']['compare'] );
415
+ $wheres[] = $wpdb->prepare( "ref_id {$compare} %d", absint( $this->args['ref_id']['ids'] ) );
416
 
417
  }
418
 
420
 
421
  }
422
 
423
+ /**
424
+ * Amount Query
425
+ *
426
+
427
+ // Comparisons
428
+ 'amount' => array(
429
+ 'num' => 10,
430
+ 'compare' => '<'
431
+ )
432
+
433
+ // Between (Range)
434
+ 'amount' => array(
435
+ 'num' => array( 1, 10 ),
436
+ 'compare' => 'BETWEEN'
437
+ )
438
+
439
+ // Specific amount
440
+ amount=10
441
+ 'amount' => array(
442
+ 'num' => 10,
443
+ 'compare' => '='
444
+ )
445
+
446
+ // One of these (list)
447
+ amount=1,10,12,14
448
+ 'amount' => array(
449
+ 'num' => array( 1, 10, 12, 14 ),
450
+ 'compare' => 'IN'
451
+ )
452
 
453
+ */
454
+ if ( $this->args['amount'] !== NULL && ! empty( $this->args['amount'] ) ) {
455
 
456
+ // Convert string queries to array queries
457
+ if ( ! is_array( $this->args['amount'] ) ) {
458
+
459
+ $point_value = ( ( count( explode( ',', $this->args['amount'] ) ) > 0 ) ? explode( ',', $this->args['amount'] ) : array( $this->args['amount'] ) );
460
+
461
+ // Single amount query
462
+ if ( count( $point_value ) == 1 )
463
+ $this->args['amount'] = array( 'num' => $point_value[0], 'compare' => '=' );
464
+
465
+ // Multiple amounts query
466
+ elseif ( count( $point_value ) > 1 )
467
+ $this->args['amount'] = array( 'num' => $point_value, 'compare' => 'IN' );
468
 
 
 
 
 
469
  }
470
 
471
+ // Make sure query is properly formatted
472
+ if ( array_key_exists( 'num', $this->args['amount'] ) && array_key_exists( 'compare', $this->args['amount'] ) ) {
473
 
474
+ // Between (requires num to be an array)
475
+ if ( in_array( $this->args['amount']['compare'], array( 'BETWEEN', 'NOT BETWEEN' ) ) && is_array( $this->args['amount']['num'] ) ) {
476
 
477
+ $between = esc_sql( $this->args['amount']['compare'] );
478
+ $wheres[] = $wpdb->prepare( "creds {$between} {$format} AND {$format}", $this->args['amount']['num'] );
479
+
480
+ }
481
+
482
+ // IN or NOT IN comparisons
483
+ elseif ( in_array( $this->args['amount']['compare'], array( 'IN', 'NOT IN' ) ) && is_array( $this->args['amount']['num'] ) )
484
+ $wheres[] = $wpdb->prepare( "creds IN ( {$format}" . str_repeat( ',' . $format, ( count( $this->args['amount']['num'] ) - 1 ) ) . " )", $this->args['amount']['num'] );
485
+
486
+ // All other supported comparisons
487
+ elseif ( in_array( $this->args['amount']['compare'], array( '=', '!=', '>', '>=', '<', '<=' ) ) && ! is_array( $this->args['amount']['num'] ) ) {
488
+
489
+ $compare = esc_sql( $this->args['amount']['compare'] );
490
+ $wheres[] = $wpdb->prepare( "creds {$compare} {$format}", $this->args['amount']['num'] );
491
 
 
 
 
 
492
  }
493
 
494
  }
495
 
496
+ }
497
+
498
+ /**
499
+ * Time Query
500
+ * Supports either YYYY-MM-DD or MM/DD/YYYY date formats or unix timestamps
501
+ * Dates can use time for more precise queries but it is not required. If no time is set, the dates last second is used
502
+ * So e.g. 2016-01-01 will become 2016-01-01 23:59:59. If this is not desired, then a time has to be included when using string dates.
503
+ * Not applicable when providing unix timestamps.
504
+ * @uses strtotime() http://php.net/manual/en/function.strtotime.php
505
+ *
506
+
507
+ // Todays entries
508
+ time=today
509
+ 'time' => array(
510
+ 'dates' => 'today',
511
+ 'compare' => '='
512
+ )
513
+
514
+ // Yesterdays entries
515
+ time=yesterday
516
+ 'time' => array(
517
+ 'dates' => 'yesterday',
518
+ 'compare' => '='
519
+ )
520
+
521
+ // This weeks entries
522
+ time=thisweek
523
+ 'time' => array(
524
+ 'dates' => 'thisweek',
525
+ 'compare' => '='
526
+ )
527
+
528
+ // This months entries
529
+ time=thismonth
530
+ 'time' => array(
531
+ 'dates' => 'thismonth',
532
+ 'compare' => '='
533
+ )
534
+
535
+ // Between two dates
536
+ 'time' => array(
537
+ 'dates' => array( '2016-01-01', '2016-12-31' ),
538
+ 'compare' => 'BETWEEN'
539
+ )
540
+
541
+ // Specific date
542
+ time=2016-01-01
543
+ 'time' => array(
544
+ 'dates' => '2016-01-01',
545
+ 'compare' => '='
546
+ )
547
+
548
+ // Comparisons
549
+ 'time' => array(
550
+ 'dates' => '2016-01-01 00:00:00',
551
+ 'compare' => '<='
552
+ )
553
+
554
+ */
555
+ if ( $this->args['time'] !== NULL && ! empty( $this->args['time'] ) ) {
556
+
557
+ // Convert string queries to array queries
558
+ if ( ! is_array( $this->args['time'] ) ) {
559
+
560
+ $datetimes = ( ( count( explode( ',', $this->args['time'] ) ) > 0 ) ? explode( ',', $this->args['time'] ) : array( $this->args['time'] ) );
561
+ $dates = $this->get_timestamps( $datetimes );
562
+
563
+ if ( $dates !== false ) {
564
+
565
+ // Single time query
566
+ if ( count( $dates ) == 1 )
567
+ $this->args['time'] = array( 'dates' => $dates[0], 'compare' => '=' );
568
+
569
+ // Keyword time query
570
+ elseif ( count( $dates ) == 2 && in_array( $this->args['time'], array( 'today', 'yesterday', 'thisweek', 'thismonth' ) ) )
571
+ $this->args['time'] = array( 'dates' => $dates, 'compare' => 'BETWEEN' );
572
+
573
+ // Multiple time query
574
+ elseif ( count( $dates ) > 1 )
575
+ $this->args['time'] = array( 'dates' => $dates, 'compare' => 'IN' );
576
+
577
+ }
578
+
579
  }
580
 
581
+ // Make sure query is properly formatted
582
+ if ( array_key_exists( 'dates', $this->args['time'] ) && array_key_exists( 'compare', $this->args['time'] ) ) {
583
 
584
+ // Between (requires dates to be an array)
585
+ if ( in_array( $this->args['time']['compare'], array( 'BETWEEN', 'NOT BETWEEN' ) ) && is_array( $this->args['time']['dates'] ) ) {
586
 
587
+ $between = esc_sql( $this->args['time']['compare'] );
588
+ $dates = $this->get_timestamps( $this->args['time']['dates'] );
589
+ if ( $dates !== false )
590
+ $wheres[] = $wpdb->prepare( "time {$between} %d AND %d", $dates );
591
 
592
+ $this->args['time']['dates'] = $dates;
593
+
594
+ }
595
+
596
+ // IN or NOT IN comparisons
597
+ elseif ( in_array( $this->args['time']['compare'], array( 'IN', 'NOT IN' ) ) && is_array( $this->args['time']['dates'] ) ) {
598
+
599
+ $dates = $this->get_timestamps( $this->args['time']['dates'] );
600
+ if ( $dates !== false )
601
+ $wheres[] = $wpdb->prepare( "time IN ( %d" . str_repeat( ",%d", ( count( $this->args['time']['dates'] ) - 1 ) ) . " )", $dates );
602
+
603
+ }
604
+
605
+ // All other supported comparisons
606
+ elseif ( in_array( $this->args['time']['compare'], array( '=', '!=', '>', '>=', '<', '<=' ) ) && ! is_array( $this->args['time']['dates'] ) ) {
607
+
608
+ $compare = esc_sql( $this->args['time']['compare'] );
609
+ $date = $this->get_timestamp( $this->args['time']['dates'] );
610
+ if ( $date !== false )
611
+ $wheres[] = $wpdb->prepare( "time {$compare} %d", $date );
612
 
 
613
  }
 
 
 
614
 
615
  }
616
 
617
  }
618
 
619
+ /**
620
+ * Search Entries Query
621
+ *
622
+
623
+ // Search
624
+ s=hello
625
+
626
+ */
627
+ if ( $this->args['s'] !== NULL && ! empty( $this->args['s'] ) ) {
628
 
629
  $search_query = sanitize_text_field( $this->args['s'] );
630
 
631
+ // Check if we are using wildcards
632
+ if ( str_replace( '%', '', $search_query ) != $search_query )
633
+ $wheres[] = $wpdb->prepare( "entry LIKE %s", $search_query );
634
 
635
+ else
636
+ $wheres[] = $wpdb->prepare( "entry = %s", $search_query );
637
 
638
  }
639
 
640
+ /**
641
+ * Search Data Column Query
642
+ *
643
+
644
+ // Search
645
+ data=boo
646
+
647
+ */
648
+ if ( $this->args['data'] !== NULL && ! empty( $this->args['data'] ) ) {
649
 
650
  $data_query = sanitize_text_field( $this->args['data'] );
651
 
652
+ // Check if we are using wildcards
653
+ if ( str_replace( '%', '', $data_query ) != $data_query )
654
+ $wheres[] = $wpdb->prepare( "data LIKE %s", $data_query );
655
 
656
+ else
657
+ $wheres[] = $wpdb->prepare( "data = %s", $data_query );
658
 
659
  }
660
 
661
+ /**
662
+ * Ordering of results
663
+ *
664
+
665
+ // Single order
666
+ orderby=time&order=ASC
667
+
668
+ // Multiple orders
669
+ 'orderby' => array( 'time' => 'ASC', 'id' => 'ASC' )
670
+
671
+ */
672
+ $sortby = "ORDER BY time DESC";
673
+ if ( ! empty( $this->args['orderby'] ) ) {
674
 
675
  // Make sure $sortby is valid
676
  $allowed = apply_filters( 'mycred_allowed_sortby', array( 'id', 'ref', 'ref_id', 'user_id', 'creds', 'ctype', 'entry', 'data', 'time' ) );
677
+
678
+ // Convert strings to array
679
+ if ( ! is_array( $this->args['orderby'] ) && ! empty( $this->args['order'] ) ) {
680
+
681
+ $this->args['orderby'] = array( $this->args['orderby'] => $this->args['order'] );
682
+
683
+ }
684
+
685
+ $orders = array();
686
+ $duplicate_check = array();
687
+ foreach ( $this->args['orderby'] as $orderby => $order ) {
688
+
689
+ $orderby = sanitize_text_field( $orderby );
690
+ if ( ! in_array( $orderby, $allowed ) ) $orderby = 'time';
691
+
692
+ // Make sure we ar enot attempting to order by the same column multiple times
693
+ if ( in_array( $orderby, $duplicate_check ) ) continue;
694
+
695
+ $order = sanitize_text_field( $order );
696
+ if ( ! in_array( $order, array( 'ASC', 'DESC' ) ) ) $order = 'DESC';
697
+ $order = strtoupper( $order );
698
+
699
+ $orders[] = $orderby . ' ' . $order;
700
+ $duplicate_check[] = $orderby;
701
+
702
+ }
703
+
704
+ $sortby = "ORDER BY " . implode( ', ', $orders );
705
 
706
  }
707
 
708
+ /**
709
+ * Results Return Option
710
+ * Added in 1.7.5, this allows us to use this class to return specific sets of information.
711
+ * If fields is set to anything but "all", the results table can not be used.
712
+ *
713
+
714
+ // Everything (default)
715
+ fields=all
716
+ ids=0 (depreciated)
717
+
718
+ // Return entry ids
719
+ fields=ids
720
+ ids=1 (depreciated)
721
+
722
+ // Column
723
+ fields=user_id
724
+ 'fields' => array( 'user_id' )
725
+
726
+ // Multiple columns
727
+ fields=id,user_id,creds
728
+ 'fields' => array( 'id', 'user_id', 'creds' )
729
+
730
+ */
731
+ $select = '*';
732
+ $get_results = true;
733
+ $get_column = false;
734
+
735
+ // Support will be removed in future version
736
+ if ( (bool) $this->args['ids'] === true )
737
+ $this->args['fields'] = array( 'ids' );
738
+
739
+ if ( $this->args['fields'] !== NULL && ! empty( $this->args['fields'] ) ) {
740
+
741
+ // Convert string queries to array queries
742
+ if ( ! is_array( $this->args['fields'] ) ) {
743
+
744
+ $columns = ( ( count( explode( ',', $this->args['fields'] ) ) > 0 ) ? explode( ',', $this->args['fields'] ) : array( $this->args['fields'] ) );
745
+
746
+ // Return one specific column
747
+ if ( count( $columns ) == 1 )
748
+ $this->args['fields'] = $columns[0];
749
+
750
+ // Return multiple columns
751
+ elseif ( count( $columns ) > 1 )
752
+ $this->args['fields'] = $columns;
753
+
754
+ }
755
+
756
+ // All - default
757
+ if ( ! is_array( $this->args['fields'] ) && $this->args['fields'] == 'all' ) {
758
+
759
+ $select = '*';
760
+ $this->render_mode = true;
761
+ $get_results = true;
762
+ $get_column = false;
763
+ }
764
+
765
+ // Single column
766
+ elseif ( ( is_array( $this->args['fields'] ) && count( $this->args['fields'] ) == 1 ) || ! is_array( $this->args['fields'] ) ) {
767
 
768
+ $select = ( ( is_array( $this->args['fields'] ) ) ? esc_sql( $this->args['fields'][0] ) : $this->args['fields'] );
769
+ $this->render_mode = false;
770
+ $get_results = false;
771
+ $get_column = true;
772
 
773
+ }
774
+
775
+ // Multiple columns
776
+ elseif ( is_array( $this->args['fields'] ) ) {
777
+
778
+ $select = implode( ', ', $this->args['fields'] );
779
+ $this->render_mode = false;
780
+ $get_results = true;
781
+ $get_column = false;
782
+
783
+ }
784
+
785
+ }
786
+
787
+ /**
788
+ * Number of results to return
789
+ *
790
+
791
+ // Everything
792
+ number=-1
793
+
794
+ // Entries per page
795
+ number=10
796
+
797
+ // Offset
798
+ offset=10&number=10
799
+
800
+ */
801
+ $number = $this->args['number'];
802
+ if ( $number < -1 ) $number = abs( $number );
803
+ elseif ( $number == 0 || $number == -1 ) $number = NULL;
804
+
805
+ /**
806
+ * Set Query Limit
807
+ */
808
  if ( $number !== NULL ) {
809
 
810
  $page = 1;
827
 
828
  }
829
 
830
+ $found_rows = '';
831
+ if ( $limits != '' ) $found_rows = 'SQL_CALC_FOUND_ROWS';
 
 
832
 
833
+ /**
834
+ * Construct Query
835
+ */
836
+ $where = ( ( ! empty( $wheres ) ) ? 'WHERE ' . implode( ' AND ', $wheres ) : '' );
837
+ $this->request = "SELECT {$found_rows} {$select} FROM {$this->core->log_table} {$where} {$sortby} {$limits};";
838
 
839
+ /**
840
+ * Populate Results
841
+ * Based on what we selected to return with the "fields" argument.
842
+ */
843
+ if ( $get_column ) {
844
 
845
+ $this->results = $wpdb->get_col( $this->request );
 
 
846
 
847
+ }
848
+
849
+ else {
 
850
 
851
+ $this->results = $wpdb->get_results( $this->request, $array ? ARRAY_A : OBJECT );
852
+
853
+ }
854
+
855
+ /**
856
+ * Calculate rows and max number of pages for navigation
857
+ */
858
+ if ( $this->render_mode ) {
859
+
860
+ if ( $limits != '' )
861
+ $this->num_rows = $wpdb->get_var( 'SELECT FOUND_ROWS()' );
862
+ else
863
+ $this->num_rows = count( $this->results );
864
+
865
+ if ( $limits != '' )
866
+ $this->max_num_pages = ceil( $this->num_rows / $number );
867
+
868
+ $this->refs = $wpdb->get_col( "SELECT DISTINCT ref FROM {$this->core->log_table} {$where};" );
869
+
870
+ }
871
 
872
  $this->total_rows = $wpdb->get_var( "SELECT COUNT(*) FROM {$this->core->log_table}" );
873
 
878
  * Returns all table column headers.
879
  * @filter mycred_log_column_headers
880
  * @since 0.1
881
+ * @version 1.1.3
882
  */
883
  public function table_headers() {
884
 
885
  // Headers already set
886
+ if ( ! empty( $this->headers ) || ! $this->render_mode ) return;
887
 
888
  global $mycred_types;
889
 
911
  if ( empty( $this->headers ) )
912
  $headers = $columns;
913
 
914
+ // If we are showing results for multiple point types, the label will not be correct
915
+ // Instead we use a more generic label.
916
+ if ( array_key_exists( 'creds', $headers ) && count( $this->types ) > 1 )
917
+ $headers['creds'] = __( 'Amount', 'mycred' );
918
+
919
  $this->headers = apply_filters( 'mycred_log_column_headers', $headers, $this, $this->is_admin );
920
 
921
  }
982
  /**
983
  * Table Nav
984
  * @since 0.1
985
+ * @version 1.1.1
986
  */
987
  public function table_nav( $location = 'top', $is_profile = false ) {
988
 
989
+ if ( ! $this->have_entries() || ! $this->render_mode ) return;
990
 
991
  if ( $location == 'top' ) {
992
 
1006
  /**
1007
  * Bulk Actions
1008
  * @since 1.7
1009
+ * @version 1.0.1
1010
  */
1011
  public function bulk_actions() {
1012
 
1013
+ if ( ! $this->is_admin || ! $this->render_mode ) return;
1014
 
1015
  $bulk_actions = apply_filters( 'mycred_log_bulk_actions', array(
1016
  '-1' => __( 'Bulk Actions', 'mycred' ),
1040
  /**
1041
  * Filter Log options
1042
  * @since 0.1
1043
+ * @version 1.3.2
1044
  */
1045
+ public function filter_options( $is_profile = false ) {
1046
+
1047
+ if ( ! $this->render_mode ) return;
1048
 
1049
  echo '<div class="alignleft actions">';
1050
  $show = false;
1051
 
1052
  // Filter by reference
1053
+ if ( ! empty( $this->refs ) ) {
 
1054
 
1055
  echo '<select name="ref" id="myCRED-reference-filter"><option value="">' . __( 'Show all references', 'mycred' ) . '</option>';
1056
+ foreach ( $this->refs as $ref ) {
1057
 
1058
  $label = str_replace( array( '_', '-' ), ' ', $ref );
1059
  echo '<option value="' . $ref . '"';
1108
  * Front Navigation
1109
  * Renders navigation with bootstrap support
1110
  * @since 1.7
1111
+ * @version 1.0.1
1112
  */
1113
  public function front_navigation( $location = 'top', $pagination = 10 ) {
1114
 
1115
+ if ( ! $this->have_entries() || $this->max_num_pages == 1 || ! $this->render_mode ) return;
1116
 
1117
  ?>
1118
  <div class="row pagination-<?php echo $location; ?>">
1119
+ <div class="col-xs-12">
1120
 
1121
  <?php $this->front_pagination( $pagination ); ?>
1122
 
1129
  /**
1130
  * Navigation Wrapper
1131
  * @since 0.1
1132
+ * @version 1.1.1
1133
  */
1134
  public function navigation( $location = 'top', $id = '' ) {
1135
 
1136
+ if ( ! $this->render_mode ) return;
1137
+
1138
  ?>
1139
  <h2 class="screen-reader-text sr-only"><?php _e( 'Log entries navigation', 'mycred' ); ?></h2>
1140
  <div class="tablenav-pages<?php if ( $this->max_num_pages == 1 ) echo ' one-page'; ?>">
1150
  /**
1151
  * Front Pagination
1152
  * @since 1.7
1153
+ * @version 1.0.2
1154
  */
1155
  public function front_pagination( $pages_to_show = 5 ) {
1156
 
1157
+ if ( ! $this->have_entries() || ! $this->render_mode ) return;
1158
 
1159
  $page_links = array();
1160
  $total_pages = $this->max_num_pages;
1245
  /**
1246
  * Pagination
1247
  * @since 1.4
1248
+ * @version 1.1.1
1249
  */
1250
  public function pagination( $location = 'top', $id = '' ) {
1251
 
1252
+ if ( ! $this->render_mode ) return;
1253
+
1254
  $page_links = array();
1255
  $output = '';
1256
  $total_pages = $this->max_num_pages;
1360
  /**
1361
  * Display
1362
  * @since 0.1
1363
+ * @version 1.0.1
1364
  */
1365
  public function display() {
1366
 
1367
+ if ( $this->render_mode )
1368
+ echo $this->get_display();
1369
 
1370
  }
1371
 
1373
  * Get Display
1374
  * Generates a table for our results.
1375
  * @since 0.1
1376
+ * @version 1.1.2
1377
  */
1378
  public function get_display() {
1379
 
1380
+ if ( ! $this->render_mode ) return '';
1381
+
1382
  $this->table_headers();
1383
 
1384
  $table_class = 'table table-condensed mycred-table';
1468
  /**
1469
  * The Entry
1470
  * @since 0.1
1471
+ * @version 1.1.1
1472
  */
1473
  public function the_entry( $log_entry, $wrap = 'td' ) {
1474
 
1475
+ if ( $this->render_mode )
1476
+ echo $this->get_the_entry( $log_entry, $wrap );
1477
 
1478
  }
1479
 
1482
  * Generated a single entry row depending on the columns used / requested.
1483
  * @filter mycred_log_date
1484
  * @since 0.1
1485
+ * @version 1.4.2
1486
  */
1487
  public function get_the_entry( $log_entry, $wrap = 'td' ) {
1488
 
1489
+ if ( ! $this->render_mode ) return '';
1490
+
1491
  $date_format = get_option( 'date_format' ) . ' ' . get_option( 'time_format' );
1492
  $entry_data = '';
1493
 
1558
  // Amount Column
1559
  case 'creds' :
1560
 
1561
+ $content = $creds = $this->types[ $log_entry->ctype ]->format_creds( $log_entry->creds );
1562
  $content = apply_filters( 'mycred_log_creds', $content, $log_entry->creds, $log_entry );
1563
  $data = ' data-raw="' . esc_attr( $log_entry->creds ) . '"';
1564
 
1567
  // Log Entry Column
1568
  case 'entry' :
1569
 
1570
+ $content = $this->types[ $log_entry->ctype ]->parse_template_tags( $log_entry->entry, $log_entry );
1571
  $content = apply_filters( 'mycred_log_entry', $content, $log_entry->entry, $log_entry );
1572
  $data = ' data-raw="' . esc_attr( $log_entry->entry ) . '"';
1573
 
1594
  /**
1595
  * Row Actions
1596
  * @since 1.7
1597
+ * @version 1.0.1
1598
  */
1599
  public function get_row_actions( $entry, $user ) {
1600
 
1601
+ if ( ! $this->is_admin || ! $this->render_mode ) return;
1602
 
1603
  $filter_label = __( 'Filter by User', 'mycred' );
1604
  if ( $user === false )
1638
  * Exporter
1639
  * Displays all available export options.
1640
  * @since 0.1
1641
+ * @version 1.1.1
1642
  */
1643
  public function exporter( $title = '', $is_profile = false ) {
1644
 
1645
  // Must be logged in
1646
+ if ( ! is_user_logged_in() || ! $this->render_mode ) return;
1647
 
1648
  // Export options
1649
  $exports = mycred_get_log_exports();
1702
  /**
1703
  * Log Search
1704
  * @since 0.1
1705
+ * @version 1.0.5
1706
  */
1707
  public function search() {
1708
 
1709
+ if ( ! $this->render_mode ) return;
1710
+
1711
  if ( isset( $_GET['s'] ) && $_GET['s'] != '' )
1712
  $serarch_string = $_GET['s'];
1713
  else
1726
  /**
1727
  * Filter by Dates
1728
  * @since 0.1
1729
+ * @version 1.0.1
1730
  */
1731
  public function filter_dates( $url = '' ) {
1732
 
1733
+ if ( ! $this->render_mode ) return;
1734
+
1735
  $date_sorting = apply_filters( 'mycred_sort_by_time', array(
1736
  '' => __( 'All', 'mycred' ),
1737
  'today' => __( 'Today', 'mycred' ),
1793
 
1794
  }
1795
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1796
  /**
1797
  * Get Time from Filter
1798
  * @since 0.1
1799
+ * @version 1.0.1
1800
  */
1801
  protected function get_time_for_filter( $timestamp ) {
1802
 
1803
+ $start = strtotime( date( 'Y-m-d 00:00:00' ), $timestamp );
1804
  $end = $start + ( DAY_IN_SECONDS - 1 );
1805
 
1806
  return $start . ',' . $end;
1836
 
1837
  }
1838
 
1839
+ /**
1840
+ * Get Time from Keyword
1841
+ * @since 1.7.5
1842
+ * @version 1.0
1843
+ */
1844
+ protected function get_time_from_keyword( $keyword = '' ) {
1845
+
1846
+ $today = strtotime( date( 'Y-m-d' ) . ' midnight', $this->now );
1847
+ $todays_date = date( 'd', $this->now );
1848
+ $weekday = date( 'w', $this->now );
1849
+ $result = array();
1850
+
1851
+ $keyword = strtolower( $keyword );
1852
+
1853
+ // Today
1854
+ if ( $keyword === 'today' ) {
1855
+ $result[] = $today;
1856
+ $result[] = $this->now;
1857
+ }
1858
+
1859
+ // Yesterday
1860
+ elseif ( $keyword === 'yesterday' ) {
1861
+ $result[] = strtotime( '-1 day midnight', $this->now );
1862
+ $result[] = strtotime( 'today midnight', $this->now );
1863
+ }
1864
+
1865
+ // This week
1866
+ elseif ( $keyword === 'thisweek' ) {
1867
+
1868
+ $thisweek = strtotime( '-' . ( $weekday+1 ) . ' days midnight', $this->now );
1869
+ if ( get_option( 'start_of_week' ) == $weekday )
1870
+ $thisweek = $today;
1871
+
1872
+ $result[] = $thisweek;
1873
+ $result[] = $this->now;
1874
+
1875
+ }
1876
+
1877
+ // This month
1878
+ elseif ( $keyword === 'thismonth' ) {
1879
+ $result[] = strtotime( date( 'Y-m-01' ) . ' midnight', $this->now );
1880
+ $result[] = $this->now;
1881
+ }
1882
+
1883
+ return $result;
1884
+
1885
+ }
1886
+
1887
  /**
1888
  * Get Timestamp
1889
  * @since 1.7
1891
  */
1892
  protected function get_timestamp( $string = '' ) {
1893
 
1894
+ // Unix timestamp?
1895
  if ( is_numeric( $string ) && strtotime( date( 'd-m-Y H:i:s', $string ) ) === (int) $string )
1896
  return $string;
1897
 
1904
 
1905
  }
1906
 
1907
+ /**
1908
+ * Get Timestamps
1909
+ * @since 1.7.5
1910
+ * @version 1.0
1911
+ */
1912
+ protected function get_timestamps( $value = NULL ) {
1913
+
1914
+ // Can't work with this
1915
+ if ( $value === NULL || empty( $value ) ) return false;
1916
+
1917
+ $timestamps = array();
1918
+ $date_values = array();
1919
+ foreach ( (array) $value as $date_string ) {
1920
+
1921
+ $date_string = sanitize_text_field( $date_string );
1922
+
1923
+ // Unix timestamp?
1924
+ if ( is_numeric( $date_string ) && strtotime( date( 'Y-m-d H:i:s', $date_string ) ) === (int) $date_string )
1925
+ $date_values[] = $date_string;
1926
+
1927
+ // Keyword?
1928
+ elseif ( in_array( $date_string, array( 'today', 'yesterday', 'thisweek', 'thismonth' ) ) )
1929
+ $date_values[] = $date_string;
1930
+
1931
+ // Valid date string?
1932
+ elseif ( strtotime( $date_string ) !== false )
1933
+ $date_values[] = $date_string;
1934
+
1935
+ }
1936
+
1937
+ if ( ! empty( $date_values ) ) {
1938
+
1939
+ if ( count( $date_values ) == 1 )
1940
+ $timestamps = $this->get_time_from_keyword( $date_values[0] );
1941
+
1942
+ else {
1943
+
1944
+ foreach ( $date_values as $value ) {
1945
+
1946
+ if ( is_numeric( $value ) && strtotime( date( 'Y-m-d H:i:s', $value ) ) === (int) $value )
1947
+ $timestamps[] = $value;
1948
+ else
1949
+ $timestamps[] = strtotime( $value, $this->now );
1950
+
1951
+ }
1952
+
1953
+ }
1954
+
1955
+ }
1956
+
1957
+ if ( empty( $timestamps ) ) $timestamps = false;
1958
+
1959
+ return $timestamps;
1960
+
1961
+ }
1962
+
1963
  /**
1964
  * Reset Query
1965
  * @since 1.3
2160
  * Returns an array of references currently existing in the log
2161
  * for a particular point type. Will return false if empty.
2162
  * @since 1.5
2163
+ * @version 1.3.2
2164
  */
2165
  if ( ! function_exists( 'mycred_get_all_references' ) ) :
2166
  function mycred_get_all_references() {
2280
  $addons['buy_creds_with_zombaio'] = __( 'buyCRED Purchase (Zombaio)', 'mycred' );
2281
  $addons['buy_creds_with_netbilling'] = __( 'buyCRED Purchase (NETBilling)', 'mycred' );
2282
  $addons['buy_creds_with_bitpay'] = __( 'buyCRED Purchase (BitPay)', 'mycred' );
2283
+ $addons['buy_creds_with_bank'] = __( 'buyCRED Purchase (Bank Transfer)', 'mycred' );
2284
  $addons = apply_filters( 'mycred_buycred_refs', $addons );
2285
  }
2286
 
2287
  if ( class_exists( 'myCRED_Coupons_Module' ) )
2288
+ $addons['coupon'] = __( 'Coupon Usage', 'mycred' );
2289
 
2290
  if ( defined( 'myCRED_GATE' ) ) {
2291
  if ( class_exists( 'WooCommerce' ) ) {
2335
  * Returns an array of references currently existing in the log
2336
  * for a particular point type. Will return false if empty.
2337
  * @since 1.5
2338
+ * @version 1.0.1
2339
  */
2340
  if ( ! function_exists( 'mycred_get_used_references' ) ) :
2341
+ function mycred_get_used_references( $point_type = array() ) {
2342
 
2343
+ global $wpdb, $mycred;
2344
 
2345
+ $query = "SELECT DISTINCT ref FROM {$mycred->log_table} WHERE ref != ''";
2346
+ if ( ! empty( $point_type ) )
2347
+ $query .= $wpdb->prepare( " AND ctype IN ( %s" . str_repeat( ",%s", ( count( $point_type ) - 1 ) ) . " )", $point_type );
2348
 
2349
+ $references = $wpdb->get_col( $query );
 
 
 
 
 
 
 
 
 
2350
 
2351
+ return apply_filters( 'mycred_used_references', $references, $point_type );
2352
 
2353
  }
2354
  endif;
2579
  * Get Search Args
2580
  * Converts URL arguments into an array of log query friendly arguments.
2581
  * @since 1.7
2582
+ * @version 1.0.2
2583
  */
2584
  if ( ! function_exists( 'mycred_get_search_args' ) ) :
2585
  function mycred_get_search_args( $exclude = NULL ) {
2592
  foreach ( $_GET as $key => $value ) {
2593
 
2594
  $key = sanitize_key( $key );
 
 
2595
 
2596
+ if ( $key === '' || in_array( $key, $exclude ) ) continue;
 
2597
 
2598
  if ( in_array( $key, array( 'user_id', 'paged', 'number' ) ) ) {
2599
  $value = absint( $value );
2600
  if ( $value === 0 ) continue;
2601
  }
2602
+
2603
+ elseif ( $key == 'user' )
2604
+ $value = mycred_get_user_id( $value );
2605
+
2606
  else {
2607
  $value = sanitize_text_field( $value );
2608
  if ( strlen( $value ) == 0 ) continue;
2614
  elseif ( $key === 'show' )
2615
  $key = 'time';
2616
 
 
 
 
2617
  $search_args[ $key ] = $value;
2618
 
2619
  }
2621
 
2622
  if ( ! empty( $search_args ) ) {
2623
 
2624
+ // Convert comma separated lists
2625
+ if ( array_key_exists( 'time', $search_args ) && str_replace( ',', '', $search_args['time'] ) != $search_args['time'] ) {
2626
+
2627
+ $timestamps = explode( ',', $search_args['time'] );
2628
+ if ( count( $timestamps ) == 2 )
2629
+ $search_args['time'] = array( 'dates' => $timestamps, 'compare' => 'BETWEEN' );
2630
+ else
2631
+ $search_args['time'] = array( 'dates' => $timestamps, 'compare' => 'IN' );
2632
+
2633
+ }
2634
+
2635
+ // Convert comma separated lists
2636
+ if ( array_key_exists( 'ref', $search_args ) && str_replace( ',', '', $search_args['ref'] ) != $search_args['ref'] ) {
2637
+
2638
+ $references = explode( ',', $search_args['ref'] );
2639
+ if ( count( $references ) > 1 )
2640
+ $search_args['ref'] = array( 'ids' => $references, 'compare' => 'IN' );
2641
+
2642
+ }
2643
+
2644
  if ( array_key_exists( 'start', $search_args ) && array_key_exists( 'end', $search_args ) ) {
2645
+ $search_args['amount'] = array( 'num' => array( $search_args['start'], $search_args['end'] ), 'compare' => 'BETWEEN' );
2646
  unset( $search_args['start'] );
2647
  unset( $search_args['end'] );
2648
  }
2649
 
2650
  elseif ( array_key_exists( 'num', $search_args ) && array_key_exists( 'compare', $search_args ) ) {
2651
+ $search_args['amount'] = array( 'num' => $search_args['num'], 'compare' => urldecode( $search_args['compare'] ) );
2652
  unset( $search_args['num'] );
2653
  unset( $search_args['compare'] );
2654
  }
2659
 
2660
  }
2661
  endif;
 
 
includes/mycred-functions.php CHANGED
@@ -1193,7 +1193,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1193
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1194
  * @returns false if requirements are not set or db insert id if successful.
1195
  * @since 0.1
1196
- * @version 1.3.1
1197
  */
1198
  public function add_to_log( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = MYCRED_DEFAULT_TYPE_KEY ) {
1199
 
@@ -1242,6 +1242,8 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1242
 
1243
  $insert_id = $wpdb->insert_id;
1244
 
 
 
1245
  }
1246
 
1247
  delete_transient( 'mycred_log_entries' );
@@ -2814,4 +2816,27 @@ if ( ! function_exists( 'mycred_force_singular_session' ) ) :
2814
  }
2815
  endif;
2816
 
2817
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1193
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1194
  * @returns false if requirements are not set or db insert id if successful.
1195
  * @since 0.1
1196
+ * @version 1.3.2
1197
  */
1198
  public function add_to_log( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = MYCRED_DEFAULT_TYPE_KEY ) {
1199
 
1242
 
1243
  $insert_id = $wpdb->insert_id;
1244
 
1245
+ wp_cache_delete( 'mycred_references' . $type, 'mycred' );
1246
+
1247
  }
1248
 
1249
  delete_transient( 'mycred_log_entries' );
2816
  }
2817
  endif;
2818
 
2819
+ /**
2820
+ * Locate Template
2821
+ * @since 1.0
2822
+ * @version 1.0
2823
+ */
2824
+ if ( ! function_exists( 'mycred_locate_template' ) ) :
2825
+ function mycred_locate_template( $template_name, $template_path = 'mycred', $default_path = '' ) {
2826
+
2827
+ if ( empty( $template_path ) || empty( $default_path ) ) return false;
2828
+
2829
+ if ( substr( $template_path, -1 ) != '/' )
2830
+ $template_path = trailingslashit( $template_path );
2831
+
2832
+ // Look within passed path within the theme - this is priority.
2833
+ $template = locate_template( array( $template_path . $template_name, $template_name ) );
2834
+
2835
+ // Get default template/
2836
+ if ( ! $template ) $template = $default_path . $template_name;
2837
+
2838
+ // Return what we found.
2839
+ return apply_filters( 'mycred_locate_template', $template, $template_name, $template_path );
2840
+
2841
+ }
2842
+ endif;
includes/mycred-object.php CHANGED
@@ -143,7 +143,7 @@ endif;
143
  * myCRED_Point_Type class
144
  * @see http://codex.mycred.me/classes/mycred_point_type/
145
  * @since 1.7
146
- * @version 1.0
147
  */
148
  if ( ! class_exists( 'myCRED_Point_Type' ) ) :
149
  class myCRED_Point_Type extends myCRED_Object {
@@ -192,10 +192,11 @@ if ( ! class_exists( 'myCRED_Point_Type' ) ) :
192
  else
193
  $decimals = (int) $this->format['decimals'];
194
 
 
195
  if ( $decimals > 0 )
196
- return number_format( (float) $number, $decimals, '.', '' );
197
 
198
- return (int) $number;
199
 
200
  }
201
 
@@ -218,7 +219,7 @@ if ( ! class_exists( 'myCRED_Point_Type' ) ) :
218
  if ( ! empty( $this->suffix ) )
219
  $suffix = ' ' . $this->suffix;
220
 
221
- return $layout = $prefix . $number . $suffix;
222
 
223
  }
224
 
143
  * myCRED_Point_Type class
144
  * @see http://codex.mycred.me/classes/mycred_point_type/
145
  * @since 1.7
146
+ * @version 1.0.1
147
  */
148
  if ( ! class_exists( 'myCRED_Point_Type' ) ) :
149
  class myCRED_Point_Type extends myCRED_Object {
192
  else
193
  $decimals = (int) $this->format['decimals'];
194
 
195
+ $result = intval( $number );
196
  if ( $decimals > 0 )
197
+ $result = floatval( number_format( (float) $number, $decimals, '.', '' ) );
198
 
199
+ return apply_filters( 'mycred_type_number', $result, $number, $this );
200
 
201
  }
202
 
219
  if ( ! empty( $this->suffix ) )
220
  $suffix = ' ' . $this->suffix;
221
 
222
+ return apply_filters( 'mycred_type_format', $prefix . $number . $suffix, $number, $this );
223
 
224
  }
225
 
includes/shortcodes/mycred_history.php CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
6
  * Returns the points history.
7
  * @see http://codex.mycred.me/shortcodes/mycred_history/
8
  * @since 1.0.9
9
- * @version 1.3.2
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
12
  function mycred_render_shortcode_history( $atts, $content = '' ) {
@@ -21,7 +21,8 @@ if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
21
  'show_nav' => 1,
22
  'login' => '',
23
  'type' => MYCRED_DEFAULT_TYPE_KEY,
24
- 'pagination' => 10
 
25
  ), $atts ) );
26
 
27
  // If we are not logged in
@@ -68,6 +69,8 @@ if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
68
 
69
  ob_start();
70
 
 
 
71
  do_action( 'mycred_front_history', $user_id );
72
 
73
  ?>
6
  * Returns the points history.
7
  * @see http://codex.mycred.me/shortcodes/mycred_history/
8
  * @since 1.0.9
9
+ * @version 1.3.3
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
12
  function mycred_render_shortcode_history( $atts, $content = '' ) {
21
  'show_nav' => 1,
22
  'login' => '',
23
  'type' => MYCRED_DEFAULT_TYPE_KEY,
24
+ 'pagination' => 10,
25
+ 'inlinenav' => 0
26
  ), $atts ) );
27
 
28
  // If we are not logged in
69
 
70
  ob_start();
71
 
72
+ if ( $inlinenav ) echo '<style type="text/css">.mycred-history-wrapper ul li { list-style-type: none; display: inline; padding: 0 6px; }</style>';
73
+
74
  do_action( 'mycred_front_history', $user_id );
75
 
76
  ?>
includes/shortcodes/mycred_leaderboard.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED Shortcode: mycred_leaderboard
6
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
7
  * @since 0.1
8
- * @version 1.5.1
9
  */
10
  if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
11
  function mycred_render_shortcode_leaderboard( $atts, $content = '' ) {
@@ -16,6 +16,7 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
16
  'offset' => 0,
17
  'type' => MYCRED_DEFAULT_TYPE_KEY,
18
  'based_on' => 'balance',
 
19
  'wrap' => 'li',
20
  'template' => '#%position% %user_profile_link% %cred_f%',
21
  'nothing' => 'Leaderboard is empty',
@@ -51,7 +52,8 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
51
  $balance_format = 'CAST( %f AS DECIMAL( ' . $length . ', ' . $mycred->format['decimals'] . ' ) )';
52
  }
53
 
54
- $excludes = $wpdb->prepare( "AND um.meta_value != {$balance_format}", $mycred->zero() );
 
55
 
56
  }
57
 
@@ -60,21 +62,42 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
60
  // Leaderboard based on balance
61
  if ( $based_on == 'balance' ) {
62
 
63
- if ( mycred_centralize_log() )
64
- $query = $wpdb->prepare( "SELECT DISTINCT u.ID, um.meta_value AS cred FROM {$wpdb->users} u INNER JOIN {$wpdb->usermeta} um ON ( u.ID = um.user_id ) WHERE um.meta_key = %s {$excludes} ORDER BY um.meta_value+0 {$order} {$limit};", mycred_get_meta_key( $type ) );
65
 
66
- // Multisite support
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  else {
68
- $blog_id = absint( $GLOBALS['blog_id'] );
69
- $query = $wpdb->prepare( "
70
  SELECT DISTINCT u.ID, um.meta_value AS cred
71
  FROM {$wpdb->users} u
72
  INNER JOIN {$wpdb->usermeta} um ON ( u.ID = um.user_id )
73
- LEFT JOIN {$wpdb->usermeta} cap ON ( u.ID = cap.user_id AND cap.meta_key = 'cap.wp_{$blog_id}_capabilities' )
74
  WHERE um.meta_key = %s
75
  {$excludes}
76
- ORDER BY um.meta_value+0
77
- {$order} {$limit};", mycred_get_meta_key( $type ) );
 
78
  }
79
 
80
  }
@@ -105,8 +128,13 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
105
  elseif ( $timeframe == 'this-month' )
106
  $time_filter = $wpdb->prepare( "AND log.time BETWEEN %d AND %d", strtotime( 'Y-m-01', $now ), $now );
107
 
108
- else
109
- $time_filter = $wpdb->prepare( "AND log.time BETWEEN %d AND %d", strtotime( $timeframe, $now ), $now );
 
 
 
 
 
110
 
111
  $time_filter = apply_filters( 'mycred_leaderboard_time_filter', $time_filter, $based_on, $user_id, $ctype );
112
 
@@ -117,6 +145,7 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
117
 
118
  // Multisite support
119
  else {
 
120
  $blog_id = absint( $GLOBALS['blog_id'] );
121
  $query = $wpdb->prepare( "
122
  SELECT DISTINCT log.user_id AS ID, SUM( log.creds ) AS cred
@@ -125,8 +154,9 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
125
  WHERE log.ref = %s
126
  {$time_filter}
127
  GROUP BY log.user_id
128
- ORDER BY SUM( log.creds )
129
- {$order} {$limit};", $based_on );
 
130
  }
131
 
132
  }
@@ -251,5 +281,3 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
251
  }
252
  endif;
253
  add_shortcode( 'mycred_leaderboard', 'mycred_render_shortcode_leaderboard' );
254
-
255
- ?>
5
  * myCRED Shortcode: mycred_leaderboard
6
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
7
  * @since 0.1
8
+ * @version 1.5.2
9
  */
10
  if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
11
  function mycred_render_shortcode_leaderboard( $atts, $content = '' ) {
16
  'offset' => 0,
17
  'type' => MYCRED_DEFAULT_TYPE_KEY,
18
  'based_on' => 'balance',
19
+ 'total' => 0,
20
  'wrap' => 'li',
21
  'template' => '#%position% %user_profile_link% %cred_f%',
22
  'nothing' => 'Leaderboard is empty',
52
  $balance_format = 'CAST( %f AS DECIMAL( ' . $length . ', ' . $mycred->format['decimals'] . ' ) )';
53
  }
54
 
55
+ if ( $total == 0 )
56
+ $excludes = $wpdb->prepare( "AND um.meta_value != {$balance_format}", $mycred->zero() );
57
 
58
  }
59
 
62
  // Leaderboard based on balance
63
  if ( $based_on == 'balance' ) {
64
 
65
+ $multisite_check = "";
66
+ if ( ! mycred_centralize_log() ) {
67
 
68
+ $blog_id = absint( $GLOBALS['blog_id'] );
69
+ $multisite_check = "LEFT JOIN {$wpdb->usermeta} cap ON ( l.user_id = cap.user_id AND cap.meta_key = 'cap.wp_{$blog_id}_capabilities' )";
70
+
71
+ }
72
+
73
+ // Total balance
74
+ if ( $total == 1 ) {
75
+
76
+ $query = $wpdb->prepare( "
77
+ SELECT l.user_id AS ID, SUM( l.creds ) AS cred
78
+ FROM {$mycred->log_table} l
79
+ {$multisite_check}
80
+ WHERE l.ctype = %s AND ( ( l.creds > 0 ) OR ( l.creds < 0 AND l.ref = 'manual' ) )
81
+ {$excludes}
82
+ GROUP BY l.user_id
83
+ ORDER BY SUM( l.creds ) {$order}, l.user_id ASC
84
+ {$limit};", $type );
85
+
86
+ }
87
+
88
+ // Current Balance
89
  else {
90
+
91
+ $query = $wpdb->prepare( "
92
  SELECT DISTINCT u.ID, um.meta_value AS cred
93
  FROM {$wpdb->users} u
94
  INNER JOIN {$wpdb->usermeta} um ON ( u.ID = um.user_id )
95
+ {$multisite_check}
96
  WHERE um.meta_key = %s
97
  {$excludes}
98
+ ORDER BY um.meta_value+0 {$order}, um.user_id ASC
99
+ {$limit};", mycred_get_meta_key( $type ) );
100
+
101
  }
102
 
103
  }
128
  elseif ( $timeframe == 'this-month' )
129
  $time_filter = $wpdb->prepare( "AND log.time BETWEEN %d AND %d", strtotime( 'Y-m-01', $now ), $now );
130
 
131
+ else {
132
+
133
+ $start_from = strtotime( $timeframe, $now );
134
+ if ( $start_from !== false && $start_from > 0 )
135
+ $time_filter = $wpdb->prepare( "AND log.time BETWEEN %d AND %d", $start_from, $now );
136
+
137
+ }
138
 
139
  $time_filter = apply_filters( 'mycred_leaderboard_time_filter', $time_filter, $based_on, $user_id, $ctype );
140
 
145
 
146
  // Multisite support
147
  else {
148
+
149
  $blog_id = absint( $GLOBALS['blog_id'] );
150
  $query = $wpdb->prepare( "
151
  SELECT DISTINCT log.user_id AS ID, SUM( log.creds ) AS cred
154
  WHERE log.ref = %s
155
  {$time_filter}
156
  GROUP BY log.user_id
157
+ ORDER BY SUM( log.creds ) {$order}, log.user_id ASC
158
+ {$limit};", $based_on );
159
+
160
  }
161
 
162
  }
281
  }
282
  endif;
283
  add_shortcode( 'mycred_leaderboard', 'mycred_render_shortcode_leaderboard' );
 
 
includes/shortcodes/mycred_leaderboard_position.php CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
6
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard_position/
7
  * Replaces the mycred_my_ranking shortcode.
8
  * @since 1.7
9
- * @version 1.1
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_leaderbaord_position' ) ) :
12
  function mycred_render_shortcode_leaderbaord_position( $atts, $content = '' ) {
@@ -15,6 +15,7 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderbaord_position' ) ) :
15
  'user_id' => 'current',
16
  'ctype' => MYCRED_DEFAULT_TYPE_KEY,
17
  'based_on' => 'balance',
 
18
  'missing' => '-',
19
  'suffix' => 0,
20
  'timeframe' => ''
@@ -39,15 +40,40 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderbaord_position' ) ) :
39
  // Get Position based on balance
40
  if ( $based_on == 'balance' ) {
41
 
42
- $position = $wpdb->get_var( $wpdb->prepare( "
43
- SELECT rank FROM (
44
- SELECT s.*, @rank := @rank + 1 rank FROM (
45
- SELECT t.user_id, t.meta_value AS Balance FROM {$wpdb->usermeta} t
46
- WHERE t.meta_key = %s
47
- ) s, (SELECT @rank := 0) init
48
- ORDER BY Balance+0 DESC, s.user_id ASC
49
- ) r
50
- WHERE user_id = %d", mycred_get_meta_key( $ctype ), $user_id ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
 
52
  }
53
 
@@ -88,7 +114,7 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderbaord_position' ) ) :
88
  SELECT rank FROM (
89
  SELECT s.*, @rank := @rank + 1 rank FROM (
90
  SELECT t.user_id, sum(t.creds) TotalPoints FROM {$mycred->log_table} t
91
- WHERE t.ref != 'manual' AND t.creds > 0 AND t.ctype = %s AND t.ref = %s {$time}
92
  GROUP BY t.user_id
93
  ) s, (SELECT @rank := 0) init
94
  ORDER BY TotalPoints DESC, s.user_id ASC
@@ -124,5 +150,3 @@ if ( ! function_exists( 'mycred_render_shortcode_my_ranking' ) ) :
124
  }
125
  endif;
126
  add_shortcode( 'mycred_my_ranking', 'mycred_render_shortcode_my_ranking' );
127
-
128
- ?>
6
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard_position/
7
  * Replaces the mycred_my_ranking shortcode.
8
  * @since 1.7
9
+ * @version 1.1.2
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_leaderbaord_position' ) ) :
12
  function mycred_render_shortcode_leaderbaord_position( $atts, $content = '' ) {
15
  'user_id' => 'current',
16
  'ctype' => MYCRED_DEFAULT_TYPE_KEY,
17
  'based_on' => 'balance',
18
+ 'total' => 0,
19
  'missing' => '-',
20
  'suffix' => 0,
21
  'timeframe' => ''
40
  // Get Position based on balance
41
  if ( $based_on == 'balance' ) {
42
 
43
+ $multisite_check = "";
44
+ if ( ! mycred_centralize_log() ) {
45
+
46
+ $blog_id = absint( $GLOBALS['blog_id'] );
47
+ $multisite_check = "LEFT JOIN {$wpdb->usermeta} cap ON ( t.user_id = cap.user_id AND cap.meta_key = 'cap.wp_{$blog_id}_capabilities' )";
48
+
49
+ }
50
+
51
+ // Current Balance
52
+ if ( $total == 0 )
53
+ $position = $wpdb->get_var( $wpdb->prepare( "
54
+ SELECT rank FROM (
55
+ SELECT s.*, @rank := @rank + 1 rank FROM (
56
+ SELECT t.user_id, t.meta_value AS Balance FROM {$wpdb->usermeta} t
57
+ {$multisite_check}
58
+ WHERE t.meta_key = %s
59
+ ) s, (SELECT @rank := 0) init
60
+ ORDER BY Balance+0 DESC, s.user_id ASC
61
+ ) r
62
+ WHERE user_id = %d", mycred_get_meta_key( $ctype ), $user_id ) );
63
+
64
+ // Total Balance
65
+ else
66
+ $position = $wpdb->get_var( $wpdb->prepare( "
67
+ SELECT rank FROM (
68
+ SELECT s.*, @rank := @rank + 1 rank FROM (
69
+ SELECT t.user_id, sum(t.creds) TotalPoints FROM {$mycred->log_table} t
70
+ {$multisite_check}
71
+ WHERE t.ctype = %s AND ( ( t.creds > 0 ) OR ( t.creds < 0 AND t.ref = 'manual' ) )
72
+ GROUP BY t.user_id
73
+ ) s, (SELECT @rank := 0) init
74
+ ORDER BY TotalPoints DESC, s.user_id ASC
75
+ ) r
76
+ WHERE user_id = %d", $ctype, $user_id ) );
77
 
78
  }
79
 
114
  SELECT rank FROM (
115
  SELECT s.*, @rank := @rank + 1 rank FROM (
116
  SELECT t.user_id, sum(t.creds) TotalPoints FROM {$mycred->log_table} t
117
+ WHERE t.ref != 'manual' AND t.creds > 0 AND t.ctype = %s AND t.ref = %s {$time_filter}
118
  GROUP BY t.user_id
119
  ) s, (SELECT @rank := 0) init
120
  ORDER BY TotalPoints DESC, s.user_id ASC
150
  }
151
  endif;
152
  add_shortcode( 'mycred_my_ranking', 'mycred_render_shortcode_my_ranking' );
 
 
lang/mycred-fr_FR.mo CHANGED
Binary file
lang/mycred-fr_FR.po CHANGED
@@ -1,6585 +1,6585 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: myCRED\n"
4
- "Report-Msgid-Bugs-To: http://mycred.me\n"
5
- "POT-Creation-Date: 2016-10-21 06:01+0000\n"
6
- "PO-Revision-Date: 2016-10-21 06:01+0000\n"
7
- "Last-Translator: mycreddemo <gabriel.s@merovingi.com>\n"
8
- "Language-Team: French (France)\n"
9
- "Language: fr-FR\n"
10
- "Plural-Forms: nplurals=2; plural=n > 1\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
18
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
- "X-Poedit-Basepath: .\n"
21
- "X-Loco-Target-Locale: fr_FR\n"
22
- "X-Generator: Loco - https://localise.biz/"
23
-
24
- #: abstracts/mycred-abstract-hook.php:284
25
- msgid "/ Day"
26
- msgstr ""
27
-
28
- #: abstracts/mycred-abstract-hook.php:285
29
- msgid "/ Week"
30
- msgstr ""
31
-
32
- #: abstracts/mycred-abstract-hook.php:286
33
- msgid "/ Month"
34
- msgstr ""
35
-
36
- #: abstracts/mycred-abstract-hook.php:287
37
- msgid "in Total"
38
- msgstr ""
39
-
40
- #: modules/mycred-module-management.php:184
41
- msgid "Balance successfully updated"
42
- msgstr ""
43
-
44
- #: modules/mycred-module-management.php:189
45
- msgid "Request declined"
46
- msgstr ""
47
-
48
- #: modules/mycred-module-management.php:224
49
- msgid "No recent activity found."
50
- msgstr ""
51
-
52
- #: modules/mycred-module-management.php:237
53
- #: modules/mycred-module-management.php:773 modules/mycred-module-log.php:93
54
- #: modules/mycred-module-log.php:922
55
- #: includes/classes/class.query-export.php:263
56
- #: includes/classes/class.query-export.php:360
57
- #: includes/classes/class.query-log.php:382
58
- #: addons/transfer/includes/mycred-transfer-widgets.php:96
59
- msgid "Reference"
60
- msgstr ""
61
-
62
- #: modules/mycred-module-management.php:280
63
- msgid "View complete history"
64
- msgstr ""
65
-
66
- #: modules/mycred-module-management.php:553
67
- msgid "Balances"
68
- msgstr ""
69
-
70
- #: modules/mycred-module-management.php:745
71
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
72
- #: addons/buy-creds/modules/buycred-module-core.php:1362
73
- msgid "Username"
74
- msgstr ""
75
-
76
- #: modules/mycred-module-management.php:757
77
- msgid "Total Balance"
78
- msgstr ""
79
-
80
- #: modules/mycred-module-management.php:783
81
- msgid "Log under a custom reference"
82
- msgstr ""
83
-
84
- #: modules/mycred-module-management.php:789
85
- msgid "lowercase without empty spaces"
86
- msgstr ""
87
-
88
- #: modules/mycred-module-management.php:802
89
- msgid "Update"
90
- msgstr ""
91
-
92
- #: modules/mycred-module-management.php:805
93
- msgid "Recent Activity"
94
- msgstr ""
95
-
96
- #: modules/mycred-module-settings.php:240
97
- msgid "Invalid decimal value."
98
- msgstr ""
99
-
100
- #: modules/mycred-module-settings.php:290
101
- msgid "Log Updated"
102
- msgstr ""
103
-
104
- #: modules/mycred-module-settings.php:433
105
- msgid ""
106
- "In order to adjust the number of decimal places you want to use we must "
107
- "update your log. It is highly recommended that you backup your current log "
108
- "before continuing!"
109
- msgstr ""
110
-
111
- #: modules/mycred-module-settings.php:458
112
- msgid "Update Database"
113
- msgstr ""
114
-
115
- #: modules/mycred-module-settings.php:469
116
- #: modules/mycred-module-settings.php:481
117
- msgid "No decimals"
118
- msgstr ""
119
-
120
- #: modules/mycred-module-settings.php:493
121
- msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
122
- msgstr ""
123
-
124
- #: modules/mycred-module-settings.php:529 modules/mycred-module-addons.php:368
125
- msgid "Documentation"
126
- msgstr ""
127
-
128
- #: modules/mycred-module-settings.php:547 includes/mycred-setup.php:279
129
- msgid "Singular"
130
- msgstr ""
131
-
132
- #: modules/mycred-module-settings.php:548
133
- #: modules/mycred-module-settings.php:554
134
- #: modules/mycred-module-settings.php:604
135
- #: modules/mycred-module-settings.php:611
136
- #: modules/mycred-module-settings.php:798
137
- #: modules/mycred-module-settings.php:804 includes/mycred-setup.php:280
138
- #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
139
- #: includes/mycred-setup.php:340
140
- #: addons/banking/services/mycred-service-central.php:111
141
- #: addons/banking/services/mycred-service-interest.php:482
142
- #: addons/banking/services/mycred-service-interest.php:500
143
- msgid "Required"
144
- msgstr ""
145
-
146
- #: modules/mycred-module-settings.php:553 includes/mycred-setup.php:285
147
- msgid "Plural"
148
- msgstr ""
149
-
150
- #: modules/mycred-module-settings.php:558 includes/mycred-setup.php:290
151
- msgid ""
152
- "These labels are used throughout the admin area and when presenting points "
153
- "to your users."
154
- msgstr ""
155
-
156
- #: modules/mycred-module-settings.php:590
157
- msgid "Set decimals to zero if you prefer to use whole numbers."
158
- msgstr ""
159
-
160
- #: modules/mycred-module-settings.php:592
161
- msgid ""
162
- "As this is your main point type, the value you select here will be the "
163
- "largest number of decimals your installation will support."
164
- msgstr ""
165
-
166
- #: modules/mycred-module-settings.php:603 includes/mycred-setup.php:332
167
- msgid "Point Editors"
168
- msgstr ""
169
-
170
- #: modules/mycred-module-settings.php:605 includes/mycred-setup.php:334
171
- msgid "The capability of users who can edit balances."
172
- msgstr ""
173
-
174
- #: modules/mycred-module-settings.php:610 includes/mycred-setup.php:339
175
- msgid "Point Administrators"
176
- msgstr ""
177
-
178
- #: modules/mycred-module-settings.php:612 includes/mycred-setup.php:341
179
- msgid "The capability of users who can edit settings."
180
- msgstr ""
181
-
182
- #: modules/mycred-module-settings.php:618 includes/mycred-setup.php:346
183
- msgid "Max. Amount"
184
- msgstr ""
185
-
186
- #: modules/mycred-module-settings.php:620 includes/mycred-setup.php:348
187
- msgid "The maximum amount allowed to be paid out in a single instance."
188
- msgstr ""
189
-
190
- #: modules/mycred-module-settings.php:625 includes/mycred-setup.php:353
191
- msgid "Exclude by User ID"
192
- msgstr ""
193
-
194
- #: modules/mycred-module-settings.php:626 includes/mycred-setup.php:354
195
- msgid "Optional"
196
- msgstr ""
197
-
198
- #: modules/mycred-module-settings.php:627 includes/mycred-setup.php:355
199
- msgid "Comma separated list of user IDs to exclude from using this point type."
200
- msgstr ""
201
-
202
- #: modules/mycred-module-settings.php:631 includes/mycred-setup.php:359
203
- msgid "Exclude point editors"
204
- msgstr ""
205
-
206
- #: modules/mycred-module-settings.php:634 includes/mycred-setup.php:362
207
- msgid "Exclude point administrators"
208
- msgstr ""
209
-
210
- #: modules/mycred-module-settings.php:644
211
- msgid "Other Settings"
212
- msgstr ""
213
-
214
- #: modules/mycred-module-settings.php:696
215
- msgid "Balance Meta Key"
216
- msgstr ""
217
-
218
- #: modules/mycred-module-settings.php:809
219
- msgid ""
220
- "The meta key must be lowercase and only contain letters or underscores. All "
221
- "other characters will be deleted!"
222
- msgstr ""
223
-
224
- #: modules/mycred-module-addons.php:275
225
- msgid ""
226
- "Gives you access to your myCRED Statistics based on your users gains and "
227
- "loses."
228
- msgstr ""
229
-
230
- #: modules/mycred-module-addons.php:330
231
- msgid "Get More Add-ons"
232
- msgstr ""
233
-
234
- #: modules/mycred-module-log.php:215
235
- msgid "Invalid or empty reference"
236
- msgstr ""
237
-
238
- #: modules/mycred-module-log.php:220
239
- msgid "Log Entry cannot be empty"
240
- msgstr ""
241
-
242
- #: modules/mycred-module-log.php:241
243
- msgid "Could not save the new log entry"
244
- msgstr ""
245
-
246
- #: modules/mycred-module-log.php:262
247
- msgid "Log entry successfully updated"
248
- msgstr ""
249
-
250
- #: modules/mycred-module-log.php:307
251
- msgid "1 Entry Deleted"
252
- msgid_plural "%d Entries Deleted"
253
- msgstr[0] ""
254
- msgstr[1] ""
255
-
256
- #: modules/mycred-module-log.php:469
257
- msgid "The log entry was successfully updated."
258
- msgstr ""
259
-
260
- #: modules/mycred-module-log.php:470
261
- msgid "The selected log entry could not be deleted."
262
- msgstr ""
263
-
264
- #: modules/mycred-module-log.php:507
265
- msgctxt "e.g. Log entries from April 12th 2016"
266
- msgid "Log entries from %s"
267
- msgstr ""
268
-
269
- #: modules/mycred-module-log.php:565
270
- msgid ""
271
- "Warning. The required Mcrypt PHP Library is not installed on this server! "
272
- "Certain hooks and shortcodes will not work correctly!"
273
- msgstr ""
274
-
275
- #: modules/mycred-module-log.php:929
276
- msgid "Original Entry"
277
- msgstr ""
278
-
279
- #: modules/mycred-module-log.php:941
280
- msgid "Delete Entry"
281
- msgstr ""
282
-
283
- #: modules/mycred-module-log.php:946
284
- msgid "Update Entry"
285
- msgstr ""
286
-
287
- #: modules/mycred-module-network.php:141
288
- msgid "I am sorry but your network is too big to use these features."
289
- msgstr ""
290
-
291
- #: modules/mycred-module-export.php:358
292
- msgid "Make both format options available."
293
- msgstr ""
294
-
295
- #: modules/mycred-module-export.php:360
296
- msgid "Exports"
297
- msgstr ""
298
-
299
- #: modules/mycred-module-export.php:366
300
- msgid "Front End Exports"
301
- msgstr ""
302
-
303
- #: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
304
- msgid "Export Format"
305
- msgstr ""
306
-
307
- #: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
308
- msgid "File Name"
309
- msgstr ""
310
-
311
- #: modules/mycred-module-export.php:407
312
- msgid ""
313
- "If enabled, users will only be able to export their own log entries! Export "
314
- "tools becomes available wherever you are using the mycred_history shortcode "
315
- "or in the users profile."
316
- msgstr ""
317
-
318
- #: modules/mycred-module-export.php:414
319
- msgid "Back End Exports"
320
- msgstr ""
321
-
322
- #: modules/mycred-module-export.php:455
323
- msgid ""
324
- "Raw format should be used when you intend to use the export tool to backup "
325
- "or import entries in another installation. Formatted exports reflect what "
326
- "users see in their history archive."
327
- msgstr ""
328
-
329
- #: modules/mycred-module-buddypress.php:350
330
- msgid "Show:"
331
- msgstr ""
332
-
333
- #: modules/mycred-module-buddypress.php:444
334
- msgid "Members and visitors can view other members %_singular% balance."
335
- msgstr ""
336
-
337
- #: plugins/mycred-hook-wp-postratings.php:15
338
- msgid "Post Ratings"
339
- msgstr ""
340
-
341
- #: plugins/mycred-hook-wp-postratings.php:16
342
- msgid ""
343
- "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
344
- "author and the user rating."
345
- msgstr ""
346
-
347
- #: plugins/mycred-hook-wp-postratings.php:84
348
- msgid "Based on rating"
349
- msgstr ""
350
-
351
- #: plugins/mycred-hook-wp-postratings.php:159
352
- #: includes/classes/class.query-log.php:1628
353
- msgid "Adding a Rating"
354
- msgstr ""
355
-
356
- #: plugins/mycred-hook-wp-postratings.php:169
357
- #: plugins/mycred-hook-wp-postratings.php:188
358
- msgid "Use the Rating Value instead of the amount set here."
359
- msgstr ""
360
-
361
- #: plugins/mycred-hook-wp-postratings.php:178
362
- #: includes/classes/class.query-log.php:1629
363
- msgid "Receiving a Rating"
364
- msgstr ""
365
-
366
- #: plugins/mycred-hook-buddypress.php:610
367
- msgid "New Profile Activity"
368
- msgstr ""
369
-
370
- #: plugins/mycred-hook-buddypress.php:627
371
- msgid "Deleted Profile Activity"
372
- msgstr ""
373
-
374
- #: plugins/mycred-hook-buddypress.php:644
375
- msgid "New Profile Avatar"
376
- msgstr ""
377
-
378
- #: plugins/mycred-hook-buddypress.php:661
379
- msgid "New Profile Cover Image"
380
- msgstr ""
381
-
382
- #: plugins/mycred-hook-buddypress.php:688
383
- msgid ""
384
- "Users with zero balance can not add friends. Requires that you deduct "
385
- "%_plural% for adding a new friend."
386
- msgstr ""
387
-
388
- #: plugins/mycred-hook-buddypress.php:698
389
- msgid "Ending Friendship"
390
- msgstr ""
391
-
392
- #: plugins/mycred-hook-buddypress.php:711
393
- msgid "New Comment"
394
- msgstr ""
395
-
396
- #: plugins/mycred-hook-buddypress.php:741
397
- msgid "Favorit Activity"
398
- msgstr ""
399
-
400
- #: plugins/mycred-hook-buddypress.php:758
401
- msgid "Removing Favorit Activity"
402
- msgstr ""
403
-
404
- #: plugins/mycred-hook-buddypress.php:771
405
- msgid "New Private Message"
406
- msgstr ""
407
-
408
- #: plugins/mycred-hook-buddypress.php:1564
409
- msgid "%plural% for New Cover Image"
410
- msgstr ""
411
-
412
- #: plugins/mycred-hook-affiliatewp.php:15
413
- msgid "AffiliateWP"
414
- msgstr ""
415
-
416
- #: plugins/mycred-hook-affiliatewp.php:16
417
- msgid ""
418
- "Awards %_plural% for affiliate signups, referring visitors and store sale "
419
- "referrals."
420
- msgstr ""
421
-
422
- #: plugins/mycred-hook-affiliatewp.php:222
423
- msgid "Affiliate Signup"
424
- msgstr ""
425
-
426
- #: plugins/mycred-hook-affiliatewp.php:252
427
- msgid "Referring Sales"
428
- msgstr ""
429
-
430
- #: plugins/mycred-hook-affiliatewp.php:255
431
- msgid "Pay a set amount for all referrals."
432
- msgstr ""
433
-
434
- #: plugins/mycred-hook-affiliatewp.php:256
435
- msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
436
- msgstr ""
437
-
438
- #: plugins/mycred-hook-affiliatewp.php:257
439
- msgid "Apply an exchange rate against the referral amount."
440
- msgstr ""
441
-
442
- #: plugins/mycred-hook-affiliatewp.php:265
443
- msgid "Log template - Payout"
444
- msgstr ""
445
-
446
- #: plugins/mycred-hook-affiliatewp.php:270
447
- msgid "Log template - Refund"
448
- msgstr ""
449
-
450
- #: plugins/mycred-hook-wp-favorite-posts.php:234
451
- msgid "Authors Content added to favorites"
452
- msgstr ""
453
-
454
- #: plugins/mycred-hook-wp-favorite-posts.php:265
455
- msgid "Removing Content from Favorites (Author)"
456
- msgstr ""
457
-
458
- #: plugins/mycred-hook-bbPress.php:540
459
- msgid "Show users %_plural% balance in their bbPress profiles."
460
- msgstr ""
461
-
462
- #: includes/mycred-setup.php:106
463
- msgid ""
464
- "Before you can begin using %s, you must setup your first point type. This "
465
- "includes what you want to call your points, how these points are presented "
466
- "and who has access to it."
467
- msgstr ""
468
-
469
- #: includes/mycred-setup.php:111
470
- msgid "Your First Point Type"
471
- msgstr ""
472
-
473
- #: includes/mycred-setup.php:127
474
- msgid "Advanced Settings"
475
- msgstr ""
476
-
477
- #: includes/mycred-setup.php:133
478
- msgid "Change Default Point Type Key"
479
- msgstr ""
480
-
481
- #: includes/mycred-setup.php:135
482
- msgid ""
483
- "You can change the meta key used to store the default point type using the "
484
- "MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
485
- "file to use."
486
- msgstr ""
487
-
488
- #: includes/mycred-setup.php:136
489
- msgid ""
490
- "If you intend to change the default meta key, you should do so before "
491
- "continuing on in this setup!"
492
- msgstr ""
493
-
494
- #: includes/mycred-setup.php:139
495
- msgid "Whitelabel"
496
- msgstr ""
497
-
498
- #: includes/mycred-setup.php:141
499
- msgid ""
500
- "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
501
- "above code to your wp-config.php file to use."
502
- msgstr ""
503
-
504
- #: includes/mycred-setup.php:149
505
- msgid "Create Point Type"
506
- msgstr ""
507
-
508
- #: includes/mycred-setup.php:149
509
- msgid "Hide"
510
- msgstr ""
511
-
512
- #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
513
- msgid "Advanced"
514
- msgstr ""
515
-
516
- #: includes/mycred-setup.php:155
517
- msgid "Processing ..."
518
- msgstr ""
519
-
520
- #: includes/mycred-setup.php:160
521
- msgid "Setup Complete!"
522
- msgstr ""
523
-
524
- #: includes/mycred-setup.php:161
525
- msgid "Congratulations! You are now ready to use myCRED. What's next?"
526
- msgstr ""
527
-
528
- #: includes/mycred-setup.php:166
529
- msgid "Enabling Hooks"
530
- msgstr ""
531
-
532
- #: includes/mycred-setup.php:167
533
- msgid ""
534
- "If you intend to give your users points for interacting with your website "
535
- "automatically, your next step should be to enable and setup the hooks you "
536
- "want to use."
537
- msgstr ""
538
-
539
- #: includes/mycred-setup.php:168
540
- msgid "Setup Hooks"
541
- msgstr ""
542
-
543
- #: includes/mycred-setup.php:172
544
- msgid ""
545
- "If you want to use advanced features such as Transfers, Point Purchases etc. "
546
- "your next step should be to enable and setup your add-ons."
547
- msgstr ""
548
-
549
- #: includes/mycred-setup.php:173
550
- msgid "Setup Add-ons"
551
- msgstr ""
552
-
553
- #: includes/mycred-setup.php:176
554
- msgid "Adjust Settings"
555
- msgstr ""
556
-
557
- #: includes/mycred-setup.php:177
558
- msgid ""
559
- "If you need to make further changes to your settings or add new point types, "
560
- "you can visit your default point type's settings."
561
- msgstr ""
562
-
563
- #: includes/mycred-setup.php:178
564
- msgid "View Settings"
565
- msgstr ""
566
-
567
- #: includes/mycred-setup.php:322
568
- msgid "Set to decimals to zero if you prefer to use whole numbers."
569
- msgstr ""
570
-
571
- #: includes/mycred-setup.php:442
572
- msgid "Please make sure you fill out all required fields!"
573
- msgstr ""
574
-
575
- #: includes/mycred-remote.php:619
576
- msgid "16, 24 or 32 characters"
577
- msgstr ""
578
-
579
- #: includes/mycred-install.php:63
580
- msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
581
- msgstr ""
582
-
583
- #: includes/mycred-install.php:68
584
- msgid "myCRED requires PHP 5.3 or higher. Version detected: "
585
- msgstr ""
586
-
587
- #: includes/mycred-widgets.php:22
588
- msgid "Show the current users balance and history."
589
- msgstr ""
590
-
591
- #: includes/mycred-widgets.php:192
592
- msgid "Balance Layout"
593
- msgstr ""
594
-
595
- #: includes/mycred-widgets.php:285
596
- msgid "Leaderboard based on instances or balances."
597
- msgstr ""
598
-
599
- #: includes/mycred-widgets.php:419
600
- msgid "Timeframe"
601
- msgstr ""
602
-
603
- #: includes/mycred-widgets.php:421
604
- msgid ""
605
- "Option to limit the leaderboard based on a specific timeframe. Leave empty "
606
- "if not used."
607
- msgstr ""
608
-
609
- #: includes/mycred-widgets.php:472
610
- msgid "Shows multiple balances."
611
- msgstr ""
612
-
613
- #: includes/mycred-functions.php:2678
614
- msgid "per day"
615
- msgstr ""
616
-
617
- #: includes/mycred-functions.php:2680
618
- msgid "per week"
619
- msgstr ""
620
-
621
- #: includes/mycred-functions.php:2682
622
- msgid "per month"
623
- msgstr ""
624
-
625
- #: includes/mycred-functions.php:2684
626
- msgid "in total"
627
- msgstr ""
628
-
629
- #: includes/mycred-functions.php:2686 includes/mycred-functions.php:2690
630
- msgid "Maximum once"
631
- msgid_plural "Maximum %d times"
632
- msgstr[0] ""
633
- msgstr[1] ""
634
-
635
- #: includes/mycred-functions.php:2717
636
- msgctxt "ex. 21st."
637
- msgid "%dst"
638
- msgstr ""
639
-
640
- #: includes/mycred-functions.php:2724
641
- msgctxt "ex. 32nd."
642
- msgid "%dnd"
643
- msgstr ""
644
-
645
- #: includes/mycred-functions.php:2731
646
- msgctxt "ex. 43rd."
647
- msgid "%drd"
648
- msgstr ""
649
-
650
- #: includes/mycred-functions.php:2742
651
- msgctxt "ex. 50th"
652
- msgid "%dth"
653
- msgstr ""
654
-
655
- #: includes/shortcodes/mycred_exchange.php:27
656
- #: includes/shortcodes/mycred_hook_table.php:24
657
- msgid "Point type not found."
658
- msgstr ""
659
-
660
- #: includes/shortcodes/mycred_hook_table.php:21
661
- msgid "No instances found for this point type"
662
- msgstr ""
663
-
664
- #: includes/shortcodes/mycred_hook_table.php:79
665
- msgid "Instance"
666
- msgstr ""
667
-
668
- #: includes/classes/class.query-export.php:263
669
- msgid "Reference ID"
670
- msgstr ""
671
-
672
- #: includes/classes/class.query-export.php:263
673
- msgid "Data"
674
- msgstr ""
675
-
676
- #: includes/classes/class.query-export.php:464
677
- msgid "Export log entries raw"
678
- msgstr ""
679
-
680
- #: includes/classes/class.query-export.php:465
681
- msgid "Export log entries formatted"
682
- msgstr ""
683
-
684
- #: includes/classes/class.query-export.php:482
685
- msgid "All Log Entries"
686
- msgstr ""
687
-
688
- #: includes/classes/class.query-export.php:492
689
- msgid "Users Log Entries"
690
- msgstr ""
691
-
692
- #: includes/classes/class.query-export.php:493
693
- msgid "Export History"
694
- msgstr ""
695
-
696
- #: includes/classes/class.query-log.php:489
697
- msgid "Bulk Actions"
698
- msgstr ""
699
-
700
- #: includes/classes/class.query-log.php:490
701
- msgid "Export Raw"
702
- msgstr ""
703
-
704
- #: includes/classes/class.query-log.php:491
705
- msgid "Export Formatted"
706
- msgstr ""
707
-
708
- #: includes/classes/class.query-log.php:507
709
- msgid "Apply"
710
- msgstr ""
711
-
712
- #: includes/classes/class.query-log.php:544
713
- msgid "User ID, Username, Email or Nicename"
714
- msgstr ""
715
-
716
- #: includes/classes/class.query-log.php:609
717
- msgid "Log entries navigation"
718
- msgstr ""
719
-
720
- #: includes/classes/class.query-log.php:734
721
- msgid "1 entry"
722
- msgid_plural "%d entries"
723
- msgstr[0] ""
724
- msgstr[1] ""
725
-
726
- #: includes/classes/class.query-log.php:867
727
- #: includes/classes/class.query-log.php:888
728
- msgid "Select all"
729
- msgstr ""
730
-
731
- #: includes/classes/class.query-log.php:971
732
- msgid "Select entry"
733
- msgstr ""
734
-
735
- #: includes/classes/class.query-log.php:992
736
- msgid "Show more details"
737
- msgstr ""
738
-
739
- #: includes/classes/class.query-log.php:1016
740
- msgid "Filter by Date"
741
- msgstr ""
742
-
743
- #: includes/classes/class.query-log.php:1065
744
- msgid "Filter by User"
745
- msgstr ""
746
-
747
- #: includes/classes/class.query-log.php:1067
748
- msgid "Filter by ID"
749
- msgstr ""
750
-
751
- #: includes/classes/class.query-log.php:1561
752
- msgid "Profile Update Removal"
753
- msgstr ""
754
-
755
- #: includes/classes/class.query-log.php:1563
756
- msgid "Profile Cover Upload"
757
- msgstr ""
758
-
759
- #: includes/classes/class.query-log.php:1568
760
- msgid "Add Activity to Favorites"
761
- msgstr ""
762
-
763
- #: includes/classes/class.query-log.php:1569
764
- msgid "Remove Activity from Favorites"
765
- msgstr ""
766
-
767
- #: includes/classes/class.query-log.php:1581
768
- msgid "New Group Cover"
769
- msgstr ""
770
-
771
- #: includes/classes/class.query-log.php:1621
772
- msgid "Affiliate Signup (AffiliateWP)"
773
- msgstr ""
774
-
775
- #: includes/classes/class.query-log.php:1622
776
- msgid "Referred Visit (AffiliateWP)"
777
- msgstr ""
778
-
779
- #: includes/classes/class.query-log.php:1623
780
- msgid "Affiliate Referral (AffiliateWP)"
781
- msgstr ""
782
-
783
- #: includes/classes/class.query-log.php:1624
784
- msgid "Referral Refund (AffiliateWP)"
785
- msgstr ""
786
-
787
- #: includes/classes/class.query-log.php:1644
788
- msgid "Recurring Payout"
789
- msgstr ""
790
-
791
- #: includes/classes/class.query-log.php:1648
792
- msgid "Badge Reward"
793
- msgstr ""
794
-
795
- #: includes/classes/class.query-log.php:1665
796
- msgid "Store Reward (WooCommerce)"
797
- msgstr ""
798
-
799
- #: includes/classes/class.query-log.php:1666
800
- msgid "Product Review (WooCommerce)"
801
- msgstr ""
802
-
803
- #: includes/classes/class.query-log.php:1670
804
- msgid "Store Reward (MarketPress)"
805
- msgstr ""
806
-
807
- #: includes/classes/class.query-log.php:1689
808
- msgid "Content Purchase"
809
- msgstr ""
810
-
811
- #: includes/classes/class.query-log.php:1690
812
- msgid "Content Sale"
813
- msgstr ""
814
-
815
- #: addons/banking/myCRED-addon-banking.php:142
816
- msgid ""
817
- "Instead of creating %_plural% out of thin-air, all payouts are made from a "
818
- "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
819
- "deposited back into this account. If the central bank runs out of %_plural%, "
820
- "no %_plural% will be paid out."
821
- msgstr ""
822
-
823
- #: addons/banking/myCRED-addon-banking.php:151
824
- msgid ""
825
- "Offer your users interest on the %_plural% they earn on your website. The "
826
- "interest is compounded daily."
827
- msgstr ""
828
-
829
- #: addons/banking/myCRED-addon-banking.php:202
830
- msgid "New Recurring Payout"
831
- msgstr ""
832
-
833
- #: addons/banking/myCRED-addon-banking.php:203
834
- msgid "Edit Recurring Payout"
835
- msgstr ""
836
-
837
- #: addons/banking/myCRED-addon-banking.php:205
838
- msgid "Please fill out all required fields that are highlighted in red."
839
- msgstr ""
840
-
841
- #: addons/banking/myCRED-addon-banking.php:206
842
- msgid "Are you sure you want to remove this schedule? This can not be undone!"
843
- msgstr ""
844
-
845
- #: addons/banking/myCRED-addon-banking.php:271
846
- msgid "Warning"
847
- msgstr ""
848
-
849
- #: addons/banking/myCRED-addon-banking.php:271
850
- msgid ""
851
- "This banking service uses the WordPress CRON to schedule events. If the "
852
- "WordPress CRON is disabled, this service will not work correctly."
853
- msgstr ""
854
-
855
- #: addons/transfer/myCRED-addon-transfer.php:156
856
- msgid "The selected point type can not be transferred."
857
- msgstr ""
858
-
859
- #: addons/transfer/myCRED-addon-transfer.php:464
860
- msgid ""
861
- "The template to use when the transfer shortcode or widget is viewed by "
862
- "someone who is not logged in."
863
- msgstr ""
864
-
865
- #: addons/transfer/myCRED-addon-transfer.php:479
866
- msgid ""
867
- "The template to use if you select to show the transfer limit in the transfer "
868
- "shortcode or widget. Ignored if there is no limit enforced."
869
- msgstr ""
870
-
871
- #: addons/transfer/myCRED-addon-transfer.php:496
872
- msgid ""
873
- "The template to use if you select to show the users balance in the transfer "
874
- "shortcode or widget. Ignored if balances are not shown."
875
- msgstr ""
876
-
877
- #: addons/transfer/myCRED-addon-transfer.php:512
878
- msgid "Default Button Label"
879
- msgstr ""
880
-
881
- #: addons/transfer/myCRED-addon-transfer.php:514
882
- msgid ""
883
- "The default transfer button label. You can override this in the shortcode or "
884
- "widget if needed."
885
- msgstr ""
886
-
887
- #: addons/transfer/myCRED-addon-transfer.php:517
888
- msgid "Insufficient Funds Warning"
889
- msgstr ""
890
-
891
- #: addons/transfer/myCRED-addon-transfer.php:521
892
- msgid "Message to show the user if they try to send more then they can afford."
893
- msgstr ""
894
-
895
- #: addons/transfer/myCRED-addon-transfer.php:524
896
- msgid "Limit Reached Warning"
897
- msgstr ""
898
-
899
- #: addons/transfer/myCRED-addon-transfer.php:528
900
- msgid ""
901
- "Message to show the user once they reach their transfer limit. Ignored if no "
902
- "limits are enforced."
903
- msgstr ""
904
-
905
- #: addons/ranks/myCRED-addon-ranks.php:216
906
- msgid "Ranks for %s"
907
- msgstr ""
908
-
909
- #: addons/ranks/myCRED-addon-ranks.php:230
910
- #: addons/ranks/myCRED-addon-ranks.php:1368
911
- msgid "Rank Logo"
912
- msgstr ""
913
-
914
- #: addons/ranks/myCRED-addon-ranks.php:231
915
- msgid "Set rank logo"
916
- msgstr ""
917
-
918
- #: addons/ranks/myCRED-addon-ranks.php:232
919
- msgid "Remove rank logo"
920
- msgstr ""
921
-
922
- #: addons/ranks/myCRED-addon-ranks.php:233
923
- msgid "Use as Logo"
924
- msgstr ""
925
-
926
- #: addons/ranks/myCRED-addon-ranks.php:288
927
- msgid "Rank Enabled."
928
- msgstr ""
929
-
930
- #: addons/ranks/myCRED-addon-ranks.php:289
931
- msgid "Rank Saved."
932
- msgstr ""
933
-
934
- #: addons/ranks/myCRED-addon-ranks.php:895
935
- msgid "No ranks exists."
936
- msgstr ""
937
-
938
- #: addons/ranks/myCRED-addon-ranks.php:1189
939
- msgid "Rank Setup"
940
- msgstr ""
941
-
942
- #: addons/ranks/myCRED-addon-ranks.php:1230
943
- msgid "Minimum Balance Requirement"
944
- msgstr ""
945
-
946
- #: addons/ranks/myCRED-addon-ranks.php:1236
947
- msgid "Maximum Balance Requirement"
948
- msgstr ""
949
-
950
- #: addons/ranks/myCRED-addon-ranks.php:1435
951
- msgid ""
952
- "Use this button to calculate or recalculate your users totals. If not used, "
953
- "the users current balance will be used as a starting point."
954
- msgstr ""
955
-
956
- #: addons/ranks/myCRED-addon-ranks.php:1477
957
- #: addons/ranks/myCRED-addon-ranks.php:1522
958
- msgid ""
959
- "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
960
- "for the title and %rank_logo% to show the rank logo. HTML is allowed."
961
- msgstr ""
962
-
963
- #: addons/ranks/myCRED-addon-ranks.php:1499
964
- msgid "Include in Topic Replies"
965
- msgstr ""
966
-
967
- #: addons/ranks/myCRED-addon-ranks.php:1501
968
- msgid "Include in Topic Replies and Profile"
969
- msgstr ""
970
-
971
- #: addons/ranks/myCRED-addon-ranks.php:1505
972
- msgid "Rank in bbPress"
973
- msgstr ""
974
-
975
- #: addons/notifications/myCRED-addon-notifications.php:203
976
- msgid "Restore to default"
977
- msgstr ""
978
-
979
- #: addons/notifications/myCRED-addon-notifications.php:217
980
- msgid ""
981
- "Number of seconds before a notice is automatically removed after being shown "
982
- "to user. Use zero to disable."
983
- msgstr ""
984
-
985
- #: addons/email-notices/myCRED-addon-email-notices.php:124
986
- #: addons/email-notices/myCRED-addon-email-notices.php:130
987
- #: addons/email-notices/myCRED-addon-email-notices.php:136
988
- #: addons/email-notices/myCRED-addon-email-notices.php:192
989
- #: addons/email-notices/myCRED-addon-email-notices.php:193
990
- msgid "Email Notifications"
991
- msgstr ""
992
-
993
- #: addons/email-notices/myCRED-addon-email-notices.php:125
994
- msgid "Email Notification"
995
- msgstr ""
996
-
997
- #: addons/email-notices/myCRED-addon-email-notices.php:128
998
- msgid "Edit Email Notification"
999
- msgstr ""
1000
-
1001
- #: addons/email-notices/myCRED-addon-email-notices.php:129
1002
- msgid "New Email Notification"
1003
- msgstr ""
1004
-
1005
- #: addons/email-notices/myCRED-addon-email-notices.php:132
1006
- msgid "Search Email Notifications"
1007
- msgstr ""
1008
-
1009
- #: addons/email-notices/myCRED-addon-email-notices.php:133
1010
- msgid "No email notifications found"
1011
- msgstr ""
1012
-
1013
- #: addons/email-notices/myCRED-addon-email-notices.php:134
1014
- msgid "No email notifications found in Trash"
1015
- msgstr ""
1016
-
1017
- #: addons/email-notices/myCRED-addon-email-notices.php:172
1018
- msgid "Email Notice Activated."
1019
- msgstr ""
1020
-
1021
- #: addons/email-notices/myCRED-addon-email-notices.php:347
1022
- #: addons/email-notices/myCRED-addon-email-notices.php:588
1023
- msgid "All types"
1024
- msgstr ""
1025
-
1026
- #: addons/email-notices/myCRED-addon-email-notices.php:706
1027
- msgid "Instance Related"
1028
- msgstr ""
1029
-
1030
- #: addons/email-notices/myCRED-addon-email-notices.php:712
1031
- msgid "The users new balance"
1032
- msgstr ""
1033
-
1034
- #: addons/email-notices/myCRED-addon-email-notices.php:720
1035
- msgid "The users old balance"
1036
- msgstr ""
1037
-
1038
- #: addons/email-notices/myCRED-addon-email-notices.php:728
1039
- msgid "The amount of points gained or lost in this instance"
1040
- msgstr ""
1041
-
1042
- #: addons/email-notices/myCRED-addon-email-notices.php:736
1043
- msgid "The log entry"
1044
- msgstr ""
1045
-
1046
- #: addons/email-notices/myCRED-addon-email-notices.php:741
1047
- msgid "You can also use %s."
1048
- msgstr ""
1049
-
1050
- #: addons/email-notices/myCRED-addon-email-notices.php:741
1051
- msgid "user related template tags"
1052
- msgstr ""
1053
-
1054
- #: addons/email-notices/myCRED-addon-email-notices.php:872
1055
- msgid "Badge Add-on"
1056
- msgstr ""
1057
-
1058
- #: addons/email-notices/myCRED-addon-email-notices.php:873
1059
- msgid "user gains a badge"
1060
- msgstr ""
1061
-
1062
- #: addons/email-notices/myCRED-addon-email-notices.php:1385
1063
- msgid "Subscriptions"
1064
- msgstr ""
1065
-
1066
- #: addons/stats/myCRED-addon-stats.php:58
1067
- msgid "Statistics"
1068
- msgstr ""
1069
-
1070
- #: addons/stats/myCRED-addon-stats.php:172
1071
- msgid "Statistics Color"
1072
- msgstr ""
1073
-
1074
- #: addons/stats/myCRED-addon-stats.php:176
1075
- msgid "Positive Values"
1076
- msgstr ""
1077
-
1078
- #: addons/stats/myCRED-addon-stats.php:182
1079
- msgid "Negative Values"
1080
- msgstr ""
1081
-
1082
- #: addons/stats/myCRED-addon-stats.php:248
1083
- msgid "Overview"
1084
- msgstr ""
1085
-
1086
- #: addons/stats/myCRED-addon-stats.php:310
1087
- msgid "Refresh"
1088
- msgstr ""
1089
-
1090
- #: addons/stats/myCRED-addon-stats.php:417
1091
- msgid "Your log is empty. No statistics can be shown."
1092
- msgstr ""
1093
-
1094
- #: addons/badges/myCRED-addon-badges.php:275
1095
- msgid "Badge Enabled."
1096
- msgstr ""
1097
-
1098
- #: addons/badges/myCRED-addon-badges.php:276
1099
- msgid "Badge Saved."
1100
- msgstr ""
1101
-
1102
- #: addons/badges/myCRED-addon-badges.php:398
1103
- msgid "First Level"
1104
- msgstr ""
1105
-
1106
- #: addons/badges/myCRED-addon-badges.php:510
1107
- #: addons/badges/myCRED-addon-badges.php:801
1108
- msgid "Add Level"
1109
- msgstr ""
1110
-
1111
- #: addons/badges/myCRED-addon-badges.php:511
1112
- #: addons/badges/myCRED-addon-badges.php:802
1113
- msgid "Remove Level"
1114
- msgstr ""
1115
-
1116
- #: addons/badges/myCRED-addon-badges.php:512
1117
- #: addons/badges/myCRED-addon-badges.php:755
1118
- #: addons/badges/myCRED-addon-badges.php:818
1119
- #: addons/badges/myCRED-addon-badges.php:823
1120
- msgid "Set Image"
1121
- msgstr ""
1122
-
1123
- #: addons/badges/myCRED-addon-badges.php:513
1124
- #: addons/badges/myCRED-addon-badges.php:755
1125
- #: addons/badges/myCRED-addon-badges.php:823
1126
- msgid "Change Image"
1127
- msgstr ""
1128
-
1129
- #: addons/badges/myCRED-addon-badges.php:514
1130
- msgid "Are you sure you want to remove this level?"
1131
- msgstr ""
1132
-
1133
- #: addons/badges/myCRED-addon-badges.php:515
1134
- #: addons/badges/myCRED-addon-badges.php:819
1135
- #: addons/badges/myCRED-addon-badges.php:1288
1136
- msgid "Level"
1137
- msgstr ""
1138
-
1139
- #: addons/badges/myCRED-addon-badges.php:518
1140
- #: addons/badges/myCRED-addon-badges.php:921
1141
- #: addons/badges/includes/mycred-badge-functions.php:271
1142
- msgctxt "Comparison of badge requirements. A AND B"
1143
- msgid "AND"
1144
- msgstr ""
1145
-
1146
- #: addons/badges/myCRED-addon-badges.php:519
1147
- #: addons/badges/myCRED-addon-badges.php:921
1148
- #: addons/badges/includes/mycred-badge-functions.php:269
1149
- msgctxt "Comparison of badge requirements. A OR B"
1150
- msgid "OR"
1151
- msgstr ""
1152
-
1153
- #: addons/badges/myCRED-addon-badges.php:571
1154
- msgid "Badge Setup"
1155
- msgstr ""
1156
-
1157
- #: addons/badges/myCRED-addon-badges.php:580
1158
- msgid "Default Badge Image"
1159
- msgstr ""
1160
-
1161
- #: addons/badges/myCRED-addon-badges.php:722
1162
- #: addons/badges/includes/mycred-badge-functions.php:287
1163
- msgid "This badge is manually awarded."
1164
- msgstr ""
1165
-
1166
- #: addons/badges/myCRED-addon-badges.php:758
1167
- msgid "Optional image to show when a user has not earned this badge."
1168
- msgstr ""
1169
-
1170
- #: addons/badges/myCRED-addon-badges.php:825
1171
- msgid "Level %d"
1172
- msgstr ""
1173
-
1174
- #: addons/badges/myCRED-addon-badges.php:849
1175
- msgid "Select Point Type"
1176
- msgstr ""
1177
-
1178
- #: addons/badges/myCRED-addon-badges.php:863
1179
- msgid "Select Reference"
1180
- msgstr ""
1181
-
1182
- #: addons/badges/myCRED-addon-badges.php:939
1183
- msgid "Reward"
1184
- msgstr ""
1185
-
1186
- #: addons/badges/myCRED-addon-badges.php:1163
1187
- #: addons/badges/myCRED-addon-badges.php:1199
1188
- msgid "Show all badges, including badges users have not yet earned."
1189
- msgstr ""
1190
-
1191
- #: addons/badges/myCRED-addon-badges.php:1251
1192
- msgid "No image set"
1193
- msgstr ""
1194
-
1195
- #: addons/badges/myCRED-addon-badges.php:1283
1196
- msgid "Select a level"
1197
- msgstr ""
1198
-
1199
- #: addons/badges/myCRED-addon-badges.php:1297
1200
- msgid "Earned"
1201
- msgstr ""
1202
-
1203
- #: addons/badges/myCRED-addon-badges.php:1406
1204
- msgid "A total of %d users have received this badge."
1205
- msgstr ""
1206
-
1207
- #: addons/badges/myCRED-addon-badges.php:1433
1208
- msgid "No connections where removed."
1209
- msgstr ""
1210
-
1211
- #: addons/badges/myCRED-addon-badges.php:1435
1212
- msgid "%s connections where removed."
1213
- msgstr ""
1214
-
1215
- #: addons/coupons/myCRED-addon-coupons.php:249
1216
- msgid "Used"
1217
- msgstr ""
1218
-
1219
- #: addons/coupons/myCRED-addon-coupons.php:296
1220
- msgid "1 time"
1221
- msgid_plural "%d times"
1222
- msgstr[0] ""
1223
- msgstr[1] ""
1224
-
1225
- #: addons/coupons/myCRED-addon-coupons.php:453
1226
- msgid "Coupon Usage"
1227
- msgstr ""
1228
-
1229
- #: addons/coupons/myCRED-addon-coupons.php:536
1230
- msgid "The maximum number of times this coupon can be used."
1231
- msgstr ""
1232
-
1233
- #: addons/sell-content/myCRED-addon-sell-content.php:128
1234
- msgid "Sell Content Add-on Update Required"
1235
- msgstr ""
1236
-
1237
- #: addons/sell-content/myCRED-addon-sell-content.php:129
1238
- msgid ""
1239
- "Before continuing to use this add-on you must setup and save your settings."
1240
- msgstr ""
1241
-
1242
- #: addons/sell-content/myCRED-addon-sell-content.php:235
1243
- msgid "Users profit share when their content is purchased."
1244
- msgstr ""
1245
-
1246
- #: addons/sell-content/myCRED-addon-sell-content.php:251
1247
- #: addons/sell-content/myCRED-addon-sell-content.php:266
1248
- msgctxt "Points Name"
1249
- msgid "%s Profit Share"
1250
- msgstr ""
1251
-
1252
- #: addons/sell-content/myCRED-addon-sell-content.php:254
1253
- msgid "Not accepted as payment."
1254
- msgstr ""
1255
-
1256
- #: addons/sell-content/myCRED-addon-sell-content.php:269
1257
- msgctxt "Points Name"
1258
- msgid "User can not pay using %s"
1259
- msgstr ""
1260
-
1261
- #: addons/sell-content/myCRED-addon-sell-content.php:281
1262
- msgctxt "Buying Points"
1263
- msgid "%s Profit Share"
1264
- msgstr ""
1265
-
1266
- #: addons/sell-content/myCRED-addon-sell-content.php:284
1267
- msgid "Leave empty to use the default."
1268
- msgstr ""
1269
-
1270
- #: addons/sell-content/myCRED-addon-sell-content.php:369
1271
- msgid "Select all the post types you want to sell."
1272
- msgstr ""
1273
-
1274
- #: addons/sell-content/myCRED-addon-sell-content.php:385
1275
- msgid "You must select at least one post type to sell."
1276
- msgstr ""
1277
-
1278
- #: addons/sell-content/myCRED-addon-sell-content.php:439
1279
- msgid "Select all the point types accepted as payment."
1280
- msgstr ""
1281
-
1282
- #: addons/sell-content/myCRED-addon-sell-content.php:458
1283
- msgid "You must select at least one point type to accept as payment."
1284
- msgstr ""
1285
-
1286
- #: addons/sell-content/myCRED-addon-sell-content.php:501
1287
- #: addons/sell-content/myCRED-addon-sell-content.php:909
1288
- msgid "Expiration"
1289
- msgstr ""
1290
-
1291
- #: addons/sell-content/myCRED-addon-sell-content.php:502
1292
- #: addons/sell-content/myCRED-addon-sell-content.php:849
1293
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:181
1294
- msgid "Hour(s)"
1295
- msgstr ""
1296
-
1297
- #: addons/sell-content/myCRED-addon-sell-content.php:503
1298
- #: addons/sell-content/myCRED-addon-sell-content.php:508
1299
- #: addons/banking/services/mycred-service-payouts.php:768
1300
- #: addons/banking/services/mycred-service-payouts.php:775
1301
- msgid "Use zero to disable."
1302
- msgstr ""
1303
-
1304
- #: addons/sell-content/myCRED-addon-sell-content.php:515
1305
- msgid "Use %price% to show the price set for each post."
1306
- msgstr ""
1307
-
1308
- #: addons/sell-content/myCRED-addon-sell-content.php:518
1309
- msgid "Button CSS Classes"
1310
- msgstr ""
1311
-
1312
- #: addons/sell-content/myCRED-addon-sell-content.php:524
1313
- msgid "Payment log entry template"
1314
- msgstr ""
1315
-
1316
- #: addons/sell-content/myCRED-addon-sell-content.php:529
1317
- msgid "Profit Share payout log entry template"
1318
- msgstr ""
1319
-
1320
- #: addons/sell-content/myCRED-addon-sell-content.php:531
1321
- msgid "Only used if profit sharing is enabled for this point type."
1322
- msgstr ""
1323
-
1324
- #: addons/sell-content/myCRED-addon-sell-content.php:542
1325
- msgid "Transactions"
1326
- msgstr ""
1327
-
1328
- #: addons/sell-content/myCRED-addon-sell-content.php:545
1329
- msgid "Reload page after successful payments."
1330
- msgstr ""
1331
-
1332
- #: addons/sell-content/myCRED-addon-sell-content.php:550
1333
- msgid ""
1334
- "Option to show a custom button label while the payment is being processed. "
1335
- "HTML is allowed."
1336
- msgstr ""
1337
-
1338
- #: addons/sell-content/myCRED-addon-sell-content.php:556
1339
- msgid "Members"
1340
- msgstr ""
1341
-
1342
- #: addons/sell-content/myCRED-addon-sell-content.php:557
1343
- msgid ""
1344
- "The template to use when a content is viewed by a member that is logged in "
1345
- "and can afford to pay. Only applied to content that is set for sale."
1346
- msgstr ""
1347
-
1348
- #: addons/sell-content/myCRED-addon-sell-content.php:574
1349
- msgid ""
1350
- "The template to use when a content is viewed by someone who is not logged in."
1351
- " Only applied to content that is set for sale."
1352
- msgstr ""
1353
-
1354
- #: addons/sell-content/myCRED-addon-sell-content.php:592
1355
- msgid ""
1356
- "The template to use when a content is viewed by a member that is logged but "
1357
- "can not afford to buy. Only applied to content that is set for sale."
1358
- msgstr ""
1359
-
1360
- #: addons/sell-content/myCRED-addon-sell-content.php:886
1361
- msgid "Never expires"
1362
- msgstr ""
1363
-
1364
- #: addons/banking/services/mycred-service-central.php:110
1365
- msgid "Central Bank Account"
1366
- msgstr ""
1367
-
1368
- #: addons/banking/services/mycred-service-central.php:113
1369
- msgid "The ID of the user representing the central bank."
1370
- msgstr ""
1371
-
1372
- #: addons/banking/services/mycred-service-interest.php:429
1373
- msgid "Daily Compound Schedule"
1374
- msgstr ""
1375
-
1376
- #: addons/banking/services/mycred-service-interest.php:432
1377
- #: addons/banking/services/mycred-service-interest.php:457
1378
- #: addons/banking/services/mycred-service-payouts.php:728
1379
- msgid "Year"
1380
- msgstr ""
1381
-
1382
- #: addons/banking/services/mycred-service-interest.php:433
1383
- #: addons/banking/services/mycred-service-interest.php:458
1384
- #: addons/banking/services/mycred-service-payouts.php:734
1385
- #: addons/banking/includes/mycred-banking-functions.php:95
1386
- msgid "Month"
1387
- msgstr ""
1388
-
1389
- #: addons/banking/services/mycred-service-interest.php:434
1390
- #: addons/banking/services/mycred-service-interest.php:459
1391
- #: addons/banking/includes/mycred-banking-functions.php:85
1392
- msgid "Day"
1393
- msgstr ""
1394
-
1395
- #: addons/banking/services/mycred-service-interest.php:454
1396
- msgid "Payout Schedule"
1397
- msgstr ""
1398
-
1399
- #: addons/banking/services/mycred-service-interest.php:493
1400
- msgid "Payout Frequency"
1401
- msgstr ""
1402
-
1403
- #: addons/banking/services/mycred-service-interest.php:506
1404
- msgid "Payout Log Table"
1405
- msgstr ""
1406
-
1407
- #: addons/banking/services/mycred-service-interest.php:519
1408
- msgid ""
1409
- "Changing the payout period once the service is enabled, will only take "
1410
- "effect once the currently scheduled payout runs. To change this, you will "
1411
- "also need to adjust the payout schedule above."
1412
- msgstr ""
1413
-
1414
- #: addons/banking/services/mycred-service-interest.php:524
1415
- msgid "Exclude by ID"
1416
- msgstr ""
1417
-
1418
- #: addons/banking/services/mycred-service-interest.php:535
1419
- msgid "Exclude by Role"
1420
- msgstr ""
1421
-
1422
- #: addons/banking/services/mycred-service-interest.php:539
1423
- msgid "Roles to exclude"
1424
- msgstr ""
1425
-
1426
- #: addons/banking/services/mycred-service-interest.php:655
1427
- msgid "Leave empty to pay the default rate."
1428
- msgstr ""
1429
-
1430
- #: addons/banking/services/mycred-service-payouts.php:30
1431
- msgid "Waiting to Start"
1432
- msgstr ""
1433
-
1434
- #: addons/banking/services/mycred-service-payouts.php:32
1435
- msgid "Running"
1436
- msgstr ""
1437
-
1438
- #: addons/banking/services/mycred-service-payouts.php:33
1439
- msgid "Finished"
1440
- msgstr ""
1441
-
1442
- #: addons/banking/services/mycred-service-payouts.php:34
1443
- msgid "Stopped"
1444
- msgstr ""
1445
-
1446
- #: addons/banking/services/mycred-service-payouts.php:446
1447
- msgid "Not yet started"
1448
- msgstr ""
1449
-
1450
- #: addons/banking/services/mycred-service-payouts.php:457
1451
- msgid "Currently Running"
1452
- msgstr ""
1453
-
1454
- #: addons/banking/services/mycred-service-payouts.php:472
1455
- msgid "View Schedule"
1456
- msgstr ""
1457
-
1458
- #: addons/banking/services/mycred-service-payouts.php:472
1459
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
1460
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
1461
- msgid "View"
1462
- msgstr ""
1463
-
1464
- #: addons/banking/services/mycred-service-payouts.php:472
1465
- msgid "Delete Schedule"
1466
- msgstr ""
1467
-
1468
- #: addons/banking/services/mycred-service-payouts.php:523
1469
- #: addons/banking/services/mycred-service-payouts.php:766
1470
- msgid "Min. Balance"
1471
- msgstr ""
1472
-
1473
- #: addons/banking/services/mycred-service-payouts.php:526
1474
- #: addons/banking/services/mycred-service-payouts.php:773
1475
- msgid "Max. Balance"
1476
- msgstr ""
1477
-
1478
- #: addons/banking/services/mycred-service-payouts.php:531
1479
- msgid "Exclude Users"
1480
- msgstr ""
1481
-
1482
- #: addons/banking/services/mycred-service-payouts.php:533
1483
- msgid "Include Users"
1484
- msgstr ""
1485
-
1486
- #: addons/banking/services/mycred-service-payouts.php:540
1487
- msgid "Exclude Roles"
1488
- msgstr ""
1489
-
1490
- #: addons/banking/services/mycred-service-payouts.php:542
1491
- msgid "Include Roles"
1492
- msgstr ""
1493
-
1494
- #: addons/banking/services/mycred-service-payouts.php:559
1495
- #: addons/banking/services/mycred-service-payouts.php:879
1496
- msgid "Job Title"
1497
- msgstr ""
1498
-
1499
- #: addons/banking/services/mycred-service-payouts.php:573
1500
- msgid "Start Date"
1501
- msgstr ""
1502
-
1503
- #: addons/banking/services/mycred-service-payouts.php:579
1504
- msgid "Eligible"
1505
- msgstr ""
1506
-
1507
- #: addons/banking/services/mycred-service-payouts.php:580
1508
- msgid "1 User"
1509
- msgid_plural "%d Users"
1510
- msgstr[0] ""
1511
- msgstr[1] ""
1512
-
1513
- #: addons/banking/services/mycred-service-payouts.php:585
1514
- msgid "Runs"
1515
- msgstr ""
1516
-
1517
- #: addons/banking/services/mycred-service-payouts.php:586
1518
- msgid "Infinite"
1519
- msgstr ""
1520
-
1521
- #: addons/banking/services/mycred-service-payouts.php:609
1522
- msgid "Will payout even if the central bank account has run out of funds."
1523
- msgstr ""
1524
-
1525
- #: addons/banking/services/mycred-service-payouts.php:614
1526
- msgid "Paid Out"
1527
- msgstr ""
1528
-
1529
- #: addons/banking/services/mycred-service-payouts.php:615
1530
- msgid "Completed"
1531
- msgstr ""
1532
-
1533
- #: addons/banking/services/mycred-service-payouts.php:616
1534
- msgid "Misses"
1535
- msgstr ""
1536
-
1537
- #: addons/banking/services/mycred-service-payouts.php:617
1538
- msgid "Runs Left"
1539
- msgstr ""
1540
-
1541
- #: addons/banking/services/mycred-service-payouts.php:637
1542
- msgid ""
1543
- "A miss is when a payout was declined by the plugin. This can be due to "
1544
- "custom code declining the payout or if the user is excluded."
1545
- msgstr ""
1546
-
1547
- #: addons/banking/services/mycred-service-payouts.php:682
1548
- msgid "Schedule Title"
1549
- msgstr ""
1550
-
1551
- #: addons/banking/services/mycred-service-payouts.php:694
1552
- #: addons/banking/services/mycred-service-payouts.php:881
1553
- msgid "Frequency"
1554
- msgstr ""
1555
-
1556
- #: addons/banking/services/mycred-service-payouts.php:715
1557
- msgid "Payout even if the central bank account runs out of funds."
1558
- msgstr ""
1559
-
1560
- #: addons/banking/services/mycred-service-payouts.php:722
1561
- msgid "First Payout"
1562
- msgstr ""
1563
-
1564
- #: addons/banking/services/mycred-service-payouts.php:754
1565
- msgid "Repeat"
1566
- msgstr ""
1567
-
1568
- #: addons/banking/services/mycred-service-payouts.php:756
1569
- msgid "Use -1 for infinite runs."
1570
- msgstr ""
1571
-
1572
- #: addons/banking/services/mycred-service-payouts.php:784
1573
- msgid "Limit by ID"
1574
- msgstr ""
1575
-
1576
- #: addons/banking/services/mycred-service-payouts.php:798
1577
- msgid "Limit by Role(s)"
1578
- msgstr ""
1579
-
1580
- #: addons/banking/services/mycred-service-payouts.php:825
1581
- msgid "Schedule"
1582
- msgstr ""
1583
-
1584
- #: addons/banking/services/mycred-service-payouts.php:846
1585
- msgid "Include:"
1586
- msgstr ""
1587
-
1588
- #: addons/banking/services/mycred-service-payouts.php:847
1589
- msgid "Exclude:"
1590
- msgstr ""
1591
-
1592
- #: addons/banking/services/mycred-service-payouts.php:872
1593
- msgid ""
1594
- "As long as this service remains disabled, none of your scheduled payouts "
1595
- "will run!"
1596
- msgstr ""
1597
-
1598
- #: addons/banking/services/mycred-service-payouts.php:875
1599
- msgid "Schedules"
1600
- msgstr ""
1601
-
1602
- #: addons/banking/services/mycred-service-payouts.php:882
1603
- msgid "Last Ran"
1604
- msgstr ""
1605
-
1606
- #: addons/banking/services/mycred-service-payouts.php:883
1607
- msgid "Next Run"
1608
- msgstr ""
1609
-
1610
- #: addons/banking/services/mycred-service-payouts.php:891
1611
- msgid "No schedules found."
1612
- msgstr ""
1613
-
1614
- #: addons/banking/services/mycred-service-payouts.php:955
1615
- msgid "Schedule Added"
1616
- msgstr ""
1617
-
1618
- #: addons/banking/services/mycred-service-payouts.php:962
1619
- msgid ""
1620
- "While the recurring payout has been successfully saved, based on the limits "
1621
- "you set, right now there are no users that are eligible for a payout!"
1622
- msgstr ""
1623
-
1624
- #: addons/banking/services/mycred-service-payouts.php:974
1625
- #: addons/banking/services/mycred-service-payouts.php:988
1626
- msgid "Schedule not found. Please refresh this page and try again."
1627
- msgstr ""
1628
-
1629
- #: addons/banking/services/mycred-service-payouts.php:993
1630
- msgid "Schedule Deleted"
1631
- msgstr ""
1632
-
1633
- #: addons/banking/includes/mycred-banking-functions.php:80
1634
- msgid "Hour"
1635
- msgstr ""
1636
-
1637
- #: addons/banking/includes/mycred-banking-functions.php:90
1638
- msgid "Week"
1639
- msgstr ""
1640
-
1641
- #: addons/banking/includes/mycred-banking-functions.php:100
1642
- msgid "Quarter"
1643
- msgstr ""
1644
-
1645
- #: addons/banking/includes/mycred-banking-functions.php:105
1646
- msgid "Semiannual"
1647
- msgstr ""
1648
-
1649
- #: addons/banking/includes/mycred-banking-functions.php:110
1650
- msgid "Annual"
1651
- msgstr ""
1652
-
1653
- #: addons/banking/includes/mycred-banking-functions.php:283
1654
- msgid "A title must be set."
1655
- msgstr ""
1656
-
1657
- #: addons/banking/includes/mycred-banking-functions.php:290
1658
- msgid "The amount to payout can not be zero."
1659
- msgstr ""
1660
-
1661
- #: addons/banking/includes/mycred-banking-functions.php:296
1662
- msgid "Start date can not be in the past."
1663
- msgstr ""
1664
-
1665
- #: addons/banking/includes/mycred-banking-functions.php:303
1666
- msgid "Repeat can not be zero."
1667
- msgstr ""
1668
-
1669
- #: addons/banking/includes/mycred-banking-functions.php:309
1670
- msgid "Duplicate schedule."
1671
- msgstr ""
1672
-
1673
- #: addons/gateway/carts/mycred-woocommerce.php:364
1674
- msgctxt "%s = Point amount formatted"
1675
- msgid "Refunded %s"
1676
- msgstr ""
1677
-
1678
- #: addons/transfer/includes/mycred-transfer-widgets.php:89
1679
- #: addons/transfer/includes/mycred-transfer-widgets.php:93
1680
- #: addons/transfer/includes/mycred-transfer-widgets.php:97
1681
- #: addons/transfer/includes/mycred-transfer-widgets.php:109
1682
- msgid "required"
1683
- msgstr ""
1684
-
1685
- #: addons/transfer/includes/mycred-transfer-widgets.php:100
1686
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:31
1687
- #: addons/buy-creds/modules/buycred-module-pending.php:565
1688
- #: addons/buy-creds/modules/buycred-module-core.php:1475
1689
- msgid "Recipient"
1690
- msgstr ""
1691
-
1692
- #: addons/transfer/includes/mycred-transfer-widgets.php:104
1693
- msgid "Recipient Placeholder"
1694
- msgstr ""
1695
-
1696
- #: addons/transfer/includes/mycred-transfer-widgets.php:112
1697
- msgid "Message for Excluded Users"
1698
- msgstr ""
1699
-
1700
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:44
1701
- msgid "Total %s:"
1702
- msgstr ""
1703
-
1704
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:138
1705
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:267
1706
- msgid "Total amount of %s in circulation"
1707
- msgstr ""
1708
-
1709
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:171
1710
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:302
1711
- msgid "Total gains (%)"
1712
- msgstr ""
1713
-
1714
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:175
1715
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:306
1716
- msgid "Total loses (%)"
1717
- msgstr ""
1718
-
1719
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:179
1720
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
1721
- msgid "Total Gained: %s"
1722
- msgstr ""
1723
-
1724
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:179
1725
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
1726
- msgid "Total Spent: %s"
1727
- msgstr ""
1728
-
1729
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:193
1730
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:323
1731
- msgid "This Year"
1732
- msgstr ""
1733
-
1734
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:197
1735
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:199
1736
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:201
1737
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
1738
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:327
1739
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:329
1740
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:331
1741
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:333
1742
- #: addons/badges/includes/mycred-badge-functions.php:267
1743
- msgid "Gained"
1744
- msgstr ""
1745
-
1746
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:198
1747
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200
1748
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
1749
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:204
1750
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:328
1751
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:330
1752
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:332
1753
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:334
1754
- #: addons/badges/includes/mycred-badge-functions.php:267
1755
- msgid "Lost"
1756
- msgstr ""
1757
-
1758
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
1759
- msgid ""
1760
- "Most common ways your users have lost or spent points during this period."
1761
- msgstr ""
1762
-
1763
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
1764
- msgid ""
1765
- "Most common ways your users have lost or spent %_plural% during this period."
1766
- msgstr ""
1767
-
1768
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
1769
- msgid "Loses in the last 10 days"
1770
- msgstr ""
1771
-
1772
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
1773
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
1774
- msgid "No data found"
1775
- msgstr ""
1776
-
1777
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
1778
- msgid "Most common ways your users have gained points during this period."
1779
- msgstr ""
1780
-
1781
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
1782
- msgid "Most common ways your users have gained %_plural% during this period."
1783
- msgstr ""
1784
-
1785
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
1786
- msgid "Gains in the last 10 days"
1787
- msgstr ""
1788
-
1789
- #: addons/badges/includes/mycred-badge-functions.php:248
1790
- msgid "Level %s"
1791
- msgstr ""
1792
-
1793
- #: addons/badges/includes/mycred-badge-functions.php:265
1794
- msgctxt "\"Points\" for \"reference\" x times"
1795
- msgid "%s for \"%s\" x %d"
1796
- msgstr ""
1797
-
1798
- #: addons/badges/includes/mycred-badge-functions.php:267
1799
- msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
1800
- msgid "%s %s for \"%s\""
1801
- msgstr ""
1802
-
1803
- #: addons/sell-content/includes/mycred-sell-functions.php:502
1804
- msgctxt "Point type name"
1805
- msgid "You can not pay using %s"
1806
- msgstr ""
1807
-
1808
- #: addons/sell-content/includes/mycred-sell-functions.php:763
1809
- msgctxt "all post type name"
1810
- msgid "All %s"
1811
- msgstr ""
1812
-
1813
- #: addons/sell-content/includes/mycred-sell-functions.php:767
1814
- msgctxt "all post type name"
1815
- msgid "%s I manually select"
1816
- msgstr ""
1817
-
1818
- #: addons/sell-content/includes/mycred-sell-functions.php:771
1819
- msgctxt "%s = post type name"
1820
- msgid "All %s except"
1821
- msgstr ""
1822
-
1823
- #: addons/sell-content/includes/mycred-sell-functions.php:772
1824
- msgctxt "%s = post type name"
1825
- msgid "Comma separated list of %s IDs to exclude"
1826
- msgstr ""
1827
-
1828
- #: addons/sell-content/includes/mycred-sell-functions.php:775
1829
- msgctxt "%s = post type name"
1830
- msgid "Only %s"
1831
- msgstr ""
1832
-
1833
- #: addons/sell-content/includes/mycred-sell-functions.php:776
1834
- msgctxt "%s = post type name"
1835
- msgid "Comma separated list of %s IDs"
1836
- msgstr ""
1837
-
1838
- #: addons/sell-content/includes/mycred-sell-functions.php:788
1839
- msgctxt "e.g. Only \"Posts\" in \"Categories\""
1840
- msgid "Only %s in %s"
1841
- msgstr ""
1842
-
1843
- #: addons/sell-content/includes/mycred-sell-functions.php:789
1844
- #: addons/sell-content/includes/mycred-sell-functions.php:793
1845
- #: addons/sell-content/includes/mycred-sell-functions.php:799
1846
- #: addons/sell-content/includes/mycred-sell-functions.php:803
1847
- msgctxt "%s = taxonomy name"
1848
- msgid "Comma separated list of %s slugs"
1849
- msgstr ""
1850
-
1851
- #: addons/sell-content/includes/mycred-sell-functions.php:792
1852
- msgctxt "e.g. Only \"Posts\" not in \"Categories\""
1853
- msgid "Only %s not in %s"
1854
- msgstr ""
1855
-
1856
- #: addons/sell-content/includes/mycred-sell-functions.php:798
1857
- msgctxt "e.g. Only \"Posts\" with \"Tags\""
1858
- msgid "Only %s with %s"
1859
- msgstr ""
1860
-
1861
- #: addons/sell-content/includes/mycred-sell-functions.php:802
1862
- msgctxt "e.g. Only \"Posts\" without \"Tags\""
1863
- msgid "Only %s without %s"
1864
- msgstr ""
1865
-
1866
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:233
1867
- msgctxt "e.g. 10 hours"
1868
- msgid "Purchase expires in %s"
1869
- msgstr ""
1870
-
1871
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:225
1872
- msgctxt "%s is replaced with the point amount and name."
1873
- msgid "Received new request to purchase %s."
1874
- msgstr ""
1875
-
1876
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
1877
- msgid "First Name"
1878
- msgstr ""
1879
-
1880
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
1881
- msgid "Last Name"
1882
- msgstr ""
1883
-
1884
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
1885
- msgid "Address Line 1"
1886
- msgstr ""
1887
-
1888
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
1889
- msgid "Address Line 2"
1890
- msgstr ""
1891
-
1892
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
1893
- msgid "City"
1894
- msgstr ""
1895
-
1896
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
1897
- msgid "Zip"
1898
- msgstr ""
1899
-
1900
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
1901
- msgid "State"
1902
- msgstr ""
1903
-
1904
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
1905
- msgid "Country"
1906
- msgstr ""
1907
-
1908
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
1909
- msgid "Choose Country"
1910
- msgstr ""
1911
-
1912
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:691
1913
- msgctxt "buyCRED order description"
1914
- msgid "Item"
1915
- msgstr ""
1916
-
1917
- #: addons/buy-creds/modules/buycred-module-pending.php:200
1918
- #: addons/buy-creds/modules/buycred-module-pending.php:201
1919
- #: addons/buy-creds/modules/buycred-module-pending.php:202
1920
- #: addons/buy-creds/modules/buycred-module-pending.php:203
1921
- #: addons/buy-creds/modules/buycred-module-pending.php:204
1922
- #: addons/buy-creds/modules/buycred-module-pending.php:205
1923
- #: addons/buy-creds/modules/buycred-module-pending.php:206
1924
- #: addons/buy-creds/modules/buycred-module-pending.php:207
1925
- #: addons/buy-creds/modules/buycred-module-pending.php:208
1926
- msgid "Payment Updated."
1927
- msgstr ""
1928
-
1929
- #: addons/buy-creds/modules/buycred-module-pending.php:236
1930
- msgid "Pending payment successfully credited to account."
1931
- msgstr ""
1932
-
1933
- #: addons/buy-creds/modules/buycred-module-pending.php:238
1934
- msgid "Failed to credit the pending payment to account."
1935
- msgstr ""
1936
-
1937
- #: addons/buy-creds/modules/buycred-module-pending.php:457
1938
- msgid "Pending Payment"
1939
- msgstr ""
1940
-
1941
- #: addons/buy-creds/modules/buycred-module-pending.php:495
1942
- msgid "Trash"
1943
- msgstr ""
1944
-
1945
- #: addons/buy-creds/modules/buycred-module-pending.php:559
1946
- msgid "Payer"
1947
- msgstr ""
1948
-
1949
- #: addons/buy-creds/modules/buycred-module-pending.php:668
1950
- msgid "Pending request created."
1951
- msgstr ""
1952
-
1953
- #: addons/buy-creds/modules/buycred-module-pending.php:716
1954
- msgid "Pending payment updated by %s"
1955
- msgstr ""
1956
-
1957
- #: addons/buy-creds/modules/buycred-module-core.php:138
1958
- msgid "Bank Transfer"
1959
- msgstr ""
1960
-
1961
- #: addons/buy-creds/modules/buycred-module-core.php:1092
1962
- msgid "Users exchange rate when buying points."
1963
- msgstr ""
1964
-
1965
- #: addons/buy-creds/modules/buycred-module-core.php:1103
1966
- msgid "buyCRED Exchange Rates"
1967
- msgstr ""
1968
-
1969
- #: addons/buy-creds/modules/buycred-module-core.php:1113
1970
- msgctxt "Points Name"
1971
- msgid "Buying %s"
1972
- msgstr ""
1973
-
1974
- #: addons/buy-creds/modules/buycred-module-core.php:1116
1975
- msgid "This point type is not for sale."
1976
- msgstr ""
1977
-
1978
- #: addons/buy-creds/modules/buycred-module-core.php:1128
1979
- #: addons/buy-creds/modules/buycred-module-core.php:1143
1980
- msgctxt "Buying Points"
1981
- msgid "Buying %s"
1982
- msgstr ""
1983
-
1984
- #: addons/buy-creds/modules/buycred-module-core.php:1131
1985
- msgctxt "Points Name"
1986
- msgid "User can not buy %s"
1987
- msgstr ""
1988
-
1989
- #: addons/buy-creds/modules/buycred-module-core.php:1146
1990
- msgid "Leave empty to use the default rate."
1991
- msgstr ""
1992
-
1993
- #: addons/buy-creds/modules/buycred-module-core.php:1519
1994
- msgid "Pay Using"
1995
- msgstr ""
1996
-
1997
- #: addons/buy-creds/includes/buycred-functions.php:115
1998
- msgid "Unknown Gateway"
1999
- msgstr ""
2000
-
2001
- #: addons/buy-creds/gateways/bank-transfer.php:139
2002
- msgid "Continue"
2003
- msgstr ""
2004
-
2005
- #: addons/buy-creds/gateways/bank-transfer.php:167
2006
- msgid "Checkout Logo"
2007
- msgstr ""
2008
-
2009
- #: addons/buy-creds/gateways/bank-transfer.php:173
2010
- msgid "Bank Account Information"
2011
- msgstr ""
2012
-
2013
- #: addons/buy-creds/gateways/bank-transfer.php:177
2014
- msgid "Bank transfer details to show the user on the checkout page."
2015
- msgstr ""
2016
-
2017
- #: addons/buy-creds/gateways/paypal-standard.php:256
2018
- msgctxt "Return label. %s = Website name"
2019
- msgid "Return to %s"
2020
- msgstr ""
2021
-
2022
- #. Description of the plugin
2023
- msgid "An adaptive points management system for WordPress powered websites."
2024
- msgstr ""
2025
-
2026
- #: mycred.php:564
2027
- msgid "%s Log Import"
2028
- msgstr "Importation du journal %s"
2029
-
2030
- #: mycred.php:565
2031
- msgid "Import log entries via a CSV file."
2032
- msgstr "Importation des données de connexion via un fichier CSV"
2033
-
2034
- #: mycred.php:576
2035
- msgid "%s Balance Import"
2036
- msgstr "Import des soldes %s"
2037
-
2038
- #: mycred.php:577
2039
- msgid "Import balances."
2040
- msgstr "Importer les soldes"
2041
-
2042
- #: mycred.php:588
2043
- msgid "%s CubePoints Import"
2044
- msgstr "Importation CubePoints %s"
2045
-
2046
- #: mycred.php:589 includes/importers/mycred-cubepoints.php:379
2047
- msgid "Import CubePoints log entries and / or balances."
2048
- msgstr "Importe les données de onnexion CubePoints et/ou les soldes"
2049
-
2050
- #: mycred.php:631 modules/mycred-module-management.php:314
2051
- #: modules/mycred-module-settings.php:426 modules/mycred-module-log.php:466
2052
- #: addons/transfer/myCRED-addon-transfer.php:139
2053
- #: addons/ranks/myCRED-addon-ranks.php:986
2054
- #: addons/ranks/myCRED-addon-ranks.php:1570
2055
- #: addons/badges/myCRED-addon-badges.php:702
2056
- #: addons/gateway/event-booking/mycred-eventsmanager.php:478
2057
- msgid "Processing..."
2058
- msgstr "Chargement en cours..."
2059
-
2060
- #: mycred.php:632
2061
- msgid "Sent"
2062
- msgstr "Envoyer"
2063
-
2064
- #: mycred.php:633
2065
- msgid "Error - Try Again"
2066
- msgstr "Erreur - essayez encore une fois"
2067
-
2068
- #: mycred.php:765
2069
- msgid "No CubePoints log exists."
2070
- msgstr "Il n'existe aucune donnéee CubePoints"
2071
-
2072
- #: mycred.php:816 mycred.php:817
2073
- msgid "About %s"
2074
- msgstr "&Agrave; propos de %s"
2075
-
2076
- #: mycred.php:825 mycred.php:826
2077
- msgid "Awesome People"
2078
- msgstr "On les remercie"
2079
-
2080
- #: mycred.php:863 modules/mycred-module-management.php:556
2081
- #: addons/transfer/myCRED-addon-transfer.php:495
2082
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
2083
- msgid "Balance"
2084
- msgstr "Solde"
2085
-
2086
- #: mycred.php:930 modules/mycred-module-management.php:471
2087
- #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
2088
- #: addons/buy-creds/modules/buycred-module-pending.php:460
2089
- msgid "History"
2090
- msgstr "Mes points"
2091
-
2092
- #: mycred.php:986 mycred.php:1007
2093
- #: addons/email-notices/myCRED-addon-email-notices.php:273
2094
- #: addons/banking/services/mycred-service-interest.php:477
2095
- #: addons/gateway/event-booking/mycred-eventsmanager.php:537
2096
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
2097
- msgid "Setup"
2098
- msgstr "Configuration"
2099
-
2100
- #: mycred.php:988 modules/mycred-module-settings.php:21
2101
- #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
2102
- #: modules/mycred-module-network.php:164
2103
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
2104
- #: addons/buy-creds/modules/buycred-module-core.php:555
2105
- msgid "Settings"
2106
- msgstr "Configuration"
2107
-
2108
- #: mycred.php:1029
2109
- msgid ""
2110
- "Make sure to backup your database and files before updating, in case "
2111
- "anything goes wrong!"
2112
- msgstr ""
2113
- "Agissez prudemment en sauvegardant votre base de données et vos fichiers "
2114
- "avant de lancer la mise à jour."
2115
-
2116
- #: abstracts/mycred-abstract-hook.php:90
2117
- msgid "This Hook has no settings"
2118
- msgstr "Ce hook n'a pas de paramètre."
2119
-
2120
- #: abstracts/mycred-abstract-hook.php:283
2121
- #: abstracts/mycred-abstract-hook.php:354 includes/mycred-functions.php:2672
2122
- msgid "No limit"
2123
- msgstr "Illimité"
2124
-
2125
- #: abstracts/mycred-abstract-hook.php:355
2126
- msgid "Once every 24 hours"
2127
- msgstr "Une fois toutes les 24h"
2128
-
2129
- #: abstracts/mycred-abstract-hook.php:356
2130
- msgid "Once every 7 days"
2131
- msgstr "Une fois tous les 7 jours"
2132
-
2133
- #: abstracts/mycred-abstract-hook.php:357
2134
- msgid "Once per day (reset at midnight)"
2135
- msgstr "Une fois par jour (remise à zéro à minuit)"
2136
-
2137
- #: abstracts/mycred-abstract-hook.php:364
2138
- #: addons/email-notices/myCRED-addon-email-notices.php:527
2139
- #: addons/email-notices/myCRED-addon-email-notices.php:859
2140
- #: addons/badges/myCRED-addon-badges.php:880
2141
- #: addons/banking/abstracts/mycred-abstract-service.php:351
2142
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
2143
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
2144
- #: addons/buy-creds/modules/buycred-module-core.php:380
2145
- #: addons/buy-creds/modules/buycred-module-core.php:403
2146
- #: addons/buy-creds/gateways/zombaio.php:406
2147
- msgid "Select"
2148
- msgstr "sélectionnez"
2149
-
2150
- #: abstracts/mycred-abstract-module.php:400
2151
- #: abstracts/mycred-abstract-module.php:410
2152
- msgid "Surprise"
2153
- msgstr "Surprise"
2154
-
2155
- #: abstracts/mycred-abstract-module.php:528
2156
- #: modules/mycred-module-network.php:98
2157
- msgid "click to close"
2158
- msgstr "cliquez pour fermer"
2159
-
2160
- #: abstracts/mycred-abstract-module.php:529
2161
- #: modules/mycred-module-network.php:99
2162
- msgid "click to open"
2163
- msgstr "cliquez pour ouvrir"
2164
-
2165
- #: abstracts/mycred-abstract-module.php:562
2166
- #: modules/mycred-module-network.php:155
2167
- #: addons/email-notices/myCRED-addon-email-notices.php:1472
2168
- #: addons/gateway/event-booking/mycred-eventespresso3.php:451
2169
- #: addons/buy-creds/modules/buycred-module-core.php:560
2170
- msgid "Settings Updated"
2171
- msgstr "Configuration mise à jour"
2172
-
2173
- #: modules/mycred-module-management.php:101
2174
- msgid "Update Balance"
2175
- msgstr "Mettre à jour le solde"
2176
-
2177
- #: modules/mycred-module-management.php:114
2178
- msgid "User is excluded"
2179
- msgstr "Cet utilisateur est exclu"
2180
-
2181
- #: modules/mycred-module-management.php:122
2182
- msgid "Log Entry can not be empty"
2183
- msgstr "Le champ ne peut pas être vide."
2184
-
2185
- #: modules/mycred-module-management.php:130 modules/mycred-module-log.php:225
2186
- msgid "Amount can not be zero"
2187
- msgstr "Le montant ne peut pas être zéro"
2188
-
2189
- #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
2190
- #: modules/mycred-module-log.php:914 includes/shortcodes/mycred_history.php:59
2191
- #: includes/classes/class.query-export.php:263
2192
- #: includes/classes/class.query-export.php:399
2193
- #: includes/classes/class.query-log.php:370
2194
- #: includes/classes/class.query-log.php:383
2195
- #: addons/banking/services/mycred-service-payouts.php:740
2196
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:185
2197
- #: addons/buy-creds/modules/buycred-module-core.php:752
2198
- msgid "Date"
2199
- msgstr "Daté"
2200
-
2201
- #: modules/mycred-module-management.php:236
2202
- #: addons/banking/services/mycred-service-interest.php:435
2203
- #: addons/banking/services/mycred-service-interest.php:460
2204
- #: addons/banking/services/mycred-service-payouts.php:746
2205
- msgid "Time"
2206
- msgstr "Durée"
2207
-
2208
- #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
2209
- #: includes/shortcodes/mycred_history.php:61
2210
- #: includes/classes/class.query-export.php:263
2211
- #: includes/classes/class.query-export.php:406
2212
- #: includes/classes/class.query-log.php:372
2213
- #: includes/classes/class.query-log.php:385
2214
- msgid "Entry"
2215
- msgstr "Motif"
2216
-
2217
- #: modules/mycred-module-management.php:312
2218
- msgid "Edit Users Balance"
2219
- msgstr "Modifier le solde des utilisateurs"
2220
-
2221
- #: modules/mycred-module-management.php:313
2222
- #: modules/mycred-module-settings.php:431 modules/mycred-module-log.php:465
2223
- #: addons/banking/myCRED-addon-banking.php:204
2224
- msgid "Close"
2225
- msgstr "fermer"
2226
-
2227
- #: modules/mycred-module-management.php:451
2228
- #: modules/mycred-module-management.php:569
2229
- #: addons/sell-content/myCRED-addon-sell-content.php:268
2230
- #: addons/buy-creds/modules/buycred-module-core.php:1130
2231
- msgid "Excluded"
2232
- msgstr "Exclus"
2233
-
2234
- #: modules/mycred-module-management.php:461
2235
- #: addons/coupons/myCRED-addon-coupons.php:307
2236
- msgid "Total"
2237
- msgstr "Total"
2238
-
2239
- #: modules/mycred-module-management.php:472
2240
- msgid "Adjust"
2241
- msgstr "Ajustement"
2242
-
2243
- #: modules/mycred-module-management.php:581
2244
- #: modules/mycred-module-management.php:581
2245
- #: includes/classes/class.query-log.php:1074
2246
- msgid "Edit"
2247
- msgstr "Modifier"
2248
-
2249
- #: modules/mycred-module-management.php:581
2250
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
2251
- #: addons/buy-creds/modules/buycred-module-pending.php:734
2252
- msgid "Cancel"
2253
- msgstr "Annuler"
2254
-
2255
- #: modules/mycred-module-management.php:739
2256
- #: addons/banking/services/mycred-service-payouts.php:553
2257
- msgid "ID"
2258
- msgstr "ID"
2259
-
2260
- #: modules/mycred-module-management.php:751
2261
- #: addons/gateway/event-booking/mycred-eventespresso3.php:307
2262
- #: addons/gateway/event-booking/mycred-eventespresso3.php:332
2263
- #: addons/gateway/event-booking/mycred-eventsmanager.php:412
2264
- msgid "Current Balance"
2265
- msgstr "Solde actuel"
2266
-
2267
- #: modules/mycred-module-management.php:766
2268
- #: plugins/mycred-hook-affiliatewp.php:260
2269
- #: includes/shortcodes/mycred_exchange.php:69
2270
- #: includes/shortcodes/mycred_hook_table.php:80
2271
- #: includes/classes/class.query-export.php:263
2272
- #: includes/classes/class.query-export.php:383
2273
- #: addons/transfer/includes/mycred-transfer-widgets.php:92
2274
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
2275
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
2276
- #: addons/buy-creds/modules/buycred-module-pending.php:289
2277
- #: addons/buy-creds/modules/buycred-module-pending.php:631
2278
- #: addons/buy-creds/modules/buycred-module-pending.php:749
2279
- msgid "Amount"
2280
- msgstr "Montant"
2281
-
2282
- #: modules/mycred-module-management.php:768
2283
- msgid "A positive or negative value"
2284
- msgstr "Une valeur positive ou négative"
2285
-
2286
- #: modules/mycred-module-management.php:794 modules/mycred-module-log.php:933
2287
- #: addons/gateway/event-booking/mycred-eventespresso3.php:518
2288
- msgid "Log Entry"
2289
- msgstr "Journal d'activité"
2290
-
2291
- #: modules/mycred-module-management.php:795
2292
- #: addons/transfer/includes/mycred-transfer-widgets.php:79
2293
- #: addons/transfer/includes/mycred-transfer-widgets.php:101
2294
- #: addons/transfer/includes/mycred-transfer-widgets.php:105
2295
- #: addons/transfer/includes/mycred-transfer-widgets.php:113
2296
- msgid "optional"
2297
- msgstr "optionnel"
2298
-
2299
- #: modules/mycred-module-settings.php:138
2300
- msgid "Accounts successfully reset"
2301
- msgstr "Remise à zéro du compte réussie"
2302
-
2303
- #: modules/mycred-module-settings.php:190
2304
- msgid "No users found to export"
2305
- msgstr "Aucun utilisateur à exporter"
2306
-
2307
- #: modules/mycred-module-settings.php:427
2308
- msgid ""
2309
- "Warning! All entries in your log will be permanently removed! This can not "
2310
- "be undone!"
2311
- msgstr ""
2312
- "Attention ! Toutes les entrées seront définitivement supprimées. Cette "
2313
- "action ne pourra pas être annulée."
2314
-
2315
- #: modules/mycred-module-settings.php:428
2316
- msgid ""
2317
- "All log entries belonging to deleted users will be permanently deleted! This "
2318
- "can not be undone!"
2319
- msgstr ""
2320
- "Toutes les entrées appartenant aux utilisateurs supprimés seront "
2321
- "définitivement détruites. Cette action ne pourra pas être annulée."
2322
-
2323
- #: modules/mycred-module-settings.php:429
2324
- msgid "Warning! All user balances will be set to zero! This can not be undone!"
2325
- msgstr ""
2326
- "Attention ! Les soldes de tous les utilisateurs seront remis à zéro. Cette "
2327
- "action ne pourra pas être annulée."
2328
-
2329
- #: modules/mycred-module-settings.php:430
2330
- msgid "Done!"
2331
- msgstr "Terminé !"
2332
-
2333
- #: modules/mycred-module-settings.php:432
2334
- msgid "Export users %plural%"
2335
- msgstr "Exportation des %plural% des utilisateurs"
2336
-
2337
- #: modules/mycred-module-settings.php:529
2338
- msgid "%s Settings"
2339
- msgstr "Configuration de %s"
2340
-
2341
- #: modules/mycred-module-settings.php:538
2342
- msgid "Core Settings"
2343
- msgstr "Configuration du Core"
2344
-
2345
- #: modules/mycred-module-settings.php:543 includes/mycred-setup.php:275
2346
- #: addons/gateway/event-booking/mycred-eventespresso3.php:460
2347
- #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2348
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
2349
- msgid "Labels"
2350
- msgstr "Intitulés"
2351
-
2352
- #: modules/mycred-module-settings.php:561 includes/mycred-setup.php:293
2353
- msgid "Format"
2354
- msgstr "Formatage"
2355
-
2356
- #: modules/mycred-module-settings.php:565 includes/mycred-setup.php:297
2357
- msgid "Prefix"
2358
- msgstr "Préfixe"
2359
-
2360
- #: modules/mycred-module-settings.php:571 includes/mycred-setup.php:303
2361
- msgid "Separators"
2362
- msgstr "Séparateurs"
2363
-
2364
- #: modules/mycred-module-settings.php:579 includes/mycred-setup.php:311
2365
- msgid "Decimals"
2366
- msgstr "Décimales"
2367
-
2368
- #: modules/mycred-module-settings.php:585 includes/mycred-setup.php:317
2369
- msgid "Suffix"
2370
- msgstr "Suffixe"
2371
-
2372
- #: modules/mycred-module-settings.php:592
2373
- msgid "Tip"
2374
- msgstr "Astuce"
2375
-
2376
- #: modules/mycred-module-settings.php:599 includes/mycred-setup.php:328
2377
- msgid "Security"
2378
- msgstr "Sécurité"
2379
-
2380
- #: modules/mycred-module-settings.php:646
2381
- msgid "Delete log entries when user is deleted."
2382
- msgstr ""
2383
- "supprimer les données attachées lors de la suppression de l'utilisateur"
2384
-
2385
- #: modules/mycred-module-settings.php:665
2386
- msgid "Management"
2387
- msgstr "Gestion des données"
2388
-
2389
- #: modules/mycred-module-settings.php:677 modules/mycred-module-log.php:433
2390
- msgid "Entries"
2391
- msgstr "Entrées"
2392
-
2393
- #: modules/mycred-module-settings.php:683
2394
- #: modules/mycred-module-settings.php:708
2395
- #: addons/ranks/myCRED-addon-ranks.php:1659
2396
- #: addons/buy-creds/modules/buycred-module-pending.php:466
2397
- #: addons/buy-creds/modules/buycred-module-pending.php:752
2398
- msgid "Actions"
2399
- msgstr "Actions"
2400
-
2401
- #: modules/mycred-module-settings.php:686
2402
- msgid "Empty Log"
2403
- msgstr "Journal vide"
2404
-
2405
- #: modules/mycred-module-settings.php:702
2406
- #: addons/ranks/myCRED-addon-ranks.php:1076
2407
- #: addons/badges/myCRED-addon-badges.php:400
2408
- msgid "Users"
2409
- msgstr "Utilisateurs"
2410
-
2411
- #: modules/mycred-module-settings.php:710
2412
- msgid "Set all to zero"
2413
- msgstr "Tout remettre à zéro"
2414
-
2415
- #: modules/mycred-module-settings.php:727 includes/mycred-widgets.php:573
2416
- #: addons/transfer/myCRED-addon-transfer.php:383
2417
- #: addons/sell-content/myCRED-addon-sell-content.php:437
2418
- #: addons/transfer/includes/mycred-transfer-widgets.php:108
2419
- #: addons/buy-creds/modules/buycred-module-core.php:336
2420
- msgid "Point Types"
2421
- msgstr "Types de Points"
2422
-
2423
- #: modules/mycred-module-settings.php:741
2424
- #: modules/mycred-module-settings.php:767
2425
- #: modules/mycred-module-settings.php:797
2426
- msgid "Meta Key"
2427
- msgstr "Mot-clé"
2428
-
2429
- #: modules/mycred-module-settings.php:747
2430
- #: modules/mycred-module-settings.php:773
2431
- #: modules/mycred-module-settings.php:803
2432
- #: addons/email-notices/myCRED-addon-email-notices.php:575
2433
- #: addons/gateway/carts/mycred-woocommerce.php:159
2434
- msgid "Label"
2435
- msgstr "Etiquette"
2436
-
2437
- #: modules/mycred-module-settings.php:754
2438
- #: modules/mycred-module-settings.php:780
2439
- #: includes/classes/class.query-log.php:492
2440
- #: includes/classes/class.query-log.php:1075
2441
- #: addons/banking/services/mycred-service-payouts.php:472
2442
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
2443
- msgid "Delete"
2444
- msgstr "Suppirmer"
2445
-
2446
- #: modules/mycred-module-settings.php:793
2447
- msgid "Add New Type"
2448
- msgstr "Ajouter un nouveau type"
2449
-
2450
- #: modules/mycred-module-settings.php:821
2451
- #: addons/gateway/event-booking/mycred-eventespresso3.php:551
2452
- #: addons/buy-creds/modules/buycred-module-core.php:613
2453
- msgid "Update Settings"
2454
- msgstr "Enregistrer la configuration"
2455
-
2456
- #: modules/mycred-module-settings.php:830
2457
- msgid "Identify users by"
2458
- msgstr "Identifer les utilisateurs par"
2459
-
2460
- #: modules/mycred-module-settings.php:836
2461
- msgid "User ID"
2462
- msgstr "ID utilisateur"
2463
-
2464
- #: modules/mycred-module-settings.php:837
2465
- msgid "User Email"
2466
- msgstr "Email de l'utilisateur"
2467
-
2468
- #: modules/mycred-module-settings.php:838
2469
- msgid "User Login"
2470
- msgstr "ID de l'utilisateur"
2471
-
2472
- #: modules/mycred-module-settings.php:846
2473
- msgid ""
2474
- "Use ID if you intend to use this export as a backup of your current site "
2475
- "while Email is recommended if you want to export to a different site."
2476
- msgstr ""
2477
- "Utilisez ID si vous avez l'intention d'utiliser l'exportation à titre de "
2478
- "sauvegarde du site actuel. Nous vous recommandons d'utiliser l'adresse mail "
2479
- "si vous comptez exploiter les données sur un autre site."
2480
-
2481
- #: modules/mycred-module-settings.php:849
2482
- msgid "Import Log Entry"
2483
- msgstr "Import du journal d'entrées"
2484
-
2485
- #: modules/mycred-module-settings.php:851
2486
- msgid ""
2487
- "Optional log entry to use if you intend to import this file in a different "
2488
- "%s installation."
2489
- msgstr ""
2490
- "Entrées de journal optionnelles si vous voulez importer ce fichier dans une "
2491
- "installation %s différente."
2492
-
2493
- #: modules/mycred-module-settings.php:854 modules/mycred-module-export.php:236
2494
- #: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
2495
- msgid "Export"
2496
- msgstr "Exporter"
2497
-
2498
- #: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
2499
- #: includes/mycred-setup.php:171
2500
- msgid "Add-ons"
2501
- msgstr "Modules"
2502
-
2503
- #: modules/mycred-module-addons.php:175
2504
- msgid "Give your users badges based on their interaction with your website."
2505
- msgstr ""
2506
- "Donner à vos utilisateurs des badges basés sur leurs interactions avec votre "
2507
- "site."
2508
-
2509
- #: modules/mycred-module-addons.php:186
2510
- msgid ""
2511
- "Setup recurring payouts or offer / charge interest on user account balances."
2512
- msgstr ""
2513
- "Paramétrez les paiements réguliers ou offres / pénalités et intérêts "
2514
- "relatifs aux soldes de comptes de vos utilisateurs."
2515
-
2516
- #: modules/mycred-module-addons.php:197
2517
- msgid ""
2518
- "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
2519
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
2520
- "also let your users buy points for other members."
2521
- msgstr ""
2522
- "Le module additionnel <strong>buy</strong>CRED permet l'achat de points aux "
2523
- "utilisateurs titulaires d'un compte PayPal, Skrill (Moneybookers) ou "
2524
- "NETbilling. buyCRED permet également à un utilisateur d'acheter des points "
2525
- "pour un autre membre du site."
2526
-
2527
- #: modules/mycred-module-addons.php:208
2528
- msgid ""
2529
- "The coupons add-on allows you to create coupons that users can use to add "
2530
- "points to their accounts."
2531
- msgstr ""
2532
- "Le module de bons de réductions vous permet de créer des bons que les "
2533
- "utilisateurs pourront utiliser pour ajouter des points à leur compte."
2534
-
2535
- #: modules/mycred-module-addons.php:219
2536
- msgid "Create email notices for any type of myCRED instance."
2537
- msgstr "Créez des alertes par mail pour tout type d'action avec myCRED."
2538
-
2539
- #: modules/mycred-module-addons.php:230
2540
- msgid ""
2541
- "Let your users pay using their <strong>my</strong>CRED points balance. "
2542
- "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
2543
- "Bookings: Event Espresso and Events Manager (free & pro)."
2544
- msgstr ""
2545
- "Permettez à vos utilisateurs de payer à l'aide de leur solde de points "
2546
- "<strong>my</strong>CRED. Actuellement compatible avec WooCommerce, "
2547
- "MarketPress et WP E-Commerce. Egalement compatible avec les systèmes de "
2548
- "réservations Event Espresso et Events Manager (gratuit & pro)."
2549
-
2550
- #: modules/mycred-module-addons.php:241
2551
- msgid "Create pop-up notifications for when users gain or loose points."
2552
- msgstr ""
2553
- "Crée une pop-up de notification lorsqu'un utilisateur gagne ou perd des "
2554
- "points."
2555
-
2556
- #: modules/mycred-module-addons.php:253
2557
- msgid ""
2558
- "Create ranks for users reaching a certain number of %_plural% with the "
2559
- "option to add logos for each rank."
2560
- msgstr ""
2561
- "Créez des classements pour les utilisateurs atteignants un certain nombre de "
2562
- "%_plural%, avec en option l'ajout d'un logo signalant leur classement."
2563
-
2564
- #: modules/mycred-module-addons.php:264
2565
- msgid ""
2566
- "This add-on allows you to sell posts, pages or any public post types on your "
2567
- "website. You can either sell the entire content or using our shortcode, sell "
2568
- "parts of your content allowing you to offer \"teasers\"."
2569
- msgstr ""
2570
- "Ce module vous permet de commercialiser n'importe quel article, page ou post "
2571
- "type public publié sur votre site. Vous pouvez vendre la totalité d'un "
2572
- "contenu ou proposer des extraits à titre d'échantillons à l'aide de nos "
2573
- "shortcodes."
2574
-
2575
- #: modules/mycred-module-addons.php:286
2576
- msgid ""
2577
- "Allow your users to send or \"donate\" points to other members by either "
2578
- "using the mycred_transfer shortcode or the myCRED Transfer widget."
2579
- msgstr ""
2580
- "Autorisez vos membres à s'envoyer des points ou en faire don entre eux, en "
2581
- "utilisant le shortcode mycred_transfer ou avec le widget myCRED Transfert."
2582
-
2583
- #: modules/mycred-module-addons.php:330
2584
- msgid "%s Add-ons"
2585
- msgstr "Modules %s"
2586
-
2587
- #: modules/mycred-module-addons.php:337
2588
- msgid "Add-on Activated"
2589
- msgstr "Module activé"
2590
-
2591
- #: modules/mycred-module-addons.php:340
2592
- msgid "Add-on Deactivated"
2593
- msgstr "Module désactivé"
2594
-
2595
- #: modules/mycred-module-addons.php:405
2596
- msgid "Activate Add-on"
2597
- msgstr "Activer le module"
2598
-
2599
- #: modules/mycred-module-addons.php:406
2600
- msgid "Activate"
2601
- msgstr "Activer"
2602
-
2603
- #: modules/mycred-module-addons.php:412
2604
- msgid "Deactivate Add-on"
2605
- msgstr "Désactiver le module"
2606
-
2607
- #: modules/mycred-module-addons.php:413
2608
- msgid "Deactivate"
2609
- msgstr "Désactiver"
2610
-
2611
- #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
2612
- #: addons/gateway/event-booking/mycred-eventespresso3.php:515
2613
- msgid "Log"
2614
- msgstr "Vue d&#39;ensemble"
2615
-
2616
- #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:910
2617
- #: includes/shortcodes/mycred_history.php:58
2618
- #: includes/classes/class.query-export.php:263
2619
- #: includes/classes/class.query-export.php:371
2620
- #: includes/classes/class.query-log.php:369
2621
- #: includes/classes/class.query-log.php:381
2622
- #: addons/email-notices/myCRED-addon-email-notices.php:332
2623
- #: addons/email-notices/myCRED-addon-email-notices.php:565
2624
- msgid "User"
2625
- msgstr "Utilisateur"
2626
-
2627
- #: modules/mycred-module-log.php:173
2628
- msgid "Row Deleted"
2629
- msgstr "Ligne supprimée"
2630
-
2631
- #: modules/mycred-module-log.php:232
2632
- msgid "Log entry not found"
2633
- msgstr "Entrée introuvable"
2634
-
2635
- #: modules/mycred-module-log.php:464
2636
- msgid "Edit Log Entry"
2637
- msgstr "Modifier une entrée du journal"
2638
-
2639
- #: modules/mycred-module-log.php:468
2640
- msgid "Are you sure you want to delete this log entry? This can not be undone!"
2641
- msgstr ""
2642
- "Soyez prudent. L'action que vous vous apprêtez à effectuer ne pourra pas "
2643
- "être annulée."
2644
-
2645
- #: modules/mycred-module-log.php:502
2646
- msgid "Search results for"
2647
- msgstr "Résultat de la recherche pour"
2648
-
2649
- #: modules/mycred-module-log.php:554
2650
- msgid "%s Log"
2651
- msgstr "Journal %s"
2652
-
2653
- #: modules/mycred-module-log.php:670
2654
- msgid "My %s History"
2655
- msgstr "Mon historique %s"
2656
-
2657
- #: modules/mycred-module-network.php:61 modules/mycred-module-network.php:62
2658
- #: addons/gateway/carts/mycred-woocommerce.php:29
2659
- msgid "myCRED"
2660
- msgstr "myCred"
2661
-
2662
- #: modules/mycred-module-network.php:71 modules/mycred-module-network.php:72
2663
- msgid "Network Settings"
2664
- msgstr "Paramètres du réseau"
2665
-
2666
- #: modules/mycred-module-network.php:135
2667
- msgid "%s Network"
2668
- msgstr "Réseau %s"
2669
-
2670
- #: modules/mycred-module-network.php:151
2671
- msgid "Note! %s has not yet been setup."
2672
- msgstr "Inofrmation: %s n'a pas encore été configuré."
2673
-
2674
- #: modules/mycred-module-network.php:158
2675
- msgid "Configure network settings for %s."
2676
- msgstr "Configurer le r&eacute;seau pour %s"
2677
-
2678
- #: modules/mycred-module-network.php:166
2679
- msgid "Master Template"
2680
- msgstr "Template principal"
2681
-
2682
- #: modules/mycred-module-network.php:170 modules/mycred-module-network.php:184
2683
- #: addons/buy-creds/gateways/bitpay.php:299
2684
- msgid "Yes"
2685
- msgstr "oui"
2686
-
2687
- #: modules/mycred-module-network.php:174 modules/mycred-module-network.php:188
2688
- #: addons/buy-creds/gateways/bitpay.php:298
2689
- msgid "No"
2690
- msgstr "non"
2691
-
2692
- #: modules/mycred-module-network.php:177
2693
- msgid ""
2694
- "If enabled, %s will use your main site's settings for all other sites in "
2695
- "your network."
2696
- msgstr ""
2697
- "Si activé, %s utilisera les paramètres du site principal pour tous les "
2698
- "autres sites de votre réseau."
2699
-
2700
- #: modules/mycred-module-network.php:180
2701
- msgid "Central Logging"
2702
- msgstr "Connexion centrale"
2703
-
2704
- #: modules/mycred-module-network.php:191
2705
- msgid "If enabled, %s will log all site actions in your main site's log."
2706
- msgstr ""
2707
- "Si activé, %s enregistrera toutes les actions du site parmi les activités du "
2708
- "site principal."
2709
-
2710
- #: modules/mycred-module-network.php:194
2711
- msgid "Site Block"
2712
- msgstr "Partie site"
2713
-
2714
- #: modules/mycred-module-network.php:198
2715
- msgid "Comma separated list of blog ids where %s is to be disabled."
2716
- msgstr ""
2717
- "ID, sépar&eacute;s par des virgules, des blogs ou %s doit &ecirc;tre "
2718
- "d&eacute;sactiv&eacute;."
2719
-
2720
- #: modules/mycred-module-network.php:210
2721
- msgid "Save Network Settings"
2722
- msgstr "Enregistrer les paramètres du réseau"
2723
-
2724
- #: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
2725
- #: includes/classes/class.query-log.php:1140
2726
- msgid ""
2727
- "Log entries are exported to a CSV file and depending on the number of "
2728
- "entries selected, the process may take a few seconds."
2729
- msgstr ""
2730
- "Les données sont exportées dans un fichier CSV. Selon le nombre "
2731
- "d'enregistrements sélectionnés, le processus peut durer un petit moment."
2732
-
2733
- #: modules/mycred-module-export.php:353
2734
- #: addons/sell-content/myCRED-addon-sell-content.php:253
2735
- #: addons/sell-content/myCRED-addon-sell-content.php:337
2736
- #: addons/buy-creds/modules/buycred-module-core.php:1115
2737
- msgid "Disabled"
2738
- msgstr "Désactivé"
2739
-
2740
- #: modules/mycred-module-export.php:354
2741
- #: addons/sell-content/myCRED-addon-sell-content.php:338
2742
- msgid "Enabled"
2743
- msgstr "Activé"
2744
-
2745
- #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
2746
- #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
2747
- #: includes/importers/mycred-cubepoints.php:401
2748
- #: includes/classes/class.query-export.php:263
2749
- #: includes/classes/class.query-export.php:391
2750
- #: addons/ranks/myCRED-addon-ranks.php:1079
2751
- #: addons/ranks/myCRED-addon-ranks.php:1247
2752
- #: addons/email-notices/myCRED-addon-email-notices.php:276
2753
- #: addons/email-notices/myCRED-addon-email-notices.php:582
2754
- #: addons/coupons/myCRED-addon-coupons.php:254
2755
- #: addons/coupons/myCRED-addon-coupons.php:488
2756
- #: addons/gateway/event-booking/mycred-eventespresso3.php:483
2757
- #: addons/gateway/event-booking/mycred-eventsmanager.php:550
2758
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
2759
- #: addons/gateway/carts/mycred-wpecommerce.php:383
2760
- #: addons/gateway/carts/mycred-woocommerce.php:119
2761
- #: addons/buy-creds/modules/buycred-module-pending.php:573
2762
- #: addons/buy-creds/modules/buycred-module-pending.php:751
2763
- msgid "Point Type"
2764
- msgstr "Type de point"
2765
-
2766
- #: modules/mycred-module-buddypress.php:31
2767
- msgid "My History"
2768
- msgstr "Mon historique"
2769
-
2770
- #: modules/mycred-module-buddypress.php:32
2771
- msgid "%s's History"
2772
- msgstr "Historique de %s"
2773
-
2774
- #: modules/mycred-module-buddypress.php:131
2775
- msgid "Current balance"
2776
- msgstr "Solde courant"
2777
-
2778
- #: modules/mycred-module-buddypress.php:236
2779
- #: modules/mycred-module-buddypress.php:249
2780
- #: includes/classes/class.query-log.php:1194
2781
- msgid "All"
2782
- msgstr "Historique complet"
2783
-
2784
- #: modules/mycred-module-buddypress.php:237
2785
- #: includes/classes/class.query-log.php:1195
2786
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
2787
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
2788
- msgid "Today"
2789
- msgstr "Aujourd'hui"
2790
-
2791
- #: modules/mycred-module-buddypress.php:238
2792
- #: includes/classes/class.query-log.php:1196
2793
- msgid "Yesterday"
2794
- msgstr "Hier"
2795
-
2796
- #: modules/mycred-module-buddypress.php:239
2797
- #: includes/classes/class.query-log.php:1197
2798
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
2799
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
2800
- msgid "This Week"
2801
- msgstr "Cette semaine"
2802
-
2803
- #: modules/mycred-module-buddypress.php:240
2804
- #: includes/classes/class.query-log.php:1198
2805
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:192
2806
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:322
2807
- msgid "This Month"
2808
- msgstr "Ce mois"
2809
-
2810
- #: modules/mycred-module-buddypress.php:350
2811
- msgid "Go"
2812
- msgstr "Go"
2813
-
2814
- #: modules/mycred-module-buddypress.php:402
2815
- #: addons/badges/myCRED-addon-badges.php:1146
2816
- #: addons/badges/myCRED-addon-badges.php:1182
2817
- #: addons/gateway/carts/mycred-woocommerce.php:151
2818
- msgid "Do not show"
2819
- msgstr "Ne pas afficher"
2820
-
2821
- #: modules/mycred-module-buddypress.php:403
2822
- #: addons/badges/myCRED-addon-badges.php:1147
2823
- msgid "Include in Profile Header"
2824
- msgstr ""
2825
- "Inclure dans\n"
2826
- " \n"
2827
- "le profil\n"
2828
- "-tête"
2829
-
2830
- #: modules/mycred-module-buddypress.php:404
2831
- #: addons/ranks/myCRED-addon-ranks.php:1455
2832
- #: addons/badges/myCRED-addon-badges.php:1148
2833
- msgid "Include under the \"Profile\" tab"
2834
- msgstr "Inclure sous l'onglet \"Profil\""
2835
-
2836
- #: modules/mycred-module-buddypress.php:405
2837
- #: addons/badges/myCRED-addon-badges.php:1149
2838
- msgid "Include under the \"Profile\" tab and Profile Header"
2839
- msgstr ""
2840
- "Inclure\n"
2841
- " \n"
2842
- "sous l'onglet\n"
2843
- " \n"
2844
- "Profil\n"
2845
- " \n"
2846
- "et\n"
2847
- " \n"
2848
- "\"\n"
2849
- "Profil\n"
2850
- "\" En-tête"
2851
-
2852
- #: modules/mycred-module-buddypress.php:409
2853
- #: addons/ranks/myCRED-addon-ranks.php:1453
2854
- #: addons/ranks/myCRED-addon-ranks.php:1498
2855
- msgid "Do not show."
2856
- msgstr "Ne pas afficher."
2857
-
2858
- #: modules/mycred-module-buddypress.php:410
2859
- msgid "Show in Profile"
2860
- msgstr "Afficher sur le profil"
2861
-
2862
- #: modules/mycred-module-buddypress.php:427
2863
- msgid "%singular% Balance"
2864
- msgstr "Solde de %singular%"
2865
-
2866
- #: modules/mycred-module-buddypress.php:449
2867
- #: addons/ranks/myCRED-addon-ranks.php:1475
2868
- #: addons/ranks/myCRED-addon-ranks.php:1520
2869
- #: addons/notifications/myCRED-addon-notifications.php:199
2870
- msgid "Template"
2871
- msgstr "Texte à afficher"
2872
-
2873
- #: modules/mycred-module-buddypress.php:454
2874
- msgid "%plural% History"
2875
- msgstr "Historique des %plural%"
2876
-
2877
- #: modules/mycred-module-buddypress.php:471
2878
- msgid "Members can view each others %_plural% history."
2879
- msgstr "Les membres peuvent voir leurs historiques de %_plural% respectifs."
2880
-
2881
- #: modules/mycred-module-buddypress.php:476
2882
- msgid "Menu Title"
2883
- msgstr "Titre du menu"
2884
-
2885
- #: modules/mycred-module-buddypress.php:478
2886
- msgid "Title shown to me"
2887
- msgstr "Le titre que moi je peux voir"
2888
-
2889
- #: modules/mycred-module-buddypress.php:483
2890
- msgid "Title shown to others. Use %s to show the first name."
2891
- msgstr ""
2892
- "Le titre que voient les autres utilisateurs. Utilisez %s pour afficher le "
2893
- "prénom."
2894
-
2895
- #: modules/mycred-module-buddypress.php:488
2896
- msgid "Menu Position"
2897
- msgstr "Position du menu"
2898
-
2899
- #: modules/mycred-module-buddypress.php:490
2900
- msgid "Current menu positions:"
2901
- msgstr "Positions actuelles du menu:"
2902
-
2903
- #: modules/mycred-module-buddypress.php:495
2904
- msgid "History URL slug"
2905
- msgstr "Chemin vers l'historique"
2906
-
2907
- #: modules/mycred-module-buddypress.php:497
2908
- msgid "Do not use empty spaces!"
2909
- msgstr "Sans espaces !"
2910
-
2911
- #: modules/mycred-module-buddypress.php:502
2912
- msgid "Number of history entries to show"
2913
- msgstr "Nombre d'historiques à afficher"
2914
-
2915
- #: plugins/mycred-hook-invite-anyone.php:15
2916
- msgid "Invite Anyone Plugin"
2917
- msgstr "Plugin Invite Anyone"
2918
-
2919
- #: plugins/mycred-hook-invite-anyone.php:16
2920
- msgid ""
2921
- "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
2922
- "accepted."
2923
- msgstr ""
2924
- "Attribution de %_plural% pour l'envoi d'invitations et/ou %_plural% quand "
2925
- "une invitation est acceptée."
2926
-
2927
- #: plugins/mycred-hook-invite-anyone.php:204
2928
- msgid "%plural% for Sending An Invite"
2929
- msgstr "%plural% pour l&#39;envoi d&#39;une invitation"
2930
-
2931
- #: plugins/mycred-hook-invite-anyone.php:211
2932
- #: plugins/mycred-hook-invite-anyone.php:232
2933
- #: plugins/mycred-hook-wp-postratings.php:173
2934
- #: plugins/mycred-hook-wp-postratings.php:192
2935
- #: plugins/mycred-hook-gravityforms.php:165
2936
- #: plugins/mycred-hook-simplepress.php:309
2937
- #: plugins/mycred-hook-simplepress.php:322
2938
- #: plugins/mycred-hook-simplepress.php:339
2939
- #: plugins/mycred-hook-simplepress.php:357
2940
- #: plugins/mycred-hook-buddypress.php:621
2941
- #: plugins/mycred-hook-buddypress.php:638
2942
- #: plugins/mycred-hook-buddypress.php:655
2943
- #: plugins/mycred-hook-buddypress.php:672
2944
- #: plugins/mycred-hook-buddypress.php:692
2945
- #: plugins/mycred-hook-buddypress.php:705
2946
- #: plugins/mycred-hook-buddypress.php:722
2947
- #: plugins/mycred-hook-buddypress.php:735
2948
- #: plugins/mycred-hook-buddypress.php:752
2949
- #: plugins/mycred-hook-buddypress.php:765
2950
- #: plugins/mycred-hook-buddypress.php:782
2951
- #: plugins/mycred-hook-buddypress.php:799
2952
- #: plugins/mycred-hook-buddypress.php:1429
2953
- #: plugins/mycred-hook-buddypress.php:1442
2954
- #: plugins/mycred-hook-buddypress.php:1459
2955
- #: plugins/mycred-hook-buddypress.php:1476
2956
- #: plugins/mycred-hook-buddypress.php:1493
2957
- #: plugins/mycred-hook-buddypress.php:1510
2958
- #: plugins/mycred-hook-buddypress.php:1528
2959
- #: plugins/mycred-hook-buddypress.php:1541
2960
- #: plugins/mycred-hook-buddypress.php:1558
2961
- #: plugins/mycred-hook-buddypress.php:1575
2962
- #: plugins/mycred-hook-buddypress.php:1592
2963
- #: plugins/mycred-hook-affiliatewp.php:229
2964
- #: plugins/mycred-hook-affiliatewp.php:246
2965
- #: plugins/mycred-hook-sharethis.php:267
2966
- #: plugins/mycred-hook-buddypress-media.php:316
2967
- #: plugins/mycred-hook-buddypress-media.php:330
2968
- #: plugins/mycred-hook-buddypress-media.php:344
2969
- #: plugins/mycred-hook-buddypress-media.php:357
2970
- #: plugins/mycred-hook-buddypress-media.php:367
2971
- #: plugins/mycred-hook-buddypress-media.php:377
2972
- #: plugins/mycred-hook-contact-form7.php:168
2973
- #: plugins/mycred-hook-jetpack.php:545 plugins/mycred-hook-jetpack.php:558
2974
- #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:456
2975
- #: plugins/mycred-hook-bbPress.php:473 plugins/mycred-hook-bbPress.php:491
2976
- #: plugins/mycred-hook-bbPress.php:508 plugins/mycred-hook-bbPress.php:525
2977
- #: plugins/mycred-hook-bbPress.php:551 plugins/mycred-hook-badgeOS.php:336
2978
- #: addons/badges/myCRED-addon-badges.php:949
2979
- msgid "Log template"
2980
- msgstr "Texte à afficher"
2981
-
2982
- #: plugins/mycred-hook-invite-anyone.php:216
2983
- #: plugins/mycred-hook-invite-anyone.php:219
2984
- #: plugins/mycred-hook-invite-anyone.php:237
2985
- #: plugins/mycred-hook-invite-anyone.php:240
2986
- #: plugins/mycred-hook-wp-postratings.php:165
2987
- #: plugins/mycred-hook-wp-postratings.php:184
2988
- #: plugins/mycred-hook-gravityforms.php:160
2989
- #: plugins/mycred-hook-simplepress.php:304
2990
- #: plugins/mycred-hook-simplepress.php:334
2991
- #: plugins/mycred-hook-buddypress.php:616
2992
- #: plugins/mycred-hook-buddypress.php:633
2993
- #: plugins/mycred-hook-buddypress.php:650
2994
- #: plugins/mycred-hook-buddypress.php:667
2995
- #: plugins/mycred-hook-buddypress.php:684
2996
- #: plugins/mycred-hook-buddypress.php:717
2997
- #: plugins/mycred-hook-buddypress.php:747
2998
- #: plugins/mycred-hook-buddypress.php:777
2999
- #: plugins/mycred-hook-buddypress.php:794
3000
- #: plugins/mycred-hook-buddypress.php:1454
3001
- #: plugins/mycred-hook-buddypress.php:1471
3002
- #: plugins/mycred-hook-buddypress.php:1488
3003
- #: plugins/mycred-hook-buddypress.php:1505
3004
- #: plugins/mycred-hook-buddypress.php:1523
3005
- #: plugins/mycred-hook-buddypress.php:1553
3006
- #: plugins/mycred-hook-buddypress.php:1570
3007
- #: plugins/mycred-hook-buddypress.php:1587
3008
- #: plugins/mycred-hook-affiliatewp.php:241
3009
- #: plugins/mycred-hook-events-manager-light.php:205
3010
- #: plugins/mycred-hook-sharethis.php:262
3011
- #: plugins/mycred-hook-buddypress-media.php:312
3012
- #: plugins/mycred-hook-buddypress-media.php:326
3013
- #: plugins/mycred-hook-buddypress-media.php:340
3014
- #: plugins/mycred-hook-wp-favorite-posts.php:222
3015
- #: plugins/mycred-hook-wp-favorite-posts.php:240
3016
- #: plugins/mycred-hook-contact-form7.php:163
3017
- #: plugins/mycred-hook-bbPress.php:438 plugins/mycred-hook-bbPress.php:468
3018
- #: plugins/mycred-hook-bbPress.php:503 plugins/mycred-hook-bbPress.php:520
3019
- #: plugins/mycred-hook-woocommerce.php:336
3020
- #: includes/shortcodes/mycred_hook_table.php:81
3021
- #: addons/transfer/myCRED-addon-transfer.php:478
3022
- msgid "Limit"
3023
- msgstr "Limite d'attribution"
3024
-
3025
- #: plugins/mycred-hook-invite-anyone.php:224
3026
- msgid "%plural% for Accepting An Invite"
3027
- msgstr "%plural% pour acceptation d&#39;une invitation"
3028
-
3029
- #: plugins/mycred-hook-invite-anyone.php:228
3030
- msgid "%plural% for each invited user that accepts an invitation."
3031
- msgstr ""
3032
- "%plural% pour chaque utilisateur invit&eacute; acceptant une invitation"
3033
-
3034
- #: plugins/mycred-hook-wp-polls.php:15
3035
- msgid "WP-Polls"
3036
- msgstr "WP-Polls"
3037
-
3038
- #: plugins/mycred-hook-wp-polls.php:16
3039
- msgid "Awards %_plural% for users voting in polls."
3040
- msgstr ""
3041
- "Attribuer des %_plural% aux utilisateurs répondants aux sondages.Attribuer "
3042
- "des %_plural% aux utilisateurs répondants aux sondages."
3043
-
3044
- #: plugins/mycred-hook-wp-polls.php:154
3045
- #: plugins/mycred-hook-events-manager-light.php:209
3046
- #: plugins/mycred-hook-events-manager-light.php:222
3047
- #: plugins/mycred-hook-wp-favorite-posts.php:226
3048
- #: plugins/mycred-hook-wp-favorite-posts.php:244
3049
- #: plugins/mycred-hook-wp-favorite-posts.php:258
3050
- #: plugins/mycred-hook-wp-favorite-posts.php:271
3051
- #: plugins/mycred-hook-woocommerce.php:340 plugins/mycred-hook-badgeOS.php:143
3052
- #: plugins/mycred-hook-badgeOS.php:145 plugins/mycred-hook-badgeOS.php:156
3053
- #: addons/coupons/myCRED-addon-coupons.php:661
3054
- #: addons/banking/services/mycred-service-interest.php:510
3055
- #: addons/banking/services/mycred-service-payouts.php:710
3056
- #: addons/gateway/carts/mycred-wpecommerce.php:400
3057
- #: addons/gateway/carts/mycred-woocommerce.php:103
3058
- #: addons/gateway/carts/mycred-woocommerce.php:175
3059
- #: addons/buy-creds/modules/buycred-module-core.php:357
3060
- #: addons/buy-creds/modules/buycred-module-core.php:420
3061
- msgid "Log Template"
3062
- msgstr "Texte à afficher"
3063
-
3064
- #: plugins/mycred-hook-gravityforms.php:15
3065
- msgid "Gravityform Submissions"
3066
- msgstr "Soumissions avec Gravityform"
3067
-
3068
- #: plugins/mycred-hook-gravityforms.php:16
3069
- msgid "Awards %_plural% for successful form submissions."
3070
- msgstr "Attribution de %_plural% pour des soumissions réussies de formulaires"
3071
-
3072
- #: plugins/mycred-hook-gravityforms.php:129
3073
- #: plugins/mycred-hook-contact-form7.php:130
3074
- msgid "No forms found."
3075
- msgstr "Aucun formulaire n'a été trouvé."
3076
-
3077
- #: plugins/mycred-hook-simplepress.php:16
3078
- msgid "Awards %_plural% for Simple:Press actions."
3079
- msgstr "Attribution de %_plural% pour les actions avec SimplePress"
3080
-
3081
- #: plugins/mycred-hook-simplepress.php:298 plugins/mycred-hook-bbPress.php:462
3082
- msgid "%plural% for New Topic"
3083
- msgstr "%plural% pour un nouveau sujet"
3084
-
3085
- #: plugins/mycred-hook-simplepress.php:315 plugins/mycred-hook-bbPress.php:484
3086
- msgid "%plural% for Topic Deletion"
3087
- msgstr "%plural% pour suppression d'un message de forum"
3088
-
3089
- #: plugins/mycred-hook-simplepress.php:328
3090
- msgid "%plural% for New Topic Post"
3091
- msgstr "%plural% pour la publication d'un nouveau sujet"
3092
-
3093
- #: plugins/mycred-hook-simplepress.php:346
3094
- msgid "Topic authors can receive %_plural% for posting on their own Topic"
3095
- msgstr ""
3096
- "L'auteur d'un sujet peut recevoir des %_plural% quand il répond à son propre "
3097
- "sujet."
3098
-
3099
- #: plugins/mycred-hook-simplepress.php:350
3100
- msgid "%plural% for Topic Post Deletion"
3101
- msgstr "%plural% pour suppression d'un sujet"
3102
-
3103
- #: plugins/mycred-hook-buddypress.php:16
3104
- msgid "BuddyPress: Members"
3105
- msgstr "BuddyPress: Membres"
3106
-
3107
- #: plugins/mycred-hook-buddypress.php:17
3108
- msgid "Awards %_plural% for profile related actions."
3109
- msgstr "Attribution de %_plural% pour des actions relatives aux profils"
3110
-
3111
- #: plugins/mycred-hook-buddypress.php:24
3112
- msgid "BuddyPress: Groups"
3113
- msgstr "BuddyPress: Groupes"
3114
-
3115
- #: plugins/mycred-hook-buddypress.php:25
3116
- msgid ""
3117
- "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
3118
- "zero to disable a specific hook."
3119
- msgstr ""
3120
- "Attribution de %_plural% pour des actions relatives aux groupes. Utilisez "
3121
- "une valeur négative ou zéro pour désactiver un hook spécifique."
3122
-
3123
- #: plugins/mycred-hook-buddypress.php:307
3124
- #: addons/sell-content/myCRED-addon-sell-content.php:591
3125
- #: addons/gateway/event-booking/mycred-eventsmanager.php:636
3126
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
3127
- #: addons/gateway/carts/mycred-wpecommerce.php:415
3128
- msgid "Insufficient Funds"
3129
- msgstr "Fonds insuffisants"
3130
-
3131
- #: plugins/mycred-hook-buddypress.php:678
3132
- #: includes/classes/class.query-log.php:1564
3133
- msgid "New Friendship"
3134
- msgstr "Nouvel amis"
3135
-
3136
- #: plugins/mycred-hook-buddypress.php:728
3137
- #: includes/classes/class.query-log.php:1552
3138
- msgid "Deleted Comment"
3139
- msgstr "Commentaire supprimé"
3140
-
3141
- #: plugins/mycred-hook-buddypress.php:788
3142
- #: includes/classes/class.query-log.php:1571
3143
- msgid "Sending Gift"
3144
- msgstr "Envoie d'un cadeau"
3145
-
3146
- #: plugins/mycred-hook-buddypress.php:1415
3147
- msgid "%plural% for Creating Groups"
3148
- msgstr "%plural% pour cr&eacute;ation de groupe"
3149
-
3150
- #: plugins/mycred-hook-buddypress.php:1419
3151
- msgid ""
3152
- "If you use a negative value and the user does not have enough %_plural% the "
3153
- "\"Create Group\" button will be disabled."
3154
- msgstr ""
3155
- "Si vous utilisez une valeur négative et que l'utilisateur n'a pas "
3156
- "suffisamment de %_plural%, le bouton \"Créer un groupe\" sera désactivé."
3157
-
3158
- #: plugins/mycred-hook-buddypress.php:1423
3159
- msgid "Number of members before awarding %_plural%"
3160
- msgstr ""
3161
- "Le nombre de membres devant être inscrits au groupe avant d'obtenir des "
3162
- "%_plural%"
3163
-
3164
- #: plugins/mycred-hook-buddypress.php:1425
3165
- msgid "Use zero to award %_plural% when group is created."
3166
- msgstr "Utilisez zéro pour attribuer des %_plural% dès la création du groupe."
3167
-
3168
- #: plugins/mycred-hook-buddypress.php:1435
3169
- msgid "%plural% for Deleting Groups"
3170
- msgstr "%plural% pour une suppression de groupe"
3171
-
3172
- #: plugins/mycred-hook-buddypress.php:1448
3173
- msgid "%plural% for New Forum Topic"
3174
- msgstr "%plural% pour un nouveau sujet de forum"
3175
-
3176
- #: plugins/mycred-hook-buddypress.php:1465
3177
- msgid "%plural% for Editing Forum Topic"
3178
- msgstr "%plural% pour modifier un sujet de forum"
3179
-
3180
- #: plugins/mycred-hook-buddypress.php:1482
3181
- msgid "%plural% for New Forum Post"
3182
- msgstr "%plural% pour un nouveau message sur un forum"
3183
-
3184
- #: plugins/mycred-hook-buddypress.php:1499
3185
- msgid "%plural% for Editing Forum Post"
3186
- msgstr "%plural% pour la modification d&#39;un message de forum"
3187
-
3188
- #: plugins/mycred-hook-buddypress.php:1516
3189
- msgid "%plural% for Joining Groups"
3190
- msgstr "%plural% pour une adh&eacute;sion &agrave; un groupe"
3191
-
3192
- #: plugins/mycred-hook-buddypress.php:1520
3193
- msgid ""
3194
- "If you use a negative value and the user does not have enough %_plural% the "
3195
- "\"Join Group\" button will be disabled."
3196
- msgstr ""
3197
- "Si vous utilisez une valeur négative et que l'utilisateur n'a pas "
3198
- "suffisamment de %_plural%, le bouton \"Rejoindre le groupe\" sera désactivé."
3199
-
3200
- #: plugins/mycred-hook-buddypress.php:1534
3201
- msgid "%plural% for Leaving Groups"
3202
- msgstr "%plural% pour quitter un groupe"
3203
-
3204
- #: plugins/mycred-hook-buddypress.php:1547
3205
- msgid "%plural% for New Group Avatar"
3206
- msgstr "%plural% pour un nouvel avatar de groupe"
3207
-
3208
- #: plugins/mycred-hook-buddypress.php:1581
3209
- msgid "%plural% for New Group Comment"
3210
- msgstr "%plural% pour un nouveau commentaire dans un groupe"
3211
-
3212
- #: plugins/mycred-hook-affiliatewp.php:235
3213
- msgid "Referring Visitors"
3214
- msgstr "Visiteurs réferants"
3215
-
3216
- #: plugins/mycred-hook-events-manager-light.php:15
3217
- msgid "Events Manager"
3218
- msgstr "Events Manager"
3219
-
3220
- #: plugins/mycred-hook-events-manager-light.php:16
3221
- msgid "Awards %_plural% for users attending events."
3222
- msgstr "Attribuer des %_plural% aux utilisateurs suivants un événement."
3223
-
3224
- #: plugins/mycred-hook-events-manager-light.php:199
3225
- msgid "Attending Event"
3226
- msgstr "Evénement suivi"
3227
-
3228
- #: plugins/mycred-hook-events-manager-light.php:216
3229
- msgid "Cancelling Attendance"
3230
- msgstr "Annuler le suivi"
3231
-
3232
- #: plugins/mycred-hook-sharethis.php:15
3233
- msgid "%plural% for Sharing"
3234
- msgstr "%plural% pour un partage"
3235
-
3236
- #: plugins/mycred-hook-sharethis.php:16
3237
- msgid ""
3238
- "Awards %_plural% for users sharing / liking your website content to popular "
3239
- "social media sites."
3240
- msgstr ""
3241
- "Attribution de %_plural% pour les utilisateurs partageant/aimant le contenu "
3242
- "de votre siteweb sur les réseaux sociaux."
3243
-
3244
- #: plugins/mycred-hook-sharethis.php:217
3245
- msgid "Your ShareThis public key is not set."
3246
- msgstr "Votre clef public SHARETHIS n'est pas fixé."
3247
-
3248
- #: plugins/mycred-hook-sharethis.php:222
3249
- msgid "No ShareThis services detected. Please check your installation."
3250
- msgstr ""
3251
- "Pas de services SHARETHIS détecté. S'il vous plait, vérifiez votre "
3252
- "installation."
3253
-
3254
- #: plugins/mycred-hook-buddypress-media.php:15
3255
- msgid "rtMedia Galleries"
3256
- msgstr "Galeries rtMédia"
3257
-
3258
- #: plugins/mycred-hook-buddypress-media.php:16
3259
- msgid ""
3260
- "Award / Deduct %_plural% for users creating albums or uploading new photos."
3261
- msgstr ""
3262
- "Ajout/supression de %_plural% pour les utilisateurs créant ou téléchargeant "
3263
- "de nouvelles photos"
3264
-
3265
- #: plugins/mycred-hook-buddypress-media.php:305
3266
- msgid "New Media Upload"
3267
- msgstr "Ajouter un nouveau média"
3268
-
3269
- #: plugins/mycred-hook-buddypress-media.php:308
3270
- #: includes/classes/class.query-log.php:1586
3271
- msgid "Photo Upload"
3272
- msgstr "Télécharger la photo"
3273
-
3274
- #: plugins/mycred-hook-buddypress-media.php:322
3275
- #: includes/classes/class.query-log.php:1587
3276
- msgid "Video Upload"
3277
- msgstr "Télécharger la vidéo"
3278
-
3279
- #: plugins/mycred-hook-buddypress-media.php:336
3280
- #: includes/classes/class.query-log.php:1588
3281
- msgid "Music Upload"
3282
- msgstr "Télécharger la musique"
3283
-
3284
- #: plugins/mycred-hook-buddypress-media.php:350
3285
- msgid "Delete Media"
3286
- msgstr "supprimer le média"
3287
-
3288
- #: plugins/mycred-hook-buddypress-media.php:353
3289
- msgid "Delete Photo"
3290
- msgstr "Supprimer la photo"
3291
-
3292
- #: plugins/mycred-hook-buddypress-media.php:363
3293
- msgid "Delete Video"
3294
- msgstr "Supprimer la vidéo"
3295
-
3296
- #: plugins/mycred-hook-buddypress-media.php:373
3297
- msgid "Delete Music"
3298
- msgstr "Supprimer la musique"
3299
-
3300
- #: plugins/mycred-hook-wp-favorite-posts.php:15
3301
- msgid "WP Favorite Posts"
3302
- msgstr "WP Favorite Posts"
3303
-
3304
- #: plugins/mycred-hook-wp-favorite-posts.php:16
3305
- msgid "Awards %_plural% for users adding posts to their favorites."
3306
- msgstr ""
3307
- "Attribuer des %_plural% aux utilisateurs ajoutants un article à leurs "
3308
- "favoris."
3309
-
3310
- #: plugins/mycred-hook-wp-favorite-posts.php:216
3311
- msgid "Adding Content to Favorites"
3312
- msgstr "Ajouter ce contenu aux Favoris"
3313
-
3314
- #: plugins/mycred-hook-wp-favorite-posts.php:252
3315
- msgid "Removing Content from Favorites"
3316
- msgstr "Retirer ce contenu des Favoris"
3317
-
3318
- #: plugins/mycred-hook-contact-form7.php:15
3319
- msgid "Contact Form 7 Form Submissions"
3320
- msgstr "Envoi de formulaires avec Contact Form 7"
3321
-
3322
- #: plugins/mycred-hook-contact-form7.php:16
3323
- msgid "Awards %_plural% for successful form submissions (by logged in users)."
3324
- msgstr ""
3325
- "Attribution de %_plural% pour chaque formulaire soumis avec succès (par les "
3326
- "utilisateurs connectés)."
3327
-
3328
- #: plugins/mycred-hook-jetpack.php:15
3329
- msgid "Jetpack Subscriptions"
3330
- msgstr "Abonnements JetPack"
3331
-
3332
- #: plugins/mycred-hook-jetpack.php:16
3333
- msgid ""
3334
- "Awards %_plural% for users signing up for site or comment updates using "
3335
- "Jetpack."
3336
- msgstr ""
3337
- "Attribuer des %_plural% aux utilisateurs qui s'inscrivent au site ou qui "
3338
- "commentent des notes en utilisant JetPack."
3339
-
3340
- #: plugins/mycred-hook-jetpack.php:538
3341
- msgid "Site Subscriptions"
3342
- msgstr "Abonnements au site"
3343
-
3344
- #: plugins/mycred-hook-jetpack.php:551
3345
- msgid "Comment Subscriptions"
3346
- msgstr "Abonnements aux commentaires"
3347
-
3348
- #: plugins/mycred-hook-bbPress.php:16
3349
- msgid "Awards %_plural% for bbPress actions."
3350
- msgstr "Attribution de %_plural% pour des actions relatives à bbPress"
3351
-
3352
- #: plugins/mycred-hook-bbPress.php:432
3353
- msgid "%plural% for New Forum"
3354
- msgstr "%plural% pour un nouveau forum"
3355
-
3356
- #: plugins/mycred-hook-bbPress.php:449
3357
- msgid "%plural% for Forum Deletion"
3358
- msgstr "%plural% pour suppression sur le forum"
3359
-
3360
- #: plugins/mycred-hook-bbPress.php:480
3361
- msgid "Forum authors can receive %_plural% for creating new topics."
3362
- msgstr ""
3363
- "Les auteurs de forum percoivent des %_plural% pour la création de nouveaux "
3364
- "sujets."
3365
-
3366
- #: plugins/mycred-hook-bbPress.php:497
3367
- msgid "%plural% for Favorited Topic"
3368
- msgstr "%plural% pour l&#39;ajout d&#39;un sujet de forum aux Favoris"
3369
-
3370
- #: plugins/mycred-hook-bbPress.php:514
3371
- msgid "%plural% for New Reply"
3372
- msgstr "%plural% pour une nouvelle réponse"
3373
-
3374
- #: plugins/mycred-hook-bbPress.php:532
3375
- msgid "Topic authors can receive %_plural% for replying to their own Topic"
3376
- msgstr ""
3377
- "Attribuer des %_plural% à l'auteur d'un sujet répondant à son propre sujet."
3378
-
3379
- #: plugins/mycred-hook-bbPress.php:536
3380
- msgid "Show users %_plural% balance in replies"
3381
- msgstr "Afficher le relevé de %_plural% dans les réponses des utilisateurs"
3382
-
3383
- #: plugins/mycred-hook-bbPress.php:544
3384
- msgid "%plural% for Reply Deletion"
3385
- msgstr "%plural% pour la suppression d'un commentaire"
3386
-
3387
- #: plugins/mycred-hook-woocommerce.php:87
3388
- msgid "Reward with %plural%"
3389
- msgstr "Récompensez-les avec %plural%"
3390
-
3391
- #: plugins/mycred-hook-woocommerce.php:216
3392
- msgid "WooCommerce Product Reviews"
3393
- msgstr "Produits WooCommerce revus"
3394
-
3395
- #: plugins/mycred-hook-woocommerce.php:217
3396
- msgid ""
3397
- "Awards %_plural% for users leaving reviews on your WooCommerce products."
3398
- msgstr ""
3399
- "Attribution de %_plural% pour vos utilisateurs quittant les avis sur les "
3400
- "produits WooCommerce."
3401
-
3402
- #: plugins/mycred-hook-badgeOS.php:15
3403
- msgid "BadgeOS"
3404
- msgstr "BadgeOS"
3405
-
3406
- #: plugins/mycred-hook-badgeOS.php:16
3407
- msgid ""
3408
- "Default settings for each BadgeOS Achievement type. These settings may be "
3409
- "overridden for individual achievement type."
3410
- msgstr ""
3411
- "Configuration par défaut de chaque type de réalisation BadgeOS. Ces "
3412
- "paramètres peuvent être remplacés individuellement à partir de chaque type."
3413
-
3414
- #: plugins/mycred-hook-badgeOS.php:121
3415
- msgid ""
3416
- "Please setup your <a href=\"%s\">default settings</a> before using this "
3417
- "feature."
3418
- msgstr ""
3419
- "Veuillez param&eacute;trer votre <a href=\"%s\">configuration par d&eacute;"
3420
- "faut</a> avant d&#39;utiliser ce service."
3421
-
3422
- #: plugins/mycred-hook-badgeOS.php:137 plugins/mycred-hook-badgeOS.php:139
3423
- msgid "%plural% to Award"
3424
- msgstr "Attribution de %_plural%"
3425
-
3426
- #: plugins/mycred-hook-badgeOS.php:141
3427
- msgid "Use zero to disable"
3428
- msgstr "Utilisez zéro pour désactiver"
3429
-
3430
- #: plugins/mycred-hook-badgeOS.php:154
3431
- msgid "Deduction Log Template"
3432
- msgstr "Texte pour le retrait de points"
3433
-
3434
- #: plugins/mycred-hook-badgeOS.php:315
3435
- msgid "Default %s for %s"
3436
- msgstr "%s pour %s par d&eacute;faut"
3437
-
3438
- #: plugins/mycred-hook-badgeOS.php:322
3439
- msgid "Use zero to disable users gaining %_plural%"
3440
- msgstr "Utilisez zéro pour désactiver les utilisateurs obtenant des %_plural%"
3441
-
3442
- #: plugins/mycred-hook-badgeOS.php:326
3443
- msgid "Default Log template"
3444
- msgstr "Vue d'ensemble par défaut"
3445
-
3446
- #: includes/mycred-setup.php:50
3447
- msgid "myCRED needs your attention."
3448
- msgstr "myCRED requiert votre attention."
3449
-
3450
- #: includes/mycred-setup.php:50
3451
- msgid "Run Setup"
3452
- msgstr "Démarrer l'installation"
3453
-
3454
- #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
3455
- msgid "myCRED Setup"
3456
- msgstr "Installation de myCRED"
3457
-
3458
- #: includes/mycred-setup.php:105
3459
- #: addons/sell-content/myCRED-addon-sell-content.php:490
3460
- msgid "%s Setup"
3461
- msgstr "Configuration %s"
3462
-
3463
- #: includes/mycred-remote.php:581
3464
- msgid "This feature requires WordPress Permalinks to be setup and enabled!"
3465
- msgstr ""
3466
- "Pour utiliser cette fonctionalité, veuillez paramétrer et activer les "
3467
- "permaliens de WordPress."
3468
-
3469
- #: includes/mycred-remote.php:585
3470
- msgid "Click Update Settings to load the Remote API settings."
3471
- msgstr ""
3472
- "Cliquez sur Enregistrer la configuration pour charger la config de l'API "
3473
- "d'accès à distance."
3474
-
3475
- #: includes/mycred-remote.php:588
3476
- msgid "Allow Remote Access"
3477
- msgstr "Autoriser l'accès à distance"
3478
-
3479
- #: includes/mycred-remote.php:613
3480
- msgid "Remote Access"
3481
- msgstr "Accès à distance"
3482
-
3483
- #: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
3484
- msgid "API Key"
3485
- msgstr "Clé API"
3486
-
3487
- #: includes/mycred-remote.php:618
3488
- msgid "Key"
3489
- msgstr "Clé"
3490
-
3491
- #: includes/mycred-remote.php:620
3492
- msgid "Required for this feature to work!<br />Minimum 12 characters."
3493
- msgstr ""
3494
- "Obligatoire pour le bon fonctionnement de cette option !<br/>Minimum 12 "
3495
- "caractères"
3496
-
3497
- #: includes/mycred-remote.php:623
3498
- msgid "Key Length"
3499
- msgstr "Longueur de la clé"
3500
-
3501
- #: includes/mycred-remote.php:628
3502
- msgid "Generate New Key"
3503
- msgstr "Générer une nouvelle clé"
3504
-
3505
- #: includes/mycred-remote.php:630
3506
- msgid "Warning!"
3507
- msgstr "Avertissement !"
3508
-
3509
- #: includes/mycred-remote.php:630
3510
- msgid ""
3511
- "Keep this key safe! Those you share this key with will be able to remotely "
3512
- "deduct / add / transfer %plural%!"
3513
- msgstr ""
3514
- "Gardez cette clé à l'abri des regards ! Quiconque d'autre que vous qui en "
3515
- "aurait connaissance pourrait ajouter/déduire/transférer des %plural% !"
3516
-
3517
- #: includes/mycred-remote.php:632
3518
- msgid "Incoming URI"
3519
- msgstr "URI entrante"
3520
-
3521
- #: includes/mycred-remote.php:636
3522
- msgid ""
3523
- "The incoming call address. Remote calls made to any other URL will be "
3524
- "ignored."
3525
- msgstr ""
3526
- "L'adresse d'appel entrante. Tout appel distant depuis une autre URL sera "
3527
- "ignoré."
3528
-
3529
- #: includes/mycred-remote.php:639
3530
- msgid "Debug Mode"
3531
- msgstr "Mode débogage"
3532
-
3533
- #: includes/mycred-remote.php:642
3534
- msgid ""
3535
- "Remember to disable when not used to prevent mischievous calls from learning "
3536
- "about your setup!"
3537
- msgstr ""
3538
- "N'oubliez pas de désactiver l'option lorsqu'elle n'est pas utilisée pour "
3539
- "empêcher des appels malicieux qui tenteraient de s'informer sur votre "
3540
- "installation&nbsp;!"
3541
-
3542
- #: includes/mycred-about.php:32
3543
- msgid "Welcome to %s %s"
3544
- msgstr "Bienvenue dans %s %s"
3545
-
3546
- #: includes/mycred-overview.php:25
3547
- msgid "%s Overview"
3548
- msgstr "Aperçu %s"
3549
-
3550
- #: includes/mycred-overview.php:82
3551
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:136
3552
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:265
3553
- msgid "Total amount in circulation"
3554
- msgstr "Montant total en circulation"
3555
-
3556
- #: includes/mycred-overview.php:85
3557
- msgid "Awarded"
3558
- msgstr "Promu"
3559
-
3560
- #: includes/mycred-overview.php:88
3561
- msgid "Deducted"
3562
- msgstr "Déduit"
3563
-
3564
- #: includes/mycred-install.php:73
3565
- msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3566
- msgstr "myCRED requiert SQL 5.0 ou sup&eacute;rieur. Version trouv&eacute;e: "
3567
-
3568
- #: includes/mycred-install.php:78
3569
- msgid ""
3570
- "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3571
- "check your PHP configuration or contact your host and ask them to enable it "
3572
- "for you!"
3573
- msgstr ""
3574
- "La bibliothèque mcrypt PHP doit être activé dans l'ordre d'utilisation du "
3575
- "plugin! S'il vous plait, vérifier votre configuration PHP ou contactez votre "
3576
- "Hébergeur et lui demander de l'activer pour vous."
3577
-
3578
- #: includes/mycred-install.php:83
3579
- msgid ""
3580
- "Sorry but your WordPress installation does not reach the minimum "
3581
- "requirements for running myCRED. The following errors were given:"
3582
- msgstr ""
3583
- "Désolé mais votre installation WordPress ne dispose pas des ressources "
3584
- "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
3585
- "apparues:"
3586
-
3587
- #: includes/mycred-widgets.php:19
3588
- msgid "(%s) My Balance"
3589
- msgstr "Mon solde (%s)"
3590
-
3591
- #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
3592
- #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1366
3593
- #: addons/gateway/carts/mycred-woocommerce.php:91
3594
- #: addons/transfer/includes/mycred-transfer-widgets.php:78
3595
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:186
3596
- #: addons/buy-creds/gateways/bank-transfer.php:161
3597
- #: addons/buy-creds/gateways/skrill.php:333
3598
- msgid "Title"
3599
- msgstr "Titre"
3600
-
3601
- #: includes/mycred-widgets.php:199
3602
- msgid "Include history"
3603
- msgstr "Inclure l'historique"
3604
-
3605
- #: includes/mycred-widgets.php:203
3606
- msgid "History Title"
3607
- msgstr "Titre de l'historique"
3608
-
3609
- #: includes/mycred-widgets.php:207
3610
- msgid "Number of entires"
3611
- msgstr "Nombre d'entrées"
3612
-
3613
- #: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
3614
- msgid "Row layout"
3615
- msgstr "Agencement des colonnes"
3616
-
3617
- #: includes/mycred-widgets.php:218 includes/mycred-widgets.php:586
3618
- msgid "Show message when not logged in"
3619
- msgstr "Afficher les messages quand pas connceté"
3620
-
3621
- #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
3622
- msgid "Message"
3623
- msgstr "Message"
3624
-
3625
- #: includes/mycred-widgets.php:282
3626
- msgid "(%s) Leaderboard"
3627
- msgstr "Classement (%s)"
3628
-
3629
- #: includes/mycred-widgets.php:373
3630
- msgid "Based On"
3631
- msgstr "Basé sur"
3632
-
3633
- #: includes/mycred-widgets.php:375
3634
- msgid ""
3635
- "Use \"balance\" to base the leaderboard on your users current balances or "
3636
- "use a specific reference."
3637
- msgstr ""
3638
- "Utilisez\n"
3639
- " \n"
3640
- "«balance»\n"
3641
- " \n"
3642
- "(ou solde) pour fonder le\n"
3643
- " \n"
3644
- "classement\n"
3645
- " \n"
3646
- "de vos\n"
3647
- " \n"
3648
- "utilisateurs\n"
3649
- " par \n"
3650
- "soldes\n"
3651
- " \n"
3652
- "actuels\n"
3653
- " \n"
3654
- "ou\n"
3655
- " \n"
3656
- "utiliser une référence\n"
3657
- " \n"
3658
- "spécifique\n"
3659
- "."
3660
-
3661
- #: includes/mycred-widgets.php:375
3662
- msgid "Reference Guide"
3663
- msgstr "Guide de référence"
3664
-
3665
- #: includes/mycred-widgets.php:379
3666
- msgid "Visible to non-members"
3667
- msgstr "Visibble par les non membres"
3668
-
3669
- #: includes/mycred-widgets.php:382
3670
- msgid "Number of users"
3671
- msgstr "Nombre d'utilisateurs"
3672
-
3673
- #: includes/mycred-widgets.php:391
3674
- msgid "Offset"
3675
- msgstr "Compensation"
3676
-
3677
- #: includes/mycred-widgets.php:393
3678
- msgid "Optional offset of order. Use zero to return the first in the list."
3679
- msgstr ""
3680
- "Offset de tri optionnel. Indiquez zéro pour afficher le premier de la liste."
3681
-
3682
- #: includes/mycred-widgets.php:396
3683
- msgid "Order"
3684
- msgstr "Affichage"
3685
-
3686
- #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:553
3687
- msgid "Ascending"
3688
- msgstr "Ascendant"
3689
-
3690
- #: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:553
3691
- msgid "Descending"
3692
- msgstr "Descendant"
3693
-
3694
- #: includes/mycred-widgets.php:415
3695
- msgid "Append current users position"
3696
- msgstr "Afficher le classement de l'utilisateur courant"
3697
-
3698
- #: includes/mycred-widgets.php:416
3699
- msgid ""
3700
- "If the current user is not in this leaderboard, you can select to append "
3701
- "them at the end with their current position."
3702
- msgstr ""
3703
- "Si l'utilisateur courant ne figure pas dans ce classement, vous pouvez "
3704
- "choisir de l'afficher à la fin avec sa position actuelle"
3705
-
3706
- #: includes/mycred-widgets.php:469
3707
- msgid "(%s) Wallet"
3708
- msgstr "Wallet (%s)"
3709
-
3710
- #: includes/mycred-widgets.php:579
3711
- msgid "Row Layout"
3712
- msgstr "Affichage des colonnes"
3713
-
3714
- #: includes/mycred-functions.php:85
3715
- msgid "Point"
3716
- msgstr "Point"
3717
-
3718
- #: includes/mycred-functions.php:86
3719
- msgid "Points"
3720
- msgstr "Points"
3721
-
3722
- #: includes/mycred-functions.php:466
3723
- msgid "Deleted"
3724
- msgstr "Supprimé"
3725
-
3726
- #: includes/mycred-functions.php:607
3727
- msgid "Deleted Item"
3728
- msgstr "Item supprimé"
3729
-
3730
- #: includes/mycred-functions.php:671
3731
- #: addons/email-notices/myCRED-addon-email-notices.php:861
3732
- #: addons/gateway/carts/mycred-wpecommerce.php:370
3733
- msgid "General"
3734
- msgstr "Général"
3735
-
3736
- #: includes/mycred-functions.php:678
3737
- msgid "User Related"
3738
- msgstr "A propos de l'utilisateur"
3739
-
3740
- #: includes/mycred-functions.php:685
3741
- msgid "Post Related"
3742
- msgstr "Relatif à l'article"
3743
-
3744
- #: includes/mycred-functions.php:692
3745
- msgid "Comment Related"
3746
- msgstr "Commentaire concerné"
3747
-
3748
- #: includes/mycred-functions.php:699
3749
- msgid "Widget Related"
3750
- msgstr "Widget concerné"
3751
-
3752
- #: includes/mycred-functions.php:706
3753
- msgid "Amount Related"
3754
- msgstr "Montant concerné"
3755
-
3756
- #: includes/mycred-functions.php:713
3757
- msgid "Video Related"
3758
- msgstr "Vidéo concernée"
3759
-
3760
- #: includes/mycred-functions.php:724
3761
- msgid "and"
3762
- msgstr "et"
3763
-
3764
- #: includes/mycred-functions.php:726
3765
- msgid "Available Template Tags:"
3766
- msgstr "Mots clés de template disponibles"
3767
-
3768
- #: includes/importers/mycred-cubepoints.php:298
3769
- msgid "No balances were imported."
3770
- msgstr "Aucun solde n'a été importé"
3771
-
3772
- #: includes/importers/mycred-cubepoints.php:298
3773
- msgid "No log entries were imported!"
3774
- msgstr "Aucune donnée n'a été importée"
3775
-
3776
- #: includes/importers/mycred-cubepoints.php:306
3777
- #: includes/importers/mycred-log-entries.php:168
3778
- msgid ""
3779
- "Import complete - A total of <strong>%d</strong> entries were successfully "
3780
- "imported. <strong>%d</strong> was skipped."
3781
- msgstr ""
3782
- "Import terminé - Un total de <strong>%d</strong> entrées a été importé avec "
3783
- "succès ! <strong>%d</strong> reste(nt) ignoré(es)"
3784
-
3785
- #: includes/importers/mycred-cubepoints.php:320
3786
- #: includes/importers/mycred-balances.php:212
3787
- #: includes/importers/mycred-log-entries.php:180
3788
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
3789
- msgid "View Log"
3790
- msgstr "Afficher le rapport"
3791
-
3792
- #: includes/importers/mycred-cubepoints.php:320
3793
- #: includes/importers/mycred-balances.php:212
3794
- #: includes/importers/mycred-log-entries.php:180
3795
- msgid "Import More"
3796
- msgstr "En importer davantage"
3797
-
3798
- #: includes/importers/mycred-cubepoints.php:335
3799
- msgid "No CubePoints log."
3800
- msgstr "Aucun rapport CubePoints"
3801
-
3802
- #: includes/importers/mycred-cubepoints.php:348
3803
- msgid "Import CubePoints Log"
3804
- msgstr "Importer le rapport CubePoints"
3805
-
3806
- #: includes/importers/mycred-cubepoints.php:369
3807
- msgid "Select what to import"
3808
- msgstr "Sélectionnez ce que vous voulez importer"
3809
-
3810
- #: includes/importers/mycred-cubepoints.php:370
3811
- msgid "Log Entries Only"
3812
- msgstr "Uniquement les entrées enregistrées"
3813
-
3814
- #: includes/importers/mycred-cubepoints.php:371
3815
- msgid "CubePoints Balances Only"
3816
- msgstr "uniquement les soldes cubePoints"
3817
-
3818
- #: includes/importers/mycred-cubepoints.php:372
3819
- msgid "Log Entries and Balances"
3820
- msgstr "Les entrées et les soldes"
3821
-
3822
- #: includes/importers/mycred-cubepoints.php:387
3823
- msgid "Import"
3824
- msgstr "Importer"
3825
-
3826
- #: includes/importers/mycred-cubepoints.php:396
3827
- msgid ""
3828
- "Warning! Importing CubePoints balances will replace your users myCRED "
3829
- "balance!"
3830
- msgstr ""
3831
- "Avertissement: importer les soldes CubePoints remplacera les soldes de vos "
3832
- "utilisateurs myCRED !"
3833
-
3834
- #: includes/importers/mycred-balances.php:104
3835
- #: includes/importers/mycred-balances.php:187
3836
- #: includes/importers/mycred-balances.php:230
3837
- #: includes/importers/mycred-balances.php:245
3838
- #: includes/importers/mycred-log-entries.php:104
3839
- #: includes/importers/mycred-log-entries.php:153
3840
- #: includes/importers/mycred-log-entries.php:199
3841
- #: includes/importers/mycred-log-entries.php:216
3842
- msgid "Sorry, there has been an error."
3843
- msgstr "Désolé, mais une erreur est survenue&nbsp;!"
3844
-
3845
- #: includes/importers/mycred-balances.php:105
3846
- #: includes/importers/mycred-log-entries.php:105
3847
- msgid "The file does not exist, please try again."
3848
- msgstr "Le fichier n'existe pas, veuillez faire un nouvel essai."
3849
-
3850
- #: includes/importers/mycred-balances.php:188
3851
- #: includes/importers/mycred-log-entries.php:154
3852
- msgid "The CSV is invalid."
3853
- msgstr "Le fichier CSV n'est pas valide."
3854
-
3855
- #: includes/importers/mycred-balances.php:200
3856
- msgid ""
3857
- "Import complete - A total of <strong>%d</strong> balances were successfully "
3858
- "imported. <strong>%d</strong> was skipped."
3859
- msgstr ""
3860
- "Import terminé - Un total de <strong>%d</strong> soldes a été importé avec "
3861
- "succès ! <strong>%d</strong> reste(nt) ignoré(s)"
3862
-
3863
- #: includes/importers/mycred-balances.php:261
3864
- msgid "Import Balances"
3865
- msgstr "Importation des soldes"
3866
-
3867
- #: includes/importers/mycred-balances.php:282
3868
- msgid "Import balances from a CSV file."
3869
- msgstr "Importer les soldes depuis un fichier CSV."
3870
-
3871
- #: includes/importers/mycred-balances.php:293
3872
- #: includes/importers/mycred-log-entries.php:263
3873
- msgid ""
3874
- "Before you can upload your import file, you will need to fix the following "
3875
- "error:"
3876
- msgstr ""
3877
- "Avant de pouvoir télécharger votre fichier d'importation, vous devez d'abord "
3878
- "corriger les erreurs suivantes:"
3879
-
3880
- #: includes/importers/mycred-balances.php:305
3881
- #: includes/importers/mycred-log-entries.php:275
3882
- msgid "Choose a file from your computer:"
3883
- msgstr "Sélectionnez un fichier:"
3884
-
3885
- #: includes/importers/mycred-balances.php:311
3886
- #: includes/importers/mycred-log-entries.php:281
3887
- msgid "Maximum size: %s"
3888
- msgstr "Taille maximum: %s"
3889
-
3890
- #: includes/importers/mycred-balances.php:316
3891
- #: includes/importers/mycred-log-entries.php:286
3892
- msgid "OR enter path to file:"
3893
- msgstr "OU indiquez le chemin vers le fichier:"
3894
-
3895
- #: includes/importers/mycred-balances.php:323
3896
- #: includes/importers/mycred-log-entries.php:293
3897
- msgid "Delimiter"
3898
- msgstr "Délimiteur"
3899
-
3900
- #: includes/importers/mycred-balances.php:327
3901
- msgid "Method"
3902
- msgstr "Méthode"
3903
-
3904
- #: includes/importers/mycred-balances.php:329
3905
- msgid "Replace current balances with the amount in this CSV file"
3906
- msgstr "Remplace le solde actuel par le montant figurant dans le fichier CSV"
3907
-
3908
- #: includes/importers/mycred-balances.php:330
3909
- msgid "Adjust current balances according to the amount in this CSV file"
3910
- msgstr ""
3911
- "Ajuste les soldes actuels avec les montants figurants dans le fichier CSV"
3912
-
3913
- #: includes/importers/mycred-log-entries.php:232
3914
- msgid "Import Log Entries"
3915
- msgstr "Importer le rapport d'entrées"
3916
-
3917
- #: includes/importers/mycred-log-entries.php:253
3918
- msgid "Import log entries from a CSV file."
3919
- msgstr "Importer le rapport d'entrées depuis un fichier CSV."
3920
-
3921
- #: includes/shortcodes/mycred_exchange.php:33
3922
- #: includes/shortcodes/mycred_exchange.php:41
3923
- #: includes/shortcodes/mycred_exchange.php:136
3924
- #: includes/shortcodes/mycred_exchange.php:156
3925
- msgid "You are excluded from using %s."
3926
- msgstr "Vous êtes exclu d'utiliser %s"
3927
-
3928
- #: includes/shortcodes/mycred_exchange.php:37
3929
- #: includes/shortcodes/mycred_exchange.php:146
3930
- msgid "Your balance is too low to use this feature."
3931
- msgstr "Votre solde est trop bas pour utiliser cet élément."
3932
-
3933
- #: includes/shortcodes/mycred_exchange.php:63
3934
- msgid "Your current %s balance"
3935
- msgstr "Votre solde actuel %s"
3936
-
3937
- #: includes/shortcodes/mycred_exchange.php:70
3938
- msgid "Minimum %s"
3939
- msgstr "Minimum %s"
3940
-
3941
- #: includes/shortcodes/mycred_exchange.php:75
3942
- #: addons/gateway/event-booking/mycred-eventespresso3.php:498
3943
- #: addons/gateway/event-booking/mycred-eventsmanager.php:578
3944
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
3945
- #: addons/gateway/carts/mycred-wpecommerce.php:389
3946
- #: addons/gateway/carts/mycred-woocommerce.php:140
3947
- msgid "Exchange Rate"
3948
- msgstr "Taux de change"
3949
-
3950
- #: includes/shortcodes/mycred_exchange.php:76
3951
- msgid "1 %s = <span class=\"rate\">%s</span> %s"
3952
- msgstr "1 %s = <span class=\"Taux\">%s</span> %s"
3953
-
3954
- #: includes/shortcodes/mycred_exchange.php:124
3955
- msgid "Point types not found."
3956
- msgstr "Types de point non trouvé."
3957
-
3958
- #: includes/shortcodes/mycred_exchange.php:169
3959
- msgid "You must exchange at least %s!"
3960
- msgstr "Vous devez échanger au minimum %s!"
3961
-
3962
- #: includes/shortcodes/mycred_exchange.php:178
3963
- #: addons/transfer/myCRED-addon-transfer.php:153
3964
- msgid "Insufficient Funds. Please try a lower amount."
3965
- msgstr "Insuffisance de fonds. S'il vous plait, essayez un montant inférieur."
3966
-
3967
- #: includes/shortcodes/mycred_exchange.php:191
3968
- msgid "Exchange from %s"
3969
- msgstr "Echange par %s"
3970
-
3971
- #: includes/shortcodes/mycred_exchange.php:203
3972
- msgid "Exchange to %s"
3973
- msgstr "Echange de %s"
3974
-
3975
- #: includes/shortcodes/mycred_exchange.php:211
3976
- msgid "You have successfully exchanged %s into %s."
3977
- msgstr "Vous avez échangez avec succès %s en %s."
3978
-
3979
- #: includes/shortcodes/mycred_video.php:44
3980
- msgid "A video ID is required for this shortcode"
3981
- msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
3982
-
3983
- #: includes/classes/class.query-export.php:374
3984
- #: includes/classes/class.query-log.php:979
3985
- msgid "User Missing"
3986
- msgstr "Utilisateur inexistant"
3987
-
3988
- #: includes/classes/class.query-export.php:487
3989
- msgid "Search Results"
3990
- msgstr "Résultats de la recherche"
3991
-
3992
- #: includes/classes/class.query-log.php:427
3993
- msgid "No log entries found"
3994
- msgstr "Aucun enregistrement à afficher."
3995
-
3996
- #: includes/classes/class.query-log.php:527
3997
- msgid "Show all references"
3998
- msgstr "Afficher toutes les références"
3999
-
4000
- #: includes/classes/class.query-log.php:552
4001
- msgid "Show in order"
4002
- msgstr "Afficher sur la commande"
4003
-
4004
- #: includes/classes/class.query-log.php:573
4005
- msgid "Filter"
4006
- msgstr "Filtre"
4007
-
4008
- #: includes/classes/class.query-log.php:1147
4009
- msgid "No export options available."
4010
- msgstr "Aucune option d'exportation disponible."
4011
-
4012
- #: includes/classes/class.query-log.php:1178
4013
- #: includes/classes/class.query-log.php:1180
4014
- msgid "Search Log"
4015
- msgstr "Journal de recherche"
4016
-
4017
- #: includes/classes/class.query-log.php:1179
4018
- msgid "search log entries"
4019
- msgstr "Recherchez une donnée"
4020
-
4021
- #: includes/classes/class.query-log.php:1543
4022
- msgid "Website Registration"
4023
- msgstr "Inscription au siteweb"
4024
-
4025
- #: includes/classes/class.query-log.php:1544
4026
- msgid "Website Visit"
4027
- msgstr "Visite du siteweb"
4028
-
4029
- #: includes/classes/class.query-log.php:1545
4030
- msgid "Viewing Content (Member)"
4031
- msgstr "Voir le contenu (Membre)"
4032
-
4033
- #: includes/classes/class.query-log.php:1546
4034
- msgid "Viewing Content (Author)"
4035
- msgstr "Voir le contenu (Auteur)"
4036
-
4037
- #: includes/classes/class.query-log.php:1547
4038
- msgid "Logging in"
4039
- msgstr "Connectez-vous"
4040
-
4041
- #: includes/classes/class.query-log.php:1548
4042
- msgid "Publishing Content"
4043
- msgstr "Publié le contenu"
4044
-
4045
- #: includes/classes/class.query-log.php:1549
4046
- msgid "Approved Comment"
4047
- msgstr "Commentaire approuvé"
4048
-
4049
- #: includes/classes/class.query-log.php:1550
4050
- msgid "Unapproved Comment"
4051
- msgstr "Commentaire non approuvé"
4052
-
4053
- #: includes/classes/class.query-log.php:1551
4054
- msgid "SPAM Comment"
4055
- msgstr "Commentaire SPAM"
4056
-
4057
- #: includes/classes/class.query-log.php:1553
4058
- msgid "Link Click"
4059
- msgstr "Lien cliqué"
4060
-
4061
- #: includes/classes/class.query-log.php:1554
4062
- msgid "Watching Video"
4063
- msgstr "Vidéo regardé"
4064
-
4065
- #: includes/classes/class.query-log.php:1555
4066
- msgid "Visitor Referral"
4067
- msgstr "Visiter référant"
4068
-
4069
- #: includes/classes/class.query-log.php:1556
4070
- msgid "Signup Referral"
4071
- msgstr "Inscription référant"
4072
-
4073
- #: includes/classes/class.query-log.php:1560
4074
- msgid "New Profile Update"
4075
- msgstr "Nouveau profil mis à jour"
4076
-
4077
- #: includes/classes/class.query-log.php:1562
4078
- msgid "Avatar Upload"
4079
- msgstr "Téléchargement d'avatar"
4080
-
4081
- #: includes/classes/class.query-log.php:1565
4082
- msgid "Ended Friendship"
4083
- msgstr "Fin d'amitié"
4084
-
4085
- #: includes/classes/class.query-log.php:1566
4086
- msgid "New Profile Comment"
4087
- msgstr "Nouveau commentaire profil"
4088
-
4089
- #: includes/classes/class.query-log.php:1567
4090
- msgid "Profile Comment Deletion"
4091
- msgstr "Suppression d'un commentaire du profil"
4092
-
4093
- #: includes/classes/class.query-log.php:1570
4094
- msgid "New Message"
4095
- msgstr "Nouveau message"
4096
-
4097
- #: includes/classes/class.query-log.php:1572
4098
- msgid "New Group"
4099
- msgstr "Nouveau groupe"
4100
-
4101
- #: includes/classes/class.query-log.php:1573
4102
- msgid "Deleted Group"
4103
- msgstr "Groupe supprimé"
4104
-
4105
- #: includes/classes/class.query-log.php:1574
4106
- msgid "New Group Forum Topic"
4107
- msgstr "Nouveau groupe sujet dans le forum"
4108
-
4109
- #: includes/classes/class.query-log.php:1575
4110
- msgid "Edit Group Forum Topic"
4111
- msgstr "Editer un groupe sujet dans le forum"
4112
-
4113
- #: includes/classes/class.query-log.php:1576
4114
- msgid "New Group Forum Post"
4115
- msgstr "Nouveau groupe de post dans le forum"
4116
-
4117
- #: includes/classes/class.query-log.php:1577
4118
- msgid "Edit Group Forum Post"
4119
- msgstr "Editer le groupe de post dans le forum"
4120
-
4121
- #: includes/classes/class.query-log.php:1578
4122
- msgid "Joining Group"
4123
- msgstr "Joindre un groupe"
4124
-
4125
- #: includes/classes/class.query-log.php:1579
4126
- msgid "Leaving Group"
4127
- msgstr "Quitter un groupe"
4128
-
4129
- #: includes/classes/class.query-log.php:1580
4130
- msgid "New Group Avatar"
4131
- msgstr "Nouveau groupe d'avatar"
4132
-
4133
- #: includes/classes/class.query-log.php:1582
4134
- msgid "New Group Comment"
4135
- msgstr "Nouveau groupe de commentaires"
4136
-
4137
- #: includes/classes/class.query-log.php:1592
4138
- msgid "New Link"
4139
- msgstr "Nouveau lien"
4140
-
4141
- #: includes/classes/class.query-log.php:1593
4142
- msgid "Link Voting"
4143
- msgstr "Lien de vote"
4144
-
4145
- #: includes/classes/class.query-log.php:1594
4146
- msgid "Link Update"
4147
- msgstr "Lien mis à jour"
4148
-
4149
- #: includes/classes/class.query-log.php:1598
4150
- msgid "New Forum (bbPress)"
4151
- msgstr "Nouveau forum (bbpress)"
4152
-
4153
- #: includes/classes/class.query-log.php:1599
4154
- msgid "New Forum Topic (bbPress)"
4155
- msgstr "Nouveau sujet de forum (bbpress)"
4156
-
4157
- #: includes/classes/class.query-log.php:1600
4158
- msgid "Favorited Topic (bbPress)"
4159
- msgstr "Sujet favoris (bbPress)"
4160
-
4161
- #: includes/classes/class.query-log.php:1601
4162
- msgid "New Topic Reply (bbPress)"
4163
- msgstr "Nouvelle réponse d'un sujet (Bbpress)"
4164
-
4165
- #: includes/classes/class.query-log.php:1605
4166
- msgid "Form Submission (Contact Form 7)"
4167
- msgstr "Formulaire de soumission (Contact Form 7)"
4168
-
4169
- #: includes/classes/class.query-log.php:1608
4170
- msgid "Form Submission (Gravity Form)"
4171
- msgstr "Formulaire de soumission (Contact Form 7)"
4172
-
4173
- #: includes/classes/class.query-log.php:1611
4174
- msgid "New Forum Topic (SimplePress)"
4175
- msgstr "Nouveau sujet de Forum (SimplePress)"
4176
-
4177
- #: includes/classes/class.query-log.php:1612
4178
- msgid "New Forum Post (SimplePress)"
4179
- msgstr "Nouveau post sur le forum (SimplePress)"
4180
-
4181
- #: includes/classes/class.query-log.php:1633
4182
- msgid "Poll Voting"
4183
- msgstr "Poll Voting"
4184
-
4185
- #: includes/classes/class.query-log.php:1636
4186
- msgid "Sending an Invite"
4187
- msgstr "Envoie d'une invitation"
4188
-
4189
- #: includes/classes/class.query-log.php:1637
4190
- msgid "Accepting an Invite"
4191
- msgstr "Accepter une invitation"
4192
-
4193
- #: includes/classes/class.query-log.php:1643
4194
- #: addons/banking/myCRED-addon-banking.php:150
4195
- msgid "Compound Interest"
4196
- msgstr "Appliquer des Intérêts"
4197
-
4198
- #: includes/classes/class.query-log.php:1651
4199
- msgid "buyCRED Purchase (PayPal Standard)"
4200
- msgstr "Achat buyCRED (PayPal Standart)"
4201
-
4202
- #: includes/classes/class.query-log.php:1652
4203
- msgid "buyCRED Purchase (Skrill)"
4204
- msgstr "Achat buyCRED (Skrill)"
4205
-
4206
- #: includes/classes/class.query-log.php:1653
4207
- msgid "buyCRED Purchase (Zombaio)"
4208
- msgstr "Achat buyCRED (Zombaio)"
4209
-
4210
- #: includes/classes/class.query-log.php:1654
4211
- msgid "buyCRED Purchase (NETBilling)"
4212
- msgstr "Achat buyCRED (Netbilling)"
4213
-
4214
- #: includes/classes/class.query-log.php:1655
4215
- msgid "buyCRED Purchase (BitPay)"
4216
- msgstr "Achat buyCRED (BitPay)"
4217
-
4218
- #: includes/classes/class.query-log.php:1660
4219
- msgid "Coupon Purchase"
4220
- msgstr "Coupon d'achat"
4221
-
4222
- #: includes/classes/class.query-log.php:1664
4223
- msgid "Store Purchase (WooCommerce)"
4224
- msgstr "Magasin achat (WooCOmmerce)"
4225
-
4226
- #: includes/classes/class.query-log.php:1669
4227
- msgid "Store Purchase (MarketPress)"
4228
- msgstr "Magasin achat (MarketPress)"
4229
-
4230
- #: includes/classes/class.query-log.php:1673
4231
- msgid "Store Purchase (WP E-Commerce)"
4232
- msgstr "Magasin achat (Wp E-commence)"
4233
-
4234
- #: includes/classes/class.query-log.php:1679
4235
- msgid "Event Payment (Event Espresso)"
4236
- msgstr "Evènement paiement (Event Espresso)"
4237
-
4238
- #: includes/classes/class.query-log.php:1680
4239
- msgid "Event Sale (Event Espresso)"
4240
- msgstr "Evènement vendu (Event Espresso)"
4241
-
4242
- #: includes/classes/class.query-log.php:1684
4243
- msgid "Event Payment (Events Manager)"
4244
- msgstr "Evènement payé (Events Manager)"
4245
-
4246
- #: includes/classes/class.query-log.php:1685
4247
- msgid "Event Sale (Events Manager)"
4248
- msgstr "Evènement vendu (Events Manager)"
4249
-
4250
- #: includes/classes/class.query-log.php:1694
4251
- #: addons/transfer/myCRED-addon-transfer.php:48
4252
- msgid "Transfer"
4253
- msgstr "Transférer"
4254
-
4255
- #: includes/classes/class.query-log.php:1698
4256
- msgid "Manual Adjustment by Admin"
4257
- msgstr "Ajustements manuel par admin"
4258
-
4259
- #: addons/banking/myCRED-addon-banking.php:45
4260
- #: addons/banking/myCRED-addon-banking.php:46
4261
- #: addons/banking/myCRED-addon-banking.php:47
4262
- msgid "Banking"
4263
- msgstr "Banque"
4264
-
4265
- #: addons/banking/myCRED-addon-banking.php:141
4266
- msgid "Central Banking"
4267
- msgstr "Banque central"
4268
-
4269
- #: addons/banking/myCRED-addon-banking.php:159
4270
- msgid "Recurring Payouts"
4271
- msgstr "Paiements répétés"
4272
-
4273
- #: addons/banking/myCRED-addon-banking.php:160
4274
- msgid "Setup mass %_singular% payouts for your users."
4275
- msgstr ""
4276
- "Installation de masse %_singular% pour les paiements de vos utilisateurs"
4277
-
4278
- #: addons/banking/myCRED-addon-banking.php:253
4279
- msgid "%s Banking"
4280
- msgstr "Paiement %s"
4281
-
4282
- #: addons/banking/myCRED-addon-banking.php:273
4283
- #: addons/buy-creds/modules/buycred-module-core.php:581
4284
- msgid "Enable"
4285
- msgstr "Activer"
4286
-
4287
- #: addons/banking/myCRED-addon-banking.php:292
4288
- msgid "Update Changes"
4289
- msgstr "Enregistrer les modifications"
4290
-
4291
- #: addons/transfer/myCRED-addon-transfer.php:41
4292
- msgid "You do not have enough %plural% to send."
4293
- msgstr "Vous n&#39;avez pas suffisamment de %plural% &agrave; envoyer."
4294
-
4295
- #: addons/transfer/myCRED-addon-transfer.php:42
4296
- msgid "You have exceeded your %limit% transfer limit."
4297
- msgstr "Vous avez dépass&eacute; votre limite de transfert %limit%."
4298
-
4299
- #: addons/transfer/myCRED-addon-transfer.php:146
4300
- msgid "Transaction completed."
4301
- msgstr "Transaction terminée."
4302
-
4303
- #: addons/transfer/myCRED-addon-transfer.php:147
4304
- msgid ""
4305
- "Security token could not be verified. Please contact your site administrator!"
4306
- msgstr ""
4307
- "Le jeton de sécurité n'a pas pu être vérifié. Veuillez contacter "
4308
- "l'administrateur du site."
4309
-
4310
- #: addons/transfer/myCRED-addon-transfer.php:148
4311
- #: addons/transfer/myCRED-addon-transfer.php:155
4312
- msgid "Communications error. Please try again later."
4313
- msgstr "Erreur de communication. Veuillez essayer ultérieurement."
4314
-
4315
- #: addons/transfer/myCRED-addon-transfer.php:149
4316
- msgid "Recipient not found. Please try again."
4317
- msgstr "Le destinataire n'a pas été trouvé. Veuillez recommencer."
4318
-
4319
- #: addons/transfer/myCRED-addon-transfer.php:150
4320
- msgid "Transaction declined by recipient."
4321
- msgstr "Transaction refusée par le destinataire."
4322
-
4323
- #: addons/transfer/myCRED-addon-transfer.php:151
4324
- msgid "Incorrect amount. Please try again."
4325
- msgstr "Montant incorrect. Veuillez recommencer."
4326
-
4327
- #: addons/transfer/myCRED-addon-transfer.php:152
4328
- msgid ""
4329
- "This myCRED Add-on has not yet been setup! No transfers are allowed until "
4330
- "this has been done!"
4331
- msgstr ""
4332
- "Ce module myCRED n'a pas encore été paramétré. Aucun transfert n'est "
4333
- "autorisé avant qu'il ne soit activé."
4334
-
4335
- #: addons/transfer/myCRED-addon-transfer.php:154
4336
- msgid "Transfer Limit exceeded."
4337
- msgstr "La limite de transfert a été dépassée."
4338
-
4339
- #: addons/transfer/myCRED-addon-transfer.php:360
4340
- msgid "No limits."
4341
- msgstr "Illimité."
4342
-
4343
- #: addons/transfer/myCRED-addon-transfer.php:361
4344
- msgid "Impose daily limit."
4345
- msgstr "imposer un limite quotidienne"
4346
-
4347
- #: addons/transfer/myCRED-addon-transfer.php:362
4348
- msgid "Impose weekly limit."
4349
- msgstr "imposer une limite hebdomadaire."
4350
-
4351
- #: addons/transfer/myCRED-addon-transfer.php:369
4352
- msgid "User Login (user_login)"
4353
- msgstr "Nom d'utilisateur (user_login)"
4354
-
4355
- #: addons/transfer/myCRED-addon-transfer.php:370
4356
- msgid "User Email (user_email)"
4357
- msgstr "Email (user_email)"
4358
-
4359
- #: addons/transfer/myCRED-addon-transfer.php:378
4360
- msgid "Transfers"
4361
- msgstr "transferts"
4362
-
4363
- #: addons/transfer/myCRED-addon-transfer.php:388
4364
- msgid "Select the point types that users can transfer."
4365
- msgstr ""
4366
- "Sélectionnez le type de points que les utilisateurs peuvent transférer."
4367
-
4368
- #: addons/transfer/myCRED-addon-transfer.php:398
4369
- msgid "Log template for sending"
4370
- msgstr "Affichage de l'avis d'expédition"
4371
-
4372
- #: addons/transfer/myCRED-addon-transfer.php:405
4373
- msgid "Log template for receiving"
4374
- msgstr "Affichage de l'avis de récéption"
4375
-
4376
- #: addons/transfer/myCRED-addon-transfer.php:412
4377
- msgid "Autofill Recipient"
4378
- msgstr "Autocomplétion du destinataire"
4379
-
4380
- #: addons/transfer/myCRED-addon-transfer.php:426
4381
- msgid "Select what user details recipients should be autofilled by."
4382
- msgstr ""
4383
- "Sélectionnez les détails à afficher en autocomplétion aux destinataires."
4384
-
4385
- #: addons/transfer/myCRED-addon-transfer.php:429
4386
- msgid "Reload"
4387
- msgstr "Rafraîchir"
4388
-
4389
- #: addons/transfer/myCRED-addon-transfer.php:432
4390
- msgid "Reload page on successful transfers."
4391
- msgstr "Rafraîchir la page en cas de transfert réussi."
4392
-
4393
- #: addons/transfer/myCRED-addon-transfer.php:435
4394
- #: addons/coupons/myCRED-addon-coupons.php:250
4395
- #: addons/banking/services/mycred-service-payouts.php:599
4396
- #: addons/banking/services/mycred-service-payouts.php:760
4397
- msgid "Limits"
4398
- msgstr "Règles de limitation"
4399
-
4400
- #: addons/transfer/myCRED-addon-transfer.php:456
4401
- msgid "Limit Amount"
4402
- msgstr "Montant limite"
4403
-
4404
- #: addons/transfer/myCRED-addon-transfer.php:460
4405
- #: addons/sell-content/myCRED-addon-sell-content.php:553
4406
- #: addons/gateway/event-booking/mycred-eventespresso3.php:525
4407
- msgid "Templates"
4408
- msgstr "Affichage des éléments"
4409
-
4410
- #: addons/transfer/myCRED-addon-transfer.php:463
4411
- #: addons/sell-content/myCRED-addon-sell-content.php:573
4412
- #: addons/gateway/event-booking/mycred-eventespresso3.php:538
4413
- #: addons/gateway/carts/mycred-wpecommerce.php:411
4414
- msgid "Visitors"
4415
- msgstr "Visiteurs"
4416
-
4417
- #: addons/ranks/myCRED-addon-ranks.php:218
4418
- #: addons/ranks/myCRED-addon-ranks.php:227
4419
- #: addons/ranks/myCRED-addon-ranks.php:237
4420
- #: addons/ranks/myCRED-addon-ranks.php:339
4421
- #: addons/ranks/myCRED-addon-ranks.php:340
4422
- #: addons/ranks/myCRED-addon-ranks.php:724
4423
- #: addons/ranks/myCRED-addon-ranks.php:1358
4424
- #: addons/ranks/myCRED-addon-ranks.php:1648
4425
- msgid "Ranks"
4426
- msgstr "Attribution de Points"
4427
-
4428
- #: addons/ranks/myCRED-addon-ranks.php:222
4429
- #: addons/ranks/myCRED-addon-ranks.php:724
4430
- #: addons/ranks/myCRED-addon-ranks.php:873
4431
- #: addons/ranks/myCRED-addon-ranks.php:876
4432
- #: addons/ranks/myCRED-addon-ranks.php:904
4433
- msgid "Rank"
4434
- msgstr "Classement"
4435
-
4436
- #: addons/ranks/myCRED-addon-ranks.php:223
4437
- #: addons/ranks/myCRED-addon-ranks.php:224
4438
- #: addons/email-notices/myCRED-addon-email-notices.php:126
4439
- #: addons/email-notices/myCRED-addon-email-notices.php:127
4440
- #: addons/badges/myCRED-addon-badges.php:150
4441
- #: addons/badges/myCRED-addon-badges.php:151
4442
- #: addons/banking/services/mycred-service-payouts.php:896
4443
- msgid "Add New"
4444
- msgstr "Ajouter"
4445
-
4446
- #: addons/ranks/myCRED-addon-ranks.php:225
4447
- msgid "Edit Rank"
4448
- msgstr "Modifier ce classement"
4449
-
4450
- #: addons/ranks/myCRED-addon-ranks.php:226
4451
- msgid "New Rank"
4452
- msgstr "Nouveau classement"
4453
-
4454
- #: addons/ranks/myCRED-addon-ranks.php:228
4455
- msgid "View Rank"
4456
- msgstr "Afficher le classement"
4457
-
4458
- #: addons/ranks/myCRED-addon-ranks.php:229
4459
- msgid "Search Ranks"
4460
- msgstr "Rechercher un classement"
4461
-
4462
- #: addons/ranks/myCRED-addon-ranks.php:234
4463
- #: addons/ranks/myCRED-addon-ranks.php:1285
4464
- msgid "No ranks found"
4465
- msgstr "Aucun classement trouvé"
4466
-
4467
- #: addons/ranks/myCRED-addon-ranks.php:235
4468
- msgid "No ranks found in Trash"
4469
- msgstr "Aucun classement trouvé dans la corbeille"
4470
-
4471
- #: addons/ranks/myCRED-addon-ranks.php:283
4472
- #: addons/ranks/myCRED-addon-ranks.php:284
4473
- #: addons/ranks/myCRED-addon-ranks.php:285
4474
- #: addons/ranks/myCRED-addon-ranks.php:286
4475
- #: addons/ranks/myCRED-addon-ranks.php:287
4476
- #: addons/ranks/myCRED-addon-ranks.php:290
4477
- #: addons/ranks/myCRED-addon-ranks.php:291
4478
- msgid "Rank Updated."
4479
- msgstr "Rang mis à jour."
4480
-
4481
- #: addons/ranks/myCRED-addon-ranks.php:481
4482
- msgid "Completed - Total of %d users effected"
4483
- msgstr "Terminé - %d utilisateurs ont été affectés"
4484
-
4485
- #: addons/ranks/myCRED-addon-ranks.php:987
4486
- msgid "Warning! All ranks will be deleted! This can not be undone!"
4487
- msgstr ""
4488
- "Attention ! Tous les classements vont être supprimés. Cette action ne pourra "
4489
- "pas être annulée."
4490
-
4491
- #: addons/ranks/myCRED-addon-ranks.php:988
4492
- msgid "Are you sure you want to re-assign user ranks?"
4493
- msgstr "Je confirme la réassignation du classement de l'utilisateur"
4494
-
4495
- #: addons/ranks/myCRED-addon-ranks.php:1073
4496
- #: addons/ranks/myCRED-addon-ranks.php:1174
4497
- msgid "Rank Title"
4498
- msgstr "Titre du classement"
4499
-
4500
- #: addons/ranks/myCRED-addon-ranks.php:1074
4501
- msgid "Logo"
4502
- msgstr "Logo"
4503
-
4504
- #: addons/ranks/myCRED-addon-ranks.php:1075
4505
- #: addons/badges/myCRED-addon-badges.php:828
4506
- #: addons/badges/myCRED-addon-badges.php:829
4507
- msgid "Requirement"
4508
- msgstr "Obligation"
4509
-
4510
- #: addons/ranks/myCRED-addon-ranks.php:1101
4511
- msgid "No Logo Set"
4512
- msgstr "Aucun logo défini"
4513
-
4514
- #: addons/ranks/myCRED-addon-ranks.php:1116
4515
- #: addons/ranks/myCRED-addon-ranks.php:1121
4516
- msgid "Any Value"
4517
- msgstr "Valeur au choix"
4518
-
4519
- #: addons/ranks/myCRED-addon-ranks.php:1118
4520
- #: addons/buy-creds/modules/buycred-module-core.php:327
4521
- msgid "Minimum %plural%"
4522
- msgstr "%plural% minimum"
4523
-
4524
- #: addons/ranks/myCRED-addon-ranks.php:1123
4525
- msgid "Maximum %plural%"
4526
- msgstr "Maximum de %plural%"
4527
-
4528
- #: addons/ranks/myCRED-addon-ranks.php:1274
4529
- #: addons/ranks/myCRED-addon-ranks.php:1275
4530
- msgid "Not Set"
4531
- msgstr "Non configuré"
4532
-
4533
- #: addons/ranks/myCRED-addon-ranks.php:1363
4534
- msgid "Rank Features"
4535
- msgstr "Caractéristiques du classement"
4536
-
4537
- #: addons/ranks/myCRED-addon-ranks.php:1367
4538
- msgid "%plural% requirement"
4539
- msgstr "condition requise pour l&#39;attribution de %_plural%"
4540
-
4541
- #: addons/ranks/myCRED-addon-ranks.php:1370
4542
- msgid "Content"
4543
- msgstr "Contenu"
4544
-
4545
- #: addons/ranks/myCRED-addon-ranks.php:1372
4546
- msgid "Excerpt"
4547
- msgstr "Extrait"
4548
-
4549
- #: addons/ranks/myCRED-addon-ranks.php:1374
4550
- msgid "Comments"
4551
- msgstr "Commentaires"
4552
-
4553
- #: addons/ranks/myCRED-addon-ranks.php:1376
4554
- msgid "Page Attributes"
4555
- msgstr "Attributs de la page"
4556
-
4557
- #: addons/ranks/myCRED-addon-ranks.php:1378
4558
- msgid "Custom Fields"
4559
- msgstr "Champs Personnalisés"
4560
-
4561
- #: addons/ranks/myCRED-addon-ranks.php:1382
4562
- msgid "Public"
4563
- msgstr "Public"
4564
-
4565
- #: addons/ranks/myCRED-addon-ranks.php:1386
4566
- msgid ""
4567
- "If you want to create a template archive for each rank, you must select to "
4568
- "have ranks public. Defaults to disabled."
4569
- msgstr ""
4570
- "Pour créer un template d'archivage pour chaque classement, ceux-ci doivent "
4571
- "être publics. Désactivé par défaut."
4572
-
4573
- #: addons/ranks/myCRED-addon-ranks.php:1389
4574
- msgid "Archive URL"
4575
- msgstr "URL des archives"
4576
-
4577
- #: addons/ranks/myCRED-addon-ranks.php:1393
4578
- msgid "Ignored if Ranks are not public"
4579
- msgstr "Ignoré si le classement n'est pas public"
4580
-
4581
- #: addons/ranks/myCRED-addon-ranks.php:1396
4582
- msgid "Display Order"
4583
- msgstr "Ordre d'affichage"
4584
-
4585
- #: addons/ranks/myCRED-addon-ranks.php:1404
4586
- msgid "Ascending - Lowest rank to highest"
4587
- msgstr "Ascendant - Du plus petit au plus grand"
4588
-
4589
- #: addons/ranks/myCRED-addon-ranks.php:1405
4590
- msgid "Descending - Highest rank to lowest"
4591
- msgstr "Descendant - Du plus grand au plus petit"
4592
-
4593
- #: addons/ranks/myCRED-addon-ranks.php:1416
4594
- msgid ""
4595
- "Select in what order ranks should be displayed in your admin area and/or "
4596
- "front if ranks are \"Public\""
4597
- msgstr ""
4598
- "Choisissez l'ordre d'affichage des classements dans l'admin et/ou sur le "
4599
- "site quand les classements sont marqués comme \"Publics\""
4600
-
4601
- #: addons/ranks/myCRED-addon-ranks.php:1422
4602
- msgid "Rank Basis"
4603
- msgstr "Base de Classement"
4604
-
4605
- #: addons/ranks/myCRED-addon-ranks.php:1425
4606
- msgid "Users are ranked according to their current balance."
4607
- msgstr "Les utilisateurs sont classés selon leur solde courant"
4608
-
4609
- #: addons/ranks/myCRED-addon-ranks.php:1428
4610
- msgid ""
4611
- "Users are ranked according to the total amount of %_plural% they have "
4612
- "accumulated."
4613
- msgstr ""
4614
- "Les utilisateurs sont classés selon le montant de total de %_plural% qu'ils "
4615
- "ont accumulés."
4616
-
4617
- #: addons/ranks/myCRED-addon-ranks.php:1432
4618
- #: addons/ranks/myCRED-addon-ranks.php:1437
4619
- msgid "Calculate Totals"
4620
- msgstr "Calculer les totaux"
4621
-
4622
- #: addons/ranks/myCRED-addon-ranks.php:1435
4623
- msgid ""
4624
- "Once a users total has been calculated, they will be assigned to their "
4625
- "appropriate roles. For this reason, it is highly recommended that you first "
4626
- "setup your ranks!"
4627
- msgstr ""
4628
- "Une fois les totaux de vos utilisateurs calculés, leurs rôles respectifs "
4629
- "leurs seront assignés. Pour cette raison, il est fortement recommandé que "
4630
- "vous configurez d'abord vos classements !"
4631
-
4632
- #: addons/ranks/myCRED-addon-ranks.php:1436
4633
- msgid ""
4634
- "Depending on your log size and number of users this process may take a while."
4635
- " Please do not leave, click \"Update Settings\" or re-fresh this page until "
4636
- "this is completed!"
4637
- msgstr ""
4638
- "Selon la taille de votre hébergement et le nombres d'utilisateurs, cette "
4639
- "opération peut prendre un certain temps. Ne quittez pas cette page, ne "
4640
- "cliquez pas sur \"Mettre à jour\" et ne rafraichissez pas la page avant la "
4641
- "fin de l'opération !"
4642
-
4643
- #: addons/ranks/myCRED-addon-ranks.php:1454
4644
- msgid "Include in Profile Header."
4645
- msgstr "Inclure dans l'en-tête du profil."
4646
-
4647
- #: addons/ranks/myCRED-addon-ranks.php:1456
4648
- msgid "Include under the \"Profile\" tab and Profile Header."
4649
- msgstr "Inclure sous l'onglet \"Profil\" et dans l'en-tête du profil."
4650
-
4651
- #: addons/ranks/myCRED-addon-ranks.php:1460
4652
- msgid "Rank in BuddyPress"
4653
- msgstr "Classement dans BuddyPress"
4654
-
4655
- #: addons/ranks/myCRED-addon-ranks.php:1500
4656
- #: addons/badges/myCRED-addon-badges.php:1183
4657
- msgid "Include in Profile"
4658
- msgstr "Inclure dans le profil"
4659
-
4660
- #: addons/ranks/myCRED-addon-ranks.php:1584
4661
- msgid "Script Communication Error"
4662
- msgstr "Erreur de communication des scripts"
4663
-
4664
- #: addons/ranks/myCRED-addon-ranks.php:1651
4665
- msgid "User Meta Key"
4666
- msgstr "Mot clé utilisateur"
4667
-
4668
- #: addons/ranks/myCRED-addon-ranks.php:1655
4669
- msgid "No. of ranks"
4670
- msgstr "N° de classement"
4671
-
4672
- #: addons/ranks/myCRED-addon-ranks.php:1660
4673
- msgid "Remove All Ranks"
4674
- msgstr "Supprimer tous les classements"
4675
-
4676
- #: addons/ranks/myCRED-addon-ranks.php:1660
4677
- msgid "Assign Ranks to Users"
4678
- msgstr "Attribuer un classement à l'utilisateur"
4679
-
4680
- #: addons/notifications/myCRED-addon-notifications.php:191
4681
- msgid "Notifications"
4682
- msgstr "Notifications"
4683
-
4684
- #: addons/notifications/myCRED-addon-notifications.php:193
4685
- msgid "Styling"
4686
- msgstr "Style"
4687
-
4688
- #: addons/notifications/myCRED-addon-notifications.php:196
4689
- msgid "Use the included CSS Styling for notifications."
4690
- msgstr "Utiliser le style CSS inclus pour les notifications."
4691
-
4692
- #: addons/notifications/myCRED-addon-notifications.php:203
4693
- msgid ""
4694
- "Use %entry% to show the log entry in the notice and %amount% for the amount."
4695
- msgstr ""
4696
- "Utilisez %entry% pour afficher l'élément concerné dans la notice et %amount% "
4697
- "pour afficher le montant."
4698
-
4699
- #: addons/notifications/myCRED-addon-notifications.php:206
4700
- msgid "Transient Lifespan"
4701
- msgstr "Durée transitoire"
4702
-
4703
- #: addons/notifications/myCRED-addon-notifications.php:210
4704
- msgid ""
4705
- "The number of days a users notification is saved before being automatically "
4706
- "deleted."
4707
- msgstr ""
4708
- "Le nombre de jours de conservations d'une notice adressée à l'utilisateur "
4709
- "avant qu'elle ne soit automatiquement supprimée."
4710
-
4711
- #: addons/notifications/myCRED-addon-notifications.php:213
4712
- msgid "Duration"
4713
- msgstr "Durée"
4714
-
4715
- #: addons/email-notices/myCRED-addon-email-notices.php:167
4716
- #: addons/email-notices/myCRED-addon-email-notices.php:168
4717
- #: addons/email-notices/myCRED-addon-email-notices.php:169
4718
- #: addons/email-notices/myCRED-addon-email-notices.php:170
4719
- #: addons/email-notices/myCRED-addon-email-notices.php:173
4720
- #: addons/email-notices/myCRED-addon-email-notices.php:174
4721
- #: addons/email-notices/myCRED-addon-email-notices.php:175
4722
- #: addons/email-notices/myCRED-addon-email-notices.php:176
4723
- msgid "Email Notice Updated."
4724
- msgstr "Notice d'Email mis à jour."
4725
-
4726
- #: addons/email-notices/myCRED-addon-email-notices.php:254
4727
- #: addons/email-notices/myCRED-addon-email-notices.php:271
4728
- msgid "Email Subject"
4729
- msgstr "Sujet du mail"
4730
-
4731
- #: addons/email-notices/myCRED-addon-email-notices.php:272
4732
- #: addons/sell-content/myCRED-addon-sell-content.php:493
4733
- #: addons/banking/services/mycred-service-payouts.php:565
4734
- #: addons/banking/services/mycred-service-payouts.php:880
4735
- msgid "Status"
4736
- msgstr "Statut"
4737
-
4738
- #: addons/email-notices/myCRED-addon-email-notices.php:298
4739
- msgid "Not Active"
4740
- msgstr "Inactif"
4741
-
4742
- #: addons/email-notices/myCRED-addon-email-notices.php:301
4743
- msgid "Scheduled:<br /><strong>%1$s</strong>"
4744
- msgstr "Pr&eacute;vu pour le:<br /><strong>%1$s</strong>"
4745
-
4746
- #: addons/email-notices/myCRED-addon-email-notices.php:306
4747
- #: addons/banking/services/mycred-service-payouts.php:31
4748
- msgid "Active"
4749
- msgstr "Actif"
4750
-
4751
- #: addons/email-notices/myCRED-addon-email-notices.php:308
4752
- msgid "Active - Last run:<br /><strong>%1$s</strong>"
4753
- msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
4754
-
4755
- #: addons/email-notices/myCRED-addon-email-notices.php:321
4756
- msgid "Email is sent when"
4757
- msgstr "Le mail sera envoyé quand"
4758
-
4759
- #: addons/email-notices/myCRED-addon-email-notices.php:323
4760
- msgid "Missing instance for this notice!"
4761
- msgstr "Ce message n'est pas instancié !"
4762
-
4763
- #: addons/email-notices/myCRED-addon-email-notices.php:332
4764
- #: addons/email-notices/myCRED-addon-email-notices.php:334
4765
- #: addons/email-notices/myCRED-addon-email-notices.php:336
4766
- msgid "Sent To"
4767
- msgstr "Envoyer à"
4768
-
4769
- #: addons/email-notices/myCRED-addon-email-notices.php:334
4770
- #: addons/email-notices/myCRED-addon-email-notices.php:568
4771
- msgid "Administrator"
4772
- msgstr "Administrateur"
4773
-
4774
- #: addons/email-notices/myCRED-addon-email-notices.php:336
4775
- msgid "Both Administrator and User"
4776
- msgstr "A l'administrateur et à l'utilisateur"
4777
-
4778
- #: addons/email-notices/myCRED-addon-email-notices.php:384
4779
- #: addons/email-notices/myCRED-addon-email-notices.php:1400
4780
- msgid "Email Settings"
4781
- msgstr "Configuration des mails"
4782
-
4783
- #: addons/email-notices/myCRED-addon-email-notices.php:393
4784
- msgid "Available Template Tags"
4785
- msgstr "Mots-clés utilisables ici"
4786
-
4787
- #: addons/email-notices/myCRED-addon-email-notices.php:404
4788
- msgid "Email Header"
4789
- msgstr "En-tête du mail"
4790
-
4791
- #: addons/email-notices/myCRED-addon-email-notices.php:490
4792
- msgid ""
4793
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
4794
- "you are not yet ready to use this email notice!"
4795
- msgstr ""
4796
- "<strong>ATTENTION</strong><br/>Une fois que le message est publié il est "
4797
- "actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
4798
- "l'utiliser."
4799
-
4800
- #: addons/email-notices/myCRED-addon-email-notices.php:492
4801
- msgid "This notice will become active on:<br /><strong>%1$s</strong>"
4802
- msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
4803
-
4804
- #: addons/email-notices/myCRED-addon-email-notices.php:494
4805
- msgid "This email notice is active."
4806
- msgstr "Ce message est activé."
4807
-
4808
- #: addons/email-notices/myCRED-addon-email-notices.php:520
4809
- msgid "Send this email notice when..."
4810
- msgstr "Envoyer ce mail quand...."
4811
-
4812
- #: addons/email-notices/myCRED-addon-email-notices.php:563
4813
- msgid "Recipient:"
4814
- msgstr "Destinataire:"
4815
-
4816
- #: addons/email-notices/myCRED-addon-email-notices.php:571
4817
- msgid "Both"
4818
- msgstr "Les deux"
4819
-
4820
- #: addons/email-notices/myCRED-addon-email-notices.php:607
4821
- #: addons/email-notices/myCRED-addon-email-notices.php:1403
4822
- msgid "Senders Name:"
4823
- msgstr "Expéditeur:"
4824
-
4825
- #: addons/email-notices/myCRED-addon-email-notices.php:611
4826
- #: addons/email-notices/myCRED-addon-email-notices.php:1407
4827
- msgid "Senders Email:"
4828
- msgstr "Email de l'expéditeur"
4829
-
4830
- #: addons/email-notices/myCRED-addon-email-notices.php:615
4831
- msgid "Reply-To Email:"
4832
- msgstr "Adresse de réponse"
4833
-
4834
- #: addons/email-notices/myCRED-addon-email-notices.php:640
4835
- msgid "CSS Styling"
4836
- msgstr "Règles de style"
4837
-
4838
- #: addons/email-notices/myCRED-addon-email-notices.php:663
4839
- msgid "Site Related"
4840
- msgstr "A propos du site"
4841
-
4842
- #: addons/email-notices/myCRED-addon-email-notices.php:669
4843
- msgid "Your websites title"
4844
- msgstr "Titre de votre site"
4845
-
4846
- #: addons/email-notices/myCRED-addon-email-notices.php:677
4847
- msgid "Your websites address"
4848
- msgstr "Adresse de votre site"
4849
-
4850
- #: addons/email-notices/myCRED-addon-email-notices.php:685
4851
- msgid "Your websites tagline (description)"
4852
- msgstr "Description de votre site"
4853
-
4854
- #: addons/email-notices/myCRED-addon-email-notices.php:693
4855
- msgid "Your websites admin email"
4856
- msgstr "Email de l'administrateur du site"
4857
-
4858
- #: addons/email-notices/myCRED-addon-email-notices.php:701
4859
- msgid "Total number of blog members"
4860
- msgstr "Total des membres de votre blog"
4861
-
4862
- #: addons/email-notices/myCRED-addon-email-notices.php:862
4863
- msgid "users balance changes"
4864
- msgstr "le solde a changé"
4865
-
4866
- #: addons/email-notices/myCRED-addon-email-notices.php:863
4867
- msgid "user gains %_plural%"
4868
- msgstr "gains de %_plural%"
4869
-
4870
- #: addons/email-notices/myCRED-addon-email-notices.php:864
4871
- msgid "user lose %_plural%"
4872
- msgstr "perte de %_plural%"
4873
-
4874
- #: addons/email-notices/myCRED-addon-email-notices.php:865
4875
- msgid "users balance reaches zero"
4876
- msgstr "le solde est à zéro"
4877
-
4878
- #: addons/email-notices/myCRED-addon-email-notices.php:866
4879
- msgid "users balance goes minus"
4880
- msgstr "le solde est négatif"
4881
-
4882
- #: addons/email-notices/myCRED-addon-email-notices.php:880
4883
- msgid "Sell Content Add-on"
4884
- msgstr "Module de vente de contenu"
4885
-
4886
- #: addons/email-notices/myCRED-addon-email-notices.php:881
4887
- msgid "user buys content"
4888
- msgstr "l'utilisateur a acheté du contenu"
4889
-
4890
- #: addons/email-notices/myCRED-addon-email-notices.php:882
4891
- msgid "authors content gets sold"
4892
- msgstr "le contenu de cet auteur a été vendu"
4893
-
4894
- #: addons/email-notices/myCRED-addon-email-notices.php:889
4895
- msgid "buyCREDs Add-on"
4896
- msgstr "Module achatCRED"
4897
-
4898
- #: addons/email-notices/myCRED-addon-email-notices.php:890
4899
- msgid "user buys %_plural%"
4900
- msgstr "l'utilisateur a acheté des %_plural%"
4901
-
4902
- #: addons/email-notices/myCRED-addon-email-notices.php:897
4903
- msgid "Transfer Add-on"
4904
- msgstr "Module de transfert"
4905
-
4906
- #: addons/email-notices/myCRED-addon-email-notices.php:898
4907
- msgid "user sends %_plural%"
4908
- msgstr "l'utilisateur a envoyé des %_plural%"
4909
-
4910
- #: addons/email-notices/myCRED-addon-email-notices.php:899
4911
- msgid "user receives %_plural%"
4912
- msgstr "l'utilisateur a reçu des %_plural%"
4913
-
4914
- #: addons/email-notices/myCRED-addon-email-notices.php:906
4915
- msgid "Ranks Add-on"
4916
- msgstr "Application de classement"
4917
-
4918
- #: addons/email-notices/myCRED-addon-email-notices.php:907
4919
- msgid "user is demoted"
4920
- msgstr "utilisateur rétrogradé"
4921
-
4922
- #: addons/email-notices/myCRED-addon-email-notices.php:908
4923
- msgid "user is promoted"
4924
- msgstr "utilisateur promu"
4925
-
4926
- #: addons/email-notices/myCRED-addon-email-notices.php:1337
4927
- #: addons/coupons/myCRED-addon-coupons.php:112
4928
- msgid "Email Notices"
4929
- msgstr "Messagerie"
4930
-
4931
- #: addons/email-notices/myCRED-addon-email-notices.php:1339
4932
- msgid ""
4933
- "Settings that apply to all email notices and can not be overridden for "
4934
- "individual emails."
4935
- msgstr ""
4936
- "Ces paramètres s'appliquent à toutes les envois par mail et ne peuvent être "
4937
- "appliqués individuellement."
4938
-
4939
- #: addons/email-notices/myCRED-addon-email-notices.php:1340
4940
- msgid "Email Format"
4941
- msgstr "Format des mails"
4942
-
4943
- #: addons/email-notices/myCRED-addon-email-notices.php:1343
4944
- msgid "Plain text emails only."
4945
- msgstr "Format texte uniquement"
4946
-
4947
- #: addons/email-notices/myCRED-addon-email-notices.php:1346
4948
- msgid "HTML or Plain text emails."
4949
- msgstr "Format texte ou HTML"
4950
-
4951
- #: addons/email-notices/myCRED-addon-email-notices.php:1349
4952
- msgid "Filters"
4953
- msgstr "Filtres de recherche"
4954
-
4955
- #: addons/email-notices/myCRED-addon-email-notices.php:1353
4956
- msgid ""
4957
- "Allow WordPress and Third Party Plugins to filter the email subject before "
4958
- "an email is sent."
4959
- msgstr ""
4960
- "Autoriser WordPress et les plugins tiers à filtrer le sujet avant l'envoi "
4961
- "d'un mail."
4962
-
4963
- #: addons/email-notices/myCRED-addon-email-notices.php:1357
4964
- msgid ""
4965
- "Allow WordPress and Third Party Plugins to filter the email content before "
4966
- "an email is sent."
4967
- msgstr ""
4968
- "Autoriser WordPress et les plugins tiers à filtrer le contenu avant l'envoi "
4969
- "d'un mail."
4970
-
4971
- #: addons/email-notices/myCRED-addon-email-notices.php:1363
4972
- #: addons/email-notices/myCRED-addon-email-notices.php:1370
4973
- msgid "Email Schedule"
4974
- msgstr "Email annexe"
4975
-
4976
- #: addons/email-notices/myCRED-addon-email-notices.php:1365
4977
- msgid "WordPress Cron is disabled. Emails will be sent immediately."
4978
- msgstr "Wordpress Con est désactivé. Les emails seront envoyés immédiatement."
4979
-
4980
- #: addons/email-notices/myCRED-addon-email-notices.php:1374
4981
- msgid "Send emails immediately"
4982
- msgstr "Envoie des emails immédiatement."
4983
-
4984
- #: addons/email-notices/myCRED-addon-email-notices.php:1378
4985
- msgid "Send emails once an hour"
4986
- msgstr "Envoie des emails une fois par heure."
4987
-
4988
- #: addons/email-notices/myCRED-addon-email-notices.php:1382
4989
- msgid "Send emails once a day"
4990
- msgstr "Envoie des emails une fois par jour"
4991
-
4992
- #: addons/email-notices/myCRED-addon-email-notices.php:1387
4993
- msgid ""
4994
- "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
4995
- "updates."
4996
- msgstr ""
4997
- "Utiliser le %s shortcode pour permettre aux utilisateurs de s'abonner et se "
4998
- "désabonner par email."
4999
-
5000
- #: addons/email-notices/myCRED-addon-email-notices.php:1392
5001
- msgid "SMTP Override"
5002
- msgstr "Ne pas tenir compte de SMTP"
5003
-
5004
- #: addons/email-notices/myCRED-addon-email-notices.php:1396
5005
- msgid ""
5006
- "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5007
- "use a SMTP plugin for emails."
5008
- msgstr ""
5009
- "SMTP Debug. Activé si vous avez l'expérence issu avec wp_mail(s) ou si vous "
5010
- "utilisez SMTP plugin pour vos mails."
5011
-
5012
- #: addons/email-notices/myCRED-addon-email-notices.php:1399
5013
- msgid ""
5014
- "Default email settings. These settings can be individually overridden when "
5015
- "editing emails."
5016
- msgstr ""
5017
- "Paramètres par défaut des mails. Ils pourront être modifiés individuellement "
5018
- "lors de la modification d'un mail."
5019
-
5020
- #: addons/email-notices/myCRED-addon-email-notices.php:1411
5021
- msgid "Reply-To:"
5022
- msgstr "Adresse de réponse:"
5023
-
5024
- #: addons/email-notices/myCRED-addon-email-notices.php:1415
5025
- msgid "Default Email Content"
5026
- msgstr "Contenu par défaut"
5027
-
5028
- #: addons/email-notices/myCRED-addon-email-notices.php:1419
5029
- msgid "Default email content."
5030
- msgstr "contenu par défaut"
5031
-
5032
- #: addons/email-notices/myCRED-addon-email-notices.php:1422
5033
- msgid "Default Email Styling"
5034
- msgstr "Style par défaut"
5035
-
5036
- #: addons/email-notices/myCRED-addon-email-notices.php:1426
5037
- msgid "Ignored if HTML is not allowed in emails."
5038
- msgstr "Sera ignoré si HTML désactivé pour les mails"
5039
-
5040
- #: addons/email-notices/myCRED-addon-email-notices.php:1523
5041
- msgid "Unsubscribe"
5042
- msgstr "Se désabonner"
5043
-
5044
- #: addons/email-notices/myCRED-addon-email-notices.php:1524
5045
- msgid "Email Notice"
5046
- msgstr "Message à envoyer"
5047
-
5048
- #: addons/email-notices/myCRED-addon-email-notices.php:1545
5049
- msgid "There are no email notifications yet."
5050
- msgstr "Il n'y a pas encore de notifications d'email."
5051
-
5052
- #: addons/email-notices/myCRED-addon-email-notices.php:1552
5053
- #: addons/buy-creds/modules/buycred-module-pending.php:506
5054
- msgid "Save Changes"
5055
- msgstr "Sauvegarder les changements."
5056
-
5057
- #: addons/badges/myCRED-addon-badges.php:148
5058
- #: addons/badges/myCRED-addon-badges.php:154
5059
- #: addons/badges/myCRED-addon-badges.php:160
5060
- #: addons/badges/myCRED-addon-badges.php:295
5061
- #: addons/badges/myCRED-addon-badges.php:296
5062
- #: addons/badges/myCRED-addon-badges.php:1134
5063
- #: addons/badges/myCRED-addon-badges.php:1256
5064
- #: addons/badges/myCRED-addon-badges.php:1259
5065
- msgid "Badges"
5066
- msgstr "Badges"
5067
-
5068
- #: addons/badges/myCRED-addon-badges.php:149
5069
- msgid "Badge"
5070
- msgstr "Badge"
5071
-
5072
- #: addons/badges/myCRED-addon-badges.php:152
5073
- msgid "Edit Badge"
5074
- msgstr "Editer le badge"
5075
-
5076
- #: addons/badges/myCRED-addon-badges.php:153
5077
- msgid "New Badge"
5078
- msgstr "Nouveau badge"
5079
-
5080
- #: addons/badges/myCRED-addon-badges.php:155
5081
- msgid "View Badge"
5082
- msgstr "Voir le badge"
5083
-
5084
- #: addons/badges/myCRED-addon-badges.php:156
5085
- msgid "Search Badge"
5086
- msgstr "Search badge"
5087
-
5088
- #: addons/badges/myCRED-addon-badges.php:157
5089
- msgid "No badges found"
5090
- msgstr "Pas de badges trouvés"
5091
-
5092
- #: addons/badges/myCRED-addon-badges.php:158
5093
- msgid "No badges found in Trash"
5094
- msgstr "Pas de badge trouvés dans la corbeille"
5095
-
5096
- #: addons/badges/myCRED-addon-badges.php:270
5097
- #: addons/badges/myCRED-addon-badges.php:271
5098
- #: addons/badges/myCRED-addon-badges.php:272
5099
- #: addons/badges/myCRED-addon-badges.php:273
5100
- #: addons/badges/myCRED-addon-badges.php:277
5101
- #: addons/badges/myCRED-addon-badges.php:278
5102
- #: addons/badges/myCRED-addon-badges.php:279
5103
- msgid "Badge Updated."
5104
- msgstr "Badge mis à jour."
5105
-
5106
- #: addons/badges/myCRED-addon-badges.php:396
5107
- #: addons/badges/myCRED-addon-badges.php:480
5108
- msgid "Badge Name"
5109
- msgstr "Nom du badge"
5110
-
5111
- #: addons/badges/myCRED-addon-badges.php:397
5112
- msgid "Default Image"
5113
- msgstr "Image par défaut"
5114
-
5115
- #: addons/badges/myCRED-addon-badges.php:399
5116
- msgid "Requirements"
5117
- msgstr "Exigences"
5118
-
5119
- #: addons/badges/myCRED-addon-badges.php:516
5120
- msgid "Badge Image"
5121
- msgstr "Image du badge"
5122
-
5123
- #: addons/badges/myCRED-addon-badges.php:517
5124
- msgid "Use as Badge"
5125
- msgstr ""
5126
- "Utilisez\n"
5127
- " \n"
5128
- "comme\n"
5129
- " \n"
5130
- "Badge"
5131
-
5132
- #: addons/badges/myCRED-addon-badges.php:678
5133
- msgid "Assign Badge"
5134
- msgstr "Assigner un badge"
5135
-
5136
- #: addons/badges/myCRED-addon-badges.php:679
5137
- msgid "Remove Connections"
5138
- msgstr "Supprimer les connexions."
5139
-
5140
- #: addons/badges/myCRED-addon-badges.php:777
5141
- msgid "Time(s)"
5142
- msgstr "Heure(s)"
5143
-
5144
- #: addons/badges/myCRED-addon-badges.php:778
5145
- msgid "In total"
5146
- msgstr "Au total"
5147
-
5148
- #: addons/badges/myCRED-addon-badges.php:1184
5149
- msgid "Include in Forum Replies"
5150
- msgstr "Inclure dans les réponses du forum"
5151
-
5152
- #: addons/badges/myCRED-addon-badges.php:1185
5153
- msgid "Include in Profile and Forum Replies"
5154
- msgstr "Inclure dans les profils et les réponses du forums"
5155
-
5156
- #: addons/badges/myCRED-addon-badges.php:1408
5157
- msgid "No users has yet earned this badge."
5158
- msgstr ""
5159
- "Aucun utilisateur\n"
5160
- " \n"
5161
- "n'a encore\n"
5162
- " \n"
5163
- "gagné\n"
5164
- " \n"
5165
- "ce badge\n"
5166
- "."
5167
-
5168
- #: addons/coupons/myCRED-addon-coupons.php:100
5169
- #: addons/coupons/myCRED-addon-coupons.php:106
5170
- #: addons/coupons/myCRED-addon-coupons.php:168
5171
- #: addons/coupons/myCRED-addon-coupons.php:169
5172
- #: addons/coupons/myCRED-addon-coupons.php:659
5173
- msgid "Coupons"
5174
- msgstr "Promotions"
5175
-
5176
- #: addons/coupons/myCRED-addon-coupons.php:101
5177
- msgid "Coupon"
5178
- msgstr "Promotion"
5179
-
5180
- #: addons/coupons/myCRED-addon-coupons.php:102
5181
- #: addons/coupons/myCRED-addon-coupons.php:103
5182
- msgid "Create New"
5183
- msgstr "Créer une promotion"
5184
-
5185
- #: addons/coupons/myCRED-addon-coupons.php:104
5186
- msgid "Edit Coupon"
5187
- msgstr "Modifier la promo"
5188
-
5189
- #: addons/coupons/myCRED-addon-coupons.php:105
5190
- msgid "New Coupon"
5191
- msgstr "Nouvelle promotion"
5192
-
5193
- #: addons/coupons/myCRED-addon-coupons.php:108
5194
- msgid "Search coupons"
5195
- msgstr "Rechercher une promo"
5196
-
5197
- #: addons/coupons/myCRED-addon-coupons.php:109
5198
- msgid "No coupons found"
5199
- msgstr "Aucune promo trouvée"
5200
-
5201
- #: addons/coupons/myCRED-addon-coupons.php:110
5202
- msgid "No coupons found in Trash"
5203
- msgstr "Aucune promo dans la corbeille"
5204
-
5205
- #: addons/coupons/myCRED-addon-coupons.php:143
5206
- #: addons/coupons/myCRED-addon-coupons.php:144
5207
- #: addons/coupons/myCRED-addon-coupons.php:145
5208
- #: addons/coupons/myCRED-addon-coupons.php:146
5209
- #: addons/coupons/myCRED-addon-coupons.php:149
5210
- #: addons/coupons/myCRED-addon-coupons.php:150
5211
- #: addons/coupons/myCRED-addon-coupons.php:151
5212
- #: addons/coupons/myCRED-addon-coupons.php:152
5213
- msgid "Coupon updated."
5214
- msgstr "Promo mise à jour."
5215
-
5216
- #: addons/coupons/myCRED-addon-coupons.php:148
5217
- msgid "Coupon published."
5218
- msgstr "Promo publiée."
5219
-
5220
- #: addons/coupons/myCRED-addon-coupons.php:230
5221
- #: addons/coupons/myCRED-addon-coupons.php:247
5222
- msgid "Coupon Code"
5223
- msgstr "Code Promo"
5224
-
5225
- #: addons/coupons/myCRED-addon-coupons.php:248
5226
- #: addons/coupons/myCRED-addon-coupons.php:481
5227
- msgid "Value"
5228
- msgstr "Valeur"
5229
-
5230
- #: addons/coupons/myCRED-addon-coupons.php:251
5231
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:188
5232
- msgid "Expires"
5233
- msgstr "Date d'expiration"
5234
-
5235
- #: addons/coupons/myCRED-addon-coupons.php:307
5236
- msgid "Per User"
5237
- msgstr "Par personne"
5238
-
5239
- #: addons/coupons/myCRED-addon-coupons.php:316
5240
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:231
5241
- msgid "Never"
5242
- msgstr "jamais"
5243
-
5244
- #: addons/coupons/myCRED-addon-coupons.php:322
5245
- msgid "Expired"
5246
- msgstr "Expiré"
5247
-
5248
- #: addons/coupons/myCRED-addon-coupons.php:326
5249
- msgid "In %s time"
5250
- msgstr "En %s fois"
5251
-
5252
- #: addons/coupons/myCRED-addon-coupons.php:425
5253
- msgid "Coupon Setup"
5254
- msgstr "Configuration de la Promo"
5255
-
5256
- #: addons/coupons/myCRED-addon-coupons.php:434
5257
- msgid "Coupon Limits"
5258
- msgstr "Limites de la promotion"
5259
-
5260
- #: addons/coupons/myCRED-addon-coupons.php:443
5261
- msgid "Coupon Requirements"
5262
- msgstr "Conditions de la promo"
5263
-
5264
- #: addons/coupons/myCRED-addon-coupons.php:483
5265
- msgid "The amount of %plural% this coupon is worth."
5266
- msgstr "Ce bon vaut %plural%"
5267
-
5268
- #: addons/coupons/myCRED-addon-coupons.php:492
5269
- msgid "Select the point type that this coupon is applied."
5270
- msgstr "Sélectionnez le type de point applicable à ce bon"
5271
-
5272
- #: addons/coupons/myCRED-addon-coupons.php:504
5273
- msgid "Expire"
5274
- msgstr "Expire"
5275
-
5276
- #: addons/coupons/myCRED-addon-coupons.php:506
5277
- msgid ""
5278
- "Optional date when this coupon expires. Expired coupons will be trashed."
5279
- msgstr ""
5280
- "Date d'expiration optionnelle pour ce bon. Les bons échus sont mis à la "
5281
- "corbeille."
5282
-
5283
- #: addons/coupons/myCRED-addon-coupons.php:534
5284
- msgid "Global Maximum"
5285
- msgstr "Maximum global"
5286
-
5287
- #: addons/coupons/myCRED-addon-coupons.php:541
5288
- msgid "User Maximum"
5289
- msgstr "Maximum par utilisateur"
5290
-
5291
- #: addons/coupons/myCRED-addon-coupons.php:543
5292
- msgid "The maximum number of times this coupon can be used by a user."
5293
- msgstr "Le nombre de fois qu'un utilisateur peut utiliser ce bon."
5294
-
5295
- #: addons/coupons/myCRED-addon-coupons.php:574
5296
- #: addons/banking/services/mycred-service-interest.php:499
5297
- msgid "Minimum Balance"
5298
- msgstr "Solde minimum"
5299
-
5300
- #: addons/coupons/myCRED-addon-coupons.php:579
5301
- msgid ""
5302
- "Optional minimum balance a user must have in order to use this coupon. Use "
5303
- "zero to disable."
5304
- msgstr ""
5305
- "Le solde minimum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
5306
- "désactiver l'option."
5307
-
5308
- #: addons/coupons/myCRED-addon-coupons.php:586
5309
- msgid "Maximum Balance"
5310
- msgstr "Solde maximum"
5311
-
5312
- #: addons/coupons/myCRED-addon-coupons.php:591
5313
- msgid ""
5314
- "Optional maximum balance a user can have in order to use this coupon. Use "
5315
- "zero to disable."
5316
- msgstr ""
5317
- "Le solde maximum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
5318
- "désactiver l'option."
5319
-
5320
- #: addons/coupons/myCRED-addon-coupons.php:665
5321
- msgid ""
5322
- "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
5323
- "code."
5324
- msgstr ""
5325
- "Journalisation pour la réussite de rachat de coupon. Utilisez %coupon% pour "
5326
- "afficher le code du bon."
5327
-
5328
- #: addons/coupons/myCRED-addon-coupons.php:668
5329
- msgid "Invalid Coupon Message"
5330
- msgstr "Message de coupon invalide"
5331
-
5332
- #: addons/coupons/myCRED-addon-coupons.php:672
5333
- msgid "Message to show when users try to use a coupon that does not exists."
5334
- msgstr ""
5335
- "Le message à afficher lorsqu'un utilisateur tente d'utiliser un bon "
5336
- "inexistant."
5337
-
5338
- #: addons/coupons/myCRED-addon-coupons.php:675
5339
- msgid "Expired Coupon Message"
5340
- msgstr "Message de coupon échu"
5341
-
5342
- #: addons/coupons/myCRED-addon-coupons.php:679
5343
- msgid "Message to show when users try to use that has expired."
5344
- msgstr ""
5345
- "Le message à afficher lorsqu'un utilisateur tente d'utiliser un bon échu."
5346
-
5347
- #: addons/coupons/myCRED-addon-coupons.php:682
5348
- msgid "User Limit Message"
5349
- msgstr "Message de période d'utilisation"
5350
-
5351
- #: addons/coupons/myCRED-addon-coupons.php:686
5352
- msgid "Message to show when the user limit has been reached for the coupon."
5353
- msgstr ""
5354
- "Le message à afficher lorsqu'un utilisateur a atteint la fin de la période "
5355
- "d'utilisation du bon."
5356
-
5357
- #: addons/coupons/myCRED-addon-coupons.php:689
5358
- msgid "Minimum Balance Message"
5359
- msgstr "Message de solde minimum"
5360
-
5361
- #: addons/coupons/myCRED-addon-coupons.php:693
5362
- msgid ""
5363
- "Message to show when a user does not meet the minimum balance requirement. "
5364
- "(if used)"
5365
- msgstr ""
5366
- "Le message à afficher lorsqu'un utilisateur ne possède pas le solde minimum "
5367
- "requis. (si activé)"
5368
-
5369
- #: addons/coupons/myCRED-addon-coupons.php:696
5370
- msgid "Maximum Balance Message"
5371
- msgstr "Message de solde maximum"
5372
-
5373
- #: addons/coupons/myCRED-addon-coupons.php:700
5374
- msgid ""
5375
- "Message to show when a user does not meet the maximum balance requirement. "
5376
- "(if used)"
5377
- msgstr ""
5378
- "Le message à afficher lorsqu'un utilisateur ne possède pas le solde maximum "
5379
- "requis. (si activé)"
5380
-
5381
- #: addons/coupons/myCRED-addon-coupons.php:703
5382
- msgid "Success Message"
5383
- msgstr "Message d'envoi réussi"
5384
-
5385
- #: addons/coupons/myCRED-addon-coupons.php:707
5386
- msgid ""
5387
- "Message to show when a coupon was successfully deposited to a users account."
5388
- msgstr ""
5389
- "Le message à afficher lorsqu'un bon a été correctement viré sur le compte de "
5390
- "l'utilisateur."
5391
-
5392
- #: addons/sell-content/myCRED-addon-sell-content.php:238
5393
- #: addons/sell-content/myCRED-addon-sell-content.php:241
5394
- #: addons/sell-content/myCRED-addon-sell-content.php:506
5395
- msgid "Profit Share"
5396
- msgstr "Bénéfice partagé"
5397
-
5398
- #: addons/sell-content/myCRED-addon-sell-content.php:365
5399
- #: addons/sell-content/myCRED-addon-sell-content.php:830
5400
- msgid "Sell Content"
5401
- msgstr "Vendre du contenu"
5402
-
5403
- #: addons/sell-content/myCRED-addon-sell-content.php:367
5404
- msgid "Post Types"
5405
- msgstr "Post Types"
5406
-
5407
- #: addons/sell-content/myCRED-addon-sell-content.php:497
5408
- #: addons/sell-content/myCRED-addon-sell-content.php:903
5409
- #: addons/gateway/event-booking/mycred-eventespresso3.php:495
5410
- #: addons/gateway/event-booking/mycred-eventsmanager.php:336
5411
- #: addons/gateway/event-booking/mycred-eventsmanager.php:339
5412
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153
5413
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156
5414
- msgid "Price"
5415
- msgstr "Prix"
5416
-
5417
- #: addons/sell-content/myCRED-addon-sell-content.php:513
5418
- #: addons/sell-content/myCRED-addon-sell-content.php:548
5419
- #: addons/gateway/event-booking/mycred-eventespresso3.php:473
5420
- #: addons/gateway/event-booking/mycred-eventsmanager.php:619
5421
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703
5422
- #: addons/transfer/includes/mycred-transfer-widgets.php:88
5423
- msgid "Button Label"
5424
- msgstr "Intitulé du bouton"
5425
-
5426
- #: addons/banking/services/mycred-service-central.php:117
5427
- msgid "Ignore Manual Adjustments"
5428
- msgstr "Ignorer les ajustements manuels"
5429
-
5430
- #: addons/banking/services/mycred-service-interest.php:28
5431
- msgid "%plural% interest rate payment"
5432
- msgstr "Versement de %_plural% d'intérêts"
5433
-
5434
- #: addons/banking/services/mycred-service-interest.php:481
5435
- #: addons/banking/services/mycred-service-interest.php:652
5436
- msgid "Interest Rate"
5437
- msgstr "Taux d'intérêt"
5438
-
5439
- #: addons/banking/services/mycred-service-interest.php:528
5440
- #: addons/banking/services/mycred-service-interest.php:529
5441
- #: addons/banking/services/mycred-service-payouts.php:791
5442
- msgid "Comma separated list of user IDs"
5443
- msgstr "Séparer les ID des utilisateurs par des virgules"
5444
-
5445
- #: addons/banking/services/mycred-service-payouts.php:573
5446
- msgid "Last Run"
5447
- msgstr "Dernière exécution"
5448
-
5449
- #: addons/banking/services/mycred-service-payouts.php:591
5450
- #: addons/gateway/carts/mycred-wpecommerce.php:396
5451
- msgid "Payout"
5452
- msgstr "Paiement"
5453
-
5454
- #: addons/banking/includes/mycred-banking-functions.php:79
5455
- msgid "Hourly"
5456
- msgstr "Horaire"
5457
-
5458
- #: addons/banking/includes/mycred-banking-functions.php:84
5459
- msgid "Daily"
5460
- msgstr "Quotidienne"
5461
-
5462
- #: addons/banking/includes/mycred-banking-functions.php:89
5463
- msgid "Weekly"
5464
- msgstr "Hebdomadaire"
5465
-
5466
- #: addons/banking/includes/mycred-banking-functions.php:94
5467
- msgid "Monthly"
5468
- msgstr "Mensuel"
5469
-
5470
- #: addons/banking/includes/mycred-banking-functions.php:99
5471
- msgid "Quarterly"
5472
- msgstr "Trimestrielle"
5473
-
5474
- #: addons/banking/includes/mycred-banking-functions.php:104
5475
- msgid "Semiannually"
5476
- msgstr "Biannuelle"
5477
-
5478
- #: addons/banking/includes/mycred-banking-functions.php:109
5479
- msgid "Annually"
5480
- msgstr "Annuelle"
5481
-
5482
- #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5483
- #: addons/gateway/event-booking/mycred-eventsmanager.php:540
5484
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626
5485
- #: addons/buy-creds/modules/buycred-module-core.php:673
5486
- msgid "Payments"
5487
- msgstr "Paiements"
5488
-
5489
- #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5490
- #: addons/gateway/event-booking/mycred-eventsmanager.php:35
5491
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
5492
- #: addons/buy-creds/modules/buycred-module-pending.php:733
5493
- msgid "Pay Now"
5494
- msgstr "Payer maintenant"
5495
-
5496
- #: addons/gateway/event-booking/mycred-eventespresso3.php:32
5497
- msgid "Payment for Event Registration"
5498
- msgstr "Paiement pour l'enregistrement d'un événement"
5499
-
5500
- #: addons/gateway/event-booking/mycred-eventespresso3.php:311
5501
- #: addons/gateway/event-booking/mycred-eventespresso3.php:336
5502
- #: addons/gateway/event-booking/mycred-eventsmanager.php:416
5503
- #: addons/gateway/carts/mycred-wpecommerce.php:120
5504
- msgid "Total Cost"
5505
- msgstr "Coût total"
5506
-
5507
- #: addons/gateway/event-booking/mycred-eventespresso3.php:315
5508
- #: addons/gateway/event-booking/mycred-eventespresso3.php:340
5509
- msgid "Balance After Purchase"
5510
- msgstr "Solde après achats"
5511
-
5512
- #: addons/gateway/event-booking/mycred-eventespresso3.php:380
5513
- msgid "Activate %s"
5514
- msgstr "Activer %s"
5515
-
5516
- #: addons/gateway/event-booking/mycred-eventespresso3.php:389
5517
- msgid "Deactivate %s"
5518
- msgstr "Désactiver %s"
5519
-
5520
- #: addons/gateway/event-booking/mycred-eventespresso3.php:402
5521
- msgid "Gateway Settings"
5522
- msgstr "Configuration du service de paiement"
5523
-
5524
- #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5525
- #: addons/gateway/event-booking/mycred-eventsmanager.php:524
5526
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
5527
- msgid "How many %s is 1 %s worth?"
5528
- msgstr "Combien de %s vaut 1 %s ?"
5529
-
5530
- #: addons/gateway/event-booking/mycred-eventespresso3.php:463
5531
- msgid "Gateway Title"
5532
- msgstr "Aucun service de paiement n'est installé."
5533
-
5534
- #: addons/gateway/event-booking/mycred-eventespresso3.php:465
5535
- msgid "Title to show on Payment page"
5536
- msgstr "Titre à afficher sur la page de paiement"
5537
-
5538
- #: addons/gateway/event-booking/mycred-eventespresso3.php:468
5539
- msgid "Payment Type"
5540
- msgstr "Type de Paiement"
5541
-
5542
- #: addons/gateway/event-booking/mycred-eventespresso3.php:470
5543
- msgid "Title to show on receipts and logs"
5544
- msgstr "Titre à afficher pour les rapports et les journaux d'activités"
5545
-
5546
- #: addons/gateway/event-booking/mycred-eventespresso3.php:475
5547
- msgid "Pay Button"
5548
- msgstr "Bouton de paiement"
5549
-
5550
- #: addons/gateway/event-booking/mycred-eventespresso3.php:503
5551
- msgid "Important!"
5552
- msgstr "Important !"
5553
-
5554
- #: addons/gateway/event-booking/mycred-eventespresso3.php:505
5555
- msgid ""
5556
- "You can disable purchases using this gateway by adding a custom Event Meta: "
5557
- "<code>mycred_no_sale</code>"
5558
- msgstr ""
5559
- "Vous pouvez désactiver les achats avec ce service en ajoutant ce code "
5560
- "personnalisé: <code>mycred_no_sale</code>"
5561
-
5562
- #: addons/gateway/event-booking/mycred-eventespresso3.php:506
5563
- msgid "Users must be logged in to use this gateway!"
5564
- msgstr "Vous devez vous connecter pour utiliser ce service !"
5565
-
5566
- #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5567
- #: addons/gateway/event-booking/mycred-eventsmanager.php:569
5568
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641
5569
- #: addons/gateway/carts/mycred-wpecommerce.php:393
5570
- #: addons/gateway/carts/mycred-woocommerce.php:168
5571
- msgid "Profit Sharing"
5572
- msgstr "Partage de bénéfice"
5573
-
5574
- #: addons/gateway/event-booking/mycred-eventespresso3.php:512
5575
- #: addons/gateway/event-booking/mycred-eventsmanager.php:572
5576
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644
5577
- #: addons/gateway/carts/mycred-wpecommerce.php:397
5578
- #: addons/gateway/carts/mycred-woocommerce.php:170
5579
- msgid "Option to share sales with the product owner. Use zero to disable."
5580
- msgstr ""
5581
- "Option de partage des ventes avec le propriétaire du produit. Indiquez zéro "
5582
- "pour désactiver l'option."
5583
-
5584
- #: addons/gateway/event-booking/mycred-eventespresso3.php:528
5585
- msgid "Solvent users"
5586
- msgstr "Utilisateurs solvables"
5587
-
5588
- #: addons/gateway/event-booking/mycred-eventespresso3.php:530
5589
- msgid ""
5590
- "Message to show users on the payment page before they are charged. Leave "
5591
- "empty to hide."
5592
- msgstr ""
5593
- "Message à afficher sur la page de paiement avant que l'utilisateur ne soit "
5594
- "débité. Laissez vide pour ne rien afficher."
5595
-
5596
- #: addons/gateway/event-booking/mycred-eventespresso3.php:533
5597
- msgid "Insolvent users"
5598
- msgstr "Utilisateurs insolvables"
5599
-
5600
- #: addons/gateway/event-booking/mycred-eventespresso3.php:535
5601
- msgid "Message to show users who do not have enough points to pay."
5602
- msgstr ""
5603
- "Message à afficher aux membres n'ayant pas suffisamment de points pour payer."
5604
-
5605
- #: addons/gateway/event-booking/mycred-eventespresso3.php:540
5606
- msgid "Message to show visitors (users not logged in) on the payment page."
5607
- msgstr ""
5608
- "Message à afficher aux visiteurs non connectés sur la page de paiement."
5609
-
5610
- #: addons/gateway/event-booking/mycred-eventsmanager.php:29
5611
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
5612
- msgid "Payment for tickets to %link_with_title%"
5613
- msgstr "tickets de Paiement vers %link_with_title%"
5614
-
5615
- #: addons/gateway/event-booking/mycred-eventsmanager.php:30
5616
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
5617
- msgid "Ticket refund for %link_with_title%"
5618
- msgstr "Ticket de Remboursement vers %link_with_title%"
5619
-
5620
- #: addons/gateway/event-booking/mycred-eventsmanager.php:34
5621
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
5622
- msgid "Pay using your %_plural% balance"
5623
- msgstr "Payez avec votre solde de %_plural%"
5624
-
5625
- #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5626
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
5627
- msgid "Pay"
5628
- msgstr "Payer"
5629
-
5630
- #: addons/gateway/event-booking/mycred-eventsmanager.php:39
5631
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
5632
- msgid "Thank you for your payment!"
5633
- msgstr "Merci pour votre paiement !"
5634
-
5635
- #: addons/gateway/event-booking/mycred-eventsmanager.php:40
5636
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
5637
- msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5638
- msgstr ""
5639
- "Désolé mais vous ne pouvez pas payer pour ces tickets à l'aide de %_plural%"
5640
-
5641
- #: addons/gateway/event-booking/mycred-eventsmanager.php:333
5642
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
5643
- msgid "Ticket Type"
5644
- msgstr "Type de ticket"
5645
-
5646
- #: addons/gateway/event-booking/mycred-eventsmanager.php:342
5647
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
5648
- msgid "Spaces"
5649
- msgstr "Espaces"
5650
-
5651
- #: addons/gateway/event-booking/mycred-eventsmanager.php:420
5652
- msgid "Balance After Payment"
5653
- msgstr "Solde après paiement"
5654
-
5655
- #: addons/gateway/event-booking/mycred-eventsmanager.php:532
5656
- msgid "Click to toggle"
5657
- msgstr "Cliquez pour basculer"
5658
-
5659
- #: addons/gateway/event-booking/mycred-eventsmanager.php:533
5660
- msgid "%s Payments"
5661
- msgstr "%s Paiements"
5662
-
5663
- #: addons/gateway/event-booking/mycred-eventsmanager.php:542
5664
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
5665
- msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5666
- msgstr ""
5667
- "Désactivé - les utilisateurs NE PEUVENT PAS régler de tickets avec leurs "
5668
- "%_plural%."
5669
-
5670
- #: addons/gateway/event-booking/mycred-eventsmanager.php:543
5671
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
5672
- msgid "Single - Users can ONLY pay for tickets using %plural%."
5673
- msgstr ""
5674
- "Unique - les utilisateurs PEUVENT SEULEMENT payer des tickets avec leurs "
5675
- "%_plural%"
5676
-
5677
- #: addons/gateway/event-booking/mycred-eventsmanager.php:544
5678
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
5679
- msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5680
- msgstr ""
5681
- "Multi - les utilisateurs peuvent payer leurs tickets avec d'autres services "
5682
- "ou avec leurs %_plural%"
5683
-
5684
- #: addons/gateway/event-booking/mycred-eventsmanager.php:562
5685
- #: addons/gateway/event-booking/mycred-eventsmanager.php:595
5686
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634
5687
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
5688
- msgid "Refunds"
5689
- msgstr "Remboursements"
5690
-
5691
- #: addons/gateway/event-booking/mycred-eventsmanager.php:565
5692
- msgid ""
5693
- "The percentage of the paid amount to refund if a booking gets cancelled. Use "
5694
- "zero for no refunds. No refunds are given to \"Rejected\" bookings."
5695
- msgstr ""
5696
- "Le pourcentage du montant à rembourser en cas d'annulation de commande. "
5697
- "Mettez zéro pour ne rien rembourser. Aucun remboursement n'est attribué aux "
5698
- "commandes \"Rejetées\"."
5699
-
5700
- #: addons/gateway/event-booking/mycred-eventsmanager.php:585
5701
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
5702
- msgid "Log Templates"
5703
- msgstr "Textes à afficher"
5704
-
5705
- #: addons/gateway/event-booking/mycred-eventsmanager.php:588
5706
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
5707
- msgid "Purchases"
5708
- msgstr "Achats"
5709
-
5710
- #: addons/gateway/event-booking/mycred-eventsmanager.php:605
5711
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
5712
- msgid "Payment Link Label"
5713
- msgstr "Intitulé du lien de paiement"
5714
-
5715
- #: addons/gateway/event-booking/mycred-eventsmanager.php:608
5716
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
5717
- msgid ""
5718
- "The payment link shows / hides the payment form under \"My Bookings\". No "
5719
- "HTML allowed."
5720
- msgstr ""
5721
- "Le lien pour afficher/masquer le formulaire de paiement sous \"Mes "
5722
- "commandes\". HTML interdit."
5723
-
5724
- #: addons/gateway/event-booking/mycred-eventsmanager.php:612
5725
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
5726
- msgid "Payment Header"
5727
- msgstr "En-tête de la page de paiement"
5728
-
5729
- #: addons/gateway/event-booking/mycred-eventsmanager.php:615
5730
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
5731
- msgid "Shown on top of the payment form. No HTML allowed."
5732
- msgstr "Sera affiché au-dessus du formulaire de paiement. HTML interdit."
5733
-
5734
- #: addons/gateway/event-booking/mycred-eventsmanager.php:622
5735
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
5736
- msgid "The button label for payments. No HTML allowed!"
5737
- msgstr "Intitulé du bouton de paiement. HTML interdit !"
5738
-
5739
- #: addons/gateway/event-booking/mycred-eventsmanager.php:626
5740
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717
5741
- #: addons/gateway/carts/mycred-wpecommerce.php:404
5742
- msgid "Messages"
5743
- msgstr "Messages"
5744
-
5745
- #: addons/gateway/event-booking/mycred-eventsmanager.php:629
5746
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
5747
- msgid "Successful Payments"
5748
- msgstr "Paiements réussis"
5749
-
5750
- #: addons/gateway/event-booking/mycred-eventsmanager.php:632
5751
- #: addons/gateway/event-booking/mycred-eventsmanager.php:639
5752
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723
5753
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
5754
- msgid "No HTML allowed!"
5755
- msgstr "Le HTML n'est pas autorisé !"
5756
-
5757
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
5758
- msgid "%plural% Cost"
5759
- msgstr "%plural% Coût"
5760
-
5761
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
5762
- msgid "Your Balance"
5763
- msgstr "Votre solde"
5764
-
5765
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
5766
- msgid "You can not pay using this gateway."
5767
- msgstr "Vous ne pouvez pas payer à l'aide de ce système de paiement."
5768
-
5769
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
5770
- msgid "Reject"
5771
- msgstr "Rejeter"
5772
-
5773
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
5774
- msgid "Edit/View"
5775
- msgstr "Modifier/Aperçu"
5776
-
5777
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
5778
- msgid ""
5779
- "The percentage of the paid amount to refund if a user cancels their booking. "
5780
- "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
5781
- msgstr ""
5782
- "Le pourcentage de la somme versée à rembourser quand un utilisateur annule "
5783
- "une réservation. Indiquez zéro pour aucun remboursement. Aucun remboursement "
5784
- "n'est effectué pour les réservations \"Rejetées\" !"
5785
-
5786
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
5787
- msgid "Cart & Checkout Cost"
5788
- msgstr "Panier & passer commande du coût."
5789
-
5790
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
5791
- msgid "Label for cost in %plural%"
5792
- msgstr "Label du coût dans %plural%"
5793
-
5794
- #: addons/gateway/carts/mycred-wpecommerce.php:20
5795
- msgid "Payment for Order: #%order_id%"
5796
- msgstr "R&egrave;glement de la commande: #%order_id%"
5797
-
5798
- #: addons/gateway/carts/mycred-wpecommerce.php:23
5799
- msgid "Store sale"
5800
- msgstr "Magasin de vente"
5801
-
5802
- #: addons/gateway/carts/mycred-wpecommerce.php:25
5803
- msgid "You must be logged in to use this gateway"
5804
- msgstr "Vous devez vous connecter pour utiliser ce système de paiement"
5805
-
5806
- #: addons/gateway/carts/mycred-wpecommerce.php:26
5807
- msgid "Insufficient Funds."
5808
- msgstr "Fonds insuffisants"
5809
-
5810
- #: addons/gateway/carts/mycred-wpecommerce.php:27
5811
- msgid "Deduct the amount from your balance."
5812
- msgstr "Déduire le montant de votre solde."
5813
-
5814
- #: addons/gateway/carts/mycred-wpecommerce.php:107
5815
- #: addons/buy-creds/gateways/bank-transfer.php:110
5816
- msgid "Item"
5817
- msgstr "Intitulé"
5818
-
5819
- #: addons/gateway/carts/mycred-wpecommerce.php:128
5820
- #: addons/gateway/carts/mycred-woocommerce.php:756
5821
- msgid "Your current balance"
5822
- msgstr "Votre solde actuel"
5823
-
5824
- #: addons/gateway/carts/mycred-wpecommerce.php:202
5825
- msgid "You can not use this gateway."
5826
- msgstr "Vous ne pouvez pas utiliser ce système de paiement."
5827
-
5828
- #: addons/gateway/carts/mycred-wpecommerce.php:373
5829
- msgid "Log Template for Payments"
5830
- msgstr "Template de paiements"
5831
-
5832
- #: addons/gateway/carts/mycred-wpecommerce.php:390
5833
- msgid "How much is 1 %s worth in %s"
5834
- msgstr "Combien vaut 1 %s dans %s"
5835
-
5836
- #: addons/gateway/carts/mycred-wpecommerce.php:407
5837
- msgid "Instructions"
5838
- msgstr "Instructions"
5839
-
5840
- #: addons/gateway/carts/mycred-wpecommerce.php:408
5841
- msgid ""
5842
- "Optional instructions to show users when selecting this gateway. Leave empty "
5843
- "to hide."
5844
- msgstr ""
5845
- "Informations additionnelles à afficher quand l'utilisateur sélectionne ce "
5846
- "système de paiement. Laissez vide pour ne rien afficher."
5847
-
5848
- #: addons/gateway/carts/mycred-wpecommerce.php:412
5849
- msgid "Message to show visitors who are not logged in."
5850
- msgstr "Message à afficher lorsque l'utilisateur n'est pas connecté."
5851
-
5852
- #: addons/gateway/carts/mycred-wpecommerce.php:416
5853
- msgid ""
5854
- "Message to show when users does not have enough %plural% to pay using this "
5855
- "gateway."
5856
- msgstr ""
5857
- "Message à afficher lorsque l'utilisateur n'a pas suffisamment de %plural% "
5858
- "pour payer avec ce système de paiement."
5859
-
5860
- #: addons/gateway/carts/mycred-woocommerce.php:30
5861
- msgid "Let users pay using their myCRED balance."
5862
- msgstr "Laisser les utilisateurs payer à partir de leur relevé myCRED"
5863
-
5864
- #: addons/gateway/carts/mycred-woocommerce.php:84
5865
- msgid "Enable/Disable"
5866
- msgstr "Activer/Désactiver"
5867
-
5868
- #: addons/gateway/carts/mycred-woocommerce.php:86
5869
- msgid "Enable myCRED Payment"
5870
- msgstr "Activer le paiement myCRED"
5871
-
5872
- #: addons/gateway/carts/mycred-woocommerce.php:88
5873
- msgid ""
5874
- "Users who are not logged in or excluded from using myCRED will not have "
5875
- "access to this gateway!"
5876
- msgstr ""
5877
- "Les utilisateurs qui ne sont pas connectés ou qui sont exclus de myCRED "
5878
- "n'auront pas accès à ce service de paiement !"
5879
-
5880
- #: addons/gateway/carts/mycred-woocommerce.php:93
5881
- msgid "Title to show for this payment option."
5882
- msgstr "Titre à afficher pour cette option de paiement"
5883
-
5884
- #: addons/gateway/carts/mycred-woocommerce.php:94
5885
- msgid "Pay with myCRED"
5886
- msgstr "Payer avec myCRED"
5887
-
5888
- #: addons/gateway/carts/mycred-woocommerce.php:98
5889
- msgid "Customer Message"
5890
- msgstr "Message au client"
5891
-
5892
- #: addons/gateway/carts/mycred-woocommerce.php:109
5893
- #: addons/gateway/carts/mycred-woocommerce.php:181
5894
- msgid "Refund Log Template"
5895
- msgstr "Remboursement par template de connexion"
5896
-
5897
- #: addons/gateway/carts/mycred-woocommerce.php:121
5898
- msgid "Select the point type users can use to pay."
5899
- msgstr ""
5900
- "Sélectionnez le type de point avec lequel les utilisateurs pourront régler"
5901
-
5902
- #: addons/gateway/carts/mycred-woocommerce.php:135
5903
- msgid "How much is 1 %_singular% worth in %currency%?"
5904
- msgstr "Combien vaut 1 %_singular% en %currency% ?"
5905
-
5906
- #: addons/gateway/carts/mycred-woocommerce.php:147
5907
- msgid "Show Total"
5908
- msgstr "Afficher le total"
5909
-
5910
- #: addons/gateway/carts/mycred-woocommerce.php:149
5911
- msgid "Show the final price in %_plural% ."
5912
- msgstr "Afficher le prix final en %_plural% ."
5913
-
5914
- #: addons/gateway/carts/mycred-woocommerce.php:152
5915
- msgid "Show in Cart"
5916
- msgstr "Afficher avec le panier"
5917
-
5918
- #: addons/gateway/carts/mycred-woocommerce.php:153
5919
- msgid "Show on Checkout Page"
5920
- msgstr "Afficher sur la page de contrôle d'achats"
5921
-
5922
- #: addons/gateway/carts/mycred-woocommerce.php:154
5923
- msgid "Show in Cart and on Checkout Page"
5924
- msgstr "Afficher avec le panier et sur la page de contrôle"
5925
-
5926
- #: addons/gateway/carts/mycred-woocommerce.php:161
5927
- msgid "Order Total in %_plural%"
5928
- msgstr "Commande totale en %_plural%"
5929
-
5930
- #: addons/gateway/carts/mycred-woocommerce.php:177
5931
- msgid "Log entry template for profit sharing."
5932
- msgstr "Template de connexion pour les bénéfices partagés"
5933
-
5934
- #: addons/gateway/carts/mycred-woocommerce.php:183
5935
- msgid "Log entry template for refunds of profit shares."
5936
- msgstr ""
5937
- "Connecter le Template entré pour les remboursements des parts bénéficiaires."
5938
-
5939
- #: addons/gateway/carts/mycred-woocommerce.php:213
5940
- msgid "myCRED Payment"
5941
- msgstr "Paiement myCRED"
5942
-
5943
- #: addons/gateway/carts/mycred-woocommerce.php:237
5944
- msgid "You must be logged in to pay with %_plural%"
5945
- msgstr "Vous devez être connecté pour payer avec %_plural%"
5946
-
5947
- #: addons/gateway/carts/mycred-woocommerce.php:245
5948
- msgid "You can not use this gateway. Please try a different payment option."
5949
- msgstr ""
5950
- "Vous ne pouvez pas utiliser ce service. Veuillez essayer une autre option de "
5951
- "règlement."
5952
-
5953
- #: addons/gateway/carts/mycred-woocommerce.php:262
5954
- #: addons/sell-content/includes/mycred-sell-functions.php:511
5955
- msgid "Insufficient funds."
5956
- msgstr "Fonds insuffisant."
5957
-
5958
- #: addons/gateway/carts/mycred-woocommerce.php:414
5959
- msgid "Your account has successfully been charged."
5960
- msgstr "Votre compte a été débité avec succès."
5961
-
5962
- #: addons/transfer/includes/mycred-transfer-widgets.php:19
5963
- msgid "(%s) Transfer"
5964
- msgstr "(%s) Transfert"
5965
-
5966
- #: addons/transfer/includes/mycred-transfer-widgets.php:22
5967
- msgid "Allow transfers between users."
5968
- msgstr "Autoriser les transferts entre utilisateurs"
5969
-
5970
- #: addons/transfer/includes/mycred-transfer-widgets.php:82
5971
- msgid "Show users balance"
5972
- msgstr "Afficher le relevé de l'utilisateur"
5973
-
5974
- #: addons/transfer/includes/mycred-transfer-widgets.php:85
5975
- msgid "Show users limit"
5976
- msgstr "Afficher la limite des membres"
5977
-
5978
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:156
5979
- msgid "username"
5980
- msgstr "nom d'utilisateur"
5981
-
5982
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:159
5983
- msgid "email"
5984
- msgstr "email"
5985
-
5986
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:161
5987
- msgid "recipients %s"
5988
- msgstr "destinataires %s"
5989
-
5990
- #: addons/ranks/includes/mycred-rank-shortcodes.php:128
5991
- #: addons/ranks/includes/mycred-rank-shortcodes.php:211
5992
- msgid "No users found with this rank"
5993
- msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
5994
-
5995
- #: addons/ranks/includes/mycred-rank-shortcodes.php:135
5996
- msgid "Rank ID is required!"
5997
- msgstr "L&#39;ID du classement est obligatoire !"
5998
-
5999
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:103
6000
- msgid "Hooks"
6001
- msgstr "Plugins"
6002
-
6003
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:187
6004
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
6005
- #: addons/buy-creds/modules/buycred-module-pending.php:290
6006
- #: addons/buy-creds/modules/buycred-module-pending.php:637
6007
- #: addons/buy-creds/modules/buycred-module-pending.php:750
6008
- #: addons/buy-creds/gateways/bank-transfer.php:112
6009
- msgid "Cost"
6010
- msgstr "Prix"
6011
-
6012
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:163
6013
- msgid "Select currency"
6014
- msgstr "S&eacute;lectionnez une devise"
6015
-
6016
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:445
6017
- #: addons/buy-creds/gateways/bank-transfer.php:96
6018
- msgid "Test Payment"
6019
- msgstr "Paiement de test"
6020
-
6021
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:451
6022
- #: addons/buy-creds/gateways/bank-transfer.php:100
6023
- msgid "Payment"
6024
- msgstr "Paiement"
6025
-
6026
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:685
6027
- #: addons/buy-creds/gateways/bank-transfer.php:118
6028
- msgid "%s Purchase"
6029
- msgstr "%s Achat"
6030
-
6031
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:786
6032
- msgid "Continue to %s"
6033
- msgstr "Continuer vers %s"
6034
-
6035
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
6036
- #: addons/buy-creds/gateways/bitpay.php:225
6037
- msgid "Click here if you are not automatically redirected"
6038
- msgstr "Cliquez ici si vous n'êtes pas automatiquement redirigé"
6039
-
6040
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
6041
- msgid "January"
6042
- msgstr "Janvier"
6043
-
6044
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1502
6045
- msgid "February"
6046
- msgstr "Février"
6047
-
6048
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1503
6049
- msgid "March"
6050
- msgstr "Mars"
6051
-
6052
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1504
6053
- msgid "April"
6054
- msgstr "Avril"
6055
-
6056
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1505
6057
- msgid "May"
6058
- msgstr "Mai"
6059
-
6060
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1506
6061
- msgid "June"
6062
- msgstr "Juin"
6063
-
6064
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1507
6065
- msgid "July"
6066
- msgstr "Juillet"
6067
-
6068
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1508
6069
- msgid "August"
6070
- msgstr "Août"
6071
-
6072
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1509
6073
- msgid "September"
6074
- msgstr "Septembre"
6075
-
6076
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1510
6077
- msgid "October"
6078
- msgstr "Octobre"
6079
-
6080
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1511
6081
- msgid "November"
6082
- msgstr "Novembre"
6083
-
6084
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1512
6085
- msgid "December"
6086
- msgstr "Décembre"
6087
-
6088
- #: addons/buy-creds/modules/buycred-module-pending.php:158
6089
- msgctxt "Post Type General Name"
6090
- msgid "Pending Payments"
6091
- msgstr "Paiements en attente"
6092
-
6093
- #: addons/buy-creds/modules/buycred-module-pending.php:159
6094
- msgctxt "Post Type Singular Name"
6095
- msgid "Pending Payment"
6096
- msgstr "En attente de paiement"
6097
-
6098
- #: addons/buy-creds/modules/buycred-module-pending.php:160
6099
- #: addons/buy-creds/modules/buycred-module-pending.php:162
6100
- #: addons/buy-creds/modules/buycred-module-pending.php:252
6101
- #: addons/buy-creds/modules/buycred-module-pending.php:253
6102
- msgid "Pending Payments"
6103
- msgstr "Paiements en attente"
6104
-
6105
- #: addons/buy-creds/modules/buycred-module-pending.php:166
6106
- msgid "Edit Pending Payment"
6107
- msgstr ""
6108
- "Modifier\n"
6109
- " \n"
6110
- "les attentes de paiement"
6111
-
6112
- #: addons/buy-creds/modules/buycred-module-pending.php:169
6113
- #: addons/buy-creds/modules/buycred-module-pending.php:170
6114
- msgid "Not found in Trash"
6115
- msgstr "Pas trouvé dans la corbeille"
6116
-
6117
- #: addons/buy-creds/modules/buycred-module-pending.php:286
6118
- #: addons/buy-creds/modules/buycred-module-pending.php:747
6119
- #: addons/buy-creds/modules/buycred-module-core.php:755
6120
- #: addons/buy-creds/gateways/bank-transfer.php:113
6121
- msgid "Transaction ID"
6122
- msgstr "ID de la transaction"
6123
-
6124
- #: addons/buy-creds/modules/buycred-module-pending.php:288
6125
- #: addons/buy-creds/modules/buycred-module-core.php:751
6126
- msgid "Buyer"
6127
- msgstr "Acheteur"
6128
-
6129
- #: addons/buy-creds/modules/buycred-module-pending.php:291
6130
- #: addons/buy-creds/modules/buycred-module-pending.php:612
6131
- #: addons/buy-creds/modules/buycred-module-pending.php:748
6132
- #: addons/buy-creds/modules/buycred-module-core.php:750
6133
- #: addons/buy-creds/includes/buycred-functions.php:119
6134
- msgid "Gateway"
6135
- msgstr "Service"
6136
-
6137
- #: addons/buy-creds/modules/buycred-module-pending.php:292
6138
- msgid "Type"
6139
- msgstr "Type"
6140
-
6141
- #: addons/buy-creds/modules/buycred-module-pending.php:389
6142
- #: addons/buy-creds/modules/buycred-module-pending.php:494
6143
- msgid "Pay Out"
6144
- msgstr "Versement"
6145
-
6146
- #: addons/buy-creds/modules/buycred-module-pending.php:489
6147
- msgid "Save"
6148
- msgstr "Enregistrer"
6149
-
6150
- #: addons/buy-creds/modules/buycred-module-pending.php:643
6151
- #: addons/buy-creds/gateways/bank-transfer.php:180
6152
- #: addons/buy-creds/gateways/bitpay.php:251
6153
- #: addons/buy-creds/gateways/paypal-standard.php:279
6154
- #: addons/buy-creds/gateways/skrill.php:294
6155
- msgid "Currency"
6156
- msgstr "Devise"
6157
-
6158
- #: addons/buy-creds/modules/buycred-module-pending.php:814
6159
- msgid "No pending payments found"
6160
- msgstr "Pas d'attente de paiements trouvés"
6161
-
6162
- #: addons/buy-creds/modules/buycred-module-core.php:28
6163
- #: addons/buy-creds/modules/buycred-module-core.php:29
6164
- #: addons/buy-creds/modules/buycred-module-core.php:30
6165
- msgid "Payment Gateways"
6166
- msgstr "Services de paiement"
6167
-
6168
- #: addons/buy-creds/modules/buycred-module-core.php:297
6169
- msgid "Please login to purchase %_plural%"
6170
- msgstr "Veuillez vous connecter pour acquérir des %_plural%"
6171
-
6172
- #: addons/buy-creds/modules/buycred-module-core.php:312
6173
- msgid "Gift purchase from %display_name%."
6174
- msgstr "Achat de cadeau par %display_name%."
6175
-
6176
- #: addons/buy-creds/modules/buycred-module-core.php:331
6177
- msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6178
- msgstr ""
6179
- "Nombre minimum de %_plural% qu&#39;un membre peut acheter. 1 par défaut !"
6180
-
6181
- #: addons/buy-creds/modules/buycred-module-core.php:339
6182
- msgid ""
6183
- "Select the point types that users can buy. You must select at least one!"
6184
- msgstr ""
6185
- "Sélectionner les types de point que les utilisateurs peuvent acheter. Vous "
6186
- "devez en sélectionner au moins une!"
6187
-
6188
- #: addons/buy-creds/modules/buycred-module-core.php:350
6189
- msgid "Login Template"
6190
- msgstr "Template de connexion"
6191
-
6192
- #: addons/buy-creds/modules/buycred-module-core.php:354
6193
- msgid "Content to show when a user is not logged in."
6194
- msgstr "Contenu à afficher quand un utilisateur n'est pas connecté."
6195
-
6196
- #: addons/buy-creds/modules/buycred-module-core.php:364
6197
- msgid "Thank You Page"
6198
- msgstr "Page de remerciement"
6199
-
6200
- #: addons/buy-creds/modules/buycred-module-core.php:367
6201
- #: addons/buy-creds/modules/buycred-module-core.php:390
6202
- msgid "Custom URL"
6203
- msgstr "URL personnalisée"
6204
-
6205
- #: addons/buy-creds/modules/buycred-module-core.php:372
6206
- #: addons/buy-creds/modules/buycred-module-core.php:395
6207
- msgid "Page"
6208
- msgstr "Page"
6209
-
6210
- #: addons/buy-creds/modules/buycred-module-core.php:387
6211
- msgid "Cancellation Page"
6212
- msgstr "Page d'annulation"
6213
-
6214
- #: addons/buy-creds/modules/buycred-module-core.php:410
6215
- #: addons/buy-creds/modules/buycred-module-core.php:511
6216
- #: addons/buy-creds/modules/buycred-module-core.php:762
6217
- msgid "Purchase Log"
6218
- msgstr "Journal d'achat"
6219
-
6220
- #: addons/buy-creds/modules/buycred-module-core.php:412
6221
- msgid "Show seperate log for %_plural% purchases."
6222
- msgstr "Afficher des journaux séparés pour l'achat de %_plural%"
6223
-
6224
- #: addons/buy-creds/modules/buycred-module-core.php:414
6225
- msgid "Gifting"
6226
- msgstr "Remise de cadeaux"
6227
-
6228
- #: addons/buy-creds/modules/buycred-module-core.php:416
6229
- msgid "Allow users to buy %_plural% for other users."
6230
- msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
6231
-
6232
- #: addons/buy-creds/modules/buycred-module-core.php:417
6233
- msgid "Allow users to buy %_plural% for content authors."
6234
- msgstr ""
6235
- "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
6236
-
6237
- #: addons/buy-creds/modules/buycred-module-core.php:425
6238
- msgid "Available Shortcodes"
6239
- msgstr "Shortcodes disponibles"
6240
-
6241
- #: addons/buy-creds/modules/buycred-module-core.php:510
6242
- msgid "buyCRED Purchase Log"
6243
- msgstr "Journal d'achat buyCRED"
6244
-
6245
- #: addons/buy-creds/modules/buycred-module-core.php:555
6246
- msgid "%s Payment Gateways"
6247
- msgstr "%s Services de Paiements"
6248
-
6249
- #: addons/buy-creds/modules/buycred-module-core.php:590
6250
- msgid "Sandbox Mode"
6251
- msgstr "Mode bac à sable"
6252
-
6253
- #: addons/buy-creds/modules/buycred-module-core.php:593
6254
- msgid "Enable for test purchases."
6255
- msgstr "Activez pour faire des tests d'achats factices."
6256
-
6257
- #: addons/buy-creds/modules/buycred-module-core.php:613
6258
- msgid "More Gateways"
6259
- msgstr "Plus d'entrés"
6260
-
6261
- #: addons/buy-creds/modules/buycred-module-core.php:754
6262
- msgid "Payed"
6263
- msgstr "Payé"
6264
-
6265
- #: addons/buy-creds/modules/buycred-module-core.php:970
6266
- msgid "No purchases found"
6267
- msgstr "Aucun achat trouvé"
6268
-
6269
- #: addons/buy-creds/modules/buycred-module-core.php:1357
6270
- msgid "Buy Now"
6271
- msgstr "Acheter maintenant"
6272
-
6273
- #: addons/buy-creds/gateways/bank-transfer.php:59
6274
- #: addons/buy-creds/gateways/bitpay.php:163
6275
- #: addons/buy-creds/gateways/netbilling.php:144
6276
- #: addons/buy-creds/gateways/zombaio.php:267
6277
- #: addons/buy-creds/gateways/paypal-standard.php:207
6278
- #: addons/buy-creds/gateways/skrill.php:186
6279
- msgid "Please setup this gateway before attempting to make a purchase!"
6280
- msgstr ""
6281
- "Veuillez d'abord paramètrer ce service de paiement avant d'essayer de "
6282
- "finaliser un achat !"
6283
-
6284
- #: addons/buy-creds/gateways/bank-transfer.php:186
6285
- #: addons/buy-creds/gateways/bitpay.php:265
6286
- #: addons/buy-creds/gateways/netbilling.php:234
6287
- #: addons/buy-creds/gateways/paypal-standard.php:298
6288
- #: addons/buy-creds/gateways/skrill.php:320
6289
- msgid "Exchange Rates"
6290
- msgstr "Taux de change."
6291
-
6292
- #: addons/buy-creds/gateways/bitpay.php:62
6293
- #: addons/buy-creds/gateways/netbilling.php:92
6294
- #: addons/buy-creds/gateways/paypal-standard.php:145
6295
- #: addons/buy-creds/gateways/skrill.php:124
6296
- msgid "Price mismatch. Expected: %s Received: %s"
6297
- msgstr "Prix décallé. Excepté: %s reçu: %s"
6298
-
6299
- #: addons/buy-creds/gateways/bitpay.php:68
6300
- #: addons/buy-creds/gateways/paypal-standard.php:151
6301
- #: addons/buy-creds/gateways/skrill.php:130
6302
- msgid "Currency mismatch. Expected: %s Received: %s"
6303
- msgstr "Mauvais alignement de monnaies. Excepté: %s Reçut: %s"
6304
-
6305
- #: addons/buy-creds/gateways/bitpay.php:74
6306
- #: addons/buy-creds/gateways/netbilling.php:98
6307
- #: addons/buy-creds/gateways/paypal-standard.php:157
6308
- #: addons/buy-creds/gateways/skrill.php:136
6309
- msgid "Payment not completed. Received: %s"
6310
- msgstr "Paiement non complet. Reçu: %s"
6311
-
6312
- #: addons/buy-creds/gateways/bitpay.php:85
6313
- #: addons/buy-creds/gateways/netbilling.php:109
6314
- #: addons/buy-creds/gateways/zombaio.php:237
6315
- #: addons/buy-creds/gateways/paypal-standard.php:168
6316
- #: addons/buy-creds/gateways/skrill.php:147
6317
- msgid "Failed to credit users account."
6318
- msgstr "Echec de créditions aux comptes des utilisateurs."
6319
-
6320
- #: addons/buy-creds/gateways/bitpay.php:208
6321
- #: addons/buy-creds/gateways/bitpay.php:219
6322
- #: addons/buy-creds/gateways/netbilling.php:190
6323
- #: addons/buy-creds/gateways/zombaio.php:297
6324
- #: addons/buy-creds/gateways/paypal-standard.php:261
6325
- #: addons/buy-creds/gateways/skrill.php:275
6326
- msgid "Processing payment &hellip;"
6327
- msgstr "Procédure de paiement en cours &hellip;"
6328
-
6329
- #: addons/buy-creds/gateways/bitpay.php:211
6330
- msgid ""
6331
- "Could not create a BitPay Invoice. Please contact the site administrator!"
6332
- msgstr ""
6333
- "Impossible de créer une facture BitPay. Veuillez contacter l'administrateur "
6334
- "du site."
6335
-
6336
- #: addons/buy-creds/gateways/bitpay.php:212
6337
- msgid "Bitpay returned the following error message:"
6338
- msgstr "BitPay signale l'erreur suivante:"
6339
-
6340
- #: addons/buy-creds/gateways/bitpay.php:254
6341
- msgid "Currency Code"
6342
- msgstr "Code devise"
6343
-
6344
- #: addons/buy-creds/gateways/bitpay.php:258
6345
- #: addons/buy-creds/gateways/netbilling.php:227
6346
- #: addons/buy-creds/gateways/paypal-standard.php:291
6347
- #: addons/buy-creds/gateways/skrill.php:313
6348
- msgid "Item Name"
6349
- msgstr "Nom de l'item"
6350
-
6351
- #: addons/buy-creds/gateways/bitpay.php:262
6352
- #: addons/buy-creds/gateways/netbilling.php:231
6353
- #: addons/buy-creds/gateways/paypal-standard.php:295
6354
- #: addons/buy-creds/gateways/skrill.php:317
6355
- msgid "Description of the item being purchased by the user."
6356
- msgstr "Description de l'item acquis par l'utilisateur"
6357
-
6358
- #: addons/buy-creds/gateways/bitpay.php:269
6359
- msgid "Transaction Speed"
6360
- msgstr "Vitesse de transaction"
6361
-
6362
- #: addons/buy-creds/gateways/bitpay.php:276
6363
- msgid "High"
6364
- msgstr "Haute"
6365
-
6366
- #: addons/buy-creds/gateways/bitpay.php:277
6367
- msgid "Medium"
6368
- msgstr "Moyenne"
6369
-
6370
- #: addons/buy-creds/gateways/bitpay.php:278
6371
- msgid "Low"
6372
- msgstr "Basse"
6373
-
6374
- #: addons/buy-creds/gateways/bitpay.php:291
6375
- msgid "Full Notifications"
6376
- msgstr "Messages complets"
6377
-
6378
- #: addons/buy-creds/gateways/netbilling.php:208
6379
- msgid "Account ID"
6380
- msgstr "ID du compte"
6381
-
6382
- #: addons/buy-creds/gateways/netbilling.php:214
6383
- msgid "Site Tag"
6384
- msgstr "Mot-clé du site"
6385
-
6386
- #: addons/buy-creds/gateways/netbilling.php:220
6387
- msgid "Order Integrity Key"
6388
- msgstr "Commandez une clé de sécurité"
6389
-
6390
- #: addons/buy-creds/gateways/netbilling.php:224
6391
- msgid "Found under Step 12 on the Fraud Defense page."
6392
- msgstr "Trouvé à l'étape 12 de la page Défense contre la Fraude"
6393
-
6394
- #: addons/buy-creds/gateways/netbilling.php:238
6395
- msgid "Postback CGI URL"
6396
- msgstr "Adresse de retour CGI"
6397
-
6398
- #: addons/buy-creds/gateways/netbilling.php:242
6399
- msgid ""
6400
- "For this gateway to work, you must login to your NETbilling account and edit "
6401
- "your site. Under \"Default payment form settings\" make sure the Postback "
6402
- "CGI URL is set to the above address and \"Return method\" is set to POST."
6403
- msgstr ""
6404
- "Vous que ce service fonctionne, vous devez vous connecter à votre compte "
6405
- "Netbilling et modifier les paramètres de votre site. A la rubrique \"Default "
6406
- "payment form settings\", indiquez l'URL ci-dessous dans la case Postback CGI "
6407
- "URL et assurez-vous que la case \"Return method\" est bien sur POST."
6408
-
6409
- #: addons/buy-creds/gateways/netbilling.php:290
6410
- msgid "Incorrect Credit Card number"
6411
- msgstr "Le numéro de la carte de crédit est incorrect"
6412
-
6413
- #: addons/buy-creds/gateways/netbilling.php:296
6414
- msgid "The credit card entered is past its expiration date."
6415
- msgstr "Votre carte de crédit est expirée"
6416
-
6417
- #: addons/buy-creds/gateways/netbilling.php:299
6418
- msgid "The CVV2 number entered is not valid."
6419
- msgstr "Le cryptogramme que vous avez indiqué n'est pas valide."
6420
-
6421
- #: addons/buy-creds/gateways/netbilling.php:306
6422
- msgid "The bank routing number entered is not valid."
6423
- msgstr "Le numéro de routage de la banque n'est pas valide."
6424
-
6425
- #: addons/buy-creds/gateways/netbilling.php:310
6426
- msgid "The bank account number entered is not valid."
6427
- msgstr "Le numéro de compte bancaire n'est pas valide"
6428
-
6429
- #: addons/buy-creds/gateways/zombaio.php:204
6430
- msgid "Duplicate transaction. Received: %s"
6431
- msgstr "Dupliquer les transactions. Reçu: %s"
6432
-
6433
- #: addons/buy-creds/gateways/zombaio.php:210
6434
- msgid "Live transaction while debug mode is enabled! Received: %s"
6435
- msgstr ""
6436
- "Transaction\n"
6437
- " \n"
6438
- "en direct\n"
6439
- " \n"
6440
- "tandis que le mode\n"
6441
- " \n"
6442
- "debug\n"
6443
- " \n"
6444
- "est\n"
6445
- " \n"
6446
- "activé!\n"
6447
- " \n"
6448
- "Reçu\n"
6449
- ":\n"
6450
- "% s"
6451
-
6452
- #: addons/buy-creds/gateways/zombaio.php:315
6453
- msgid "Site ID"
6454
- msgstr "ID du site"
6455
-
6456
- #: addons/buy-creds/gateways/zombaio.php:321
6457
- msgid "GW Password"
6458
- msgstr "Mot de passe GW"
6459
-
6460
- #: addons/buy-creds/gateways/zombaio.php:327
6461
- msgid "Pricing ID"
6462
- msgstr "ID du paiement"
6463
-
6464
- #: addons/buy-creds/gateways/zombaio.php:333
6465
- #: addons/buy-creds/gateways/skrill.php:338
6466
- msgid "Logo URL"
6467
- msgstr "URL du logo"
6468
-
6469
- #: addons/buy-creds/gateways/zombaio.php:339
6470
- msgid "IP Verification"
6471
- msgstr "ID de vérification"
6472
-
6473
- #: addons/buy-creds/gateways/zombaio.php:342
6474
- msgid "Do not verify that callbacks are coming from Zombaio."
6475
- msgstr "Ne pas vérifier que les rappels proviennent de Zombaio."
6476
-
6477
- #: addons/buy-creds/gateways/zombaio.php:345
6478
- msgid "Language"
6479
- msgstr "Langue"
6480
-
6481
- #: addons/buy-creds/gateways/zombaio.php:352
6482
- msgid "Postback URL (ZScript)"
6483
- msgstr "URL de retour (ZScript)"
6484
-
6485
- #: addons/buy-creds/gateways/zombaio.php:356
6486
- msgid ""
6487
- "For this gateway to work, login to ZOA and set the Postback URL to the above "
6488
- "address and click validate."
6489
- msgstr ""
6490
- "Pour faire fonctionner ce service, veuillez d'abord vous connecter à ZOA et "
6491
- "indiquez l'adresse ci-dessus comme URL de retour avant de valider."
6492
-
6493
- #: addons/buy-creds/gateways/paypal-standard.php:192
6494
- #: addons/buy-creds/gateways/skrill.php:171
6495
- msgid "Success"
6496
- msgstr "Succès !"
6497
-
6498
- #: addons/buy-creds/gateways/paypal-standard.php:193
6499
- #: addons/buy-creds/gateways/skrill.php:172
6500
- msgid "Thank you for your purchase"
6501
- msgstr "Merci pour votre achat"
6502
-
6503
- #: addons/buy-creds/gateways/paypal-standard.php:285
6504
- msgid "Account Email"
6505
- msgstr "Email du compte"
6506
-
6507
- #: addons/buy-creds/gateways/skrill.php:226
6508
- msgid "Return to "
6509
- msgstr "Retour vers"
6510
-
6511
- #: addons/buy-creds/gateways/skrill.php:258
6512
- msgid "Product:"
6513
- msgstr "Produit:"
6514
-
6515
- #: addons/buy-creds/gateways/skrill.php:267
6516
- msgid "Gift to:"
6517
- msgstr "Cadeau à "
6518
-
6519
- #: addons/buy-creds/gateways/skrill.php:268
6520
- msgid "(author)"
6521
- msgstr "(auteur)"
6522
-
6523
- #: addons/buy-creds/gateways/skrill.php:301
6524
- msgid "Merchant Account Email"
6525
- msgstr "Email du compte marchand"
6526
-
6527
- #: addons/buy-creds/gateways/skrill.php:307
6528
- msgid "Secret Word"
6529
- msgstr "Mot secret"
6530
-
6531
- #: addons/buy-creds/gateways/skrill.php:324
6532
- msgid "Confirmation Email"
6533
- msgstr "Email de confirmation"
6534
-
6535
- #: addons/buy-creds/gateways/skrill.php:327
6536
- msgid ""
6537
- "Ask Skrill to send me a confirmation email for each successful purchase."
6538
- msgstr ""
6539
- "Demander à Skrill d'envoyer un mail de confirmation après chaque acquisition "
6540
- "réussie."
6541
-
6542
- #: addons/buy-creds/gateways/skrill.php:330
6543
- msgid "Checkout Page"
6544
- msgstr "Page de contrôle"
6545
-
6546
- #: addons/buy-creds/gateways/skrill.php:335
6547
- msgid ""
6548
- "If left empty, your account email is used as title on the Skill Payment Page."
6549
- msgstr ""
6550
- "Si vous laissez vide, c'est votre mail de compte qui sera utilisé comme "
6551
- "titre de la page de paiement de Skrill"
6552
-
6553
- #: addons/buy-creds/gateways/skrill.php:340
6554
- msgid ""
6555
- "The URL to the image you want to use on the top of the gateway. For best "
6556
- "integration results we recommend you use logos with dimensions up to 200px "
6557
- "in width and 50px in height."
6558
- msgstr ""
6559
- "L'url vers l'image à afficher sur l'interface du service de paiement. Pour "
6560
- "une intégration optimale, nous vous recommandons d'utiliser un logo de 200 "
6561
- "par 50 pixels."
6562
-
6563
- #: addons/buy-creds/gateways/skrill.php:343
6564
- msgid "Confirmation Note"
6565
- msgstr "Message de confirmation"
6566
-
6567
- #: addons/buy-creds/gateways/skrill.php:345
6568
- msgid ""
6569
- "Optional text to show user once a transaction has been successfully "
6570
- "completed. This text is shown by Skrill."
6571
- msgstr ""
6572
- "Texte additionnel en option qui s'affichera une fois une transaction "
6573
- "complétée avec succès. Ce texte est affiché par Skrill."
6574
-
6575
- #. URI of the plugin
6576
- msgid "http://mycred.me"
6577
- msgstr "http://mycred.me"
6578
-
6579
- #. Author of the plugin
6580
- msgid "Gabriel S Merovingi"
6581
- msgstr "Gabriel S Merovingi"
6582
-
6583
- #. Author URI of the plugin
6584
- msgid "http://www.merovingi.com"
6585
- msgstr "http://www.merovingi.com"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: myCRED\n"
4
+ "Report-Msgid-Bugs-To: http://mycred.me\n"
5
+ "POT-Creation-Date: 2016-10-21 06:01+0000\n"
6
+ "PO-Revision-Date: 2016-10-21 06:01+0000\n"
7
+ "Last-Translator: mycreddemo <gabriel.s@merovingi.com>\n"
8
+ "Language-Team: French (France)\n"
9
+ "Language: fr-FR\n"
10
+ "Plural-Forms: nplurals=2; plural=n > 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
18
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
+ "X-Poedit-Basepath: .\n"
21
+ "X-Loco-Target-Locale: fr_FR\n"
22
+ "X-Generator: Loco - https://localise.biz/"
23
+
24
+ #: abstracts/mycred-abstract-hook.php:284
25
+ msgid "/ Day"
26
+ msgstr ""
27
+
28
+ #: abstracts/mycred-abstract-hook.php:285
29
+ msgid "/ Week"
30
+ msgstr ""
31
+
32
+ #: abstracts/mycred-abstract-hook.php:286
33
+ msgid "/ Month"
34
+ msgstr ""
35
+
36
+ #: abstracts/mycred-abstract-hook.php:287
37
+ msgid "in Total"
38
+ msgstr ""
39
+
40
+ #: modules/mycred-module-management.php:184
41
+ msgid "Balance successfully updated"
42
+ msgstr ""
43
+
44
+ #: modules/mycred-module-management.php:189
45
+ msgid "Request declined"
46
+ msgstr ""
47
+
48
+ #: modules/mycred-module-management.php:224
49
+ msgid "No recent activity found."
50
+ msgstr ""
51
+
52
+ #: modules/mycred-module-management.php:237
53
+ #: modules/mycred-module-management.php:773 modules/mycred-module-log.php:93
54
+ #: modules/mycred-module-log.php:922
55
+ #: includes/classes/class.query-export.php:263
56
+ #: includes/classes/class.query-export.php:360
57
+ #: includes/classes/class.query-log.php:382
58
+ #: addons/transfer/includes/mycred-transfer-widgets.php:96
59
+ msgid "Reference"
60
+ msgstr ""
61
+
62
+ #: modules/mycred-module-management.php:280
63
+ msgid "View complete history"
64
+ msgstr ""
65
+
66
+ #: modules/mycred-module-management.php:553
67
+ msgid "Balances"
68
+ msgstr ""
69
+
70
+ #: modules/mycred-module-management.php:745
71
+ #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
72
+ #: addons/buy-creds/modules/buycred-module-core.php:1362
73
+ msgid "Username"
74
+ msgstr ""
75
+
76
+ #: modules/mycred-module-management.php:757
77
+ msgid "Total Balance"
78
+ msgstr ""
79
+
80
+ #: modules/mycred-module-management.php:783
81
+ msgid "Log under a custom reference"
82
+ msgstr ""
83
+
84
+ #: modules/mycred-module-management.php:789
85
+ msgid "lowercase without empty spaces"
86
+ msgstr ""
87
+
88
+ #: modules/mycred-module-management.php:802
89
+ msgid "Update"
90
+ msgstr ""
91
+
92
+ #: modules/mycred-module-management.php:805
93
+ msgid "Recent Activity"
94
+ msgstr ""
95
+
96
+ #: modules/mycred-module-settings.php:240
97
+ msgid "Invalid decimal value."
98
+ msgstr ""
99
+
100
+ #: modules/mycred-module-settings.php:290
101
+ msgid "Log Updated"
102
+ msgstr ""
103
+
104
+ #: modules/mycred-module-settings.php:433
105
+ msgid ""
106
+ "In order to adjust the number of decimal places you want to use we must "
107
+ "update your log. It is highly recommended that you backup your current log "
108
+ "before continuing!"
109
+ msgstr ""
110
+
111
+ #: modules/mycred-module-settings.php:458
112
+ msgid "Update Database"
113
+ msgstr ""
114
+
115
+ #: modules/mycred-module-settings.php:469
116
+ #: modules/mycred-module-settings.php:481
117
+ msgid "No decimals"
118
+ msgstr ""
119
+
120
+ #: modules/mycred-module-settings.php:493
121
+ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
122
+ msgstr ""
123
+
124
+ #: modules/mycred-module-settings.php:529 modules/mycred-module-addons.php:368
125
+ msgid "Documentation"
126
+ msgstr ""
127
+
128
+ #: modules/mycred-module-settings.php:547 includes/mycred-setup.php:279
129
+ msgid "Singular"
130
+ msgstr ""
131
+
132
+ #: modules/mycred-module-settings.php:548
133
+ #: modules/mycred-module-settings.php:554
134
+ #: modules/mycred-module-settings.php:604
135
+ #: modules/mycred-module-settings.php:611
136
+ #: modules/mycred-module-settings.php:798
137
+ #: modules/mycred-module-settings.php:804 includes/mycred-setup.php:280
138
+ #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
139
+ #: includes/mycred-setup.php:340
140
+ #: addons/banking/services/mycred-service-central.php:111
141
+ #: addons/banking/services/mycred-service-interest.php:482
142
+ #: addons/banking/services/mycred-service-interest.php:500
143
+ msgid "Required"
144
+ msgstr ""
145
+
146
+ #: modules/mycred-module-settings.php:553 includes/mycred-setup.php:285
147
+ msgid "Plural"
148
+ msgstr ""
149
+
150
+ #: modules/mycred-module-settings.php:558 includes/mycred-setup.php:290
151
+ msgid ""
152
+ "These labels are used throughout the admin area and when presenting points "
153
+ "to your users."
154
+ msgstr ""
155
+
156
+ #: modules/mycred-module-settings.php:590
157
+ msgid "Set decimals to zero if you prefer to use whole numbers."
158
+ msgstr ""
159
+
160
+ #: modules/mycred-module-settings.php:592
161
+ msgid ""
162
+ "As this is your main point type, the value you select here will be the "
163
+ "largest number of decimals your installation will support."
164
+ msgstr ""
165
+
166
+ #: modules/mycred-module-settings.php:603 includes/mycred-setup.php:332
167
+ msgid "Point Editors"
168
+ msgstr ""
169
+
170
+ #: modules/mycred-module-settings.php:605 includes/mycred-setup.php:334
171
+ msgid "The capability of users who can edit balances."
172
+ msgstr ""
173
+
174
+ #: modules/mycred-module-settings.php:610 includes/mycred-setup.php:339
175
+ msgid "Point Administrators"
176
+ msgstr ""
177
+
178
+ #: modules/mycred-module-settings.php:612 includes/mycred-setup.php:341
179
+ msgid "The capability of users who can edit settings."
180
+ msgstr ""
181
+
182
+ #: modules/mycred-module-settings.php:618 includes/mycred-setup.php:346
183
+ msgid "Max. Amount"
184
+ msgstr ""
185
+
186
+ #: modules/mycred-module-settings.php:620 includes/mycred-setup.php:348
187
+ msgid "The maximum amount allowed to be paid out in a single instance."
188
+ msgstr ""
189
+
190
+ #: modules/mycred-module-settings.php:625 includes/mycred-setup.php:353
191
+ msgid "Exclude by User ID"
192
+ msgstr ""
193
+
194
+ #: modules/mycred-module-settings.php:626 includes/mycred-setup.php:354
195
+ msgid "Optional"
196
+ msgstr ""
197
+
198
+ #: modules/mycred-module-settings.php:627 includes/mycred-setup.php:355
199
+ msgid "Comma separated list of user IDs to exclude from using this point type."
200
+ msgstr ""
201
+
202
+ #: modules/mycred-module-settings.php:631 includes/mycred-setup.php:359
203
+ msgid "Exclude point editors"
204
+ msgstr ""
205
+
206
+ #: modules/mycred-module-settings.php:634 includes/mycred-setup.php:362
207
+ msgid "Exclude point administrators"
208
+ msgstr ""
209
+
210
+ #: modules/mycred-module-settings.php:644
211
+ msgid "Other Settings"
212
+ msgstr ""
213
+
214
+ #: modules/mycred-module-settings.php:696
215
+ msgid "Balance Meta Key"
216
+ msgstr ""
217
+
218
+ #: modules/mycred-module-settings.php:809
219
+ msgid ""
220
+ "The meta key must be lowercase and only contain letters or underscores. All "
221
+ "other characters will be deleted!"
222
+ msgstr ""
223
+
224
+ #: modules/mycred-module-addons.php:275
225
+ msgid ""
226
+ "Gives you access to your myCRED Statistics based on your users gains and "
227
+ "loses."
228
+ msgstr ""
229
+
230
+ #: modules/mycred-module-addons.php:330
231
+ msgid "Get More Add-ons"
232
+ msgstr ""
233
+
234
+ #: modules/mycred-module-log.php:215
235
+ msgid "Invalid or empty reference"
236
+ msgstr ""
237
+
238
+ #: modules/mycred-module-log.php:220
239
+ msgid "Log Entry cannot be empty"
240
+ msgstr ""
241
+
242
+ #: modules/mycred-module-log.php:241
243
+ msgid "Could not save the new log entry"
244
+ msgstr ""
245
+
246
+ #: modules/mycred-module-log.php:262
247
+ msgid "Log entry successfully updated"
248
+ msgstr ""
249
+
250
+ #: modules/mycred-module-log.php:307
251
+ msgid "1 Entry Deleted"
252
+ msgid_plural "%d Entries Deleted"
253
+ msgstr[0] ""
254
+ msgstr[1] ""
255
+
256
+ #: modules/mycred-module-log.php:469
257
+ msgid "The log entry was successfully updated."
258
+ msgstr ""
259
+
260
+ #: modules/mycred-module-log.php:470
261
+ msgid "The selected log entry could not be deleted."
262
+ msgstr ""
263
+
264
+ #: modules/mycred-module-log.php:507
265
+ msgctxt "e.g. Log entries from April 12th 2016"
266
+ msgid "Log entries from %s"
267
+ msgstr ""
268
+
269
+ #: modules/mycred-module-log.php:565
270
+ msgid ""
271
+ "Warning. The required Mcrypt PHP Library is not installed on this server! "
272
+ "Certain hooks and shortcodes will not work correctly!"
273
+ msgstr ""
274
+
275
+ #: modules/mycred-module-log.php:929
276
+ msgid "Original Entry"
277
+ msgstr ""
278
+
279
+ #: modules/mycred-module-log.php:941
280
+ msgid "Delete Entry"
281
+ msgstr ""
282
+
283
+ #: modules/mycred-module-log.php:946
284
+ msgid "Update Entry"
285
+ msgstr ""
286
+
287
+ #: modules/mycred-module-network.php:141
288
+ msgid "I am sorry but your network is too big to use these features."
289
+ msgstr ""
290
+
291
+ #: modules/mycred-module-export.php:358
292
+ msgid "Make both format options available."
293
+ msgstr ""
294
+
295
+ #: modules/mycred-module-export.php:360
296
+ msgid "Exports"
297
+ msgstr ""
298
+
299
+ #: modules/mycred-module-export.php:366
300
+ msgid "Front End Exports"
301
+ msgstr ""
302
+
303
+ #: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
304
+ msgid "Export Format"
305
+ msgstr ""
306
+
307
+ #: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
308
+ msgid "File Name"
309
+ msgstr ""
310
+
311
+ #: modules/mycred-module-export.php:407
312
+ msgid ""
313
+ "If enabled, users will only be able to export their own log entries! Export "
314
+ "tools becomes available wherever you are using the mycred_history shortcode "
315
+ "or in the users profile."
316
+ msgstr ""
317
+
318
+ #: modules/mycred-module-export.php:414
319
+ msgid "Back End Exports"
320
+ msgstr ""
321
+
322
+ #: modules/mycred-module-export.php:455
323
+ msgid ""
324
+ "Raw format should be used when you intend to use the export tool to backup "
325
+ "or import entries in another installation. Formatted exports reflect what "
326
+ "users see in their history archive."
327
+ msgstr ""
328
+
329
+ #: modules/mycred-module-buddypress.php:350
330
+ msgid "Show:"
331
+ msgstr ""
332
+
333
+ #: modules/mycred-module-buddypress.php:444
334
+ msgid "Members and visitors can view other members %_singular% balance."
335
+ msgstr ""
336
+
337
+ #: plugins/mycred-hook-wp-postratings.php:15
338
+ msgid "Post Ratings"
339
+ msgstr ""
340
+
341
+ #: plugins/mycred-hook-wp-postratings.php:16
342
+ msgid ""
343
+ "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
344
+ "author and the user rating."
345
+ msgstr ""
346
+
347
+ #: plugins/mycred-hook-wp-postratings.php:84
348
+ msgid "Based on rating"
349
+ msgstr ""
350
+
351
+ #: plugins/mycred-hook-wp-postratings.php:159
352
+ #: includes/classes/class.query-log.php:1628
353
+ msgid "Adding a Rating"
354
+ msgstr ""
355
+
356
+ #: plugins/mycred-hook-wp-postratings.php:169
357
+ #: plugins/mycred-hook-wp-postratings.php:188
358
+ msgid "Use the Rating Value instead of the amount set here."
359
+ msgstr ""
360
+
361
+ #: plugins/mycred-hook-wp-postratings.php:178
362
+ #: includes/classes/class.query-log.php:1629
363
+ msgid "Receiving a Rating"
364
+ msgstr ""
365
+
366
+ #: plugins/mycred-hook-buddypress.php:610
367
+ msgid "New Profile Activity"
368
+ msgstr ""
369
+
370
+ #: plugins/mycred-hook-buddypress.php:627
371
+ msgid "Deleted Profile Activity"
372
+ msgstr ""
373
+
374
+ #: plugins/mycred-hook-buddypress.php:644
375
+ msgid "New Profile Avatar"
376
+ msgstr ""
377
+
378
+ #: plugins/mycred-hook-buddypress.php:661
379
+ msgid "New Profile Cover Image"
380
+ msgstr ""
381
+
382
+ #: plugins/mycred-hook-buddypress.php:688
383
+ msgid ""
384
+ "Users with zero balance can not add friends. Requires that you deduct "
385
+ "%_plural% for adding a new friend."
386
+ msgstr ""
387
+
388
+ #: plugins/mycred-hook-buddypress.php:698
389
+ msgid "Ending Friendship"
390
+ msgstr ""
391
+
392
+ #: plugins/mycred-hook-buddypress.php:711
393
+ msgid "New Comment"
394
+ msgstr ""
395
+
396
+ #: plugins/mycred-hook-buddypress.php:741
397
+ msgid "Favorit Activity"
398
+ msgstr ""
399
+
400
+ #: plugins/mycred-hook-buddypress.php:758
401
+ msgid "Removing Favorit Activity"
402
+ msgstr ""
403
+
404
+ #: plugins/mycred-hook-buddypress.php:771
405
+ msgid "New Private Message"
406
+ msgstr ""
407
+
408
+ #: plugins/mycred-hook-buddypress.php:1564
409
+ msgid "%plural% for New Cover Image"
410
+ msgstr ""
411
+
412
+ #: plugins/mycred-hook-affiliatewp.php:15
413
+ msgid "AffiliateWP"
414
+ msgstr ""
415
+
416
+ #: plugins/mycred-hook-affiliatewp.php:16
417
+ msgid ""
418
+ "Awards %_plural% for affiliate signups, referring visitors and store sale "
419
+ "referrals."
420
+ msgstr ""
421
+
422
+ #: plugins/mycred-hook-affiliatewp.php:222
423
+ msgid "Affiliate Signup"
424
+ msgstr ""
425
+
426
+ #: plugins/mycred-hook-affiliatewp.php:252
427
+ msgid "Referring Sales"
428
+ msgstr ""
429
+
430
+ #: plugins/mycred-hook-affiliatewp.php:255
431
+ msgid "Pay a set amount for all referrals."
432
+ msgstr ""
433
+
434
+ #: plugins/mycred-hook-affiliatewp.php:256
435
+ msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
436
+ msgstr ""
437
+
438
+ #: plugins/mycred-hook-affiliatewp.php:257
439
+ msgid "Apply an exchange rate against the referral amount."
440
+ msgstr ""
441
+
442
+ #: plugins/mycred-hook-affiliatewp.php:265
443
+ msgid "Log template - Payout"
444
+ msgstr ""
445
+
446
+ #: plugins/mycred-hook-affiliatewp.php:270
447
+ msgid "Log template - Refund"
448
+ msgstr ""
449
+
450
+ #: plugins/mycred-hook-wp-favorite-posts.php:234
451
+ msgid "Authors Content added to favorites"
452
+ msgstr ""
453
+
454
+ #: plugins/mycred-hook-wp-favorite-posts.php:265
455
+ msgid "Removing Content from Favorites (Author)"
456
+ msgstr ""
457
+
458
+ #: plugins/mycred-hook-bbPress.php:540
459
+ msgid "Show users %_plural% balance in their bbPress profiles."
460
+ msgstr ""
461
+
462
+ #: includes/mycred-setup.php:106
463
+ msgid ""
464
+ "Before you can begin using %s, you must setup your first point type. This "
465
+ "includes what you want to call your points, how these points are presented "
466
+ "and who has access to it."
467
+ msgstr ""
468
+
469
+ #: includes/mycred-setup.php:111
470
+ msgid "Your First Point Type"
471
+ msgstr ""
472
+
473
+ #: includes/mycred-setup.php:127
474
+ msgid "Advanced Settings"
475
+ msgstr ""
476
+
477
+ #: includes/mycred-setup.php:133
478
+ msgid "Change Default Point Type Key"
479
+ msgstr ""
480
+
481
+ #: includes/mycred-setup.php:135
482
+ msgid ""
483
+ "You can change the meta key used to store the default point type using the "
484
+ "MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
485
+ "file to use."
486
+ msgstr ""
487
+
488
+ #: includes/mycred-setup.php:136
489
+ msgid ""
490
+ "If you intend to change the default meta key, you should do so before "
491
+ "continuing on in this setup!"
492
+ msgstr ""
493
+
494
+ #: includes/mycred-setup.php:139
495
+ msgid "Whitelabel"
496
+ msgstr ""
497
+
498
+ #: includes/mycred-setup.php:141
499
+ msgid ""
500
+ "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
501
+ "above code to your wp-config.php file to use."
502
+ msgstr ""
503
+
504
+ #: includes/mycred-setup.php:149
505
+ msgid "Create Point Type"
506
+ msgstr ""
507
+
508
+ #: includes/mycred-setup.php:149
509
+ msgid "Hide"
510
+ msgstr ""
511
+
512
+ #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
513
+ msgid "Advanced"
514
+ msgstr ""
515
+
516
+ #: includes/mycred-setup.php:155
517
+ msgid "Processing ..."
518
+ msgstr ""
519
+
520
+ #: includes/mycred-setup.php:160
521
+ msgid "Setup Complete!"
522
+ msgstr ""
523
+
524
+ #: includes/mycred-setup.php:161
525
+ msgid "Congratulations! You are now ready to use myCRED. What's next?"
526
+ msgstr ""
527
+
528
+ #: includes/mycred-setup.php:166
529
+ msgid "Enabling Hooks"
530
+ msgstr ""
531
+
532
+ #: includes/mycred-setup.php:167
533
+ msgid ""
534
+ "If you intend to give your users points for interacting with your website "
535
+ "automatically, your next step should be to enable and setup the hooks you "
536
+ "want to use."
537
+ msgstr ""
538
+
539
+ #: includes/mycred-setup.php:168
540
+ msgid "Setup Hooks"
541
+ msgstr ""
542
+
543
+ #: includes/mycred-setup.php:172
544
+ msgid ""
545
+ "If you want to use advanced features such as Transfers, Point Purchases etc. "
546
+ "your next step should be to enable and setup your add-ons."
547
+ msgstr ""
548
+
549
+ #: includes/mycred-setup.php:173
550
+ msgid "Setup Add-ons"
551
+ msgstr ""
552
+
553
+ #: includes/mycred-setup.php:176
554
+ msgid "Adjust Settings"
555
+ msgstr ""
556
+
557
+ #: includes/mycred-setup.php:177
558
+ msgid ""
559
+ "If you need to make further changes to your settings or add new point types, "
560
+ "you can visit your default point type's settings."
561
+ msgstr ""
562
+
563
+ #: includes/mycred-setup.php:178
564
+ msgid "View Settings"
565
+ msgstr ""
566
+
567
+ #: includes/mycred-setup.php:322
568
+ msgid "Set to decimals to zero if you prefer to use whole numbers."
569
+ msgstr ""
570
+
571
+ #: includes/mycred-setup.php:442
572
+ msgid "Please make sure you fill out all required fields!"
573
+ msgstr ""
574
+
575
+ #: includes/mycred-remote.php:619
576
+ msgid "16, 24 or 32 characters"
577
+ msgstr ""
578
+
579
+ #: includes/mycred-install.php:63
580
+ msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
581
+ msgstr ""
582
+
583
+ #: includes/mycred-install.php:68
584
+ msgid "myCRED requires PHP 5.3 or higher. Version detected: "
585
+ msgstr ""
586
+
587
+ #: includes/mycred-widgets.php:22
588
+ msgid "Show the current users balance and history."
589
+ msgstr ""
590
+
591
+ #: includes/mycred-widgets.php:192
592
+ msgid "Balance Layout"
593
+ msgstr ""
594
+
595
+ #: includes/mycred-widgets.php:285
596
+ msgid "Leaderboard based on instances or balances."
597
+ msgstr ""
598
+
599
+ #: includes/mycred-widgets.php:419
600
+ msgid "Timeframe"
601
+ msgstr ""
602
+
603
+ #: includes/mycred-widgets.php:421
604
+ msgid ""
605
+ "Option to limit the leaderboard based on a specific timeframe. Leave empty "
606
+ "if not used."
607
+ msgstr ""
608
+
609
+ #: includes/mycred-widgets.php:472
610
+ msgid "Shows multiple balances."
611
+ msgstr ""
612
+
613
+ #: includes/mycred-functions.php:2678
614
+ msgid "per day"
615
+ msgstr ""
616
+
617
+ #: includes/mycred-functions.php:2680
618
+ msgid "per week"
619
+ msgstr ""
620
+
621
+ #: includes/mycred-functions.php:2682
622
+ msgid "per month"
623
+ msgstr ""
624
+
625
+ #: includes/mycred-functions.php:2684
626
+ msgid "in total"
627
+ msgstr ""
628
+
629
+ #: includes/mycred-functions.php:2686 includes/mycred-functions.php:2690
630
+ msgid "Maximum once"
631
+ msgid_plural "Maximum %d times"
632
+ msgstr[0] ""
633
+ msgstr[1] ""
634
+
635
+ #: includes/mycred-functions.php:2717
636
+ msgctxt "ex. 21st."
637
+ msgid "%dst"
638
+ msgstr ""
639
+
640
+ #: includes/mycred-functions.php:2724
641
+ msgctxt "ex. 32nd."
642
+ msgid "%dnd"
643
+ msgstr ""
644
+
645
+ #: includes/mycred-functions.php:2731
646
+ msgctxt "ex. 43rd."
647
+ msgid "%drd"
648
+ msgstr ""
649
+
650
+ #: includes/mycred-functions.php:2742
651
+ msgctxt "ex. 50th"
652
+ msgid "%dth"
653
+ msgstr ""
654
+
655
+ #: includes/shortcodes/mycred_exchange.php:27
656
+ #: includes/shortcodes/mycred_hook_table.php:24
657
+ msgid "Point type not found."
658
+ msgstr ""
659
+
660
+ #: includes/shortcodes/mycred_hook_table.php:21
661
+ msgid "No instances found for this point type"
662
+ msgstr ""
663
+
664
+ #: includes/shortcodes/mycred_hook_table.php:79
665
+ msgid "Instance"
666
+ msgstr ""
667
+
668
+ #: includes/classes/class.query-export.php:263
669
+ msgid "Reference ID"
670
+ msgstr ""
671
+
672
+ #: includes/classes/class.query-export.php:263
673
+ msgid "Data"
674
+ msgstr ""
675
+
676
+ #: includes/classes/class.query-export.php:464
677
+ msgid "Export log entries raw"
678
+ msgstr ""
679
+
680
+ #: includes/classes/class.query-export.php:465
681
+ msgid "Export log entries formatted"
682
+ msgstr ""
683
+
684
+ #: includes/classes/class.query-export.php:482
685
+ msgid "All Log Entries"
686
+ msgstr ""
687
+
688
+ #: includes/classes/class.query-export.php:492
689
+ msgid "Users Log Entries"
690
+ msgstr ""
691
+
692
+ #: includes/classes/class.query-export.php:493
693
+ msgid "Export History"
694
+ msgstr ""
695
+
696
+ #: includes/classes/class.query-log.php:489
697
+ msgid "Bulk Actions"
698
+ msgstr ""
699
+
700
+ #: includes/classes/class.query-log.php:490
701
+ msgid "Export Raw"
702
+ msgstr ""
703
+
704
+ #: includes/classes/class.query-log.php:491
705
+ msgid "Export Formatted"
706
+ msgstr ""
707
+
708
+ #: includes/classes/class.query-log.php:507
709
+ msgid "Apply"
710
+ msgstr ""
711
+
712
+ #: includes/classes/class.query-log.php:544
713
+ msgid "User ID, Username, Email or Nicename"
714
+ msgstr ""
715
+
716
+ #: includes/classes/class.query-log.php:609
717
+ msgid "Log entries navigation"
718
+ msgstr ""
719
+
720
+ #: includes/classes/class.query-log.php:734
721
+ msgid "1 entry"
722
+ msgid_plural "%d entries"
723
+ msgstr[0] ""
724
+ msgstr[1] ""
725
+
726
+ #: includes/classes/class.query-log.php:867
727
+ #: includes/classes/class.query-log.php:888
728
+ msgid "Select all"
729
+ msgstr ""
730
+
731
+ #: includes/classes/class.query-log.php:971
732
+ msgid "Select entry"
733
+ msgstr ""
734
+
735
+ #: includes/classes/class.query-log.php:992
736
+ msgid "Show more details"
737
+ msgstr ""
738
+
739
+ #: includes/classes/class.query-log.php:1016
740
+ msgid "Filter by Date"
741
+ msgstr ""
742
+
743
+ #: includes/classes/class.query-log.php:1065
744
+ msgid "Filter by User"
745
+ msgstr ""
746
+
747
+ #: includes/classes/class.query-log.php:1067
748
+ msgid "Filter by ID"
749
+ msgstr ""
750
+
751
+ #: includes/classes/class.query-log.php:1561
752
+ msgid "Profile Update Removal"
753
+ msgstr ""
754
+
755
+ #: includes/classes/class.query-log.php:1563
756
+ msgid "Profile Cover Upload"
757
+ msgstr ""
758
+
759
+ #: includes/classes/class.query-log.php:1568
760
+ msgid "Add Activity to Favorites"
761
+ msgstr ""
762
+
763
+ #: includes/classes/class.query-log.php:1569
764
+ msgid "Remove Activity from Favorites"
765
+ msgstr ""
766
+
767
+ #: includes/classes/class.query-log.php:1581
768
+ msgid "New Group Cover"
769
+ msgstr ""
770
+
771
+ #: includes/classes/class.query-log.php:1621
772
+ msgid "Affiliate Signup (AffiliateWP)"
773
+ msgstr "Inscription parrain�es"
774
+
775
+ #: includes/classes/class.query-log.php:1622
776
+ msgid "Referred Visit (AffiliateWP)"
777
+ msgstr "Visites parrain�es"
778
+
779
+ #: includes/classes/class.query-log.php:1623
780
+ msgid "Affiliate Referral (AffiliateWP)"
781
+ msgstr ""
782
+
783
+ #: includes/classes/class.query-log.php:1624
784
+ msgid "Referral Refund (AffiliateWP)"
785
+ msgstr ""
786
+
787
+ #: includes/classes/class.query-log.php:1644
788
+ msgid "Recurring Payout"
789
+ msgstr ""
790
+
791
+ #: includes/classes/class.query-log.php:1648
792
+ msgid "Badge Reward"
793
+ msgstr ""
794
+
795
+ #: includes/classes/class.query-log.php:1665
796
+ msgid "Store Reward (WooCommerce)"
797
+ msgstr ""
798
+
799
+ #: includes/classes/class.query-log.php:1666
800
+ msgid "Product Review (WooCommerce)"
801
+ msgstr ""
802
+
803
+ #: includes/classes/class.query-log.php:1670
804
+ msgid "Store Reward (MarketPress)"
805
+ msgstr ""
806
+
807
+ #: includes/classes/class.query-log.php:1689
808
+ msgid "Content Purchase"
809
+ msgstr ""
810
+
811
+ #: includes/classes/class.query-log.php:1690
812
+ msgid "Content Sale"
813
+ msgstr ""
814
+
815
+ #: addons/banking/myCRED-addon-banking.php:142
816
+ msgid ""
817
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
818
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
819
+ "deposited back into this account. If the central bank runs out of %_plural%, "
820
+ "no %_plural% will be paid out."
821
+ msgstr ""
822
+
823
+ #: addons/banking/myCRED-addon-banking.php:151
824
+ msgid ""
825
+ "Offer your users interest on the %_plural% they earn on your website. The "
826
+ "interest is compounded daily."
827
+ msgstr ""
828
+
829
+ #: addons/banking/myCRED-addon-banking.php:202
830
+ msgid "New Recurring Payout"
831
+ msgstr ""
832
+
833
+ #: addons/banking/myCRED-addon-banking.php:203
834
+ msgid "Edit Recurring Payout"
835
+ msgstr ""
836
+
837
+ #: addons/banking/myCRED-addon-banking.php:205
838
+ msgid "Please fill out all required fields that are highlighted in red."
839
+ msgstr ""
840
+
841
+ #: addons/banking/myCRED-addon-banking.php:206
842
+ msgid "Are you sure you want to remove this schedule? This can not be undone!"
843
+ msgstr ""
844
+
845
+ #: addons/banking/myCRED-addon-banking.php:271
846
+ msgid "Warning"
847
+ msgstr ""
848
+
849
+ #: addons/banking/myCRED-addon-banking.php:271
850
+ msgid ""
851
+ "This banking service uses the WordPress CRON to schedule events. If the "
852
+ "WordPress CRON is disabled, this service will not work correctly."
853
+ msgstr ""
854
+
855
+ #: addons/transfer/myCRED-addon-transfer.php:156
856
+ msgid "The selected point type can not be transferred."
857
+ msgstr ""
858
+
859
+ #: addons/transfer/myCRED-addon-transfer.php:464
860
+ msgid ""
861
+ "The template to use when the transfer shortcode or widget is viewed by "
862
+ "someone who is not logged in."
863
+ msgstr ""
864
+
865
+ #: addons/transfer/myCRED-addon-transfer.php:479
866
+ msgid ""
867
+ "The template to use if you select to show the transfer limit in the transfer "
868
+ "shortcode or widget. Ignored if there is no limit enforced."
869
+ msgstr ""
870
+
871
+ #: addons/transfer/myCRED-addon-transfer.php:496
872
+ msgid ""
873
+ "The template to use if you select to show the users balance in the transfer "
874
+ "shortcode or widget. Ignored if balances are not shown."
875
+ msgstr ""
876
+
877
+ #: addons/transfer/myCRED-addon-transfer.php:512
878
+ msgid "Default Button Label"
879
+ msgstr ""
880
+
881
+ #: addons/transfer/myCRED-addon-transfer.php:514
882
+ msgid ""
883
+ "The default transfer button label. You can override this in the shortcode or "
884
+ "widget if needed."
885
+ msgstr ""
886
+
887
+ #: addons/transfer/myCRED-addon-transfer.php:517
888
+ msgid "Insufficient Funds Warning"
889
+ msgstr ""
890
+
891
+ #: addons/transfer/myCRED-addon-transfer.php:521
892
+ msgid "Message to show the user if they try to send more then they can afford."
893
+ msgstr ""
894
+
895
+ #: addons/transfer/myCRED-addon-transfer.php:524
896
+ msgid "Limit Reached Warning"
897
+ msgstr ""
898
+
899
+ #: addons/transfer/myCRED-addon-transfer.php:528
900
+ msgid ""
901
+ "Message to show the user once they reach their transfer limit. Ignored if no "
902
+ "limits are enforced."
903
+ msgstr ""
904
+
905
+ #: addons/ranks/myCRED-addon-ranks.php:216
906
+ msgid "Ranks for %s"
907
+ msgstr ""
908
+
909
+ #: addons/ranks/myCRED-addon-ranks.php:230
910
+ #: addons/ranks/myCRED-addon-ranks.php:1368
911
+ msgid "Rank Logo"
912
+ msgstr ""
913
+
914
+ #: addons/ranks/myCRED-addon-ranks.php:231
915
+ msgid "Set rank logo"
916
+ msgstr ""
917
+
918
+ #: addons/ranks/myCRED-addon-ranks.php:232
919
+ msgid "Remove rank logo"
920
+ msgstr ""
921
+
922
+ #: addons/ranks/myCRED-addon-ranks.php:233
923
+ msgid "Use as Logo"
924
+ msgstr ""
925
+
926
+ #: addons/ranks/myCRED-addon-ranks.php:288
927
+ msgid "Rank Enabled."
928
+ msgstr ""
929
+
930
+ #: addons/ranks/myCRED-addon-ranks.php:289
931
+ msgid "Rank Saved."
932
+ msgstr ""
933
+
934
+ #: addons/ranks/myCRED-addon-ranks.php:895
935
+ msgid "No ranks exists."
936
+ msgstr ""
937
+
938
+ #: addons/ranks/myCRED-addon-ranks.php:1189
939
+ msgid "Rank Setup"
940
+ msgstr ""
941
+
942
+ #: addons/ranks/myCRED-addon-ranks.php:1230
943
+ msgid "Minimum Balance Requirement"
944
+ msgstr ""
945
+
946
+ #: addons/ranks/myCRED-addon-ranks.php:1236
947
+ msgid "Maximum Balance Requirement"
948
+ msgstr ""
949
+
950
+ #: addons/ranks/myCRED-addon-ranks.php:1435
951
+ msgid ""
952
+ "Use this button to calculate or recalculate your users totals. If not used, "
953
+ "the users current balance will be used as a starting point."
954
+ msgstr ""
955
+
956
+ #: addons/ranks/myCRED-addon-ranks.php:1477
957
+ #: addons/ranks/myCRED-addon-ranks.php:1522
958
+ msgid ""
959
+ "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
960
+ "for the title and %rank_logo% to show the rank logo. HTML is allowed."
961
+ msgstr ""
962
+
963
+ #: addons/ranks/myCRED-addon-ranks.php:1499
964
+ msgid "Include in Topic Replies"
965
+ msgstr ""
966
+
967
+ #: addons/ranks/myCRED-addon-ranks.php:1501
968
+ msgid "Include in Topic Replies and Profile"
969
+ msgstr ""
970
+
971
+ #: addons/ranks/myCRED-addon-ranks.php:1505
972
+ msgid "Rank in bbPress"
973
+ msgstr ""
974
+
975
+ #: addons/notifications/myCRED-addon-notifications.php:203
976
+ msgid "Restore to default"
977
+ msgstr ""
978
+
979
+ #: addons/notifications/myCRED-addon-notifications.php:217
980
+ msgid ""
981
+ "Number of seconds before a notice is automatically removed after being shown "
982
+ "to user. Use zero to disable."
983
+ msgstr ""
984
+
985
+ #: addons/email-notices/myCRED-addon-email-notices.php:124
986
+ #: addons/email-notices/myCRED-addon-email-notices.php:130
987
+ #: addons/email-notices/myCRED-addon-email-notices.php:136
988
+ #: addons/email-notices/myCRED-addon-email-notices.php:192
989
+ #: addons/email-notices/myCRED-addon-email-notices.php:193
990
+ msgid "Email Notifications"
991
+ msgstr ""
992
+
993
+ #: addons/email-notices/myCRED-addon-email-notices.php:125
994
+ msgid "Email Notification"
995
+ msgstr ""
996
+
997
+ #: addons/email-notices/myCRED-addon-email-notices.php:128
998
+ msgid "Edit Email Notification"
999
+ msgstr ""
1000
+
1001
+ #: addons/email-notices/myCRED-addon-email-notices.php:129
1002
+ msgid "New Email Notification"
1003
+ msgstr ""
1004
+
1005
+ #: addons/email-notices/myCRED-addon-email-notices.php:132
1006
+ msgid "Search Email Notifications"
1007
+ msgstr ""
1008
+
1009
+ #: addons/email-notices/myCRED-addon-email-notices.php:133
1010
+ msgid "No email notifications found"
1011
+ msgstr ""
1012
+
1013
+ #: addons/email-notices/myCRED-addon-email-notices.php:134
1014
+ msgid "No email notifications found in Trash"
1015
+ msgstr ""
1016
+
1017
+ #: addons/email-notices/myCRED-addon-email-notices.php:172
1018
+ msgid "Email Notice Activated."
1019
+ msgstr ""
1020
+
1021
+ #: addons/email-notices/myCRED-addon-email-notices.php:347
1022
+ #: addons/email-notices/myCRED-addon-email-notices.php:588
1023
+ msgid "All types"
1024
+ msgstr ""
1025
+
1026
+ #: addons/email-notices/myCRED-addon-email-notices.php:706
1027
+ msgid "Instance Related"
1028
+ msgstr ""
1029
+
1030
+ #: addons/email-notices/myCRED-addon-email-notices.php:712
1031
+ msgid "The users new balance"
1032
+ msgstr ""
1033
+
1034
+ #: addons/email-notices/myCRED-addon-email-notices.php:720
1035
+ msgid "The users old balance"
1036
+ msgstr ""
1037
+
1038
+ #: addons/email-notices/myCRED-addon-email-notices.php:728
1039
+ msgid "The amount of points gained or lost in this instance"
1040
+ msgstr ""
1041
+
1042
+ #: addons/email-notices/myCRED-addon-email-notices.php:736
1043
+ msgid "The log entry"
1044
+ msgstr ""
1045
+
1046
+ #: addons/email-notices/myCRED-addon-email-notices.php:741
1047
+ msgid "You can also use %s."
1048
+ msgstr ""
1049
+
1050
+ #: addons/email-notices/myCRED-addon-email-notices.php:741
1051
+ msgid "user related template tags"
1052
+ msgstr ""
1053
+
1054
+ #: addons/email-notices/myCRED-addon-email-notices.php:872
1055
+ msgid "Badge Add-on"
1056
+ msgstr ""
1057
+
1058
+ #: addons/email-notices/myCRED-addon-email-notices.php:873
1059
+ msgid "user gains a badge"
1060
+ msgstr ""
1061
+
1062
+ #: addons/email-notices/myCRED-addon-email-notices.php:1385
1063
+ msgid "Subscriptions"
1064
+ msgstr ""
1065
+
1066
+ #: addons/stats/myCRED-addon-stats.php:58
1067
+ msgid "Statistics"
1068
+ msgstr ""
1069
+
1070
+ #: addons/stats/myCRED-addon-stats.php:172
1071
+ msgid "Statistics Color"
1072
+ msgstr ""
1073
+
1074
+ #: addons/stats/myCRED-addon-stats.php:176
1075
+ msgid "Positive Values"
1076
+ msgstr ""
1077
+
1078
+ #: addons/stats/myCRED-addon-stats.php:182
1079
+ msgid "Negative Values"
1080
+ msgstr ""
1081
+
1082
+ #: addons/stats/myCRED-addon-stats.php:248
1083
+ msgid "Overview"
1084
+ msgstr ""
1085
+
1086
+ #: addons/stats/myCRED-addon-stats.php:310
1087
+ msgid "Refresh"
1088
+ msgstr ""
1089
+
1090
+ #: addons/stats/myCRED-addon-stats.php:417
1091
+ msgid "Your log is empty. No statistics can be shown."
1092
+ msgstr ""
1093
+
1094
+ #: addons/badges/myCRED-addon-badges.php:275
1095
+ msgid "Badge Enabled."
1096
+ msgstr ""
1097
+
1098
+ #: addons/badges/myCRED-addon-badges.php:276
1099
+ msgid "Badge Saved."
1100
+ msgstr ""
1101
+
1102
+ #: addons/badges/myCRED-addon-badges.php:398
1103
+ msgid "First Level"
1104
+ msgstr ""
1105
+
1106
+ #: addons/badges/myCRED-addon-badges.php:510
1107
+ #: addons/badges/myCRED-addon-badges.php:801
1108
+ msgid "Add Level"
1109
+ msgstr ""
1110
+
1111
+ #: addons/badges/myCRED-addon-badges.php:511
1112
+ #: addons/badges/myCRED-addon-badges.php:802
1113
+ msgid "Remove Level"
1114
+ msgstr ""
1115
+
1116
+ #: addons/badges/myCRED-addon-badges.php:512
1117
+ #: addons/badges/myCRED-addon-badges.php:755
1118
+ #: addons/badges/myCRED-addon-badges.php:818
1119
+ #: addons/badges/myCRED-addon-badges.php:823
1120
+ msgid "Set Image"
1121
+ msgstr ""
1122
+
1123
+ #: addons/badges/myCRED-addon-badges.php:513
1124
+ #: addons/badges/myCRED-addon-badges.php:755
1125
+ #: addons/badges/myCRED-addon-badges.php:823
1126
+ msgid "Change Image"
1127
+ msgstr ""
1128
+
1129
+ #: addons/badges/myCRED-addon-badges.php:514
1130
+ msgid "Are you sure you want to remove this level?"
1131
+ msgstr ""
1132
+
1133
+ #: addons/badges/myCRED-addon-badges.php:515
1134
+ #: addons/badges/myCRED-addon-badges.php:819
1135
+ #: addons/badges/myCRED-addon-badges.php:1288
1136
+ msgid "Level"
1137
+ msgstr ""
1138
+
1139
+ #: addons/badges/myCRED-addon-badges.php:518
1140
+ #: addons/badges/myCRED-addon-badges.php:921
1141
+ #: addons/badges/includes/mycred-badge-functions.php:271
1142
+ msgctxt "Comparison of badge requirements. A AND B"
1143
+ msgid "AND"
1144
+ msgstr ""
1145
+
1146
+ #: addons/badges/myCRED-addon-badges.php:519
1147
+ #: addons/badges/myCRED-addon-badges.php:921
1148
+ #: addons/badges/includes/mycred-badge-functions.php:269
1149
+ msgctxt "Comparison of badge requirements. A OR B"
1150
+ msgid "OR"
1151
+ msgstr ""
1152
+
1153
+ #: addons/badges/myCRED-addon-badges.php:571
1154
+ msgid "Badge Setup"
1155
+ msgstr ""
1156
+
1157
+ #: addons/badges/myCRED-addon-badges.php:580
1158
+ msgid "Default Badge Image"
1159
+ msgstr ""
1160
+
1161
+ #: addons/badges/myCRED-addon-badges.php:722
1162
+ #: addons/badges/includes/mycred-badge-functions.php:287
1163
+ msgid "This badge is manually awarded."
1164
+ msgstr ""
1165
+
1166
+ #: addons/badges/myCRED-addon-badges.php:758
1167
+ msgid "Optional image to show when a user has not earned this badge."
1168
+ msgstr ""
1169
+
1170
+ #: addons/badges/myCRED-addon-badges.php:825
1171
+ msgid "Level %d"
1172
+ msgstr ""
1173
+
1174
+ #: addons/badges/myCRED-addon-badges.php:849
1175
+ msgid "Select Point Type"
1176
+ msgstr ""
1177
+
1178
+ #: addons/badges/myCRED-addon-badges.php:863
1179
+ msgid "Select Reference"
1180
+ msgstr ""
1181
+
1182
+ #: addons/badges/myCRED-addon-badges.php:939
1183
+ msgid "Reward"
1184
+ msgstr ""
1185
+
1186
+ #: addons/badges/myCRED-addon-badges.php:1163
1187
+ #: addons/badges/myCRED-addon-badges.php:1199
1188
+ msgid "Show all badges, including badges users have not yet earned."
1189
+ msgstr ""
1190
+
1191
+ #: addons/badges/myCRED-addon-badges.php:1251
1192
+ msgid "No image set"
1193
+ msgstr ""
1194
+
1195
+ #: addons/badges/myCRED-addon-badges.php:1283
1196
+ msgid "Select a level"
1197
+ msgstr ""
1198
+
1199
+ #: addons/badges/myCRED-addon-badges.php:1297
1200
+ msgid "Earned"
1201
+ msgstr ""
1202
+
1203
+ #: addons/badges/myCRED-addon-badges.php:1406
1204
+ msgid "A total of %d users have received this badge."
1205
+ msgstr ""
1206
+
1207
+ #: addons/badges/myCRED-addon-badges.php:1433
1208
+ msgid "No connections where removed."
1209
+ msgstr ""
1210
+
1211
+ #: addons/badges/myCRED-addon-badges.php:1435
1212
+ msgid "%s connections where removed."
1213
+ msgstr ""
1214
+
1215
+ #: addons/coupons/myCRED-addon-coupons.php:249
1216
+ msgid "Used"
1217
+ msgstr ""
1218
+
1219
+ #: addons/coupons/myCRED-addon-coupons.php:296
1220
+ msgid "1 time"
1221
+ msgid_plural "%d times"
1222
+ msgstr[0] ""
1223
+ msgstr[1] ""
1224
+
1225
+ #: addons/coupons/myCRED-addon-coupons.php:453
1226
+ msgid "Coupon Usage"
1227
+ msgstr ""
1228
+
1229
+ #: addons/coupons/myCRED-addon-coupons.php:536
1230
+ msgid "The maximum number of times this coupon can be used."
1231
+ msgstr ""
1232
+
1233
+ #: addons/sell-content/myCRED-addon-sell-content.php:128
1234
+ msgid "Sell Content Add-on Update Required"
1235
+ msgstr ""
1236
+
1237
+ #: addons/sell-content/myCRED-addon-sell-content.php:129
1238
+ msgid ""
1239
+ "Before continuing to use this add-on you must setup and save your settings."
1240
+ msgstr ""
1241
+
1242
+ #: addons/sell-content/myCRED-addon-sell-content.php:235
1243
+ msgid "Users profit share when their content is purchased."
1244
+ msgstr ""
1245
+
1246
+ #: addons/sell-content/myCRED-addon-sell-content.php:251
1247
+ #: addons/sell-content/myCRED-addon-sell-content.php:266
1248
+ msgctxt "Points Name"
1249
+ msgid "%s Profit Share"
1250
+ msgstr ""
1251
+
1252
+ #: addons/sell-content/myCRED-addon-sell-content.php:254
1253
+ msgid "Not accepted as payment."
1254
+ msgstr ""
1255
+
1256
+ #: addons/sell-content/myCRED-addon-sell-content.php:269
1257
+ msgctxt "Points Name"
1258
+ msgid "User can not pay using %s"
1259
+ msgstr ""
1260
+
1261
+ #: addons/sell-content/myCRED-addon-sell-content.php:281
1262
+ msgctxt "Buying Points"
1263
+ msgid "%s Profit Share"
1264
+ msgstr ""
1265
+
1266
+ #: addons/sell-content/myCRED-addon-sell-content.php:284
1267
+ msgid "Leave empty to use the default."
1268
+ msgstr ""
1269
+
1270
+ #: addons/sell-content/myCRED-addon-sell-content.php:369
1271
+ msgid "Select all the post types you want to sell."
1272
+ msgstr ""
1273
+
1274
+ #: addons/sell-content/myCRED-addon-sell-content.php:385
1275
+ msgid "You must select at least one post type to sell."
1276
+ msgstr ""
1277
+
1278
+ #: addons/sell-content/myCRED-addon-sell-content.php:439
1279
+ msgid "Select all the point types accepted as payment."
1280
+ msgstr ""
1281
+
1282
+ #: addons/sell-content/myCRED-addon-sell-content.php:458
1283
+ msgid "You must select at least one point type to accept as payment."
1284
+ msgstr ""
1285
+
1286
+ #: addons/sell-content/myCRED-addon-sell-content.php:501
1287
+ #: addons/sell-content/myCRED-addon-sell-content.php:909
1288
+ msgid "Expiration"
1289
+ msgstr ""
1290
+
1291
+ #: addons/sell-content/myCRED-addon-sell-content.php:502
1292
+ #: addons/sell-content/myCRED-addon-sell-content.php:849
1293
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:181
1294
+ msgid "Hour(s)"
1295
+ msgstr ""
1296
+
1297
+ #: addons/sell-content/myCRED-addon-sell-content.php:503
1298
+ #: addons/sell-content/myCRED-addon-sell-content.php:508
1299
+ #: addons/banking/services/mycred-service-payouts.php:768
1300
+ #: addons/banking/services/mycred-service-payouts.php:775
1301
+ msgid "Use zero to disable."
1302
+ msgstr ""
1303
+
1304
+ #: addons/sell-content/myCRED-addon-sell-content.php:515
1305
+ msgid "Use %price% to show the price set for each post."
1306
+ msgstr ""
1307
+
1308
+ #: addons/sell-content/myCRED-addon-sell-content.php:518
1309
+ msgid "Button CSS Classes"
1310
+ msgstr ""
1311
+
1312
+ #: addons/sell-content/myCRED-addon-sell-content.php:524
1313
+ msgid "Payment log entry template"
1314
+ msgstr ""
1315
+
1316
+ #: addons/sell-content/myCRED-addon-sell-content.php:529
1317
+ msgid "Profit Share payout log entry template"
1318
+ msgstr ""
1319
+
1320
+ #: addons/sell-content/myCRED-addon-sell-content.php:531
1321
+ msgid "Only used if profit sharing is enabled for this point type."
1322
+ msgstr ""
1323
+
1324
+ #: addons/sell-content/myCRED-addon-sell-content.php:542
1325
+ msgid "Transactions"
1326
+ msgstr ""
1327
+
1328
+ #: addons/sell-content/myCRED-addon-sell-content.php:545
1329
+ msgid "Reload page after successful payments."
1330
+ msgstr ""
1331
+
1332
+ #: addons/sell-content/myCRED-addon-sell-content.php:550
1333
+ msgid ""
1334
+ "Option to show a custom button label while the payment is being processed. "
1335
+ "HTML is allowed."
1336
+ msgstr ""
1337
+
1338
+ #: addons/sell-content/myCRED-addon-sell-content.php:556
1339
+ msgid "Members"
1340
+ msgstr ""
1341
+
1342
+ #: addons/sell-content/myCRED-addon-sell-content.php:557
1343
+ msgid ""
1344
+ "The template to use when a content is viewed by a member that is logged in "
1345
+ "and can afford to pay. Only applied to content that is set for sale."
1346
+ msgstr ""
1347
+
1348
+ #: addons/sell-content/myCRED-addon-sell-content.php:574
1349
+ msgid ""
1350
+ "The template to use when a content is viewed by someone who is not logged in."
1351
+ " Only applied to content that is set for sale."
1352
+ msgstr ""
1353
+
1354
+ #: addons/sell-content/myCRED-addon-sell-content.php:592
1355
+ msgid ""
1356
+ "The template to use when a content is viewed by a member that is logged but "
1357
+ "can not afford to buy. Only applied to content that is set for sale."
1358
+ msgstr ""
1359
+
1360
+ #: addons/sell-content/myCRED-addon-sell-content.php:886
1361
+ msgid "Never expires"
1362
+ msgstr ""
1363
+
1364
+ #: addons/banking/services/mycred-service-central.php:110
1365
+ msgid "Central Bank Account"
1366
+ msgstr ""
1367
+
1368
+ #: addons/banking/services/mycred-service-central.php:113
1369
+ msgid "The ID of the user representing the central bank."
1370
+ msgstr ""
1371
+
1372
+ #: addons/banking/services/mycred-service-interest.php:429
1373
+ msgid "Daily Compound Schedule"
1374
+ msgstr ""
1375
+
1376
+ #: addons/banking/services/mycred-service-interest.php:432
1377
+ #: addons/banking/services/mycred-service-interest.php:457
1378
+ #: addons/banking/services/mycred-service-payouts.php:728
1379
+ msgid "Year"
1380
+ msgstr ""
1381
+
1382
+ #: addons/banking/services/mycred-service-interest.php:433
1383
+ #: addons/banking/services/mycred-service-interest.php:458
1384
+ #: addons/banking/services/mycred-service-payouts.php:734
1385
+ #: addons/banking/includes/mycred-banking-functions.php:95
1386
+ msgid "Month"
1387
+ msgstr ""
1388
+
1389
+ #: addons/banking/services/mycred-service-interest.php:434
1390
+ #: addons/banking/services/mycred-service-interest.php:459
1391
+ #: addons/banking/includes/mycred-banking-functions.php:85
1392
+ msgid "Day"
1393
+ msgstr ""
1394
+
1395
+ #: addons/banking/services/mycred-service-interest.php:454
1396
+ msgid "Payout Schedule"
1397
+ msgstr ""
1398
+
1399
+ #: addons/banking/services/mycred-service-interest.php:493
1400
+ msgid "Payout Frequency"
1401
+ msgstr ""
1402
+
1403
+ #: addons/banking/services/mycred-service-interest.php:506
1404
+ msgid "Payout Log Table"
1405
+ msgstr ""
1406
+
1407
+ #: addons/banking/services/mycred-service-interest.php:519
1408
+ msgid ""
1409
+ "Changing the payout period once the service is enabled, will only take "
1410
+ "effect once the currently scheduled payout runs. To change this, you will "
1411
+ "also need to adjust the payout schedule above."
1412
+ msgstr ""
1413
+
1414
+ #: addons/banking/services/mycred-service-interest.php:524
1415
+ msgid "Exclude by ID"
1416
+ msgstr ""
1417
+
1418
+ #: addons/banking/services/mycred-service-interest.php:535
1419
+ msgid "Exclude by Role"
1420
+ msgstr ""
1421
+
1422
+ #: addons/banking/services/mycred-service-interest.php:539
1423
+ msgid "Roles to exclude"
1424
+ msgstr ""
1425
+
1426
+ #: addons/banking/services/mycred-service-interest.php:655
1427
+ msgid "Leave empty to pay the default rate."
1428
+ msgstr ""
1429
+
1430
+ #: addons/banking/services/mycred-service-payouts.php:30
1431
+ msgid "Waiting to Start"
1432
+ msgstr ""
1433
+
1434
+ #: addons/banking/services/mycred-service-payouts.php:32
1435
+ msgid "Running"
1436
+ msgstr ""
1437
+
1438
+ #: addons/banking/services/mycred-service-payouts.php:33
1439
+ msgid "Finished"
1440
+ msgstr ""
1441
+
1442
+ #: addons/banking/services/mycred-service-payouts.php:34
1443
+ msgid "Stopped"
1444
+ msgstr ""
1445
+
1446
+ #: addons/banking/services/mycred-service-payouts.php:446
1447
+ msgid "Not yet started"
1448
+ msgstr ""
1449
+
1450
+ #: addons/banking/services/mycred-service-payouts.php:457
1451
+ msgid "Currently Running"
1452
+ msgstr ""
1453
+
1454
+ #: addons/banking/services/mycred-service-payouts.php:472
1455
+ msgid "View Schedule"
1456
+ msgstr ""
1457
+
1458
+ #: addons/banking/services/mycred-service-payouts.php:472
1459
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
1460
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
1461
+ msgid "View"
1462
+ msgstr ""
1463
+
1464
+ #: addons/banking/services/mycred-service-payouts.php:472
1465
+ msgid "Delete Schedule"
1466
+ msgstr ""
1467
+
1468
+ #: addons/banking/services/mycred-service-payouts.php:523
1469
+ #: addons/banking/services/mycred-service-payouts.php:766
1470
+ msgid "Min. Balance"
1471
+ msgstr ""
1472
+
1473
+ #: addons/banking/services/mycred-service-payouts.php:526
1474
+ #: addons/banking/services/mycred-service-payouts.php:773
1475
+ msgid "Max. Balance"
1476
+ msgstr ""
1477
+
1478
+ #: addons/banking/services/mycred-service-payouts.php:531
1479
+ msgid "Exclude Users"
1480
+ msgstr ""
1481
+
1482
+ #: addons/banking/services/mycred-service-payouts.php:533
1483
+ msgid "Include Users"
1484
+ msgstr ""
1485
+
1486
+ #: addons/banking/services/mycred-service-payouts.php:540
1487
+ msgid "Exclude Roles"
1488
+ msgstr ""
1489
+
1490
+ #: addons/banking/services/mycred-service-payouts.php:542
1491
+ msgid "Include Roles"
1492
+ msgstr ""
1493
+
1494
+ #: addons/banking/services/mycred-service-payouts.php:559
1495
+ #: addons/banking/services/mycred-service-payouts.php:879
1496
+ msgid "Job Title"
1497
+ msgstr ""
1498
+
1499
+ #: addons/banking/services/mycred-service-payouts.php:573
1500
+ msgid "Start Date"
1501
+ msgstr ""
1502
+
1503
+ #: addons/banking/services/mycred-service-payouts.php:579
1504
+ msgid "Eligible"
1505
+ msgstr ""
1506
+
1507
+ #: addons/banking/services/mycred-service-payouts.php:580
1508
+ msgid "1 User"
1509
+ msgid_plural "%d Users"
1510
+ msgstr[0] ""
1511
+ msgstr[1] ""
1512
+
1513
+ #: addons/banking/services/mycred-service-payouts.php:585
1514
+ msgid "Runs"
1515
+ msgstr ""
1516
+
1517
+ #: addons/banking/services/mycred-service-payouts.php:586
1518
+ msgid "Infinite"
1519
+ msgstr ""
1520
+
1521
+ #: addons/banking/services/mycred-service-payouts.php:609
1522
+ msgid "Will payout even if the central bank account has run out of funds."
1523
+ msgstr ""
1524
+
1525
+ #: addons/banking/services/mycred-service-payouts.php:614
1526
+ msgid "Paid Out"
1527
+ msgstr ""
1528
+
1529
+ #: addons/banking/services/mycred-service-payouts.php:615
1530
+ msgid "Completed"
1531
+ msgstr ""
1532
+
1533
+ #: addons/banking/services/mycred-service-payouts.php:616
1534
+ msgid "Misses"
1535
+ msgstr ""
1536
+
1537
+ #: addons/banking/services/mycred-service-payouts.php:617
1538
+ msgid "Runs Left"
1539
+ msgstr ""
1540
+
1541
+ #: addons/banking/services/mycred-service-payouts.php:637
1542
+ msgid ""
1543
+ "A miss is when a payout was declined by the plugin. This can be due to "
1544
+ "custom code declining the payout or if the user is excluded."
1545
+ msgstr ""
1546
+
1547
+ #: addons/banking/services/mycred-service-payouts.php:682
1548
+ msgid "Schedule Title"
1549
+ msgstr ""
1550
+
1551
+ #: addons/banking/services/mycred-service-payouts.php:694
1552
+ #: addons/banking/services/mycred-service-payouts.php:881
1553
+ msgid "Frequency"
1554
+ msgstr ""
1555
+
1556
+ #: addons/banking/services/mycred-service-payouts.php:715
1557
+ msgid "Payout even if the central bank account runs out of funds."
1558
+ msgstr ""
1559
+
1560
+ #: addons/banking/services/mycred-service-payouts.php:722
1561
+ msgid "First Payout"
1562
+ msgstr ""
1563
+
1564
+ #: addons/banking/services/mycred-service-payouts.php:754
1565
+ msgid "Repeat"
1566
+ msgstr ""
1567
+
1568
+ #: addons/banking/services/mycred-service-payouts.php:756
1569
+ msgid "Use -1 for infinite runs."
1570
+ msgstr ""
1571
+
1572
+ #: addons/banking/services/mycred-service-payouts.php:784
1573
+ msgid "Limit by ID"
1574
+ msgstr ""
1575
+
1576
+ #: addons/banking/services/mycred-service-payouts.php:798
1577
+ msgid "Limit by Role(s)"
1578
+ msgstr ""
1579
+
1580
+ #: addons/banking/services/mycred-service-payouts.php:825
1581
+ msgid "Schedule"
1582
+ msgstr ""
1583
+
1584
+ #: addons/banking/services/mycred-service-payouts.php:846
1585
+ msgid "Include:"
1586
+ msgstr ""
1587
+
1588
+ #: addons/banking/services/mycred-service-payouts.php:847
1589
+ msgid "Exclude:"
1590
+ msgstr ""
1591
+
1592
+ #: addons/banking/services/mycred-service-payouts.php:872
1593
+ msgid ""
1594
+ "As long as this service remains disabled, none of your scheduled payouts "
1595
+ "will run!"
1596
+ msgstr ""
1597
+
1598
+ #: addons/banking/services/mycred-service-payouts.php:875
1599
+ msgid "Schedules"
1600
+ msgstr ""
1601
+
1602
+ #: addons/banking/services/mycred-service-payouts.php:882
1603
+ msgid "Last Ran"
1604
+ msgstr ""
1605
+
1606
+ #: addons/banking/services/mycred-service-payouts.php:883
1607
+ msgid "Next Run"
1608
+ msgstr ""
1609
+
1610
+ #: addons/banking/services/mycred-service-payouts.php:891
1611
+ msgid "No schedules found."
1612
+ msgstr ""
1613
+
1614
+ #: addons/banking/services/mycred-service-payouts.php:955
1615
+ msgid "Schedule Added"
1616
+ msgstr ""
1617
+
1618
+ #: addons/banking/services/mycred-service-payouts.php:962
1619
+ msgid ""
1620
+ "While the recurring payout has been successfully saved, based on the limits "
1621
+ "you set, right now there are no users that are eligible for a payout!"
1622
+ msgstr ""
1623
+
1624
+ #: addons/banking/services/mycred-service-payouts.php:974
1625
+ #: addons/banking/services/mycred-service-payouts.php:988
1626
+ msgid "Schedule not found. Please refresh this page and try again."
1627
+ msgstr ""
1628
+
1629
+ #: addons/banking/services/mycred-service-payouts.php:993
1630
+ msgid "Schedule Deleted"
1631
+ msgstr ""
1632
+
1633
+ #: addons/banking/includes/mycred-banking-functions.php:80
1634
+ msgid "Hour"
1635
+ msgstr ""
1636
+
1637
+ #: addons/banking/includes/mycred-banking-functions.php:90
1638
+ msgid "Week"
1639
+ msgstr ""
1640
+
1641
+ #: addons/banking/includes/mycred-banking-functions.php:100
1642
+ msgid "Quarter"
1643
+ msgstr ""
1644
+
1645
+ #: addons/banking/includes/mycred-banking-functions.php:105
1646
+ msgid "Semiannual"
1647
+ msgstr ""
1648
+
1649
+ #: addons/banking/includes/mycred-banking-functions.php:110
1650
+ msgid "Annual"
1651
+ msgstr ""
1652
+
1653
+ #: addons/banking/includes/mycred-banking-functions.php:283
1654
+ msgid "A title must be set."
1655
+ msgstr ""
1656
+
1657
+ #: addons/banking/includes/mycred-banking-functions.php:290
1658
+ msgid "The amount to payout can not be zero."
1659
+ msgstr ""
1660
+
1661
+ #: addons/banking/includes/mycred-banking-functions.php:296
1662
+ msgid "Start date can not be in the past."
1663
+ msgstr ""
1664
+
1665
+ #: addons/banking/includes/mycred-banking-functions.php:303
1666
+ msgid "Repeat can not be zero."
1667
+ msgstr ""
1668
+
1669
+ #: addons/banking/includes/mycred-banking-functions.php:309
1670
+ msgid "Duplicate schedule."
1671
+ msgstr ""
1672
+
1673
+ #: addons/gateway/carts/mycred-woocommerce.php:364
1674
+ msgctxt "%s = Point amount formatted"
1675
+ msgid "Refunded %s"
1676
+ msgstr ""
1677
+
1678
+ #: addons/transfer/includes/mycred-transfer-widgets.php:89
1679
+ #: addons/transfer/includes/mycred-transfer-widgets.php:93
1680
+ #: addons/transfer/includes/mycred-transfer-widgets.php:97
1681
+ #: addons/transfer/includes/mycred-transfer-widgets.php:109
1682
+ msgid "required"
1683
+ msgstr ""
1684
+
1685
+ #: addons/transfer/includes/mycred-transfer-widgets.php:100
1686
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:31
1687
+ #: addons/buy-creds/modules/buycred-module-pending.php:565
1688
+ #: addons/buy-creds/modules/buycred-module-core.php:1475
1689
+ msgid "Recipient"
1690
+ msgstr ""
1691
+
1692
+ #: addons/transfer/includes/mycred-transfer-widgets.php:104
1693
+ msgid "Recipient Placeholder"
1694
+ msgstr ""
1695
+
1696
+ #: addons/transfer/includes/mycred-transfer-widgets.php:112
1697
+ msgid "Message for Excluded Users"
1698
+ msgstr ""
1699
+
1700
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:44
1701
+ msgid "Total %s:"
1702
+ msgstr ""
1703
+
1704
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:138
1705
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:267
1706
+ msgid "Total amount of %s in circulation"
1707
+ msgstr ""
1708
+
1709
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:171
1710
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:302
1711
+ msgid "Total gains (%)"
1712
+ msgstr ""
1713
+
1714
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:175
1715
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:306
1716
+ msgid "Total loses (%)"
1717
+ msgstr ""
1718
+
1719
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:179
1720
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
1721
+ msgid "Total Gained: %s"
1722
+ msgstr ""
1723
+
1724
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:179
1725
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
1726
+ msgid "Total Spent: %s"
1727
+ msgstr ""
1728
+
1729
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:193
1730
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:323
1731
+ msgid "This Year"
1732
+ msgstr ""
1733
+
1734
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:197
1735
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:199
1736
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:201
1737
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
1738
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:327
1739
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:329
1740
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:331
1741
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:333
1742
+ #: addons/badges/includes/mycred-badge-functions.php:267
1743
+ msgid "Gained"
1744
+ msgstr ""
1745
+
1746
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:198
1747
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200
1748
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
1749
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:204
1750
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:328
1751
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:330
1752
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:332
1753
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:334
1754
+ #: addons/badges/includes/mycred-badge-functions.php:267
1755
+ msgid "Lost"
1756
+ msgstr ""
1757
+
1758
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
1759
+ msgid ""
1760
+ "Most common ways your users have lost or spent points during this period."
1761
+ msgstr ""
1762
+
1763
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
1764
+ msgid ""
1765
+ "Most common ways your users have lost or spent %_plural% during this period."
1766
+ msgstr ""
1767
+
1768
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
1769
+ msgid "Loses in the last 10 days"
1770
+ msgstr ""
1771
+
1772
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
1773
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
1774
+ msgid "No data found"
1775
+ msgstr ""
1776
+
1777
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
1778
+ msgid "Most common ways your users have gained points during this period."
1779
+ msgstr ""
1780
+
1781
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
1782
+ msgid "Most common ways your users have gained %_plural% during this period."
1783
+ msgstr ""
1784
+
1785
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
1786
+ msgid "Gains in the last 10 days"
1787
+ msgstr ""
1788
+
1789
+ #: addons/badges/includes/mycred-badge-functions.php:248
1790
+ msgid "Level %s"
1791
+ msgstr ""
1792
+
1793
+ #: addons/badges/includes/mycred-badge-functions.php:265
1794
+ msgctxt "\"Points\" for \"reference\" x times"
1795
+ msgid "%s for \"%s\" x %d"
1796
+ msgstr ""
1797
+
1798
+ #: addons/badges/includes/mycred-badge-functions.php:267
1799
+ msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
1800
+ msgid "%s %s for \"%s\""
1801
+ msgstr ""
1802
+
1803
+ #: addons/sell-content/includes/mycred-sell-functions.php:502
1804
+ msgctxt "Point type name"
1805
+ msgid "You can not pay using %s"
1806
+ msgstr ""
1807
+
1808
+ #: addons/sell-content/includes/mycred-sell-functions.php:763
1809
+ msgctxt "all post type name"
1810
+ msgid "All %s"
1811
+ msgstr ""
1812
+
1813
+ #: addons/sell-content/includes/mycred-sell-functions.php:767
1814
+ msgctxt "all post type name"
1815
+ msgid "%s I manually select"
1816
+ msgstr ""
1817
+
1818
+ #: addons/sell-content/includes/mycred-sell-functions.php:771
1819
+ msgctxt "%s = post type name"
1820
+ msgid "All %s except"
1821
+ msgstr ""
1822
+
1823
+ #: addons/sell-content/includes/mycred-sell-functions.php:772
1824
+ msgctxt "%s = post type name"
1825
+ msgid "Comma separated list of %s IDs to exclude"
1826
+ msgstr ""
1827
+
1828
+ #: addons/sell-content/includes/mycred-sell-functions.php:775
1829
+ msgctxt "%s = post type name"
1830
+ msgid "Only %s"
1831
+ msgstr ""
1832
+
1833
+ #: addons/sell-content/includes/mycred-sell-functions.php:776
1834
+ msgctxt "%s = post type name"
1835
+ msgid "Comma separated list of %s IDs"
1836
+ msgstr ""
1837
+
1838
+ #: addons/sell-content/includes/mycred-sell-functions.php:788
1839
+ msgctxt "e.g. Only \"Posts\" in \"Categories\""
1840
+ msgid "Only %s in %s"
1841
+ msgstr ""
1842
+
1843
+ #: addons/sell-content/includes/mycred-sell-functions.php:789
1844
+ #: addons/sell-content/includes/mycred-sell-functions.php:793
1845
+ #: addons/sell-content/includes/mycred-sell-functions.php:799
1846
+ #: addons/sell-content/includes/mycred-sell-functions.php:803
1847
+ msgctxt "%s = taxonomy name"
1848
+ msgid "Comma separated list of %s slugs"
1849
+ msgstr ""
1850
+
1851
+ #: addons/sell-content/includes/mycred-sell-functions.php:792
1852
+ msgctxt "e.g. Only \"Posts\" not in \"Categories\""
1853
+ msgid "Only %s not in %s"
1854
+ msgstr ""
1855
+
1856
+ #: addons/sell-content/includes/mycred-sell-functions.php:798
1857
+ msgctxt "e.g. Only \"Posts\" with \"Tags\""
1858
+ msgid "Only %s with %s"
1859
+ msgstr ""
1860
+
1861
+ #: addons/sell-content/includes/mycred-sell-functions.php:802
1862
+ msgctxt "e.g. Only \"Posts\" without \"Tags\""
1863
+ msgid "Only %s without %s"
1864
+ msgstr ""
1865
+
1866
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:233
1867
+ msgctxt "e.g. 10 hours"
1868
+ msgid "Purchase expires in %s"
1869
+ msgstr ""
1870
+
1871
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:225
1872
+ msgctxt "%s is replaced with the point amount and name."
1873
+ msgid "Received new request to purchase %s."
1874
+ msgstr ""
1875
+
1876
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
1877
+ msgid "First Name"
1878
+ msgstr ""
1879
+
1880
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
1881
+ msgid "Last Name"
1882
+ msgstr ""
1883
+
1884
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
1885
+ msgid "Address Line 1"
1886
+ msgstr ""
1887
+
1888
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
1889
+ msgid "Address Line 2"
1890
+ msgstr ""
1891
+
1892
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
1893
+ msgid "City"
1894
+ msgstr ""
1895
+
1896
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
1897
+ msgid "Zip"
1898
+ msgstr ""
1899
+
1900
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
1901
+ msgid "State"
1902
+ msgstr ""
1903
+
1904
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
1905
+ msgid "Country"
1906
+ msgstr ""
1907
+
1908
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
1909
+ msgid "Choose Country"
1910
+ msgstr ""
1911
+
1912
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:691
1913
+ msgctxt "buyCRED order description"
1914
+ msgid "Item"
1915
+ msgstr ""
1916
+
1917
+ #: addons/buy-creds/modules/buycred-module-pending.php:200
1918
+ #: addons/buy-creds/modules/buycred-module-pending.php:201
1919
+ #: addons/buy-creds/modules/buycred-module-pending.php:202
1920
+ #: addons/buy-creds/modules/buycred-module-pending.php:203
1921
+ #: addons/buy-creds/modules/buycred-module-pending.php:204
1922
+ #: addons/buy-creds/modules/buycred-module-pending.php:205
1923
+ #: addons/buy-creds/modules/buycred-module-pending.php:206
1924
+ #: addons/buy-creds/modules/buycred-module-pending.php:207
1925
+ #: addons/buy-creds/modules/buycred-module-pending.php:208
1926
+ msgid "Payment Updated."
1927
+ msgstr ""
1928
+
1929
+ #: addons/buy-creds/modules/buycred-module-pending.php:236
1930
+ msgid "Pending payment successfully credited to account."
1931
+ msgstr ""
1932
+
1933
+ #: addons/buy-creds/modules/buycred-module-pending.php:238
1934
+ msgid "Failed to credit the pending payment to account."
1935
+ msgstr ""
1936
+
1937
+ #: addons/buy-creds/modules/buycred-module-pending.php:457
1938
+ msgid "Pending Payment"
1939
+ msgstr ""
1940
+
1941
+ #: addons/buy-creds/modules/buycred-module-pending.php:495
1942
+ msgid "Trash"
1943
+ msgstr ""
1944
+
1945
+ #: addons/buy-creds/modules/buycred-module-pending.php:559
1946
+ msgid "Payer"
1947
+ msgstr ""
1948
+
1949
+ #: addons/buy-creds/modules/buycred-module-pending.php:668
1950
+ msgid "Pending request created."
1951
+ msgstr ""
1952
+
1953
+ #: addons/buy-creds/modules/buycred-module-pending.php:716
1954
+ msgid "Pending payment updated by %s"
1955
+ msgstr ""
1956
+
1957
+ #: addons/buy-creds/modules/buycred-module-core.php:138
1958
+ msgid "Bank Transfer"
1959
+ msgstr ""
1960
+
1961
+ #: addons/buy-creds/modules/buycred-module-core.php:1092
1962
+ msgid "Users exchange rate when buying points."
1963
+ msgstr ""
1964
+
1965
+ #: addons/buy-creds/modules/buycred-module-core.php:1103
1966
+ msgid "buyCRED Exchange Rates"
1967
+ msgstr ""
1968
+
1969
+ #: addons/buy-creds/modules/buycred-module-core.php:1113
1970
+ msgctxt "Points Name"
1971
+ msgid "Buying %s"
1972
+ msgstr ""
1973
+
1974
+ #: addons/buy-creds/modules/buycred-module-core.php:1116
1975
+ msgid "This point type is not for sale."
1976
+ msgstr ""
1977
+
1978
+ #: addons/buy-creds/modules/buycred-module-core.php:1128
1979
+ #: addons/buy-creds/modules/buycred-module-core.php:1143
1980
+ msgctxt "Buying Points"
1981
+ msgid "Buying %s"
1982
+ msgstr ""
1983
+
1984
+ #: addons/buy-creds/modules/buycred-module-core.php:1131
1985
+ msgctxt "Points Name"
1986
+ msgid "User can not buy %s"
1987
+ msgstr ""
1988
+
1989
+ #: addons/buy-creds/modules/buycred-module-core.php:1146
1990
+ msgid "Leave empty to use the default rate."
1991
+ msgstr ""
1992
+
1993
+ #: addons/buy-creds/modules/buycred-module-core.php:1519
1994
+ msgid "Pay Using"
1995
+ msgstr ""
1996
+
1997
+ #: addons/buy-creds/includes/buycred-functions.php:115
1998
+ msgid "Unknown Gateway"
1999
+ msgstr ""
2000
+
2001
+ #: addons/buy-creds/gateways/bank-transfer.php:139
2002
+ msgid "Continue"
2003
+ msgstr ""
2004
+
2005
+ #: addons/buy-creds/gateways/bank-transfer.php:167
2006
+ msgid "Checkout Logo"
2007
+ msgstr ""
2008
+
2009
+ #: addons/buy-creds/gateways/bank-transfer.php:173
2010
+ msgid "Bank Account Information"
2011
+ msgstr ""
2012
+
2013
+ #: addons/buy-creds/gateways/bank-transfer.php:177
2014
+ msgid "Bank transfer details to show the user on the checkout page."
2015
+ msgstr ""
2016
+
2017
+ #: addons/buy-creds/gateways/paypal-standard.php:256
2018
+ msgctxt "Return label. %s = Website name"
2019
+ msgid "Return to %s"
2020
+ msgstr ""
2021
+
2022
+ #. Description of the plugin
2023
+ msgid "An adaptive points management system for WordPress powered websites."
2024
+ msgstr ""
2025
+
2026
+ #: mycred.php:564
2027
+ msgid "%s Log Import"
2028
+ msgstr "Importation du journal %s"
2029
+
2030
+ #: mycred.php:565
2031
+ msgid "Import log entries via a CSV file."
2032
+ msgstr "Importation des données de connexion via un fichier CSV"
2033
+
2034
+ #: mycred.php:576
2035
+ msgid "%s Balance Import"
2036
+ msgstr "Import des soldes %s"
2037
+
2038
+ #: mycred.php:577
2039
+ msgid "Import balances."
2040
+ msgstr "Importer les soldes"
2041
+
2042
+ #: mycred.php:588
2043
+ msgid "%s CubePoints Import"
2044
+ msgstr "Importation CubePoints %s"
2045
+
2046
+ #: mycred.php:589 includes/importers/mycred-cubepoints.php:379
2047
+ msgid "Import CubePoints log entries and / or balances."
2048
+ msgstr "Importe les données de onnexion CubePoints et/ou les soldes"
2049
+
2050
+ #: mycred.php:631 modules/mycred-module-management.php:314
2051
+ #: modules/mycred-module-settings.php:426 modules/mycred-module-log.php:466
2052
+ #: addons/transfer/myCRED-addon-transfer.php:139
2053
+ #: addons/ranks/myCRED-addon-ranks.php:986
2054
+ #: addons/ranks/myCRED-addon-ranks.php:1570
2055
+ #: addons/badges/myCRED-addon-badges.php:702
2056
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:478
2057
+ msgid "Processing..."
2058
+ msgstr "Chargement en cours..."
2059
+
2060
+ #: mycred.php:632
2061
+ msgid "Sent"
2062
+ msgstr "Envoyer"
2063
+
2064
+ #: mycred.php:633
2065
+ msgid "Error - Try Again"
2066
+ msgstr "Erreur - essayez encore une fois"
2067
+
2068
+ #: mycred.php:765
2069
+ msgid "No CubePoints log exists."
2070
+ msgstr "Il n'existe aucune donnéee CubePoints"
2071
+
2072
+ #: mycred.php:816 mycred.php:817
2073
+ msgid "About %s"
2074
+ msgstr "&Agrave; propos de %s"
2075
+
2076
+ #: mycred.php:825 mycred.php:826
2077
+ msgid "Awesome People"
2078
+ msgstr "On les remercie"
2079
+
2080
+ #: mycred.php:863 modules/mycred-module-management.php:556
2081
+ #: addons/transfer/myCRED-addon-transfer.php:495
2082
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
2083
+ msgid "Balance"
2084
+ msgstr "Solde"
2085
+
2086
+ #: mycred.php:930 modules/mycred-module-management.php:471
2087
+ #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
2088
+ #: addons/buy-creds/modules/buycred-module-pending.php:460
2089
+ msgid "History"
2090
+ msgstr "Mes points"
2091
+
2092
+ #: mycred.php:986 mycred.php:1007
2093
+ #: addons/email-notices/myCRED-addon-email-notices.php:273
2094
+ #: addons/banking/services/mycred-service-interest.php:477
2095
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:537
2096
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
2097
+ msgid "Setup"
2098
+ msgstr "Configuration"
2099
+
2100
+ #: mycred.php:988 modules/mycred-module-settings.php:21
2101
+ #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
2102
+ #: modules/mycred-module-network.php:164
2103
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
2104
+ #: addons/buy-creds/modules/buycred-module-core.php:555
2105
+ msgid "Settings"
2106
+ msgstr "Configuration"
2107
+
2108
+ #: mycred.php:1029
2109
+ msgid ""
2110
+ "Make sure to backup your database and files before updating, in case "
2111
+ "anything goes wrong!"
2112
+ msgstr ""
2113
+ "Agissez prudemment en sauvegardant votre base de données et vos fichiers "
2114
+ "avant de lancer la mise à jour."
2115
+
2116
+ #: abstracts/mycred-abstract-hook.php:90
2117
+ msgid "This Hook has no settings"
2118
+ msgstr "Ce hook n'a pas de paramètre."
2119
+
2120
+ #: abstracts/mycred-abstract-hook.php:283
2121
+ #: abstracts/mycred-abstract-hook.php:354 includes/mycred-functions.php:2672
2122
+ msgid "No limit"
2123
+ msgstr "Illimité"
2124
+
2125
+ #: abstracts/mycred-abstract-hook.php:355
2126
+ msgid "Once every 24 hours"
2127
+ msgstr "Une fois toutes les 24h"
2128
+
2129
+ #: abstracts/mycred-abstract-hook.php:356
2130
+ msgid "Once every 7 days"
2131
+ msgstr "Une fois tous les 7 jours"
2132
+
2133
+ #: abstracts/mycred-abstract-hook.php:357
2134
+ msgid "Once per day (reset at midnight)"
2135
+ msgstr "Une fois par jour (remise à zéro à minuit)"
2136
+
2137
+ #: abstracts/mycred-abstract-hook.php:364
2138
+ #: addons/email-notices/myCRED-addon-email-notices.php:527
2139
+ #: addons/email-notices/myCRED-addon-email-notices.php:859
2140
+ #: addons/badges/myCRED-addon-badges.php:880
2141
+ #: addons/banking/abstracts/mycred-abstract-service.php:351
2142
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
2143
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
2144
+ #: addons/buy-creds/modules/buycred-module-core.php:380
2145
+ #: addons/buy-creds/modules/buycred-module-core.php:403
2146
+ #: addons/buy-creds/gateways/zombaio.php:406
2147
+ msgid "Select"
2148
+ msgstr "sélectionnez"
2149
+
2150
+ #: abstracts/mycred-abstract-module.php:400
2151
+ #: abstracts/mycred-abstract-module.php:410
2152
+ msgid "Surprise"
2153
+ msgstr "Surprise"
2154
+
2155
+ #: abstracts/mycred-abstract-module.php:528
2156
+ #: modules/mycred-module-network.php:98
2157
+ msgid "click to close"
2158
+ msgstr "cliquez pour fermer"
2159
+
2160
+ #: abstracts/mycred-abstract-module.php:529
2161
+ #: modules/mycred-module-network.php:99
2162
+ msgid "click to open"
2163
+ msgstr "cliquez pour ouvrir"
2164
+
2165
+ #: abstracts/mycred-abstract-module.php:562
2166
+ #: modules/mycred-module-network.php:155
2167
+ #: addons/email-notices/myCRED-addon-email-notices.php:1472
2168
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:451
2169
+ #: addons/buy-creds/modules/buycred-module-core.php:560
2170
+ msgid "Settings Updated"
2171
+ msgstr "Configuration mise à jour"
2172
+
2173
+ #: modules/mycred-module-management.php:101
2174
+ msgid "Update Balance"
2175
+ msgstr "Mettre à jour le solde"
2176
+
2177
+ #: modules/mycred-module-management.php:114
2178
+ msgid "User is excluded"
2179
+ msgstr "Cet utilisateur est exclu"
2180
+
2181
+ #: modules/mycred-module-management.php:122
2182
+ msgid "Log Entry can not be empty"
2183
+ msgstr "Le champ ne peut pas être vide."
2184
+
2185
+ #: modules/mycred-module-management.php:130 modules/mycred-module-log.php:225
2186
+ msgid "Amount can not be zero"
2187
+ msgstr "Le montant ne peut pas être zéro"
2188
+
2189
+ #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
2190
+ #: modules/mycred-module-log.php:914 includes/shortcodes/mycred_history.php:59
2191
+ #: includes/classes/class.query-export.php:263
2192
+ #: includes/classes/class.query-export.php:399
2193
+ #: includes/classes/class.query-log.php:370
2194
+ #: includes/classes/class.query-log.php:383
2195
+ #: addons/banking/services/mycred-service-payouts.php:740
2196
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:185
2197
+ #: addons/buy-creds/modules/buycred-module-core.php:752
2198
+ msgid "Date"
2199
+ msgstr "Daté"
2200
+
2201
+ #: modules/mycred-module-management.php:236
2202
+ #: addons/banking/services/mycred-service-interest.php:435
2203
+ #: addons/banking/services/mycred-service-interest.php:460
2204
+ #: addons/banking/services/mycred-service-payouts.php:746
2205
+ msgid "Time"
2206
+ msgstr "Durée"
2207
+
2208
+ #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
2209
+ #: includes/shortcodes/mycred_history.php:61
2210
+ #: includes/classes/class.query-export.php:263
2211
+ #: includes/classes/class.query-export.php:406
2212
+ #: includes/classes/class.query-log.php:372
2213
+ #: includes/classes/class.query-log.php:385
2214
+ msgid "Entry"
2215
+ msgstr "Motif"
2216
+
2217
+ #: modules/mycred-module-management.php:312
2218
+ msgid "Edit Users Balance"
2219
+ msgstr "Modifier le solde des utilisateurs"
2220
+
2221
+ #: modules/mycred-module-management.php:313
2222
+ #: modules/mycred-module-settings.php:431 modules/mycred-module-log.php:465
2223
+ #: addons/banking/myCRED-addon-banking.php:204
2224
+ msgid "Close"
2225
+ msgstr "fermer"
2226
+
2227
+ #: modules/mycred-module-management.php:451
2228
+ #: modules/mycred-module-management.php:569
2229
+ #: addons/sell-content/myCRED-addon-sell-content.php:268
2230
+ #: addons/buy-creds/modules/buycred-module-core.php:1130
2231
+ msgid "Excluded"
2232
+ msgstr "Exclus"
2233
+
2234
+ #: modules/mycred-module-management.php:461
2235
+ #: addons/coupons/myCRED-addon-coupons.php:307
2236
+ msgid "Total"
2237
+ msgstr "Total"
2238
+
2239
+ #: modules/mycred-module-management.php:472
2240
+ msgid "Adjust"
2241
+ msgstr "Ajustement"
2242
+
2243
+ #: modules/mycred-module-management.php:581
2244
+ #: modules/mycred-module-management.php:581
2245
+ #: includes/classes/class.query-log.php:1074
2246
+ msgid "Edit"
2247
+ msgstr "Modifier"
2248
+
2249
+ #: modules/mycred-module-management.php:581
2250
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
2251
+ #: addons/buy-creds/modules/buycred-module-pending.php:734
2252
+ msgid "Cancel"
2253
+ msgstr "Annuler"
2254
+
2255
+ #: modules/mycred-module-management.php:739
2256
+ #: addons/banking/services/mycred-service-payouts.php:553
2257
+ msgid "ID"
2258
+ msgstr "ID"
2259
+
2260
+ #: modules/mycred-module-management.php:751
2261
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:307
2262
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:332
2263
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:412
2264
+ msgid "Current Balance"
2265
+ msgstr "Solde actuel"
2266
+
2267
+ #: modules/mycred-module-management.php:766
2268
+ #: plugins/mycred-hook-affiliatewp.php:260
2269
+ #: includes/shortcodes/mycred_exchange.php:69
2270
+ #: includes/shortcodes/mycred_hook_table.php:80
2271
+ #: includes/classes/class.query-export.php:263
2272
+ #: includes/classes/class.query-export.php:383
2273
+ #: addons/transfer/includes/mycred-transfer-widgets.php:92
2274
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
2275
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
2276
+ #: addons/buy-creds/modules/buycred-module-pending.php:289
2277
+ #: addons/buy-creds/modules/buycred-module-pending.php:631
2278
+ #: addons/buy-creds/modules/buycred-module-pending.php:749
2279
+ msgid "Amount"
2280
+ msgstr "Montant"
2281
+
2282
+ #: modules/mycred-module-management.php:768
2283
+ msgid "A positive or negative value"
2284
+ msgstr "Une valeur positive ou négative"
2285
+
2286
+ #: modules/mycred-module-management.php:794 modules/mycred-module-log.php:933
2287
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:518
2288
+ msgid "Log Entry"
2289
+ msgstr "Journal d'activité"
2290
+
2291
+ #: modules/mycred-module-management.php:795
2292
+ #: addons/transfer/includes/mycred-transfer-widgets.php:79
2293
+ #: addons/transfer/includes/mycred-transfer-widgets.php:101
2294
+ #: addons/transfer/includes/mycred-transfer-widgets.php:105
2295
+ #: addons/transfer/includes/mycred-transfer-widgets.php:113
2296
+ msgid "optional"
2297
+ msgstr "optionnel"
2298
+
2299
+ #: modules/mycred-module-settings.php:138
2300
+ msgid "Accounts successfully reset"
2301
+ msgstr "Remise à zéro du compte réussie"
2302
+
2303
+ #: modules/mycred-module-settings.php:190
2304
+ msgid "No users found to export"
2305
+ msgstr "Aucun utilisateur à exporter"
2306
+
2307
+ #: modules/mycred-module-settings.php:427
2308
+ msgid ""
2309
+ "Warning! All entries in your log will be permanently removed! This can not "
2310
+ "be undone!"
2311
+ msgstr ""
2312
+ "Attention ! Toutes les entrées seront définitivement supprimées. Cette "
2313
+ "action ne pourra pas être annulée."
2314
+
2315
+ #: modules/mycred-module-settings.php:428
2316
+ msgid ""
2317
+ "All log entries belonging to deleted users will be permanently deleted! This "
2318
+ "can not be undone!"
2319
+ msgstr ""
2320
+ "Toutes les entrées appartenant aux utilisateurs supprimés seront "
2321
+ "définitivement détruites. Cette action ne pourra pas être annulée."
2322
+
2323
+ #: modules/mycred-module-settings.php:429
2324
+ msgid "Warning! All user balances will be set to zero! This can not be undone!"
2325
+ msgstr ""
2326
+ "Attention ! Les soldes de tous les utilisateurs seront remis à zéro. Cette "
2327
+ "action ne pourra pas être annulée."
2328
+
2329
+ #: modules/mycred-module-settings.php:430
2330
+ msgid "Done!"
2331
+ msgstr "Terminé !"
2332
+
2333
+ #: modules/mycred-module-settings.php:432
2334
+ msgid "Export users %plural%"
2335
+ msgstr "Exportation des %plural% des utilisateurs"
2336
+
2337
+ #: modules/mycred-module-settings.php:529
2338
+ msgid "%s Settings"
2339
+ msgstr "Configuration de %s"
2340
+
2341
+ #: modules/mycred-module-settings.php:538
2342
+ msgid "Core Settings"
2343
+ msgstr "Configuration du Core"
2344
+
2345
+ #: modules/mycred-module-settings.php:543 includes/mycred-setup.php:275
2346
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:460
2347
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2348
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
2349
+ msgid "Labels"
2350
+ msgstr "Intitulés"
2351
+
2352
+ #: modules/mycred-module-settings.php:561 includes/mycred-setup.php:293
2353
+ msgid "Format"
2354
+ msgstr "Formatage"
2355
+
2356
+ #: modules/mycred-module-settings.php:565 includes/mycred-setup.php:297
2357
+ msgid "Prefix"
2358
+ msgstr "Préfixe"
2359
+
2360
+ #: modules/mycred-module-settings.php:571 includes/mycred-setup.php:303
2361
+ msgid "Separators"
2362
+ msgstr "Séparateurs"
2363
+
2364
+ #: modules/mycred-module-settings.php:579 includes/mycred-setup.php:311
2365
+ msgid "Decimals"
2366
+ msgstr "Décimales"
2367
+
2368
+ #: modules/mycred-module-settings.php:585 includes/mycred-setup.php:317
2369
+ msgid "Suffix"
2370
+ msgstr "Suffixe"
2371
+
2372
+ #: modules/mycred-module-settings.php:592
2373
+ msgid "Tip"
2374
+ msgstr "Astuce"
2375
+
2376
+ #: modules/mycred-module-settings.php:599 includes/mycred-setup.php:328
2377
+ msgid "Security"
2378
+ msgstr "Sécurité"
2379
+
2380
+ #: modules/mycred-module-settings.php:646
2381
+ msgid "Delete log entries when user is deleted."
2382
+ msgstr ""
2383
+ "supprimer les données attachées lors de la suppression de l'utilisateur"
2384
+
2385
+ #: modules/mycred-module-settings.php:665
2386
+ msgid "Management"
2387
+ msgstr "Gestion des données"
2388
+
2389
+ #: modules/mycred-module-settings.php:677 modules/mycred-module-log.php:433
2390
+ msgid "Entries"
2391
+ msgstr "Entrées"
2392
+
2393
+ #: modules/mycred-module-settings.php:683
2394
+ #: modules/mycred-module-settings.php:708
2395
+ #: addons/ranks/myCRED-addon-ranks.php:1659
2396
+ #: addons/buy-creds/modules/buycred-module-pending.php:466
2397
+ #: addons/buy-creds/modules/buycred-module-pending.php:752
2398
+ msgid "Actions"
2399
+ msgstr "Actions"
2400
+
2401
+ #: modules/mycred-module-settings.php:686
2402
+ msgid "Empty Log"
2403
+ msgstr "Journal vide"
2404
+
2405
+ #: modules/mycred-module-settings.php:702
2406
+ #: addons/ranks/myCRED-addon-ranks.php:1076
2407
+ #: addons/badges/myCRED-addon-badges.php:400
2408
+ msgid "Users"
2409
+ msgstr "Utilisateurs"
2410
+
2411
+ #: modules/mycred-module-settings.php:710
2412
+ msgid "Set all to zero"
2413
+ msgstr "Tout remettre à zéro"
2414
+
2415
+ #: modules/mycred-module-settings.php:727 includes/mycred-widgets.php:573
2416
+ #: addons/transfer/myCRED-addon-transfer.php:383
2417
+ #: addons/sell-content/myCRED-addon-sell-content.php:437
2418
+ #: addons/transfer/includes/mycred-transfer-widgets.php:108
2419
+ #: addons/buy-creds/modules/buycred-module-core.php:336
2420
+ msgid "Point Types"
2421
+ msgstr "Types de Points"
2422
+
2423
+ #: modules/mycred-module-settings.php:741
2424
+ #: modules/mycred-module-settings.php:767
2425
+ #: modules/mycred-module-settings.php:797
2426
+ msgid "Meta Key"
2427
+ msgstr "Mot-clé"
2428
+
2429
+ #: modules/mycred-module-settings.php:747
2430
+ #: modules/mycred-module-settings.php:773
2431
+ #: modules/mycred-module-settings.php:803
2432
+ #: addons/email-notices/myCRED-addon-email-notices.php:575
2433
+ #: addons/gateway/carts/mycred-woocommerce.php:159
2434
+ msgid "Label"
2435
+ msgstr "Etiquette"
2436
+
2437
+ #: modules/mycred-module-settings.php:754
2438
+ #: modules/mycred-module-settings.php:780
2439
+ #: includes/classes/class.query-log.php:492
2440
+ #: includes/classes/class.query-log.php:1075
2441
+ #: addons/banking/services/mycred-service-payouts.php:472
2442
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
2443
+ msgid "Delete"
2444
+ msgstr "Suppirmer"
2445
+
2446
+ #: modules/mycred-module-settings.php:793
2447
+ msgid "Add New Type"
2448
+ msgstr "Ajouter un nouveau type"
2449
+
2450
+ #: modules/mycred-module-settings.php:821
2451
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:551
2452
+ #: addons/buy-creds/modules/buycred-module-core.php:613
2453
+ msgid "Update Settings"
2454
+ msgstr "Enregistrer la configuration"
2455
+
2456
+ #: modules/mycred-module-settings.php:830
2457
+ msgid "Identify users by"
2458
+ msgstr "Identifer les utilisateurs par"
2459
+
2460
+ #: modules/mycred-module-settings.php:836
2461
+ msgid "User ID"
2462
+ msgstr "ID utilisateur"
2463
+
2464
+ #: modules/mycred-module-settings.php:837
2465
+ msgid "User Email"
2466
+ msgstr "Email de l'utilisateur"
2467
+
2468
+ #: modules/mycred-module-settings.php:838
2469
+ msgid "User Login"
2470
+ msgstr "ID de l'utilisateur"
2471
+
2472
+ #: modules/mycred-module-settings.php:846
2473
+ msgid ""
2474
+ "Use ID if you intend to use this export as a backup of your current site "
2475
+ "while Email is recommended if you want to export to a different site."
2476
+ msgstr ""
2477
+ "Utilisez ID si vous avez l'intention d'utiliser l'exportation à titre de "
2478
+ "sauvegarde du site actuel. Nous vous recommandons d'utiliser l'adresse mail "
2479
+ "si vous comptez exploiter les données sur un autre site."
2480
+
2481
+ #: modules/mycred-module-settings.php:849
2482
+ msgid "Import Log Entry"
2483
+ msgstr "Import du journal d'entrées"
2484
+
2485
+ #: modules/mycred-module-settings.php:851
2486
+ msgid ""
2487
+ "Optional log entry to use if you intend to import this file in a different "
2488
+ "%s installation."
2489
+ msgstr ""
2490
+ "Entrées de journal optionnelles si vous voulez importer ce fichier dans une "
2491
+ "installation %s différente."
2492
+
2493
+ #: modules/mycred-module-settings.php:854 modules/mycred-module-export.php:236
2494
+ #: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
2495
+ msgid "Export"
2496
+ msgstr "Exporter"
2497
+
2498
+ #: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
2499
+ #: includes/mycred-setup.php:171
2500
+ msgid "Add-ons"
2501
+ msgstr "Modules"
2502
+
2503
+ #: modules/mycred-module-addons.php:175
2504
+ msgid "Give your users badges based on their interaction with your website."
2505
+ msgstr ""
2506
+ "Donner à vos utilisateurs des badges basés sur leurs interactions avec votre "
2507
+ "site."
2508
+
2509
+ #: modules/mycred-module-addons.php:186
2510
+ msgid ""
2511
+ "Setup recurring payouts or offer / charge interest on user account balances."
2512
+ msgstr ""
2513
+ "Paramétrez les paiements réguliers ou offres / pénalités et intérêts "
2514
+ "relatifs aux soldes de comptes de vos utilisateurs."
2515
+
2516
+ #: modules/mycred-module-addons.php:197
2517
+ msgid ""
2518
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
2519
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
2520
+ "also let your users buy points for other members."
2521
+ msgstr ""
2522
+ "Le module additionnel <strong>buy</strong>CRED permet l'achat de points aux "
2523
+ "utilisateurs titulaires d'un compte PayPal, Skrill (Moneybookers) ou "
2524
+ "NETbilling. buyCRED permet également à un utilisateur d'acheter des points "
2525
+ "pour un autre membre du site."
2526
+
2527
+ #: modules/mycred-module-addons.php:208
2528
+ msgid ""
2529
+ "The coupons add-on allows you to create coupons that users can use to add "
2530
+ "points to their accounts."
2531
+ msgstr ""
2532
+ "Le module de bons de réductions vous permet de créer des bons que les "
2533
+ "utilisateurs pourront utiliser pour ajouter des points à leur compte."
2534
+
2535
+ #: modules/mycred-module-addons.php:219
2536
+ msgid "Create email notices for any type of myCRED instance."
2537
+ msgstr "Créez des alertes par mail pour tout type d'action avec myCRED."
2538
+
2539
+ #: modules/mycred-module-addons.php:230
2540
+ msgid ""
2541
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
2542
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
2543
+ "Bookings: Event Espresso and Events Manager (free & pro)."
2544
+ msgstr ""
2545
+ "Permettez à vos utilisateurs de payer à l'aide de leur solde de points "
2546
+ "<strong>my</strong>CRED. Actuellement compatible avec WooCommerce, "
2547
+ "MarketPress et WP E-Commerce. Egalement compatible avec les systèmes de "
2548
+ "réservations Event Espresso et Events Manager (gratuit & pro)."
2549
+
2550
+ #: modules/mycred-module-addons.php:241
2551
+ msgid "Create pop-up notifications for when users gain or loose points."
2552
+ msgstr ""
2553
+ "Crée une pop-up de notification lorsqu'un utilisateur gagne ou perd des "
2554
+ "points."
2555
+
2556
+ #: modules/mycred-module-addons.php:253
2557
+ msgid ""
2558
+ "Create ranks for users reaching a certain number of %_plural% with the "
2559
+ "option to add logos for each rank."
2560
+ msgstr ""
2561
+ "Créez des classements pour les utilisateurs atteignants un certain nombre de "
2562
+ "%_plural%, avec en option l'ajout d'un logo signalant leur classement."
2563
+
2564
+ #: modules/mycred-module-addons.php:264
2565
+ msgid ""
2566
+ "This add-on allows you to sell posts, pages or any public post types on your "
2567
+ "website. You can either sell the entire content or using our shortcode, sell "
2568
+ "parts of your content allowing you to offer \"teasers\"."
2569
+ msgstr ""
2570
+ "Ce module vous permet de commercialiser n'importe quel article, page ou post "
2571
+ "type public publié sur votre site. Vous pouvez vendre la totalité d'un "
2572
+ "contenu ou proposer des extraits à titre d'échantillons à l'aide de nos "
2573
+ "shortcodes."
2574
+
2575
+ #: modules/mycred-module-addons.php:286
2576
+ msgid ""
2577
+ "Allow your users to send or \"donate\" points to other members by either "
2578
+ "using the mycred_transfer shortcode or the myCRED Transfer widget."
2579
+ msgstr ""
2580
+ "Autorisez vos membres à s'envoyer des points ou en faire don entre eux, en "
2581
+ "utilisant le shortcode mycred_transfer ou avec le widget myCRED Transfert."
2582
+
2583
+ #: modules/mycred-module-addons.php:330
2584
+ msgid "%s Add-ons"
2585
+ msgstr "Modules %s"
2586
+
2587
+ #: modules/mycred-module-addons.php:337
2588
+ msgid "Add-on Activated"
2589
+ msgstr "Module activé"
2590
+
2591
+ #: modules/mycred-module-addons.php:340
2592
+ msgid "Add-on Deactivated"
2593
+ msgstr "Module désactivé"
2594
+
2595
+ #: modules/mycred-module-addons.php:405
2596
+ msgid "Activate Add-on"
2597
+ msgstr "Activer le module"
2598
+
2599
+ #: modules/mycred-module-addons.php:406
2600
+ msgid "Activate"
2601
+ msgstr "Activer"
2602
+
2603
+ #: modules/mycred-module-addons.php:412
2604
+ msgid "Deactivate Add-on"
2605
+ msgstr "Désactiver le module"
2606
+
2607
+ #: modules/mycred-module-addons.php:413
2608
+ msgid "Deactivate"
2609
+ msgstr "Désactiver"
2610
+
2611
+ #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
2612
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:515
2613
+ msgid "Log"
2614
+ msgstr "Vue d&#39;ensemble"
2615
+
2616
+ #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:910
2617
+ #: includes/shortcodes/mycred_history.php:58
2618
+ #: includes/classes/class.query-export.php:263
2619
+ #: includes/classes/class.query-export.php:371
2620
+ #: includes/classes/class.query-log.php:369
2621
+ #: includes/classes/class.query-log.php:381
2622
+ #: addons/email-notices/myCRED-addon-email-notices.php:332
2623
+ #: addons/email-notices/myCRED-addon-email-notices.php:565
2624
+ msgid "User"
2625
+ msgstr "Utilisateur"
2626
+
2627
+ #: modules/mycred-module-log.php:173
2628
+ msgid "Row Deleted"
2629
+ msgstr "Ligne supprimée"
2630
+
2631
+ #: modules/mycred-module-log.php:232
2632
+ msgid "Log entry not found"
2633
+ msgstr "Entrée introuvable"
2634
+
2635
+ #: modules/mycred-module-log.php:464
2636
+ msgid "Edit Log Entry"
2637
+ msgstr "Modifier une entrée du journal"
2638
+
2639
+ #: modules/mycred-module-log.php:468
2640
+ msgid "Are you sure you want to delete this log entry? This can not be undone!"
2641
+ msgstr ""
2642
+ "Soyez prudent. L'action que vous vous apprêtez à effectuer ne pourra pas "
2643
+ "être annulée."
2644
+
2645
+ #: modules/mycred-module-log.php:502
2646
+ msgid "Search results for"
2647
+ msgstr "Résultat de la recherche pour"
2648
+
2649
+ #: modules/mycred-module-log.php:554
2650
+ msgid "%s Log"
2651
+ msgstr "Journal %s"
2652
+
2653
+ #: modules/mycred-module-log.php:670
2654
+ msgid "My %s History"
2655
+ msgstr "Mon historique %s"
2656
+
2657
+ #: modules/mycred-module-network.php:61 modules/mycred-module-network.php:62
2658
+ #: addons/gateway/carts/mycred-woocommerce.php:29
2659
+ msgid "myCRED"
2660
+ msgstr "myCred"
2661
+
2662
+ #: modules/mycred-module-network.php:71 modules/mycred-module-network.php:72
2663
+ msgid "Network Settings"
2664
+ msgstr "Paramètres du réseau"
2665
+
2666
+ #: modules/mycred-module-network.php:135
2667
+ msgid "%s Network"
2668
+ msgstr "Réseau %s"
2669
+
2670
+ #: modules/mycred-module-network.php:151
2671
+ msgid "Note! %s has not yet been setup."
2672
+ msgstr "Inofrmation: %s n'a pas encore été configuré."
2673
+
2674
+ #: modules/mycred-module-network.php:158
2675
+ msgid "Configure network settings for %s."
2676
+ msgstr "Configurer le r&eacute;seau pour %s"
2677
+
2678
+ #: modules/mycred-module-network.php:166
2679
+ msgid "Master Template"
2680
+ msgstr "Template principal"
2681
+
2682
+ #: modules/mycred-module-network.php:170 modules/mycred-module-network.php:184
2683
+ #: addons/buy-creds/gateways/bitpay.php:299
2684
+ msgid "Yes"
2685
+ msgstr "oui"
2686
+
2687
+ #: modules/mycred-module-network.php:174 modules/mycred-module-network.php:188
2688
+ #: addons/buy-creds/gateways/bitpay.php:298
2689
+ msgid "No"
2690
+ msgstr "non"
2691
+
2692
+ #: modules/mycred-module-network.php:177
2693
+ msgid ""
2694
+ "If enabled, %s will use your main site's settings for all other sites in "
2695
+ "your network."
2696
+ msgstr ""
2697
+ "Si activé, %s utilisera les paramètres du site principal pour tous les "
2698
+ "autres sites de votre réseau."
2699
+
2700
+ #: modules/mycred-module-network.php:180
2701
+ msgid "Central Logging"
2702
+ msgstr "Connexion centrale"
2703
+
2704
+ #: modules/mycred-module-network.php:191
2705
+ msgid "If enabled, %s will log all site actions in your main site's log."
2706
+ msgstr ""
2707
+ "Si activé, %s enregistrera toutes les actions du site parmi les activités du "
2708
+ "site principal."
2709
+
2710
+ #: modules/mycred-module-network.php:194
2711
+ msgid "Site Block"
2712
+ msgstr "Partie site"
2713
+
2714
+ #: modules/mycred-module-network.php:198
2715
+ msgid "Comma separated list of blog ids where %s is to be disabled."
2716
+ msgstr ""
2717
+ "ID, sépar&eacute;s par des virgules, des blogs ou %s doit &ecirc;tre "
2718
+ "d&eacute;sactiv&eacute;."
2719
+
2720
+ #: modules/mycred-module-network.php:210
2721
+ msgid "Save Network Settings"
2722
+ msgstr "Enregistrer les paramètres du réseau"
2723
+
2724
+ #: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
2725
+ #: includes/classes/class.query-log.php:1140
2726
+ msgid ""
2727
+ "Log entries are exported to a CSV file and depending on the number of "
2728
+ "entries selected, the process may take a few seconds."
2729
+ msgstr ""
2730
+ "Les données sont exportées dans un fichier CSV. Selon le nombre "
2731
+ "d'enregistrements sélectionnés, le processus peut durer un petit moment."
2732
+
2733
+ #: modules/mycred-module-export.php:353
2734
+ #: addons/sell-content/myCRED-addon-sell-content.php:253
2735
+ #: addons/sell-content/myCRED-addon-sell-content.php:337
2736
+ #: addons/buy-creds/modules/buycred-module-core.php:1115
2737
+ msgid "Disabled"
2738
+ msgstr "Désactivé"
2739
+
2740
+ #: modules/mycred-module-export.php:354
2741
+ #: addons/sell-content/myCRED-addon-sell-content.php:338
2742
+ msgid "Enabled"
2743
+ msgstr "Activé"
2744
+
2745
+ #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
2746
+ #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
2747
+ #: includes/importers/mycred-cubepoints.php:401
2748
+ #: includes/classes/class.query-export.php:263
2749
+ #: includes/classes/class.query-export.php:391
2750
+ #: addons/ranks/myCRED-addon-ranks.php:1079
2751
+ #: addons/ranks/myCRED-addon-ranks.php:1247
2752
+ #: addons/email-notices/myCRED-addon-email-notices.php:276
2753
+ #: addons/email-notices/myCRED-addon-email-notices.php:582
2754
+ #: addons/coupons/myCRED-addon-coupons.php:254
2755
+ #: addons/coupons/myCRED-addon-coupons.php:488
2756
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:483
2757
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:550
2758
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
2759
+ #: addons/gateway/carts/mycred-wpecommerce.php:383
2760
+ #: addons/gateway/carts/mycred-woocommerce.php:119
2761
+ #: addons/buy-creds/modules/buycred-module-pending.php:573
2762
+ #: addons/buy-creds/modules/buycred-module-pending.php:751
2763
+ msgid "Point Type"
2764
+ msgstr "Type de point"
2765
+
2766
+ #: modules/mycred-module-buddypress.php:31
2767
+ msgid "My History"
2768
+ msgstr "Mon historique"
2769
+
2770
+ #: modules/mycred-module-buddypress.php:32
2771
+ msgid "%s's History"
2772
+ msgstr "Historique de %s"
2773
+
2774
+ #: modules/mycred-module-buddypress.php:131
2775
+ msgid "Current balance"
2776
+ msgstr "Solde courant"
2777
+
2778
+ #: modules/mycred-module-buddypress.php:236
2779
+ #: modules/mycred-module-buddypress.php:249
2780
+ #: includes/classes/class.query-log.php:1194
2781
+ msgid "All"
2782
+ msgstr "Historique complet"
2783
+
2784
+ #: modules/mycred-module-buddypress.php:237
2785
+ #: includes/classes/class.query-log.php:1195
2786
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
2787
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
2788
+ msgid "Today"
2789
+ msgstr "Aujourd'hui"
2790
+
2791
+ #: modules/mycred-module-buddypress.php:238
2792
+ #: includes/classes/class.query-log.php:1196
2793
+ msgid "Yesterday"
2794
+ msgstr "Hier"
2795
+
2796
+ #: modules/mycred-module-buddypress.php:239
2797
+ #: includes/classes/class.query-log.php:1197
2798
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
2799
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
2800
+ msgid "This Week"
2801
+ msgstr "Cette semaine"
2802
+
2803
+ #: modules/mycred-module-buddypress.php:240
2804
+ #: includes/classes/class.query-log.php:1198
2805
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:192
2806
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:322
2807
+ msgid "This Month"
2808
+ msgstr "Ce mois"
2809
+
2810
+ #: modules/mycred-module-buddypress.php:350
2811
+ msgid "Go"
2812
+ msgstr "Go"
2813
+
2814
+ #: modules/mycred-module-buddypress.php:402
2815
+ #: addons/badges/myCRED-addon-badges.php:1146
2816
+ #: addons/badges/myCRED-addon-badges.php:1182
2817
+ #: addons/gateway/carts/mycred-woocommerce.php:151
2818
+ msgid "Do not show"
2819
+ msgstr "Ne pas afficher"
2820
+
2821
+ #: modules/mycred-module-buddypress.php:403
2822
+ #: addons/badges/myCRED-addon-badges.php:1147
2823
+ msgid "Include in Profile Header"
2824
+ msgstr ""
2825
+ "Inclure dans\n"
2826
+ " \n"
2827
+ "le profil\n"
2828
+ "-tête"
2829
+
2830
+ #: modules/mycred-module-buddypress.php:404
2831
+ #: addons/ranks/myCRED-addon-ranks.php:1455
2832
+ #: addons/badges/myCRED-addon-badges.php:1148
2833
+ msgid "Include under the \"Profile\" tab"
2834
+ msgstr "Inclure sous l'onglet \"Profil\""
2835
+
2836
+ #: modules/mycred-module-buddypress.php:405
2837
+ #: addons/badges/myCRED-addon-badges.php:1149
2838
+ msgid "Include under the \"Profile\" tab and Profile Header"
2839
+ msgstr ""
2840
+ "Inclure\n"
2841
+ " \n"
2842
+ "sous l'onglet\n"
2843
+ " \n"
2844
+ "Profil\n"
2845
+ " \n"
2846
+ "et\n"
2847
+ " \n"
2848
+ "\"\n"
2849
+ "Profil\n"
2850
+ "\" En-tête"
2851
+
2852
+ #: modules/mycred-module-buddypress.php:409
2853
+ #: addons/ranks/myCRED-addon-ranks.php:1453
2854
+ #: addons/ranks/myCRED-addon-ranks.php:1498
2855
+ msgid "Do not show."
2856
+ msgstr "Ne pas afficher."
2857
+
2858
+ #: modules/mycred-module-buddypress.php:410
2859
+ msgid "Show in Profile"
2860
+ msgstr "Afficher sur le profil"
2861
+
2862
+ #: modules/mycred-module-buddypress.php:427
2863
+ msgid "%singular% Balance"
2864
+ msgstr "Solde de %singular%"
2865
+
2866
+ #: modules/mycred-module-buddypress.php:449
2867
+ #: addons/ranks/myCRED-addon-ranks.php:1475
2868
+ #: addons/ranks/myCRED-addon-ranks.php:1520
2869
+ #: addons/notifications/myCRED-addon-notifications.php:199
2870
+ msgid "Template"
2871
+ msgstr "Texte à afficher"
2872
+
2873
+ #: modules/mycred-module-buddypress.php:454
2874
+ msgid "%plural% History"
2875
+ msgstr "Historique des %plural%"
2876
+
2877
+ #: modules/mycred-module-buddypress.php:471
2878
+ msgid "Members can view each others %_plural% history."
2879
+ msgstr "Les membres peuvent voir leurs historiques de %_plural% respectifs."
2880
+
2881
+ #: modules/mycred-module-buddypress.php:476
2882
+ msgid "Menu Title"
2883
+ msgstr "Titre du menu"
2884
+
2885
+ #: modules/mycred-module-buddypress.php:478
2886
+ msgid "Title shown to me"
2887
+ msgstr "Le titre que moi je peux voir"
2888
+
2889
+ #: modules/mycred-module-buddypress.php:483
2890
+ msgid "Title shown to others. Use %s to show the first name."
2891
+ msgstr ""
2892
+ "Le titre que voient les autres utilisateurs. Utilisez %s pour afficher le "
2893
+ "prénom."
2894
+
2895
+ #: modules/mycred-module-buddypress.php:488
2896
+ msgid "Menu Position"
2897
+ msgstr "Position du menu"
2898
+
2899
+ #: modules/mycred-module-buddypress.php:490
2900
+ msgid "Current menu positions:"
2901
+ msgstr "Positions actuelles du menu:"
2902
+
2903
+ #: modules/mycred-module-buddypress.php:495
2904
+ msgid "History URL slug"
2905
+ msgstr "Chemin vers l'historique"
2906
+
2907
+ #: modules/mycred-module-buddypress.php:497
2908
+ msgid "Do not use empty spaces!"
2909
+ msgstr "Sans espaces !"
2910
+
2911
+ #: modules/mycred-module-buddypress.php:502
2912
+ msgid "Number of history entries to show"
2913
+ msgstr "Nombre d'historiques à afficher"
2914
+
2915
+ #: plugins/mycred-hook-invite-anyone.php:15
2916
+ msgid "Invite Anyone Plugin"
2917
+ msgstr "Plugin Invite Anyone"
2918
+
2919
+ #: plugins/mycred-hook-invite-anyone.php:16
2920
+ msgid ""
2921
+ "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
2922
+ "accepted."
2923
+ msgstr ""
2924
+ "Attribution de %_plural% pour l'envoi d'invitations et/ou %_plural% quand "
2925
+ "une invitation est acceptée."
2926
+
2927
+ #: plugins/mycred-hook-invite-anyone.php:204
2928
+ msgid "%plural% for Sending An Invite"
2929
+ msgstr "%plural% pour l&#39;envoi d&#39;une invitation"
2930
+
2931
+ #: plugins/mycred-hook-invite-anyone.php:211
2932
+ #: plugins/mycred-hook-invite-anyone.php:232
2933
+ #: plugins/mycred-hook-wp-postratings.php:173
2934
+ #: plugins/mycred-hook-wp-postratings.php:192
2935
+ #: plugins/mycred-hook-gravityforms.php:165
2936
+ #: plugins/mycred-hook-simplepress.php:309
2937
+ #: plugins/mycred-hook-simplepress.php:322
2938
+ #: plugins/mycred-hook-simplepress.php:339
2939
+ #: plugins/mycred-hook-simplepress.php:357
2940
+ #: plugins/mycred-hook-buddypress.php:621
2941
+ #: plugins/mycred-hook-buddypress.php:638
2942
+ #: plugins/mycred-hook-buddypress.php:655
2943
+ #: plugins/mycred-hook-buddypress.php:672
2944
+ #: plugins/mycred-hook-buddypress.php:692
2945
+ #: plugins/mycred-hook-buddypress.php:705
2946
+ #: plugins/mycred-hook-buddypress.php:722
2947
+ #: plugins/mycred-hook-buddypress.php:735
2948
+ #: plugins/mycred-hook-buddypress.php:752
2949
+ #: plugins/mycred-hook-buddypress.php:765
2950
+ #: plugins/mycred-hook-buddypress.php:782
2951
+ #: plugins/mycred-hook-buddypress.php:799
2952
+ #: plugins/mycred-hook-buddypress.php:1429
2953
+ #: plugins/mycred-hook-buddypress.php:1442
2954
+ #: plugins/mycred-hook-buddypress.php:1459
2955
+ #: plugins/mycred-hook-buddypress.php:1476
2956
+ #: plugins/mycred-hook-buddypress.php:1493
2957
+ #: plugins/mycred-hook-buddypress.php:1510
2958
+ #: plugins/mycred-hook-buddypress.php:1528
2959
+ #: plugins/mycred-hook-buddypress.php:1541
2960
+ #: plugins/mycred-hook-buddypress.php:1558
2961
+ #: plugins/mycred-hook-buddypress.php:1575
2962
+ #: plugins/mycred-hook-buddypress.php:1592
2963
+ #: plugins/mycred-hook-affiliatewp.php:229
2964
+ #: plugins/mycred-hook-affiliatewp.php:246
2965
+ #: plugins/mycred-hook-sharethis.php:267
2966
+ #: plugins/mycred-hook-buddypress-media.php:316
2967
+ #: plugins/mycred-hook-buddypress-media.php:330
2968
+ #: plugins/mycred-hook-buddypress-media.php:344
2969
+ #: plugins/mycred-hook-buddypress-media.php:357
2970
+ #: plugins/mycred-hook-buddypress-media.php:367
2971
+ #: plugins/mycred-hook-buddypress-media.php:377
2972
+ #: plugins/mycred-hook-contact-form7.php:168
2973
+ #: plugins/mycred-hook-jetpack.php:545 plugins/mycred-hook-jetpack.php:558
2974
+ #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:456
2975
+ #: plugins/mycred-hook-bbPress.php:473 plugins/mycred-hook-bbPress.php:491
2976
+ #: plugins/mycred-hook-bbPress.php:508 plugins/mycred-hook-bbPress.php:525
2977
+ #: plugins/mycred-hook-bbPress.php:551 plugins/mycred-hook-badgeOS.php:336
2978
+ #: addons/badges/myCRED-addon-badges.php:949
2979
+ msgid "Log template"
2980
+ msgstr "Texte à afficher"
2981
+
2982
+ #: plugins/mycred-hook-invite-anyone.php:216
2983
+ #: plugins/mycred-hook-invite-anyone.php:219
2984
+ #: plugins/mycred-hook-invite-anyone.php:237
2985
+ #: plugins/mycred-hook-invite-anyone.php:240
2986
+ #: plugins/mycred-hook-wp-postratings.php:165
2987
+ #: plugins/mycred-hook-wp-postratings.php:184
2988
+ #: plugins/mycred-hook-gravityforms.php:160
2989
+ #: plugins/mycred-hook-simplepress.php:304
2990
+ #: plugins/mycred-hook-simplepress.php:334
2991
+ #: plugins/mycred-hook-buddypress.php:616
2992
+ #: plugins/mycred-hook-buddypress.php:633
2993
+ #: plugins/mycred-hook-buddypress.php:650
2994
+ #: plugins/mycred-hook-buddypress.php:667
2995
+ #: plugins/mycred-hook-buddypress.php:684
2996
+ #: plugins/mycred-hook-buddypress.php:717
2997
+ #: plugins/mycred-hook-buddypress.php:747
2998
+ #: plugins/mycred-hook-buddypress.php:777
2999
+ #: plugins/mycred-hook-buddypress.php:794
3000
+ #: plugins/mycred-hook-buddypress.php:1454
3001
+ #: plugins/mycred-hook-buddypress.php:1471
3002
+ #: plugins/mycred-hook-buddypress.php:1488
3003
+ #: plugins/mycred-hook-buddypress.php:1505
3004
+ #: plugins/mycred-hook-buddypress.php:1523
3005
+ #: plugins/mycred-hook-buddypress.php:1553
3006
+ #: plugins/mycred-hook-buddypress.php:1570
3007
+ #: plugins/mycred-hook-buddypress.php:1587
3008
+ #: plugins/mycred-hook-affiliatewp.php:241
3009
+ #: plugins/mycred-hook-events-manager-light.php:205
3010
+ #: plugins/mycred-hook-sharethis.php:262
3011
+ #: plugins/mycred-hook-buddypress-media.php:312
3012
+ #: plugins/mycred-hook-buddypress-media.php:326
3013
+ #: plugins/mycred-hook-buddypress-media.php:340
3014
+ #: plugins/mycred-hook-wp-favorite-posts.php:222
3015
+ #: plugins/mycred-hook-wp-favorite-posts.php:240
3016
+ #: plugins/mycred-hook-contact-form7.php:163
3017
+ #: plugins/mycred-hook-bbPress.php:438 plugins/mycred-hook-bbPress.php:468
3018
+ #: plugins/mycred-hook-bbPress.php:503 plugins/mycred-hook-bbPress.php:520
3019
+ #: plugins/mycred-hook-woocommerce.php:336
3020
+ #: includes/shortcodes/mycred_hook_table.php:81
3021
+ #: addons/transfer/myCRED-addon-transfer.php:478
3022
+ msgid "Limit"
3023
+ msgstr "Limite d'attribution"
3024
+
3025
+ #: plugins/mycred-hook-invite-anyone.php:224
3026
+ msgid "%plural% for Accepting An Invite"
3027
+ msgstr "%plural% pour acceptation d&#39;une invitation"
3028
+
3029
+ #: plugins/mycred-hook-invite-anyone.php:228
3030
+ msgid "%plural% for each invited user that accepts an invitation."
3031
+ msgstr ""
3032
+ "%plural% pour chaque utilisateur invit&eacute; acceptant une invitation"
3033
+
3034
+ #: plugins/mycred-hook-wp-polls.php:15
3035
+ msgid "WP-Polls"
3036
+ msgstr "WP-Polls"
3037
+
3038
+ #: plugins/mycred-hook-wp-polls.php:16
3039
+ msgid "Awards %_plural% for users voting in polls."
3040
+ msgstr ""
3041
+ "Attribuer des %_plural% aux utilisateurs répondants aux sondages.Attribuer "
3042
+ "des %_plural% aux utilisateurs répondants aux sondages."
3043
+
3044
+ #: plugins/mycred-hook-wp-polls.php:154
3045
+ #: plugins/mycred-hook-events-manager-light.php:209
3046
+ #: plugins/mycred-hook-events-manager-light.php:222
3047
+ #: plugins/mycred-hook-wp-favorite-posts.php:226
3048
+ #: plugins/mycred-hook-wp-favorite-posts.php:244
3049
+ #: plugins/mycred-hook-wp-favorite-posts.php:258
3050
+ #: plugins/mycred-hook-wp-favorite-posts.php:271
3051
+ #: plugins/mycred-hook-woocommerce.php:340 plugins/mycred-hook-badgeOS.php:143
3052
+ #: plugins/mycred-hook-badgeOS.php:145 plugins/mycred-hook-badgeOS.php:156
3053
+ #: addons/coupons/myCRED-addon-coupons.php:661
3054
+ #: addons/banking/services/mycred-service-interest.php:510
3055
+ #: addons/banking/services/mycred-service-payouts.php:710
3056
+ #: addons/gateway/carts/mycred-wpecommerce.php:400
3057
+ #: addons/gateway/carts/mycred-woocommerce.php:103
3058
+ #: addons/gateway/carts/mycred-woocommerce.php:175
3059
+ #: addons/buy-creds/modules/buycred-module-core.php:357
3060
+ #: addons/buy-creds/modules/buycred-module-core.php:420
3061
+ msgid "Log Template"
3062
+ msgstr "Texte à afficher"
3063
+
3064
+ #: plugins/mycred-hook-gravityforms.php:15
3065
+ msgid "Gravityform Submissions"
3066
+ msgstr "Soumissions avec Gravityform"
3067
+
3068
+ #: plugins/mycred-hook-gravityforms.php:16
3069
+ msgid "Awards %_plural% for successful form submissions."
3070
+ msgstr "Attribution de %_plural% pour des soumissions réussies de formulaires"
3071
+
3072
+ #: plugins/mycred-hook-gravityforms.php:129
3073
+ #: plugins/mycred-hook-contact-form7.php:130
3074
+ msgid "No forms found."
3075
+ msgstr "Aucun formulaire n'a été trouvé."
3076
+
3077
+ #: plugins/mycred-hook-simplepress.php:16
3078
+ msgid "Awards %_plural% for Simple:Press actions."
3079
+ msgstr "Attribution de %_plural% pour les actions avec SimplePress"
3080
+
3081
+ #: plugins/mycred-hook-simplepress.php:298 plugins/mycred-hook-bbPress.php:462
3082
+ msgid "%plural% for New Topic"
3083
+ msgstr "%plural% pour un nouveau sujet"
3084
+
3085
+ #: plugins/mycred-hook-simplepress.php:315 plugins/mycred-hook-bbPress.php:484
3086
+ msgid "%plural% for Topic Deletion"
3087
+ msgstr "%plural% pour suppression d'un message de forum"
3088
+
3089
+ #: plugins/mycred-hook-simplepress.php:328
3090
+ msgid "%plural% for New Topic Post"
3091
+ msgstr "%plural% pour la publication d'un nouveau sujet"
3092
+
3093
+ #: plugins/mycred-hook-simplepress.php:346
3094
+ msgid "Topic authors can receive %_plural% for posting on their own Topic"
3095
+ msgstr ""
3096
+ "L'auteur d'un sujet peut recevoir des %_plural% quand il répond à son propre "
3097
+ "sujet."
3098
+
3099
+ #: plugins/mycred-hook-simplepress.php:350
3100
+ msgid "%plural% for Topic Post Deletion"
3101
+ msgstr "%plural% pour suppression d'un sujet"
3102
+
3103
+ #: plugins/mycred-hook-buddypress.php:16
3104
+ msgid "BuddyPress: Members"
3105
+ msgstr "BuddyPress: Membres"
3106
+
3107
+ #: plugins/mycred-hook-buddypress.php:17
3108
+ msgid "Awards %_plural% for profile related actions."
3109
+ msgstr "Attribution de %_plural% pour des actions relatives aux profils"
3110
+
3111
+ #: plugins/mycred-hook-buddypress.php:24
3112
+ msgid "BuddyPress: Groups"
3113
+ msgstr "BuddyPress: Groupes"
3114
+
3115
+ #: plugins/mycred-hook-buddypress.php:25
3116
+ msgid ""
3117
+ "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
3118
+ "zero to disable a specific hook."
3119
+ msgstr ""
3120
+ "Attribution de %_plural% pour des actions relatives aux groupes. Utilisez "
3121
+ "une valeur négative ou zéro pour désactiver un hook spécifique."
3122
+
3123
+ #: plugins/mycred-hook-buddypress.php:307
3124
+ #: addons/sell-content/myCRED-addon-sell-content.php:591
3125
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:636
3126
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
3127
+ #: addons/gateway/carts/mycred-wpecommerce.php:415
3128
+ msgid "Insufficient Funds"
3129
+ msgstr "Fonds insuffisants"
3130
+
3131
+ #: plugins/mycred-hook-buddypress.php:678
3132
+ #: includes/classes/class.query-log.php:1564
3133
+ msgid "New Friendship"
3134
+ msgstr "Nouvel amis"
3135
+
3136
+ #: plugins/mycred-hook-buddypress.php:728
3137
+ #: includes/classes/class.query-log.php:1552
3138
+ msgid "Deleted Comment"
3139
+ msgstr "Commentaire supprimé"
3140
+
3141
+ #: plugins/mycred-hook-buddypress.php:788
3142
+ #: includes/classes/class.query-log.php:1571
3143
+ msgid "Sending Gift"
3144
+ msgstr "Envoie d'un cadeau"
3145
+
3146
+ #: plugins/mycred-hook-buddypress.php:1415
3147
+ msgid "%plural% for Creating Groups"
3148
+ msgstr "%plural% pour cr&eacute;ation de groupe"
3149
+
3150
+ #: plugins/mycred-hook-buddypress.php:1419
3151
+ msgid ""
3152
+ "If you use a negative value and the user does not have enough %_plural% the "
3153
+ "\"Create Group\" button will be disabled."
3154
+ msgstr ""
3155
+ "Si vous utilisez une valeur négative et que l'utilisateur n'a pas "
3156
+ "suffisamment de %_plural%, le bouton \"Créer un groupe\" sera désactivé."
3157
+
3158
+ #: plugins/mycred-hook-buddypress.php:1423
3159
+ msgid "Number of members before awarding %_plural%"
3160
+ msgstr ""
3161
+ "Le nombre de membres devant être inscrits au groupe avant d'obtenir des "
3162
+ "%_plural%"
3163
+
3164
+ #: plugins/mycred-hook-buddypress.php:1425
3165
+ msgid "Use zero to award %_plural% when group is created."
3166
+ msgstr "Utilisez zéro pour attribuer des %_plural% dès la création du groupe."
3167
+
3168
+ #: plugins/mycred-hook-buddypress.php:1435
3169
+ msgid "%plural% for Deleting Groups"
3170
+ msgstr "%plural% pour une suppression de groupe"
3171
+
3172
+ #: plugins/mycred-hook-buddypress.php:1448
3173
+ msgid "%plural% for New Forum Topic"
3174
+ msgstr "%plural% pour un nouveau sujet de forum"
3175
+
3176
+ #: plugins/mycred-hook-buddypress.php:1465
3177
+ msgid "%plural% for Editing Forum Topic"
3178
+ msgstr "%plural% pour modifier un sujet de forum"
3179
+
3180
+ #: plugins/mycred-hook-buddypress.php:1482
3181
+ msgid "%plural% for New Forum Post"
3182
+ msgstr "%plural% pour un nouveau message sur un forum"
3183
+
3184
+ #: plugins/mycred-hook-buddypress.php:1499
3185
+ msgid "%plural% for Editing Forum Post"
3186
+ msgstr "%plural% pour la modification d&#39;un message de forum"
3187
+
3188
+ #: plugins/mycred-hook-buddypress.php:1516
3189
+ msgid "%plural% for Joining Groups"
3190
+ msgstr "%plural% pour une adh&eacute;sion &agrave; un groupe"
3191
+
3192
+ #: plugins/mycred-hook-buddypress.php:1520
3193
+ msgid ""
3194
+ "If you use a negative value and the user does not have enough %_plural% the "
3195
+ "\"Join Group\" button will be disabled."
3196
+ msgstr ""
3197
+ "Si vous utilisez une valeur négative et que l'utilisateur n'a pas "
3198
+ "suffisamment de %_plural%, le bouton \"Rejoindre le groupe\" sera désactivé."
3199
+
3200
+ #: plugins/mycred-hook-buddypress.php:1534
3201
+ msgid "%plural% for Leaving Groups"
3202
+ msgstr "%plural% pour quitter un groupe"
3203
+
3204
+ #: plugins/mycred-hook-buddypress.php:1547
3205
+ msgid "%plural% for New Group Avatar"
3206
+ msgstr "%plural% pour un nouvel avatar de groupe"
3207
+
3208
+ #: plugins/mycred-hook-buddypress.php:1581
3209
+ msgid "%plural% for New Group Comment"
3210
+ msgstr "%plural% pour un nouveau commentaire dans un groupe"
3211
+
3212
+ #: plugins/mycred-hook-affiliatewp.php:235
3213
+ msgid "Referring Visitors"
3214
+ msgstr "Visiteurs réferants"
3215
+
3216
+ #: plugins/mycred-hook-events-manager-light.php:15
3217
+ msgid "Events Manager"
3218
+ msgstr "Events Manager"
3219
+
3220
+ #: plugins/mycred-hook-events-manager-light.php:16
3221
+ msgid "Awards %_plural% for users attending events."
3222
+ msgstr "Attribuer des %_plural% aux utilisateurs suivants un événement."
3223
+
3224
+ #: plugins/mycred-hook-events-manager-light.php:199
3225
+ msgid "Attending Event"
3226
+ msgstr "Evénement suivi"
3227
+
3228
+ #: plugins/mycred-hook-events-manager-light.php:216
3229
+ msgid "Cancelling Attendance"
3230
+ msgstr "Annuler le suivi"
3231
+
3232
+ #: plugins/mycred-hook-sharethis.php:15
3233
+ msgid "%plural% for Sharing"
3234
+ msgstr "%plural% pour un partage"
3235
+
3236
+ #: plugins/mycred-hook-sharethis.php:16
3237
+ msgid ""
3238
+ "Awards %_plural% for users sharing / liking your website content to popular "
3239
+ "social media sites."
3240
+ msgstr ""
3241
+ "Attribution de %_plural% pour les utilisateurs partageant/aimant le contenu "
3242
+ "de votre siteweb sur les réseaux sociaux."
3243
+
3244
+ #: plugins/mycred-hook-sharethis.php:217
3245
+ msgid "Your ShareThis public key is not set."
3246
+ msgstr "Votre clef public SHARETHIS n'est pas fixé."
3247
+
3248
+ #: plugins/mycred-hook-sharethis.php:222
3249
+ msgid "No ShareThis services detected. Please check your installation."
3250
+ msgstr ""
3251
+ "Pas de services SHARETHIS détecté. S'il vous plait, vérifiez votre "
3252
+ "installation."
3253
+
3254
+ #: plugins/mycred-hook-buddypress-media.php:15
3255
+ msgid "rtMedia Galleries"
3256
+ msgstr "Galeries rtMédia"
3257
+
3258
+ #: plugins/mycred-hook-buddypress-media.php:16
3259
+ msgid ""
3260
+ "Award / Deduct %_plural% for users creating albums or uploading new photos."
3261
+ msgstr ""
3262
+ "Ajout/supression de %_plural% pour les utilisateurs créant ou téléchargeant "
3263
+ "de nouvelles photos"
3264
+
3265
+ #: plugins/mycred-hook-buddypress-media.php:305
3266
+ msgid "New Media Upload"
3267
+ msgstr "Ajouter un nouveau média"
3268
+
3269
+ #: plugins/mycred-hook-buddypress-media.php:308
3270
+ #: includes/classes/class.query-log.php:1586
3271
+ msgid "Photo Upload"
3272
+ msgstr "Télécharger la photo"
3273
+
3274
+ #: plugins/mycred-hook-buddypress-media.php:322
3275
+ #: includes/classes/class.query-log.php:1587
3276
+ msgid "Video Upload"
3277
+ msgstr "Télécharger la vidéo"
3278
+
3279
+ #: plugins/mycred-hook-buddypress-media.php:336
3280
+ #: includes/classes/class.query-log.php:1588
3281
+ msgid "Music Upload"
3282
+ msgstr "Télécharger la musique"
3283
+
3284
+ #: plugins/mycred-hook-buddypress-media.php:350
3285
+ msgid "Delete Media"
3286
+ msgstr "supprimer le média"
3287
+
3288
+ #: plugins/mycred-hook-buddypress-media.php:353
3289
+ msgid "Delete Photo"
3290
+ msgstr "Supprimer la photo"
3291
+
3292
+ #: plugins/mycred-hook-buddypress-media.php:363
3293
+ msgid "Delete Video"
3294
+ msgstr "Supprimer la vidéo"
3295
+
3296
+ #: plugins/mycred-hook-buddypress-media.php:373
3297
+ msgid "Delete Music"
3298
+ msgstr "Supprimer la musique"
3299
+
3300
+ #: plugins/mycred-hook-wp-favorite-posts.php:15
3301
+ msgid "WP Favorite Posts"
3302
+ msgstr "WP Favorite Posts"
3303
+
3304
+ #: plugins/mycred-hook-wp-favorite-posts.php:16
3305
+ msgid "Awards %_plural% for users adding posts to their favorites."
3306
+ msgstr ""
3307
+ "Attribuer des %_plural% aux utilisateurs ajoutants un article à leurs "
3308
+ "favoris."
3309
+
3310
+ #: plugins/mycred-hook-wp-favorite-posts.php:216
3311
+ msgid "Adding Content to Favorites"
3312
+ msgstr "Ajouter ce contenu aux Favoris"
3313
+
3314
+ #: plugins/mycred-hook-wp-favorite-posts.php:252
3315
+ msgid "Removing Content from Favorites"
3316
+ msgstr "Retirer ce contenu des Favoris"
3317
+
3318
+ #: plugins/mycred-hook-contact-form7.php:15
3319
+ msgid "Contact Form 7 Form Submissions"
3320
+ msgstr "Envoi de formulaires avec Contact Form 7"
3321
+
3322
+ #: plugins/mycred-hook-contact-form7.php:16
3323
+ msgid "Awards %_plural% for successful form submissions (by logged in users)."
3324
+ msgstr ""
3325
+ "Attribution de %_plural% pour chaque formulaire soumis avec succès (par les "
3326
+ "utilisateurs connectés)."
3327
+
3328
+ #: plugins/mycred-hook-jetpack.php:15
3329
+ msgid "Jetpack Subscriptions"
3330
+ msgstr "Abonnements JetPack"
3331
+
3332
+ #: plugins/mycred-hook-jetpack.php:16
3333
+ msgid ""
3334
+ "Awards %_plural% for users signing up for site or comment updates using "
3335
+ "Jetpack."
3336
+ msgstr ""
3337
+ "Attribuer des %_plural% aux utilisateurs qui s'inscrivent au site ou qui "
3338
+ "commentent des notes en utilisant JetPack."
3339
+
3340
+ #: plugins/mycred-hook-jetpack.php:538
3341
+ msgid "Site Subscriptions"
3342
+ msgstr "Abonnements au site"
3343
+
3344
+ #: plugins/mycred-hook-jetpack.php:551
3345
+ msgid "Comment Subscriptions"
3346
+ msgstr "Abonnements aux commentaires"
3347
+
3348
+ #: plugins/mycred-hook-bbPress.php:16
3349
+ msgid "Awards %_plural% for bbPress actions."
3350
+ msgstr "Attribution de %_plural% pour des actions relatives à bbPress"
3351
+
3352
+ #: plugins/mycred-hook-bbPress.php:432
3353
+ msgid "%plural% for New Forum"
3354
+ msgstr "%plural% pour un nouveau forum"
3355
+
3356
+ #: plugins/mycred-hook-bbPress.php:449
3357
+ msgid "%plural% for Forum Deletion"
3358
+ msgstr "%plural% pour suppression sur le forum"
3359
+
3360
+ #: plugins/mycred-hook-bbPress.php:480
3361
+ msgid "Forum authors can receive %_plural% for creating new topics."
3362
+ msgstr ""
3363
+ "Les auteurs de forum percoivent des %_plural% pour la création de nouveaux "
3364
+ "sujets."
3365
+
3366
+ #: plugins/mycred-hook-bbPress.php:497
3367
+ msgid "%plural% for Favorited Topic"
3368
+ msgstr "%plural% pour l&#39;ajout d&#39;un sujet de forum aux Favoris"
3369
+
3370
+ #: plugins/mycred-hook-bbPress.php:514
3371
+ msgid "%plural% for New Reply"
3372
+ msgstr "%plural% pour une nouvelle réponse"
3373
+
3374
+ #: plugins/mycred-hook-bbPress.php:532
3375
+ msgid "Topic authors can receive %_plural% for replying to their own Topic"
3376
+ msgstr ""
3377
+ "Attribuer des %_plural% à l'auteur d'un sujet répondant à son propre sujet."
3378
+
3379
+ #: plugins/mycred-hook-bbPress.php:536
3380
+ msgid "Show users %_plural% balance in replies"
3381
+ msgstr "Afficher le relevé de %_plural% dans les réponses des utilisateurs"
3382
+
3383
+ #: plugins/mycred-hook-bbPress.php:544
3384
+ msgid "%plural% for Reply Deletion"
3385
+ msgstr "%plural% pour la suppression d'un commentaire"
3386
+
3387
+ #: plugins/mycred-hook-woocommerce.php:87
3388
+ msgid "Reward with %plural%"
3389
+ msgstr "Récompensez-les avec %plural%"
3390
+
3391
+ #: plugins/mycred-hook-woocommerce.php:216
3392
+ msgid "WooCommerce Product Reviews"
3393
+ msgstr "Produits WooCommerce revus"
3394
+
3395
+ #: plugins/mycred-hook-woocommerce.php:217
3396
+ msgid ""
3397
+ "Awards %_plural% for users leaving reviews on your WooCommerce products."
3398
+ msgstr ""
3399
+ "Attribution de %_plural% pour vos utilisateurs quittant les avis sur les "
3400
+ "produits WooCommerce."
3401
+
3402
+ #: plugins/mycred-hook-badgeOS.php:15
3403
+ msgid "BadgeOS"
3404
+ msgstr "BadgeOS"
3405
+
3406
+ #: plugins/mycred-hook-badgeOS.php:16
3407
+ msgid ""
3408
+ "Default settings for each BadgeOS Achievement type. These settings may be "
3409
+ "overridden for individual achievement type."
3410
+ msgstr ""
3411
+ "Configuration par défaut de chaque type de réalisation BadgeOS. Ces "
3412
+ "paramètres peuvent être remplacés individuellement à partir de chaque type."
3413
+
3414
+ #: plugins/mycred-hook-badgeOS.php:121
3415
+ msgid ""
3416
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
3417
+ "feature."
3418
+ msgstr ""
3419
+ "Veuillez param&eacute;trer votre <a href=\"%s\">configuration par d&eacute;"
3420
+ "faut</a> avant d&#39;utiliser ce service."
3421
+
3422
+ #: plugins/mycred-hook-badgeOS.php:137 plugins/mycred-hook-badgeOS.php:139
3423
+ msgid "%plural% to Award"
3424
+ msgstr "Attribution de %_plural%"
3425
+
3426
+ #: plugins/mycred-hook-badgeOS.php:141
3427
+ msgid "Use zero to disable"
3428
+ msgstr "Utilisez zéro pour désactiver"
3429
+
3430
+ #: plugins/mycred-hook-badgeOS.php:154
3431
+ msgid "Deduction Log Template"
3432
+ msgstr "Texte pour le retrait de points"
3433
+
3434
+ #: plugins/mycred-hook-badgeOS.php:315
3435
+ msgid "Default %s for %s"
3436
+ msgstr "%s pour %s par d&eacute;faut"
3437
+
3438
+ #: plugins/mycred-hook-badgeOS.php:322
3439
+ msgid "Use zero to disable users gaining %_plural%"
3440
+ msgstr "Utilisez zéro pour désactiver les utilisateurs obtenant des %_plural%"
3441
+
3442
+ #: plugins/mycred-hook-badgeOS.php:326
3443
+ msgid "Default Log template"
3444
+ msgstr "Vue d'ensemble par défaut"
3445
+
3446
+ #: includes/mycred-setup.php:50
3447
+ msgid "myCRED needs your attention."
3448
+ msgstr "myCRED requiert votre attention."
3449
+
3450
+ #: includes/mycred-setup.php:50
3451
+ msgid "Run Setup"
3452
+ msgstr "Démarrer l'installation"
3453
+
3454
+ #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
3455
+ msgid "myCRED Setup"
3456
+ msgstr "Installation de myCRED"
3457
+
3458
+ #: includes/mycred-setup.php:105
3459
+ #: addons/sell-content/myCRED-addon-sell-content.php:490
3460
+ msgid "%s Setup"
3461
+ msgstr "Configuration %s"
3462
+
3463
+ #: includes/mycred-remote.php:581
3464
+ msgid "This feature requires WordPress Permalinks to be setup and enabled!"
3465
+ msgstr ""
3466
+ "Pour utiliser cette fonctionalité, veuillez paramétrer et activer les "
3467
+ "permaliens de WordPress."
3468
+
3469
+ #: includes/mycred-remote.php:585
3470
+ msgid "Click Update Settings to load the Remote API settings."
3471
+ msgstr ""
3472
+ "Cliquez sur Enregistrer la configuration pour charger la config de l'API "
3473
+ "d'accès à distance."
3474
+
3475
+ #: includes/mycred-remote.php:588
3476
+ msgid "Allow Remote Access"
3477
+ msgstr "Autoriser l'accès à distance"
3478
+
3479
+ #: includes/mycred-remote.php:613
3480
+ msgid "Remote Access"
3481
+ msgstr "Accès à distance"
3482
+
3483
+ #: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
3484
+ msgid "API Key"
3485
+ msgstr "Clé API"
3486
+
3487
+ #: includes/mycred-remote.php:618
3488
+ msgid "Key"
3489
+ msgstr "Clé"
3490
+
3491
+ #: includes/mycred-remote.php:620
3492
+ msgid "Required for this feature to work!<br />Minimum 12 characters."
3493
+ msgstr ""
3494
+ "Obligatoire pour le bon fonctionnement de cette option !<br/>Minimum 12 "
3495
+ "caractères"
3496
+
3497
+ #: includes/mycred-remote.php:623
3498
+ msgid "Key Length"
3499
+ msgstr "Longueur de la clé"
3500
+
3501
+ #: includes/mycred-remote.php:628
3502
+ msgid "Generate New Key"
3503
+ msgstr "Générer une nouvelle clé"
3504
+
3505
+ #: includes/mycred-remote.php:630
3506
+ msgid "Warning!"
3507
+ msgstr "Avertissement !"
3508
+
3509
+ #: includes/mycred-remote.php:630
3510
+ msgid ""
3511
+ "Keep this key safe! Those you share this key with will be able to remotely "
3512
+ "deduct / add / transfer %plural%!"
3513
+ msgstr ""
3514
+ "Gardez cette clé à l'abri des regards ! Quiconque d'autre que vous qui en "
3515
+ "aurait connaissance pourrait ajouter/déduire/transférer des %plural% !"
3516
+
3517
+ #: includes/mycred-remote.php:632
3518
+ msgid "Incoming URI"
3519
+ msgstr "URI entrante"
3520
+
3521
+ #: includes/mycred-remote.php:636
3522
+ msgid ""
3523
+ "The incoming call address. Remote calls made to any other URL will be "
3524
+ "ignored."
3525
+ msgstr ""
3526
+ "L'adresse d'appel entrante. Tout appel distant depuis une autre URL sera "
3527
+ "ignoré."
3528
+
3529
+ #: includes/mycred-remote.php:639
3530
+ msgid "Debug Mode"
3531
+ msgstr "Mode débogage"
3532
+
3533
+ #: includes/mycred-remote.php:642
3534
+ msgid ""
3535
+ "Remember to disable when not used to prevent mischievous calls from learning "
3536
+ "about your setup!"
3537
+ msgstr ""
3538
+ "N'oubliez pas de désactiver l'option lorsqu'elle n'est pas utilisée pour "
3539
+ "empêcher des appels malicieux qui tenteraient de s'informer sur votre "
3540
+ "installation&nbsp;!"
3541
+
3542
+ #: includes/mycred-about.php:32
3543
+ msgid "Welcome to %s %s"
3544
+ msgstr "Bienvenue dans %s %s"
3545
+
3546
+ #: includes/mycred-overview.php:25
3547
+ msgid "%s Overview"
3548
+ msgstr "Aperçu %s"
3549
+
3550
+ #: includes/mycred-overview.php:82
3551
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:136
3552
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:265
3553
+ msgid "Total amount in circulation"
3554
+ msgstr "Montant total en circulation"
3555
+
3556
+ #: includes/mycred-overview.php:85
3557
+ msgid "Awarded"
3558
+ msgstr "Promu"
3559
+
3560
+ #: includes/mycred-overview.php:88
3561
+ msgid "Deducted"
3562
+ msgstr "Déduit"
3563
+
3564
+ #: includes/mycred-install.php:73
3565
+ msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3566
+ msgstr "myCRED requiert SQL 5.0 ou sup&eacute;rieur. Version trouv&eacute;e: "
3567
+
3568
+ #: includes/mycred-install.php:78
3569
+ msgid ""
3570
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3571
+ "check your PHP configuration or contact your host and ask them to enable it "
3572
+ "for you!"
3573
+ msgstr ""
3574
+ "La bibliothèque mcrypt PHP doit être activé dans l'ordre d'utilisation du "
3575
+ "plugin! S'il vous plait, vérifier votre configuration PHP ou contactez votre "
3576
+ "Hébergeur et lui demander de l'activer pour vous."
3577
+
3578
+ #: includes/mycred-install.php:83
3579
+ msgid ""
3580
+ "Sorry but your WordPress installation does not reach the minimum "
3581
+ "requirements for running myCRED. The following errors were given:"
3582
+ msgstr ""
3583
+ "Désolé mais votre installation WordPress ne dispose pas des ressources "
3584
+ "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
3585
+ "apparues:"
3586
+
3587
+ #: includes/mycred-widgets.php:19
3588
+ msgid "(%s) My Balance"
3589
+ msgstr "Mon solde (%s)"
3590
+
3591
+ #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
3592
+ #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1366
3593
+ #: addons/gateway/carts/mycred-woocommerce.php:91
3594
+ #: addons/transfer/includes/mycred-transfer-widgets.php:78
3595
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:186
3596
+ #: addons/buy-creds/gateways/bank-transfer.php:161
3597
+ #: addons/buy-creds/gateways/skrill.php:333
3598
+ msgid "Title"
3599
+ msgstr "Titre"
3600
+
3601
+ #: includes/mycred-widgets.php:199
3602
+ msgid "Include history"
3603
+ msgstr "Inclure l'historique"
3604
+
3605
+ #: includes/mycred-widgets.php:203
3606
+ msgid "History Title"
3607
+ msgstr "Titre de l'historique"
3608
+
3609
+ #: includes/mycred-widgets.php:207
3610
+ msgid "Number of entires"
3611
+ msgstr "Nombre d'entrées"
3612
+
3613
+ #: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
3614
+ msgid "Row layout"
3615
+ msgstr "Agencement des colonnes"
3616
+
3617
+ #: includes/mycred-widgets.php:218 includes/mycred-widgets.php:586
3618
+ msgid "Show message when not logged in"
3619
+ msgstr "Afficher les messages quand pas connceté"
3620
+
3621
+ #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
3622
+ msgid "Message"
3623
+ msgstr "Message"
3624
+
3625
+ #: includes/mycred-widgets.php:282
3626
+ msgid "(%s) Leaderboard"
3627
+ msgstr "Classement (%s)"
3628
+
3629
+ #: includes/mycred-widgets.php:373
3630
+ msgid "Based On"
3631
+ msgstr "Basé sur"
3632
+
3633
+ #: includes/mycred-widgets.php:375
3634
+ msgid ""
3635
+ "Use \"balance\" to base the leaderboard on your users current balances or "
3636
+ "use a specific reference."
3637
+ msgstr ""
3638
+ "Utilisez\n"
3639
+ " \n"
3640
+ "«balance»\n"
3641
+ " \n"
3642
+ "(ou solde) pour fonder le\n"
3643
+ " \n"
3644
+ "classement\n"
3645
+ " \n"
3646
+ "de vos\n"
3647
+ " \n"
3648
+ "utilisateurs\n"
3649
+ " par \n"
3650
+ "soldes\n"
3651
+ " \n"
3652
+ "actuels\n"
3653
+ " \n"
3654
+ "ou\n"
3655
+ " \n"
3656
+ "utiliser une référence\n"
3657
+ " \n"
3658
+ "spécifique\n"
3659
+ "."
3660
+
3661
+ #: includes/mycred-widgets.php:375
3662
+ msgid "Reference Guide"
3663
+ msgstr "Guide de référence"
3664
+
3665
+ #: includes/mycred-widgets.php:379
3666
+ msgid "Visible to non-members"
3667
+ msgstr "Visibble par les non membres"
3668
+
3669
+ #: includes/mycred-widgets.php:382
3670
+ msgid "Number of users"
3671
+ msgstr "Nombre d'utilisateurs"
3672
+
3673
+ #: includes/mycred-widgets.php:391
3674
+ msgid "Offset"
3675
+ msgstr "Compensation"
3676
+
3677
+ #: includes/mycred-widgets.php:393
3678
+ msgid "Optional offset of order. Use zero to return the first in the list."
3679
+ msgstr ""
3680
+ "Offset de tri optionnel. Indiquez zéro pour afficher le premier de la liste."
3681
+
3682
+ #: includes/mycred-widgets.php:396
3683
+ msgid "Order"
3684
+ msgstr "Affichage"
3685
+
3686
+ #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:553
3687
+ msgid "Ascending"
3688
+ msgstr "Ascendant"
3689
+
3690
+ #: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:553
3691
+ msgid "Descending"
3692
+ msgstr "Descendant"
3693
+
3694
+ #: includes/mycred-widgets.php:415
3695
+ msgid "Append current users position"
3696
+ msgstr "Afficher le classement de l'utilisateur courant"
3697
+
3698
+ #: includes/mycred-widgets.php:416
3699
+ msgid ""
3700
+ "If the current user is not in this leaderboard, you can select to append "
3701
+ "them at the end with their current position."
3702
+ msgstr ""
3703
+ "Si l'utilisateur courant ne figure pas dans ce classement, vous pouvez "
3704
+ "choisir de l'afficher à la fin avec sa position actuelle"
3705
+
3706
+ #: includes/mycred-widgets.php:469
3707
+ msgid "(%s) Wallet"
3708
+ msgstr "Wallet (%s)"
3709
+
3710
+ #: includes/mycred-widgets.php:579
3711
+ msgid "Row Layout"
3712
+ msgstr "Affichage des colonnes"
3713
+
3714
+ #: includes/mycred-functions.php:85
3715
+ msgid "Point"
3716
+ msgstr "Point"
3717
+
3718
+ #: includes/mycred-functions.php:86
3719
+ msgid "Points"
3720
+ msgstr "Points"
3721
+
3722
+ #: includes/mycred-functions.php:466
3723
+ msgid "Deleted"
3724
+ msgstr "Supprimé"
3725
+
3726
+ #: includes/mycred-functions.php:607
3727
+ msgid "Deleted Item"
3728
+ msgstr "Item supprimé"
3729
+
3730
+ #: includes/mycred-functions.php:671
3731
+ #: addons/email-notices/myCRED-addon-email-notices.php:861
3732
+ #: addons/gateway/carts/mycred-wpecommerce.php:370
3733
+ msgid "General"
3734
+ msgstr "Général"
3735
+
3736
+ #: includes/mycred-functions.php:678
3737
+ msgid "User Related"
3738
+ msgstr "A propos de l'utilisateur"
3739
+
3740
+ #: includes/mycred-functions.php:685
3741
+ msgid "Post Related"
3742
+ msgstr "Relatif à l'article"
3743
+
3744
+ #: includes/mycred-functions.php:692
3745
+ msgid "Comment Related"
3746
+ msgstr "Commentaire concerné"
3747
+
3748
+ #: includes/mycred-functions.php:699
3749
+ msgid "Widget Related"
3750
+ msgstr "Widget concerné"
3751
+
3752
+ #: includes/mycred-functions.php:706
3753
+ msgid "Amount Related"
3754
+ msgstr "Montant concerné"
3755
+
3756
+ #: includes/mycred-functions.php:713
3757
+ msgid "Video Related"
3758
+ msgstr "Vidéo concernée"
3759
+
3760
+ #: includes/mycred-functions.php:724
3761
+ msgid "and"
3762
+ msgstr "et"
3763
+
3764
+ #: includes/mycred-functions.php:726
3765
+ msgid "Available Template Tags:"
3766
+ msgstr "Mots clés de template disponibles"
3767
+
3768
+ #: includes/importers/mycred-cubepoints.php:298
3769
+ msgid "No balances were imported."
3770
+ msgstr "Aucun solde n'a été importé"
3771
+
3772
+ #: includes/importers/mycred-cubepoints.php:298
3773
+ msgid "No log entries were imported!"
3774
+ msgstr "Aucune donnée n'a été importée"
3775
+
3776
+ #: includes/importers/mycred-cubepoints.php:306
3777
+ #: includes/importers/mycred-log-entries.php:168
3778
+ msgid ""
3779
+ "Import complete - A total of <strong>%d</strong> entries were successfully "
3780
+ "imported. <strong>%d</strong> was skipped."
3781
+ msgstr ""
3782
+ "Import terminé - Un total de <strong>%d</strong> entrées a été importé avec "
3783
+ "succès ! <strong>%d</strong> reste(nt) ignoré(es)"
3784
+
3785
+ #: includes/importers/mycred-cubepoints.php:320
3786
+ #: includes/importers/mycred-balances.php:212
3787
+ #: includes/importers/mycred-log-entries.php:180
3788
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
3789
+ msgid "View Log"
3790
+ msgstr "Afficher le rapport"
3791
+
3792
+ #: includes/importers/mycred-cubepoints.php:320
3793
+ #: includes/importers/mycred-balances.php:212
3794
+ #: includes/importers/mycred-log-entries.php:180
3795
+ msgid "Import More"
3796
+ msgstr "En importer davantage"
3797
+
3798
+ #: includes/importers/mycred-cubepoints.php:335
3799
+ msgid "No CubePoints log."
3800
+ msgstr "Aucun rapport CubePoints"
3801
+
3802
+ #: includes/importers/mycred-cubepoints.php:348
3803
+ msgid "Import CubePoints Log"
3804
+ msgstr "Importer le rapport CubePoints"
3805
+
3806
+ #: includes/importers/mycred-cubepoints.php:369
3807
+ msgid "Select what to import"
3808
+ msgstr "Sélectionnez ce que vous voulez importer"
3809
+
3810
+ #: includes/importers/mycred-cubepoints.php:370
3811
+ msgid "Log Entries Only"
3812
+ msgstr "Uniquement les entrées enregistrées"
3813
+
3814
+ #: includes/importers/mycred-cubepoints.php:371
3815
+ msgid "CubePoints Balances Only"
3816
+ msgstr "uniquement les soldes cubePoints"
3817
+
3818
+ #: includes/importers/mycred-cubepoints.php:372
3819
+ msgid "Log Entries and Balances"
3820
+ msgstr "Les entrées et les soldes"
3821
+
3822
+ #: includes/importers/mycred-cubepoints.php:387
3823
+ msgid "Import"
3824
+ msgstr "Importer"
3825
+
3826
+ #: includes/importers/mycred-cubepoints.php:396
3827
+ msgid ""
3828
+ "Warning! Importing CubePoints balances will replace your users myCRED "
3829
+ "balance!"
3830
+ msgstr ""
3831
+ "Avertissement: importer les soldes CubePoints remplacera les soldes de vos "
3832
+ "utilisateurs myCRED !"
3833
+
3834
+ #: includes/importers/mycred-balances.php:104
3835
+ #: includes/importers/mycred-balances.php:187
3836
+ #: includes/importers/mycred-balances.php:230
3837
+ #: includes/importers/mycred-balances.php:245
3838
+ #: includes/importers/mycred-log-entries.php:104
3839
+ #: includes/importers/mycred-log-entries.php:153
3840
+ #: includes/importers/mycred-log-entries.php:199
3841
+ #: includes/importers/mycred-log-entries.php:216
3842
+ msgid "Sorry, there has been an error."
3843
+ msgstr "Désolé, mais une erreur est survenue&nbsp;!"
3844
+
3845
+ #: includes/importers/mycred-balances.php:105
3846
+ #: includes/importers/mycred-log-entries.php:105
3847
+ msgid "The file does not exist, please try again."
3848
+ msgstr "Le fichier n'existe pas, veuillez faire un nouvel essai."
3849
+
3850
+ #: includes/importers/mycred-balances.php:188
3851
+ #: includes/importers/mycred-log-entries.php:154
3852
+ msgid "The CSV is invalid."
3853
+ msgstr "Le fichier CSV n'est pas valide."
3854
+
3855
+ #: includes/importers/mycred-balances.php:200
3856
+ msgid ""
3857
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
3858
+ "imported. <strong>%d</strong> was skipped."
3859
+ msgstr ""
3860
+ "Import terminé - Un total de <strong>%d</strong> soldes a été importé avec "
3861
+ "succès ! <strong>%d</strong> reste(nt) ignoré(s)"
3862
+
3863
+ #: includes/importers/mycred-balances.php:261
3864
+ msgid "Import Balances"
3865
+ msgstr "Importation des soldes"
3866
+
3867
+ #: includes/importers/mycred-balances.php:282
3868
+ msgid "Import balances from a CSV file."
3869
+ msgstr "Importer les soldes depuis un fichier CSV."
3870
+
3871
+ #: includes/importers/mycred-balances.php:293
3872
+ #: includes/importers/mycred-log-entries.php:263
3873
+ msgid ""
3874
+ "Before you can upload your import file, you will need to fix the following "
3875
+ "error:"
3876
+ msgstr ""
3877
+ "Avant de pouvoir télécharger votre fichier d'importation, vous devez d'abord "
3878
+ "corriger les erreurs suivantes:"
3879
+
3880
+ #: includes/importers/mycred-balances.php:305
3881
+ #: includes/importers/mycred-log-entries.php:275
3882
+ msgid "Choose a file from your computer:"
3883
+ msgstr "Sélectionnez un fichier:"
3884
+
3885
+ #: includes/importers/mycred-balances.php:311
3886
+ #: includes/importers/mycred-log-entries.php:281
3887
+ msgid "Maximum size: %s"
3888
+ msgstr "Taille maximum: %s"
3889
+
3890
+ #: includes/importers/mycred-balances.php:316
3891
+ #: includes/importers/mycred-log-entries.php:286
3892
+ msgid "OR enter path to file:"
3893
+ msgstr "OU indiquez le chemin vers le fichier:"
3894
+
3895
+ #: includes/importers/mycred-balances.php:323
3896
+ #: includes/importers/mycred-log-entries.php:293
3897
+ msgid "Delimiter"
3898
+ msgstr "Délimiteur"
3899
+
3900
+ #: includes/importers/mycred-balances.php:327
3901
+ msgid "Method"
3902
+ msgstr "Méthode"
3903
+
3904
+ #: includes/importers/mycred-balances.php:329
3905
+ msgid "Replace current balances with the amount in this CSV file"
3906
+ msgstr "Remplace le solde actuel par le montant figurant dans le fichier CSV"
3907
+
3908
+ #: includes/importers/mycred-balances.php:330
3909
+ msgid "Adjust current balances according to the amount in this CSV file"
3910
+ msgstr ""
3911
+ "Ajuste les soldes actuels avec les montants figurants dans le fichier CSV"
3912
+
3913
+ #: includes/importers/mycred-log-entries.php:232
3914
+ msgid "Import Log Entries"
3915
+ msgstr "Importer le rapport d'entrées"
3916
+
3917
+ #: includes/importers/mycred-log-entries.php:253
3918
+ msgid "Import log entries from a CSV file."
3919
+ msgstr "Importer le rapport d'entrées depuis un fichier CSV."
3920
+
3921
+ #: includes/shortcodes/mycred_exchange.php:33
3922
+ #: includes/shortcodes/mycred_exchange.php:41
3923
+ #: includes/shortcodes/mycred_exchange.php:136
3924
+ #: includes/shortcodes/mycred_exchange.php:156
3925
+ msgid "You are excluded from using %s."
3926
+ msgstr "Vous êtes exclu d'utiliser %s"
3927
+
3928
+ #: includes/shortcodes/mycred_exchange.php:37
3929
+ #: includes/shortcodes/mycred_exchange.php:146
3930
+ msgid "Your balance is too low to use this feature."
3931
+ msgstr "Votre solde est trop bas pour utiliser cet élément."
3932
+
3933
+ #: includes/shortcodes/mycred_exchange.php:63
3934
+ msgid "Your current %s balance"
3935
+ msgstr "Votre solde actuel %s"
3936
+
3937
+ #: includes/shortcodes/mycred_exchange.php:70
3938
+ msgid "Minimum %s"
3939
+ msgstr "Minimum %s"
3940
+
3941
+ #: includes/shortcodes/mycred_exchange.php:75
3942
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:498
3943
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:578
3944
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
3945
+ #: addons/gateway/carts/mycred-wpecommerce.php:389
3946
+ #: addons/gateway/carts/mycred-woocommerce.php:140
3947
+ msgid "Exchange Rate"
3948
+ msgstr "Taux de change"
3949
+
3950
+ #: includes/shortcodes/mycred_exchange.php:76
3951
+ msgid "1 %s = <span class=\"rate\">%s</span> %s"
3952
+ msgstr "1 %s = <span class=\"Taux\">%s</span> %s"
3953
+
3954
+ #: includes/shortcodes/mycred_exchange.php:124
3955
+ msgid "Point types not found."
3956
+ msgstr "Types de point non trouvé."
3957
+
3958
+ #: includes/shortcodes/mycred_exchange.php:169
3959
+ msgid "You must exchange at least %s!"
3960
+ msgstr "Vous devez échanger au minimum %s!"
3961
+
3962
+ #: includes/shortcodes/mycred_exchange.php:178
3963
+ #: addons/transfer/myCRED-addon-transfer.php:153
3964
+ msgid "Insufficient Funds. Please try a lower amount."
3965
+ msgstr "Insuffisance de fonds. S'il vous plait, essayez un montant inférieur."
3966
+
3967
+ #: includes/shortcodes/mycred_exchange.php:191
3968
+ msgid "Exchange from %s"
3969
+ msgstr "Echange par %s"
3970
+
3971
+ #: includes/shortcodes/mycred_exchange.php:203
3972
+ msgid "Exchange to %s"
3973
+ msgstr "Echange de %s"
3974
+
3975
+ #: includes/shortcodes/mycred_exchange.php:211
3976
+ msgid "You have successfully exchanged %s into %s."
3977
+ msgstr "Vous avez échangez avec succès %s en %s."
3978
+
3979
+ #: includes/shortcodes/mycred_video.php:44
3980
+ msgid "A video ID is required for this shortcode"
3981
+ msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
3982
+
3983
+ #: includes/classes/class.query-export.php:374
3984
+ #: includes/classes/class.query-log.php:979
3985
+ msgid "User Missing"
3986
+ msgstr "Utilisateur inexistant"
3987
+
3988
+ #: includes/classes/class.query-export.php:487
3989
+ msgid "Search Results"
3990
+ msgstr "Résultats de la recherche"
3991
+
3992
+ #: includes/classes/class.query-log.php:427
3993
+ msgid "No log entries found"
3994
+ msgstr "Aucun enregistrement à afficher."
3995
+
3996
+ #: includes/classes/class.query-log.php:527
3997
+ msgid "Show all references"
3998
+ msgstr "Afficher toutes les références"
3999
+
4000
+ #: includes/classes/class.query-log.php:552
4001
+ msgid "Show in order"
4002
+ msgstr "Afficher sur la commande"
4003
+
4004
+ #: includes/classes/class.query-log.php:573
4005
+ msgid "Filter"
4006
+ msgstr "Filtre"
4007
+
4008
+ #: includes/classes/class.query-log.php:1147
4009
+ msgid "No export options available."
4010
+ msgstr "Aucune option d'exportation disponible."
4011
+
4012
+ #: includes/classes/class.query-log.php:1178
4013
+ #: includes/classes/class.query-log.php:1180
4014
+ msgid "Search Log"
4015
+ msgstr "Journal de recherche"
4016
+
4017
+ #: includes/classes/class.query-log.php:1179
4018
+ msgid "search log entries"
4019
+ msgstr "Recherchez une donnée"
4020
+
4021
+ #: includes/classes/class.query-log.php:1543
4022
+ msgid "Website Registration"
4023
+ msgstr "Inscription au siteweb"
4024
+
4025
+ #: includes/classes/class.query-log.php:1544
4026
+ msgid "Website Visit"
4027
+ msgstr "Visite du siteweb"
4028
+
4029
+ #: includes/classes/class.query-log.php:1545
4030
+ msgid "Viewing Content (Member)"
4031
+ msgstr "Voir le contenu (Membre)"
4032
+
4033
+ #: includes/classes/class.query-log.php:1546
4034
+ msgid "Viewing Content (Author)"
4035
+ msgstr "Voir le contenu (Auteur)"
4036
+
4037
+ #: includes/classes/class.query-log.php:1547
4038
+ msgid "Logging in"
4039
+ msgstr "Connectez-vous"
4040
+
4041
+ #: includes/classes/class.query-log.php:1548
4042
+ msgid "Publishing Content"
4043
+ msgstr "Publié le contenu"
4044
+
4045
+ #: includes/classes/class.query-log.php:1549
4046
+ msgid "Approved Comment"
4047
+ msgstr "Commentaire approuvé"
4048
+
4049
+ #: includes/classes/class.query-log.php:1550
4050
+ msgid "Unapproved Comment"
4051
+ msgstr "Commentaire non approuvé"
4052
+
4053
+ #: includes/classes/class.query-log.php:1551
4054
+ msgid "SPAM Comment"
4055
+ msgstr "Commentaire SPAM"
4056
+
4057
+ #: includes/classes/class.query-log.php:1553
4058
+ msgid "Link Click"
4059
+ msgstr "Lien cliqué"
4060
+
4061
+ #: includes/classes/class.query-log.php:1554
4062
+ msgid "Watching Video"
4063
+ msgstr "Vidéo regardé"
4064
+
4065
+ #: includes/classes/class.query-log.php:1555
4066
+ msgid "Visitor Referral"
4067
+ msgstr "Visiter référant"
4068
+
4069
+ #: includes/classes/class.query-log.php:1556
4070
+ msgid "Signup Referral"
4071
+ msgstr "Inscription référant"
4072
+
4073
+ #: includes/classes/class.query-log.php:1560
4074
+ msgid "New Profile Update"
4075
+ msgstr "Nouveau profil mis à jour"
4076
+
4077
+ #: includes/classes/class.query-log.php:1562
4078
+ msgid "Avatar Upload"
4079
+ msgstr "Téléchargement d'avatar"
4080
+
4081
+ #: includes/classes/class.query-log.php:1565
4082
+ msgid "Ended Friendship"
4083
+ msgstr "Fin d'amitié"
4084
+
4085
+ #: includes/classes/class.query-log.php:1566
4086
+ msgid "New Profile Comment"
4087
+ msgstr "Nouveau commentaire profil"
4088
+
4089
+ #: includes/classes/class.query-log.php:1567
4090
+ msgid "Profile Comment Deletion"
4091
+ msgstr "Suppression d'un commentaire du profil"
4092
+
4093
+ #: includes/classes/class.query-log.php:1570
4094
+ msgid "New Message"
4095
+ msgstr "Nouveau message"
4096
+
4097
+ #: includes/classes/class.query-log.php:1572
4098
+ msgid "New Group"
4099
+ msgstr "Nouveau groupe"
4100
+
4101
+ #: includes/classes/class.query-log.php:1573
4102
+ msgid "Deleted Group"
4103
+ msgstr "Groupe supprimé"
4104
+
4105
+ #: includes/classes/class.query-log.php:1574
4106
+ msgid "New Group Forum Topic"
4107
+ msgstr "Nouveau groupe sujet dans le forum"
4108
+
4109
+ #: includes/classes/class.query-log.php:1575
4110
+ msgid "Edit Group Forum Topic"
4111
+ msgstr "Editer un groupe sujet dans le forum"
4112
+
4113
+ #: includes/classes/class.query-log.php:1576
4114
+ msgid "New Group Forum Post"
4115
+ msgstr "Nouveau groupe de post dans le forum"
4116
+
4117
+ #: includes/classes/class.query-log.php:1577
4118
+ msgid "Edit Group Forum Post"
4119
+ msgstr "Editer le groupe de post dans le forum"
4120
+
4121
+ #: includes/classes/class.query-log.php:1578
4122
+ msgid "Joining Group"
4123
+ msgstr "Joindre un groupe"
4124
+
4125
+ #: includes/classes/class.query-log.php:1579
4126
+ msgid "Leaving Group"
4127
+ msgstr "Quitter un groupe"
4128
+
4129
+ #: includes/classes/class.query-log.php:1580
4130
+ msgid "New Group Avatar"
4131
+ msgstr "Nouveau groupe d'avatar"
4132
+
4133
+ #: includes/classes/class.query-log.php:1582
4134
+ msgid "New Group Comment"
4135
+ msgstr "Nouveau groupe de commentaires"
4136
+
4137
+ #: includes/classes/class.query-log.php:1592
4138
+ msgid "New Link"
4139
+ msgstr "Nouveau lien"
4140
+
4141
+ #: includes/classes/class.query-log.php:1593
4142
+ msgid "Link Voting"
4143
+ msgstr "Lien de vote"
4144
+
4145
+ #: includes/classes/class.query-log.php:1594
4146
+ msgid "Link Update"
4147
+ msgstr "Lien mis à jour"
4148
+
4149
+ #: includes/classes/class.query-log.php:1598
4150
+ msgid "New Forum (bbPress)"
4151
+ msgstr "Nouveau forum (bbpress)"
4152
+
4153
+ #: includes/classes/class.query-log.php:1599
4154
+ msgid "New Forum Topic (bbPress)"
4155
+ msgstr "Nouveau sujet de forum (bbpress)"
4156
+
4157
+ #: includes/classes/class.query-log.php:1600
4158
+ msgid "Favorited Topic (bbPress)"
4159
+ msgstr "Sujet favoris (bbPress)"
4160
+
4161
+ #: includes/classes/class.query-log.php:1601
4162
+ msgid "New Topic Reply (bbPress)"
4163
+ msgstr "Nouvelle réponse d'un sujet (Bbpress)"
4164
+
4165
+ #: includes/classes/class.query-log.php:1605
4166
+ msgid "Form Submission (Contact Form 7)"
4167
+ msgstr "Formulaire de soumission (Contact Form 7)"
4168
+
4169
+ #: includes/classes/class.query-log.php:1608
4170
+ msgid "Form Submission (Gravity Form)"
4171
+ msgstr "Formulaire de soumission (Contact Form 7)"
4172
+
4173
+ #: includes/classes/class.query-log.php:1611
4174
+ msgid "New Forum Topic (SimplePress)"
4175
+ msgstr "Nouveau sujet de Forum (SimplePress)"
4176
+
4177
+ #: includes/classes/class.query-log.php:1612
4178
+ msgid "New Forum Post (SimplePress)"
4179
+ msgstr "Nouveau post sur le forum (SimplePress)"
4180
+
4181
+ #: includes/classes/class.query-log.php:1633
4182
+ msgid "Poll Voting"
4183
+ msgstr "Poll Voting"
4184
+
4185
+ #: includes/classes/class.query-log.php:1636
4186
+ msgid "Sending an Invite"
4187
+ msgstr "Envoie d'une invitation"
4188
+
4189
+ #: includes/classes/class.query-log.php:1637
4190
+ msgid "Accepting an Invite"
4191
+ msgstr "Accepter une invitation"
4192
+
4193
+ #: includes/classes/class.query-log.php:1643
4194
+ #: addons/banking/myCRED-addon-banking.php:150
4195
+ msgid "Compound Interest"
4196
+ msgstr "Appliquer des Intérêts"
4197
+
4198
+ #: includes/classes/class.query-log.php:1651
4199
+ msgid "buyCRED Purchase (PayPal Standard)"
4200
+ msgstr "Achat buyCRED (PayPal Standart)"
4201
+
4202
+ #: includes/classes/class.query-log.php:1652
4203
+ msgid "buyCRED Purchase (Skrill)"
4204
+ msgstr "Achat buyCRED (Skrill)"
4205
+
4206
+ #: includes/classes/class.query-log.php:1653
4207
+ msgid "buyCRED Purchase (Zombaio)"
4208
+ msgstr "Achat buyCRED (Zombaio)"
4209
+
4210
+ #: includes/classes/class.query-log.php:1654
4211
+ msgid "buyCRED Purchase (NETBilling)"
4212
+ msgstr "Achat buyCRED (Netbilling)"
4213
+
4214
+ #: includes/classes/class.query-log.php:1655
4215
+ msgid "buyCRED Purchase (BitPay)"
4216
+ msgstr "Achat buyCRED (BitPay)"
4217
+
4218
+ #: includes/classes/class.query-log.php:1660
4219
+ msgid "Coupon Purchase"
4220
+ msgstr "Coupon d'achat"
4221
+
4222
+ #: includes/classes/class.query-log.php:1664
4223
+ msgid "Store Purchase (WooCommerce)"
4224
+ msgstr "Magasin achat (WooCOmmerce)"
4225
+
4226
+ #: includes/classes/class.query-log.php:1669
4227
+ msgid "Store Purchase (MarketPress)"
4228
+ msgstr "Magasin achat (MarketPress)"
4229
+
4230
+ #: includes/classes/class.query-log.php:1673
4231
+ msgid "Store Purchase (WP E-Commerce)"
4232
+ msgstr "Magasin achat (Wp E-commence)"
4233
+
4234
+ #: includes/classes/class.query-log.php:1679
4235
+ msgid "Event Payment (Event Espresso)"
4236
+ msgstr "Evènement paiement (Event Espresso)"
4237
+
4238
+ #: includes/classes/class.query-log.php:1680
4239
+ msgid "Event Sale (Event Espresso)"
4240
+ msgstr "Evènement vendu (Event Espresso)"
4241
+
4242
+ #: includes/classes/class.query-log.php:1684
4243
+ msgid "Event Payment (Events Manager)"
4244
+ msgstr "Evènement payé (Events Manager)"
4245
+
4246
+ #: includes/classes/class.query-log.php:1685
4247
+ msgid "Event Sale (Events Manager)"
4248
+ msgstr "Evènement vendu (Events Manager)"
4249
+
4250
+ #: includes/classes/class.query-log.php:1694
4251
+ #: addons/transfer/myCRED-addon-transfer.php:48
4252
+ msgid "Transfer"
4253
+ msgstr "Transférer"
4254
+
4255
+ #: includes/classes/class.query-log.php:1698
4256
+ msgid "Manual Adjustment by Admin"
4257
+ msgstr "Ajustements manuel par admin"
4258
+
4259
+ #: addons/banking/myCRED-addon-banking.php:45
4260
+ #: addons/banking/myCRED-addon-banking.php:46
4261
+ #: addons/banking/myCRED-addon-banking.php:47
4262
+ msgid "Banking"
4263
+ msgstr "Banque"
4264
+
4265
+ #: addons/banking/myCRED-addon-banking.php:141
4266
+ msgid "Central Banking"
4267
+ msgstr "Banque central"
4268
+
4269
+ #: addons/banking/myCRED-addon-banking.php:159
4270
+ msgid "Recurring Payouts"
4271
+ msgstr "Paiements répétés"
4272
+
4273
+ #: addons/banking/myCRED-addon-banking.php:160
4274
+ msgid "Setup mass %_singular% payouts for your users."
4275
+ msgstr ""
4276
+ "Installation de masse %_singular% pour les paiements de vos utilisateurs"
4277
+
4278
+ #: addons/banking/myCRED-addon-banking.php:253
4279
+ msgid "%s Banking"
4280
+ msgstr "Paiement %s"
4281
+
4282
+ #: addons/banking/myCRED-addon-banking.php:273
4283
+ #: addons/buy-creds/modules/buycred-module-core.php:581
4284
+ msgid "Enable"
4285
+ msgstr "Activer"
4286
+
4287
+ #: addons/banking/myCRED-addon-banking.php:292
4288
+ msgid "Update Changes"
4289
+ msgstr "Enregistrer les modifications"
4290
+
4291
+ #: addons/transfer/myCRED-addon-transfer.php:41
4292
+ msgid "You do not have enough %plural% to send."
4293
+ msgstr "Vous n&#39;avez pas suffisamment de %plural% &agrave; envoyer."
4294
+
4295
+ #: addons/transfer/myCRED-addon-transfer.php:42
4296
+ msgid "You have exceeded your %limit% transfer limit."
4297
+ msgstr "Vous avez dépass&eacute; votre limite de transfert %limit%."
4298
+
4299
+ #: addons/transfer/myCRED-addon-transfer.php:146
4300
+ msgid "Transaction completed."
4301
+ msgstr "Transaction terminée."
4302
+
4303
+ #: addons/transfer/myCRED-addon-transfer.php:147
4304
+ msgid ""
4305
+ "Security token could not be verified. Please contact your site administrator!"
4306
+ msgstr ""
4307
+ "Le jeton de sécurité n'a pas pu être vérifié. Veuillez contacter "
4308
+ "l'administrateur du site."
4309
+
4310
+ #: addons/transfer/myCRED-addon-transfer.php:148
4311
+ #: addons/transfer/myCRED-addon-transfer.php:155
4312
+ msgid "Communications error. Please try again later."
4313
+ msgstr "Erreur de communication. Veuillez essayer ultérieurement."
4314
+
4315
+ #: addons/transfer/myCRED-addon-transfer.php:149
4316
+ msgid "Recipient not found. Please try again."
4317
+ msgstr "Le destinataire n'a pas été trouvé. Veuillez recommencer."
4318
+
4319
+ #: addons/transfer/myCRED-addon-transfer.php:150
4320
+ msgid "Transaction declined by recipient."
4321
+ msgstr "Transaction refusée par le destinataire."
4322
+
4323
+ #: addons/transfer/myCRED-addon-transfer.php:151
4324
+ msgid "Incorrect amount. Please try again."
4325
+ msgstr "Montant incorrect. Veuillez recommencer."
4326
+
4327
+ #: addons/transfer/myCRED-addon-transfer.php:152
4328
+ msgid ""
4329
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
4330
+ "this has been done!"
4331
+ msgstr ""
4332
+ "Ce module myCRED n'a pas encore été paramétré. Aucun transfert n'est "
4333
+ "autorisé avant qu'il ne soit activé."
4334
+
4335
+ #: addons/transfer/myCRED-addon-transfer.php:154
4336
+ msgid "Transfer Limit exceeded."
4337
+ msgstr "La limite de transfert a été dépassée."
4338
+
4339
+ #: addons/transfer/myCRED-addon-transfer.php:360
4340
+ msgid "No limits."
4341
+ msgstr "Illimité."
4342
+
4343
+ #: addons/transfer/myCRED-addon-transfer.php:361
4344
+ msgid "Impose daily limit."
4345
+ msgstr "imposer un limite quotidienne"
4346
+
4347
+ #: addons/transfer/myCRED-addon-transfer.php:362
4348
+ msgid "Impose weekly limit."
4349
+ msgstr "imposer une limite hebdomadaire."
4350
+
4351
+ #: addons/transfer/myCRED-addon-transfer.php:369
4352
+ msgid "User Login (user_login)"
4353
+ msgstr "Nom d'utilisateur (user_login)"
4354
+
4355
+ #: addons/transfer/myCRED-addon-transfer.php:370
4356
+ msgid "User Email (user_email)"
4357
+ msgstr "Email (user_email)"
4358
+
4359
+ #: addons/transfer/myCRED-addon-transfer.php:378
4360
+ msgid "Transfers"
4361
+ msgstr "transferts"
4362
+
4363
+ #: addons/transfer/myCRED-addon-transfer.php:388
4364
+ msgid "Select the point types that users can transfer."
4365
+ msgstr ""
4366
+ "Sélectionnez le type de points que les utilisateurs peuvent transférer."
4367
+
4368
+ #: addons/transfer/myCRED-addon-transfer.php:398
4369
+ msgid "Log template for sending"
4370
+ msgstr "Affichage de l'avis d'expédition"
4371
+
4372
+ #: addons/transfer/myCRED-addon-transfer.php:405
4373
+ msgid "Log template for receiving"
4374
+ msgstr "Affichage de l'avis de récéption"
4375
+
4376
+ #: addons/transfer/myCRED-addon-transfer.php:412
4377
+ msgid "Autofill Recipient"
4378
+ msgstr "Autocomplétion du destinataire"
4379
+
4380
+ #: addons/transfer/myCRED-addon-transfer.php:426
4381
+ msgid "Select what user details recipients should be autofilled by."
4382
+ msgstr ""
4383
+ "Sélectionnez les détails à afficher en autocomplétion aux destinataires."
4384
+
4385
+ #: addons/transfer/myCRED-addon-transfer.php:429
4386
+ msgid "Reload"
4387
+ msgstr "Rafraîchir"
4388
+
4389
+ #: addons/transfer/myCRED-addon-transfer.php:432
4390
+ msgid "Reload page on successful transfers."
4391
+ msgstr "Rafraîchir la page en cas de transfert réussi."
4392
+
4393
+ #: addons/transfer/myCRED-addon-transfer.php:435
4394
+ #: addons/coupons/myCRED-addon-coupons.php:250
4395
+ #: addons/banking/services/mycred-service-payouts.php:599
4396
+ #: addons/banking/services/mycred-service-payouts.php:760
4397
+ msgid "Limits"
4398
+ msgstr "Règles de limitation"
4399
+
4400
+ #: addons/transfer/myCRED-addon-transfer.php:456
4401
+ msgid "Limit Amount"
4402
+ msgstr "Montant limite"
4403
+
4404
+ #: addons/transfer/myCRED-addon-transfer.php:460
4405
+ #: addons/sell-content/myCRED-addon-sell-content.php:553
4406
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:525
4407
+ msgid "Templates"
4408
+ msgstr "Affichage des éléments"
4409
+
4410
+ #: addons/transfer/myCRED-addon-transfer.php:463
4411
+ #: addons/sell-content/myCRED-addon-sell-content.php:573
4412
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:538
4413
+ #: addons/gateway/carts/mycred-wpecommerce.php:411
4414
+ msgid "Visitors"
4415
+ msgstr "Visiteurs"
4416
+
4417
+ #: addons/ranks/myCRED-addon-ranks.php:218
4418
+ #: addons/ranks/myCRED-addon-ranks.php:227
4419
+ #: addons/ranks/myCRED-addon-ranks.php:237
4420
+ #: addons/ranks/myCRED-addon-ranks.php:339
4421
+ #: addons/ranks/myCRED-addon-ranks.php:340
4422
+ #: addons/ranks/myCRED-addon-ranks.php:724
4423
+ #: addons/ranks/myCRED-addon-ranks.php:1358
4424
+ #: addons/ranks/myCRED-addon-ranks.php:1648
4425
+ msgid "Ranks"
4426
+ msgstr "Attribution de Points"
4427
+
4428
+ #: addons/ranks/myCRED-addon-ranks.php:222
4429
+ #: addons/ranks/myCRED-addon-ranks.php:724
4430
+ #: addons/ranks/myCRED-addon-ranks.php:873
4431
+ #: addons/ranks/myCRED-addon-ranks.php:876
4432
+ #: addons/ranks/myCRED-addon-ranks.php:904
4433
+ msgid "Rank"
4434
+ msgstr "Classement"
4435
+
4436
+ #: addons/ranks/myCRED-addon-ranks.php:223
4437
+ #: addons/ranks/myCRED-addon-ranks.php:224
4438
+ #: addons/email-notices/myCRED-addon-email-notices.php:126
4439
+ #: addons/email-notices/myCRED-addon-email-notices.php:127
4440
+ #: addons/badges/myCRED-addon-badges.php:150
4441
+ #: addons/badges/myCRED-addon-badges.php:151
4442
+ #: addons/banking/services/mycred-service-payouts.php:896
4443
+ msgid "Add New"
4444
+ msgstr "Ajouter"
4445
+
4446
+ #: addons/ranks/myCRED-addon-ranks.php:225
4447
+ msgid "Edit Rank"
4448
+ msgstr "Modifier ce classement"
4449
+
4450
+ #: addons/ranks/myCRED-addon-ranks.php:226
4451
+ msgid "New Rank"
4452
+ msgstr "Nouveau classement"
4453
+
4454
+ #: addons/ranks/myCRED-addon-ranks.php:228
4455
+ msgid "View Rank"
4456
+ msgstr "Afficher le classement"
4457
+
4458
+ #: addons/ranks/myCRED-addon-ranks.php:229
4459
+ msgid "Search Ranks"
4460
+ msgstr "Rechercher un classement"
4461
+
4462
+ #: addons/ranks/myCRED-addon-ranks.php:234
4463
+ #: addons/ranks/myCRED-addon-ranks.php:1285
4464
+ msgid "No ranks found"
4465
+ msgstr "Aucun classement trouvé"
4466
+
4467
+ #: addons/ranks/myCRED-addon-ranks.php:235
4468
+ msgid "No ranks found in Trash"
4469
+ msgstr "Aucun classement trouvé dans la corbeille"
4470
+
4471
+ #: addons/ranks/myCRED-addon-ranks.php:283
4472
+ #: addons/ranks/myCRED-addon-ranks.php:284
4473
+ #: addons/ranks/myCRED-addon-ranks.php:285
4474
+ #: addons/ranks/myCRED-addon-ranks.php:286
4475
+ #: addons/ranks/myCRED-addon-ranks.php:287
4476
+ #: addons/ranks/myCRED-addon-ranks.php:290
4477
+ #: addons/ranks/myCRED-addon-ranks.php:291
4478
+ msgid "Rank Updated."
4479
+ msgstr "Rang mis à jour."
4480
+
4481
+ #: addons/ranks/myCRED-addon-ranks.php:481
4482
+ msgid "Completed - Total of %d users effected"
4483
+ msgstr "Terminé - %d utilisateurs ont été affectés"
4484
+
4485
+ #: addons/ranks/myCRED-addon-ranks.php:987
4486
+ msgid "Warning! All ranks will be deleted! This can not be undone!"
4487
+ msgstr ""
4488
+ "Attention ! Tous les classements vont être supprimés. Cette action ne pourra "
4489
+ "pas être annulée."
4490
+
4491
+ #: addons/ranks/myCRED-addon-ranks.php:988
4492
+ msgid "Are you sure you want to re-assign user ranks?"
4493
+ msgstr "Je confirme la réassignation du classement de l'utilisateur"
4494
+
4495
+ #: addons/ranks/myCRED-addon-ranks.php:1073
4496
+ #: addons/ranks/myCRED-addon-ranks.php:1174
4497
+ msgid "Rank Title"
4498
+ msgstr "Titre du classement"
4499
+
4500
+ #: addons/ranks/myCRED-addon-ranks.php:1074
4501
+ msgid "Logo"
4502
+ msgstr "Logo"
4503
+
4504
+ #: addons/ranks/myCRED-addon-ranks.php:1075
4505
+ #: addons/badges/myCRED-addon-badges.php:828
4506
+ #: addons/badges/myCRED-addon-badges.php:829
4507
+ msgid "Requirement"
4508
+ msgstr "Obligation"
4509
+
4510
+ #: addons/ranks/myCRED-addon-ranks.php:1101
4511
+ msgid "No Logo Set"
4512
+ msgstr "Aucun logo défini"
4513
+
4514
+ #: addons/ranks/myCRED-addon-ranks.php:1116
4515
+ #: addons/ranks/myCRED-addon-ranks.php:1121
4516
+ msgid "Any Value"
4517
+ msgstr "Valeur au choix"
4518
+
4519
+ #: addons/ranks/myCRED-addon-ranks.php:1118
4520
+ #: addons/buy-creds/modules/buycred-module-core.php:327
4521
+ msgid "Minimum %plural%"
4522
+ msgstr "%plural% minimum"
4523
+
4524
+ #: addons/ranks/myCRED-addon-ranks.php:1123
4525
+ msgid "Maximum %plural%"
4526
+ msgstr "Maximum de %plural%"
4527
+
4528
+ #: addons/ranks/myCRED-addon-ranks.php:1274
4529
+ #: addons/ranks/myCRED-addon-ranks.php:1275
4530
+ msgid "Not Set"
4531
+ msgstr "Non configuré"
4532
+
4533
+ #: addons/ranks/myCRED-addon-ranks.php:1363
4534
+ msgid "Rank Features"
4535
+ msgstr "Caractéristiques du classement"
4536
+
4537
+ #: addons/ranks/myCRED-addon-ranks.php:1367
4538
+ msgid "%plural% requirement"
4539
+ msgstr "condition requise pour l&#39;attribution de %_plural%"
4540
+
4541
+ #: addons/ranks/myCRED-addon-ranks.php:1370
4542
+ msgid "Content"
4543
+ msgstr "Contenu"
4544
+
4545
+ #: addons/ranks/myCRED-addon-ranks.php:1372
4546
+ msgid "Excerpt"
4547
+ msgstr "Extrait"
4548
+
4549
+ #: addons/ranks/myCRED-addon-ranks.php:1374
4550
+ msgid "Comments"
4551
+ msgstr "Commentaires"
4552
+
4553
+ #: addons/ranks/myCRED-addon-ranks.php:1376
4554
+ msgid "Page Attributes"
4555
+ msgstr "Attributs de la page"
4556
+
4557
+ #: addons/ranks/myCRED-addon-ranks.php:1378
4558
+ msgid "Custom Fields"
4559
+ msgstr "Champs Personnalisés"
4560
+
4561
+ #: addons/ranks/myCRED-addon-ranks.php:1382
4562
+ msgid "Public"
4563
+ msgstr "Public"
4564
+
4565
+ #: addons/ranks/myCRED-addon-ranks.php:1386
4566
+ msgid ""
4567
+ "If you want to create a template archive for each rank, you must select to "
4568
+ "have ranks public. Defaults to disabled."
4569
+ msgstr ""
4570
+ "Pour créer un template d'archivage pour chaque classement, ceux-ci doivent "
4571
+ "être publics. Désactivé par défaut."
4572
+
4573
+ #: addons/ranks/myCRED-addon-ranks.php:1389
4574
+ msgid "Archive URL"
4575
+ msgstr "URL des archives"
4576
+
4577
+ #: addons/ranks/myCRED-addon-ranks.php:1393
4578
+ msgid "Ignored if Ranks are not public"
4579
+ msgstr "Ignoré si le classement n'est pas public"
4580
+
4581
+ #: addons/ranks/myCRED-addon-ranks.php:1396
4582
+ msgid "Display Order"
4583
+ msgstr "Ordre d'affichage"
4584
+
4585
+ #: addons/ranks/myCRED-addon-ranks.php:1404
4586
+ msgid "Ascending - Lowest rank to highest"
4587
+ msgstr "Ascendant - Du plus petit au plus grand"
4588
+
4589
+ #: addons/ranks/myCRED-addon-ranks.php:1405
4590
+ msgid "Descending - Highest rank to lowest"
4591
+ msgstr "Descendant - Du plus grand au plus petit"
4592
+
4593
+ #: addons/ranks/myCRED-addon-ranks.php:1416
4594
+ msgid ""
4595
+ "Select in what order ranks should be displayed in your admin area and/or "
4596
+ "front if ranks are \"Public\""
4597
+ msgstr ""
4598
+ "Choisissez l'ordre d'affichage des classements dans l'admin et/ou sur le "
4599
+ "site quand les classements sont marqués comme \"Publics\""
4600
+
4601
+ #: addons/ranks/myCRED-addon-ranks.php:1422
4602
+ msgid "Rank Basis"
4603
+ msgstr "Base de Classement"
4604
+
4605
+ #: addons/ranks/myCRED-addon-ranks.php:1425
4606
+ msgid "Users are ranked according to their current balance."
4607
+ msgstr "Les utilisateurs sont classés selon leur solde courant"
4608
+
4609
+ #: addons/ranks/myCRED-addon-ranks.php:1428
4610
+ msgid ""
4611
+ "Users are ranked according to the total amount of %_plural% they have "
4612
+ "accumulated."
4613
+ msgstr ""
4614
+ "Les utilisateurs sont classés selon le montant de total de %_plural% qu'ils "
4615
+ "ont accumulés."
4616
+
4617
+ #: addons/ranks/myCRED-addon-ranks.php:1432
4618
+ #: addons/ranks/myCRED-addon-ranks.php:1437
4619
+ msgid "Calculate Totals"
4620
+ msgstr "Calculer les totaux"
4621
+
4622
+ #: addons/ranks/myCRED-addon-ranks.php:1435
4623
+ msgid ""
4624
+ "Once a users total has been calculated, they will be assigned to their "
4625
+ "appropriate roles. For this reason, it is highly recommended that you first "
4626
+ "setup your ranks!"
4627
+ msgstr ""
4628
+ "Une fois les totaux de vos utilisateurs calculés, leurs rôles respectifs "
4629
+ "leurs seront assignés. Pour cette raison, il est fortement recommandé que "
4630
+ "vous configurez d'abord vos classements !"
4631
+
4632
+ #: addons/ranks/myCRED-addon-ranks.php:1436
4633
+ msgid ""
4634
+ "Depending on your log size and number of users this process may take a while."
4635
+ " Please do not leave, click \"Update Settings\" or re-fresh this page until "
4636
+ "this is completed!"
4637
+ msgstr ""
4638
+ "Selon la taille de votre hébergement et le nombres d'utilisateurs, cette "
4639
+ "opération peut prendre un certain temps. Ne quittez pas cette page, ne "
4640
+ "cliquez pas sur \"Mettre à jour\" et ne rafraichissez pas la page avant la "
4641
+ "fin de l'opération !"
4642
+
4643
+ #: addons/ranks/myCRED-addon-ranks.php:1454
4644
+ msgid "Include in Profile Header."
4645
+ msgstr "Inclure dans l'en-tête du profil."
4646
+
4647
+ #: addons/ranks/myCRED-addon-ranks.php:1456
4648
+ msgid "Include under the \"Profile\" tab and Profile Header."
4649
+ msgstr "Inclure sous l'onglet \"Profil\" et dans l'en-tête du profil."
4650
+
4651
+ #: addons/ranks/myCRED-addon-ranks.php:1460
4652
+ msgid "Rank in BuddyPress"
4653
+ msgstr "Classement dans BuddyPress"
4654
+
4655
+ #: addons/ranks/myCRED-addon-ranks.php:1500
4656
+ #: addons/badges/myCRED-addon-badges.php:1183
4657
+ msgid "Include in Profile"
4658
+ msgstr "Inclure dans le profil"
4659
+
4660
+ #: addons/ranks/myCRED-addon-ranks.php:1584
4661
+ msgid "Script Communication Error"
4662
+ msgstr "Erreur de communication des scripts"
4663
+
4664
+ #: addons/ranks/myCRED-addon-ranks.php:1651
4665
+ msgid "User Meta Key"
4666
+ msgstr "Mot clé utilisateur"
4667
+
4668
+ #: addons/ranks/myCRED-addon-ranks.php:1655
4669
+ msgid "No. of ranks"
4670
+ msgstr "N° de classement"
4671
+
4672
+ #: addons/ranks/myCRED-addon-ranks.php:1660
4673
+ msgid "Remove All Ranks"
4674
+ msgstr "Supprimer tous les classements"
4675
+
4676
+ #: addons/ranks/myCRED-addon-ranks.php:1660
4677
+ msgid "Assign Ranks to Users"
4678
+ msgstr "Attribuer un classement à l'utilisateur"
4679
+
4680
+ #: addons/notifications/myCRED-addon-notifications.php:191
4681
+ msgid "Notifications"
4682
+ msgstr "Notifications"
4683
+
4684
+ #: addons/notifications/myCRED-addon-notifications.php:193
4685
+ msgid "Styling"
4686
+ msgstr "Style"
4687
+
4688
+ #: addons/notifications/myCRED-addon-notifications.php:196
4689
+ msgid "Use the included CSS Styling for notifications."
4690
+ msgstr "Utiliser le style CSS inclus pour les notifications."
4691
+
4692
+ #: addons/notifications/myCRED-addon-notifications.php:203
4693
+ msgid ""
4694
+ "Use %entry% to show the log entry in the notice and %amount% for the amount."
4695
+ msgstr ""
4696
+ "Utilisez %entry% pour afficher l'élément concerné dans la notice et %amount% "
4697
+ "pour afficher le montant."
4698
+
4699
+ #: addons/notifications/myCRED-addon-notifications.php:206
4700
+ msgid "Transient Lifespan"
4701
+ msgstr "Durée transitoire"
4702
+
4703
+ #: addons/notifications/myCRED-addon-notifications.php:210
4704
+ msgid ""
4705
+ "The number of days a users notification is saved before being automatically "
4706
+ "deleted."
4707
+ msgstr ""
4708
+ "Le nombre de jours de conservations d'une notice adressée à l'utilisateur "
4709
+ "avant qu'elle ne soit automatiquement supprimée."
4710
+
4711
+ #: addons/notifications/myCRED-addon-notifications.php:213
4712
+ msgid "Duration"
4713
+ msgstr "Durée"
4714
+
4715
+ #: addons/email-notices/myCRED-addon-email-notices.php:167
4716
+ #: addons/email-notices/myCRED-addon-email-notices.php:168
4717
+ #: addons/email-notices/myCRED-addon-email-notices.php:169
4718
+ #: addons/email-notices/myCRED-addon-email-notices.php:170
4719
+ #: addons/email-notices/myCRED-addon-email-notices.php:173
4720
+ #: addons/email-notices/myCRED-addon-email-notices.php:174
4721
+ #: addons/email-notices/myCRED-addon-email-notices.php:175
4722
+ #: addons/email-notices/myCRED-addon-email-notices.php:176
4723
+ msgid "Email Notice Updated."
4724
+ msgstr "Notice d'Email mis à jour."
4725
+
4726
+ #: addons/email-notices/myCRED-addon-email-notices.php:254
4727
+ #: addons/email-notices/myCRED-addon-email-notices.php:271
4728
+ msgid "Email Subject"
4729
+ msgstr "Sujet du mail"
4730
+
4731
+ #: addons/email-notices/myCRED-addon-email-notices.php:272
4732
+ #: addons/sell-content/myCRED-addon-sell-content.php:493
4733
+ #: addons/banking/services/mycred-service-payouts.php:565
4734
+ #: addons/banking/services/mycred-service-payouts.php:880
4735
+ msgid "Status"
4736
+ msgstr "Statut"
4737
+
4738
+ #: addons/email-notices/myCRED-addon-email-notices.php:298
4739
+ msgid "Not Active"
4740
+ msgstr "Inactif"
4741
+
4742
+ #: addons/email-notices/myCRED-addon-email-notices.php:301
4743
+ msgid "Scheduled:<br /><strong>%1$s</strong>"
4744
+ msgstr "Pr&eacute;vu pour le:<br /><strong>%1$s</strong>"
4745
+
4746
+ #: addons/email-notices/myCRED-addon-email-notices.php:306
4747
+ #: addons/banking/services/mycred-service-payouts.php:31
4748
+ msgid "Active"
4749
+ msgstr "Actif"
4750
+
4751
+ #: addons/email-notices/myCRED-addon-email-notices.php:308
4752
+ msgid "Active - Last run:<br /><strong>%1$s</strong>"
4753
+ msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
4754
+
4755
+ #: addons/email-notices/myCRED-addon-email-notices.php:321
4756
+ msgid "Email is sent when"
4757
+ msgstr "Le mail sera envoyé quand"
4758
+
4759
+ #: addons/email-notices/myCRED-addon-email-notices.php:323
4760
+ msgid "Missing instance for this notice!"
4761
+ msgstr "Ce message n'est pas instancié !"
4762
+
4763
+ #: addons/email-notices/myCRED-addon-email-notices.php:332
4764
+ #: addons/email-notices/myCRED-addon-email-notices.php:334
4765
+ #: addons/email-notices/myCRED-addon-email-notices.php:336
4766
+ msgid "Sent To"
4767
+ msgstr "Envoyer à"
4768
+
4769
+ #: addons/email-notices/myCRED-addon-email-notices.php:334
4770
+ #: addons/email-notices/myCRED-addon-email-notices.php:568
4771
+ msgid "Administrator"
4772
+ msgstr "Administrateur"
4773
+
4774
+ #: addons/email-notices/myCRED-addon-email-notices.php:336
4775
+ msgid "Both Administrator and User"
4776
+ msgstr "A l'administrateur et à l'utilisateur"
4777
+
4778
+ #: addons/email-notices/myCRED-addon-email-notices.php:384
4779
+ #: addons/email-notices/myCRED-addon-email-notices.php:1400
4780
+ msgid "Email Settings"
4781
+ msgstr "Configuration des mails"
4782
+
4783
+ #: addons/email-notices/myCRED-addon-email-notices.php:393
4784
+ msgid "Available Template Tags"
4785
+ msgstr "Mots-clés utilisables ici"
4786
+
4787
+ #: addons/email-notices/myCRED-addon-email-notices.php:404
4788
+ msgid "Email Header"
4789
+ msgstr "En-tête du mail"
4790
+
4791
+ #: addons/email-notices/myCRED-addon-email-notices.php:490
4792
+ msgid ""
4793
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
4794
+ "you are not yet ready to use this email notice!"
4795
+ msgstr ""
4796
+ "<strong>ATTENTION</strong><br/>Une fois que le message est publié il est "
4797
+ "actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
4798
+ "l'utiliser."
4799
+
4800
+ #: addons/email-notices/myCRED-addon-email-notices.php:492
4801
+ msgid "This notice will become active on:<br /><strong>%1$s</strong>"
4802
+ msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
4803
+
4804
+ #: addons/email-notices/myCRED-addon-email-notices.php:494
4805
+ msgid "This email notice is active."
4806
+ msgstr "Ce message est activé."
4807
+
4808
+ #: addons/email-notices/myCRED-addon-email-notices.php:520
4809
+ msgid "Send this email notice when..."
4810
+ msgstr "Envoyer ce mail quand...."
4811
+
4812
+ #: addons/email-notices/myCRED-addon-email-notices.php:563
4813
+ msgid "Recipient:"
4814
+ msgstr "Destinataire:"
4815
+
4816
+ #: addons/email-notices/myCRED-addon-email-notices.php:571
4817
+ msgid "Both"
4818
+ msgstr "Les deux"
4819
+
4820
+ #: addons/email-notices/myCRED-addon-email-notices.php:607
4821
+ #: addons/email-notices/myCRED-addon-email-notices.php:1403
4822
+ msgid "Senders Name:"
4823
+ msgstr "Expéditeur:"
4824
+
4825
+ #: addons/email-notices/myCRED-addon-email-notices.php:611
4826
+ #: addons/email-notices/myCRED-addon-email-notices.php:1407
4827
+ msgid "Senders Email:"
4828
+ msgstr "Email de l'expéditeur"
4829
+
4830
+ #: addons/email-notices/myCRED-addon-email-notices.php:615
4831
+ msgid "Reply-To Email:"
4832
+ msgstr "Adresse de réponse"
4833
+
4834
+ #: addons/email-notices/myCRED-addon-email-notices.php:640
4835
+ msgid "CSS Styling"
4836
+ msgstr "Règles de style"
4837
+
4838
+ #: addons/email-notices/myCRED-addon-email-notices.php:663
4839
+ msgid "Site Related"
4840
+ msgstr "A propos du site"
4841
+
4842
+ #: addons/email-notices/myCRED-addon-email-notices.php:669
4843
+ msgid "Your websites title"
4844
+ msgstr "Titre de votre site"
4845
+
4846
+ #: addons/email-notices/myCRED-addon-email-notices.php:677
4847
+ msgid "Your websites address"
4848
+ msgstr "Adresse de votre site"
4849
+
4850
+ #: addons/email-notices/myCRED-addon-email-notices.php:685
4851
+ msgid "Your websites tagline (description)"
4852
+ msgstr "Description de votre site"
4853
+
4854
+ #: addons/email-notices/myCRED-addon-email-notices.php:693
4855
+ msgid "Your websites admin email"
4856
+ msgstr "Email de l'administrateur du site"
4857
+
4858
+ #: addons/email-notices/myCRED-addon-email-notices.php:701
4859
+ msgid "Total number of blog members"
4860
+ msgstr "Total des membres de votre blog"
4861
+
4862
+ #: addons/email-notices/myCRED-addon-email-notices.php:862
4863
+ msgid "users balance changes"
4864
+ msgstr "le solde a changé"
4865
+
4866
+ #: addons/email-notices/myCRED-addon-email-notices.php:863
4867
+ msgid "user gains %_plural%"
4868
+ msgstr "gains de %_plural%"
4869
+
4870
+ #: addons/email-notices/myCRED-addon-email-notices.php:864
4871
+ msgid "user lose %_plural%"
4872
+ msgstr "perte de %_plural%"
4873
+
4874
+ #: addons/email-notices/myCRED-addon-email-notices.php:865
4875
+ msgid "users balance reaches zero"
4876
+ msgstr "le solde est à zéro"
4877
+
4878
+ #: addons/email-notices/myCRED-addon-email-notices.php:866
4879
+ msgid "users balance goes minus"
4880
+ msgstr "le solde est négatif"
4881
+
4882
+ #: addons/email-notices/myCRED-addon-email-notices.php:880
4883
+ msgid "Sell Content Add-on"
4884
+ msgstr "Module de vente de contenu"
4885
+
4886
+ #: addons/email-notices/myCRED-addon-email-notices.php:881
4887
+ msgid "user buys content"
4888
+ msgstr "l'utilisateur a acheté du contenu"
4889
+
4890
+ #: addons/email-notices/myCRED-addon-email-notices.php:882
4891
+ msgid "authors content gets sold"
4892
+ msgstr "le contenu de cet auteur a été vendu"
4893
+
4894
+ #: addons/email-notices/myCRED-addon-email-notices.php:889
4895
+ msgid "buyCREDs Add-on"
4896
+ msgstr "Module achatCRED"
4897
+
4898
+ #: addons/email-notices/myCRED-addon-email-notices.php:890
4899
+ msgid "user buys %_plural%"
4900
+ msgstr "l'utilisateur a acheté des %_plural%"
4901
+
4902
+ #: addons/email-notices/myCRED-addon-email-notices.php:897
4903
+ msgid "Transfer Add-on"
4904
+ msgstr "Module de transfert"
4905
+
4906
+ #: addons/email-notices/myCRED-addon-email-notices.php:898
4907
+ msgid "user sends %_plural%"
4908
+ msgstr "l'utilisateur a envoyé des %_plural%"
4909
+
4910
+ #: addons/email-notices/myCRED-addon-email-notices.php:899
4911
+ msgid "user receives %_plural%"
4912
+ msgstr "l'utilisateur a reçu des %_plural%"
4913
+
4914
+ #: addons/email-notices/myCRED-addon-email-notices.php:906
4915
+ msgid "Ranks Add-on"
4916
+ msgstr "Application de classement"
4917
+
4918
+ #: addons/email-notices/myCRED-addon-email-notices.php:907
4919
+ msgid "user is demoted"
4920
+ msgstr "utilisateur rétrogradé"
4921
+
4922
+ #: addons/email-notices/myCRED-addon-email-notices.php:908
4923
+ msgid "user is promoted"
4924
+ msgstr "utilisateur promu"
4925
+
4926
+ #: addons/email-notices/myCRED-addon-email-notices.php:1337
4927
+ #: addons/coupons/myCRED-addon-coupons.php:112
4928
+ msgid "Email Notices"
4929
+ msgstr "Messagerie"
4930
+
4931
+ #: addons/email-notices/myCRED-addon-email-notices.php:1339
4932
+ msgid ""
4933
+ "Settings that apply to all email notices and can not be overridden for "
4934
+ "individual emails."
4935
+ msgstr ""
4936
+ "Ces paramètres s'appliquent à toutes les envois par mail et ne peuvent être "
4937
+ "appliqués individuellement."
4938
+
4939
+ #: addons/email-notices/myCRED-addon-email-notices.php:1340
4940
+ msgid "Email Format"
4941
+ msgstr "Format des mails"
4942
+
4943
+ #: addons/email-notices/myCRED-addon-email-notices.php:1343
4944
+ msgid "Plain text emails only."
4945
+ msgstr "Format texte uniquement"
4946
+
4947
+ #: addons/email-notices/myCRED-addon-email-notices.php:1346
4948
+ msgid "HTML or Plain text emails."
4949
+ msgstr "Format texte ou HTML"
4950
+
4951
+ #: addons/email-notices/myCRED-addon-email-notices.php:1349
4952
+ msgid "Filters"
4953
+ msgstr "Filtres de recherche"
4954
+
4955
+ #: addons/email-notices/myCRED-addon-email-notices.php:1353
4956
+ msgid ""
4957
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
4958
+ "an email is sent."
4959
+ msgstr ""
4960
+ "Autoriser WordPress et les plugins tiers à filtrer le sujet avant l'envoi "
4961
+ "d'un mail."
4962
+
4963
+ #: addons/email-notices/myCRED-addon-email-notices.php:1357
4964
+ msgid ""
4965
+ "Allow WordPress and Third Party Plugins to filter the email content before "
4966
+ "an email is sent."
4967
+ msgstr ""
4968
+ "Autoriser WordPress et les plugins tiers à filtrer le contenu avant l'envoi "
4969
+ "d'un mail."
4970
+
4971
+ #: addons/email-notices/myCRED-addon-email-notices.php:1363
4972
+ #: addons/email-notices/myCRED-addon-email-notices.php:1370
4973
+ msgid "Email Schedule"
4974
+ msgstr "Email annexe"
4975
+
4976
+ #: addons/email-notices/myCRED-addon-email-notices.php:1365
4977
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
4978
+ msgstr "Wordpress Con est désactivé. Les emails seront envoyés immédiatement."
4979
+
4980
+ #: addons/email-notices/myCRED-addon-email-notices.php:1374
4981
+ msgid "Send emails immediately"
4982
+ msgstr "Envoie des emails immédiatement."
4983
+
4984
+ #: addons/email-notices/myCRED-addon-email-notices.php:1378
4985
+ msgid "Send emails once an hour"
4986
+ msgstr "Envoie des emails une fois par heure."
4987
+
4988
+ #: addons/email-notices/myCRED-addon-email-notices.php:1382
4989
+ msgid "Send emails once a day"
4990
+ msgstr "Envoie des emails une fois par jour"
4991
+
4992
+ #: addons/email-notices/myCRED-addon-email-notices.php:1387
4993
+ msgid ""
4994
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
4995
+ "updates."
4996
+ msgstr ""
4997
+ "Utiliser le %s shortcode pour permettre aux utilisateurs de s'abonner et se "
4998
+ "désabonner par email."
4999
+
5000
+ #: addons/email-notices/myCRED-addon-email-notices.php:1392
5001
+ msgid "SMTP Override"
5002
+ msgstr "Ne pas tenir compte de SMTP"
5003
+
5004
+ #: addons/email-notices/myCRED-addon-email-notices.php:1396
5005
+ msgid ""
5006
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5007
+ "use a SMTP plugin for emails."
5008
+ msgstr ""
5009
+ "SMTP Debug. Activé si vous avez l'expérence issu avec wp_mail(s) ou si vous "
5010
+ "utilisez SMTP plugin pour vos mails."
5011
+
5012
+ #: addons/email-notices/myCRED-addon-email-notices.php:1399
5013
+ msgid ""
5014
+ "Default email settings. These settings can be individually overridden when "
5015
+ "editing emails."
5016
+ msgstr ""
5017
+ "Paramètres par défaut des mails. Ils pourront être modifiés individuellement "
5018
+ "lors de la modification d'un mail."
5019
+
5020
+ #: addons/email-notices/myCRED-addon-email-notices.php:1411
5021
+ msgid "Reply-To:"
5022
+ msgstr "Adresse de réponse:"
5023
+
5024
+ #: addons/email-notices/myCRED-addon-email-notices.php:1415
5025
+ msgid "Default Email Content"
5026
+ msgstr "Contenu par défaut"
5027
+
5028
+ #: addons/email-notices/myCRED-addon-email-notices.php:1419
5029
+ msgid "Default email content."
5030
+ msgstr "contenu par défaut"
5031
+
5032
+ #: addons/email-notices/myCRED-addon-email-notices.php:1422
5033
+ msgid "Default Email Styling"
5034
+ msgstr "Style par défaut"
5035
+
5036
+ #: addons/email-notices/myCRED-addon-email-notices.php:1426
5037
+ msgid "Ignored if HTML is not allowed in emails."
5038
+ msgstr "Sera ignoré si HTML désactivé pour les mails"
5039
+
5040
+ #: addons/email-notices/myCRED-addon-email-notices.php:1523
5041
+ msgid "Unsubscribe"
5042
+ msgstr "Se désabonner"
5043
+
5044
+ #: addons/email-notices/myCRED-addon-email-notices.php:1524
5045
+ msgid "Email Notice"
5046
+ msgstr "Message à envoyer"
5047
+
5048
+ #: addons/email-notices/myCRED-addon-email-notices.php:1545
5049
+ msgid "There are no email notifications yet."
5050
+ msgstr "Il n'y a pas encore de notifications d'email."
5051
+
5052
+ #: addons/email-notices/myCRED-addon-email-notices.php:1552
5053
+ #: addons/buy-creds/modules/buycred-module-pending.php:506
5054
+ msgid "Save Changes"
5055
+ msgstr "Sauvegarder les changements."
5056
+
5057
+ #: addons/badges/myCRED-addon-badges.php:148
5058
+ #: addons/badges/myCRED-addon-badges.php:154
5059
+ #: addons/badges/myCRED-addon-badges.php:160
5060
+ #: addons/badges/myCRED-addon-badges.php:295
5061
+ #: addons/badges/myCRED-addon-badges.php:296
5062
+ #: addons/badges/myCRED-addon-badges.php:1134
5063
+ #: addons/badges/myCRED-addon-badges.php:1256
5064
+ #: addons/badges/myCRED-addon-badges.php:1259
5065
+ msgid "Badges"
5066
+ msgstr "Badges"
5067
+
5068
+ #: addons/badges/myCRED-addon-badges.php:149
5069
+ msgid "Badge"
5070
+ msgstr "Badge"
5071
+
5072
+ #: addons/badges/myCRED-addon-badges.php:152
5073
+ msgid "Edit Badge"
5074
+ msgstr "Editer le badge"
5075
+
5076
+ #: addons/badges/myCRED-addon-badges.php:153
5077
+ msgid "New Badge"
5078
+ msgstr "Nouveau badge"
5079
+
5080
+ #: addons/badges/myCRED-addon-badges.php:155
5081
+ msgid "View Badge"
5082
+ msgstr "Voir le badge"
5083
+
5084
+ #: addons/badges/myCRED-addon-badges.php:156
5085
+ msgid "Search Badge"
5086
+ msgstr "Search badge"
5087
+
5088
+ #: addons/badges/myCRED-addon-badges.php:157
5089
+ msgid "No badges found"
5090
+ msgstr "Pas de badges trouvés"
5091
+
5092
+ #: addons/badges/myCRED-addon-badges.php:158
5093
+ msgid "No badges found in Trash"
5094
+ msgstr "Pas de badge trouvés dans la corbeille"
5095
+
5096
+ #: addons/badges/myCRED-addon-badges.php:270
5097
+ #: addons/badges/myCRED-addon-badges.php:271
5098
+ #: addons/badges/myCRED-addon-badges.php:272
5099
+ #: addons/badges/myCRED-addon-badges.php:273
5100
+ #: addons/badges/myCRED-addon-badges.php:277
5101
+ #: addons/badges/myCRED-addon-badges.php:278
5102
+ #: addons/badges/myCRED-addon-badges.php:279
5103
+ msgid "Badge Updated."
5104
+ msgstr "Badge mis à jour."
5105
+
5106
+ #: addons/badges/myCRED-addon-badges.php:396
5107
+ #: addons/badges/myCRED-addon-badges.php:480
5108
+ msgid "Badge Name"
5109
+ msgstr "Nom du badge"
5110
+
5111
+ #: addons/badges/myCRED-addon-badges.php:397
5112
+ msgid "Default Image"
5113
+ msgstr "Image par défaut"
5114
+
5115
+ #: addons/badges/myCRED-addon-badges.php:399
5116
+ msgid "Requirements"
5117
+ msgstr "Exigences"
5118
+
5119
+ #: addons/badges/myCRED-addon-badges.php:516
5120
+ msgid "Badge Image"
5121
+ msgstr "Image du badge"
5122
+
5123
+ #: addons/badges/myCRED-addon-badges.php:517
5124
+ msgid "Use as Badge"
5125
+ msgstr ""
5126
+ "Utilisez\n"
5127
+ " \n"
5128
+ "comme\n"
5129
+ " \n"
5130
+ "Badge"
5131
+
5132
+ #: addons/badges/myCRED-addon-badges.php:678
5133
+ msgid "Assign Badge"
5134
+ msgstr "Assigner un badge"
5135
+
5136
+ #: addons/badges/myCRED-addon-badges.php:679
5137
+ msgid "Remove Connections"
5138
+ msgstr "Supprimer les connexions."
5139
+
5140
+ #: addons/badges/myCRED-addon-badges.php:777
5141
+ msgid "Time(s)"
5142
+ msgstr "Heure(s)"
5143
+
5144
+ #: addons/badges/myCRED-addon-badges.php:778
5145
+ msgid "In total"
5146
+ msgstr "Au total"
5147
+
5148
+ #: addons/badges/myCRED-addon-badges.php:1184
5149
+ msgid "Include in Forum Replies"
5150
+ msgstr "Inclure dans les réponses du forum"
5151
+
5152
+ #: addons/badges/myCRED-addon-badges.php:1185
5153
+ msgid "Include in Profile and Forum Replies"
5154
+ msgstr "Inclure dans les profils et les réponses du forums"
5155
+
5156
+ #: addons/badges/myCRED-addon-badges.php:1408
5157
+ msgid "No users has yet earned this badge."
5158
+ msgstr ""
5159
+ "Aucun utilisateur\n"
5160
+ " \n"
5161
+ "n'a encore\n"
5162
+ " \n"
5163
+ "gagné\n"
5164
+ " \n"
5165
+ "ce badge\n"
5166
+ "."
5167
+
5168
+ #: addons/coupons/myCRED-addon-coupons.php:100
5169
+ #: addons/coupons/myCRED-addon-coupons.php:106
5170
+ #: addons/coupons/myCRED-addon-coupons.php:168
5171
+ #: addons/coupons/myCRED-addon-coupons.php:169
5172
+ #: addons/coupons/myCRED-addon-coupons.php:659
5173
+ msgid "Coupons"
5174
+ msgstr "Promotions"
5175
+
5176
+ #: addons/coupons/myCRED-addon-coupons.php:101
5177
+ msgid "Coupon"
5178
+ msgstr "Promotion"
5179
+
5180
+ #: addons/coupons/myCRED-addon-coupons.php:102
5181
+ #: addons/coupons/myCRED-addon-coupons.php:103
5182
+ msgid "Create New"
5183
+ msgstr "Créer une promotion"
5184
+
5185
+ #: addons/coupons/myCRED-addon-coupons.php:104
5186
+ msgid "Edit Coupon"
5187
+ msgstr "Modifier la promo"
5188
+
5189
+ #: addons/coupons/myCRED-addon-coupons.php:105
5190
+ msgid "New Coupon"
5191
+ msgstr "Nouvelle promotion"
5192
+
5193
+ #: addons/coupons/myCRED-addon-coupons.php:108
5194
+ msgid "Search coupons"
5195
+ msgstr "Rechercher une promo"
5196
+
5197
+ #: addons/coupons/myCRED-addon-coupons.php:109
5198
+ msgid "No coupons found"
5199
+ msgstr "Aucune promo trouvée"
5200
+
5201
+ #: addons/coupons/myCRED-addon-coupons.php:110
5202
+ msgid "No coupons found in Trash"
5203
+ msgstr "Aucune promo dans la corbeille"
5204
+
5205
+ #: addons/coupons/myCRED-addon-coupons.php:143
5206
+ #: addons/coupons/myCRED-addon-coupons.php:144
5207
+ #: addons/coupons/myCRED-addon-coupons.php:145
5208
+ #: addons/coupons/myCRED-addon-coupons.php:146
5209
+ #: addons/coupons/myCRED-addon-coupons.php:149
5210
+ #: addons/coupons/myCRED-addon-coupons.php:150
5211
+ #: addons/coupons/myCRED-addon-coupons.php:151
5212
+ #: addons/coupons/myCRED-addon-coupons.php:152
5213
+ msgid "Coupon updated."
5214
+ msgstr "Promo mise à jour."
5215
+
5216
+ #: addons/coupons/myCRED-addon-coupons.php:148
5217
+ msgid "Coupon published."
5218
+ msgstr "Promo publiée."
5219
+
5220
+ #: addons/coupons/myCRED-addon-coupons.php:230
5221
+ #: addons/coupons/myCRED-addon-coupons.php:247
5222
+ msgid "Coupon Code"
5223
+ msgstr "Code Promo"
5224
+
5225
+ #: addons/coupons/myCRED-addon-coupons.php:248
5226
+ #: addons/coupons/myCRED-addon-coupons.php:481
5227
+ msgid "Value"
5228
+ msgstr "Valeur"
5229
+
5230
+ #: addons/coupons/myCRED-addon-coupons.php:251
5231
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:188
5232
+ msgid "Expires"
5233
+ msgstr "Date d'expiration"
5234
+
5235
+ #: addons/coupons/myCRED-addon-coupons.php:307
5236
+ msgid "Per User"
5237
+ msgstr "Par personne"
5238
+
5239
+ #: addons/coupons/myCRED-addon-coupons.php:316
5240
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:231
5241
+ msgid "Never"
5242
+ msgstr "jamais"
5243
+
5244
+ #: addons/coupons/myCRED-addon-coupons.php:322
5245
+ msgid "Expired"
5246
+ msgstr "Expiré"
5247
+
5248
+ #: addons/coupons/myCRED-addon-coupons.php:326
5249
+ msgid "In %s time"
5250
+ msgstr "En %s fois"
5251
+
5252
+ #: addons/coupons/myCRED-addon-coupons.php:425
5253
+ msgid "Coupon Setup"
5254
+ msgstr "Configuration de la Promo"
5255
+
5256
+ #: addons/coupons/myCRED-addon-coupons.php:434
5257
+ msgid "Coupon Limits"
5258
+ msgstr "Limites de la promotion"
5259
+
5260
+ #: addons/coupons/myCRED-addon-coupons.php:443
5261
+ msgid "Coupon Requirements"
5262
+ msgstr "Conditions de la promo"
5263
+
5264
+ #: addons/coupons/myCRED-addon-coupons.php:483
5265
+ msgid "The amount of %plural% this coupon is worth."
5266
+ msgstr "Ce bon vaut %plural%"
5267
+
5268
+ #: addons/coupons/myCRED-addon-coupons.php:492
5269
+ msgid "Select the point type that this coupon is applied."
5270
+ msgstr "Sélectionnez le type de point applicable à ce bon"
5271
+
5272
+ #: addons/coupons/myCRED-addon-coupons.php:504
5273
+ msgid "Expire"
5274
+ msgstr "Expire"
5275
+
5276
+ #: addons/coupons/myCRED-addon-coupons.php:506
5277
+ msgid ""
5278
+ "Optional date when this coupon expires. Expired coupons will be trashed."
5279
+ msgstr ""
5280
+ "Date d'expiration optionnelle pour ce bon. Les bons échus sont mis à la "
5281
+ "corbeille."
5282
+
5283
+ #: addons/coupons/myCRED-addon-coupons.php:534
5284
+ msgid "Global Maximum"
5285
+ msgstr "Maximum global"
5286
+
5287
+ #: addons/coupons/myCRED-addon-coupons.php:541
5288
+ msgid "User Maximum"
5289
+ msgstr "Maximum par utilisateur"
5290
+
5291
+ #: addons/coupons/myCRED-addon-coupons.php:543
5292
+ msgid "The maximum number of times this coupon can be used by a user."
5293
+ msgstr "Le nombre de fois qu'un utilisateur peut utiliser ce bon."
5294
+
5295
+ #: addons/coupons/myCRED-addon-coupons.php:574
5296
+ #: addons/banking/services/mycred-service-interest.php:499
5297
+ msgid "Minimum Balance"
5298
+ msgstr "Solde minimum"
5299
+
5300
+ #: addons/coupons/myCRED-addon-coupons.php:579
5301
+ msgid ""
5302
+ "Optional minimum balance a user must have in order to use this coupon. Use "
5303
+ "zero to disable."
5304
+ msgstr ""
5305
+ "Le solde minimum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
5306
+ "désactiver l'option."
5307
+
5308
+ #: addons/coupons/myCRED-addon-coupons.php:586
5309
+ msgid "Maximum Balance"
5310
+ msgstr "Solde maximum"
5311
+
5312
+ #: addons/coupons/myCRED-addon-coupons.php:591
5313
+ msgid ""
5314
+ "Optional maximum balance a user can have in order to use this coupon. Use "
5315
+ "zero to disable."
5316
+ msgstr ""
5317
+ "Le solde maximum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
5318
+ "désactiver l'option."
5319
+
5320
+ #: addons/coupons/myCRED-addon-coupons.php:665
5321
+ msgid ""
5322
+ "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
5323
+ "code."
5324
+ msgstr ""
5325
+ "Journalisation pour la réussite de rachat de coupon. Utilisez %coupon% pour "
5326
+ "afficher le code du bon."
5327
+
5328
+ #: addons/coupons/myCRED-addon-coupons.php:668
5329
+ msgid "Invalid Coupon Message"
5330
+ msgstr "Message de coupon invalide"
5331
+
5332
+ #: addons/coupons/myCRED-addon-coupons.php:672
5333
+ msgid "Message to show when users try to use a coupon that does not exists."
5334
+ msgstr ""
5335
+ "Le message à afficher lorsqu'un utilisateur tente d'utiliser un bon "
5336
+ "inexistant."
5337
+
5338
+ #: addons/coupons/myCRED-addon-coupons.php:675
5339
+ msgid "Expired Coupon Message"
5340
+ msgstr "Message de coupon échu"
5341
+
5342
+ #: addons/coupons/myCRED-addon-coupons.php:679
5343
+ msgid "Message to show when users try to use that has expired."
5344
+ msgstr ""
5345
+ "Le message à afficher lorsqu'un utilisateur tente d'utiliser un bon échu."
5346
+
5347
+ #: addons/coupons/myCRED-addon-coupons.php:682
5348
+ msgid "User Limit Message"
5349
+ msgstr "Message de période d'utilisation"
5350
+
5351
+ #: addons/coupons/myCRED-addon-coupons.php:686
5352
+ msgid "Message to show when the user limit has been reached for the coupon."
5353
+ msgstr ""
5354
+ "Le message à afficher lorsqu'un utilisateur a atteint la fin de la période "
5355
+ "d'utilisation du bon."
5356
+
5357
+ #: addons/coupons/myCRED-addon-coupons.php:689
5358
+ msgid "Minimum Balance Message"
5359
+ msgstr "Message de solde minimum"
5360
+
5361
+ #: addons/coupons/myCRED-addon-coupons.php:693
5362
+ msgid ""
5363
+ "Message to show when a user does not meet the minimum balance requirement. "
5364
+ "(if used)"
5365
+ msgstr ""
5366
+ "Le message à afficher lorsqu'un utilisateur ne possède pas le solde minimum "
5367
+ "requis. (si activé)"
5368
+
5369
+ #: addons/coupons/myCRED-addon-coupons.php:696
5370
+ msgid "Maximum Balance Message"
5371
+ msgstr "Message de solde maximum"
5372
+
5373
+ #: addons/coupons/myCRED-addon-coupons.php:700
5374
+ msgid ""
5375
+ "Message to show when a user does not meet the maximum balance requirement. "
5376
+ "(if used)"
5377
+ msgstr ""
5378
+ "Le message à afficher lorsqu'un utilisateur ne possède pas le solde maximum "
5379
+ "requis. (si activé)"
5380
+
5381
+ #: addons/coupons/myCRED-addon-coupons.php:703
5382
+ msgid "Success Message"
5383
+ msgstr "Message d'envoi réussi"
5384
+
5385
+ #: addons/coupons/myCRED-addon-coupons.php:707
5386
+ msgid ""
5387
+ "Message to show when a coupon was successfully deposited to a users account."
5388
+ msgstr ""
5389
+ "Le message à afficher lorsqu'un bon a été correctement viré sur le compte de "
5390
+ "l'utilisateur."
5391
+
5392
+ #: addons/sell-content/myCRED-addon-sell-content.php:238
5393
+ #: addons/sell-content/myCRED-addon-sell-content.php:241
5394
+ #: addons/sell-content/myCRED-addon-sell-content.php:506
5395
+ msgid "Profit Share"
5396
+ msgstr "Bénéfice partagé"
5397
+
5398
+ #: addons/sell-content/myCRED-addon-sell-content.php:365
5399
+ #: addons/sell-content/myCRED-addon-sell-content.php:830
5400
+ msgid "Sell Content"
5401
+ msgstr "Vendre du contenu"
5402
+
5403
+ #: addons/sell-content/myCRED-addon-sell-content.php:367
5404
+ msgid "Post Types"
5405
+ msgstr "Post Types"
5406
+
5407
+ #: addons/sell-content/myCRED-addon-sell-content.php:497
5408
+ #: addons/sell-content/myCRED-addon-sell-content.php:903
5409
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:495
5410
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:336
5411
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:339
5412
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153
5413
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156
5414
+ msgid "Price"
5415
+ msgstr "Prix"
5416
+
5417
+ #: addons/sell-content/myCRED-addon-sell-content.php:513
5418
+ #: addons/sell-content/myCRED-addon-sell-content.php:548
5419
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:473
5420
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:619
5421
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703
5422
+ #: addons/transfer/includes/mycred-transfer-widgets.php:88
5423
+ msgid "Button Label"
5424
+ msgstr "Intitulé du bouton"
5425
+
5426
+ #: addons/banking/services/mycred-service-central.php:117
5427
+ msgid "Ignore Manual Adjustments"
5428
+ msgstr "Ignorer les ajustements manuels"
5429
+
5430
+ #: addons/banking/services/mycred-service-interest.php:28
5431
+ msgid "%plural% interest rate payment"
5432
+ msgstr "Versement de %_plural% d'intérêts"
5433
+
5434
+ #: addons/banking/services/mycred-service-interest.php:481
5435
+ #: addons/banking/services/mycred-service-interest.php:652
5436
+ msgid "Interest Rate"
5437
+ msgstr "Taux d'intérêt"
5438
+
5439
+ #: addons/banking/services/mycred-service-interest.php:528
5440
+ #: addons/banking/services/mycred-service-interest.php:529
5441
+ #: addons/banking/services/mycred-service-payouts.php:791
5442
+ msgid "Comma separated list of user IDs"
5443
+ msgstr "Séparer les ID des utilisateurs par des virgules"
5444
+
5445
+ #: addons/banking/services/mycred-service-payouts.php:573
5446
+ msgid "Last Run"
5447
+ msgstr "Dernière exécution"
5448
+
5449
+ #: addons/banking/services/mycred-service-payouts.php:591
5450
+ #: addons/gateway/carts/mycred-wpecommerce.php:396
5451
+ msgid "Payout"
5452
+ msgstr "Paiement"
5453
+
5454
+ #: addons/banking/includes/mycred-banking-functions.php:79
5455
+ msgid "Hourly"
5456
+ msgstr "Horaire"
5457
+
5458
+ #: addons/banking/includes/mycred-banking-functions.php:84
5459
+ msgid "Daily"
5460
+ msgstr "Quotidienne"
5461
+
5462
+ #: addons/banking/includes/mycred-banking-functions.php:89
5463
+ msgid "Weekly"
5464
+ msgstr "Hebdomadaire"
5465
+
5466
+ #: addons/banking/includes/mycred-banking-functions.php:94
5467
+ msgid "Monthly"
5468
+ msgstr "Mensuel"
5469
+
5470
+ #: addons/banking/includes/mycred-banking-functions.php:99
5471
+ msgid "Quarterly"
5472
+ msgstr "Trimestrielle"
5473
+
5474
+ #: addons/banking/includes/mycred-banking-functions.php:104
5475
+ msgid "Semiannually"
5476
+ msgstr "Biannuelle"
5477
+
5478
+ #: addons/banking/includes/mycred-banking-functions.php:109
5479
+ msgid "Annually"
5480
+ msgstr "Annuelle"
5481
+
5482
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5483
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:540
5484
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626
5485
+ #: addons/buy-creds/modules/buycred-module-core.php:673
5486
+ msgid "Payments"
5487
+ msgstr "Paiements"
5488
+
5489
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5490
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:35
5491
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
5492
+ #: addons/buy-creds/modules/buycred-module-pending.php:733
5493
+ msgid "Pay Now"
5494
+ msgstr "Payer maintenant"
5495
+
5496
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:32
5497
+ msgid "Payment for Event Registration"
5498
+ msgstr "Paiement pour l'enregistrement d'un événement"
5499
+
5500
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:311
5501
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:336
5502
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:416
5503
+ #: addons/gateway/carts/mycred-wpecommerce.php:120
5504
+ msgid "Total Cost"
5505
+ msgstr "Coût total"
5506
+
5507
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:315
5508
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:340
5509
+ msgid "Balance After Purchase"
5510
+ msgstr "Solde après achats"
5511
+
5512
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:380
5513
+ msgid "Activate %s"
5514
+ msgstr "Activer %s"
5515
+
5516
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:389
5517
+ msgid "Deactivate %s"
5518
+ msgstr "Désactiver %s"
5519
+
5520
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:402
5521
+ msgid "Gateway Settings"
5522
+ msgstr "Configuration du service de paiement"
5523
+
5524
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5525
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:524
5526
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
5527
+ msgid "How many %s is 1 %s worth?"
5528
+ msgstr "Combien de %s vaut 1 %s ?"
5529
+
5530
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:463
5531
+ msgid "Gateway Title"
5532
+ msgstr "Aucun service de paiement n'est installé."
5533
+
5534
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:465
5535
+ msgid "Title to show on Payment page"
5536
+ msgstr "Titre à afficher sur la page de paiement"
5537
+
5538
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:468
5539
+ msgid "Payment Type"
5540
+ msgstr "Type de Paiement"
5541
+
5542
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:470
5543
+ msgid "Title to show on receipts and logs"
5544
+ msgstr "Titre à afficher pour les rapports et les journaux d'activités"
5545
+
5546
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:475
5547
+ msgid "Pay Button"
5548
+ msgstr "Bouton de paiement"
5549
+
5550
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:503
5551
+ msgid "Important!"
5552
+ msgstr "Important !"
5553
+
5554
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:505
5555
+ msgid ""
5556
+ "You can disable purchases using this gateway by adding a custom Event Meta: "
5557
+ "<code>mycred_no_sale</code>"
5558
+ msgstr ""
5559
+ "Vous pouvez désactiver les achats avec ce service en ajoutant ce code "
5560
+ "personnalisé: <code>mycred_no_sale</code>"
5561
+
5562
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:506
5563
+ msgid "Users must be logged in to use this gateway!"
5564
+ msgstr "Vous devez vous connecter pour utiliser ce service !"
5565
+
5566
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5567
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:569
5568
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641
5569
+ #: addons/gateway/carts/mycred-wpecommerce.php:393
5570
+ #: addons/gateway/carts/mycred-woocommerce.php:168
5571
+ msgid "Profit Sharing"
5572
+ msgstr "Partage de bénéfice"
5573
+
5574
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:512
5575
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:572
5576
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644
5577
+ #: addons/gateway/carts/mycred-wpecommerce.php:397
5578
+ #: addons/gateway/carts/mycred-woocommerce.php:170
5579
+ msgid "Option to share sales with the product owner. Use zero to disable."
5580
+ msgstr ""
5581
+ "Option de partage des ventes avec le propriétaire du produit. Indiquez zéro "
5582
+ "pour désactiver l'option."
5583
+
5584
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:528
5585
+ msgid "Solvent users"
5586
+ msgstr "Utilisateurs solvables"
5587
+
5588
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:530
5589
+ msgid ""
5590
+ "Message to show users on the payment page before they are charged. Leave "
5591
+ "empty to hide."
5592
+ msgstr ""
5593
+ "Message à afficher sur la page de paiement avant que l'utilisateur ne soit "
5594
+ "débité. Laissez vide pour ne rien afficher."
5595
+
5596
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:533
5597
+ msgid "Insolvent users"
5598
+ msgstr "Utilisateurs insolvables"
5599
+
5600
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:535
5601
+ msgid "Message to show users who do not have enough points to pay."
5602
+ msgstr ""
5603
+ "Message à afficher aux membres n'ayant pas suffisamment de points pour payer."
5604
+
5605
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:540
5606
+ msgid "Message to show visitors (users not logged in) on the payment page."
5607
+ msgstr ""
5608
+ "Message à afficher aux visiteurs non connectés sur la page de paiement."
5609
+
5610
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:29
5611
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
5612
+ msgid "Payment for tickets to %link_with_title%"
5613
+ msgstr "tickets de Paiement vers %link_with_title%"
5614
+
5615
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:30
5616
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
5617
+ msgid "Ticket refund for %link_with_title%"
5618
+ msgstr "Ticket de Remboursement vers %link_with_title%"
5619
+
5620
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:34
5621
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
5622
+ msgid "Pay using your %_plural% balance"
5623
+ msgstr "Payez avec votre solde de %_plural%"
5624
+
5625
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5626
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
5627
+ msgid "Pay"
5628
+ msgstr "Payer"
5629
+
5630
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:39
5631
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
5632
+ msgid "Thank you for your payment!"
5633
+ msgstr "Merci pour votre paiement !"
5634
+
5635
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:40
5636
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
5637
+ msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5638
+ msgstr ""
5639
+ "Désolé mais vous ne pouvez pas payer pour ces tickets à l'aide de %_plural%"
5640
+
5641
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:333
5642
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
5643
+ msgid "Ticket Type"
5644
+ msgstr "Type de ticket"
5645
+
5646
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:342
5647
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
5648
+ msgid "Spaces"
5649
+ msgstr "Espaces"
5650
+
5651
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:420
5652
+ msgid "Balance After Payment"
5653
+ msgstr "Solde après paiement"
5654
+
5655
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:532
5656
+ msgid "Click to toggle"
5657
+ msgstr "Cliquez pour basculer"
5658
+
5659
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:533
5660
+ msgid "%s Payments"
5661
+ msgstr "%s Paiements"
5662
+
5663
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:542
5664
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
5665
+ msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5666
+ msgstr ""
5667
+ "Désactivé - les utilisateurs NE PEUVENT PAS régler de tickets avec leurs "
5668
+ "%_plural%."
5669
+
5670
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:543
5671
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
5672
+ msgid "Single - Users can ONLY pay for tickets using %plural%."
5673
+ msgstr ""
5674
+ "Unique - les utilisateurs PEUVENT SEULEMENT payer des tickets avec leurs "
5675
+ "%_plural%"
5676
+
5677
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:544
5678
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
5679
+ msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5680
+ msgstr ""
5681
+ "Multi - les utilisateurs peuvent payer leurs tickets avec d'autres services "
5682
+ "ou avec leurs %_plural%"
5683
+
5684
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:562
5685
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:595
5686
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634
5687
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
5688
+ msgid "Refunds"
5689
+ msgstr "Remboursements"
5690
+
5691
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:565
5692
+ msgid ""
5693
+ "The percentage of the paid amount to refund if a booking gets cancelled. Use "
5694
+ "zero for no refunds. No refunds are given to \"Rejected\" bookings."
5695
+ msgstr ""
5696
+ "Le pourcentage du montant à rembourser en cas d'annulation de commande. "
5697
+ "Mettez zéro pour ne rien rembourser. Aucun remboursement n'est attribué aux "
5698
+ "commandes \"Rejetées\"."
5699
+
5700
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:585
5701
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
5702
+ msgid "Log Templates"
5703
+ msgstr "Textes à afficher"
5704
+
5705
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:588
5706
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
5707
+ msgid "Purchases"
5708
+ msgstr "Achats"
5709
+
5710
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:605
5711
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
5712
+ msgid "Payment Link Label"
5713
+ msgstr "Intitulé du lien de paiement"
5714
+
5715
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:608
5716
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
5717
+ msgid ""
5718
+ "The payment link shows / hides the payment form under \"My Bookings\". No "
5719
+ "HTML allowed."
5720
+ msgstr ""
5721
+ "Le lien pour afficher/masquer le formulaire de paiement sous \"Mes "
5722
+ "commandes\". HTML interdit."
5723
+
5724
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:612
5725
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
5726
+ msgid "Payment Header"
5727
+ msgstr "En-tête de la page de paiement"
5728
+
5729
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:615
5730
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
5731
+ msgid "Shown on top of the payment form. No HTML allowed."
5732
+ msgstr "Sera affiché au-dessus du formulaire de paiement. HTML interdit."
5733
+
5734
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:622
5735
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
5736
+ msgid "The button label for payments. No HTML allowed!"
5737
+ msgstr "Intitulé du bouton de paiement. HTML interdit !"
5738
+
5739
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:626
5740
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717
5741
+ #: addons/gateway/carts/mycred-wpecommerce.php:404
5742
+ msgid "Messages"
5743
+ msgstr "Messages"
5744
+
5745
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:629
5746
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
5747
+ msgid "Successful Payments"
5748
+ msgstr "Paiements réussis"
5749
+
5750
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:632
5751
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:639
5752
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723
5753
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
5754
+ msgid "No HTML allowed!"
5755
+ msgstr "Le HTML n'est pas autorisé !"
5756
+
5757
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
5758
+ msgid "%plural% Cost"
5759
+ msgstr "%plural% Coût"
5760
+
5761
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
5762
+ msgid "Your Balance"
5763
+ msgstr "Votre solde"
5764
+
5765
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
5766
+ msgid "You can not pay using this gateway."
5767
+ msgstr "Vous ne pouvez pas payer à l'aide de ce système de paiement."
5768
+
5769
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
5770
+ msgid "Reject"
5771
+ msgstr "Rejeter"
5772
+
5773
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
5774
+ msgid "Edit/View"
5775
+ msgstr "Modifier/Aperçu"
5776
+
5777
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
5778
+ msgid ""
5779
+ "The percentage of the paid amount to refund if a user cancels their booking. "
5780
+ "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
5781
+ msgstr ""
5782
+ "Le pourcentage de la somme versée à rembourser quand un utilisateur annule "
5783
+ "une réservation. Indiquez zéro pour aucun remboursement. Aucun remboursement "
5784
+ "n'est effectué pour les réservations \"Rejetées\" !"
5785
+
5786
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
5787
+ msgid "Cart & Checkout Cost"
5788
+ msgstr "Panier & passer commande du coût."
5789
+
5790
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
5791
+ msgid "Label for cost in %plural%"
5792
+ msgstr "Label du coût dans %plural%"
5793
+
5794
+ #: addons/gateway/carts/mycred-wpecommerce.php:20
5795
+ msgid "Payment for Order: #%order_id%"
5796
+ msgstr "R&egrave;glement de la commande: #%order_id%"
5797
+
5798
+ #: addons/gateway/carts/mycred-wpecommerce.php:23
5799
+ msgid "Store sale"
5800
+ msgstr "Magasin de vente"
5801
+
5802
+ #: addons/gateway/carts/mycred-wpecommerce.php:25
5803
+ msgid "You must be logged in to use this gateway"
5804
+ msgstr "Vous devez vous connecter pour utiliser ce système de paiement"
5805
+
5806
+ #: addons/gateway/carts/mycred-wpecommerce.php:26
5807
+ msgid "Insufficient Funds."
5808
+ msgstr "Fonds insuffisants"
5809
+
5810
+ #: addons/gateway/carts/mycred-wpecommerce.php:27
5811
+ msgid "Deduct the amount from your balance."
5812
+ msgstr "Déduire le montant de votre solde."
5813
+
5814
+ #: addons/gateway/carts/mycred-wpecommerce.php:107
5815
+ #: addons/buy-creds/gateways/bank-transfer.php:110
5816
+ msgid "Item"
5817
+ msgstr "Intitulé"
5818
+
5819
+ #: addons/gateway/carts/mycred-wpecommerce.php:128
5820
+ #: addons/gateway/carts/mycred-woocommerce.php:756
5821
+ msgid "Your current balance"
5822
+ msgstr "Votre solde actuel"
5823
+
5824
+ #: addons/gateway/carts/mycred-wpecommerce.php:202
5825
+ msgid "You can not use this gateway."
5826
+ msgstr "Vous ne pouvez pas utiliser ce système de paiement."
5827
+
5828
+ #: addons/gateway/carts/mycred-wpecommerce.php:373
5829
+ msgid "Log Template for Payments"
5830
+ msgstr "Template de paiements"
5831
+
5832
+ #: addons/gateway/carts/mycred-wpecommerce.php:390
5833
+ msgid "How much is 1 %s worth in %s"
5834
+ msgstr "Combien vaut 1 %s dans %s"
5835
+
5836
+ #: addons/gateway/carts/mycred-wpecommerce.php:407
5837
+ msgid "Instructions"
5838
+ msgstr "Instructions"
5839
+
5840
+ #: addons/gateway/carts/mycred-wpecommerce.php:408
5841
+ msgid ""
5842
+ "Optional instructions to show users when selecting this gateway. Leave empty "
5843
+ "to hide."
5844
+ msgstr ""
5845
+ "Informations additionnelles à afficher quand l'utilisateur sélectionne ce "
5846
+ "système de paiement. Laissez vide pour ne rien afficher."
5847
+
5848
+ #: addons/gateway/carts/mycred-wpecommerce.php:412
5849
+ msgid "Message to show visitors who are not logged in."
5850
+ msgstr "Message à afficher lorsque l'utilisateur n'est pas connecté."
5851
+
5852
+ #: addons/gateway/carts/mycred-wpecommerce.php:416
5853
+ msgid ""
5854
+ "Message to show when users does not have enough %plural% to pay using this "
5855
+ "gateway."
5856
+ msgstr ""
5857
+ "Message à afficher lorsque l'utilisateur n'a pas suffisamment de %plural% "
5858
+ "pour payer avec ce système de paiement."
5859
+
5860
+ #: addons/gateway/carts/mycred-woocommerce.php:30
5861
+ msgid "Let users pay using their myCRED balance."
5862
+ msgstr "Laisser les utilisateurs payer à partir de leur relevé myCRED"
5863
+
5864
+ #: addons/gateway/carts/mycred-woocommerce.php:84
5865
+ msgid "Enable/Disable"
5866
+ msgstr "Activer/Désactiver"
5867
+
5868
+ #: addons/gateway/carts/mycred-woocommerce.php:86
5869
+ msgid "Enable myCRED Payment"
5870
+ msgstr "Activer le paiement myCRED"
5871
+
5872
+ #: addons/gateway/carts/mycred-woocommerce.php:88
5873
+ msgid ""
5874
+ "Users who are not logged in or excluded from using myCRED will not have "
5875
+ "access to this gateway!"
5876
+ msgstr ""
5877
+ "Les utilisateurs qui ne sont pas connectés ou qui sont exclus de myCRED "
5878
+ "n'auront pas accès à ce service de paiement !"
5879
+
5880
+ #: addons/gateway/carts/mycred-woocommerce.php:93
5881
+ msgid "Title to show for this payment option."
5882
+ msgstr "Titre à afficher pour cette option de paiement"
5883
+
5884
+ #: addons/gateway/carts/mycred-woocommerce.php:94
5885
+ msgid "Pay with myCRED"
5886
+ msgstr "Payer avec myCRED"
5887
+
5888
+ #: addons/gateway/carts/mycred-woocommerce.php:98
5889
+ msgid "Customer Message"
5890
+ msgstr "Message au client"
5891
+
5892
+ #: addons/gateway/carts/mycred-woocommerce.php:109
5893
+ #: addons/gateway/carts/mycred-woocommerce.php:181
5894
+ msgid "Refund Log Template"
5895
+ msgstr "Remboursement par template de connexion"
5896
+
5897
+ #: addons/gateway/carts/mycred-woocommerce.php:121
5898
+ msgid "Select the point type users can use to pay."
5899
+ msgstr ""
5900
+ "Sélectionnez le type de point avec lequel les utilisateurs pourront régler"
5901
+
5902
+ #: addons/gateway/carts/mycred-woocommerce.php:135
5903
+ msgid "How much is 1 %_singular% worth in %currency%?"
5904
+ msgstr "Combien vaut 1 %_singular% en %currency% ?"
5905
+
5906
+ #: addons/gateway/carts/mycred-woocommerce.php:147
5907
+ msgid "Show Total"
5908
+ msgstr "Afficher le total"
5909
+
5910
+ #: addons/gateway/carts/mycred-woocommerce.php:149
5911
+ msgid "Show the final price in %_plural% ."
5912
+ msgstr "Afficher le prix final en %_plural% ."
5913
+
5914
+ #: addons/gateway/carts/mycred-woocommerce.php:152
5915
+ msgid "Show in Cart"
5916
+ msgstr "Afficher avec le panier"
5917
+
5918
+ #: addons/gateway/carts/mycred-woocommerce.php:153
5919
+ msgid "Show on Checkout Page"
5920
+ msgstr "Afficher sur la page de contrôle d'achats"
5921
+
5922
+ #: addons/gateway/carts/mycred-woocommerce.php:154
5923
+ msgid "Show in Cart and on Checkout Page"
5924
+ msgstr "Afficher avec le panier et sur la page de contrôle"
5925
+
5926
+ #: addons/gateway/carts/mycred-woocommerce.php:161
5927
+ msgid "Order Total in %_plural%"
5928
+ msgstr "Commande totale en %_plural%"
5929
+
5930
+ #: addons/gateway/carts/mycred-woocommerce.php:177
5931
+ msgid "Log entry template for profit sharing."
5932
+ msgstr "Template de connexion pour les bénéfices partagés"
5933
+
5934
+ #: addons/gateway/carts/mycred-woocommerce.php:183
5935
+ msgid "Log entry template for refunds of profit shares."
5936
+ msgstr ""
5937
+ "Connecter le Template entré pour les remboursements des parts bénéficiaires."
5938
+
5939
+ #: addons/gateway/carts/mycred-woocommerce.php:213
5940
+ msgid "myCRED Payment"
5941
+ msgstr "Paiement myCRED"
5942
+
5943
+ #: addons/gateway/carts/mycred-woocommerce.php:237
5944
+ msgid "You must be logged in to pay with %_plural%"
5945
+ msgstr "Vous devez être connecté pour payer avec %_plural%"
5946
+
5947
+ #: addons/gateway/carts/mycred-woocommerce.php:245
5948
+ msgid "You can not use this gateway. Please try a different payment option."
5949
+ msgstr ""
5950
+ "Vous ne pouvez pas utiliser ce service. Veuillez essayer une autre option de "
5951
+ "règlement."
5952
+
5953
+ #: addons/gateway/carts/mycred-woocommerce.php:262
5954
+ #: addons/sell-content/includes/mycred-sell-functions.php:511
5955
+ msgid "Insufficient funds."
5956
+ msgstr "Fonds insuffisant."
5957
+
5958
+ #: addons/gateway/carts/mycred-woocommerce.php:414
5959
+ msgid "Your account has successfully been charged."
5960
+ msgstr "Votre compte a été débité avec succès."
5961
+
5962
+ #: addons/transfer/includes/mycred-transfer-widgets.php:19
5963
+ msgid "(%s) Transfer"
5964
+ msgstr "(%s) Transfert"
5965
+
5966
+ #: addons/transfer/includes/mycred-transfer-widgets.php:22
5967
+ msgid "Allow transfers between users."
5968
+ msgstr "Autoriser les transferts entre utilisateurs"
5969
+
5970
+ #: addons/transfer/includes/mycred-transfer-widgets.php:82
5971
+ msgid "Show users balance"
5972
+ msgstr "Afficher le relevé de l'utilisateur"
5973
+
5974
+ #: addons/transfer/includes/mycred-transfer-widgets.php:85
5975
+ msgid "Show users limit"
5976
+ msgstr "Afficher la limite des membres"
5977
+
5978
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:156
5979
+ msgid "username"
5980
+ msgstr "nom d'utilisateur"
5981
+
5982
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:159
5983
+ msgid "email"
5984
+ msgstr "email"
5985
+
5986
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:161
5987
+ msgid "recipients %s"
5988
+ msgstr "destinataires %s"
5989
+
5990
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:128
5991
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:211
5992
+ msgid "No users found with this rank"
5993
+ msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
5994
+
5995
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:135
5996
+ msgid "Rank ID is required!"
5997
+ msgstr "L&#39;ID du classement est obligatoire !"
5998
+
5999
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:103
6000
+ msgid "Hooks"
6001
+ msgstr "Plugins"
6002
+
6003
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:187
6004
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
6005
+ #: addons/buy-creds/modules/buycred-module-pending.php:290
6006
+ #: addons/buy-creds/modules/buycred-module-pending.php:637
6007
+ #: addons/buy-creds/modules/buycred-module-pending.php:750
6008
+ #: addons/buy-creds/gateways/bank-transfer.php:112
6009
+ msgid "Cost"
6010
+ msgstr "Prix"
6011
+
6012
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:163
6013
+ msgid "Select currency"
6014
+ msgstr "S&eacute;lectionnez une devise"
6015
+
6016
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:445
6017
+ #: addons/buy-creds/gateways/bank-transfer.php:96
6018
+ msgid "Test Payment"
6019
+ msgstr "Paiement de test"
6020
+
6021
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:451
6022
+ #: addons/buy-creds/gateways/bank-transfer.php:100
6023
+ msgid "Payment"
6024
+ msgstr "Paiement"
6025
+
6026
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:685
6027
+ #: addons/buy-creds/gateways/bank-transfer.php:118
6028
+ msgid "%s Purchase"
6029
+ msgstr "%s Achat"
6030
+
6031
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:786
6032
+ msgid "Continue to %s"
6033
+ msgstr "Continuer vers %s"
6034
+
6035
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
6036
+ #: addons/buy-creds/gateways/bitpay.php:225
6037
+ msgid "Click here if you are not automatically redirected"
6038
+ msgstr "Cliquez ici si vous n'êtes pas automatiquement redirigé"
6039
+
6040
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
6041
+ msgid "January"
6042
+ msgstr "Janvier"
6043
+
6044
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1502
6045
+ msgid "February"
6046
+ msgstr "Février"
6047
+
6048
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1503
6049
+ msgid "March"
6050
+ msgstr "Mars"
6051
+
6052
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1504
6053
+ msgid "April"
6054
+ msgstr "Avril"
6055
+
6056
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1505
6057
+ msgid "May"
6058
+ msgstr "Mai"
6059
+
6060
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1506
6061
+ msgid "June"
6062
+ msgstr "Juin"
6063
+
6064
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1507
6065
+ msgid "July"
6066
+ msgstr "Juillet"
6067
+
6068
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1508
6069
+ msgid "August"
6070
+ msgstr "Août"
6071
+
6072
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1509
6073
+ msgid "September"
6074
+ msgstr "Septembre"
6075
+
6076
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1510
6077
+ msgid "October"
6078
+ msgstr "Octobre"
6079
+
6080
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1511
6081
+ msgid "November"
6082
+ msgstr "Novembre"
6083
+
6084
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1512
6085
+ msgid "December"
6086
+ msgstr "Décembre"
6087
+
6088
+ #: addons/buy-creds/modules/buycred-module-pending.php:158
6089
+ msgctxt "Post Type General Name"
6090
+ msgid "Pending Payments"
6091
+ msgstr "Paiements en attente"
6092
+
6093
+ #: addons/buy-creds/modules/buycred-module-pending.php:159
6094
+ msgctxt "Post Type Singular Name"
6095
+ msgid "Pending Payment"
6096
+ msgstr "En attente de paiement"
6097
+
6098
+ #: addons/buy-creds/modules/buycred-module-pending.php:160
6099
+ #: addons/buy-creds/modules/buycred-module-pending.php:162
6100
+ #: addons/buy-creds/modules/buycred-module-pending.php:252
6101
+ #: addons/buy-creds/modules/buycred-module-pending.php:253
6102
+ msgid "Pending Payments"
6103
+ msgstr "Paiements en attente"
6104
+
6105
+ #: addons/buy-creds/modules/buycred-module-pending.php:166
6106
+ msgid "Edit Pending Payment"
6107
+ msgstr ""
6108
+ "Modifier\n"
6109
+ " \n"
6110
+ "les attentes de paiement"
6111
+
6112
+ #: addons/buy-creds/modules/buycred-module-pending.php:169
6113
+ #: addons/buy-creds/modules/buycred-module-pending.php:170
6114
+ msgid "Not found in Trash"
6115
+ msgstr "Pas trouvé dans la corbeille"
6116
+
6117
+ #: addons/buy-creds/modules/buycred-module-pending.php:286
6118
+ #: addons/buy-creds/modules/buycred-module-pending.php:747
6119
+ #: addons/buy-creds/modules/buycred-module-core.php:755
6120
+ #: addons/buy-creds/gateways/bank-transfer.php:113
6121
+ msgid "Transaction ID"
6122
+ msgstr "ID de la transaction"
6123
+
6124
+ #: addons/buy-creds/modules/buycred-module-pending.php:288
6125
+ #: addons/buy-creds/modules/buycred-module-core.php:751
6126
+ msgid "Buyer"
6127
+ msgstr "Acheteur"
6128
+
6129
+ #: addons/buy-creds/modules/buycred-module-pending.php:291
6130
+ #: addons/buy-creds/modules/buycred-module-pending.php:612
6131
+ #: addons/buy-creds/modules/buycred-module-pending.php:748
6132
+ #: addons/buy-creds/modules/buycred-module-core.php:750
6133
+ #: addons/buy-creds/includes/buycred-functions.php:119
6134
+ msgid "Gateway"
6135
+ msgstr "Service"
6136
+
6137
+ #: addons/buy-creds/modules/buycred-module-pending.php:292
6138
+ msgid "Type"
6139
+ msgstr "Type"
6140
+
6141
+ #: addons/buy-creds/modules/buycred-module-pending.php:389
6142
+ #: addons/buy-creds/modules/buycred-module-pending.php:494
6143
+ msgid "Pay Out"
6144
+ msgstr "Versement"
6145
+
6146
+ #: addons/buy-creds/modules/buycred-module-pending.php:489
6147
+ msgid "Save"
6148
+ msgstr "Enregistrer"
6149
+
6150
+ #: addons/buy-creds/modules/buycred-module-pending.php:643
6151
+ #: addons/buy-creds/gateways/bank-transfer.php:180
6152
+ #: addons/buy-creds/gateways/bitpay.php:251
6153
+ #: addons/buy-creds/gateways/paypal-standard.php:279
6154
+ #: addons/buy-creds/gateways/skrill.php:294
6155
+ msgid "Currency"
6156
+ msgstr "Devise"
6157
+
6158
+ #: addons/buy-creds/modules/buycred-module-pending.php:814
6159
+ msgid "No pending payments found"
6160
+ msgstr "Pas d'attente de paiements trouvés"
6161
+
6162
+ #: addons/buy-creds/modules/buycred-module-core.php:28
6163
+ #: addons/buy-creds/modules/buycred-module-core.php:29
6164
+ #: addons/buy-creds/modules/buycred-module-core.php:30
6165
+ msgid "Payment Gateways"
6166
+ msgstr "Services de paiement"
6167
+
6168
+ #: addons/buy-creds/modules/buycred-module-core.php:297
6169
+ msgid "Please login to purchase %_plural%"
6170
+ msgstr "Veuillez vous connecter pour acquérir des %_plural%"
6171
+
6172
+ #: addons/buy-creds/modules/buycred-module-core.php:312
6173
+ msgid "Gift purchase from %display_name%."
6174
+ msgstr "Achat de cadeau par %display_name%."
6175
+
6176
+ #: addons/buy-creds/modules/buycred-module-core.php:331
6177
+ msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6178
+ msgstr ""
6179
+ "Nombre minimum de %_plural% qu&#39;un membre peut acheter. 1 par défaut !"
6180
+
6181
+ #: addons/buy-creds/modules/buycred-module-core.php:339
6182
+ msgid ""
6183
+ "Select the point types that users can buy. You must select at least one!"
6184
+ msgstr ""
6185
+ "Sélectionner les types de point que les utilisateurs peuvent acheter. Vous "
6186
+ "devez en sélectionner au moins une!"
6187
+
6188
+ #: addons/buy-creds/modules/buycred-module-core.php:350
6189
+ msgid "Login Template"
6190
+ msgstr "Template de connexion"
6191
+
6192
+ #: addons/buy-creds/modules/buycred-module-core.php:354
6193
+ msgid "Content to show when a user is not logged in."
6194
+ msgstr "Contenu à afficher quand un utilisateur n'est pas connecté."
6195
+
6196
+ #: addons/buy-creds/modules/buycred-module-core.php:364
6197
+ msgid "Thank You Page"
6198
+ msgstr "Page de remerciement"
6199
+
6200
+ #: addons/buy-creds/modules/buycred-module-core.php:367
6201
+ #: addons/buy-creds/modules/buycred-module-core.php:390
6202
+ msgid "Custom URL"
6203
+ msgstr "URL personnalisée"
6204
+
6205
+ #: addons/buy-creds/modules/buycred-module-core.php:372
6206
+ #: addons/buy-creds/modules/buycred-module-core.php:395
6207
+ msgid "Page"
6208
+ msgstr "Page"
6209
+
6210
+ #: addons/buy-creds/modules/buycred-module-core.php:387
6211
+ msgid "Cancellation Page"
6212
+ msgstr "Page d'annulation"
6213
+
6214
+ #: addons/buy-creds/modules/buycred-module-core.php:410
6215
+ #: addons/buy-creds/modules/buycred-module-core.php:511
6216
+ #: addons/buy-creds/modules/buycred-module-core.php:762
6217
+ msgid "Purchase Log"
6218
+ msgstr "Journal d'achat"
6219
+
6220
+ #: addons/buy-creds/modules/buycred-module-core.php:412
6221
+ msgid "Show seperate log for %_plural% purchases."
6222
+ msgstr "Afficher des journaux séparés pour l'achat de %_plural%"
6223
+
6224
+ #: addons/buy-creds/modules/buycred-module-core.php:414
6225
+ msgid "Gifting"
6226
+ msgstr "Remise de cadeaux"
6227
+
6228
+ #: addons/buy-creds/modules/buycred-module-core.php:416
6229
+ msgid "Allow users to buy %_plural% for other users."
6230
+ msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
6231
+
6232
+ #: addons/buy-creds/modules/buycred-module-core.php:417
6233
+ msgid "Allow users to buy %_plural% for content authors."
6234
+ msgstr ""
6235
+ "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
6236
+
6237
+ #: addons/buy-creds/modules/buycred-module-core.php:425
6238
+ msgid "Available Shortcodes"
6239
+ msgstr "Shortcodes disponibles"
6240
+
6241
+ #: addons/buy-creds/modules/buycred-module-core.php:510
6242
+ msgid "buyCRED Purchase Log"
6243
+ msgstr "Journal d'achat buyCRED"
6244
+
6245
+ #: addons/buy-creds/modules/buycred-module-core.php:555
6246
+ msgid "%s Payment Gateways"
6247
+ msgstr "%s Services de Paiements"
6248
+
6249
+ #: addons/buy-creds/modules/buycred-module-core.php:590
6250
+ msgid "Sandbox Mode"
6251
+ msgstr "Mode bac à sable"
6252
+
6253
+ #: addons/buy-creds/modules/buycred-module-core.php:593
6254
+ msgid "Enable for test purchases."
6255
+ msgstr "Activez pour faire des tests d'achats factices."
6256
+
6257
+ #: addons/buy-creds/modules/buycred-module-core.php:613
6258
+ msgid "More Gateways"
6259
+ msgstr "Plus d'entrés"
6260
+
6261
+ #: addons/buy-creds/modules/buycred-module-core.php:754
6262
+ msgid "Payed"
6263
+ msgstr "Payé"
6264
+
6265
+ #: addons/buy-creds/modules/buycred-module-core.php:970
6266
+ msgid "No purchases found"
6267
+ msgstr "Aucun achat trouvé"
6268
+
6269
+ #: addons/buy-creds/modules/buycred-module-core.php:1357
6270
+ msgid "Buy Now"
6271
+ msgstr "Acheter maintenant"
6272
+
6273
+ #: addons/buy-creds/gateways/bank-transfer.php:59
6274
+ #: addons/buy-creds/gateways/bitpay.php:163
6275
+ #: addons/buy-creds/gateways/netbilling.php:144
6276
+ #: addons/buy-creds/gateways/zombaio.php:267
6277
+ #: addons/buy-creds/gateways/paypal-standard.php:207
6278
+ #: addons/buy-creds/gateways/skrill.php:186
6279
+ msgid "Please setup this gateway before attempting to make a purchase!"
6280
+ msgstr ""
6281
+ "Veuillez d'abord paramètrer ce service de paiement avant d'essayer de "
6282
+ "finaliser un achat !"
6283
+
6284
+ #: addons/buy-creds/gateways/bank-transfer.php:186
6285
+ #: addons/buy-creds/gateways/bitpay.php:265
6286
+ #: addons/buy-creds/gateways/netbilling.php:234
6287
+ #: addons/buy-creds/gateways/paypal-standard.php:298
6288
+ #: addons/buy-creds/gateways/skrill.php:320
6289
+ msgid "Exchange Rates"
6290
+ msgstr "Taux de change."
6291
+
6292
+ #: addons/buy-creds/gateways/bitpay.php:62
6293
+ #: addons/buy-creds/gateways/netbilling.php:92
6294
+ #: addons/buy-creds/gateways/paypal-standard.php:145
6295
+ #: addons/buy-creds/gateways/skrill.php:124
6296
+ msgid "Price mismatch. Expected: %s Received: %s"
6297
+ msgstr "Prix décallé. Excepté: %s reçu: %s"
6298
+
6299
+ #: addons/buy-creds/gateways/bitpay.php:68
6300
+ #: addons/buy-creds/gateways/paypal-standard.php:151
6301
+ #: addons/buy-creds/gateways/skrill.php:130
6302
+ msgid "Currency mismatch. Expected: %s Received: %s"
6303
+ msgstr "Mauvais alignement de monnaies. Excepté: %s Reçut: %s"
6304
+
6305
+ #: addons/buy-creds/gateways/bitpay.php:74
6306
+ #: addons/buy-creds/gateways/netbilling.php:98
6307
+ #: addons/buy-creds/gateways/paypal-standard.php:157
6308
+ #: addons/buy-creds/gateways/skrill.php:136
6309
+ msgid "Payment not completed. Received: %s"
6310
+ msgstr "Paiement non complet. Reçu: %s"
6311
+
6312
+ #: addons/buy-creds/gateways/bitpay.php:85
6313
+ #: addons/buy-creds/gateways/netbilling.php:109
6314
+ #: addons/buy-creds/gateways/zombaio.php:237
6315
+ #: addons/buy-creds/gateways/paypal-standard.php:168
6316
+ #: addons/buy-creds/gateways/skrill.php:147
6317
+ msgid "Failed to credit users account."
6318
+ msgstr "Echec de créditions aux comptes des utilisateurs."
6319
+
6320
+ #: addons/buy-creds/gateways/bitpay.php:208
6321
+ #: addons/buy-creds/gateways/bitpay.php:219
6322
+ #: addons/buy-creds/gateways/netbilling.php:190
6323
+ #: addons/buy-creds/gateways/zombaio.php:297
6324
+ #: addons/buy-creds/gateways/paypal-standard.php:261
6325
+ #: addons/buy-creds/gateways/skrill.php:275
6326
+ msgid "Processing payment &hellip;"
6327
+ msgstr "Procédure de paiement en cours &hellip;"
6328
+
6329
+ #: addons/buy-creds/gateways/bitpay.php:211
6330
+ msgid ""
6331
+ "Could not create a BitPay Invoice. Please contact the site administrator!"
6332
+ msgstr ""
6333
+ "Impossible de créer une facture BitPay. Veuillez contacter l'administrateur "
6334
+ "du site."
6335
+
6336
+ #: addons/buy-creds/gateways/bitpay.php:212
6337
+ msgid "Bitpay returned the following error message:"
6338
+ msgstr "BitPay signale l'erreur suivante:"
6339
+
6340
+ #: addons/buy-creds/gateways/bitpay.php:254
6341
+ msgid "Currency Code"
6342
+ msgstr "Code devise"
6343
+
6344
+ #: addons/buy-creds/gateways/bitpay.php:258
6345
+ #: addons/buy-creds/gateways/netbilling.php:227
6346
+ #: addons/buy-creds/gateways/paypal-standard.php:291
6347
+ #: addons/buy-creds/gateways/skrill.php:313
6348
+ msgid "Item Name"
6349
+ msgstr "Nom de l'item"
6350
+
6351
+ #: addons/buy-creds/gateways/bitpay.php:262
6352
+ #: addons/buy-creds/gateways/netbilling.php:231
6353
+ #: addons/buy-creds/gateways/paypal-standard.php:295
6354
+ #: addons/buy-creds/gateways/skrill.php:317
6355
+ msgid "Description of the item being purchased by the user."
6356
+ msgstr "Description de l'item acquis par l'utilisateur"
6357
+
6358
+ #: addons/buy-creds/gateways/bitpay.php:269
6359
+ msgid "Transaction Speed"
6360
+ msgstr "Vitesse de transaction"
6361
+
6362
+ #: addons/buy-creds/gateways/bitpay.php:276
6363
+ msgid "High"
6364
+ msgstr "Haute"
6365
+
6366
+ #: addons/buy-creds/gateways/bitpay.php:277
6367
+ msgid "Medium"
6368
+ msgstr "Moyenne"
6369
+
6370
+ #: addons/buy-creds/gateways/bitpay.php:278
6371
+ msgid "Low"
6372
+ msgstr "Basse"
6373
+
6374
+ #: addons/buy-creds/gateways/bitpay.php:291
6375
+ msgid "Full Notifications"
6376
+ msgstr "Messages complets"
6377
+
6378
+ #: addons/buy-creds/gateways/netbilling.php:208
6379
+ msgid "Account ID"
6380
+ msgstr "ID du compte"
6381
+
6382
+ #: addons/buy-creds/gateways/netbilling.php:214
6383
+ msgid "Site Tag"
6384
+ msgstr "Mot-clé du site"
6385
+
6386
+ #: addons/buy-creds/gateways/netbilling.php:220
6387
+ msgid "Order Integrity Key"
6388
+ msgstr "Commandez une clé de sécurité"
6389
+
6390
+ #: addons/buy-creds/gateways/netbilling.php:224
6391
+ msgid "Found under Step 12 on the Fraud Defense page."
6392
+ msgstr "Trouvé à l'étape 12 de la page Défense contre la Fraude"
6393
+
6394
+ #: addons/buy-creds/gateways/netbilling.php:238
6395
+ msgid "Postback CGI URL"
6396
+ msgstr "Adresse de retour CGI"
6397
+
6398
+ #: addons/buy-creds/gateways/netbilling.php:242
6399
+ msgid ""
6400
+ "For this gateway to work, you must login to your NETbilling account and edit "
6401
+ "your site. Under \"Default payment form settings\" make sure the Postback "
6402
+ "CGI URL is set to the above address and \"Return method\" is set to POST."
6403
+ msgstr ""
6404
+ "Vous que ce service fonctionne, vous devez vous connecter à votre compte "
6405
+ "Netbilling et modifier les paramètres de votre site. A la rubrique \"Default "
6406
+ "payment form settings\", indiquez l'URL ci-dessous dans la case Postback CGI "
6407
+ "URL et assurez-vous que la case \"Return method\" est bien sur POST."
6408
+
6409
+ #: addons/buy-creds/gateways/netbilling.php:290
6410
+ msgid "Incorrect Credit Card number"
6411
+ msgstr "Le numéro de la carte de crédit est incorrect"
6412
+
6413
+ #: addons/buy-creds/gateways/netbilling.php:296
6414
+ msgid "The credit card entered is past its expiration date."
6415
+ msgstr "Votre carte de crédit est expirée"
6416
+
6417
+ #: addons/buy-creds/gateways/netbilling.php:299
6418
+ msgid "The CVV2 number entered is not valid."
6419
+ msgstr "Le cryptogramme que vous avez indiqué n'est pas valide."
6420
+
6421
+ #: addons/buy-creds/gateways/netbilling.php:306
6422
+ msgid "The bank routing number entered is not valid."
6423
+ msgstr "Le numéro de routage de la banque n'est pas valide."
6424
+
6425
+ #: addons/buy-creds/gateways/netbilling.php:310
6426
+ msgid "The bank account number entered is not valid."
6427
+ msgstr "Le numéro de compte bancaire n'est pas valide"
6428
+
6429
+ #: addons/buy-creds/gateways/zombaio.php:204
6430
+ msgid "Duplicate transaction. Received: %s"
6431
+ msgstr "Dupliquer les transactions. Reçu: %s"
6432
+
6433
+ #: addons/buy-creds/gateways/zombaio.php:210
6434
+ msgid "Live transaction while debug mode is enabled! Received: %s"
6435
+ msgstr ""
6436
+ "Transaction\n"
6437
+ " \n"
6438
+ "en direct\n"
6439
+ " \n"
6440
+ "tandis que le mode\n"
6441
+ " \n"
6442
+ "debug\n"
6443
+ " \n"
6444
+ "est\n"
6445
+ " \n"
6446
+ "activé!\n"
6447
+ " \n"
6448
+ "Reçu\n"
6449
+ ":\n"
6450
+ "% s"
6451
+
6452
+ #: addons/buy-creds/gateways/zombaio.php:315
6453
+ msgid "Site ID"
6454
+ msgstr "ID du site"
6455
+
6456
+ #: addons/buy-creds/gateways/zombaio.php:321
6457
+ msgid "GW Password"
6458
+ msgstr "Mot de passe GW"
6459
+
6460
+ #: addons/buy-creds/gateways/zombaio.php:327
6461
+ msgid "Pricing ID"
6462
+ msgstr "ID du paiement"
6463
+
6464
+ #: addons/buy-creds/gateways/zombaio.php:333
6465
+ #: addons/buy-creds/gateways/skrill.php:338
6466
+ msgid "Logo URL"
6467
+ msgstr "URL du logo"
6468
+
6469
+ #: addons/buy-creds/gateways/zombaio.php:339
6470
+ msgid "IP Verification"
6471
+ msgstr "ID de vérification"
6472
+
6473
+ #: addons/buy-creds/gateways/zombaio.php:342
6474
+ msgid "Do not verify that callbacks are coming from Zombaio."
6475
+ msgstr "Ne pas vérifier que les rappels proviennent de Zombaio."
6476
+
6477
+ #: addons/buy-creds/gateways/zombaio.php:345
6478
+ msgid "Language"
6479
+ msgstr "Langue"
6480
+
6481
+ #: addons/buy-creds/gateways/zombaio.php:352
6482
+ msgid "Postback URL (ZScript)"
6483
+ msgstr "URL de retour (ZScript)"
6484
+
6485
+ #: addons/buy-creds/gateways/zombaio.php:356
6486
+ msgid ""
6487
+ "For this gateway to work, login to ZOA and set the Postback URL to the above "
6488
+ "address and click validate."
6489
+ msgstr ""
6490
+ "Pour faire fonctionner ce service, veuillez d'abord vous connecter à ZOA et "
6491
+ "indiquez l'adresse ci-dessus comme URL de retour avant de valider."
6492
+
6493
+ #: addons/buy-creds/gateways/paypal-standard.php:192
6494
+ #: addons/buy-creds/gateways/skrill.php:171
6495
+ msgid "Success"
6496
+ msgstr "Succès !"
6497
+
6498
+ #: addons/buy-creds/gateways/paypal-standard.php:193
6499
+ #: addons/buy-creds/gateways/skrill.php:172
6500
+ msgid "Thank you for your purchase"
6501
+ msgstr "Merci pour votre achat"
6502
+
6503
+ #: addons/buy-creds/gateways/paypal-standard.php:285
6504
+ msgid "Account Email"
6505
+ msgstr "Email du compte"
6506
+
6507
+ #: addons/buy-creds/gateways/skrill.php:226
6508
+ msgid "Return to "
6509
+ msgstr "Retour vers"
6510
+
6511
+ #: addons/buy-creds/gateways/skrill.php:258
6512
+ msgid "Product:"
6513
+ msgstr "Produit:"
6514
+
6515
+ #: addons/buy-creds/gateways/skrill.php:267
6516
+ msgid "Gift to:"
6517
+ msgstr "Cadeau à "
6518
+
6519
+ #: addons/buy-creds/gateways/skrill.php:268
6520
+ msgid "(author)"
6521
+ msgstr "(auteur)"
6522
+
6523
+ #: addons/buy-creds/gateways/skrill.php:301
6524
+ msgid "Merchant Account Email"
6525
+ msgstr "Email du compte marchand"
6526
+
6527
+ #: addons/buy-creds/gateways/skrill.php:307
6528
+ msgid "Secret Word"
6529
+ msgstr "Mot secret"
6530
+
6531
+ #: addons/buy-creds/gateways/skrill.php:324
6532
+ msgid "Confirmation Email"
6533
+ msgstr "Email de confirmation"
6534
+
6535
+ #: addons/buy-creds/gateways/skrill.php:327
6536
+ msgid ""
6537
+ "Ask Skrill to send me a confirmation email for each successful purchase."
6538
+ msgstr ""
6539
+ "Demander à Skrill d'envoyer un mail de confirmation après chaque acquisition "
6540
+ "réussie."
6541
+
6542
+ #: addons/buy-creds/gateways/skrill.php:330
6543
+ msgid "Checkout Page"
6544
+ msgstr "Page de contrôle"
6545
+
6546
+ #: addons/buy-creds/gateways/skrill.php:335
6547
+ msgid ""
6548
+ "If left empty, your account email is used as title on the Skill Payment Page."
6549
+ msgstr ""
6550
+ "Si vous laissez vide, c'est votre mail de compte qui sera utilisé comme "
6551
+ "titre de la page de paiement de Skrill"
6552
+
6553
+ #: addons/buy-creds/gateways/skrill.php:340
6554
+ msgid ""
6555
+ "The URL to the image you want to use on the top of the gateway. For best "
6556
+ "integration results we recommend you use logos with dimensions up to 200px "
6557
+ "in width and 50px in height."
6558
+ msgstr ""
6559
+ "L'url vers l'image à afficher sur l'interface du service de paiement. Pour "
6560
+ "une intégration optimale, nous vous recommandons d'utiliser un logo de 200 "
6561
+ "par 50 pixels."
6562
+
6563
+ #: addons/buy-creds/gateways/skrill.php:343
6564
+ msgid "Confirmation Note"
6565
+ msgstr "Message de confirmation"
6566
+
6567
+ #: addons/buy-creds/gateways/skrill.php:345
6568
+ msgid ""
6569
+ "Optional text to show user once a transaction has been successfully "
6570
+ "completed. This text is shown by Skrill."
6571
+ msgstr ""
6572
+ "Texte additionnel en option qui s'affichera une fois une transaction "
6573
+ "complétée avec succès. Ce texte est affiché par Skrill."
6574
+
6575
+ #. URI of the plugin
6576
+ msgid "http://mycred.me"
6577
+ msgstr "http://mycred.me"
6578
+
6579
+ #. Author of the plugin
6580
+ msgid "Gabriel S Merovingi"
6581
+ msgstr "Gabriel S Merovingi"
6582
+
6583
+ #. Author URI of the plugin
6584
+ msgid "http://www.merovingi.com"
6585
+ msgstr "http://www.merovingi.com"
modules/mycred-module-addons.php CHANGED
@@ -207,7 +207,7 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) :
207
  'name' => 'Coupons',
208
  'description' => __( 'The coupons add-on allows you to create coupons that users can use to add points to their accounts.', 'mycred' ),
209
  'addon_url' => 'https://mycred.me/add-ons/coupons/',
210
- 'version' => '1.3',
211
  'author' => 'Gabriel S Merovingi',
212
  'author_url' => 'https://www.merovingi.com',
213
  'screenshot' => plugins_url( 'assets/images/coupons-addon.png', myCRED_THIS )
207
  'name' => 'Coupons',
208
  'description' => __( 'The coupons add-on allows you to create coupons that users can use to add points to their accounts.', 'mycred' ),
209
  'addon_url' => 'https://mycred.me/add-ons/coupons/',
210
+ 'version' => '1.3.1',
211
  'author' => 'Gabriel S Merovingi',
212
  'author_url' => 'https://www.merovingi.com',
213
  'screenshot' => plugins_url( 'assets/images/coupons-addon.png', myCRED_THIS )
modules/mycred-module-hooks.php CHANGED
@@ -790,7 +790,7 @@ if ( ! class_exists( 'myCRED_Hook_Site_Visits' ) ) :
790
  /**
791
  * Visit Hook
792
  * @since 1.5
793
- * @version 1.1.2
794
  */
795
  public function site_visit() {
796
 
@@ -802,7 +802,7 @@ if ( ! class_exists( 'myCRED_Hook_Site_Visits' ) ) :
802
 
803
  // Set cookie to prevent db queries again today.
804
  $lifespan = (int) ( 24*3600 ) - ( date( 'H', $now ) * 3600 + date( 'i', $now ) * 60 + date( 's', $now ) );
805
- if ( ! headers_sent() ) setcookie( 'mycred_site_visit', 1, $lifespan, '/' );
806
 
807
  // Make sure user is not excluded
808
  if ( $this->core->exclude_user( $user_id ) ) return;
@@ -935,7 +935,7 @@ if ( ! class_exists( 'myCRED_Hook_View_Contents' ) ) :
935
  // Make sure this post type award points. Any amount but zero.
936
  if ( isset( $this->prefs[ $post->post_type ]['creds'] ) && $this->prefs[ $post->post_type ]['creds'] != 0 && apply_filters( 'mycred_view_content', true, $this ) === true ) {
937
 
938
- // No payout for viewing our own content
939
  if ( ! $this->core->exclude_user( $user_id ) ) {
940
 
941
  // Enforce limit and make sure users only get points once per unique post
@@ -3304,7 +3304,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) :
3304
  /**
3305
  * Visits
3306
  * @since 1.4
3307
- * @version 1.3
3308
  */
3309
  public function site_visits() {
3310
 
@@ -3340,10 +3340,10 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) :
3340
  // Set cookies
3341
  if ( ! headers_sent() ) {
3342
 
3343
- setcookie( 'mycred_ref' . $this->mycred_type, $_GET[ $this->ref_key ], apply_filters( 'mycred_affiliate_cookie', ( time()+3600*24 ), false, $this ), '/' );
3344
 
3345
  if ( get_option( 'users_can_register' ) && $this->prefs['signup']['creds'] > 0 )
3346
- setcookie( 'signup_ref' . $this->mycred_type, $_GET[ $this->ref_key ], apply_filters( 'mycred_affiliate_cookie', ( time()+3600*24 ), true, $this ), '/' );
3347
 
3348
  }
3349
 
@@ -3356,7 +3356,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) :
3356
  /**
3357
  * Signups
3358
  * @since 1.4
3359
- * @version 1.2
3360
  */
3361
  public function site_signup( $new_user_id ) {
3362
 
@@ -3379,7 +3379,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) :
3379
  if ( $user_id === NULL ) {
3380
 
3381
  if ( ! headers_sent() )
3382
- setcookie( $key, $ref, time()-3600, '/' );
3383
 
3384
  return;
3385
 
@@ -3387,7 +3387,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) :
3387
 
3388
  // Delete Cookie
3389
  if ( ! headers_sent() )
3390
- setcookie( $key, $ref, time()-3600, '/' );
3391
 
3392
  // Attempt to get the users IP
3393
  $IP = apply_filters( 'mycred_affiliate_IP', $_SERVER['REMOTE_ADDR'], 'signup', $this );
790
  /**
791
  * Visit Hook
792
  * @since 1.5
793
+ * @version 1.1.3
794
  */
795
  public function site_visit() {
796
 
802
 
803
  // Set cookie to prevent db queries again today.
804
  $lifespan = (int) ( 24*3600 ) - ( date( 'H', $now ) * 3600 + date( 'i', $now ) * 60 + date( 's', $now ) );
805
+ if ( ! headers_sent() ) setcookie( 'mycred_site_visit', 1, $lifespan, COOKIEPATH, COOKIE_DOMAIN );
806
 
807
  // Make sure user is not excluded
808
  if ( $this->core->exclude_user( $user_id ) ) return;
935
  // Make sure this post type award points. Any amount but zero.
936
  if ( isset( $this->prefs[ $post->post_type ]['creds'] ) && $this->prefs[ $post->post_type ]['creds'] != 0 && apply_filters( 'mycred_view_content', true, $this ) === true ) {
937
 
938
+ // Make sure we are not excluded
939
  if ( ! $this->core->exclude_user( $user_id ) ) {
940
 
941
  // Enforce limit and make sure users only get points once per unique post
3304
  /**
3305
  * Visits
3306
  * @since 1.4
3307
+ * @version 1.3.1
3308
  */
3309
  public function site_visits() {
3310
 
3340
  // Set cookies
3341
  if ( ! headers_sent() ) {
3342
 
3343
+ setcookie( 'mycred_ref' . $this->mycred_type, $_GET[ $this->ref_key ], apply_filters( 'mycred_affiliate_cookie', ( time()+3600*24 ), false, $this ), COOKIEPATH, COOKIE_DOMAIN );
3344
 
3345
  if ( get_option( 'users_can_register' ) && $this->prefs['signup']['creds'] > 0 )
3346
+ setcookie( 'signup_ref' . $this->mycred_type, $_GET[ $this->ref_key ], apply_filters( 'mycred_affiliate_cookie', ( time()+3600*24 ), true, $this ), COOKIEPATH, COOKIE_DOMAIN );
3347
 
3348
  }
3349
 
3356
  /**
3357
  * Signups
3358
  * @since 1.4
3359
+ * @version 1.2.1
3360
  */
3361
  public function site_signup( $new_user_id ) {
3362
 
3379
  if ( $user_id === NULL ) {
3380
 
3381
  if ( ! headers_sent() )
3382
+ setcookie( $key, $ref, time()-3600, COOKIEPATH, COOKIE_DOMAIN );
3383
 
3384
  return;
3385
 
3387
 
3388
  // Delete Cookie
3389
  if ( ! headers_sent() )
3390
+ setcookie( $key, $ref, time()-3600, COOKIEPATH, COOKIE_DOMAIN );
3391
 
3392
  // Attempt to get the users IP
3393
  $IP = apply_filters( 'mycred_affiliate_IP', $_SERVER['REMOTE_ADDR'], 'signup', $this );
modules/mycred-module-log.php CHANGED
@@ -517,7 +517,7 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) :
517
  /**
518
  * Admin Page
519
  * @since 0.1
520
- * @version 1.4
521
  */
522
  public function admin_page() {
523
 
@@ -572,6 +572,7 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) :
572
  <?php do_action( 'mycred_top_log_page', $this ); ?>
573
 
574
  <form method="get" id="posts-filter" action="">
 
575
  <?php
576
 
577
  if ( array_key_exists( 'user', $search_args ) )
@@ -580,15 +581,12 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) :
580
  if ( array_key_exists( 's', $search_args ) )
581
  echo '<input type="hidden" name="s" value="' . esc_attr( $search_args['s'] ) . '" />';
582
 
583
- if ( array_key_exists( 'ref', $search_args ) )
584
- echo '<input type="hidden" name="ref" value="' . esc_attr( $search_args['ref'] ) . '" />';
585
 
586
  if ( isset( $_GET['show'] ) )
587
  echo '<input type="hidden" name="show" value="' . esc_attr( $_GET['show'] ) . '" />';
588
 
589
- elseif ( array_key_exists( 'time', $search_args ) )
590
- echo '<input type="hidden" name="time" value="' . esc_attr( $search_args['time'] ) . '" />';
591
-
592
  if ( array_key_exists( 'order', $search_args ) )
593
  echo '<input type="hidden" name="order" value="' . esc_attr( $search_args['order'] ) . '" />';
594
 
@@ -598,7 +596,6 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) :
598
  $log->search();
599
 
600
  ?>
601
- <input type="hidden" name="page" value="<?php echo $this->screen_id; ?>" />
602
  <input type="hidden" name="ctype" value="<?php if ( array_key_exists( 'ctype', $search_args ) ) echo esc_attr( $search_args['ctype'] ); else echo esc_attr( $this->mycred_type ); ?>" />
603
 
604
  <?php do_action( 'mycred_above_log_table', $this ); ?>
@@ -633,7 +630,7 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) :
633
  /**
634
  * My History Page
635
  * @since 0.1
636
- * @version 1.3.1
637
  */
638
  public function my_history_page() {
639
 
@@ -674,7 +671,7 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) :
674
  <?php do_action( 'mycred_top_my_log_page', $this ); ?>
675
 
676
  <form method="get" action="" name="mycred-mylog-form" novalidate>
677
- <input type="hidden" name="page" value="<?php echo $_GET['page']; ?>" />
678
  <?php
679
 
680
  if ( array_key_exists( 's', $search_args ) )
@@ -955,5 +952,3 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) :
955
 
956
  }
957
  endif;
958
-
959
- ?>
517
  /**
518
  * Admin Page
519
  * @since 0.1
520
+ * @version 1.4.1
521
  */
522
  public function admin_page() {
523
 
572
  <?php do_action( 'mycred_top_log_page', $this ); ?>
573
 
574
  <form method="get" id="posts-filter" action="">
575
+ <input type="hidden" name="page" value="<?php echo $this->screen_id; ?>" />
576
  <?php
577
 
578
  if ( array_key_exists( 'user', $search_args ) )
581
  if ( array_key_exists( 's', $search_args ) )
582
  echo '<input type="hidden" name="s" value="' . esc_attr( $search_args['s'] ) . '" />';
583
 
584
+ if ( isset( $_GET['ref'] ) )
585
+ echo '<input type="hidden" name="show" value="' . esc_attr( $_GET['ref'] ) . '" />';
586
 
587
  if ( isset( $_GET['show'] ) )
588
  echo '<input type="hidden" name="show" value="' . esc_attr( $_GET['show'] ) . '" />';
589
 
 
 
 
590
  if ( array_key_exists( 'order', $search_args ) )
591
  echo '<input type="hidden" name="order" value="' . esc_attr( $search_args['order'] ) . '" />';
592
 
596
  $log->search();
597
 
598
  ?>
 
599
  <input type="hidden" name="ctype" value="<?php if ( array_key_exists( 'ctype', $search_args ) ) echo esc_attr( $search_args['ctype'] ); else echo esc_attr( $this->mycred_type ); ?>" />
600
 
601
  <?php do_action( 'mycred_above_log_table', $this ); ?>
630
  /**
631
  * My History Page
632
  * @since 0.1
633
+ * @version 1.3.2
634
  */
635
  public function my_history_page() {
636
 
671
  <?php do_action( 'mycred_top_my_log_page', $this ); ?>
672
 
673
  <form method="get" action="" name="mycred-mylog-form" novalidate>
674
+ <input type="hidden" name="page" value="<?php echo esc_attr( $_GET['page'] ); ?>" />
675
  <?php
676
 
677
  if ( array_key_exists( 's', $search_args ) )
952
 
953
  }
954
  endif;
 
 
modules/mycred-module-management.php CHANGED
@@ -506,7 +506,7 @@ if ( ! class_exists( 'myCRED_Management_Module' ) ) :
506
  /**
507
  * Insert Ballance into Profile
508
  * @since 0.1
509
- * @version 1.2
510
  */
511
  public function show_my_balance( $user ) {
512
 
@@ -531,7 +531,7 @@ if ( ! class_exists( 'myCRED_Management_Module' ) ) :
531
  $row['excluded'] = false;
532
  $row['raw'] = $balance;
533
  $row['formatted'] = $mycred->format_creds( $balance );
534
- $row['can_edit'] = ( ( $mycred->can_edit_creds( $editor_id ) ) ? true : false );
535
 
536
  if ( $row['can_edit'] === true && $load_script === false )
537
  $load_script = true;
506
  /**
507
  * Insert Ballance into Profile
508
  * @since 0.1
509
+ * @version 1.2.1
510
  */
511
  public function show_my_balance( $user ) {
512
 
531
  $row['excluded'] = false;
532
  $row['raw'] = $balance;
533
  $row['formatted'] = $mycred->format_creds( $balance );
534
+ $row['can_edit'] = ( ( $mycred->can_edit_plugin( $editor_id ) ) ? true : false );
535
 
536
  if ( $row['can_edit'] === true && $load_script === false )
537
  $load_script = true;
mycred.php CHANGED
@@ -3,13 +3,13 @@
3
  * Plugin Name: myCRED
4
  * Plugin URI: http://mycred.me
5
  * Description: An adaptive points management system for WordPress powered websites.
6
- * Version: 1.7.4
7
  * Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce, marketpress, wp e-commerce, gravity forms, simplepress
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
10
  * Author Email: support@mycred.me
11
  * Requires at least: WP 4.0
12
- * Tested up to: WP 4.6.1
13
  * Text Domain: mycred
14
  * Domain Path: /lang
15
  * License: GPLv2 or later
@@ -20,7 +20,7 @@ if ( ! class_exists( 'myCRED_Core' ) ) :
20
  final class myCRED_Core {
21
 
22
  // Plugin Version
23
- public $version = '1.7.4';
24
 
25
  // Instnace
26
  protected static $_instance = NULL;
3
  * Plugin Name: myCRED
4
  * Plugin URI: http://mycred.me
5
  * Description: An adaptive points management system for WordPress powered websites.
6
+ * Version: 1.7.5
7
  * Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce, marketpress, wp e-commerce, gravity forms, simplepress
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
10
  * Author Email: support@mycred.me
11
  * Requires at least: WP 4.0
12
+ * Tested up to: WP 4.7
13
  * Text Domain: mycred
14
  * Domain Path: /lang
15
  * License: GPLv2 or later
20
  final class myCRED_Core {
21
 
22
  // Plugin Version
23
+ public $version = '1.7.5';
24
 
25
  // Instnace
26
  protected static $_instance = NULL;
plugins/mycred-hook-buddypress-media.php CHANGED
@@ -24,7 +24,7 @@ function mycred_register_buddypress_media_hook( $installed ) {
24
  /**
25
  * rtMedia Hook
26
  * @since 1.4
27
- * @version 1.1
28
  */
29
  add_action( 'mycred_load_hooks', 'mycred_load_buddypress_media_hook', 35 );
30
  function mycred_load_buddypress_media_hook() {
@@ -81,7 +81,7 @@ function mycred_load_buddypress_media_hook() {
81
  /**
82
  * New Media
83
  * @since 1.4
84
- * @version 1.2
85
  */
86
  public function new_media( $media_ids ) {
87
 
@@ -107,21 +107,19 @@ function mycred_load_buddypress_media_hook() {
107
  if ( $points == $this->core->zero() ) continue;
108
 
109
  // Limit
110
- if ( $this->over_hook_limit( $media[0]->media_type, $reference, $user_id ) ) continue;
111
 
112
  // Make sure this is unique
113
- if ( $this->core->has_entry( $reference, $user_id, $media_id, $data, $this->mycred_type ) ) continue;
114
-
115
- // Execute
116
- $this->core->add_creds(
117
- $reference,
118
- $user_id,
119
- $points,
120
- $log_entry,
121
- $media_id,
122
- $data,
123
- $this->mycred_type
124
- );
125
 
126
  }
127
 
@@ -130,7 +128,7 @@ function mycred_load_buddypress_media_hook() {
130
  /**
131
  * Delete Media
132
  * @since 1.4
133
- * @version 1.1
134
  */
135
  public function delete_media( $media_id ) {
136
 
@@ -153,18 +151,16 @@ function mycred_load_buddypress_media_hook() {
153
  if ( $this->core->exclude_user( $user_id ) ) return;
154
 
155
  // Only delete points once
156
- if ( $this->core->has_entry( $reference, $user_id, $media_id, $data, $this->mycred_type ) ) return;
157
-
158
- // Execute
159
- $this->core->add_creds(
160
- $reference,
161
- $user_id,
162
- $points,
163
- $log_entry,
164
- $media_id,
165
- $data,
166
- $this->mycred_type
167
- );
168
 
169
  }
170
 
@@ -178,35 +174,28 @@ function mycred_load_buddypress_media_hook() {
178
  global $wpdb;
179
 
180
  // Prep
181
- $wheres = array();
182
- $now = current_time( 'timestamp' );
183
-
184
- $prefs = $this->prefs['new_media'][ $instance . '_limit' ];
185
 
186
- // If the user ID is not set use the current one
187
- if ( $user_id === NULL )
188
- $user_id = get_current_user_id();
189
 
190
- // If this an existance check or just a regular limit check?
191
- $exists_check = false;
192
- if ( $ref_id !== NULL && strlen( $ref_id ) > 0 )
193
- $exists_check = true;
194
 
195
  if ( count( explode( '/', $prefs ) ) != 2 )
196
  $prefs = '0/x';
197
 
198
  // Prep settings
199
  list ( $amount, $period ) = explode( '/', $prefs );
200
- $amount = (int) $amount;
201
 
202
  // We start constructing the query.
203
  $wheres[] = $wpdb->prepare( "user_id = %d", $user_id );
204
  $wheres[] = $wpdb->prepare( "ref = %s", $reference );
205
  $wheres[] = $wpdb->prepare( "ctype = %s", $this->mycred_type );
206
 
207
- if ( $exists_check )
208
- $wheres[] = $wpdb->prepare( "ref_id = %d", $ref_id );
209
-
210
  // If check is based on time
211
  if ( ! in_array( $period, array( 't', 'x' ) ) ) {
212
 
@@ -227,20 +216,14 @@ function mycred_load_buddypress_media_hook() {
227
  }
228
 
229
  // Put all wheres together into one string
230
- $wheres = implode( " AND ", $wheres );
231
 
232
  // Count
233
- $count = $wpdb->get_var( "SELECT COUNT(*) FROM {$this->core->log_table} WHERE {$wheres};" );
234
  if ( $count === NULL ) $count = 0;
235
 
236
  $over_limit = false;
237
-
238
- // Existence check has first priority
239
- if ( $count > 0 && $exists_check )
240
- $over_limit = true;
241
-
242
- // Limit check is second priority
243
- elseif ( $period != 'x' && $count >= $amount )
244
  $over_limit = true;
245
 
246
  return $over_limit;
@@ -386,29 +369,29 @@ function mycred_load_buddypress_media_hook() {
386
  /**
387
  * Sanitise Preferences
388
  * @since 1.6
389
- * @version 1.0
390
  */
391
  function sanitise_preferences( $data ) {
392
 
393
- if ( isset( $data['new_media']['photo_limit'] ) && isset( $data['new_media']['limit_by'] ) ) {
394
- $limit = sanitize_text_field( $data['new_media']['limit'] );
395
  if ( $limit == '' ) $limit = 0;
396
- $data['new_media']['photo_limit'] = $limit . '/' . $data['new_media']['limit_by'];
397
- unset( $data['new_media']['limit_by'] );
398
  }
399
 
400
- if ( isset( $data['new_media']['limit'] ) && isset( $data['new_media']['limit_by'] ) ) {
401
- $limit = sanitize_text_field( $data['new_media']['limit'] );
402
  if ( $limit == '' ) $limit = 0;
403
- $data['new_media']['limit'] = $limit . '/' . $data['new_media']['limit_by'];
404
- unset( $data['new_media']['limit_by'] );
405
  }
406
 
407
- if ( isset( $data['new_media']['limit'] ) && isset( $data['new_media']['limit_by'] ) ) {
408
- $limit = sanitize_text_field( $data['new_media']['limit'] );
409
  if ( $limit == '' ) $limit = 0;
410
- $data['new_media']['limit'] = $limit . '/' . $data['new_media']['limit_by'];
411
- unset( $data['new_media']['limit_by'] );
412
  }
413
 
414
  return $data;
@@ -418,5 +401,3 @@ function mycred_load_buddypress_media_hook() {
418
  }
419
 
420
  }
421
-
422
- ?>
24
  /**
25
  * rtMedia Hook
26
  * @since 1.4
27
+ * @version 1.1.1
28
  */
29
  add_action( 'mycred_load_hooks', 'mycred_load_buddypress_media_hook', 35 );
30
  function mycred_load_buddypress_media_hook() {
81
  /**
82
  * New Media
83
  * @since 1.4
84
+ * @version 1.2.2
85
  */
86
  public function new_media( $media_ids ) {
87
 
107
  if ( $points == $this->core->zero() ) continue;
108
 
109
  // Limit
110
+ if ( $this->over_hook_limit( $media[0]->media_type . '_limit', $reference, $user_id ) ) continue;
111
 
112
  // Make sure this is unique
113
+ if ( ! $this->core->has_entry( $reference, $media_id, $user_id ) )
114
+ $this->core->add_creds(
115
+ $reference,
116
+ $user_id,
117
+ $points,
118
+ $log_entry,
119
+ $media_id,
120
+ $data,
121
+ $this->mycred_type
122
+ );
 
 
123
 
124
  }
125
 
128
  /**
129
  * Delete Media
130
  * @since 1.4
131
+ * @version 1.1.2
132
  */
133
  public function delete_media( $media_id ) {
134
 
151
  if ( $this->core->exclude_user( $user_id ) ) return;
152
 
153
  // Only delete points once
154
+ if ( ! $this->core->has_entry( $reference, $media_id, $user_id ) )
155
+ $this->core->add_creds(
156
+ $reference,
157
+ $user_id,
158
+ $points,
159
+ $log_entry,
160
+ $media_id,
161
+ $data,
162
+ $this->mycred_type
163
+ );
 
 
164
 
165
  }
166
 
174
  global $wpdb;
175
 
176
  // Prep
177
+ $wheres = array();
178
+ $now = current_time( 'timestamp' );
 
 
179
 
180
+ // If hook uses multiple instances
181
+ if ( isset( $this->prefs['new_media'][ $instance ] ) )
182
+ $prefs = $this->prefs['new_media'][ $instance ];
183
 
184
+ // no support for limits
185
+ else return false;
 
 
186
 
187
  if ( count( explode( '/', $prefs ) ) != 2 )
188
  $prefs = '0/x';
189
 
190
  // Prep settings
191
  list ( $amount, $period ) = explode( '/', $prefs );
192
+ $amount = (int) $amount;
193
 
194
  // We start constructing the query.
195
  $wheres[] = $wpdb->prepare( "user_id = %d", $user_id );
196
  $wheres[] = $wpdb->prepare( "ref = %s", $reference );
197
  $wheres[] = $wpdb->prepare( "ctype = %s", $this->mycred_type );
198
 
 
 
 
199
  // If check is based on time
200
  if ( ! in_array( $period, array( 't', 'x' ) ) ) {
201
 
216
  }
217
 
218
  // Put all wheres together into one string
219
+ $wheres = implode( " AND ", $wheres );
220
 
221
  // Count
222
+ $count = $wpdb->get_var( "SELECT COUNT(*) FROM {$this->core->log_table} WHERE {$wheres};" );
223
  if ( $count === NULL ) $count = 0;
224
 
225
  $over_limit = false;
226
+ if ( $period != 'x' && $count >= $amount )
 
 
 
 
 
 
227
  $over_limit = true;
228
 
229
  return $over_limit;
369
  /**
370
  * Sanitise Preferences
371
  * @since 1.6
372
+ * @version 1.0.1
373
  */
374
  function sanitise_preferences( $data ) {
375
 
376
+ if ( isset( $data['new_media']['photo_limit'] ) && isset( $data['new_media']['photo_limit_by'] ) ) {
377
+ $limit = sanitize_text_field( $data['new_media']['photo_limit'] );
378
  if ( $limit == '' ) $limit = 0;
379
+ $data['new_media']['photo_limit'] = $limit . '/' . $data['new_media']['photo_limit_by'];
380
+ unset( $data['new_media']['photo_limit_by'] );
381
  }
382
 
383
+ if ( isset( $data['new_media']['video_limit'] ) && isset( $data['new_media']['video_limit_by'] ) ) {
384
+ $limit = sanitize_text_field( $data['new_media']['video_limit'] );
385
  if ( $limit == '' ) $limit = 0;
386
+ $data['new_media']['video_limit'] = $limit . '/' . $data['new_media']['video_limit_by'];
387
+ unset( $data['new_media']['video_limit_by'] );
388
  }
389
 
390
+ if ( isset( $data['new_media']['music_limit'] ) && isset( $data['new_media']['music_limit_by'] ) ) {
391
+ $limit = sanitize_text_field( $data['new_media']['music_limit'] );
392
  if ( $limit == '' ) $limit = 0;
393
+ $data['new_media']['music_limit'] = $limit . '/' . $data['new_media']['music_limit_by'];
394
+ unset( $data['new_media']['music_limit_by'] );
395
  }
396
 
397
  return $data;
401
  }
402
 
403
  }
 
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: designbymerovingi
3
  Tags: point, points, tokens, credit, management, reward, charge, community, contest, buddypress, jetpack, bbpress, simple press, woocommerce, wp e-commerce, contact-form-7
4
  Requires at least: 4.0
5
- Tested up to: 4.6.1
6
- Stable tag: 1.7.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -100,8 +100,8 @@ You can find a list of [frequently asked questions](https://mycred.me/about/faq/
100
 
101
  == Upgrade Notice ==
102
 
103
- = 1.7.4 =
104
- Bug fixes and improvements.
105
 
106
 
107
  == Other Notes ==
@@ -125,33 +125,27 @@ Bug fixes and improvements.
125
 
126
  == Changelog ==
127
 
128
- = 1.7.4 =
129
- * FIX Points for clicking on links hook is not working when more then one point type is enabled.
130
- * FIX Shortcodes inside the mycred_sell_this function are not getting rendered.
131
- * FIX Custom point type leaderboard will not trigger the current user option from rendering.
132
- * FIX New badge email notifications are not being detected.
133
- * FIX ShareThis support causes fatal error due to missing function.
134
- * FIX mycred_list_ranks shortcodes %rank_logo% tempalte tag is not rendering a logo.
135
- * FIX Email notifications are not formatted correctly causing new lines to be stripped of. (thank you Jim)
136
- * FIX Transfer shortcode amount placeholder should show the minimum amount instead of zero.
137
- * FIX The get_lowest_value() class method is returning incorrect values when using decimals.
138
- * FIX The add_to_log() class method saves decimal values as zero.
139
- * FIX Fixed PHP notice for email notifications.
140
- * FIX The mycred_history shortcode does not honour the option to remove the user column in the log.
141
- * FIX Certain modules do not support the new MYCRED_SLUG constant causing issues in the wp-admin area when used.
142
- * FIX Pagination on certain websites using the mycred_history shortcode is not working as intended.
143
- * FIX Fixed spelling errors (Thank you everyone for helping me out with this).
144
- * TWEAK Set priority order for certain filters to make it easier to remove if needed via a theme or plugin.
145
- * TWEAK Updated the mycred_list_ranks shortcode to support the removal of the wrapper element.
146
- * TWEAK Removed option to sell attachments in the Sell Content add-on.
147
- * TWEAK Tweaked statics add-on settings saving.
148
- * TWEAK Filtering the log by comma separated list of references needs to be url decoded.
149
- * TWEAK – Adjusted how the leaderboard template is processed.
150
- * TWEAK – The post ID and point type is now accessible for both the mycred_publish_hook_old and mycred_publish_hook_new filter hooks.
151
- * NEW – Added new mycred_save_users_rank() function for saving a users rank instead of using mycred_update_user_meta() multiple times.
152
- * NEW – Added new mycred_get_users_profile_url() function for getting a users profile URL with support for BuddyPress and bbPress profiles.
153
- * UPDATE – Updated badges add-on image.
154
- * UPDATE – Updated language files.
155
 
156
 
157
  = Previous Versions =
2
  Contributors: designbymerovingi
3
  Tags: point, points, tokens, credit, management, reward, charge, community, contest, buddypress, jetpack, bbpress, simple press, woocommerce, wp e-commerce, contact-form-7
4
  Requires at least: 4.0
5
+ Tested up to: 4.7
6
+ Stable tag: 1.7.5
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
100
 
101
  == Upgrade Notice ==
102
 
103
+ = 1.7.5 =
104
+ Bug fixes, query improvements, Coupon add-on updates and WP 4.7 comp.
105
 
106
 
107
  == Other Notes ==
125
 
126
  == Changelog ==
127
 
128
+ = 1.7.5 =
129
+ FIX - rtMedia hook uses the has_entry() method incorrectly.
130
+ FIX - Fixed issue with amount queries searching ref_id instead of creds column.
131
+ FIX - Fixed issue with usernames / emails are not converted into correct IDs.
132
+ FIX - When a new log entry is added the reference cache should be reset.
133
+ FIX - Incorrect value for %new_balance% in Email Notifications add-on.
134
+ FIX - Added missing bank transfer reference translation.
135
+ FIX - Bank Transfers are not being shown in the buyCRED purchase log in the admin area.
136
+ FIX - The leaderboard shortcode does not follow the same sorting of results as the leaderboard position shortcode. While we get to choose the order of our first sorting, the secondary sorting should be based on the users IDs.
137
+ TWEAK - Updated inline documentation.
138
+ TWEAK - Improved query construction and created a new structure for posting queries.
139
+ TWEAK - Updated leaderboard query when leaderboard is based on total balance.
140
+ TWEAK - When providing a timeframe, make sure the value of strtotime() is only used if it's a valid unix timestamp. This should prevent db query errors when using bad strings.
141
+ UPDATE - myCRED_Query_Log class updated to version 1.7
142
+ UPDATE - Updated the Coupons add-on to version 1.3.1
143
+ NEW - Added new mycred_locate_template() function.
144
+ NEW - Added support for order by multiple columns.
145
+ NEW - Added support for multiple point type queries and display.
146
+ NEW - Added support for multiple entry id queries.
147
+ NEW - Added advanced query options which disabled the table rendering.
148
+ NEW - Added new shortcode attribute for horizontal navigation when using the mycred_history shortcode.
 
 
 
 
 
 
149
 
150
 
151
  = Previous Versions =