myCRED - Version 1.6.3

Version Description

Translation updates with proper escaping, adjusted log module, badge module and buyCRED module.

=

Download this release

Release Info

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

Code changes from version 1.6.2 to 1.6.3

Files changed (41) hide show
  1. abstracts/mycred-abstract-hook.php +4 -3
  2. abstracts/mycred-abstract-module.php +1 -0
  3. addons/badges/includes/mycred-badge-shortcodes.php +3 -3
  4. addons/badges/myCRED-addon-badges.php +18 -15
  5. addons/banking/abstracts/mycred-abstract-service.php +8 -4
  6. addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php +7 -7
  7. addons/buy-creds/gateways/bitpay.php +32 -22
  8. addons/buy-creds/gateways/netbilling.php +27 -15
  9. addons/buy-creds/gateways/paypal-standard.php +26 -15
  10. addons/buy-creds/gateways/skrill.php +28 -16
  11. addons/buy-creds/gateways/zombaio.php +27 -7
  12. addons/buy-creds/myCRED-addon-buy-creds.php +116 -42
  13. addons/coupons/includes/mycred-coupon-functions.php +16 -14
  14. addons/gateway/carts/mycred-woocommerce.php +36 -17
  15. addons/gateway/event-booking/mycred-eventsmanager.php +1 -1
  16. addons/ranks/assets/js/management.js +4 -3
  17. addons/ranks/assets/js/tweaks.js +3 -3
  18. addons/ranks/myCRED-addon-ranks.php +32 -18
  19. addons/sell-content/assets/js/buy-content.js +15 -14
  20. addons/sell-content/myCRED-addon-sell-content.php +2 -2
  21. addons/stats/widgets/mycred-stats-widget-daily-gains.php +1 -1
  22. addons/stats/widgets/mycred-stats-widget-daily-loses.php +1 -1
  23. addons/transfer/assets/js/transfer.js +61 -72
  24. addons/transfer/includes/mycred-transfer-shortcodes.php +7 -6
  25. includes/mycred-about.php +12 -10
  26. includes/mycred-admin.php +1 -1
  27. includes/mycred-functions.php +18 -9
  28. includes/mycred-log.php +37 -5
  29. includes/mycred-shortcodes.php +3 -1
  30. lang/mycred-en_US.mo +0 -0
  31. lang/mycred-en_US.po +937 -927
  32. lang/mycred-es_ES.mo +0 -0
  33. lang/mycred-es_ES.po +940 -932
  34. lang/mycred-es_VE.mo +0 -0
  35. lang/mycred-es_VE.po +939 -931
  36. lang/mycred-fa_IR.mo +0 -0
  37. lang/mycred-fa_IR.po +939 -929
  38. lang/mycred-fr_FR.mo +0 -0
  39. lang/mycred-fr_FR.po +939 -933
  40. lang/mycred-pt_BR.mo +0 -0
  41. lang/mycred-pt_BR.po +429 -433
abstracts/mycred-abstract-hook.php CHANGED
@@ -71,7 +71,7 @@ if ( ! class_exists( 'myCRED_Hook' ) ) {
71
  * @version 1.0
72
  */
73
  function run() {
74
- wp_die( __( 'function myCRED_Hook::run() must be over-ridden in a sub-class.', 'mycred' ) );
75
  }
76
 
77
  /**
@@ -154,7 +154,7 @@ if ( ! class_exists( 'myCRED_Hook' ) ) {
154
  /**
155
  * Check Limit
156
  * @since 1.6
157
- * @version 1.0.2
158
  */
159
  function over_hook_limit( $instance = '', $reference = '', $user_id = NULL ) {
160
 
@@ -202,7 +202,8 @@ if ( ! class_exists( 'myCRED_Hook' ) ) {
202
  SELECT COUNT(*)
203
  FROM {$this->core->log_table}
204
  WHERE user_id = %d
205
- AND ref = %s {$from};", $user_id, $reference ) );
 
206
 
207
  if ( $count === NULL ) $count = 0;
208
 
71
  * @version 1.0
72
  */
73
  function run() {
74
+ wp_die( 'function myCRED_Hook::run() must be over-ridden in a sub-class.' );
75
  }
76
 
77
  /**
154
  /**
155
  * Check Limit
156
  * @since 1.6
157
+ * @version 1.0.3
158
  */
159
  function over_hook_limit( $instance = '', $reference = '', $user_id = NULL ) {
160
 
202
  SELECT COUNT(*)
203
  FROM {$this->core->log_table}
204
  WHERE user_id = %d
205
+ AND ref = %s
206
+ AND ctype = %s {$from};", $user_id, $reference, $this->mycred_type ) );
207
 
208
  if ( $count === NULL ) $count = 0;
209
 
abstracts/mycred-abstract-module.php CHANGED
@@ -110,6 +110,7 @@ if ( ! class_exists( 'myCRED_Module' ) ) {
110
 
111
  $this->default_prefs = $args['defaults'];
112
  $this->set_settings();
 
113
 
114
  $args = NULL;
115
  }
110
 
111
  $this->default_prefs = $args['defaults'];
112
  $this->set_settings();
113
+ $this->current_user_id = get_current_user_id();
114
 
115
  $args = NULL;
116
  }
addons/badges/includes/mycred-badge-shortcodes.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * Shortcode: mycred_my_badges
6
  * Allows you to show the current users earned badges.
7
  * @since 1.5
8
- * @version 1.1
9
  */
10
  if ( ! function_exists( 'mycred_render_my_badges' ) ) :
11
  function mycred_render_my_badges( $atts, $content = '' )
@@ -39,13 +39,13 @@ if ( ! function_exists( 'mycred_render_my_badges' ) ) :
39
 
40
  if ( ! empty( $users_badges ) ) {
41
 
42
- foreach ( $users_badges as $badge_id ) {
43
 
44
  $level_image = get_post_meta( $badge_id, 'level_image' . $level, true );
45
  if ( $level_image == '' )
46
  $level_image = get_post_meta( $badge_id, 'main_image', true );
47
 
48
- echo '<img src="' . $level_image . '"' . $width . $height . ' class="mycred-badge earned" alt="' . get_the_title( $badge_id ) . '" title="' . get_the_title( $badge_id ) . '" />';
49
 
50
  }
51
 
5
  * Shortcode: mycred_my_badges
6
  * Allows you to show the current users earned badges.
7
  * @since 1.5
8
+ * @version 1.1.1
9
  */
10
  if ( ! function_exists( 'mycred_render_my_badges' ) ) :
11
  function mycred_render_my_badges( $atts, $content = '' )
39
 
40
  if ( ! empty( $users_badges ) ) {
41
 
42
+ foreach ( $users_badges as $badge_id => $level ) {
43
 
44
  $level_image = get_post_meta( $badge_id, 'level_image' . $level, true );
45
  if ( $level_image == '' )
46
  $level_image = get_post_meta( $badge_id, 'main_image', true );
47
 
48
+ echo apply_filters( 'mycred_my_badge', '<img src="' . $level_image . '"' . $width . $height . ' class="mycred-badge earned" alt="' . get_the_title( $badge_id ) . '" title="' . get_the_title( $badge_id ) . '" />', $badge_id, $level, $user_id, $atts );
49
 
50
  }
51
 
addons/badges/myCRED-addon-badges.php CHANGED
@@ -65,7 +65,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
65
 
66
  /**
67
  * Module Init
68
- * @version 1.0.1
69
  */
70
  public function module_init() {
71
 
@@ -95,7 +95,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
95
  if ( $this->badges['buddypress'] == 'header' || $this->badges['buddypress'] == 'both' )
96
  add_action( 'bp_before_member_header_meta', array( $this, 'insert_into_buddypress' ) );
97
  // Insert into profile
98
- elseif ( $this->badges['buddypress'] == 'profile' || $this->badges['buddypress'] == 'both' )
99
  add_action( 'bp_after_profile_loop_content', array( $this, 'insert_into_buddypress' ) );
100
  }
101
 
@@ -602,7 +602,7 @@ jQuery(function($) {
602
  dataType : "JSON",
603
  url : ajaxurl,
604
  beforeSend : function() {
605
- button.attr( 'value', '<?php esc_attr_e( 'Processing...', 'mycred' ); ?>' );
606
  button.attr( 'disabled', 'disabled' );
607
  },
608
  success : function( response ) {
@@ -668,8 +668,8 @@ p.actions { text-align: right; }
668
  </style>
669
  <script type="text/javascript">
670
  jQuery(function($) {
671
- $( '#postimagediv h3.hndle span' ).empty().text( '<?php esc_attr_e( 'Badge Image', 'mycred' ); ?>' );
672
- $( '#postimagediv div.inside p a' ).attr( 'title', '<?php esc_attr_e( 'Set badge image', 'mycred' ); ?>' ).empty().text( '<?php esc_attr_e( 'Set badge image', 'mycred' ); ?>' );
673
  });
674
  </script>
675
  <table class="table" style="width: 100%;" id="setup-badge-reqs">
@@ -787,7 +787,7 @@ jQuery(function($) {
787
  </table>
788
  <p><button id="add-mycred-badge-level" class="pull-right button button-secondary"><?php _e( 'Add Level', 'mycred' ); ?></button></p>
789
  <script type="text/javascript">
790
- jQuery(function($) {
791
 
792
  $( 'select#default-badge-req-type' ).change(function(){
793
 
@@ -828,7 +828,7 @@ jQuery(function($) {
828
  var badgeamount = $( '#default-badge-req-amount' );
829
  var badgeby = $( '#default-badge-req-by' ).find( ':selected' ).text();
830
 
831
- var reqtemplate = '<tr class="badge-requires" id="badge-requirement-' + rows + '"><td class="level"><?php esc_attr_e( 'Level', 'mycred' ); ?> ' + ( rows + 1 ) + '</td><td class="type"><div>' + badgetype.find( ':selected' ).text() + '</div></td><td class="for"><?php esc_attr_e( 'for', 'mycred' ); ?></td><td class="reference"><div>' + badgeref + '</div></td><td class="amount"><input type="text" size="8" name="mycred_badge[req][' + rows + '][amount]" value="" /></td><td class="sum"><div>' + badgeby + '</div></td></tr><tr class="bodered-row"><td class="level"><div class="inner-box"><div class="thumb"></div></div></td><td colspan="5"><label><?php esc_attr_e( 'Badge Image', 'mycred' ); ?></label><input type="text" name="mycred_badge[images][' + rows + ']" placeholder="<?php esc_attr_e( 'image url', 'mycred' ); ?>" id="mycred-badge-level' + rows + '" class="regular-text" size="30" value="" />&nbsp;<input type="button" data-target="mycred-badge-level' + rows + '" data-row="' + rows + '" class="button button-primary mycred-badge-load-image" value="<?php esc_attr_e( 'Add Image', 'mycred' ); ?>" /><p><span class="description"><?php esc_attr_e( 'Leave empty if you do not want to assign a custom image for this level.', 'mycred' ); ?></span><br /><button class="button button-secondary button-small pull-right remove-this-row"><?php esc_attr_e( 'Remove this level', 'mycred' ); ?></button></p></td></tr>';
832
 
833
  $( 'table#setup-badge-reqs' ).append( reqtemplate );
834
  rows = rows+1;
@@ -843,15 +843,15 @@ jQuery(function($) {
843
 
844
  //Extend the wp.media object
845
  custom_uploader = wp.media.frames.file_frame = wp.media({
846
- title : '<?php esc_attr_e( 'Badge Image', 'mycred' ); ?>',
847
  button : {
848
- text : '<?php esc_attr_e( 'Use as Badge', 'mycred' ); ?>'
849
  },
850
  multiple : false
851
  });
852
 
853
  //When a file is selected, grab the URL and set it as the text field's value
854
- custom_uploader.on('select', function() {
855
  attachment = custom_uploader.state().get('selection').first().toJSON();
856
  if ( attachment.url != '' ) {
857
  console.log( attachment );
@@ -865,7 +865,7 @@ jQuery(function($) {
865
 
866
  });
867
 
868
- });
869
  </script>
870
  <div class="clear clearfix"></div>
871
  <?php
@@ -941,7 +941,7 @@ jQuery(function($) {
941
 
942
  /**
943
  * Add to General Settings
944
- * @version 1.0
945
  */
946
  public function after_general_settings( $mycred ) {
947
  $settings = $this->badges;
@@ -983,7 +983,7 @@ jQuery(function($) {
983
  </select>
984
  </li>
985
  <li>
986
- <label for=""><input type="checkbox" name="<?php echo $this->field_name( 'show_all_bp' ); ?>" id="<?php echo $this->field_id( 'show_all_bp' ); ?>" <?php checked( $settings['show_all_bp'], 1 ); ?> value="1" /> <?php _e( 'Show all badges, including badges users have not yet earned.', 'mycred' ); ?></label>
987
  </li>
988
  </ol>
989
  <?php else : ?>
@@ -1014,7 +1014,7 @@ jQuery(function($) {
1014
  </select>
1015
  </li>
1016
  <li>
1017
- <label for=""><input type="checkbox" name="<?php echo $this->field_name( 'show_all_bb' ); ?>" id="<?php echo $this->field_id( 'show_all_bb' ); ?>" <?php checked( $settings['show_all_bb'], 1 ); ?> value="1" /> <?php _e( 'Show all badges, including badges users have not yet earned.', 'mycred' ); ?></label>
1018
  </li>
1019
  </ol>
1020
  <?php else : ?>
@@ -1042,6 +1042,10 @@ jQuery(function($) {
1042
 
1043
  }
1044
 
 
 
 
 
1045
  public function badge_user_screen_header() {
1046
 
1047
  if ( isset( $_POST['mycred_badge_manual']['token'] ) && isset( $_GET['user_id'] ) ) {
@@ -1081,7 +1085,6 @@ jQuery(function($) {
1081
 
1082
  }
1083
 
1084
-
1085
  /**
1086
  * User Badges Admin Screen
1087
  * @version 1.0
65
 
66
  /**
67
  * Module Init
68
+ * @version 1.0.2
69
  */
70
  public function module_init() {
71
 
95
  if ( $this->badges['buddypress'] == 'header' || $this->badges['buddypress'] == 'both' )
96
  add_action( 'bp_before_member_header_meta', array( $this, 'insert_into_buddypress' ) );
97
  // Insert into profile
98
+ if ( $this->badges['buddypress'] == 'profile' || $this->badges['buddypress'] == 'both' )
99
  add_action( 'bp_after_profile_loop_content', array( $this, 'insert_into_buddypress' ) );
100
  }
101
 
602
  dataType : "JSON",
603
  url : ajaxurl,
604
  beforeSend : function() {
605
+ button.attr( 'value', '<?php echo esc_js( esc_attr__( 'Processing...', 'mycred' ) ); ?>' );
606
  button.attr( 'disabled', 'disabled' );
607
  },
608
  success : function( response ) {
668
  </style>
669
  <script type="text/javascript">
670
  jQuery(function($) {
671
+ $( '#postimagediv h3.hndle span' ).empty().text( '<?php echo esc_js( esc_attr__( 'Badge Image', 'mycred' ) ); ?>' );
672
+ $( '#postimagediv div.inside p a' ).attr( 'title', '<?php echo esc_js( esc_attr__( 'Set badge image', 'mycred' ) ); ?>' ).empty().text( '<?php echo esc_js( esc_attr__( 'Set badge image', 'mycred' ) ); ?>' );
673
  });
674
  </script>
675
  <table class="table" style="width: 100%;" id="setup-badge-reqs">
787
  </table>
788
  <p><button id="add-mycred-badge-level" class="pull-right button button-secondary"><?php _e( 'Add Level', 'mycred' ); ?></button></p>
789
  <script type="text/javascript">
790
+ (function($) {
791
 
792
  $( 'select#default-badge-req-type' ).change(function(){
793
 
828
  var badgeamount = $( '#default-badge-req-amount' );
829
  var badgeby = $( '#default-badge-req-by' ).find( ':selected' ).text();
830
 
831
+ var reqtemplate = '<tr class="badge-requires" id="badge-requirement-' + rows + '"><td class="level"><?php echo esc_js( esc_attr__( 'Level', 'mycred' ) ); ?> ' + ( rows + 1 ) + '</td><td class="type"><div>' + badgetype.find( ':selected' ).text() + '</div></td><td class="for"><?php echo esc_js( esc_attr__( 'for', 'mycred' ) ); ?></td><td class="reference"><div>' + badgeref + '</div></td><td class="amount"><input type="text" size="8" name="mycred_badge[req][' + rows + '][amount]" value="" /></td><td class="sum"><div>' + badgeby + '</div></td></tr><tr class="bodered-row"><td class="level"><div class="inner-box"><div class="thumb"></div></div></td><td colspan="5"><label><?php echo esc_js( esc_attr__( 'Badge Image', 'mycred' ) ); ?></label><input type="text" name="mycred_badge[images][' + rows + ']" placeholder="<?php echo esc_js( esc_attr__( 'image url', 'mycred' ) ); ?>" id="mycred-badge-level' + rows + '" class="regular-text" size="30" value="" />&nbsp;<input type="button" data-target="mycred-badge-level' + rows + '" data-row="' + rows + '" class="button button-primary mycred-badge-load-image" value="<?php echo esc_js( esc_attr__( 'Add Image', 'mycred' ) ); ?>" /><p><span class="description"><?php echo esc_js( esc_attr__( 'Leave empty if you do not want to assign a custom image for this level.', 'mycred' ) ); ?></span><br /><button class="button button-secondary button-small pull-right remove-this-row"><?php echo esc_js( esc_attr__( 'Remove this level', 'mycred' ) ); ?></button></p></td></tr>';
832
 
833
  $( 'table#setup-badge-reqs' ).append( reqtemplate );
834
  rows = rows+1;
843
 
844
  //Extend the wp.media object
845
  custom_uploader = wp.media.frames.file_frame = wp.media({
846
+ title : '<?php echo esc_js( esc_attr__( 'Badge Image', 'mycred' ) ); ?>',
847
  button : {
848
+ text : '<?php echo esc_js( esc_attr__( 'Use as Badge', 'mycred' ) ); ?>'
849
  },
850
  multiple : false
851
  });
852
 
853
  //When a file is selected, grab the URL and set it as the text field's value
854
+ custom_uploader.on( 'select', function(){
855
  attachment = custom_uploader.state().get('selection').first().toJSON();
856
  if ( attachment.url != '' ) {
857
  console.log( attachment );
865
 
866
  });
867
 
868
+ })( jQuery );
869
  </script>
870
  <div class="clear clearfix"></div>
871
  <?php
941
 
942
  /**
943
  * Add to General Settings
944
+ * @version 1.0.1
945
  */
946
  public function after_general_settings( $mycred ) {
947
  $settings = $this->badges;
983
  </select>
984
  </li>
985
  <li>
986
+ <label for="<?php echo $this->field_id( 'show_all_bp' ); ?>"><input type="checkbox" name="<?php echo $this->field_name( 'show_all_bp' ); ?>" id="<?php echo $this->field_id( 'show_all_bp' ); ?>" <?php checked( $settings['show_all_bp'], 1 ); ?> value="1" /> <?php _e( 'Show all badges, including badges users have not yet earned.', 'mycred' ); ?></label>
987
  </li>
988
  </ol>
989
  <?php else : ?>
1014
  </select>
1015
  </li>
1016
  <li>
1017
+ <label for="<?php echo $this->field_id( 'show_all_bb' ); ?>"><input type="checkbox" name="<?php echo $this->field_name( 'show_all_bb' ); ?>" id="<?php echo $this->field_id( 'show_all_bb' ); ?>" <?php checked( $settings['show_all_bb'], 1 ); ?> value="1" /> <?php _e( 'Show all badges, including badges users have not yet earned.', 'mycred' ); ?></label>
1018
  </li>
1019
  </ol>
1020
  <?php else : ?>
1042
 
1043
  }
1044
 
1045
+ /**
1046
+ * User Screen Header
1047
+ * @version 1.0
1048
+ */
1049
  public function badge_user_screen_header() {
1050
 
1051
  if ( isset( $_POST['mycred_badge_manual']['token'] ) && isset( $_GET['user_id'] ) ) {
1085
 
1086
  }
1087
 
 
1088
  /**
1089
  * User Badges Admin Screen
1090
  * @version 1.0
addons/banking/abstracts/mycred-abstract-service.php CHANGED
@@ -520,13 +520,17 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
520
  * Returns an array of user IDs that are not excluded
521
  * from this service.
522
  * @since 1.5.2
523
- * @version 1.0
524
  */
525
  public function get_eligeble_users() {
526
 
527
  global $wpdb;
528
  $joins = $wheres = array();
529
 
 
 
 
 
530
  // Minimum Balance
531
  if ( isset( $this->prefs['min_balance'] ) && $this->prefs['min_balance'] != '' && $this->prefs['min_balance'] != 0 ) {
532
 
@@ -534,8 +538,8 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
534
  if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! $this->core->use_central_logging )
535
  $balance_key .= '_' . $GLOBALS['blog_id'];
536
 
537
- $joins[] = "INNER JOIN {$wpdb->usermeta} balance ON ( users.ID = balance.user_id AND balance.meta_key = '{$balance_key}' )";
538
- $wheres[] = "balance.meta_value > " . $this->prefs['min_balance'];
539
 
540
  }
541
 
@@ -571,7 +575,7 @@ if ( ! class_exists( 'myCRED_Service' ) ) {
571
  if ( isset( $this->prefs['exclude_roles'] ) && ! empty( $this->prefs['exclude_roles'] ) ) {
572
  $cap_id = $wpdb->prefix . 'capabilities';
573
 
574
- $joins[] = "INNER JOIN {$wpdb->usermeta} role ON ( users.ID = role.user_id AND role.meta_key = '{$cap_id}' )";
575
 
576
  $excluded_roles = array();
577
  foreach ( $this->prefs['exclude_roles'] as $role_id )
520
  * Returns an array of user IDs that are not excluded
521
  * from this service.
522
  * @since 1.5.2
523
+ * @version 1.1
524
  */
525
  public function get_eligeble_users() {
526
 
527
  global $wpdb;
528
  $joins = $wheres = array();
529
 
530
+ $format = '%d';
531
+ if ( $this->core->format['decimals'] > 0 )
532
+ $format = '%f';
533
+
534
  // Minimum Balance
535
  if ( isset( $this->prefs['min_balance'] ) && $this->prefs['min_balance'] != '' && $this->prefs['min_balance'] != 0 ) {
536
 
538
  if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! $this->core->use_central_logging )
539
  $balance_key .= '_' . $GLOBALS['blog_id'];
540
 
541
+ $joins[] = $wpdb->prepare( "INNER JOIN {$wpdb->usermeta} balance ON ( users.ID = balance.user_id AND balance.meta_key = %s )", $balance_key );
542
+ $wheres[] = $wpdb->prepare( "balance.meta_value > {$format}", $this->prefs['min_balance'] );
543
 
544
  }
545
 
575
  if ( isset( $this->prefs['exclude_roles'] ) && ! empty( $this->prefs['exclude_roles'] ) ) {
576
  $cap_id = $wpdb->prefix . 'capabilities';
577
 
578
+ $joins[] = $wpdb->prepare( "INNER JOIN {$wpdb->usermeta} role ON ( users.ID = role.user_id AND role.meta_key = %s )", $cap_id );
579
 
580
  $excluded_roles = array();
581
  foreach ( $this->prefs['exclude_roles'] as $role_id )
addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php CHANGED
@@ -211,7 +211,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
211
  /**
212
  * Get Pending Payment
213
  * @since 1.5
214
- * @version 1.0
215
  */
216
  function get_pending_payment( $post_id = '' ) {
217
 
@@ -222,7 +222,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
222
  $post = get_page_by_title( $post_id, OBJECT, 'buycred_payment' );
223
 
224
  if ( isset( $post->ID ) && $post->post_type == 'buycred_payment' ) {
225
- $pending_payment = array();
226
  $pending_payment['to'] = (int) get_post_meta( $post->ID, 'to', true );
227
  $pending_payment['from'] = (int) get_post_meta( $post->ID, 'from', true );
228
  $pending_payment['amount'] = get_post_meta( $post->ID, 'amount', true );
@@ -596,9 +596,9 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
596
  </thead>
597
  <tbody>
598
  <tr>
599
- <td class=""><?php echo $order_name; ?></td>
600
- <td class=""><?php echo $amount; ?></td>
601
- <td class=""><?php echo $cost; ?> <?php if ( isset( $this->prefs['currency'] ) ) echo $this->prefs['currency']; else echo 'USD'; ?></td>
602
  </tr>
603
  </tbody>
604
  </table>
@@ -756,7 +756,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
756
  /**
757
  * Get Cancelled Page
758
  * @since 0.1
759
- * @version 1.3
760
  */
761
  function get_cancelled( $cancel_token = '' ) {
762
 
@@ -777,7 +777,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
777
  else
778
  $url = $base;
779
 
780
- return apply_filters( 'mycred_buycred_cancel_url', $url, $title, $this );
781
 
782
  }
783
 
211
  /**
212
  * Get Pending Payment
213
  * @since 1.5
214
+ * @version 1.0.1
215
  */
216
  function get_pending_payment( $post_id = '' ) {
217
 
222
  $post = get_page_by_title( $post_id, OBJECT, 'buycred_payment' );
223
 
224
  if ( isset( $post->ID ) && $post->post_type == 'buycred_payment' ) {
225
+ $pending_payment = array( 'ID' => $post->ID );
226
  $pending_payment['to'] = (int) get_post_meta( $post->ID, 'to', true );
227
  $pending_payment['from'] = (int) get_post_meta( $post->ID, 'from', true );
228
  $pending_payment['amount'] = get_post_meta( $post->ID, 'amount', true );
596
  </thead>
597
  <tbody>
598
  <tr>
599
+ <td class="order-item"><?php echo $order_name; ?></td>
600
+ <td class="order-amount"><?php echo $amount; ?></td>
601
+ <td class="order-cost"><?php echo $cost; ?> <?php if ( isset( $this->prefs['currency'] ) ) echo $this->prefs['currency']; else echo 'USD'; ?></td>
602
  </tr>
603
  </tbody>
604
  </table>
756
  /**
757
  * Get Cancelled Page
758
  * @since 0.1
759
+ * @version 1.3.1
760
  */
761
  function get_cancelled( $cancel_token = '' ) {
762
 
777
  else
778
  $url = $base;
779
 
780
+ return apply_filters( 'mycred_buycred_cancel_url', $url, $cancel_token, $this );
781
 
782
  }
783
 
addons/buy-creds/gateways/bitpay.php CHANGED
@@ -5,15 +5,16 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_Bitpay class
6
  * BitPay (Bitcoins) - Payment Gateway
7
  * @since 1.4
8
- * @version 1.1
9
  */
10
- if ( ! class_exists( 'myCRED_Bitpay' ) ) {
11
  class myCRED_Bitpay extends myCRED_Payment_Gateway {
12
 
13
  /**
14
  * Construct
15
  */
16
  function __construct( $gateway_prefs ) {
 
17
  $types = mycred_get_types();
18
  $default_exchange = array();
19
  foreach ( $types as $type => $label )
@@ -27,11 +28,12 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
27
  'api_key' => '',
28
  'currency' => 'USD',
29
  'exchange' => $default_exchange,
30
- 'item_name' => __( 'Purchase of myCRED %plural%', 'mycred' ),
31
  'speed' => 'high',
32
  'notifications' => 1
33
  )
34
  ), $gateway_prefs );
 
35
  }
36
 
37
  /**
@@ -40,7 +42,7 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
40
  * @version 1.1
41
  */
42
  public function process() {
43
-
44
  // Required fields
45
  if ( isset( $_POST['postData'] ) && isset( $_POST['id'] ) && isset( $_POST['price'] ) ) {
46
 
@@ -81,18 +83,17 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
81
  $this->trash_pending_payment( $pending_post_id );
82
  else
83
  $new_call[] = __( 'Failed to credit users account.', 'mycred' );
84
-
85
 
86
  }
87
-
88
  // Log Call
89
  if ( ! empty( $new_call ) )
90
  $this->log_call( $pending_post_id, $new_call );
91
 
92
  }
93
-
94
  }
95
-
96
  }
97
 
98
  }
@@ -110,6 +111,7 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
110
  * @version 1.0
111
  */
112
  public function create_invoice( $args ) {
 
113
  $data = json_encode( $args );
114
 
115
  $curl = curl_init( 'https://bitpay.com/api/invoice/' );
@@ -148,6 +150,7 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
148
  return array( 'error' => $response );
149
 
150
  return $response;
 
151
  }
152
 
153
  /**
@@ -156,6 +159,7 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
156
  * @version 1.1
157
  */
158
  public function buy() {
 
159
  if ( ! isset( $this->prefs['api_key'] ) || empty( $this->prefs['api_key'] ) )
160
  wp_die( __( 'Please setup this gateway before attempting to make a purchase!', 'mycred' ) );
161
 
@@ -209,17 +213,20 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
209
 
210
  // Request Failed
211
  if ( isset( $request['error'] ) ) {
212
- $this->get_page_header( __( 'Processing payment &hellip;', 'mycred' ) ); ?>
213
 
 
214
  <p><?php _e( 'Could not create a BitPay Invoice. Please contact the site administrator!', 'mycred' ); ?></p>
215
  <p><?php printf( __( 'Bitpay returned the following error message:', 'mycred' ) . ' ', $request['error'] ); ?></p>
216
  <?php
 
217
  }
218
 
219
  // Request success
220
  else {
221
- $this->get_page_header( __( 'Processing payment &hellip;', 'mycred' ) ); ?>
222
 
 
223
  <div class="continue-forward" style="text-align:center;">
224
  <p>&nbsp;</p>
225
  <img src="<?php echo plugins_url( 'assets/images/loading.gif', myCRED_PURCHASE ); ?>" alt="Loading" />
@@ -229,10 +236,8 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
229
  }
230
 
231
  $this->get_page_footer();
232
-
233
- // Exit
234
- unset( $this );
235
  exit;
 
236
  }
237
 
238
  /**
@@ -241,8 +246,10 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
241
  * @version 1.0
242
  */
243
  function preferences() {
244
- $prefs = $this->prefs; ?>
245
 
 
 
 
246
  <label class="subheader" for="<?php echo $this->field_id( 'api_key' ); ?>"><?php _e( 'API Key', 'mycred' ); ?></label>
247
  <ol>
248
  <li>
@@ -271,7 +278,7 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
271
  <ol>
272
  <li>
273
  <select name="<?php echo $this->field_name( 'speed' ); ?>" id="<?php echo $this->field_id( 'speed' ); ?>">
274
- <?php
275
 
276
  $options = array(
277
  'high' => __( 'High', 'mycred' ),
@@ -293,7 +300,7 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
293
  <ol>
294
  <li>
295
  <select name="<?php echo $this->field_name( 'notifications' ); ?>" id="<?php echo $this->field_id( 'notifications' ); ?>">
296
- <?php
297
 
298
  $options = array(
299
  0 => __( 'No', 'mycred' ),
@@ -311,8 +318,9 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
311
  </li>
312
  </ol>
313
  <?php
 
314
  }
315
-
316
  /**
317
  * Sanatize Prefs
318
  * @since 1.4
@@ -320,10 +328,10 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
320
  */
321
  public function sanitise_preferences( $data ) {
322
 
323
- $new_data['api_key'] = sanitize_text_field( $data['api_key'] );
324
- $new_data['currency'] = sanitize_text_field( $data['currency'] );
325
- $new_data['item_name'] = sanitize_text_field( $data['item_name'] );
326
- $new_data['speed'] = sanitize_text_field( $data['speed'] );
327
  $new_data['notifications'] = sanitize_text_field( $data['notifications'] );
328
 
329
  // If exchange is less then 1 we must start with a zero
@@ -336,7 +344,9 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) {
336
  $new_data['exchange'] = $data['exchange'];
337
 
338
  return $data;
 
339
  }
 
340
  }
341
- }
342
  ?>
5
  * myCRED_Bitpay class
6
  * BitPay (Bitcoins) - Payment Gateway
7
  * @since 1.4
8
+ * @version 1.1.1
9
  */
10
+ if ( ! class_exists( 'myCRED_Bitpay' ) ) :
11
  class myCRED_Bitpay extends myCRED_Payment_Gateway {
12
 
13
  /**
14
  * Construct
15
  */
16
  function __construct( $gateway_prefs ) {
17
+
18
  $types = mycred_get_types();
19
  $default_exchange = array();
20
  foreach ( $types as $type => $label )
28
  'api_key' => '',
29
  'currency' => 'USD',
30
  'exchange' => $default_exchange,
31
+ 'item_name' => 'Purchase of myCRED %plural%',
32
  'speed' => 'high',
33
  'notifications' => 1
34
  )
35
  ), $gateway_prefs );
36
+
37
  }
38
 
39
  /**
42
  * @version 1.1
43
  */
44
  public function process() {
45
+
46
  // Required fields
47
  if ( isset( $_POST['postData'] ) && isset( $_POST['id'] ) && isset( $_POST['price'] ) ) {
48
 
83
  $this->trash_pending_payment( $pending_post_id );
84
  else
85
  $new_call[] = __( 'Failed to credit users account.', 'mycred' );
 
86
 
87
  }
88
+
89
  // Log Call
90
  if ( ! empty( $new_call ) )
91
  $this->log_call( $pending_post_id, $new_call );
92
 
93
  }
94
+
95
  }
96
+
97
  }
98
 
99
  }
111
  * @version 1.0
112
  */
113
  public function create_invoice( $args ) {
114
+
115
  $data = json_encode( $args );
116
 
117
  $curl = curl_init( 'https://bitpay.com/api/invoice/' );
150
  return array( 'error' => $response );
151
 
152
  return $response;
153
+
154
  }
155
 
156
  /**
159
  * @version 1.1
160
  */
161
  public function buy() {
162
+
163
  if ( ! isset( $this->prefs['api_key'] ) || empty( $this->prefs['api_key'] ) )
164
  wp_die( __( 'Please setup this gateway before attempting to make a purchase!', 'mycred' ) );
165
 
213
 
214
  // Request Failed
215
  if ( isset( $request['error'] ) ) {
216
+ $this->get_page_header( __( 'Processing payment &hellip;', 'mycred' ) );
217
 
218
+ ?>
219
  <p><?php _e( 'Could not create a BitPay Invoice. Please contact the site administrator!', 'mycred' ); ?></p>
220
  <p><?php printf( __( 'Bitpay returned the following error message:', 'mycred' ) . ' ', $request['error'] ); ?></p>
221
  <?php
222
+
223
  }
224
 
225
  // Request success
226
  else {
227
+ $this->get_page_header( __( 'Processing payment &hellip;', 'mycred' ) );
228
 
229
+ ?>
230
  <div class="continue-forward" style="text-align:center;">
231
  <p>&nbsp;</p>
232
  <img src="<?php echo plugins_url( 'assets/images/loading.gif', myCRED_PURCHASE ); ?>" alt="Loading" />
236
  }
237
 
238
  $this->get_page_footer();
 
 
 
239
  exit;
240
+
241
  }
242
 
243
  /**
246
  * @version 1.0
247
  */
248
  function preferences() {
 
249
 
250
+ $prefs = $this->prefs;
251
+
252
+ ?>
253
  <label class="subheader" for="<?php echo $this->field_id( 'api_key' ); ?>"><?php _e( 'API Key', 'mycred' ); ?></label>
254
  <ol>
255
  <li>
278
  <ol>
279
  <li>
280
  <select name="<?php echo $this->field_name( 'speed' ); ?>" id="<?php echo $this->field_id( 'speed' ); ?>">
281
+ <?php
282
 
283
  $options = array(
284
  'high' => __( 'High', 'mycred' ),
300
  <ol>
301
  <li>
302
  <select name="<?php echo $this->field_name( 'notifications' ); ?>" id="<?php echo $this->field_id( 'notifications' ); ?>">
303
+ <?php
304
 
305
  $options = array(
306
  0 => __( 'No', 'mycred' ),
318
  </li>
319
  </ol>
320
  <?php
321
+
322
  }
323
+
324
  /**
325
  * Sanatize Prefs
326
  * @since 1.4
328
  */
329
  public function sanitise_preferences( $data ) {
330
 
331
+ $new_data['api_key'] = sanitize_text_field( $data['api_key'] );
332
+ $new_data['currency'] = sanitize_text_field( $data['currency'] );
333
+ $new_data['item_name'] = sanitize_text_field( $data['item_name'] );
334
+ $new_data['speed'] = sanitize_text_field( $data['speed'] );
335
  $new_data['notifications'] = sanitize_text_field( $data['notifications'] );
336
 
337
  // If exchange is less then 1 we must start with a zero
344
  $new_data['exchange'] = $data['exchange'];
345
 
346
  return $data;
347
+
348
  }
349
+
350
  }
351
+ endif;
352
  ?>
addons/buy-creds/gateways/netbilling.php CHANGED
@@ -6,9 +6,9 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
6
  * NETbilling Payment Gateway
7
  * @see http://secure.netbilling.com/public/docs/merchant/public/directmode/directmode3protocol.html
8
  * @since 0.1
9
- * @version 1.2.1
10
  */
11
- if ( ! class_exists( 'myCRED_NETbilling' ) ) {
12
  class myCRED_NETbilling extends myCRED_Payment_Gateway {
13
 
14
  protected $http_code = '';
@@ -17,6 +17,7 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
17
  * Construct
18
  */
19
  function __construct( $gateway_prefs ) {
 
20
  global $netbilling_errors;
21
 
22
  $types = mycred_get_types();
@@ -32,12 +33,13 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
32
  'sandbox' => 0,
33
  'account' => '',
34
  'site_tag' => '',
35
- 'item_name' => __( 'Purchase of myCRED %plural%', 'mycred' ),
36
  'exchange' => $default_exchange,
37
  'cryptokey' => '',
38
  'currency' => 'USD'
39
  )
40
  ), $gateway_prefs );
 
41
  }
42
 
43
  /**
@@ -47,19 +49,21 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
47
  * @version 1.0
48
  */
49
  public function IPN_is_valid_call() {
 
50
  $result = true;
51
 
52
  // Accounts Match
53
  $account = explode( ':', $_REQUEST['Ecom_Ezic_AccountAndSitetag'] );
54
  if ( $account[0] != $this->prefs['account'] || $account[1] != $this->prefs['site_tag'] )
55
  $result = false;
56
-
57
  // Crypto Check
58
  $crypto_check = md5( $this->prefs['cryptokey'] . $_REQUEST['Ecom_Cost_Total'] . $_REQUEST['Ecom_Receipt_Description'] );
59
  if ( $crypto_check != $_REQUEST['Ecom_Ezic_Security_HashValue_MD5'] )
60
  $result = false;
61
 
62
  return $result;
 
63
  }
64
 
65
  /**
@@ -68,7 +72,7 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
68
  * @version 1.2
69
  */
70
  public function process() {
71
-
72
  // Required fields
73
  if ( isset( $_REQUEST['Ecom_UserData_salesdata'] ) && isset( $_REQUEST['Ecom_Ezic_Response_TransactionID'] ) && isset( $_REQUEST['Ecom_Cost_Total'] ) ) {
74
 
@@ -103,18 +107,17 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
103
  $this->trash_pending_payment( $pending_post_id );
104
  else
105
  $new_call[] = __( 'Failed to credit users account.', 'mycred' );
106
-
107
 
108
  }
109
-
110
  // Log Call
111
  if ( ! empty( $new_call ) )
112
  $this->log_call( $pending_post_id, $new_call );
113
 
114
  }
115
-
116
  }
117
-
118
  }
119
 
120
  }
@@ -125,9 +128,10 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
125
  * @version 1.1
126
  */
127
  public function returning() {
128
- if ( isset( $_REQUEST['Ecom_Ezic_AccountAndSitetag'] ) && isset( $_REQUEST['Ecom_UserData_salesdata'] ) ) {
 
129
  $this->process();
130
- }
131
  }
132
 
133
  /**
@@ -136,6 +140,7 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
136
  * @version 1.3
137
  */
138
  public function buy() {
 
139
  if ( ! isset( $this->prefs['account'] ) || empty( $this->prefs['account'] ) )
140
  wp_die( __( 'Please setup this gateway before attempting to make a purchase!', 'mycred' ) );
141
 
@@ -194,9 +199,8 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
194
  $this->get_page_redirect( $hidden_fields, 'https://secure.netbilling.com/gw/native/interactive2.2' );
195
  $this->get_page_footer();
196
 
197
- // Exit
198
- unset( $this );
199
  exit;
 
200
  }
201
 
202
  /**
@@ -205,8 +209,10 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
205
  * @version 1.1
206
  */
207
  function preferences() {
208
- $prefs = $this->prefs; ?>
209
 
 
 
 
210
  <label class="subheader" for="<?php echo $this->field_id( 'account' ); ?>"><?php _e( 'Account ID', 'mycred' ); ?></label>
211
  <ol>
212
  <li>
@@ -245,6 +251,7 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
245
  </li>
246
  </ol>
247
  <?php
 
248
  }
249
 
250
  /**
@@ -253,6 +260,7 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
253
  * @version 1.2
254
  */
255
  public function sanitise_preferences( $data ) {
 
256
  $new_data = array();
257
 
258
  $new_data['sandbox'] = ( isset( $data['sandbox'] ) ) ? 1 : 0;
@@ -271,6 +279,7 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
271
  $new_data['exchange'] = $data['exchange'];
272
 
273
  return $new_data;
 
274
  }
275
 
276
  /**
@@ -279,6 +288,7 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
279
  * @version 1.0
280
  */
281
  protected function validate_cc( $data = array() ) {
 
282
  $errors = array();
283
 
284
  // Credit Card
@@ -309,7 +319,9 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) {
309
  }
310
 
311
  return $errors;
 
312
  }
 
313
  }
314
- }
315
  ?>
6
  * NETbilling Payment Gateway
7
  * @see http://secure.netbilling.com/public/docs/merchant/public/directmode/directmode3protocol.html
8
  * @since 0.1
9
+ * @version 1.2.2
10
  */
11
+ if ( ! class_exists( 'myCRED_NETbilling' ) ) :
12
  class myCRED_NETbilling extends myCRED_Payment_Gateway {
13
 
14
  protected $http_code = '';
17
  * Construct
18
  */
19
  function __construct( $gateway_prefs ) {
20
+
21
  global $netbilling_errors;
22
 
23
  $types = mycred_get_types();
33
  'sandbox' => 0,
34
  'account' => '',
35
  'site_tag' => '',
36
+ 'item_name' => 'Purchase of myCRED %plural%',
37
  'exchange' => $default_exchange,
38
  'cryptokey' => '',
39
  'currency' => 'USD'
40
  )
41
  ), $gateway_prefs );
42
+
43
  }
44
 
45
  /**
49
  * @version 1.0
50
  */
51
  public function IPN_is_valid_call() {
52
+
53
  $result = true;
54
 
55
  // Accounts Match
56
  $account = explode( ':', $_REQUEST['Ecom_Ezic_AccountAndSitetag'] );
57
  if ( $account[0] != $this->prefs['account'] || $account[1] != $this->prefs['site_tag'] )
58
  $result = false;
59
+
60
  // Crypto Check
61
  $crypto_check = md5( $this->prefs['cryptokey'] . $_REQUEST['Ecom_Cost_Total'] . $_REQUEST['Ecom_Receipt_Description'] );
62
  if ( $crypto_check != $_REQUEST['Ecom_Ezic_Security_HashValue_MD5'] )
63
  $result = false;
64
 
65
  return $result;
66
+
67
  }
68
 
69
  /**
72
  * @version 1.2
73
  */
74
  public function process() {
75
+
76
  // Required fields
77
  if ( isset( $_REQUEST['Ecom_UserData_salesdata'] ) && isset( $_REQUEST['Ecom_Ezic_Response_TransactionID'] ) && isset( $_REQUEST['Ecom_Cost_Total'] ) ) {
78
 
107
  $this->trash_pending_payment( $pending_post_id );
108
  else
109
  $new_call[] = __( 'Failed to credit users account.', 'mycred' );
 
110
 
111
  }
112
+
113
  // Log Call
114
  if ( ! empty( $new_call ) )
115
  $this->log_call( $pending_post_id, $new_call );
116
 
117
  }
118
+
119
  }
120
+
121
  }
122
 
123
  }
128
  * @version 1.1
129
  */
130
  public function returning() {
131
+
132
+ if ( isset( $_REQUEST['Ecom_Ezic_AccountAndSitetag'] ) && isset( $_REQUEST['Ecom_UserData_salesdata'] ) )
133
  $this->process();
134
+
135
  }
136
 
137
  /**
140
  * @version 1.3
141
  */
142
  public function buy() {
143
+
144
  if ( ! isset( $this->prefs['account'] ) || empty( $this->prefs['account'] ) )
145
  wp_die( __( 'Please setup this gateway before attempting to make a purchase!', 'mycred' ) );
146
 
199
  $this->get_page_redirect( $hidden_fields, 'https://secure.netbilling.com/gw/native/interactive2.2' );
200
  $this->get_page_footer();
201
 
 
 
202
  exit;
203
+
204
  }
205
 
206
  /**
209
  * @version 1.1
210
  */
211
  function preferences() {
 
212
 
213
+ $prefs = $this->prefs;
214
+
215
+ ?>
216
  <label class="subheader" for="<?php echo $this->field_id( 'account' ); ?>"><?php _e( 'Account ID', 'mycred' ); ?></label>
217
  <ol>
218
  <li>
251
  </li>
252
  </ol>
253
  <?php
254
+
255
  }
256
 
257
  /**
260
  * @version 1.2
261
  */
262
  public function sanitise_preferences( $data ) {
263
+
264
  $new_data = array();
265
 
266
  $new_data['sandbox'] = ( isset( $data['sandbox'] ) ) ? 1 : 0;
279
  $new_data['exchange'] = $data['exchange'];
280
 
281
  return $new_data;
282
+
283
  }
284
 
285
  /**
288
  * @version 1.0
289
  */
290
  protected function validate_cc( $data = array() ) {
291
+
292
  $errors = array();
293
 
294
  // Credit Card
319
  }
320
 
321
  return $errors;
322
+
323
  }
324
+
325
  }
326
+ endif;
327
  ?>
addons/buy-creds/gateways/paypal-standard.php CHANGED
@@ -5,15 +5,16 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_PayPal class
6
  * PayPal Payments Standard - Payment Gateway
7
  * @since 0.1
8
- * @version 1.2
9
  */
10
- if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
11
  class myCRED_PayPal_Standard extends myCRED_Payment_Gateway {
12
 
13
  /**
14
  * Construct
15
  */
16
  function __construct( $gateway_prefs ) {
 
17
  $types = mycred_get_types();
18
  $default_exchange = array();
19
  foreach ( $types as $type => $label )
@@ -27,10 +28,11 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
27
  'sandbox' => 0,
28
  'currency' => '',
29
  'account' => '',
30
- 'item_name' => __( 'Purchase of myCRED %plural%', 'mycred' ),
31
  'exchange' => $default_exchange
32
  )
33
  ), $gateway_prefs );
 
34
  }
35
 
36
  /**
@@ -40,6 +42,7 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
40
  * @version 1.0
41
  */
42
  public function IPN_is_valid_call() {
 
43
  // PayPal Host
44
  if ( $this->sandbox_mode )
45
  $host = 'www.sandbox.paypal.com';
@@ -108,12 +111,12 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
108
  $attempt++;
109
 
110
  } while ( $attempt <= $curl_attempts );
111
-
112
- if ( strcmp( $result, "VERIFIED" ) == 0 ) {
113
  return true;
114
- }
115
 
116
  return false;
 
117
  }
118
 
119
  /**
@@ -165,15 +168,15 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
165
  $new_call[] = __( 'Failed to credit users account.', 'mycred' );
166
 
167
  }
168
-
169
  // Log Call
170
  if ( ! empty( $new_call ) )
171
  $this->log_call( $pending_post_id, $new_call );
172
 
173
  }
174
-
175
  }
176
-
177
  }
178
 
179
  }
@@ -184,12 +187,14 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
184
  * @version 1.0.1
185
  */
186
  public function returning() {
 
187
  if ( isset( $_REQUEST['tx'] ) && isset( $_REQUEST['st'] ) && $_REQUEST['st'] == 'Completed' ) {
188
  $this->get_page_header( __( 'Success', 'mycred' ), $this->get_thankyou() );
189
  echo '<h1 style="text-align:center;">' . __( 'Thank you for your purchase', 'mycred' ) . '</h1>';
190
  $this->get_page_footer();
191
  exit;
192
  }
 
193
  }
194
 
195
  /**
@@ -198,6 +203,7 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
198
  * @version 1.2
199
  */
200
  public function buy() {
 
201
  if ( ! isset( $this->prefs['account'] ) || empty( $this->prefs['account'] ) )
202
  wp_die( __( 'Please setup this gateway before attempting to make a purchase!', 'mycred' ) );
203
 
@@ -254,7 +260,7 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
254
  'return' => $thankyou_url,
255
  'notify_url' => $this->callback_url(),
256
  'rm' => 2,
257
- 'cbt' => __( 'Return to ', 'mycred' ) . get_bloginfo( 'name' ),
258
  'cancel_return' => $cancel_url
259
  );
260
 
@@ -263,9 +269,8 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
263
  $this->get_page_redirect( $hidden_fields, $location );
264
  $this->get_page_footer();
265
 
266
- // Exit
267
- unset( $this );
268
  exit;
 
269
  }
270
 
271
  /**
@@ -274,12 +279,14 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
274
  * @version 1.0
275
  */
276
  function preferences() {
277
- $prefs = $this->prefs; ?>
278
 
 
 
 
279
  <label class="subheader" for="<?php echo $this->field_id( 'currency' ); ?>"><?php _e( 'Currency', 'mycred' ); ?></label>
280
  <ol>
281
  <li>
282
- <?php $this->currencies_dropdown( 'currency', 'mycred-gateway-paypal-currency' ); ?>
283
  </li>
284
  </ol>
285
  <label class="subheader" for="<?php echo $this->field_id( 'account' ); ?>"><?php _e( 'Account Email', 'mycred' ); ?></label>
@@ -300,6 +307,7 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
300
  <?php $this->exchange_rate_setup(); ?>
301
  </ol>
302
  <?php
 
303
  }
304
 
305
  /**
@@ -308,6 +316,7 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
308
  * @version 1.3
309
  */
310
  public function sanitise_preferences( $data ) {
 
311
  $new_data = array();
312
 
313
  $new_data['sandbox'] = ( isset( $data['sandbox'] ) ) ? 1 : 0;
@@ -325,7 +334,9 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) {
325
  $new_data['exchange'] = $data['exchange'];
326
 
327
  return $new_data;
 
328
  }
 
329
  }
330
- }
331
  ?>
5
  * myCRED_PayPal class
6
  * PayPal Payments Standard - Payment Gateway
7
  * @since 0.1
8
+ * @version 1.2.1
9
  */
10
+ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) :
11
  class myCRED_PayPal_Standard extends myCRED_Payment_Gateway {
12
 
13
  /**
14
  * Construct
15
  */
16
  function __construct( $gateway_prefs ) {
17
+
18
  $types = mycred_get_types();
19
  $default_exchange = array();
20
  foreach ( $types as $type => $label )
28
  'sandbox' => 0,
29
  'currency' => '',
30
  'account' => '',
31
+ 'item_name' => 'Purchase of myCRED %plural%',
32
  'exchange' => $default_exchange
33
  )
34
  ), $gateway_prefs );
35
+
36
  }
37
 
38
  /**
42
  * @version 1.0
43
  */
44
  public function IPN_is_valid_call() {
45
+
46
  // PayPal Host
47
  if ( $this->sandbox_mode )
48
  $host = 'www.sandbox.paypal.com';
111
  $attempt++;
112
 
113
  } while ( $attempt <= $curl_attempts );
114
+
115
+ if ( strcmp( $result, "VERIFIED" ) == 0 )
116
  return true;
 
117
 
118
  return false;
119
+
120
  }
121
 
122
  /**
168
  $new_call[] = __( 'Failed to credit users account.', 'mycred' );
169
 
170
  }
171
+
172
  // Log Call
173
  if ( ! empty( $new_call ) )
174
  $this->log_call( $pending_post_id, $new_call );
175
 
176
  }
177
+
178
  }
179
+
180
  }
181
 
182
  }
187
  * @version 1.0.1
188
  */
189
  public function returning() {
190
+
191
  if ( isset( $_REQUEST['tx'] ) && isset( $_REQUEST['st'] ) && $_REQUEST['st'] == 'Completed' ) {
192
  $this->get_page_header( __( 'Success', 'mycred' ), $this->get_thankyou() );
193
  echo '<h1 style="text-align:center;">' . __( 'Thank you for your purchase', 'mycred' ) . '</h1>';
194
  $this->get_page_footer();
195
  exit;
196
  }
197
+
198
  }
199
 
200
  /**
203
  * @version 1.2
204
  */
205
  public function buy() {
206
+
207
  if ( ! isset( $this->prefs['account'] ) || empty( $this->prefs['account'] ) )
208
  wp_die( __( 'Please setup this gateway before attempting to make a purchase!', 'mycred' ) );
209
 
260
  'return' => $thankyou_url,
261
  'notify_url' => $this->callback_url(),
262
  'rm' => 2,
263
+ 'cbt' => sprintf( _x( 'Return to %s', 'Return label. %s = Website name', 'mycred' ), get_bloginfo( 'name' ) ),
264
  'cancel_return' => $cancel_url
265
  );
266
 
269
  $this->get_page_redirect( $hidden_fields, $location );
270
  $this->get_page_footer();
271
 
 
 
272
  exit;
273
+
274
  }
275
 
276
  /**
279
  * @version 1.0
280
  */
281
  function preferences() {
 
282
 
283
+ $prefs = $this->prefs;
284
+
285
+ ?>
286
  <label class="subheader" for="<?php echo $this->field_id( 'currency' ); ?>"><?php _e( 'Currency', 'mycred' ); ?></label>
287
  <ol>
288
  <li>
289
+ <?php $this->currencies_dropdown( 'currency', 'mycred-gateway-paypal-standard-currency' ); ?>
290
  </li>
291
  </ol>
292
  <label class="subheader" for="<?php echo $this->field_id( 'account' ); ?>"><?php _e( 'Account Email', 'mycred' ); ?></label>
307
  <?php $this->exchange_rate_setup(); ?>
308
  </ol>
309
  <?php
310
+
311
  }
312
 
313
  /**
316
  * @version 1.3
317
  */
318
  public function sanitise_preferences( $data ) {
319
+
320
  $new_data = array();
321
 
322
  $new_data['sandbox'] = ( isset( $data['sandbox'] ) ) ? 1 : 0;
334
  $new_data['exchange'] = $data['exchange'];
335
 
336
  return $new_data;
337
+
338
  }
339
+
340
  }
341
+ endif;
342
  ?>
addons/buy-creds/gateways/skrill.php CHANGED
@@ -5,15 +5,16 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_Skrill class
6
  * Skrill (Moneybookers) - Payment Gateway
7
  * @since 0.1
8
- * @version 1.1
9
  */
10
- if ( ! class_exists( 'myCRED_Skrill' ) ) {
11
  class myCRED_Skrill extends myCRED_Payment_Gateway {
12
 
13
  /**
14
  * Construct
15
  */
16
  function __construct( $gateway_prefs ) {
 
17
  $types = mycred_get_types();
18
  $default_exchange = array();
19
  foreach ( $types as $type => $label )
@@ -32,11 +33,11 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
32
  'account_logo' => '',
33
  'confirmation_note' => '',
34
  'email_receipt' => 0,
35
- 'item_name' => __( 'Purchase of myCRED %plural%', 'mycred' ),
36
  'exchange' => $default_exchange
37
  )
38
  ), $gateway_prefs );
39
-
40
  }
41
 
42
  /**
@@ -45,6 +46,7 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
45
  * @version 1.0
46
  */
47
  public function skrill_currencies( $currencies ) {
 
48
  $currencies['RON'] = 'Romanian Leu';
49
  $currencies['TRY'] = 'New Turkish Lira';
50
  $currencies['RON'] = 'Romanian Leu';
@@ -66,12 +68,13 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
66
  $currencies['OMR'] = 'Omani Rial';
67
  $currencies['RSD'] = 'Serbian Dinar';
68
  $currencies['TND'] = 'Tunisian Dinar';
69
-
70
  unset( $currencies['MXN'] );
71
  unset( $currencies['BRL'] );
72
  unset( $currencies['PHP'] );
73
-
74
  return $currencies;
 
75
  }
76
 
77
  /**
@@ -81,16 +84,18 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
81
  * @version 1.1
82
  */
83
  public function IPN_is_valid_call() {
 
84
  $result = true;
85
 
86
  $check = $_POST['merchant_id'] . $_POST['transaction_id'] . strtoupper( md5( $this->prefs['word'] ) ) . $_POST['mb_amount'] . $_POST['mb_currency'] . $_POST['status'];
87
  if ( strtoupper( md5( $check ) ) !== $_POST['md5sig'] )
88
  $result = false;
89
-
90
  if ( $_POST['pay_to_email'] != trim( $this->prefs['account'] ) )
91
  $result = false;
92
 
93
  return $result;
 
94
  }
95
 
96
  /**
@@ -99,7 +104,7 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
99
  * @version 1.2
100
  */
101
  public function process() {
102
-
103
  // Required fields
104
  if ( isset( $_POST['sales_data'] ) && isset( $_POST['transaction_id'] ) && isset( $_POST['amount'] ) ) {
105
 
@@ -140,18 +145,17 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
140
  $this->trash_pending_payment( $pending_post_id );
141
  else
142
  $new_call[] = __( 'Failed to credit users account.', 'mycred' );
143
-
144
 
145
  }
146
-
147
  // Log Call
148
  if ( ! empty( $new_call ) )
149
  $this->log_call( $pending_post_id, $new_call );
150
 
151
  }
152
-
153
  }
154
-
155
  }
156
 
157
  }
@@ -162,12 +166,14 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
162
  * @version 1.1
163
  */
164
  public function returning() {
 
165
  if ( isset( $_GET['transaction_id'] ) && ! empty( $_GET['transaction_id'] ) && isset( $_GET['msid'] ) && ! empty( $_GET['msid'] ) ) {
166
  $this->get_page_header( __( 'Success', 'mycred' ), $this->get_thankyou() );
167
  echo '<h1>' . __( 'Thank you for your purchase', 'mycred' ) . '</h1>';
168
  $this->get_page_footer();
169
  exit;
170
  }
 
171
  }
172
 
173
  /**
@@ -176,6 +182,7 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
176
  * @version 1.2
177
  */
178
  public function buy() {
 
179
  if ( ! isset( $this->prefs['account'] ) || empty( $this->prefs['account'] ) )
180
  wp_die( __( 'Please setup this gateway before attempting to make a purchase!', 'mycred' ) );
181
 
@@ -275,9 +282,8 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
275
  $this->get_page_redirect( $hidden_fields, $location );
276
  $this->get_page_footer();
277
 
278
- // Exit
279
- unset( $this );
280
  exit;
 
281
  }
282
 
283
  /**
@@ -286,9 +292,11 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
286
  * @version 1.0.1
287
  */
288
  function preferences() {
 
289
  add_filter( 'mycred_dropdown_currencies', array( $this, 'skrill_currencies' ) );
290
- $prefs = $this->prefs; ?>
291
 
 
292
  <label class="subheader" for="<?php echo $this->field_id( 'currency' ); ?>"><?php _e( 'Currency', 'mycred' ); ?></label>
293
  <ol>
294
  <li>
@@ -344,6 +352,7 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
344
  </li>
345
  </ol>
346
  <?php
 
347
  }
348
 
349
  /**
@@ -352,6 +361,7 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
352
  * @version 1.1
353
  */
354
  public function sanitise_preferences( $data ) {
 
355
  $new_data = array();
356
 
357
  $new_data['sandbox'] = ( isset( $data['sandbox'] ) ) ? 1 : 0;
@@ -374,7 +384,9 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) {
374
  $new_data['exchange'] = $data['exchange'];
375
 
376
  return $new_data;
 
377
  }
 
378
  }
379
- }
380
  ?>
5
  * myCRED_Skrill class
6
  * Skrill (Moneybookers) - Payment Gateway
7
  * @since 0.1
8
+ * @version 1.1.1
9
  */
10
+ if ( ! class_exists( 'myCRED_Skrill' ) ) :
11
  class myCRED_Skrill extends myCRED_Payment_Gateway {
12
 
13
  /**
14
  * Construct
15
  */
16
  function __construct( $gateway_prefs ) {
17
+
18
  $types = mycred_get_types();
19
  $default_exchange = array();
20
  foreach ( $types as $type => $label )
33
  'account_logo' => '',
34
  'confirmation_note' => '',
35
  'email_receipt' => 0,
36
+ 'item_name' => 'Purchase of myCRED %plural%',
37
  'exchange' => $default_exchange
38
  )
39
  ), $gateway_prefs );
40
+
41
  }
42
 
43
  /**
46
  * @version 1.0
47
  */
48
  public function skrill_currencies( $currencies ) {
49
+
50
  $currencies['RON'] = 'Romanian Leu';
51
  $currencies['TRY'] = 'New Turkish Lira';
52
  $currencies['RON'] = 'Romanian Leu';
68
  $currencies['OMR'] = 'Omani Rial';
69
  $currencies['RSD'] = 'Serbian Dinar';
70
  $currencies['TND'] = 'Tunisian Dinar';
71
+
72
  unset( $currencies['MXN'] );
73
  unset( $currencies['BRL'] );
74
  unset( $currencies['PHP'] );
75
+
76
  return $currencies;
77
+
78
  }
79
 
80
  /**
84
  * @version 1.1
85
  */
86
  public function IPN_is_valid_call() {
87
+
88
  $result = true;
89
 
90
  $check = $_POST['merchant_id'] . $_POST['transaction_id'] . strtoupper( md5( $this->prefs['word'] ) ) . $_POST['mb_amount'] . $_POST['mb_currency'] . $_POST['status'];
91
  if ( strtoupper( md5( $check ) ) !== $_POST['md5sig'] )
92
  $result = false;
93
+
94
  if ( $_POST['pay_to_email'] != trim( $this->prefs['account'] ) )
95
  $result = false;
96
 
97
  return $result;
98
+
99
  }
100
 
101
  /**
104
  * @version 1.2
105
  */
106
  public function process() {
107
+
108
  // Required fields
109
  if ( isset( $_POST['sales_data'] ) && isset( $_POST['transaction_id'] ) && isset( $_POST['amount'] ) ) {
110
 
145
  $this->trash_pending_payment( $pending_post_id );
146
  else
147
  $new_call[] = __( 'Failed to credit users account.', 'mycred' );
 
148
 
149
  }
150
+
151
  // Log Call
152
  if ( ! empty( $new_call ) )
153
  $this->log_call( $pending_post_id, $new_call );
154
 
155
  }
156
+
157
  }
158
+
159
  }
160
 
161
  }
166
  * @version 1.1
167
  */
168
  public function returning() {
169
+
170
  if ( isset( $_GET['transaction_id'] ) && ! empty( $_GET['transaction_id'] ) && isset( $_GET['msid'] ) && ! empty( $_GET['msid'] ) ) {
171
  $this->get_page_header( __( 'Success', 'mycred' ), $this->get_thankyou() );
172
  echo '<h1>' . __( 'Thank you for your purchase', 'mycred' ) . '</h1>';
173
  $this->get_page_footer();
174
  exit;
175
  }
176
+
177
  }
178
 
179
  /**
182
  * @version 1.2
183
  */
184
  public function buy() {
185
+
186
  if ( ! isset( $this->prefs['account'] ) || empty( $this->prefs['account'] ) )
187
  wp_die( __( 'Please setup this gateway before attempting to make a purchase!', 'mycred' ) );
188
 
282
  $this->get_page_redirect( $hidden_fields, $location );
283
  $this->get_page_footer();
284
 
 
 
285
  exit;
286
+
287
  }
288
 
289
  /**
292
  * @version 1.0.1
293
  */
294
  function preferences() {
295
+
296
  add_filter( 'mycred_dropdown_currencies', array( $this, 'skrill_currencies' ) );
297
+ $prefs = $this->prefs;
298
 
299
+ ?>
300
  <label class="subheader" for="<?php echo $this->field_id( 'currency' ); ?>"><?php _e( 'Currency', 'mycred' ); ?></label>
301
  <ol>
302
  <li>
352
  </li>
353
  </ol>
354
  <?php
355
+
356
  }
357
 
358
  /**
361
  * @version 1.1
362
  */
363
  public function sanitise_preferences( $data ) {
364
+
365
  $new_data = array();
366
 
367
  $new_data['sandbox'] = ( isset( $data['sandbox'] ) ) ? 1 : 0;
384
  $new_data['exchange'] = $data['exchange'];
385
 
386
  return $new_data;
387
+
388
  }
389
+
390
  }
391
+ endif;
392
  ?>
addons/buy-creds/gateways/zombaio.php CHANGED
@@ -5,15 +5,16 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_Zombaio class
6
  * Zombaio Payment Gateway
7
  * @since 1.1
8
- * @version 1.1
9
  */
10
- if ( ! class_exists( 'myCRED_Zombaio' ) ) {
11
  class myCRED_Zombaio extends myCRED_Payment_Gateway {
12
 
13
  /**
14
  * Construct
15
  */
16
  function __construct( $gateway_prefs ) {
 
17
  parent::__construct( array(
18
  'id' => 'zombaio',
19
  'label' => 'Zombaio',
@@ -28,6 +29,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
28
  'bypass_ipn' => 0
29
  )
30
  ), $gateway_prefs );
 
31
  }
32
 
33
  /**
@@ -36,6 +38,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
36
  * @version 1.0
37
  */
38
  public function process() {
 
39
  if ( isset( $_GET['wp_zombaio_ips'] ) && $_GET['wp_zombaio_ips'] == 1 ) {
40
  $ips = $this->load_ipn_ips();
41
  if ( isset( $_GET['csv'] ) && $_GET['csv'] == 1 ) {
@@ -50,6 +53,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
50
  exit;
51
  }
52
  $this->handle_call();
 
53
  }
54
 
55
  /**
@@ -58,12 +62,14 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
58
  * @version 1.0
59
  */
60
  public function verify_ipn_ip() {
 
61
  if ( $this->prefs['bypass_ipn'] ) return true;
62
 
63
  $ips = $this->load_ipn_ips();
64
  if ( $ips && in_array( $_SERVER['REMOTE_ADDR'], $ips ) ) return true;
65
 
66
  return false;
 
67
  }
68
 
69
  /**
@@ -72,10 +78,12 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
72
  * @version 1.0
73
  */
74
  public function load_ipn_ips() {
 
75
  $request = new WP_Http();
76
  $data = $request->request( 'http://www.zombaio.com/ip_list.txt' );
77
  $data = explode( '|', $data['body'] );
78
  return $data;
 
79
  }
80
 
81
  /**
@@ -85,6 +93,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
85
  * @version 1.1
86
  */
87
  public function IPN_is_valid_call() {
 
88
  $result = true;
89
 
90
  // Check password
@@ -100,6 +109,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
100
  $result = false;
101
 
102
  return $result;
 
103
  }
104
 
105
  /**
@@ -108,6 +118,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
108
  * @version 1.2
109
  */
110
  public function handle_call() {
 
111
  $outcome = 'FAILED';
112
 
113
  // ZOA Validation
@@ -174,7 +185,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
174
  $new_call[] = __( 'Failed to credit users account.', 'mycred' );
175
 
176
  }
177
-
178
  // Log Call
179
  if ( ! empty( $new_call ) )
180
  $this->log_call( $pending_post_id, $new_call );
@@ -189,6 +200,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
189
  die( 'OK' );
190
  else
191
  die( 'ERROR' );
 
192
  }
193
 
194
  /**
@@ -197,6 +209,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
197
  * @version 1.2
198
  */
199
  public function buy() {
 
200
  if ( ! isset( $this->prefs['site_id'] ) || empty( $this->prefs['site_id'] ) )
201
  wp_die( __( 'Please setup this gateway before attempting to make a purchase!', 'mycred' ) );
202
 
@@ -235,9 +248,8 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
235
  $this->get_page_redirect( $hidden_fields, $location );
236
  $this->get_page_footer();
237
 
238
- // Exit
239
- unset( $this );
240
  exit;
 
241
  }
242
 
243
  /**
@@ -246,8 +258,10 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
246
  * @version 1.0.1
247
  */
248
  function preferences() {
249
- $prefs = $this->prefs; ?>
250
 
 
 
 
251
  <label class="subheader" for="<?php echo $this->field_id( 'site_id' ); ?>"><?php _e( 'Site ID', 'mycred' ); ?></label>
252
  <ol>
253
  <li>
@@ -293,6 +307,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
293
  </li>
294
  </ol>
295
  <?php
 
296
  }
297
 
298
  /**
@@ -301,6 +316,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
301
  * @version 1.0
302
  */
303
  public function sanitise_preferences( $data ) {
 
304
  $new_data = array();
305
 
306
  $new_data['sandbox'] = ( isset( $data['sandbox'] ) ) ? 1 : 0;
@@ -312,6 +328,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
312
  $new_data['lang'] = sanitize_text_field( $data['lang'] );
313
 
314
  return $new_data;
 
315
  }
316
 
317
  /**
@@ -320,6 +337,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
320
  * @version 1.0
321
  */
322
  public function lang_dropdown( $name ) {
 
323
  $languages = array(
324
  'ZOM' => 'Let Zombaio Detect Language',
325
  'US' => 'English',
@@ -342,7 +360,9 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) {
342
  echo '>' . $cname . '</option>';
343
  }
344
  echo '</select>';
 
345
  }
 
346
  }
347
- }
348
  ?>
5
  * myCRED_Zombaio class
6
  * Zombaio Payment Gateway
7
  * @since 1.1
8
+ * @version 1.1.1
9
  */
10
+ if ( ! class_exists( 'myCRED_Zombaio' ) ) :
11
  class myCRED_Zombaio extends myCRED_Payment_Gateway {
12
 
13
  /**
14
  * Construct
15
  */
16
  function __construct( $gateway_prefs ) {
17
+
18
  parent::__construct( array(
19
  'id' => 'zombaio',
20
  'label' => 'Zombaio',
29
  'bypass_ipn' => 0
30
  )
31
  ), $gateway_prefs );
32
+
33
  }
34
 
35
  /**
38
  * @version 1.0
39
  */
40
  public function process() {
41
+
42
  if ( isset( $_GET['wp_zombaio_ips'] ) && $_GET['wp_zombaio_ips'] == 1 ) {
43
  $ips = $this->load_ipn_ips();
44
  if ( isset( $_GET['csv'] ) && $_GET['csv'] == 1 ) {
53
  exit;
54
  }
55
  $this->handle_call();
56
+
57
  }
58
 
59
  /**
62
  * @version 1.0
63
  */
64
  public function verify_ipn_ip() {
65
+
66
  if ( $this->prefs['bypass_ipn'] ) return true;
67
 
68
  $ips = $this->load_ipn_ips();
69
  if ( $ips && in_array( $_SERVER['REMOTE_ADDR'], $ips ) ) return true;
70
 
71
  return false;
72
+
73
  }
74
 
75
  /**
78
  * @version 1.0
79
  */
80
  public function load_ipn_ips() {
81
+
82
  $request = new WP_Http();
83
  $data = $request->request( 'http://www.zombaio.com/ip_list.txt' );
84
  $data = explode( '|', $data['body'] );
85
  return $data;
86
+
87
  }
88
 
89
  /**
93
  * @version 1.1
94
  */
95
  public function IPN_is_valid_call() {
96
+
97
  $result = true;
98
 
99
  // Check password
109
  $result = false;
110
 
111
  return $result;
112
+
113
  }
114
 
115
  /**
118
  * @version 1.2
119
  */
120
  public function handle_call() {
121
+
122
  $outcome = 'FAILED';
123
 
124
  // ZOA Validation
185
  $new_call[] = __( 'Failed to credit users account.', 'mycred' );
186
 
187
  }
188
+
189
  // Log Call
190
  if ( ! empty( $new_call ) )
191
  $this->log_call( $pending_post_id, $new_call );
200
  die( 'OK' );
201
  else
202
  die( 'ERROR' );
203
+
204
  }
205
 
206
  /**
209
  * @version 1.2
210
  */
211
  public function buy() {
212
+
213
  if ( ! isset( $this->prefs['site_id'] ) || empty( $this->prefs['site_id'] ) )
214
  wp_die( __( 'Please setup this gateway before attempting to make a purchase!', 'mycred' ) );
215
 
248
  $this->get_page_redirect( $hidden_fields, $location );
249
  $this->get_page_footer();
250
 
 
 
251
  exit;
252
+
253
  }
254
 
255
  /**
258
  * @version 1.0.1
259
  */
260
  function preferences() {
 
261
 
262
+ $prefs = $this->prefs;
263
+
264
+ ?>
265
  <label class="subheader" for="<?php echo $this->field_id( 'site_id' ); ?>"><?php _e( 'Site ID', 'mycred' ); ?></label>
266
  <ol>
267
  <li>
307
  </li>
308
  </ol>
309
  <?php
310
+
311
  }
312
 
313
  /**
316
  * @version 1.0
317
  */
318
  public function sanitise_preferences( $data ) {
319
+
320
  $new_data = array();
321
 
322
  $new_data['sandbox'] = ( isset( $data['sandbox'] ) ) ? 1 : 0;
328
  $new_data['lang'] = sanitize_text_field( $data['lang'] );
329
 
330
  return $new_data;
331
+
332
  }
333
 
334
  /**
337
  * @version 1.0
338
  */
339
  public function lang_dropdown( $name ) {
340
+
341
  $languages = array(
342
  'ZOM' => 'Let Zombaio Detect Language',
343
  'US' => 'English',
360
  echo '>' . $cname . '</option>';
361
  }
362
  echo '</select>';
363
+
364
  }
365
+
366
  }
367
+ endif;
368
  ?>
addons/buy-creds/myCRED-addon-buy-creds.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: buyCRED
4
  * Addon URI: http://mycred.me/add-ons/buycred/
5
- * Version: 1.4
6
  * Description: The <strong>buy</strong>CRED Add-on allows your users to buy points using PayPal, Skrill (Moneybookers), Zombaio or NETbilling. <strong>buy</strong>CRED can also let your users buy points for other members.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -34,7 +34,7 @@ do_action( 'mycred_buycred_load_gateways' );
34
  * @since 0.1
35
  * @version 1.4
36
  */
37
- if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
38
  class myCRED_buyCRED_Module extends myCRED_Module {
39
 
40
  public $purchase_log = '';
@@ -43,6 +43,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
43
  * Construct
44
  */
45
  function __construct( $type = 'mycred_default' ) {
 
46
  parent::__construct( 'myCRED_BuyCRED_Module', array(
47
  'module_name' => 'gateways',
48
  'option_id' => 'mycred_pref_buycreds',
@@ -68,6 +69,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
68
  $this->mycred_type = $this->core->buy_creds['type'];
69
 
70
  add_filter( 'mycred_parse_log_entry', array( $this, 'render_gift_tags' ), 10, 2 );
 
71
  }
72
 
73
  /**
@@ -75,6 +77,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
75
  * @version 1.0
76
  */
77
  public function load() {
 
78
  add_action( 'mycred_init', array( $this, 'module_init' ) );
79
  add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ) );
80
 
@@ -84,7 +87,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
84
  add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos+1 );
85
  add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
86
  add_filter( 'mycred_save_core_prefs', array( $this, 'sanitize_extra_settings' ), 90, 3 );
87
-
88
  add_action( 'mycred_edit_profile', array( $this, 'user_level_exchange_rates' ), 10, 2 );
89
  add_action( 'mycred_edit_profile_action', array( $this, 'save_user_override' ) );
90
  add_action( 'mycred_admin_notices', array( $this, 'update_profile_notice' ) );
@@ -93,6 +96,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
93
  add_action( 'manage_buycred_payment_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
94
  add_filter( 'bulk_actions-edit-buycred_payment', array( $this, 'bulk_actions' ) );
95
  add_filter( 'post_row_actions', array( $this, 'adjust_row_actions' ), 10, 2 );
 
96
  }
97
 
98
  /**
@@ -101,8 +105,10 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
101
  * @version 1.0
102
  */
103
  public function render_gift_tags( $content, $log ) {
 
104
  if ( substr( $log->ref, 0, 15 ) != 'buy_creds_with_' ) return $content;
105
  return $this->core->template_tags_user( $content, absint( $log->ref_id ) );
 
106
  }
107
 
108
  /**
@@ -174,7 +180,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
174
  // Check payment processing
175
  if ( isset( $_REQUEST['mycred_call'] ) || $gateway_id == 'zombaio' ) {
176
  $gateway->process();
177
-
178
  do_action( 'mycred_buycred_process', $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
179
  do_action( 'mycred_buycred_process_' . $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
180
  }
@@ -193,12 +199,13 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
193
 
194
  if ( $token && $amount ) {
195
  $gateway->buy();
196
-
197
  do_action( 'mycred_buycred_buy', $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
198
  do_action( 'mycred_buycred_buy_' . $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
199
  }
200
  }
201
  }
 
202
  }
203
 
204
  /**
@@ -236,6 +243,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
236
  $url = add_query_arg( array( 'credited' => 1 ), $url );
237
  wp_safe_redirect( $url );
238
  exit;
 
239
  }
240
 
241
  }
@@ -291,6 +299,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
291
  * @version 1.0
292
  */
293
  function adjust_column_headers( $columns ) {
 
294
  return array(
295
  'cb' => $columns['cb'],
296
  'comments' => $columns['comments'],
@@ -302,6 +311,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
302
  'gateway' => __( 'Gateway', 'mycred' ),
303
  'ctype' => __( 'Type', 'mycred' )
304
  );
 
305
  }
306
 
307
  /**
@@ -310,6 +320,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
310
  * @version 1.0
311
  */
312
  function adjust_column_content( $column_name, $post_id ) {
 
313
  switch ( $column_name ) {
314
  case 'author' :
315
 
@@ -356,6 +367,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
356
 
357
  break;
358
  }
 
359
  }
360
 
361
  /**
@@ -364,8 +376,10 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
364
  * @version 1.0
365
  */
366
  function bulk_actions( $actions ) {
 
367
  unset( $actions['edit'] );
368
  return $actions;
 
369
  }
370
 
371
  /**
@@ -374,6 +388,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
374
  * @version 1.0
375
  */
376
  function adjust_row_actions( $actions, $post ) {
 
377
  if ( $post->post_type == 'buycred_payment' ) {
378
  unset( $actions['inline hide-if-no-js'] );
379
 
@@ -392,6 +407,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
392
  }
393
 
394
  return $actions;
 
395
  }
396
 
397
  /**
@@ -400,17 +416,18 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
400
  * @version 1.1
401
  */
402
  function add_to_menu() {
 
403
  if ( isset( $this->core->buy_creds['custom_log'] ) && $this->core->buy_creds['custom_log'] ) {
404
  // Menu Slug
405
  $menu_slug = 'myCRED';
406
-
407
  $types = array( 'mycred_default' );
408
  if ( isset( $this->core->buy_creds['types'] ) )
409
  $types = $this->core->buy_creds['types'];
410
 
411
  $pages = array();
412
  foreach ( $types as $type ) {
413
-
414
  $mycred = mycred( $type );
415
 
416
  if ( $type != 'mycred_default' )
@@ -433,6 +450,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
433
 
434
  $this->purchase_log = $pages;
435
  }
 
436
  }
437
 
438
  /**
@@ -442,6 +460,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
442
  * @version 1.0.1
443
  */
444
  public function get() {
 
445
  $installed = array();
446
 
447
  // PayPal Standard
@@ -478,6 +497,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
478
 
479
  $this->installed = $installed;
480
  return $installed;
 
481
  }
482
 
483
  /**
@@ -486,8 +506,10 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
486
  * @version 1.1
487
  */
488
  public function settings_header() {
489
- $gateway_icons = plugins_url( 'assets/images/gateway-icons.png', myCRED_THIS ); ?>
490
 
 
 
 
491
  <!-- buyCRED Module -->
492
  <style type="text/css">
493
  #myCRED-wrap #accordion h4 .gate-icon { display: block; width: 48px; height: 48px; margin: 0 0 0 0; padding: 0; float: left; line-height: 48px; }
@@ -498,6 +520,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
498
  #myCRED-wrap #accordion h4 .gate-icon.monitor { background-position-x: 0; background-position-y: -48px; }
499
  </style>
500
  <?php
 
501
  }
502
 
503
  /**
@@ -506,6 +529,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
506
  * @version 1.1
507
  */
508
  public function screen_options() {
 
509
  if ( empty( $this->purchase_log ) ) return;
510
 
511
  $current_screen = get_current_screen();
@@ -517,6 +541,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
517
  'option' => 'mycred_payments_' . $current_screen->id
518
  );
519
  add_screen_option( 'per_page', $args );
 
520
  }
521
 
522
  /**
@@ -525,8 +550,10 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
525
  * @version 1.1
526
  */
527
  public function set_payments_per_page( $status, $option, $value ) {
 
528
  if ( substr( $option, 0, 16 ) == 'mycred_payments_' ) return $value;
529
  return $status;
 
530
  }
531
 
532
  /**
@@ -535,6 +562,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
535
  * @version 1.1
536
  */
537
  public function after_general_settings( $mycred ) {
 
538
  // Since we are both registering our own settings and want to hook into
539
  // the core settings, we need to define our "defaults" here.
540
  $defaults = array(
@@ -568,9 +596,8 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
568
 
569
  $thankyou_use = $buy_creds['thankyou']['use'];
570
  $cancelled_use = $buy_creds['cancelled']['use'];
571
-
572
- ?>
573
 
 
574
  <h4><div class="icon icon-active"></div><strong>buy</strong>CRED</h4>
575
  <div class="body" style="display:none;">
576
  <label class="subheader"><?php echo $this->core->template_tags_general( __( 'Minimum %plural%', 'mycred' ) ); ?></label>
@@ -620,6 +647,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
620
  <li class="option">
621
  <input type="radio" name="mycred_pref_core[buy_creds][thankyou][use]" <?php checked( $thankyou_use, 'page' ); ?> id="<?php echo $this->field_id( array( 'thankyou' => 'use' ) ); ?>-page" value="page" /> <label for="mycred-buy-creds-thankyou-use-page"><?php _e( 'Page', 'mycred' ); ?></label><br />
622
  <?php
 
623
  // Thank you page dropdown
624
  $thankyou_args = array(
625
  'name' => 'mycred_pref_core[buy_creds][thankyou][page]',
@@ -627,7 +655,10 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
627
  'selected' => $buy_creds['thankyou']['page'],
628
  'show_option_none' => __( 'Select', 'mycred' )
629
  );
630
- wp_dropdown_pages( $thankyou_args ); ?>
 
 
 
631
 
632
  </li>
633
  </ol>
@@ -641,6 +672,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
641
  <li class="option">
642
  <input type="radio" name="mycred_pref_core[buy_creds][cancelled][use]" <?php checked( $cancelled_use, 'page' ); ?> id="<?php echo $this->field_id( array( 'cancelled' => 'use' ) ); ?>-page" value="page" /> <label for="<?php echo $this->field_id( array( 'cancelled' => 'use' ) ); ?>-page"><?php _e( 'Page', 'mycred' ); ?></label><br />
643
  <?php
 
644
  // Cancelled page dropdown
645
  $cancelled_args = array(
646
  'name' => 'mycred_pref_core[buy_creds][cancelled][page]',
@@ -648,8 +680,9 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
648
  'selected' => $buy_creds['cancelled']['page'],
649
  'show_option_none' => __( 'Select', 'mycred' )
650
  );
651
- wp_dropdown_pages( $cancelled_args ); ?>
652
 
 
653
  </li>
654
  </ol>
655
  <label class="subheader"><?php _e( 'Purchase Log', 'mycred' ); ?></label>
@@ -677,6 +710,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
677
  </ol>
678
  </div>
679
  <?php
 
680
  }
681
 
682
  /**
@@ -713,6 +747,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
713
  delete_option( 'mycred_buycred_reset' );
714
 
715
  return $new_data;
 
716
  }
717
 
718
  /**
@@ -721,6 +756,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
721
  * @version 1.0
722
  */
723
  public function user_level_exchange_rates( $user, $type ) {
 
724
  $types = array( 'mycred_default' );
725
  if ( isset( $this->core->buy_creds['types'] ) )
726
  $types = $this->core->buy_creds['types'];
@@ -735,14 +771,14 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
735
  if ( ! isset( $gateway_prefs['exchange'][ $type ] ) || ( isset( $gateway_prefs['currency'] ) && $gateway_prefs['currency'] == '' ) ) continue;
736
  $usable[ $gateway_id ] = $gateway_prefs;
737
  $usable[ $gateway_id ]['title'] = $prefs['title'];
738
-
739
  if ( ! isset( $users_saved_overrides[ $gateway_id ] ) )
740
  $users_saved_overrides[ $gateway_id ] = '';
741
  }
742
  if ( empty( $usable ) ) return;
743
-
744
  $mycred = mycred( $type );
745
-
746
  ?>
747
 
748
  <h3><strong>buy</strong>CRED</h3>
@@ -781,9 +817,9 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
781
 
782
  $ctype = sanitize_key( $_GET['ctype'] );
783
  $user_id = absint( $_GET['user_id'] );
784
-
785
  $mycred = mycred( $ctype );
786
-
787
  if ( $mycred->edit_plugin_cap() && ! $mycred->exclude_user( $user_id ) ) {
788
 
789
  $new_rates = array();
@@ -831,20 +867,23 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
831
  * @version 1.2
832
  */
833
  public function admin_page() {
 
834
  // Security
835
  if ( ! $this->core->can_edit_creds() )
836
  wp_die( __( 'Access Denied', 'mycred' ) );
837
 
838
  $installed = $this->get();
839
- ?>
840
 
 
841
  <div class="wrap list" id="myCRED-wrap">
842
  <h2><?php echo sprintf( __( '%s Payment Gateways', 'mycred' ), '<strong>buy</strong>CRED' ); ?> <?php if ( isset( $this->core->buy_creds['custom_log'] ) && $this->core->buy_creds['custom_log'] == 1 ) : ?><a href="<?php echo admin_url( 'admin.php?page=myCRED_page_gateways_log' ); ?>" class="add-new-h2"><?php _e( 'Purchase Log', 'mycred' ); ?></a><?php endif; ?><a href="<?php echo $this->get_settings_url( 'buycred_module' ); ?>" class="add-new-h2"><?php _e( 'buyCRED Settings', 'mycred' ); ?></a></h2>
843
  <?php
 
844
  // Updated settings
845
  if ( isset( $_GET['settings-updated'] ) && $_GET['settings-updated'] == true )
846
- echo '<div class="updated settings-error"><p>' . __( 'Settings Updated', 'mycred' ) . '</p></div>'; ?>
847
 
 
848
  <form method="post" action="options.php">
849
  <?php settings_fields( $this->settings_name ); ?>
850
 
@@ -912,6 +951,7 @@ jQuery(function($) {
912
  </script>
913
  </div>
914
  <?php
 
915
  }
916
 
917
  /**
@@ -920,6 +960,7 @@ jQuery(function($) {
920
  * @version 1.3
921
  */
922
  public function purchase_log_page() {
 
923
  $type = substr( $_GET['page'], 25 );
924
 
925
  if ( $type == 'mycred_default' )
@@ -970,7 +1011,7 @@ jQuery(function($) {
970
 
971
  if ( isset( $_GET['start'] ) && isset( $_GET['end'] ) )
972
  $args['amount'] = array( 'start' => $_GET['start'], 'end' => $_GET['end'] );
973
-
974
  elseif ( isset( $_GET['num'] ) && isset( $_GET['compare'] ) )
975
  $args['amount'] = array( 'num' => $_GET['num'], 'compare' => $_GET['compare'] );
976
 
@@ -978,7 +1019,7 @@ jQuery(function($) {
978
  $args['amount'] = $_GET['amount'];
979
 
980
  $log = new myCRED_Query_Log( $args );
981
-
982
  $log->headers = apply_filters( 'mycred_buycred_log_columns', array(
983
  'column-gateway' => __( 'Gateway', 'mycred' ),
984
  'column-username' => __( 'Buyer', 'mycred' ),
@@ -986,8 +1027,9 @@ jQuery(function($) {
986
  'column-amount' => $mycred->plural(),
987
  'column-payed' => __( 'Payed', 'mycred' ),
988
  'column-tranid' => __( 'Transaction ID', 'mycred' )
989
- ) ); ?>
990
 
 
991
  <div class="wrap list" id="myCRED-wrap">
992
  <h2><?php _e( '<strong>buy</strong>CRED Purchase Log', 'mycred' ); ?> <a href="<?php echo admin_url( 'admin.php?page=myCRED_page_gateways' ); ?>" class="click-to-toggle add-new-h2"><?php _e( 'Gateway Settings', 'mycred' ); ?></a> <a href="<?php echo $this->get_settings_url( 'buycred_module' ); ?>" class="click-to-toggle add-new-h2"><?php _e( 'buyCRED Settings', 'mycred' ); ?></a></h2>
993
  <?php $log->filter_dates( admin_url( 'admin.php?page=myCRED_page_gateways_log_' . $type ) ); ?>
@@ -997,22 +1039,22 @@ jQuery(function($) {
997
  <?php
998
 
999
  if ( isset( $_GET['user_id'] ) && ! empty( $_GET['user_id'] ) )
1000
- echo '<input type="hidden" name="user_id" value="' . $_GET['user_id'] . '" />';
1001
 
1002
  if ( isset( $_GET['s'] ) && ! empty( $_GET['s'] ) )
1003
- echo '<input type="hidden" name="s" value="' . $_GET['s'] . '" />';
1004
 
1005
  if ( isset( $_GET['ref'] ) && ! empty( $_GET['ref'] ) )
1006
- echo '<input type="hidden" name="ref" value="' . $_GET['ref'] . '" />';
1007
 
1008
  if ( isset( $_GET['show'] ) && ! empty( $_GET['show'] ) )
1009
- echo '<input type="hidden" name="show" value="' . $_GET['show'] . '" />';
1010
 
1011
  if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
1012
- echo '<input type="hidden" name="order" value="' . $_GET['order'] . '" />';
1013
 
1014
  if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) )
1015
- echo '<input type="hidden" name="paged" value="' . $_GET['paged'] . '" />';
1016
 
1017
  $log->search(); ?>
1018
 
@@ -1021,30 +1063,36 @@ jQuery(function($) {
1021
 
1022
  <div class="tablenav top">
1023
  <?php
 
1024
  $log->filter_options( false, $references );
1025
  $log->navigation( 'top' );
1026
- ?>
1027
 
 
1028
  </div>
1029
  <table class="table wp-list-table widefat mycred-table log-entries" cellspacing="0">
1030
  <thead>
1031
  <tr>
1032
  <?php
 
1033
  foreach ( $log->headers as $col_id => $col_title )
1034
  echo '<th scope="col" id="' . str_replace( 'column-', '', $col_id ) . '" class="manage-column ' . $col_id . '">' . $col_title . '</th>';
 
1035
  ?>
1036
  </tr>
1037
  </thead>
1038
  <tfoot>
1039
  <tr>
1040
  <?php
 
1041
  foreach ( $log->headers as $col_id => $col_title )
1042
  echo '<th scope="col" class="manage-column ' . $col_id . '">' . $col_title . '</th>';
 
1043
  ?>
1044
  </tr>
1045
  </tfoot>
1046
  <tbody id="the-list">
1047
  <?php
 
1048
  // If we have results
1049
  if ( $log->have_entries() ) {
1050
 
@@ -1053,7 +1101,7 @@ jQuery(function($) {
1053
  $entry_data = '';
1054
  $alt = 0;
1055
 
1056
- // Loop results
1057
  foreach ( $log->results as $log_entry ) {
1058
 
1059
  // Highlight alternate rows
@@ -1081,9 +1129,9 @@ jQuery(function($) {
1081
  $style = ' style="color:orange;"';
1082
  else
1083
  $style = '';
1084
-
1085
  echo '<tr class="myCRED-log-row' . $class . '" id="mycred-log-entry-' . $log_entry->id . '">';
1086
-
1087
  // Run though columns
1088
  foreach ( $log->headers as $column_id => $column_name ) {
1089
 
@@ -1093,10 +1141,10 @@ jQuery(function($) {
1093
 
1094
  // Used gateway
1095
  case 'column-gateway' :
1096
-
1097
  $gateway = str_replace( array( '-', '_' ), ' ', $gateway_name );
1098
  echo ucwords( $gateway );
1099
-
1100
  break;
1101
 
1102
  // Username Column
@@ -1170,11 +1218,12 @@ jQuery(function($) {
1170
  else {
1171
  echo '<tr><td colspan="' . count( $log->headers ) . '" class="no-entries">' . __( 'No purchases found', 'mycred' ) . '</td></tr>';
1172
  }
1173
- ?>
1174
 
 
1175
  </tbody>
1176
  </table>
1177
  <div class="tablenav bottom">
 
1178
  <?php $log->table_nav( 'bottom', false ); ?>
1179
 
1180
  </div>
@@ -1183,6 +1232,7 @@ jQuery(function($) {
1183
  </form>
1184
  </div>
1185
  <?php
 
1186
  }
1187
 
1188
  /**
@@ -1191,6 +1241,7 @@ jQuery(function($) {
1191
  * @version 1.0
1192
  */
1193
  public function get_sales_data_from_log_data( $log_data = '' ) {
 
1194
  $defaults = array( '', '', '', '', '', '', '' );
1195
  $log_data = maybe_unserialize( $log_data );
1196
 
@@ -1208,6 +1259,7 @@ jQuery(function($) {
1208
  }
1209
 
1210
  return mycred_apply_defaults( $defaults, $found_data );
 
1211
  }
1212
 
1213
  /**
@@ -1216,6 +1268,7 @@ jQuery(function($) {
1216
  * @version 1.2
1217
  */
1218
  public function sanitize_settings( $data ) {
 
1219
  $data = apply_filters( 'mycred_buycred_save_prefs', $data );
1220
 
1221
  $installed = $this->get();
@@ -1226,6 +1279,7 @@ jQuery(function($) {
1226
 
1227
  unset( $installed );
1228
  return $data;
 
1229
  }
1230
 
1231
  /**
@@ -1235,6 +1289,7 @@ jQuery(function($) {
1235
  * @version 1.5
1236
  */
1237
  public function render_shortcode_basic( $atts, $title = '' ) {
 
1238
  // Make sure the add-on has been setup
1239
  if ( ! isset( $this->core->buy_creds ) ) {
1240
  if ( mycred_is_admin() )
@@ -1337,8 +1392,9 @@ jQuery(function($) {
1337
 
1338
  // Element to return
1339
  $element = '<a href="' . add_query_arg( $args, $url ) . '" class="' . implode( ' ', $classes ) . '" title="' . $title . '">' . $title . '</a>';
1340
- unset( $this );
1341
  return $element;
 
1342
  }
1343
 
1344
  /**
@@ -1348,6 +1404,7 @@ jQuery(function($) {
1348
  * @version 1.5
1349
  */
1350
  public function render_shortcode_form( $atts, $content = '' ) {
 
1351
  // Make sure the add-on has been setup
1352
  if ( ! isset( $this->core->buy_creds ) ) {
1353
  if ( mycred_is_admin() )
@@ -1558,6 +1615,7 @@ form.myCRED-buy-form > div label { display: block; }
1558
  </form>';
1559
 
1560
  return $form;
 
1561
  }
1562
 
1563
  /**
@@ -1566,6 +1624,7 @@ form.myCRED-buy-form > div label { display: block; }
1566
  * @version 1.0
1567
  */
1568
  public function render_shortcode_pending( $attr, $content = '' ) {
 
1569
  // Must be logged in
1570
  if ( ! is_user_logged_in() ) return $content;
1571
 
@@ -1578,7 +1637,7 @@ form.myCRED-buy-form > div label { display: block; }
1578
  $user_id = get_current_user_id();
1579
 
1580
  global $wpdb;
1581
-
1582
  $pending = $wpdb->get_results( $wpdb->prepare( "
1583
  SELECT *
1584
  FROM {$wpdb->posts} posts
@@ -1589,8 +1648,9 @@ form.myCRED-buy-form > div label { display: block; }
1589
  AND posts.post_status = %s
1590
  AND meta.meta_value = %s;", 'point_type', 'buycred_payment', $user_id, 'publish', $ctype ) );
1591
 
1592
- ob_start(); ?>
1593
 
 
1594
  <div id="pending-buycred-payments-<?php echo $ctype; ?>">
1595
  <table class="table">
1596
  <thead>
@@ -1606,15 +1666,18 @@ form.myCRED-buy-form > div label { display: block; }
1606
  <?php
1607
 
1608
  if ( ! empty( $pending ) ) {
 
1609
  foreach ( $pending as $post ) {
 
1610
  $cancel_url = add_query_arg( array( 'buycred_cancel' => $post->post_title ) );
1611
  $revisit_url = add_query_arg( array(
1612
  'mycred_buy' => get_post_meta( $post->ID, 'gateway', true ),
1613
  'amount' => get_post_meta( $post->ID, 'amount', true ),
1614
  'revisit' => $post->post_title,
1615
  'token' => wp_create_nonce( 'mycred-buy-creds' )
1616
- ) ); ?>
1617
 
 
1618
  <tr>
1619
  <td class="column-transaction-id"><?php echo $post->post_title; ?></td>
1620
  <td class="column-gateway"><?php echo $this->adjust_column_content( 'gateway', $post->ID ); ?></td>
@@ -1627,9 +1690,11 @@ form.myCRED-buy-form > div label { display: block; }
1627
  <?php
1628
 
1629
  }
 
1630
  }
1631
- else { ?>
1632
 
 
1633
  <tr>
1634
  <td colspan="5"><?php _e( 'No pending payments found', 'mycred' ); ?></td>
1635
  </tr>
@@ -1642,10 +1707,12 @@ form.myCRED-buy-form > div label { display: block; }
1642
  </table>
1643
  </div>
1644
  <?php
 
1645
  $output = ob_get_contents();
1646
  ob_end_clean();
1647
-
1648
  return $output;
 
1649
  }
1650
 
1651
  /**
@@ -1654,11 +1721,13 @@ form.myCRED-buy-form > div label { display: block; }
1654
  * @version 1.0
1655
  */
1656
  public function prep_shortcode_title( $string = '' ) {
 
1657
  $string = $this->core->allowed_tags( $string, false );
1658
  $string = trim( $string );
1659
  $title = $this->core->template_tags_general( $string );
1660
 
1661
  return $title;
 
1662
  }
1663
 
1664
  /**
@@ -1667,6 +1736,7 @@ form.myCRED-buy-form > div label { display: block; }
1667
  * @version 1.0
1668
  */
1669
  public function prep_shortcode_amount( $amount = '' ) {
 
1670
  $amount = $this->core->number( $amount );
1671
  $minimum = $this->core->number( $this->core->buy_creds['minimum'] );
1672
 
@@ -1674,6 +1744,7 @@ form.myCRED-buy-form > div label { display: block; }
1674
  return $minimum;
1675
  else
1676
  return $amount;
 
1677
  }
1678
 
1679
  /**
@@ -1682,6 +1753,7 @@ form.myCRED-buy-form > div label { display: block; }
1682
  * @version 1.0
1683
  */
1684
  public function prep_shortcode_gifting( $gift_to = '' ) {
 
1685
  if ( empty( $gift_to ) ) return $gift_to;
1686
 
1687
  if ( $this->core->buy_creds['gifting']['authors'] == 1 && $gift_to == 'author' && in_the_loop() )
@@ -1691,11 +1763,13 @@ form.myCRED-buy-form > div label { display: block; }
1691
  return abs( $gift_to );
1692
 
1693
  return false;
 
1694
  }
 
1695
  }
1696
 
1697
  $buy_creds = new myCRED_buyCRED_Module();
1698
  $buy_creds->load();
1699
- }
1700
 
 
1701
  ?>
2
  /**
3
  * Addon: buyCRED
4
  * Addon URI: http://mycred.me/add-ons/buycred/
5
+ * Version: 1.4.1
6
  * Description: The <strong>buy</strong>CRED Add-on allows your users to buy points using PayPal, Skrill (Moneybookers), Zombaio or NETbilling. <strong>buy</strong>CRED can also let your users buy points for other members.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
34
  * @since 0.1
35
  * @version 1.4
36
  */
37
+ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
38
  class myCRED_buyCRED_Module extends myCRED_Module {
39
 
40
  public $purchase_log = '';
43
  * Construct
44
  */
45
  function __construct( $type = 'mycred_default' ) {
46
+
47
  parent::__construct( 'myCRED_BuyCRED_Module', array(
48
  'module_name' => 'gateways',
49
  'option_id' => 'mycred_pref_buycreds',
69
  $this->mycred_type = $this->core->buy_creds['type'];
70
 
71
  add_filter( 'mycred_parse_log_entry', array( $this, 'render_gift_tags' ), 10, 2 );
72
+
73
  }
74
 
75
  /**
77
  * @version 1.0
78
  */
79
  public function load() {
80
+
81
  add_action( 'mycred_init', array( $this, 'module_init' ) );
82
  add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ) );
83
 
87
  add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos+1 );
88
  add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
89
  add_filter( 'mycred_save_core_prefs', array( $this, 'sanitize_extra_settings' ), 90, 3 );
90
+
91
  add_action( 'mycred_edit_profile', array( $this, 'user_level_exchange_rates' ), 10, 2 );
92
  add_action( 'mycred_edit_profile_action', array( $this, 'save_user_override' ) );
93
  add_action( 'mycred_admin_notices', array( $this, 'update_profile_notice' ) );
96
  add_action( 'manage_buycred_payment_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
97
  add_filter( 'bulk_actions-edit-buycred_payment', array( $this, 'bulk_actions' ) );
98
  add_filter( 'post_row_actions', array( $this, 'adjust_row_actions' ), 10, 2 );
99
+
100
  }
101
 
102
  /**
105
  * @version 1.0
106
  */
107
  public function render_gift_tags( $content, $log ) {
108
+
109
  if ( substr( $log->ref, 0, 15 ) != 'buy_creds_with_' ) return $content;
110
  return $this->core->template_tags_user( $content, absint( $log->ref_id ) );
111
+
112
  }
113
 
114
  /**
180
  // Check payment processing
181
  if ( isset( $_REQUEST['mycred_call'] ) || $gateway_id == 'zombaio' ) {
182
  $gateway->process();
183
+
184
  do_action( 'mycred_buycred_process', $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
185
  do_action( 'mycred_buycred_process_' . $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
186
  }
199
 
200
  if ( $token && $amount ) {
201
  $gateway->buy();
202
+
203
  do_action( 'mycred_buycred_buy', $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
204
  do_action( 'mycred_buycred_buy_' . $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
205
  }
206
  }
207
  }
208
+
209
  }
210
 
211
  /**
243
  $url = add_query_arg( array( 'credited' => 1 ), $url );
244
  wp_safe_redirect( $url );
245
  exit;
246
+
247
  }
248
 
249
  }
299
  * @version 1.0
300
  */
301
  function adjust_column_headers( $columns ) {
302
+
303
  return array(
304
  'cb' => $columns['cb'],
305
  'comments' => $columns['comments'],
311
  'gateway' => __( 'Gateway', 'mycred' ),
312
  'ctype' => __( 'Type', 'mycred' )
313
  );
314
+
315
  }
316
 
317
  /**
320
  * @version 1.0
321
  */
322
  function adjust_column_content( $column_name, $post_id ) {
323
+
324
  switch ( $column_name ) {
325
  case 'author' :
326
 
367
 
368
  break;
369
  }
370
+
371
  }
372
 
373
  /**
376
  * @version 1.0
377
  */
378
  function bulk_actions( $actions ) {
379
+
380
  unset( $actions['edit'] );
381
  return $actions;
382
+
383
  }
384
 
385
  /**
388
  * @version 1.0
389
  */
390
  function adjust_row_actions( $actions, $post ) {
391
+
392
  if ( $post->post_type == 'buycred_payment' ) {
393
  unset( $actions['inline hide-if-no-js'] );
394
 
407
  }
408
 
409
  return $actions;
410
+
411
  }
412
 
413
  /**
416
  * @version 1.1
417
  */
418
  function add_to_menu() {
419
+
420
  if ( isset( $this->core->buy_creds['custom_log'] ) && $this->core->buy_creds['custom_log'] ) {
421
  // Menu Slug
422
  $menu_slug = 'myCRED';
423
+
424
  $types = array( 'mycred_default' );
425
  if ( isset( $this->core->buy_creds['types'] ) )
426
  $types = $this->core->buy_creds['types'];
427
 
428
  $pages = array();
429
  foreach ( $types as $type ) {
430
+
431
  $mycred = mycred( $type );
432
 
433
  if ( $type != 'mycred_default' )
450
 
451
  $this->purchase_log = $pages;
452
  }
453
+
454
  }
455
 
456
  /**
460
  * @version 1.0.1
461
  */
462
  public function get() {
463
+
464
  $installed = array();
465
 
466
  // PayPal Standard
497
 
498
  $this->installed = $installed;
499
  return $installed;
500
+
501
  }
502
 
503
  /**
506
  * @version 1.1
507
  */
508
  public function settings_header() {
 
509
 
510
+ $gateway_icons = plugins_url( 'assets/images/gateway-icons.png', myCRED_THIS );
511
+
512
+ ?>
513
  <!-- buyCRED Module -->
514
  <style type="text/css">
515
  #myCRED-wrap #accordion h4 .gate-icon { display: block; width: 48px; height: 48px; margin: 0 0 0 0; padding: 0; float: left; line-height: 48px; }
520
  #myCRED-wrap #accordion h4 .gate-icon.monitor { background-position-x: 0; background-position-y: -48px; }
521
  </style>
522
  <?php
523
+
524
  }
525
 
526
  /**
529
  * @version 1.1
530
  */
531
  public function screen_options() {
532
+
533
  if ( empty( $this->purchase_log ) ) return;
534
 
535
  $current_screen = get_current_screen();
541
  'option' => 'mycred_payments_' . $current_screen->id
542
  );
543
  add_screen_option( 'per_page', $args );
544
+
545
  }
546
 
547
  /**
550
  * @version 1.1
551
  */
552
  public function set_payments_per_page( $status, $option, $value ) {
553
+
554
  if ( substr( $option, 0, 16 ) == 'mycred_payments_' ) return $value;
555
  return $status;
556
+
557
  }
558
 
559
  /**
562
  * @version 1.1
563
  */
564
  public function after_general_settings( $mycred ) {
565
+
566
  // Since we are both registering our own settings and want to hook into
567
  // the core settings, we need to define our "defaults" here.
568
  $defaults = array(
596
 
597
  $thankyou_use = $buy_creds['thankyou']['use'];
598
  $cancelled_use = $buy_creds['cancelled']['use'];
 
 
599
 
600
+ ?>
601
  <h4><div class="icon icon-active"></div><strong>buy</strong>CRED</h4>
602
  <div class="body" style="display:none;">
603
  <label class="subheader"><?php echo $this->core->template_tags_general( __( 'Minimum %plural%', 'mycred' ) ); ?></label>
647
  <li class="option">
648
  <input type="radio" name="mycred_pref_core[buy_creds][thankyou][use]" <?php checked( $thankyou_use, 'page' ); ?> id="<?php echo $this->field_id( array( 'thankyou' => 'use' ) ); ?>-page" value="page" /> <label for="mycred-buy-creds-thankyou-use-page"><?php _e( 'Page', 'mycred' ); ?></label><br />
649
  <?php
650
+
651
  // Thank you page dropdown
652
  $thankyou_args = array(
653
  'name' => 'mycred_pref_core[buy_creds][thankyou][page]',
655
  'selected' => $buy_creds['thankyou']['page'],
656
  'show_option_none' => __( 'Select', 'mycred' )
657
  );
658
+ wp_dropdown_pages( $thankyou_args );
659
+
660
+ ?>
661
+
662
 
663
  </li>
664
  </ol>
672
  <li class="option">
673
  <input type="radio" name="mycred_pref_core[buy_creds][cancelled][use]" <?php checked( $cancelled_use, 'page' ); ?> id="<?php echo $this->field_id( array( 'cancelled' => 'use' ) ); ?>-page" value="page" /> <label for="<?php echo $this->field_id( array( 'cancelled' => 'use' ) ); ?>-page"><?php _e( 'Page', 'mycred' ); ?></label><br />
674
  <?php
675
+
676
  // Cancelled page dropdown
677
  $cancelled_args = array(
678
  'name' => 'mycred_pref_core[buy_creds][cancelled][page]',
680
  'selected' => $buy_creds['cancelled']['page'],
681
  'show_option_none' => __( 'Select', 'mycred' )
682
  );
683
+ wp_dropdown_pages( $cancelled_args );
684
 
685
+ ?>
686
  </li>
687
  </ol>
688
  <label class="subheader"><?php _e( 'Purchase Log', 'mycred' ); ?></label>
710
  </ol>
711
  </div>
712
  <?php
713
+
714
  }
715
 
716
  /**
747
  delete_option( 'mycred_buycred_reset' );
748
 
749
  return $new_data;
750
+
751
  }
752
 
753
  /**
756
  * @version 1.0
757
  */
758
  public function user_level_exchange_rates( $user, $type ) {
759
+
760
  $types = array( 'mycred_default' );
761
  if ( isset( $this->core->buy_creds['types'] ) )
762
  $types = $this->core->buy_creds['types'];
771
  if ( ! isset( $gateway_prefs['exchange'][ $type ] ) || ( isset( $gateway_prefs['currency'] ) && $gateway_prefs['currency'] == '' ) ) continue;
772
  $usable[ $gateway_id ] = $gateway_prefs;
773
  $usable[ $gateway_id ]['title'] = $prefs['title'];
774
+
775
  if ( ! isset( $users_saved_overrides[ $gateway_id ] ) )
776
  $users_saved_overrides[ $gateway_id ] = '';
777
  }
778
  if ( empty( $usable ) ) return;
779
+
780
  $mycred = mycred( $type );
781
+
782
  ?>
783
 
784
  <h3><strong>buy</strong>CRED</h3>
817
 
818
  $ctype = sanitize_key( $_GET['ctype'] );
819
  $user_id = absint( $_GET['user_id'] );
820
+
821
  $mycred = mycred( $ctype );
822
+
823
  if ( $mycred->edit_plugin_cap() && ! $mycred->exclude_user( $user_id ) ) {
824
 
825
  $new_rates = array();
867
  * @version 1.2
868
  */
869
  public function admin_page() {
870
+
871
  // Security
872
  if ( ! $this->core->can_edit_creds() )
873
  wp_die( __( 'Access Denied', 'mycred' ) );
874
 
875
  $installed = $this->get();
 
876
 
877
+ ?>
878
  <div class="wrap list" id="myCRED-wrap">
879
  <h2><?php echo sprintf( __( '%s Payment Gateways', 'mycred' ), '<strong>buy</strong>CRED' ); ?> <?php if ( isset( $this->core->buy_creds['custom_log'] ) && $this->core->buy_creds['custom_log'] == 1 ) : ?><a href="<?php echo admin_url( 'admin.php?page=myCRED_page_gateways_log' ); ?>" class="add-new-h2"><?php _e( 'Purchase Log', 'mycred' ); ?></a><?php endif; ?><a href="<?php echo $this->get_settings_url( 'buycred_module' ); ?>" class="add-new-h2"><?php _e( 'buyCRED Settings', 'mycred' ); ?></a></h2>
880
  <?php
881
+
882
  // Updated settings
883
  if ( isset( $_GET['settings-updated'] ) && $_GET['settings-updated'] == true )
884
+ echo '<div class="updated settings-error"><p>' . __( 'Settings Updated', 'mycred' ) . '</p></div>';
885
 
886
+ ?>
887
  <form method="post" action="options.php">
888
  <?php settings_fields( $this->settings_name ); ?>
889
 
951
  </script>
952
  </div>
953
  <?php
954
+
955
  }
956
 
957
  /**
960
  * @version 1.3
961
  */
962
  public function purchase_log_page() {
963
+
964
  $type = substr( $_GET['page'], 25 );
965
 
966
  if ( $type == 'mycred_default' )
1011
 
1012
  if ( isset( $_GET['start'] ) && isset( $_GET['end'] ) )
1013
  $args['amount'] = array( 'start' => $_GET['start'], 'end' => $_GET['end'] );
1014
+
1015
  elseif ( isset( $_GET['num'] ) && isset( $_GET['compare'] ) )
1016
  $args['amount'] = array( 'num' => $_GET['num'], 'compare' => $_GET['compare'] );
1017
 
1019
  $args['amount'] = $_GET['amount'];
1020
 
1021
  $log = new myCRED_Query_Log( $args );
1022
+
1023
  $log->headers = apply_filters( 'mycred_buycred_log_columns', array(
1024
  'column-gateway' => __( 'Gateway', 'mycred' ),
1025
  'column-username' => __( 'Buyer', 'mycred' ),
1027
  'column-amount' => $mycred->plural(),
1028
  'column-payed' => __( 'Payed', 'mycred' ),
1029
  'column-tranid' => __( 'Transaction ID', 'mycred' )
1030
+ ) );
1031
 
1032
+ ?>
1033
  <div class="wrap list" id="myCRED-wrap">
1034
  <h2><?php _e( '<strong>buy</strong>CRED Purchase Log', 'mycred' ); ?> <a href="<?php echo admin_url( 'admin.php?page=myCRED_page_gateways' ); ?>" class="click-to-toggle add-new-h2"><?php _e( 'Gateway Settings', 'mycred' ); ?></a> <a href="<?php echo $this->get_settings_url( 'buycred_module' ); ?>" class="click-to-toggle add-new-h2"><?php _e( 'buyCRED Settings', 'mycred' ); ?></a></h2>
1035
  <?php $log->filter_dates( admin_url( 'admin.php?page=myCRED_page_gateways_log_' . $type ) ); ?>
1039
  <?php
1040
 
1041
  if ( isset( $_GET['user_id'] ) && ! empty( $_GET['user_id'] ) )
1042
+ echo '<input type="hidden" name="user_id" value="' . esc_attr( $_GET['user_id'] ) . '" />';
1043
 
1044
  if ( isset( $_GET['s'] ) && ! empty( $_GET['s'] ) )
1045
+ echo '<input type="hidden" name="s" value="' . esc_attr( $_GET['s'] ) . '" />';
1046
 
1047
  if ( isset( $_GET['ref'] ) && ! empty( $_GET['ref'] ) )
1048
+ echo '<input type="hidden" name="ref" value="' . esc_attr( $_GET['ref'] ) . '" />';
1049
 
1050
  if ( isset( $_GET['show'] ) && ! empty( $_GET['show'] ) )
1051
+ echo '<input type="hidden" name="show" value="' . esc_attr( $_GET['show'] ) . '" />';
1052
 
1053
  if ( isset( $_GET['order'] ) && ! empty( $_GET['order'] ) )
1054
+ echo '<input type="hidden" name="order" value="' . esc_attr( $_GET['order'] ) . '" />';
1055
 
1056
  if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) )
1057
+ echo '<input type="hidden" name="paged" value="' . esc_attr( $_GET['paged'] ) . '" />';
1058
 
1059
  $log->search(); ?>
1060
 
1063
 
1064
  <div class="tablenav top">
1065
  <?php
1066
+
1067
  $log->filter_options( false, $references );
1068
  $log->navigation( 'top' );
 
1069
 
1070
+ ?>
1071
  </div>
1072
  <table class="table wp-list-table widefat mycred-table log-entries" cellspacing="0">
1073
  <thead>
1074
  <tr>
1075
  <?php
1076
+
1077
  foreach ( $log->headers as $col_id => $col_title )
1078
  echo '<th scope="col" id="' . str_replace( 'column-', '', $col_id ) . '" class="manage-column ' . $col_id . '">' . $col_title . '</th>';
1079
+
1080
  ?>
1081
  </tr>
1082
  </thead>
1083
  <tfoot>
1084
  <tr>
1085
  <?php
1086
+
1087
  foreach ( $log->headers as $col_id => $col_title )
1088
  echo '<th scope="col" class="manage-column ' . $col_id . '">' . $col_title . '</th>';
1089
+
1090
  ?>
1091
  </tr>
1092
  </tfoot>
1093
  <tbody id="the-list">
1094
  <?php
1095
+
1096
  // If we have results
1097
  if ( $log->have_entries() ) {
1098
 
1101
  $entry_data = '';
1102
  $alt = 0;
1103
 
1104
+ // Loop results
1105
  foreach ( $log->results as $log_entry ) {
1106
 
1107
  // Highlight alternate rows
1129
  $style = ' style="color:orange;"';
1130
  else
1131
  $style = '';
1132
+
1133
  echo '<tr class="myCRED-log-row' . $class . '" id="mycred-log-entry-' . $log_entry->id . '">';
1134
+
1135
  // Run though columns
1136
  foreach ( $log->headers as $column_id => $column_name ) {
1137
 
1141
 
1142
  // Used gateway
1143
  case 'column-gateway' :
1144
+
1145
  $gateway = str_replace( array( '-', '_' ), ' ', $gateway_name );
1146
  echo ucwords( $gateway );
1147
+
1148
  break;
1149
 
1150
  // Username Column
1218
  else {
1219
  echo '<tr><td colspan="' . count( $log->headers ) . '" class="no-entries">' . __( 'No purchases found', 'mycred' ) . '</td></tr>';
1220
  }
 
1221
 
1222
+ ?>
1223
  </tbody>
1224
  </table>
1225
  <div class="tablenav bottom">
1226
+
1227
  <?php $log->table_nav( 'bottom', false ); ?>
1228
 
1229
  </div>
1232
  </form>
1233
  </div>
1234
  <?php
1235
+
1236
  }
1237
 
1238
  /**
1241
  * @version 1.0
1242
  */
1243
  public function get_sales_data_from_log_data( $log_data = '' ) {
1244
+
1245
  $defaults = array( '', '', '', '', '', '', '' );
1246
  $log_data = maybe_unserialize( $log_data );
1247
 
1259
  }
1260
 
1261
  return mycred_apply_defaults( $defaults, $found_data );
1262
+
1263
  }
1264
 
1265
  /**
1268
  * @version 1.2
1269
  */
1270
  public function sanitize_settings( $data ) {
1271
+
1272
  $data = apply_filters( 'mycred_buycred_save_prefs', $data );
1273
 
1274
  $installed = $this->get();
1279
 
1280
  unset( $installed );
1281
  return $data;
1282
+
1283
  }
1284
 
1285
  /**
1289
  * @version 1.5
1290
  */
1291
  public function render_shortcode_basic( $atts, $title = '' ) {
1292
+
1293
  // Make sure the add-on has been setup
1294
  if ( ! isset( $this->core->buy_creds ) ) {
1295
  if ( mycred_is_admin() )
1392
 
1393
  // Element to return
1394
  $element = '<a href="' . add_query_arg( $args, $url ) . '" class="' . implode( ' ', $classes ) . '" title="' . $title . '">' . $title . '</a>';
1395
+
1396
  return $element;
1397
+
1398
  }
1399
 
1400
  /**
1404
  * @version 1.5
1405
  */
1406
  public function render_shortcode_form( $atts, $content = '' ) {
1407
+
1408
  // Make sure the add-on has been setup
1409
  if ( ! isset( $this->core->buy_creds ) ) {
1410
  if ( mycred_is_admin() )
1615
  </form>';
1616
 
1617
  return $form;
1618
+
1619
  }
1620
 
1621
  /**
1624
  * @version 1.0
1625
  */
1626
  public function render_shortcode_pending( $attr, $content = '' ) {
1627
+
1628
  // Must be logged in
1629
  if ( ! is_user_logged_in() ) return $content;
1630
 
1637
  $user_id = get_current_user_id();
1638
 
1639
  global $wpdb;
1640
+
1641
  $pending = $wpdb->get_results( $wpdb->prepare( "
1642
  SELECT *
1643
  FROM {$wpdb->posts} posts
1648
  AND posts.post_status = %s
1649
  AND meta.meta_value = %s;", 'point_type', 'buycred_payment', $user_id, 'publish', $ctype ) );
1650
 
1651
+ ob_start();
1652
 
1653
+ ?>
1654
  <div id="pending-buycred-payments-<?php echo $ctype; ?>">
1655
  <table class="table">
1656
  <thead>
1666
  <?php
1667
 
1668
  if ( ! empty( $pending ) ) {
1669
+
1670
  foreach ( $pending as $post ) {
1671
+
1672
  $cancel_url = add_query_arg( array( 'buycred_cancel' => $post->post_title ) );
1673
  $revisit_url = add_query_arg( array(
1674
  'mycred_buy' => get_post_meta( $post->ID, 'gateway', true ),
1675
  'amount' => get_post_meta( $post->ID, 'amount', true ),
1676
  'revisit' => $post->post_title,
1677
  'token' => wp_create_nonce( 'mycred-buy-creds' )
1678
+ ) );
1679
 
1680
+ ?>
1681
  <tr>
1682
  <td class="column-transaction-id"><?php echo $post->post_title; ?></td>
1683
  <td class="column-gateway"><?php echo $this->adjust_column_content( 'gateway', $post->ID ); ?></td>
1690
  <?php
1691
 
1692
  }
1693
+
1694
  }
1695
+ else {
1696
 
1697
+ ?>
1698
  <tr>
1699
  <td colspan="5"><?php _e( 'No pending payments found', 'mycred' ); ?></td>
1700
  </tr>
1707
  </table>
1708
  </div>
1709
  <?php
1710
+
1711
  $output = ob_get_contents();
1712
  ob_end_clean();
1713
+
1714
  return $output;
1715
+
1716
  }
1717
 
1718
  /**
1721
  * @version 1.0
1722
  */
1723
  public function prep_shortcode_title( $string = '' ) {
1724
+
1725
  $string = $this->core->allowed_tags( $string, false );
1726
  $string = trim( $string );
1727
  $title = $this->core->template_tags_general( $string );
1728
 
1729
  return $title;
1730
+
1731
  }
1732
 
1733
  /**
1736
  * @version 1.0
1737
  */
1738
  public function prep_shortcode_amount( $amount = '' ) {
1739
+
1740
  $amount = $this->core->number( $amount );
1741
  $minimum = $this->core->number( $this->core->buy_creds['minimum'] );
1742
 
1744
  return $minimum;
1745
  else
1746
  return $amount;
1747
+
1748
  }
1749
 
1750
  /**
1753
  * @version 1.0
1754
  */
1755
  public function prep_shortcode_gifting( $gift_to = '' ) {
1756
+
1757
  if ( empty( $gift_to ) ) return $gift_to;
1758
 
1759
  if ( $this->core->buy_creds['gifting']['authors'] == 1 && $gift_to == 'author' && in_the_loop() )
1763
  return abs( $gift_to );
1764
 
1765
  return false;
1766
+
1767
  }
1768
+
1769
  }
1770
 
1771
  $buy_creds = new myCRED_buyCRED_Module();
1772
  $buy_creds->load();
 
1773
 
1774
+ endif;
1775
  ?>
addons/coupons/includes/mycred-coupon-functions.php CHANGED
@@ -92,10 +92,11 @@ endif;
92
  * to a given user. Requires you to provide a log entry template.
93
  * @action mycred_use_coupon
94
  * @since 1.4
95
- * @version 1.0
96
  */
97
  if ( ! function_exists( 'mycred_use_coupon' ) ) :
98
  function mycred_use_coupon( $code = '', $user_id = 0 ) {
 
99
  // Missing required information
100
  if ( empty( $code ) || $user_id === 0 ) return 'missing';
101
 
@@ -107,8 +108,9 @@ if ( ! function_exists( 'mycred_use_coupon' ) ) :
107
  return 'missing';
108
 
109
  // Check Expiration
 
110
  $expires = mycred_get_coupon_expire_date( $coupon->ID, true );
111
- if ( ! empty( $expires ) && $expires !== 0 && $expires < date_i18n( 'U' ) ) {
112
  wp_trash_post( $coupon->ID );
113
  return 'expired';
114
  }
@@ -124,7 +126,7 @@ if ( ! function_exists( 'mycred_use_coupon' ) ) :
124
  }
125
 
126
  $type = get_post_meta( $coupon->ID, 'type', true );
127
- if ( empty( $type ) )
128
  $type = 'mycred_default';
129
 
130
  $mycred = mycred( $type );
@@ -153,9 +155,8 @@ if ( ! function_exists( 'mycred_use_coupon' ) ) :
153
  $value = $mycred->number( $value );
154
 
155
  // Get Coupon log template
156
- $settings = mycred_get_option( 'mycred_pref_core' );
157
  if ( ! isset( $mycred->core['coupons']['log'] ) )
158
- $mycred->core['coupons']['log'] = __( 'Coupon redemption', 'mycred' );
159
 
160
  // Apply Coupon
161
  $mycred->add_creds(
@@ -179,6 +180,7 @@ if ( ! function_exists( 'mycred_use_coupon' ) ) :
179
  wp_trash_post( $coupon->ID );
180
 
181
  return $mycred->number( $users_balance+$value );
 
182
  }
183
  endif;
184
 
@@ -195,11 +197,11 @@ if ( ! function_exists( 'mycred_get_users_coupon_count' ) ) :
195
 
196
  // Count how many times a given user has used a given coupon
197
  $result = $wpdb->get_var( $wpdb->prepare( "
198
- SELECT COUNT( * )
199
- FROM {$mycred->log_table}
200
- WHERE ref = %s
201
- AND user_id = %d
202
- AND data = %s;", 'coupon', $user_id, $code ) );
203
 
204
  return apply_filters( 'mycred_get_users_coupon_count', $result, $code, $user_id );
205
  }
@@ -279,11 +281,11 @@ endif;
279
  * Get Coupons Minimum Balance Requirement
280
  * @filter mycred_coupon_min_balance
281
  * @since 1.4
282
- * @version 1.0
283
  */
284
  if ( ! function_exists( 'mycred_get_coupon_min_balance' ) ) :
285
  function mycred_get_coupon_min_balance( $post_id = 0 ) {
286
- return apply_filters( 'mycred_coupon_min_balance', get_post_meta( $post_id, 'min', true ), $post_id );
287
  }
288
  endif;
289
 
@@ -291,11 +293,11 @@ endif;
291
  * Get Coupons Maximum Balance Requirement
292
  * @filter mycred_coupon_max_balance
293
  * @since 1.4
294
- * @version 1.0
295
  */
296
  if ( ! function_exists( 'mycred_get_coupon_max_balance' ) ) :
297
  function mycred_get_coupon_max_balance( $post_id = 0 ) {
298
- return apply_filters( 'mycred_coupon_max_balance', get_post_meta( $post_id, 'max', true ), $post_id );
299
  }
300
  endif;
301
  ?>
92
  * to a given user. Requires you to provide a log entry template.
93
  * @action mycred_use_coupon
94
  * @since 1.4
95
+ * @version 1.0.2
96
  */
97
  if ( ! function_exists( 'mycred_use_coupon' ) ) :
98
  function mycred_use_coupon( $code = '', $user_id = 0 ) {
99
+
100
  // Missing required information
101
  if ( empty( $code ) || $user_id === 0 ) return 'missing';
102
 
108
  return 'missing';
109
 
110
  // Check Expiration
111
+ $now = current_time( 'timestamp' );
112
  $expires = mycred_get_coupon_expire_date( $coupon->ID, true );
113
+ if ( ! empty( $expires ) && $expires !== 0 && $expires <= $now ) {
114
  wp_trash_post( $coupon->ID );
115
  return 'expired';
116
  }
126
  }
127
 
128
  $type = get_post_meta( $coupon->ID, 'type', true );
129
+ if ( $type == '' )
130
  $type = 'mycred_default';
131
 
132
  $mycred = mycred( $type );
155
  $value = $mycred->number( $value );
156
 
157
  // Get Coupon log template
 
158
  if ( ! isset( $mycred->core['coupons']['log'] ) )
159
+ $mycred->core['coupons']['log'] = 'Coupon redemption';
160
 
161
  // Apply Coupon
162
  $mycred->add_creds(
180
  wp_trash_post( $coupon->ID );
181
 
182
  return $mycred->number( $users_balance+$value );
183
+
184
  }
185
  endif;
186
 
197
 
198
  // Count how many times a given user has used a given coupon
199
  $result = $wpdb->get_var( $wpdb->prepare( "
200
+ SELECT COUNT( * )
201
+ FROM {$mycred->log_table}
202
+ WHERE ref = %s
203
+ AND user_id = %d
204
+ AND data = %s;", 'coupon', $user_id, $code ) );
205
 
206
  return apply_filters( 'mycred_get_users_coupon_count', $result, $code, $user_id );
207
  }
281
  * Get Coupons Minimum Balance Requirement
282
  * @filter mycred_coupon_min_balance
283
  * @since 1.4
284
+ * @version 1.0.1
285
  */
286
  if ( ! function_exists( 'mycred_get_coupon_min_balance' ) ) :
287
  function mycred_get_coupon_min_balance( $post_id = 0 ) {
288
+ return apply_filters( 'mycred_coupon_min_balance', get_post_meta( $post_id, 'min_balance', true ), $post_id );
289
  }
290
  endif;
291
 
293
  * Get Coupons Maximum Balance Requirement
294
  * @filter mycred_coupon_max_balance
295
  * @since 1.4
296
+ * @version 1.0.1
297
  */
298
  if ( ! function_exists( 'mycred_get_coupon_max_balance' ) ) :
299
  function mycred_get_coupon_max_balance( $post_id = 0 ) {
300
+ return apply_filters( 'mycred_coupon_max_balance', get_post_meta( $post_id, 'max_balance', true ), $post_id );
301
  }
302
  endif;
303
  ?>
addons/gateway/carts/mycred-woocommerce.php CHANGED
@@ -23,6 +23,7 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
23
  * Constructor
24
  */
25
  public function __construct() {
 
26
  $this->id = 'mycred';
27
  $this->icon = '';
28
  $this->has_fields = false;
@@ -44,8 +45,9 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
44
  $this->init_settings();
45
 
46
  // Define user set variables
47
- $this->title = $this->get_option( 'title' );
48
- $this->description = $this->get_option( 'description' );
 
49
  if ( $this->use_exchange() )
50
  $exchange_rate = (float) $this->get_option( 'exchange_rate' );
51
  else
@@ -59,15 +61,16 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
59
  $this->log_template_refund = $this->get_option( 'log_template_refund' );
60
  $this->profit_sharing_refund_log = $this->get_option( 'profit_sharing_refund_log' );
61
 
62
- $this->show_total = $this->get_option( 'show_total' );
63
- $this->total_label = $this->get_option( 'total_label' );
64
 
65
- $this->profit_sharing_percent = $this->get_option( 'profit_sharing_percent' );
66
- $this->profit_sharing_log = $this->get_option( 'profit_sharing_log' );
67
 
68
  // Actions
69
  add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
70
  add_action( 'woocommerce_thankyou_mycred', array( $this, 'thankyou_page' ) );
 
71
  }
72
 
73
  /**
@@ -76,6 +79,7 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
76
  * @version 1.4
77
  */
78
  function init_form_fields() {
 
79
  // Fields
80
  $fields['enabled'] = array(
81
  'title' => __( 'Enable/Disable', 'mycred' ),
@@ -182,6 +186,7 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
182
  );
183
 
184
  $this->form_fields = apply_filters( 'mycred_woo_fields', $fields, $this );
 
185
  }
186
 
187
  /**
@@ -191,9 +196,11 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
191
  * @version 1.0
192
  */
193
  function use_exchange() {
 
194
  $currency = get_woocommerce_currency();
195
  if ( $currency == 'MYC' ) return false;
196
  return true;
 
197
  }
198
 
199
  /**
@@ -201,25 +208,30 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
201
  * @since 0.1
202
  * @version 1.0
203
  */
204
- public function admin_options() { ?>
205
 
 
206
  <h3><?php _e( 'myCRED Payment', 'mycred' ); ?></h3>
207
  <p><?php echo $this->mycred->template_tags_general( __( 'Allows users to pay using their myCRED %_singular% balance. Please note that users with insufficient funds and users who are not logged in will not see this payment gateway on the checkout page.', 'mycred' ) ); ?></p>
208
  <table class="form-table">
209
  <?php
 
210
  // Generate the HTML For the settings form.
211
- $this->generate_settings_html(); ?>
212
 
 
213
  </table>
214
  <?php
 
215
  }
216
 
217
  /**
218
  * Process Payment
219
  * @since 0.1
220
- * @version 1.4.1
221
  */
222
  function process_payment( $order_id ) {
 
223
  global $woocommerce;
224
  $cui = get_current_user_id();
225
 
@@ -236,10 +248,7 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
236
  }
237
 
238
  // Grab Order
239
- if ( function_exists( 'wc_get_order' ) )
240
- $order = wc_get_order( $order_id );
241
- else
242
- $order = new WC_Order( $order_id );
243
 
244
  // Cost
245
  if ( $this->use_exchange() )
@@ -314,18 +323,19 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
314
  'result' => 'success',
315
  'redirect' => $this->get_return_url( $order )
316
  );
 
317
  }
318
 
319
  /**
320
  * Process Refunds
321
  * @since 1.5.4
322
- * @version 1.0
323
  */
324
  public function process_refund( $order_id, $amount = null, $reason = '' ) {
325
 
326
  $order = wc_get_order( $order_id );
327
 
328
- if ( ! $order || ! $order->get_transaction_id() ) {
329
  return false;
330
  }
331
 
@@ -333,13 +343,13 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
333
  $amount = $order->order_total;
334
 
335
  if ( $this->use_exchange() )
336
- $refund = $this->exchange_rate * $amount;
337
  else
338
  $refund = $amount;
339
 
340
  $this->mycred->add_creds(
341
  'woocommerce_refund',
342
- $cui,
343
  $refund,
344
  $this->log_template_refund,
345
  $order_id,
@@ -347,8 +357,11 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
347
  $this->mycred_type
348
  );
349
 
 
 
350
  // Profit Sharing
351
  if ( $this->profit_sharing_percent > 0 ) {
 
352
  // Get Items
353
  $items = $order->get_items();
354
 
@@ -375,11 +388,14 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
375
  $this->mycred_type
376
  );
377
  }
 
378
  }
379
 
380
  // Let others play
381
  do_action( 'mycred_refunded_for_woo', $order, $amount, $reason, $this );
382
 
 
 
383
  }
384
 
385
  /**
@@ -388,8 +404,11 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
388
  * @version 1.0
389
  */
390
  function thankyou_page() {
 
391
  echo __( 'Your account has successfully been charged.', 'mycred' );
 
392
  }
 
393
  }
394
 
395
  }
23
  * Constructor
24
  */
25
  public function __construct() {
26
+
27
  $this->id = 'mycred';
28
  $this->icon = '';
29
  $this->has_fields = false;
45
  $this->init_settings();
46
 
47
  // Define user set variables
48
+ $this->title = $this->get_option( 'title' );
49
+ $this->description = $this->get_option( 'description' );
50
+
51
  if ( $this->use_exchange() )
52
  $exchange_rate = (float) $this->get_option( 'exchange_rate' );
53
  else
61
  $this->log_template_refund = $this->get_option( 'log_template_refund' );
62
  $this->profit_sharing_refund_log = $this->get_option( 'profit_sharing_refund_log' );
63
 
64
+ $this->show_total = $this->get_option( 'show_total' );
65
+ $this->total_label = $this->get_option( 'total_label' );
66
 
67
+ $this->profit_sharing_percent = $this->get_option( 'profit_sharing_percent' );
68
+ $this->profit_sharing_log = $this->get_option( 'profit_sharing_log' );
69
 
70
  // Actions
71
  add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
72
  add_action( 'woocommerce_thankyou_mycred', array( $this, 'thankyou_page' ) );
73
+
74
  }
75
 
76
  /**
79
  * @version 1.4
80
  */
81
  function init_form_fields() {
82
+
83
  // Fields
84
  $fields['enabled'] = array(
85
  'title' => __( 'Enable/Disable', 'mycred' ),
186
  );
187
 
188
  $this->form_fields = apply_filters( 'mycred_woo_fields', $fields, $this );
189
+
190
  }
191
 
192
  /**
196
  * @version 1.0
197
  */
198
  function use_exchange() {
199
+
200
  $currency = get_woocommerce_currency();
201
  if ( $currency == 'MYC' ) return false;
202
  return true;
203
+
204
  }
205
 
206
  /**
208
  * @since 0.1
209
  * @version 1.0
210
  */
211
+ public function admin_options() {
212
 
213
+ ?>
214
  <h3><?php _e( 'myCRED Payment', 'mycred' ); ?></h3>
215
  <p><?php echo $this->mycred->template_tags_general( __( 'Allows users to pay using their myCRED %_singular% balance. Please note that users with insufficient funds and users who are not logged in will not see this payment gateway on the checkout page.', 'mycred' ) ); ?></p>
216
  <table class="form-table">
217
  <?php
218
+
219
  // Generate the HTML For the settings form.
220
+ $this->generate_settings_html();
221
 
222
+ ?>
223
  </table>
224
  <?php
225
+
226
  }
227
 
228
  /**
229
  * Process Payment
230
  * @since 0.1
231
+ * @version 1.4.2
232
  */
233
  function process_payment( $order_id ) {
234
+
235
  global $woocommerce;
236
  $cui = get_current_user_id();
237
 
248
  }
249
 
250
  // Grab Order
251
+ $order = wc_get_order( $order_id );
 
 
 
252
 
253
  // Cost
254
  if ( $this->use_exchange() )
323
  'result' => 'success',
324
  'redirect' => $this->get_return_url( $order )
325
  );
326
+
327
  }
328
 
329
  /**
330
  * Process Refunds
331
  * @since 1.5.4
332
+ * @version 1.0.1
333
  */
334
  public function process_refund( $order_id, $amount = null, $reason = '' ) {
335
 
336
  $order = wc_get_order( $order_id );
337
 
338
+ if ( ! isset( $order->order_total ) ) {
339
  return false;
340
  }
341
 
343
  $amount = $order->order_total;
344
 
345
  if ( $this->use_exchange() )
346
+ $refund = $amount / $this->exchange_rate;
347
  else
348
  $refund = $amount;
349
 
350
  $this->mycred->add_creds(
351
  'woocommerce_refund',
352
+ $order->user_id,
353
  $refund,
354
  $this->log_template_refund,
355
  $order_id,
357
  $this->mycred_type
358
  );
359
 
360
+ $order->add_order_note( sprintf( _x( 'Refunded %s', '%s = Point amount formatted', 'mycred' ), $this->mycred->format_creds( $refund ) ) );
361
+
362
  // Profit Sharing
363
  if ( $this->profit_sharing_percent > 0 ) {
364
+
365
  // Get Items
366
  $items = $order->get_items();
367
 
388
  $this->mycred_type
389
  );
390
  }
391
+
392
  }
393
 
394
  // Let others play
395
  do_action( 'mycred_refunded_for_woo', $order, $amount, $reason, $this );
396
 
397
+ return true;
398
+
399
  }
400
 
401
  /**
404
  * @version 1.0
405
  */
406
  function thankyou_page() {
407
+
408
  echo __( 'Your account has successfully been charged.', 'mycred' );
409
+
410
  }
411
+
412
  }
413
 
414
  }
addons/gateway/event-booking/mycred-eventsmanager.php CHANGED
@@ -475,7 +475,7 @@ jQuery(function($) {
475
  url : '<?php echo $ajax_url; ?>',
476
  // Before we start
477
  beforeSend : function() {
478
- button.val( '<?php esc_attr_e( 'Processing...', 'mycred' ); ?>' );
479
  button.attr( 'disabled', 'disabled' );
480
  },
481
  // On Successful Communication
475
  url : '<?php echo $ajax_url; ?>',
476
  // Before we start
477
  beforeSend : function() {
478
+ button.val( '<?php echo esc_js( esc_attr__( 'Processing...', 'mycred' ) ); ?>' );
479
  button.attr( 'disabled', 'disabled' );
480
  },
481
  // On Successful Communication
addons/ranks/assets/js/management.js CHANGED
@@ -1,9 +1,9 @@
1
  /**
2
  * myCRED Management Scripts
3
  * @since 1.3
4
- * @version 1.1
5
  */
6
- jQuery(function($) {
7
 
8
  var mycred_action_delete_ranks = function( button, pointtype ) {
9
  var label = button.val();
@@ -90,4 +90,5 @@ jQuery(function($) {
90
  mycred_action_assign_ranks( $(this), $(this).data( 'type' ) );
91
  }
92
  });
93
- });
 
1
  /**
2
  * myCRED Management Scripts
3
  * @since 1.3
4
+ * @version 1.1.1
5
  */
6
+ (function($) {
7
 
8
  var mycred_action_delete_ranks = function( button, pointtype ) {
9
  var label = button.val();
90
  mycred_action_assign_ranks( $(this), $(this).data( 'type' ) );
91
  }
92
  });
93
+
94
+ })( jQuery );
addons/ranks/assets/js/tweaks.js CHANGED
@@ -1,9 +1,9 @@
1
  /**
2
  * myCRED Rank Tweaks
3
  * @since 1.6
4
- * @version 1.0
5
  */
6
- jQuery(function($) {
7
 
8
  // When the page has loaded, append the point type to the "Add New" button url
9
  // This will make sure the new rank is created for the correct point type.
@@ -15,4 +15,4 @@ jQuery(function($) {
15
 
16
  });
17
 
18
- });
1
  /**
2
  * myCRED Rank Tweaks
3
  * @since 1.6
4
+ * @version 1.0.1
5
  */
6
+ (function($) {
7
 
8
  // When the page has loaded, append the point type to the "Add New" button url
9
  // This will make sure the new rank is created for the correct point type.
15
 
16
  });
17
 
18
+ })( jQuery );
addons/ranks/myCRED-addon-ranks.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Ranks
4
  * Addon URI: http://mycred.me/add-ons/ranks/
5
- * Version: 1.4
6
  * Description: Award your users rank based on their current or total balance. Supports multiple point types.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -24,13 +24,14 @@ require_once myCRED_RANKS_DIR . 'includes/mycred-rank-shortcodes.php';
24
  * @since 1.1
25
  * @version 1.3
26
  */
27
- if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
28
  class myCRED_Ranks_Module extends myCRED_Module {
29
 
30
  /**
31
  * Construct
32
  */
33
  function __construct() {
 
34
  parent::__construct( 'myCRED_Ranks_Module', array(
35
  'module_name' => 'rank',
36
  'defaults' => array(
@@ -65,6 +66,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
65
  'page-attributes' => 0,
66
  'custom-fields' => 0
67
  );
 
68
  }
69
 
70
  /**
@@ -133,7 +135,6 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
133
  add_shortcode( 'mycred_list_ranks', 'mycred_render_rank_list' );
134
 
135
  // Admin Management items
136
-
137
  add_action( 'wp_ajax_mycred-calc-totals', array( $this, 'calculate_totals' ) );
138
 
139
  }
@@ -237,6 +238,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
237
  }
238
 
239
  return $parent;
 
240
  }
241
 
242
  /**
@@ -334,7 +336,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
334
  die( json_encode( array( 'status' => 'OK', 'rows' => $rows ) ) );
335
 
336
  }
337
-
338
  /**
339
  * Assign Ranks
340
  * @since 1.3.2
@@ -425,6 +427,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
425
  );
426
  wp_enqueue_script( 'mycred-rank-management' );
427
  }
 
428
  }
429
 
430
  /**
@@ -824,7 +827,6 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
824
  if ( $output == '' ) return;
825
 
826
  ?>
827
-
828
  <div class="bp-widget mycred-field">
829
  <table class="profile-fields">
830
  <tr id="mycred-users-rank">
@@ -994,6 +996,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
994
  * @version 1.0
995
  */
996
  public function adjust_row_actions( $actions, $post ) {
 
997
  if ( $post->post_type == 'mycred_rank' ) {
998
  unset( $actions['inline hide-if-no-js'] );
999
 
@@ -1002,6 +1005,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
1002
  }
1003
 
1004
  return $actions;
 
1005
  }
1006
 
1007
  /**
@@ -1042,6 +1046,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
1042
 
1043
  // Return
1044
  return $columns;
 
1045
  }
1046
 
1047
  /**
@@ -1111,11 +1116,13 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
1111
  * @version 1.0
1112
  */
1113
  public function enter_title_here( $title ) {
 
1114
  global $post_type;
1115
  if ( $post_type == 'mycred_rank' )
1116
  return __( 'Rank Title', 'mycred' );
1117
 
1118
  return $title;
 
1119
  }
1120
 
1121
  /**
@@ -1124,6 +1131,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
1124
  * @version 1.0
1125
  */
1126
  public function add_meta_boxes() {
 
1127
  add_meta_box(
1128
  'mycred_rank_settings',
1129
  __( 'Rank Settings', 'mycred' ),
@@ -1132,6 +1140,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
1132
  'normal',
1133
  'high'
1134
  );
 
1135
  }
1136
 
1137
  /**
@@ -1230,6 +1239,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
1230
  <div class="clear clearfix"></div>
1231
  </div>
1232
  <?php
 
1233
  }
1234
 
1235
  /**
@@ -1268,6 +1278,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
1268
 
1269
  if ( get_post_status( $post_id ) == 'publish' )
1270
  mycred_assign_ranks( $type );
 
1271
  }
1272
 
1273
  /**
@@ -1398,7 +1409,6 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
1398
  );
1399
 
1400
  ?>
1401
-
1402
  <label class="subheader" for="<?php echo $this->field_id( 'bb_location' ); ?>"><?php _e( 'Rank in BuddyPress', 'mycred' ); ?></label>
1403
  <ol id="myCRED-rank-bb-location">
1404
  <li>
@@ -1444,7 +1454,6 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
1444
  );
1445
 
1446
  ?>
1447
-
1448
  <label class="subheader" for="<?php echo $this->field_id( 'bp_location' ); ?>"><?php _e( 'Rank in bbPress', 'mycred' ); ?></label>
1449
  <ol id="myCRED-rank-bp-location">
1450
  <li>
@@ -1474,22 +1483,21 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
1474
  }
1475
 
1476
  ?>
1477
-
1478
-
1479
- <script type="text/javascript">//<![CDATA[
1480
  jQuery(function($){
1481
- $('input[name="<?php echo $this->field_name( 'base' ); ?>"]').change(function(){
 
1482
  var basis = $(this).val();
1483
  var button = $('#mycred-update-totals');
1484
  // Update
1485
  if ( basis != 'total' ) {
1486
- $("#calc-total").hide();
1487
  button.attr( 'disabled', 'disabled' );
1488
  button.removeClass( 'button-primary' );
1489
  button.addClass( 'button-seconday' );
1490
  }
1491
  else {
1492
- $("#calc-total").show();
1493
  button.removeAttr( 'disabled' );
1494
  button.removeClass( 'button-seconday' );
1495
  button.addClass( 'button-primary' );
@@ -1511,7 +1519,7 @@ jQuery(function($){
1511
  button.attr( 'disabled', 'disabled' );
1512
  button.removeClass( 'button-primary' );
1513
  button.addClass( 'button-seconday' );
1514
- button.val( '<?php esc_attr_e( 'Processing...', 'mycred' ); ?>' );
1515
  },
1516
  // On Successful Communication
1517
  success : function( data ) {
@@ -1525,18 +1533,19 @@ jQuery(function($){
1525
  button.removeAttr( 'disabled' );
1526
  button.removeClass( 'button-seconday' );
1527
  button.addClass( 'button-primary' );
1528
- button.val( '<?php esc_attr_e( 'Script Communication Error', 'mycred' ); ?>' );
1529
  }
1530
  });
1531
  };
1532
 
1533
- $('input#mycred-update-totals').click(function(){
1534
  mycred_calc( $(this), $(this).data( 'type' ) );
1535
  });
1536
- });//]]>
1537
  </script>
1538
  </div>
1539
  <?php
 
1540
  }
1541
 
1542
  /**
@@ -1545,6 +1554,7 @@ jQuery(function($){
1545
  * @version 1.3
1546
  */
1547
  public function sanitize_extra_settings( $new_data, $data, $core ) {
 
1548
  $new_data['rank']['support']['content'] = ( isset( $data['rank']['support']['content'] ) ) ? true : false;
1549
  $new_data['rank']['support']['excerpt'] = ( isset( $data['rank']['support']['excerpt'] ) ) ? true : false;
1550
  $new_data['rank']['support']['comments'] = ( isset( $data['rank']['support']['comments'] ) ) ? true : false;
@@ -1563,6 +1573,7 @@ jQuery(function($){
1563
  $new_data['rank']['bp_template'] = wp_kses( $data['rank']['bp_template'], $allowed_tags );
1564
 
1565
  return $new_data;
 
1566
  }
1567
 
1568
  /**
@@ -1603,10 +1614,13 @@ jQuery(function($){
1603
  </li>
1604
  </ol>
1605
  <?php
 
1606
  }
 
1607
  }
1608
 
1609
  $rank = new myCRED_Ranks_Module();
1610
  $rank->load();
1611
- }
 
1612
  ?>
2
  /**
3
  * Addon: Ranks
4
  * Addon URI: http://mycred.me/add-ons/ranks/
5
+ * Version: 1.4.1
6
  * Description: Award your users rank based on their current or total balance. Supports multiple point types.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
24
  * @since 1.1
25
  * @version 1.3
26
  */
27
+ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
28
  class myCRED_Ranks_Module extends myCRED_Module {
29
 
30
  /**
31
  * Construct
32
  */
33
  function __construct() {
34
+
35
  parent::__construct( 'myCRED_Ranks_Module', array(
36
  'module_name' => 'rank',
37
  'defaults' => array(
66
  'page-attributes' => 0,
67
  'custom-fields' => 0
68
  );
69
+
70
  }
71
 
72
  /**
135
  add_shortcode( 'mycred_list_ranks', 'mycred_render_rank_list' );
136
 
137
  // Admin Management items
 
138
  add_action( 'wp_ajax_mycred-calc-totals', array( $this, 'calculate_totals' ) );
139
 
140
  }
238
  }
239
 
240
  return $parent;
241
+
242
  }
243
 
244
  /**
336
  die( json_encode( array( 'status' => 'OK', 'rows' => $rows ) ) );
337
 
338
  }
339
+
340
  /**
341
  * Assign Ranks
342
  * @since 1.3.2
427
  );
428
  wp_enqueue_script( 'mycred-rank-management' );
429
  }
430
+
431
  }
432
 
433
  /**
827
  if ( $output == '' ) return;
828
 
829
  ?>
 
830
  <div class="bp-widget mycred-field">
831
  <table class="profile-fields">
832
  <tr id="mycred-users-rank">
996
  * @version 1.0
997
  */
998
  public function adjust_row_actions( $actions, $post ) {
999
+
1000
  if ( $post->post_type == 'mycred_rank' ) {
1001
  unset( $actions['inline hide-if-no-js'] );
1002
 
1005
  }
1006
 
1007
  return $actions;
1008
+
1009
  }
1010
 
1011
  /**
1046
 
1047
  // Return
1048
  return $columns;
1049
+
1050
  }
1051
 
1052
  /**
1116
  * @version 1.0
1117
  */
1118
  public function enter_title_here( $title ) {
1119
+
1120
  global $post_type;
1121
  if ( $post_type == 'mycred_rank' )
1122
  return __( 'Rank Title', 'mycred' );
1123
 
1124
  return $title;
1125
+
1126
  }
1127
 
1128
  /**
1131
  * @version 1.0
1132
  */
1133
  public function add_meta_boxes() {
1134
+
1135
  add_meta_box(
1136
  'mycred_rank_settings',
1137
  __( 'Rank Settings', 'mycred' ),
1140
  'normal',
1141
  'high'
1142
  );
1143
+
1144
  }
1145
 
1146
  /**
1239
  <div class="clear clearfix"></div>
1240
  </div>
1241
  <?php
1242
+
1243
  }
1244
 
1245
  /**
1278
 
1279
  if ( get_post_status( $post_id ) == 'publish' )
1280
  mycred_assign_ranks( $type );
1281
+
1282
  }
1283
 
1284
  /**
1409
  );
1410
 
1411
  ?>
 
1412
  <label class="subheader" for="<?php echo $this->field_id( 'bb_location' ); ?>"><?php _e( 'Rank in BuddyPress', 'mycred' ); ?></label>
1413
  <ol id="myCRED-rank-bb-location">
1414
  <li>
1454
  );
1455
 
1456
  ?>
 
1457
  <label class="subheader" for="<?php echo $this->field_id( 'bp_location' ); ?>"><?php _e( 'Rank in bbPress', 'mycred' ); ?></label>
1458
  <ol id="myCRED-rank-bp-location">
1459
  <li>
1483
  }
1484
 
1485
  ?>
1486
+ <script type="text/javascript">
 
 
1487
  jQuery(function($){
1488
+
1489
+ $( 'input[name="<?php echo $this->field_name( 'base' ); ?>"]' ).change(function(){
1490
  var basis = $(this).val();
1491
  var button = $('#mycred-update-totals');
1492
  // Update
1493
  if ( basis != 'total' ) {
1494
+ $( '#calc-total' ).hide();
1495
  button.attr( 'disabled', 'disabled' );
1496
  button.removeClass( 'button-primary' );
1497
  button.addClass( 'button-seconday' );
1498
  }
1499
  else {
1500
+ $( '#calc-total' ).show();
1501
  button.removeAttr( 'disabled' );
1502
  button.removeClass( 'button-seconday' );
1503
  button.addClass( 'button-primary' );
1519
  button.attr( 'disabled', 'disabled' );
1520
  button.removeClass( 'button-primary' );
1521
  button.addClass( 'button-seconday' );
1522
+ button.val( '<?php echo esc_js( esc_attr__( 'Processing...', 'mycred' ) ); ?>' );
1523
  },
1524
  // On Successful Communication
1525
  success : function( data ) {
1533
  button.removeAttr( 'disabled' );
1534
  button.removeClass( 'button-seconday' );
1535
  button.addClass( 'button-primary' );
1536
+ button.val( '<?php echo esc_js( esc_attr__( 'Script Communication Error', 'mycred' ) ); ?>' );
1537
  }
1538
  });
1539
  };
1540
 
1541
+ $( 'input#mycred-update-totals' ).click(function(){
1542
  mycred_calc( $(this), $(this).data( 'type' ) );
1543
  });
1544
+ });
1545
  </script>
1546
  </div>
1547
  <?php
1548
+
1549
  }
1550
 
1551
  /**
1554
  * @version 1.3
1555
  */
1556
  public function sanitize_extra_settings( $new_data, $data, $core ) {
1557
+
1558
  $new_data['rank']['support']['content'] = ( isset( $data['rank']['support']['content'] ) ) ? true : false;
1559
  $new_data['rank']['support']['excerpt'] = ( isset( $data['rank']['support']['excerpt'] ) ) ? true : false;
1560
  $new_data['rank']['support']['comments'] = ( isset( $data['rank']['support']['comments'] ) ) ? true : false;
1573
  $new_data['rank']['bp_template'] = wp_kses( $data['rank']['bp_template'], $allowed_tags );
1574
 
1575
  return $new_data;
1576
+
1577
  }
1578
 
1579
  /**
1614
  </li>
1615
  </ol>
1616
  <?php
1617
+
1618
  }
1619
+
1620
  }
1621
 
1622
  $rank = new myCRED_Ranks_Module();
1623
  $rank->load();
1624
+
1625
+ endif;
1626
  ?>
addons/sell-content/assets/js/buy-content.js CHANGED
@@ -1,11 +1,14 @@
1
  /**
2
  * myCRED Sell Content
3
  * @since 1.1
4
- * @version 1.0
5
  */
6
- jQuery(function($) {
 
7
  var mycred_buy_content = function( button, label ) {
 
8
  wrapper = button.parents( 'div.mycred-content-forsale' );
 
9
  $.ajax({
10
  type : "POST",
11
  data : {
@@ -17,30 +20,28 @@ jQuery(function($) {
17
  url : myCREDsell.ajaxurl,
18
  // Before we start
19
  beforeSend : function() {
 
20
  button.attr( 'value', myCREDsell.working );
21
  button.attr( 'disabled', 'disabled' );
22
  wrapper.slideUp();
 
23
  },
24
  // On Successful Communication
25
  success : function( data ) {
 
26
  wrapper.empty();
27
  wrapper.append( data );
28
  wrapper.slideDown();
29
- },
30
- // Error (sent to console)
31
- error : function( jqXHR, textStatus, errorThrown ) {
32
- button.attr( 'value', 'Upps!' );
33
- button.removeAttr( 'disabled' );
34
- wrapper.slideDown();
35
- // Debug - uncomment to use
36
- console.log( jqXHR );
37
- console.log( textStatus );
38
- console.log( errorThrown );
39
  }
40
  });
 
41
  };
42
 
43
- $('.mycred-sell-this-button').click(function(){
 
44
  mycred_buy_content( $(this), $(this).attr( 'value' ) );
 
45
  });
46
- });
 
1
  /**
2
  * myCRED Sell Content
3
  * @since 1.1
4
+ * @version 1.0.1
5
  */
6
+ (function($) {
7
+
8
  var mycred_buy_content = function( button, label ) {
9
+
10
  wrapper = button.parents( 'div.mycred-content-forsale' );
11
+
12
  $.ajax({
13
  type : "POST",
14
  data : {
20
  url : myCREDsell.ajaxurl,
21
  // Before we start
22
  beforeSend : function() {
23
+
24
  button.attr( 'value', myCREDsell.working );
25
  button.attr( 'disabled', 'disabled' );
26
  wrapper.slideUp();
27
+
28
  },
29
  // On Successful Communication
30
  success : function( data ) {
31
+
32
  wrapper.empty();
33
  wrapper.append( data );
34
  wrapper.slideDown();
35
+
 
 
 
 
 
 
 
 
 
36
  }
37
  });
38
+
39
  };
40
 
41
+ $( '.mycred-sell-this-button' ).click(function(){
42
+
43
  mycred_buy_content( $(this), $(this).attr( 'value' ) );
44
+
45
  });
46
+
47
+ })( jQuery );
addons/sell-content/myCRED-addon-sell-content.php CHANGED
@@ -693,12 +693,12 @@ input[name="myCRED_sell_content[button_label]"] { width: 100%; }
693
  </ul>
694
  </div>
695
  <div class="clear"></div>
696
- <script type="text/javascript">//<![CDATA[
697
  jQuery(function($) {
698
  $( '#mycred-sell-this' ).click(function(){
699
  $( '#mycred-sale-settings' ).toggle();
700
  });
701
- });//]]>
702
  </script>
703
  <?php
704
  }
693
  </ul>
694
  </div>
695
  <div class="clear"></div>
696
+ <script type="text/javascript">
697
  jQuery(function($) {
698
  $( '#mycred-sell-this' ).click(function(){
699
  $( '#mycred-sale-settings' ).toggle();
700
  });
701
+ });
702
  </script>
703
  <?php
704
  }
addons/stats/widgets/mycred-stats-widget-daily-gains.php CHANGED
@@ -98,7 +98,7 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Daily_Gains' ) ) :
98
  }
99
 
100
  $mycred = mycred( $type_id );
101
- $series[] = "{ label : '" . esc_attr( $mycred->plural() ) . "', fillColor : '" . str_replace( ',1)', ',0.3)', $this->colors[ $type_id ] ) . "', strokeColor : '" . $this->colors[ $type_id ] . "', pointColor : '" . $this->colors[ $type_id ] . "', data : [" . implode( ', ', $values ) . "] }";
102
 
103
  }
104
 
98
  }
99
 
100
  $mycred = mycred( $type_id );
101
+ $series[] = "{ label : '" . esc_js( $mycred->plural() ) . "', fillColor : '" . str_replace( ',1)', ',0.3)', $this->colors[ $type_id ] ) . "', strokeColor : '" . $this->colors[ $type_id ] . "', pointColor : '" . $this->colors[ $type_id ] . "', data : [" . implode( ', ', $values ) . "] }";
102
 
103
  }
104
 
addons/stats/widgets/mycred-stats-widget-daily-loses.php CHANGED
@@ -98,7 +98,7 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Daily_Loses' ) ) :
98
  }
99
 
100
  $mycred = mycred( $type_id );
101
- $series[] = "{ label : '" . esc_attr( $mycred->plural() ) . "', fillColor : '" . str_replace( ',1)', ',0.3)', $this->colors[ $type_id ] ) . "', strokeColor : '" . $this->colors[ $type_id ] . "', pointColor : '" . $this->colors[ $type_id ] . "', data : [" . implode( ', ', $values ) . "] }";
102
 
103
  }
104
 
98
  }
99
 
100
  $mycred = mycred( $type_id );
101
+ $series[] = "{ label : '" . esc_js( $mycred->plural() ) . "', fillColor : '" . str_replace( ',1)', ',0.3)', $this->colors[ $type_id ] ) . "', strokeColor : '" . $this->colors[ $type_id ] . "', pointColor : '" . $this->colors[ $type_id ] . "', data : [" . implode( ', ', $values ) . "] }";
102
 
103
  }
104
 
addons/transfer/assets/js/transfer.js CHANGED
@@ -6,72 +6,29 @@
6
  * @requires jQuery UI
7
  * @requires jQuery Autocomplete
8
  * @since 0.1
9
- * @version 1.4.1
10
  */
11
- jQuery(function($){
12
- // Transfer function
13
- var transfer_creds = function( submitted_form, label ) {
14
- $.ajax({
15
- type : "POST",
16
- data : {
17
- action : 'mycred-transfer-creds',
18
- form : submitted_form,
19
- token : myCRED.token
20
- },
21
- dataType : "JSON",
22
- url : myCRED.ajaxurl,
23
- // Before we start
24
- beforeSend : function() {
25
- // Prevent users from clicking multiple times
26
- $( '.mycred-click' ).val( myCRED.working );
27
- $( '.mycred-click' ).attr( 'disabled', 'disabled' );
28
- },
29
- // On Successful Communication
30
- success : function( data ) {
31
 
32
- $( '.mycred-click' ).val( label );
33
- $( '.mycred-click' ).removeAttr( 'disabled' );
34
 
35
- // Error
36
- if ( myCRED[ data ] !== undefined ) {
37
- alert( myCRED[ data ] );
38
-
39
- // If reload is set
40
- if ( myCRED.reload == '1' )
41
- location.reload();
42
- }
43
- // Completed
44
- else if ( data == 'ok' ) {
45
- alert( myCRED.completed );
46
 
47
- // If reload is set
48
- if ( myCRED.reload == '1' )
49
- location.reload();
50
- }
51
 
52
- // WP Nonce no longer valid / we have been logged out
53
- else if ( data == '-1' || data == 0 )
54
- location.reload();
55
 
56
- // All else
57
- else {
58
- $('.mycred-click').attr( 'value', data );
59
- if ( myCRED.reload == '1' )
60
- location.reload();
61
- }
62
- }
63
- });
64
- };
65
-
66
  // Autocomplete
67
  // @api http://api.jqueryui.com/autocomplete/
68
- var cache = {};
69
  $( 'input.mycred-autofill' ).autocomplete({
 
70
  minLength: 2,
71
  source: function( request, response ) {
 
72
  var term = request.term;
73
- if ( term in cache ) {
74
- response( cache[ term ] );
75
  return;
76
  }
77
 
@@ -80,37 +37,69 @@ jQuery(function($){
80
  token : myCRED.atoken,
81
  string : request
82
  };
 
83
  $.getJSON( myCRED.ajaxurl, send, function( data, status, xhr ) {
84
- cache[ term ] = data;
85
- // Debug - uncomment to use
86
- //console.log( data );
87
- //console.log( status );
88
  response( data );
89
  });
 
90
  },
91
  messages: {
92
  noResults: '',
93
  results: function() {}
94
  },
95
  appendTo : 'div.transfer-to'
 
96
  });
97
-
98
- // Attempt Transfer
99
- $( '.mycred-click' ).click(function(){
100
 
101
- // The form
102
- var the_form = $(this).parent().parent().parent();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
 
104
- // To:
105
- var receipient = $(this).parent().prev().children( 'div' ).children( 'input' ).val();
106
 
107
- // Amount:
108
- var creds = $(this).prev().children( 'input[name=mycred-transfer-amount]' ).val();
109
 
110
- // If elements are not emepty attempt transfer
111
- if ( receipient != '' && creds != '' ) {
112
- transfer_creds( the_form.serialize(), $(this).val() );
113
- }
 
114
 
115
  });
116
- });
 
6
  * @requires jQuery UI
7
  * @requires jQuery Autocomplete
8
  * @since 0.1
9
+ * @version 1.5
10
  */
11
+ (function($) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
+ var mycred_transfer_submit = '';
14
+ var mycred_transfer_cache = {};
15
 
16
+ $( 'input.mycred-click' ).on( 'click', function(){
 
 
 
 
 
 
 
 
 
 
17
 
18
+ mycred_transfer_submit = $(this);
 
 
 
19
 
20
+ });
 
 
21
 
 
 
 
 
 
 
 
 
 
 
22
  // Autocomplete
23
  // @api http://api.jqueryui.com/autocomplete/
 
24
  $( 'input.mycred-autofill' ).autocomplete({
25
+
26
  minLength: 2,
27
  source: function( request, response ) {
28
+
29
  var term = request.term;
30
+ if ( term in mycred_transfer_cache ) {
31
+ response( mycred_transfer_cache[ term ] );
32
  return;
33
  }
34
 
37
  token : myCRED.atoken,
38
  string : request
39
  };
40
+
41
  $.getJSON( myCRED.ajaxurl, send, function( data, status, xhr ) {
42
+ mycred_transfer_cache[ term ] = data;
 
 
 
43
  response( data );
44
  });
45
+
46
  },
47
  messages: {
48
  noResults: '',
49
  results: function() {}
50
  },
51
  appendTo : 'div.transfer-to'
52
+
53
  });
 
 
 
54
 
55
+ // Transfer form submissions
56
+ // @since 1.6.3
57
+ $( 'div.mycred-transfer-cred-wrapper' ).on( 'submit', 'form.mycred-transfer', function(e){
58
+
59
+ var buttonlabel = mycred_transfer_submit.val();
60
+
61
+ e.preventDefault();
62
+
63
+ $.ajax({
64
+ type : "POST",
65
+ data : {
66
+ action : 'mycred-transfer-creds',
67
+ form : $(this).serialize(),
68
+ token : myCRED.token
69
+ },
70
+ dataType : "JSON",
71
+ url : myCRED.ajaxurl,
72
+ beforeSend : function() {
73
+
74
+ mycred_transfer_submit.attr( 'disabled', 'disabled' ).val( myCRED.working );
75
+
76
+ },
77
+ success : function( data ) {
78
+
79
+ mycred_transfer_submit.removeAttr( 'disabled' ).val( buttonlabel );
80
+
81
+ // Error
82
+ if ( myCRED[ data ] !== undefined ) {
83
+
84
+ alert( myCRED[ data ] );
85
+
86
+ }
87
+
88
+ // Completed
89
+ else if ( data == 'ok' ) {
90
+
91
+ alert( myCRED.completed );
92
 
93
+ }
 
94
 
95
+ if ( myCRED.reload == '1' ) location.reload();
 
96
 
97
+ }
98
+
99
+ });
100
+
101
+ return false;
102
 
103
  });
104
+
105
+ })( jQuery );
addons/transfer/includes/mycred-transfer-shortcodes.php CHANGED
@@ -9,7 +9,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
9
  * @attribute $show_balance (bool) set to true to show current users balance, defaults to true
10
  * @attribute $show_limit (bool) set to true to show current users limit. If limit is set to 'none' and $show_limit is set to true nothing will be returned
11
  * @since 0.1
12
- * @version 1.4.3
13
  */
14
  if ( ! function_exists( 'mycred_transfer_render' ) ) :
15
  function mycred_transfer_render( $atts, $content = NULL ) {
@@ -136,7 +136,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
136
  $placeholder = sprintf( $placeholder, $pln );
137
 
138
  // Recipient Input field
139
- $to_input = '<input type="text" name="mycred-transfer-to" value="" class="mycred-autofill" placeholder="' . $placeholder . '" />';
140
 
141
  // If recipient is set, pre-populate it with the recipients details
142
  if ( $pay_to != '' ) {
@@ -216,7 +216,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
216
 
217
  ?>
218
  <div class="mycred-transfer-cred-wrapper"<?php if ( $ref != '' ) echo ' id="transfer-form-' . $ref . '"'; ?>>
219
- <form method="post" action="">
220
 
221
  <?php do_action( 'mycred_transfer_form_start', $atts, $pref ); ?>
222
 
@@ -229,10 +229,11 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
229
  </li>
230
  <li class="mycred-send-amount">
231
  <label><?php _e( 'Amount:', 'mycred' ); ?></label>
232
- <div class="transfer-amount"><?php echo $before; ?><input type="text" class="short" name="mycred-transfer-amount" value="<?php echo $mycred->zero(); ?>" size="8" /><?php echo $after . ' ' . $type_input; ?></div>
233
- <input type="button" class="button button-primary button-large mycred-click btn btn-primary btn-lg"<?php if( $pay_to == get_current_user_id() ) echo ' disabled="disabled"'; ?> value="<?php echo $button; ?>" />
234
  <?php if ( $charge_other ) : ?><input type="hidden" name="mycred-charge-other" value="<?php absint( $charge_from ); ?>" /><?php endif; ?>
235
- <?php if ( $ref != '' ) : ?><input type="hidden" name="mycred-transfer-ref" value="<?php echo $ref; ?>" /><?php endif; ?>
 
 
236
  <?php do_action( 'mycred_transfer_form_amount', $atts, $pref ); ?>
237
 
238
  </li>
9
  * @attribute $show_balance (bool) set to true to show current users balance, defaults to true
10
  * @attribute $show_limit (bool) set to true to show current users limit. If limit is set to 'none' and $show_limit is set to true nothing will be returned
11
  * @since 0.1
12
+ * @version 1.5
13
  */
14
  if ( ! function_exists( 'mycred_transfer_render' ) ) :
15
  function mycred_transfer_render( $atts, $content = NULL ) {
136
  $placeholder = sprintf( $placeholder, $pln );
137
 
138
  // Recipient Input field
139
+ $to_input = '<input type="text" name="mycred-transfer-to" value="" aria-required="true" class="mycred-autofill" placeholder="' . $placeholder . '" />';
140
 
141
  // If recipient is set, pre-populate it with the recipients details
142
  if ( $pay_to != '' ) {
216
 
217
  ?>
218
  <div class="mycred-transfer-cred-wrapper"<?php if ( $ref != '' ) echo ' id="transfer-form-' . $ref . '"'; ?>>
219
+ <form class="mycred-transfer" method="post" action="">
220
 
221
  <?php do_action( 'mycred_transfer_form_start', $atts, $pref ); ?>
222
 
229
  </li>
230
  <li class="mycred-send-amount">
231
  <label><?php _e( 'Amount:', 'mycred' ); ?></label>
232
+ <div class="transfer-amount"><?php echo $before; ?><input type="text" class="short" name="mycred-transfer-amount" value="<?php echo $mycred->zero(); ?>" size="8" aria-required="true" /><?php echo $after . ' ' . $type_input; ?></div>
 
233
  <?php if ( $charge_other ) : ?><input type="hidden" name="mycred-charge-other" value="<?php absint( $charge_from ); ?>" /><?php endif; ?>
234
+ <?php if ( $ref != '' ) : ?><input type="hidden" name="mycred-transfer-ref" value="<?php echo esc_attr( $ref ); ?>" /><?php endif; ?>
235
+ <input type="submit" class="button button-primary button-large mycred-click btn btn-primary btn-lg"<?php if ( $pay_to == get_current_user_id() ) echo ' disabled="disabled"'; ?> value="<?php echo esc_attr( $button ); ?>" />
236
+
237
  <?php do_action( 'mycred_transfer_form_amount', $atts, $pref ); ?>
238
 
239
  </li>
includes/mycred-about.php CHANGED
@@ -119,7 +119,7 @@ function mycred_about_page() {
119
  /**
120
  * myCRED Credit Page
121
  * @since 1.3.2
122
- * @version 1.0
123
  */
124
  function mycred_about_credit_page() {
125
  $name = mycred_label(); ?>
@@ -133,15 +133,15 @@ function mycred_about_credit_page() {
133
  <div class="feature-section col two-col">
134
  <div>
135
  <h4>Bug Finders</h4>
136
- <p>Users who have taken the time to help beta test version 1.6. A big thank you to all.</p>
137
  <ul>
138
- <li><a href="http://mycred.me/community/mitchcan/">Mitch</a></li>
139
- <li><a href="http://mycred.me/community/szklarek/">Tomek</a></li>
140
- <li><a href="http://mycred.me/community/mikebmac/">Michael</a></li>
141
- <li><a href="http://mycred.me/community/jomjom/">Giorgio</a></li>
142
- <li><a href="http://mycred.me/community/sebastien/">sebastien</a></li>
143
- <li><a href="http://mycred.me/community/craftymc/">Luke</a></li>
144
- <li><a href="http://mycred.me/community/adir25/">adir25</a></li>
145
  </ul>
146
  </div>
147
  <div class="last-feature">
@@ -153,8 +153,10 @@ function mycred_about_credit_page() {
153
  <li><a href="http://www.merovingi.com/">Gabriel S Merovingi</a> <em>( Swedish )</em></li>
154
  <li><a href="http://robertrowshan.com/">Robert Rowshan</a> <em>( Spanish )</em></li>
155
  <li>Skladchik <em>( Russian )</em></li>
156
- <lo>Guilherme <em>( Portuguese - Brazil )</em></li>
 
157
  </ul>
 
158
  </div>
159
  </div>
160
  <h3>Find out more</h3>
119
  /**
120
  * myCRED Credit Page
121
  * @since 1.3.2
122
+ * @version 1.6.3
123
  */
124
  function mycred_about_credit_page() {
125
  $name = mycred_label(); ?>
133
  <div class="feature-section col two-col">
134
  <div>
135
  <h4>Bug Finders</h4>
136
+ <p>Users who have taken the time to report bugs. A big thank you to all.</p>
137
  <ul>
138
+ <li><a href="http://mycred.me/community/innergy4every1/">innergy4every1</a></li>
139
+ <li><a href="http://mycred.me/community/kristoff/">Kristoff</a></li>
140
+ <li><a href="http://mycred.me/community/colson/">colson</a></li>
141
+ <li><a href="http://mycred.me/community/Martin/">Martin</a></li>
142
+ <li><a href="http://mycred.me/community/orousal/">Orousal</a></li>
143
+ <li><a href="http://mycred.me/community/joseph/">Joseph</a></li>
144
+ <li>Maria Campbell</li>
145
  </ul>
146
  </div>
147
  <div class="last-feature">
153
  <li><a href="http://www.merovingi.com/">Gabriel S Merovingi</a> <em>( Swedish )</em></li>
154
  <li><a href="http://robertrowshan.com/">Robert Rowshan</a> <em>( Spanish )</em></li>
155
  <li>Skladchik <em>( Russian )</em></li>
156
+ <li>Guilherme <em>( Portuguese - Brazil )</em></li>
157
+ <li><a href="http://coolwp.com">suifengtec</a> <em>( Chinese )</em></li>
158
  </ul>
159
+ <p>Remember that translators are rewarded with <strong>my</strong>CRED tokens for their help. Tokens can be used in the myCRED store to pay for premium add-ons.</p>
160
  </div>
161
  </div>
162
  <h3>Find out more</h3>
includes/mycred-admin.php CHANGED
@@ -621,7 +621,7 @@ div#edit-balance-page.wrap form#your-profile h3 { margin-top: 3em; }
621
  <script type="text/javascript">
622
  jQuery(function($) {
623
  $( 'a#mycred-exclude-this-user' ).click(function(){
624
- if ( ! confirm( '<?php esc_attr_e( 'Warning! Excluding this user will result in their balance being deleted along with any entries currently in your log! This can not be undone!', 'mycred' ); ?>' ) )
625
  return false;
626
  });
627
  });
621
  <script type="text/javascript">
622
  jQuery(function($) {
623
  $( 'a#mycred-exclude-this-user' ).click(function(){
624
+ if ( ! confirm( '<?php echo esc_js( esc_attr__( 'Warning! Excluding this user will result in their balance being deleted along with any entries currently in your log! This can not be undone!', 'mycred' ) ); ?>' ) )
625
  return false;
626
  });
627
  });
includes/mycred-functions.php CHANGED
@@ -667,7 +667,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
667
  * Used for settings that support HTML. These settings are
668
  * sanitized using wp_kses() where these tags are used.
669
  * @since 1.6
670
- * @version 1.0
671
  */
672
  public function allowed_html_tags() {
673
  return apply_filters( 'mycred_allowed_html_tags', array(
@@ -677,7 +677,8 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
677
  'div' => array( 'class' => array(), 'id' => array() ), 'span' => array( 'class' => array() ),
678
  'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array(),
679
  'h1' => array(), 'h2' => array(), 'h3' => array(), 'h4' => array(), 'h5' => array(), 'h6' => array(),
680
- 'img' => array( 'src' => array(), 'class' => array(), 'alt' => array() )
 
681
  ), $this );
682
  }
683
 
@@ -821,15 +822,22 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
821
  * @param $user_id (int), required user id
822
  * @returns boolean true on user should be excluded else false
823
  * @since 0.1
824
- * @version 1.0.2
825
  */
826
- public function exclude_user( $user_id = 0 ) {
 
 
 
 
827
  if ( apply_filters( 'mycred_exclude_user', false, $user_id, $this ) === true ) return true;
828
- if ( $this->exclude_plugin_editors() == true && $this->can_edit_plugin( $user_id ) == true ) return true;
829
- if ( $this->exclude_creds_editors() == true && $this->can_edit_creds( $user_id ) == true ) return true;
 
 
830
  if ( $this->in_exclude_list( $user_id ) ) return true;
831
 
832
  return false;
 
833
  }
834
 
835
  /**
@@ -2622,7 +2630,7 @@ endif;
2622
  /**
2623
  * Translate Limit Code
2624
  * @since 1.6
2625
- * @version 1.0
2626
  */
2627
  if ( ! function_exists( 'mycred_translate_limit_code' ) ) :
2628
  function mycred_translate_limit_code( $code = '' ) {
@@ -2632,6 +2640,7 @@ if ( ! function_exists( 'mycred_translate_limit_code' ) ) :
2632
  if ( $code == '0/x' || $code == 0 )
2633
  return __( 'No limit', 'mycred' );
2634
 
 
2635
  $check = explode( '/', $code );
2636
  if ( count( $check ) == 2 ) {
2637
  if ( $check[1] == 'd' )
@@ -2646,8 +2655,8 @@ if ( ! function_exists( 'mycred_translate_limit_code' ) ) :
2646
  $result = sprintf( _n( 'Maximum once', 'Maximum %d times', $check[0], 'mycred' ), $check[0] ) . ' ' . $per;
2647
 
2648
  }
2649
- else {
2650
- $result = sprintf( _n( 'Maximum once', 'Maximum %d times', $limit, 'mycred' ), $code );
2651
  }
2652
 
2653
  return apply_filters( 'mycred_translate_limit_code', $result, $code );
667
  * Used for settings that support HTML. These settings are
668
  * sanitized using wp_kses() where these tags are used.
669
  * @since 1.6
670
+ * @version 1.0.1
671
  */
672
  public function allowed_html_tags() {
673
  return apply_filters( 'mycred_allowed_html_tags', array(
677
  'div' => array( 'class' => array(), 'id' => array() ), 'span' => array( 'class' => array() ),
678
  'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array(),
679
  'h1' => array(), 'h2' => array(), 'h3' => array(), 'h4' => array(), 'h5' => array(), 'h6' => array(),
680
+ 'img' => array( 'src' => array(), 'class' => array(), 'alt' => array() ),
681
+ 'br' => array( 'class' => array() )
682
  ), $this );
683
  }
684
 
822
  * @param $user_id (int), required user id
823
  * @returns boolean true on user should be excluded else false
824
  * @since 0.1
825
+ * @version 1.0.3
826
  */
827
+ public function exclude_user( $user_id = NULL ) {
828
+
829
+ if ( $user_id === NULL )
830
+ $user_id = get_current_user_id();
831
+
832
  if ( apply_filters( 'mycred_exclude_user', false, $user_id, $this ) === true ) return true;
833
+
834
+ if ( $this->exclude_plugin_editors() && $this->can_edit_plugin( $user_id ) ) return true;
835
+ if ( $this->exclude_creds_editors() && $this->can_edit_creds( $user_id ) ) return true;
836
+
837
  if ( $this->in_exclude_list( $user_id ) ) return true;
838
 
839
  return false;
840
+
841
  }
842
 
843
  /**
2630
  /**
2631
  * Translate Limit Code
2632
  * @since 1.6
2633
+ * @version 1.0.1
2634
  */
2635
  if ( ! function_exists( 'mycred_translate_limit_code' ) ) :
2636
  function mycred_translate_limit_code( $code = '' ) {
2640
  if ( $code == '0/x' || $code == 0 )
2641
  return __( 'No limit', 'mycred' );
2642
 
2643
+ $result = '-';
2644
  $check = explode( '/', $code );
2645
  if ( count( $check ) == 2 ) {
2646
  if ( $check[1] == 'd' )
2655
  $result = sprintf( _n( 'Maximum once', 'Maximum %d times', $check[0], 'mycred' ), $check[0] ) . ' ' . $per;
2656
 
2657
  }
2658
+ elseif ( is_numeric( $code ) ) {
2659
+ $result = sprintf( _n( 'Maximum once', 'Maximum %d times', $code, 'mycred' ), $code );
2660
  }
2661
 
2662
  return apply_filters( 'mycred_translate_limit_code', $result, $code );
includes/mycred-log.php CHANGED
@@ -5,7 +5,7 @@ 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.4.2
9
  */
10
  if ( ! class_exists( 'myCRED_Query_Log' ) ) :
11
  class myCRED_Query_Log {
@@ -63,7 +63,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
63
  'cache' => '',
64
  'paged' => $this->get_pagenum()
65
  );
66
- $this->args = mycred_apply_defaults( $defaults, $args );
67
 
68
  // Difference between default and given args
69
  $this->diff = array_diff_assoc( $this->args, $defaults );
@@ -86,8 +86,13 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
86
 
87
  // User ID
88
  if ( $this->args['user_id'] !== NULL && $this->args['user_id'] != '' ) {
89
- $wheres[] = 'user_id = %d';
90
- $prep[] = abs( $this->args['user_id'] );
 
 
 
 
 
91
  }
92
 
93
  // Reference
@@ -316,6 +321,33 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
316
  $this->headers = $this->table_headers();
317
  }
318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
319
  /**
320
  * Has Entries
321
  * @returns true or false
@@ -522,7 +554,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
522
 
523
  // Filter by user
524
  if ( $this->core->can_edit_creds() && ! $is_profile && $this->num_rows > 0 ) {
525
- echo '<input type="text" class="form-control" name="user_id" id="myCRED-user-filter" size="12" placeholder="' . __( 'User ID', 'mycred' ) . '" value="' . ( ( isset( $_GET['user_id'] ) ) ? $_GET['user_id'] : '' ) . '" /> ';
526
  $show = true;
527
  }
528
 
5
  * Query Log
6
  * @see http://codex.mycred.me/classes/mycred_query_log/
7
  * @since 0.1
8
+ * @version 1.4.3
9
  */
10
  if ( ! class_exists( 'myCRED_Query_Log' ) ) :
11
  class myCRED_Query_Log {
63
  'cache' => '',
64
  'paged' => $this->get_pagenum()
65
  );
66
+ $this->args = wp_parse_args( $args, $defaults );
67
 
68
  // Difference between default and given args
69
  $this->diff = array_diff_assoc( $this->args, $defaults );
86
 
87
  // User ID
88
  if ( $this->args['user_id'] !== NULL && $this->args['user_id'] != '' ) {
89
+
90
+ $user_id = $this->get_user_id( $this->args['user_id'] );
91
+
92
+ if ( $user_id !== false ) {
93
+ $wheres[] = 'user_id = %d';
94
+ $prep[] = $user_id;
95
+ }
96
  }
97
 
98
  // Reference
321
  $this->headers = $this->table_headers();
322
  }
323
 
324
+ /**
325
+ * Get User ID
326
+ * Converts username, email or userlogin into an ID if possible
327
+ * @since 1.6.3
328
+ * @version 1.0
329
+ */
330
+ public function get_user_id( $string = '' ) {
331
+
332
+ if ( ! is_numeric( $string ) ) {
333
+
334
+ $user = get_user_by( 'login', $string );
335
+ if ( ! isset( $user->ID ) ) {
336
+ $user = get_user_by( 'email', $string );
337
+ if ( ! isset( $user->ID ) ) {
338
+ $user = get_user_by( 'slug', $string );
339
+ if ( ! isset( $user->ID ) )
340
+ return false;
341
+ }
342
+ }
343
+ return absint( $user->ID );
344
+
345
+ }
346
+
347
+ return $string;
348
+
349
+ }
350
+
351
  /**
352
  * Has Entries
353
  * @returns true or false
554
 
555
  // Filter by user
556
  if ( $this->core->can_edit_creds() && ! $is_profile && $this->num_rows > 0 ) {
557
+ echo '<input type="text" class="form-control" name="user" id="myCRED-user-filter" size="32" placeholder="' . __( 'User ID, Username, Email or Nicename', 'mycred' ) . '" value="' . ( ( isset( $_GET['user'] ) ) ? $_GET['user'] : '' ) . '" /> ';
558
  $show = true;
559
  }
560
 
includes/mycred-shortcodes.php CHANGED
@@ -1034,7 +1034,7 @@ endif;
1034
  * Renders a table of all the active hooks and how much a user can
1035
  * earn / lose from each hook.
1036
  * @since 1.6
1037
- * @version 1.0
1038
  */
1039
  if ( ! function_exists( 'mycred_render_shortcode_hook_table' ) ) :
1040
  function mycred_render_shortcode_hook_table( $atts ) {
@@ -1082,6 +1082,8 @@ if ( ! function_exists( 'mycred_render_shortcode_hook_table' ) ) :
1082
 
1083
  foreach ( $hook_prefs as $instance_id => $instance_prefs ) {
1084
 
 
 
1085
  if ( ( $gains == 1 && $instance_prefs['creds'] > 0 ) || ( $gains == 0 && $instance_prefs['creds'] < 0 ) )
1086
  $applicable[ $instance_id ] = $instance_prefs;
1087
 
1034
  * Renders a table of all the active hooks and how much a user can
1035
  * earn / lose from each hook.
1036
  * @since 1.6
1037
+ * @version 1.0.1
1038
  */
1039
  if ( ! function_exists( 'mycred_render_shortcode_hook_table' ) ) :
1040
  function mycred_render_shortcode_hook_table( $atts ) {
1082
 
1083
  foreach ( $hook_prefs as $instance_id => $instance_prefs ) {
1084
 
1085
+ if ( ! isset( $instance_prefs['creds'] ) ) continue;
1086
+
1087
  if ( ( $gains == 1 && $instance_prefs['creds'] > 0 ) || ( $gains == 0 && $instance_prefs['creds'] < 0 ) )
1088
  $applicable[ $instance_id ] = $instance_prefs;
1089
 
lang/mycred-en_US.mo CHANGED
Binary file
lang/mycred-en_US.po CHANGED
@@ -3,9 +3,10 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Feb 02 2015 11:27:01 GMT+0100 (CET)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
- "Language-Team: LANGUAGE <support@mycred.me>\n"
 
9
  "Language: English\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
11
  "MIME-Version: 1.0\n"
@@ -42,9 +43,9 @@ msgid "Awesome People"
42
  msgstr ""
43
 
44
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
45
- #: addon-badges.php:595 ../addons/gateway/event-booking/mycred-eventsmanager.php:
46
- #: 478 ../addons/ranks/myCRED-addon-ranks.php:421 ../addons/ranks/myCRED-addon-
47
- #: ranks.php:1514 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
48
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
49
  #: php:636
50
  msgid "Processing..."
@@ -102,15 +103,15 @@ msgid "Log entry updated"
102
  msgstr ""
103
 
104
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
105
- #: notices.php:808 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
106
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
107
  msgid "Setup"
108
  msgstr ""
109
 
110
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
111
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
112
- #: network.php:151 ../modules/mycred-module-settings.php:20 ../modules/mycred-
113
- #: module-settings.php:21 ../modules/mycred-module-settings.php:22
114
  msgid "Settings"
115
  msgstr ""
116
 
@@ -120,55 +121,51 @@ msgid ""
120
  "anything goes wrong!"
121
  msgstr ""
122
 
123
- #: ../abstracts/mycred-abstract-hook.php:74
124
- msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
125
- msgstr ""
126
-
127
  #: ../abstracts/mycred-abstract-hook.php:83
128
  msgid "This Hook has no settings"
129
  msgstr ""
130
 
131
- #: ../abstracts/mycred-abstract-hook.php:223 ../abstracts/mycred-abstract-hook.
132
- #: php:290 ../includes/mycred-functions.php:2633 ../modules/mycred-module-hooks.
133
- #: php:1649
134
  msgid "No limit"
135
  msgstr ""
136
 
137
- #: ../abstracts/mycred-abstract-hook.php:224
138
  msgid "/ Day"
139
  msgstr ""
140
 
141
- #: ../abstracts/mycred-abstract-hook.php:225
142
  msgid "/ Week"
143
  msgstr ""
144
 
145
- #: ../abstracts/mycred-abstract-hook.php:226
146
  msgid "/ Month"
147
  msgstr ""
148
 
149
- #: ../abstracts/mycred-abstract-hook.php:227
150
  msgid "in Total"
151
  msgstr ""
152
 
153
- #: ../abstracts/mycred-abstract-hook.php:291
154
  msgid "Once every 24 hours"
155
  msgstr ""
156
 
157
- #: ../abstracts/mycred-abstract-hook.php:292
158
  msgid "Once every 7 days"
159
  msgstr ""
160
 
161
- #: ../abstracts/mycred-abstract-hook.php:293
162
  msgid "Once per day (reset at midnight)"
163
  msgstr ""
164
 
165
- #: ../abstracts/mycred-abstract-hook.php:300 ../addons/banking/abstracts/mycred-
166
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:628 ..
167
- #: addons/buy-creds/myCRED-addon-buy-creds.php:649 ../addons/buy-
168
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
169
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
170
- #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
171
- #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:989
172
  msgid "Select"
173
  msgstr ""
174
 
@@ -176,30 +173,30 @@ msgstr ""
176
  msgid "myCRED_Module() Error. A Module ID is required!"
177
  msgstr ""
178
 
179
- #: ../abstracts/mycred-abstract-module.php:351 ../abstracts/mycred-abstract-
180
- #: module.php:359
181
  msgid "Surprise"
182
  msgstr ""
183
 
184
- #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:83
185
  msgid "click to close"
186
  msgstr ""
187
 
188
- #: ../abstracts/mycred-abstract-module.php:447 ../includes/mycred-network.php:84
189
  msgid "click to open"
190
  msgstr ""
191
 
192
- #: ../abstracts/mycred-abstract-module.php:480 ../addons/buy-creds/myCRED-addon-
193
- #: buy-creds.php:846
194
  msgid "Settings Updated"
195
  msgstr ""
196
 
197
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
198
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
199
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
200
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:373 ..
201
- #: addons/badges/myCRED-addon-badges.php:379 ../addons/badges/myCRED-addon-
202
- #: badges.php:385
203
  msgid "Badges"
204
  msgstr ""
205
 
@@ -208,273 +205,277 @@ msgstr ""
208
  msgid "Badges (%d)"
209
  msgstr ""
210
 
211
- #: ../addons/badges/myCRED-addon-badges.php:256
212
  #, php-format
213
  msgid "%d Users earned this badge."
214
  msgstr ""
215
 
216
- #: ../addons/badges/myCRED-addon-badges.php:260
217
  msgid "No users has yet earned this badge."
218
  msgstr ""
219
 
220
- #: ../addons/badges/myCRED-addon-badges.php:282
 
 
 
 
221
  #, php-format
222
  msgid "%s connections where removed."
223
  msgstr ""
224
 
225
- #: ../addons/badges/myCRED-addon-badges.php:374
226
  msgid "Badge"
227
  msgstr ""
228
 
229
- #: ../addons/badges/myCRED-addon-badges.php:375 ../addons/buy-creds/myCRED-addon-
230
- #: buy-creds.php:259 ../addons/buy-creds/myCRED-addon-buy-creds.php:260 ..
231
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
232
- #: addons/ranks/myCRED-addon-ranks.php:445
233
  msgid "Add New"
234
  msgstr ""
235
 
236
- #: ../addons/badges/myCRED-addon-badges.php:376
237
  msgid "Add New Badge"
238
  msgstr ""
239
 
240
- #: ../addons/badges/myCRED-addon-badges.php:377
241
  msgid "Edit Badge"
242
  msgstr ""
243
 
244
- #: ../addons/badges/myCRED-addon-badges.php:378
245
  msgid "New Badge"
246
  msgstr ""
247
 
248
- #: ../addons/badges/myCRED-addon-badges.php:380
249
  msgid "View Badge"
250
  msgstr ""
251
 
252
- #: ../addons/badges/myCRED-addon-badges.php:381
253
  msgid "Search Badge"
254
  msgstr ""
255
 
256
- #: ../addons/badges/myCRED-addon-badges.php:382
257
  msgid "No badges found"
258
  msgstr ""
259
 
260
- #: ../addons/badges/myCRED-addon-badges.php:383
261
  msgid "No badges found in Trash"
262
  msgstr ""
263
 
264
- #: ../addons/badges/myCRED-addon-badges.php:429 ../addons/badges/myCRED-addon-
265
- #: badges.php:531
266
  msgid "Badge Name"
267
  msgstr ""
268
 
269
- #: ../addons/badges/myCRED-addon-badges.php:430
270
  msgid "Badge Images"
271
  msgstr ""
272
 
273
- #: ../addons/badges/myCRED-addon-badges.php:431
274
  msgid "Requirements"
275
  msgstr ""
276
 
277
- #: ../addons/badges/myCRED-addon-badges.php:432 ../addons/ranks/myCRED-addon-
278
- #: ranks.php:1038 ../modules/mycred-module-settings.php:600
279
  msgid "Users"
280
  msgstr ""
281
 
282
- #: ../addons/badges/myCRED-addon-badges.php:471
283
  msgid "A user must have gained or lost:"
284
  msgstr ""
285
 
286
- #: ../addons/badges/myCRED-addon-badges.php:507 ../addons/badges/myCRED-addon-
287
- #: badges.php:510 ../addons/badges/myCRED-addon-badges.php:514 ..
288
- #: addons/badges/myCRED-addon-badges.php:515 ../addons/badges/myCRED-addon-
289
- #: badges.php:516
290
  msgid "Badge Updated."
291
  msgstr ""
292
 
293
- #: ../addons/badges/myCRED-addon-badges.php:512
294
  msgid "Badge Enabled"
295
  msgstr ""
296
 
297
- #: ../addons/badges/myCRED-addon-badges.php:513
298
  msgid "Badge Saved"
299
  msgstr ""
300
 
301
- #: ../addons/badges/myCRED-addon-badges.php:545
302
  msgid "Badge Setup"
303
  msgstr ""
304
 
305
- #: ../addons/badges/myCRED-addon-badges.php:572
306
  msgid "Assign Badge"
307
  msgstr ""
308
 
309
- #: ../addons/badges/myCRED-addon-badges.php:573
310
  msgid "Remove Connections"
311
  msgstr ""
312
 
313
- #: ../addons/badges/myCRED-addon-badges.php:628
314
  msgid "Time(s)"
315
  msgstr ""
316
 
317
- #: ../addons/badges/myCRED-addon-badges.php:629
318
  msgid "In total"
319
  msgstr ""
320
 
321
- #: ../addons/badges/myCRED-addon-badges.php:661 ../addons/badges/myCRED-addon-
322
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:821 ..
323
- #: addons/badges/myCRED-addon-badges.php:836
324
  msgid "Badge Image"
325
  msgstr ""
326
 
327
- #: ../addons/badges/myCRED-addon-badges.php:662 ../addons/badges/myCRED-addon-
328
- #: badges.php:662
329
  msgid "Set badge image"
330
  msgstr ""
331
 
332
- #: ../addons/badges/myCRED-addon-badges.php:672
333
  msgid "Default Image"
334
  msgstr ""
335
 
336
- #: ../addons/badges/myCRED-addon-badges.php:673 ../addons/badges/myCRED-addon-
337
- #: badges.php:731 ../addons/badges/myCRED-addon-badges.php:762 ..
338
- #: addons/badges/myCRED-addon-badges.php:821
339
  msgid "image url"
340
  msgstr ""
341
 
342
- #: ../addons/badges/myCRED-addon-badges.php:674 ../addons/badges/myCRED-addon-
343
- #: badges.php:732 ../addons/badges/myCRED-addon-badges.php:763 ..
344
- #: addons/badges/myCRED-addon-badges.php:821
345
  msgid "Add Image"
346
  msgstr ""
347
 
348
- #: ../addons/badges/myCRED-addon-badges.php:675
349
  msgid "Optional image to show when a user has not yet earned this badge."
350
  msgstr ""
351
 
352
- #: ../addons/badges/myCRED-addon-badges.php:694 ../addons/badges/myCRED-addon-
353
- #: badges.php:746
354
  #, php-format
355
  msgid "Level %d"
356
  msgstr ""
357
 
358
- #: ../addons/badges/myCRED-addon-badges.php:699 ../addons/badges/myCRED-addon-
359
- #: badges.php:751 ../addons/badges/myCRED-addon-badges.php:821
360
  msgid "for"
361
  msgstr ""
362
 
363
- #: ../addons/badges/myCRED-addon-badges.php:730
364
  msgid "Main Image"
365
  msgstr ""
366
 
367
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
368
- #: badges.php:821
369
  msgid "Leave empty if you do not want to assign a custom image for this level."
370
  msgstr ""
371
 
372
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
373
- #: badges.php:821
374
  msgid "Remove this level"
375
  msgstr ""
376
 
377
- #: ../addons/badges/myCRED-addon-badges.php:778
378
  msgid "Add Level"
379
  msgstr ""
380
 
381
- #: ../addons/badges/myCRED-addon-badges.php:821 ../addons/badges/myCRED-addon-
382
- #: badges.php:1141
383
  msgid "Level"
384
  msgstr ""
385
 
386
- #: ../addons/badges/myCRED-addon-badges.php:838
387
  msgid "Use as Badge"
388
  msgstr ""
389
 
390
- #: ../addons/badges/myCRED-addon-badges.php:960 ../addons/badges/myCRED-addon-
391
- #: badges.php:991 ../addons/gateway/carts/mycred-woocommerce.php:153 ..
392
- #: modules/mycred-module-buddypress.php:384
393
  msgid "Do not show"
394
  msgstr ""
395
 
396
- #: ../addons/badges/myCRED-addon-badges.php:961 ../modules/mycred-module-
397
- #: buddypress.php:385
398
  msgid "Include in Profile Header"
399
  msgstr ""
400
 
401
- #: ../addons/badges/myCRED-addon-badges.php:962 ../addons/ranks/myCRED-addon-
402
- #: ranks.php:1396 ../modules/mycred-module-buddypress.php:386
403
  msgid "Include under the \"Profile\" tab"
404
  msgstr ""
405
 
406
- #: ../addons/badges/myCRED-addon-badges.php:963 ../modules/mycred-module-
407
- #: buddypress.php:387
408
  msgid "Include under the \"Profile\" tab and Profile Header"
409
  msgstr ""
410
 
411
- #: ../addons/badges/myCRED-addon-badges.php:976 ../addons/badges/myCRED-addon-
412
- #: badges.php:1007
413
  msgid "Show all badges, including badges users have not yet earned."
414
  msgstr ""
415
 
416
- #: ../addons/badges/myCRED-addon-badges.php:992 ../addons/ranks/myCRED-addon-
417
- #: ranks.php:1442
418
  msgid "Include in Profile"
419
  msgstr ""
420
 
421
- #: ../addons/badges/myCRED-addon-badges.php:993
422
  msgid "Include in Forum Replies"
423
  msgstr ""
424
 
425
- #: ../addons/badges/myCRED-addon-badges.php:994
426
  msgid "Include in Profile and Forum Replies"
427
  msgstr ""
428
 
429
- #: ../addons/badges/myCRED-addon-badges.php:1098
430
  msgid "User Badges"
431
  msgstr ""
432
 
433
- #: ../addons/badges/myCRED-addon-badges.php:1103
434
  msgid ""
435
  "Here you can view the badges this user has earned and if needed, manually "
436
  "give or take away a badge from a user."
437
  msgstr ""
438
 
439
- #: ../addons/badges/myCRED-addon-badges.php:1112
440
  msgid "Not earned"
441
  msgstr ""
442
 
443
- #: ../addons/badges/myCRED-addon-badges.php:1118 ../addons/badges/myCRED-addon-
444
- #: badges.php:1155
445
  msgid "Earned"
446
  msgstr ""
447
 
448
- #: ../addons/badges/myCRED-addon-badges.php:1130
449
  msgid "No image"
450
  msgstr ""
451
 
452
- #: ../addons/badges/myCRED-addon-badges.php:1137
453
  msgid "Select a level"
454
  msgstr ""
455
 
456
- #: ../addons/badges/myCRED-addon-badges.php:1152 ../addons/email-notices/myCRED-
457
- #: addon-email-notices.php:807
458
  msgid "Status"
459
  msgstr ""
460
 
461
- #: ../addons/badges/myCRED-addon-badges.php:1169 ../addons/email-notices/myCRED-
462
- #: addon-email-notices.php:1290
463
  msgid "Save Changes"
464
  msgstr ""
465
 
466
- #: ../addons/badges/includes/mycred-badge-functions.php:65
467
  #, php-format
468
  msgid "Level %s"
469
  msgstr ""
470
 
471
- #: ../addons/badges/includes/mycred-badge-functions.php:68
472
  #, php-format
473
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
474
  msgid "%s for %s %s - %s"
475
  msgstr ""
476
 
477
- #: ../addons/badges/includes/mycred-badge-functions.php:68 ..
478
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
479
  #: coupons.php:469
480
  #, php-format
@@ -483,7 +484,7 @@ msgid_plural "%d times"
483
  msgstr[0] ""
484
  msgstr[1] ""
485
 
486
- #: ../addons/badges/includes/mycred-badge-functions.php:70
487
  #, php-format
488
  msgctxt "\"x points\" for \"reference\" in total"
489
  msgid "%s for %s in total"
@@ -525,11 +526,11 @@ msgid "Setup mass %_singular% payouts for your users."
525
  msgstr ""
526
 
527
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
528
- #: addon-buy-creds.php:836 ../addons/buy-creds/myCRED-addon-buy-creds.php:932 ..
529
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
530
- #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:292 ..
531
- #: modules/mycred-module-hooks.php:171 ../modules/mycred-module-log.php:326 ..
532
- #: modules/mycred-module-log.php:597 ../modules/mycred-module-settings.php:457
533
  msgid "Access Denied"
534
  msgstr ""
535
 
@@ -551,12 +552,12 @@ msgid "Warning! This add-on requires WP - Cron to work."
551
  msgstr ""
552
 
553
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
554
- #: addon-buy-creds.php:870 ../modules/mycred-module-hooks.php:196
555
  msgid "Enable"
556
  msgstr ""
557
 
558
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
559
- #: php:211
560
  msgid "Update Changes"
561
  msgstr ""
562
 
@@ -673,19 +674,19 @@ msgstr ""
673
 
674
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
675
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
676
- #: creds/myCRED-addon-buy-creds.php:606 ../addons/buy-creds/myCRED-addon-buy-
677
- #: creds.php:665 ../addons/coupons/myCRED-addon-coupons.php:502 ..
678
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
679
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
680
- #: addons/gateway/carts/mycred-woocommerce.php:105 ..
681
- #: addons/gateway/carts/mycred-woocommerce.php:177 ..
682
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
683
- #: hooks.php:891 ../modules/mycred-module-hooks.php:1847 ../modules/mycred-module-
684
- #: hooks.php:2187 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-
685
- #: badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-hook-
686
- #: events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.php:
687
- #: 209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-
688
- #: star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:304 ..
689
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
690
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
691
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
@@ -732,7 +733,7 @@ msgid "This user role is excluded from receiving interest on this balance."
732
  msgstr ""
733
 
734
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
735
- #: creds/myCRED-addon-buy-creds.php:758 ../addons/sell-content/myCRED-addon-sell-
736
  #: content.php:114
737
  msgid "Leave empty to use the default value."
738
  msgstr ""
@@ -745,15 +746,15 @@ msgstr ""
745
  msgid "Exclude from receiving interest"
746
  msgstr ""
747
 
748
- #: ../addons/banking/services/mycred-bank-service-interest.php:667
749
  msgid "Compound interest rate saved."
750
  msgstr ""
751
 
752
- #: ../addons/banking/services/mycred-bank-service-interest.php:669
753
  msgid "User excluded from receiving interest."
754
  msgstr ""
755
 
756
- #: ../addons/banking/services/mycred-bank-service-interest.php:671
757
  msgid "User included in receiving interest."
758
  msgstr ""
759
 
@@ -762,8 +763,8 @@ msgid "Daily %_plural%"
762
  msgstr ""
763
 
764
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
765
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:254 ..
766
- #: modules/mycred-module-log.php:255
767
  msgid "History"
768
  msgstr ""
769
 
@@ -780,17 +781,17 @@ msgid "Pay Users"
780
  msgstr ""
781
 
782
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
783
- #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
784
- #: creds.php:1523 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
785
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
786
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
787
- #: includes/mycred-shortcodes.php:971 ../includes/mycred-shortcodes.php:1112 ..
788
  #: plugins/mycred-hook-affiliatewp.php:256
789
  msgid "Amount"
790
  msgstr ""
791
 
792
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
793
- #: modules/mycred-module-hooks.php:2202
794
  msgid "Interval"
795
  msgstr ""
796
 
@@ -813,313 +814,313 @@ msgid ""
813
  "when it gets re-activated. Set cycles to zero to reset."
814
  msgstr ""
815
 
816
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
817
- #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
818
  msgid "Payment Gateways"
819
  msgstr ""
820
 
821
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:253
822
  msgctxt "Post Type General Name"
823
  msgid "Pending Payments"
824
  msgstr ""
825
 
826
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:254
827
  msgctxt "Post Type Singular Name"
828
  msgid "Pending Payment"
829
  msgstr ""
830
 
831
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:255 ../addons/buy-creds/myCRED-
832
- #: addon-buy-creds.php:257 ../addons/buy-creds/myCRED-addon-buy-creds.php:268
833
  msgid "Pending Payments"
834
  msgstr ""
835
 
836
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
837
  msgid "Edit Pending Payment"
838
  msgstr ""
839
 
840
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
841
- #: addon-buy-creds.php:1634
842
  msgid "No pending payments found"
843
  msgstr ""
844
 
845
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265
846
  msgid "Not found in Trash"
847
  msgstr ""
848
 
849
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
850
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1598
851
  msgid "Transaction ID"
852
  msgstr ""
853
 
854
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
855
- #: addon-buy-creds.php:984
856
  msgid "Buyer"
857
  msgstr ""
858
 
859
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
860
- #: addon-buy-creds.php:1601 ../addons/buy-creds/abstracts/mycred-abstract-payment-
861
  #: gateway.php:594
862
  msgid "Cost"
863
  msgstr ""
864
 
865
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
866
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ..
867
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
868
  msgid "Gateway"
869
  msgstr ""
870
 
871
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:303
872
  msgid "Type"
873
  msgstr ""
874
 
875
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:390
876
  msgid "Pay Out"
877
  msgstr ""
878
 
879
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
880
  msgid "buyCRED Purchase Log"
881
  msgstr ""
882
 
883
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:422 ../addons/buy-creds/myCRED-
884
- #: addon-buy-creds.php:655 ../addons/buy-creds/myCRED-addon-buy-creds.php:842
885
  msgid "Purchase Log"
886
  msgstr ""
887
 
888
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:515 ../addons/gateway/event-
889
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
890
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
891
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
892
  msgid "Payments"
893
  msgstr ""
894
 
895
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
896
  msgid "Please login to purchase %_plural%"
897
  msgstr ""
898
 
899
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
900
  #, php-format
901
  msgid "Gift purchase from %display_name%."
902
  msgstr ""
903
 
904
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:576 ../addons/ranks/myCRED-
905
- #: addon-ranks.php:1079
906
  msgid "Minimum %plural%"
907
  msgstr ""
908
 
909
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:580
910
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
911
  msgstr ""
912
 
913
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:585 ../addons/transfer/myCRED-
914
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
915
- #: module-settings.php:617
916
  msgid "Point Types"
917
  msgstr ""
918
 
919
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
920
  msgid "Select the point types that users can buy. You must select at least one!"
921
  msgstr ""
922
 
923
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:599
924
  msgid "Login Template"
925
  msgstr ""
926
 
927
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603
928
  msgid "Content to show when a user is not logged in."
929
  msgstr ""
930
 
931
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
932
  msgid "Thank You Page"
933
  msgstr ""
934
 
935
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:616 ../addons/buy-creds/myCRED-
936
- #: addon-buy-creds.php:637
937
  msgid "Custom URL"
938
  msgstr ""
939
 
940
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:621 ../addons/buy-creds/myCRED-
941
- #: addon-buy-creds.php:642
942
  msgid "Page"
943
  msgstr ""
944
 
945
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:634
946
  msgid "Cancellation Page"
947
  msgstr ""
948
 
949
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657
950
  msgid "Show seperate log for %_plural% purchases."
951
  msgstr ""
952
 
953
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
954
  msgid "Gifting"
955
  msgstr ""
956
 
957
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:661
958
  #, php-format
959
  msgid "Allow users to buy %_plural% for other users."
960
  msgstr ""
961
 
962
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:662
963
  #, php-format
964
  msgid "Allow users to buy %_plural% for content authors."
965
  msgstr ""
966
 
967
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670 ../modules/mycred-module-
968
- #: hooks.php:2912
969
  msgid "Available Shortcodes"
970
  msgstr ""
971
 
972
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:752
973
  #, php-format
974
  msgid "%s Exchange Rate"
975
  msgstr ""
976
 
977
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:766
978
  msgid "Save Exchange Rates"
979
  msgstr ""
980
 
981
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:821
982
  msgid "Exchange rate override saved"
983
  msgstr ""
984
 
985
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
986
  msgid "Payment completed"
987
  msgstr ""
988
 
989
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842
990
  #, php-format
991
  msgid "%s Payment Gateways"
992
  msgstr ""
993
 
994
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842 ../addons/buy-creds/myCRED-
995
- #: addon-buy-creds.php:992
996
  msgid "buyCRED Settings"
997
  msgstr ""
998
 
999
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:863
1000
  msgid "Test Mode"
1001
  msgstr ""
1002
 
1003
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:865
1004
  msgid "Enabled"
1005
  msgstr ""
1006
 
1007
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
1008
  msgid "Disabled"
1009
  msgstr ""
1010
 
1011
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:878
1012
  msgid "Sandbox Mode"
1013
  msgstr ""
1014
 
1015
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
1016
  msgid "Enable for test purchases."
1017
  msgstr ""
1018
 
1019
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:898 ../addons/gateway/event-
1020
- #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:692
1021
  msgid "Update Settings"
1022
  msgstr ""
1023
 
1024
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
1025
  msgid "More Gateways"
1026
  msgstr ""
1027
 
1028
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
1029
- #: 634
1030
  msgid "Date"
1031
  msgstr ""
1032
 
1033
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1034
  msgid "Payed"
1035
  msgstr ""
1036
 
1037
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
1038
  msgid "<strong>buy</strong>CRED Purchase Log"
1039
  msgstr ""
1040
 
1041
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
1042
  #: booking/mycred-eventespresso3.php:367
1043
  msgid "Gateway Settings"
1044
  msgstr ""
1045
 
1046
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171 ../addons/sell-
1047
  #: content/myCRED-addon-sell-content.php:1209
1048
  msgid "No purchases found"
1049
  msgstr ""
1050
 
1051
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1241 ../addons/buy-creds/myCRED-
1052
- #: addon-buy-creds.php:1354
1053
  msgid "This Add-on needs to setup before you can use this shortcode."
1054
  msgstr ""
1055
 
1056
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1260 ../addons/buy-creds/myCRED-
1057
- #: addon-buy-creds.php:1373
1058
  msgid "No gateways installed."
1059
  msgstr ""
1060
 
1061
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
1062
- #: addon-buy-creds.php:1374
1063
  msgid "Gateway does not exist."
1064
  msgstr ""
1065
 
1066
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1309
1067
  msgid "Yourself"
1068
  msgstr ""
1069
 
1070
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1375
1071
  msgid "No active gateways found."
1072
  msgstr ""
1073
 
1074
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
1075
  msgid "The selected gateway is not active."
1076
  msgstr ""
1077
 
1078
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1423
1079
  #, php-format
1080
  msgid "Buy with %gateway%"
1081
  msgstr ""
1082
 
1083
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1429 ../addons/sell-
1084
  #: content/myCRED-addon-sell-content.php:44
1085
  msgid "Buy Now"
1086
  msgstr ""
1087
 
1088
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1474
1089
  msgid "No users found"
1090
  msgstr ""
1091
 
1092
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1484
1093
  msgid "To"
1094
  msgstr ""
1095
 
1096
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1501
1097
  msgid "Select Amount"
1098
  msgstr ""
1099
 
1100
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1525
1101
  msgid "min."
1102
  msgstr ""
1103
 
1104
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1105
  msgid "Select Gateway"
1106
  msgstr ""
1107
 
1108
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1574 ../addons/gateway/event-
1109
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1110
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1111
  #: php:35
1112
  msgid "Pay Now"
1113
  msgstr ""
1114
 
1115
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../includes/mycred-install.
1116
- #: php:524
1117
  msgid "Cancel"
1118
  msgstr ""
1119
 
1120
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1602 ../addons/ranks/myCRED-
1121
- #: addon-ranks.php:1601 ../modules/mycred-module-log.php:375 ../modules/mycred-
1122
- #: module-settings.php:589 ../modules/mycred-module-settings.php:604
1123
  msgid "Actions"
1124
  msgstr ""
1125
 
@@ -1251,7 +1252,7 @@ msgid "Continue to %s"
1251
  msgstr ""
1252
 
1253
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1254
- #: addons/buy-creds/gateways/bitpay.php:226
1255
  msgid "Click here if you are not automatically redirected"
1256
  msgstr ""
1257
 
@@ -1311,294 +1312,293 @@ msgstr ""
1311
  msgid "December"
1312
  msgstr ""
1313
 
1314
- #: ../addons/buy-creds/gateways/bitpay.php:30 ../addons/buy-
1315
- #: creds/gateways/netbilling.php:35 ../addons/buy-creds/gateways/paypal-standard.
1316
- #: php:30 ../addons/buy-creds/gateways/skrill.php:35
1317
- msgid "Purchase of myCRED %plural%"
1318
- msgstr ""
1319
-
1320
- #: ../addons/buy-creds/gateways/bitpay.php:60 ../addons/buy-
1321
- #: creds/gateways/netbilling.php:88 ../addons/buy-creds/gateways/paypal-standard.
1322
- #: php:142 ../addons/buy-creds/gateways/skrill.php:119
1323
  #, php-format
1324
  msgid "Price mismatch. Expected: %s Received: %s"
1325
  msgstr ""
1326
 
1327
- #: ../addons/buy-creds/gateways/bitpay.php:66 ../addons/buy-creds/gateways/paypal-
1328
- #: standard.php:148 ../addons/buy-creds/gateways/skrill.php:125
1329
  #, php-format
1330
  msgid "Currency mismatch. Expected: %s Received: %s"
1331
  msgstr ""
1332
 
1333
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
1334
- #: creds/gateways/netbilling.php:94 ../addons/buy-creds/gateways/paypal-standard.
1335
- #: php:154 ../addons/buy-creds/gateways/skrill.php:131
1336
  #, php-format
1337
  msgid "Payment not completed. Received: %s"
1338
  msgstr ""
1339
 
1340
- #: ../addons/buy-creds/gateways/bitpay.php:83 ../addons/buy-
1341
- #: creds/gateways/netbilling.php:105 ../addons/buy-creds/gateways/paypal-standard.
1342
- #: php:165 ../addons/buy-creds/gateways/skrill.php:142 ../addons/buy-
1343
- #: creds/gateways/zombaio.php:174
1344
  msgid "Failed to credit users account."
1345
  msgstr ""
1346
 
1347
- #: ../addons/buy-creds/gateways/bitpay.php:160 ../addons/buy-
1348
- #: creds/gateways/netbilling.php:140 ../addons/buy-creds/gateways/paypal-standard.
1349
- #: php:202 ../addons/buy-creds/gateways/skrill.php:180 ../addons/buy-
1350
- #: creds/gateways/zombaio.php:201
1351
  msgid "Please setup this gateway before attempting to make a purchase!"
1352
  msgstr ""
1353
 
1354
- #: ../addons/buy-creds/gateways/bitpay.php:212 ../addons/buy-
1355
- #: creds/gateways/bitpay.php:221 ../addons/buy-creds/gateways/netbilling.php:193 .
1356
- #: ./addons/buy-creds/gateways/paypal-standard.php:262 ../addons/buy-
1357
- #: creds/gateways/skrill.php:274 ../addons/buy-creds/gateways/zombaio.php:234
1358
  msgid "Processing payment &hellip;"
1359
  msgstr ""
1360
 
1361
- #: ../addons/buy-creds/gateways/bitpay.php:214
1362
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1363
  msgstr ""
1364
 
1365
- #: ../addons/buy-creds/gateways/bitpay.php:215
1366
  msgid "Bitpay returned the following error message:"
1367
  msgstr ""
1368
 
1369
- #: ../addons/buy-creds/gateways/bitpay.php:246 ../includes/mycred-remote.php:551
1370
  msgid "API Key"
1371
  msgstr ""
1372
 
1373
- #: ../addons/buy-creds/gateways/bitpay.php:252 ../addons/buy-
1374
- #: creds/gateways/paypal-standard.php:279 ../addons/buy-creds/gateways/skrill.php:
1375
- #: 292
1376
  msgid "Currency"
1377
  msgstr ""
1378
 
1379
- #: ../addons/buy-creds/gateways/bitpay.php:255
1380
  msgid "Currency Code"
1381
  msgstr ""
1382
 
1383
- #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1384
- #: creds/gateways/netbilling.php:229 ../addons/buy-creds/gateways/paypal-standard.
1385
- #: php:291 ../addons/buy-creds/gateways/skrill.php:311
1386
  msgid "Item Name"
1387
  msgstr ""
1388
 
1389
- #: ../addons/buy-creds/gateways/bitpay.php:263 ../addons/buy-
1390
- #: creds/gateways/netbilling.php:233 ../addons/buy-creds/gateways/paypal-standard.
1391
- #: php:295 ../addons/buy-creds/gateways/skrill.php:315
1392
  msgid "Description of the item being purchased by the user."
1393
  msgstr ""
1394
 
1395
- #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1396
- #: creds/gateways/netbilling.php:236 ../addons/buy-creds/gateways/paypal-standard.
1397
- #: php:298 ../addons/buy-creds/gateways/skrill.php:318
1398
  msgid "Exchange Rates"
1399
  msgstr ""
1400
 
1401
- #: ../addons/buy-creds/gateways/bitpay.php:270
1402
  msgid "Transaction Speed"
1403
  msgstr ""
1404
 
1405
- #: ../addons/buy-creds/gateways/bitpay.php:277
1406
  msgid "High"
1407
  msgstr ""
1408
 
1409
- #: ../addons/buy-creds/gateways/bitpay.php:278
1410
  msgid "Medium"
1411
  msgstr ""
1412
 
1413
- #: ../addons/buy-creds/gateways/bitpay.php:279
1414
  msgid "Low"
1415
  msgstr ""
1416
 
1417
- #: ../addons/buy-creds/gateways/bitpay.php:292
1418
  msgid "Full Notifications"
1419
  msgstr ""
1420
 
1421
- #: ../addons/buy-creds/gateways/bitpay.php:299 ../includes/mycred-network.php:161
1422
  #: ../includes/mycred-network.php:175
1423
  msgid "No"
1424
  msgstr ""
1425
 
1426
- #: ../addons/buy-creds/gateways/bitpay.php:300 ../includes/mycred-network.php:157
1427
  #: ../includes/mycred-network.php:171
1428
  msgid "Yes"
1429
  msgstr ""
1430
 
1431
- #: ../addons/buy-creds/gateways/netbilling.php:210
1432
  msgid "Account ID"
1433
  msgstr ""
1434
 
1435
- #: ../addons/buy-creds/gateways/netbilling.php:216
1436
  msgid "Site Tag"
1437
  msgstr ""
1438
 
1439
- #: ../addons/buy-creds/gateways/netbilling.php:222
1440
  msgid "Order Integrity Key"
1441
  msgstr ""
1442
 
1443
- #: ../addons/buy-creds/gateways/netbilling.php:226
1444
  msgid "Found under Step 12 on the Fraud Defense page."
1445
  msgstr ""
1446
 
1447
- #: ../addons/buy-creds/gateways/netbilling.php:240
1448
  msgid "Postback CGI URL"
1449
  msgstr ""
1450
 
1451
- #: ../addons/buy-creds/gateways/netbilling.php:244
1452
  msgid ""
1453
  "For this gateway to work, you must login to your NETbilling account and edit "
1454
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1455
  "URL is set to the above address and \"Return method\" is set to POST."
1456
  msgstr ""
1457
 
1458
- #: ../addons/buy-creds/gateways/netbilling.php:288
1459
  msgid "Incorrect Credit Card number"
1460
  msgstr ""
1461
 
1462
- #: ../addons/buy-creds/gateways/netbilling.php:294
1463
  msgid "The credit card entered is past its expiration date."
1464
  msgstr ""
1465
 
1466
- #: ../addons/buy-creds/gateways/netbilling.php:297
1467
  msgid "The CVV2 number entered is not valid."
1468
  msgstr ""
1469
 
1470
- #: ../addons/buy-creds/gateways/netbilling.php:304
1471
  msgid "The bank routing number entered is not valid."
1472
  msgstr ""
1473
 
1474
- #: ../addons/buy-creds/gateways/netbilling.php:308
1475
  msgid "The bank account number entered is not valid."
1476
  msgstr ""
1477
 
1478
- #: ../addons/buy-creds/gateways/paypal-standard.php:188 ../addons/buy-
1479
- #: creds/gateways/skrill.php:166
1480
  msgid "Success"
1481
  msgstr ""
1482
 
1483
- #: ../addons/buy-creds/gateways/paypal-standard.php:189 ../addons/buy-
1484
- #: creds/gateways/skrill.php:167
1485
  msgid "Thank you for your purchase"
1486
  msgstr ""
1487
 
1488
- #: ../addons/buy-creds/gateways/paypal-standard.php:257 ../addons/buy-
1489
- #: creds/gateways/skrill.php:221
1490
- msgid "Return to "
 
1491
  msgstr ""
1492
 
1493
- #: ../addons/buy-creds/gateways/paypal-standard.php:285
1494
  msgid "Account Email"
1495
  msgstr ""
1496
 
1497
- #: ../addons/buy-creds/gateways/skrill.php:257
 
 
 
 
1498
  msgid "Product:"
1499
  msgstr ""
1500
 
1501
- #: ../addons/buy-creds/gateways/skrill.php:266
1502
  msgid "Gift to:"
1503
  msgstr ""
1504
 
1505
- #: ../addons/buy-creds/gateways/skrill.php:267
1506
  msgid "(author)"
1507
  msgstr ""
1508
 
1509
- #: ../addons/buy-creds/gateways/skrill.php:299
1510
  msgid "Merchant Account Email"
1511
  msgstr ""
1512
 
1513
- #: ../addons/buy-creds/gateways/skrill.php:305
1514
  msgid "Secret Word"
1515
  msgstr ""
1516
 
1517
- #: ../addons/buy-creds/gateways/skrill.php:322
1518
  msgid "Confirmation Email"
1519
  msgstr ""
1520
 
1521
- #: ../addons/buy-creds/gateways/skrill.php:325
1522
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1523
  msgstr ""
1524
 
1525
- #: ../addons/buy-creds/gateways/skrill.php:328
1526
  msgid "Checkout Page"
1527
  msgstr ""
1528
 
1529
- #: ../addons/buy-creds/gateways/skrill.php:331 ../addons/gateway/carts/mycred-
1530
- #: woocommerce.php:93 ../addons/ranks/myCRED-addon-ranks.php:1307 ..
1531
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1532
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1533
- #: php:592 ../modules/mycred-module-hooks.php:2876
1534
  msgid "Title"
1535
  msgstr ""
1536
 
1537
- #: ../addons/buy-creds/gateways/skrill.php:333
1538
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1539
  msgstr ""
1540
 
1541
- #: ../addons/buy-creds/gateways/skrill.php:336 ../addons/buy-
1542
- #: creds/gateways/zombaio.php:269
1543
  msgid "Logo URL"
1544
  msgstr ""
1545
 
1546
- #: ../addons/buy-creds/gateways/skrill.php:338
1547
  msgid ""
1548
  "The URL to the image you want to use on the top of the gateway. For best "
1549
  "integration results we recommend you use logos with dimensions up to 200px "
1550
  "in width and 50px in height."
1551
  msgstr ""
1552
 
1553
- #: ../addons/buy-creds/gateways/skrill.php:341
1554
  msgid "Confirmation Note"
1555
  msgstr ""
1556
 
1557
- #: ../addons/buy-creds/gateways/skrill.php:343
1558
  msgid ""
1559
  "Optional text to show user once a transaction has been successfully "
1560
  "completed. This text is shown by Skrill."
1561
  msgstr ""
1562
 
1563
- #: ../addons/buy-creds/gateways/zombaio.php:143
1564
  #, php-format
1565
  msgid "Duplicate transaction. Received: %s"
1566
  msgstr ""
1567
 
1568
- #: ../addons/buy-creds/gateways/zombaio.php:149
1569
  #, php-format
1570
  msgid "Live transaction while debug mode is enabled! Received: %s"
1571
  msgstr ""
1572
 
1573
- #: ../addons/buy-creds/gateways/zombaio.php:251
1574
  msgid "Site ID"
1575
  msgstr ""
1576
 
1577
- #: ../addons/buy-creds/gateways/zombaio.php:257
1578
  msgid "GW Password"
1579
  msgstr ""
1580
 
1581
- #: ../addons/buy-creds/gateways/zombaio.php:263
1582
  msgid "Pricing ID"
1583
  msgstr ""
1584
 
1585
- #: ../addons/buy-creds/gateways/zombaio.php:275
1586
  msgid "IP Verification"
1587
  msgstr ""
1588
 
1589
- #: ../addons/buy-creds/gateways/zombaio.php:278
1590
  msgid "Do not verify that callbacks are coming from Zombaio."
1591
  msgstr ""
1592
 
1593
- #: ../addons/buy-creds/gateways/zombaio.php:281
1594
  msgid "Language"
1595
  msgstr ""
1596
 
1597
- #: ../addons/buy-creds/gateways/zombaio.php:288
1598
  msgid "Postback URL (ZScript)"
1599
  msgstr ""
1600
 
1601
- #: ../addons/buy-creds/gateways/zombaio.php:292
1602
  msgid ""
1603
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1604
  "address and click validate."
@@ -1686,8 +1686,8 @@ msgid "Used"
1686
  msgstr ""
1687
 
1688
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1689
- #: transfer.php:259 ../modules/mycred-module-hooks.php:1563 ../modules/mycred-
1690
- #: module-hooks.php:1854
1691
  msgid "Limits"
1692
  msgstr ""
1693
 
@@ -1696,15 +1696,15 @@ msgid "Expires"
1696
  msgstr ""
1697
 
1698
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1699
- #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:811 ..
1700
- #: addons/email-notices/myCRED-addon-email-notices.php:1028 ..
1701
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1702
- #: addons/gateway/carts/mycred-woocommerce.php:121 ..
1703
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1704
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1705
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1706
- #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1041 ../addons/ranks/myCRED-
1707
- #: addon-ranks.php:1191 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1708
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1709
  #: includes/importers/mycred-cubepoints.php:365
1710
  msgid "Point Type"
@@ -1716,7 +1716,7 @@ msgid "not yet used"
1716
  msgstr ""
1717
 
1718
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1719
- #: 395 ../modules/mycred-module-hooks.php:2292
1720
  msgid "Total"
1721
  msgstr ""
1722
 
@@ -1862,16 +1862,12 @@ msgstr ""
1862
  msgid "Message to show when a coupon was successfully deposited to a users account."
1863
  msgstr ""
1864
 
1865
- #: ../addons/coupons/includes/mycred-coupon-functions.php:158
1866
- msgid "Coupon redemption"
1867
- msgstr ""
1868
-
1869
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1870
  msgid "Apply Coupon"
1871
  msgstr ""
1872
 
1873
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1874
- #: notices/myCRED-addon-email-notices.php:1264
1875
  msgid "Email Notice"
1876
  msgstr ""
1877
 
@@ -2064,17 +2060,17 @@ msgid ""
2064
  msgstr ""
2065
 
2066
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2067
- #: notices/myCRED-addon-email-notices.php:897
2068
  msgid "Email Settings"
2069
  msgstr ""
2070
 
2071
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2072
- #: notices/myCRED-addon-email-notices.php:1050
2073
  msgid "Senders Name:"
2074
  msgstr ""
2075
 
2076
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2077
- #: notices/myCRED-addon-email-notices.php:1052
2078
  msgid "Senders Email:"
2079
  msgstr ""
2080
 
@@ -2098,186 +2094,186 @@ msgstr ""
2098
  msgid "Ignored if HTML is not allowed in emails."
2099
  msgstr ""
2100
 
2101
- #: ../addons/email-notices/myCRED-addon-email-notices.php:716
2102
  #, php-format
2103
  msgctxt "Badge Title - Level 1,2,3.."
2104
  msgid "%s - Level %d"
2105
  msgstr ""
2106
 
2107
- #: ../addons/email-notices/myCRED-addon-email-notices.php:806 ../addons/email-
2108
- #: notices/myCRED-addon-email-notices.php:946
2109
  msgid "Email Subject"
2110
  msgstr ""
2111
 
2112
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
2113
  msgid "Not Active"
2114
  msgstr ""
2115
 
2116
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2117
  #, php-format
2118
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2119
  msgstr ""
2120
 
2121
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
2122
  msgid "Active"
2123
  msgstr ""
2124
 
2125
- #: ../addons/email-notices/myCRED-addon-email-notices.php:842
2126
  #, php-format
2127
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2128
  msgstr ""
2129
 
2130
- #: ../addons/email-notices/myCRED-addon-email-notices.php:852
2131
  msgid "Email is sent when"
2132
  msgstr ""
2133
 
2134
- #: ../addons/email-notices/myCRED-addon-email-notices.php:854
2135
  msgid "Missing instance for this notice!"
2136
  msgstr ""
2137
 
2138
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2139
- #: notices/myCRED-addon-email-notices.php:865 ../addons/email-notices/myCRED-
2140
- #: addon-email-notices.php:867
2141
  msgid "Sent To"
2142
  msgstr ""
2143
 
2144
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2145
- #: notices/myCRED-addon-email-notices.php:1016 ../includes/mycred-admin.php:754 ..
2146
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:562
2147
  msgid "User"
2148
  msgstr ""
2149
 
2150
- #: ../addons/email-notices/myCRED-addon-email-notices.php:865 ../addons/email-
2151
- #: notices/myCRED-addon-email-notices.php:1017
2152
  msgid "Administrator"
2153
  msgstr ""
2154
 
2155
- #: ../addons/email-notices/myCRED-addon-email-notices.php:867
2156
  msgid "Both Administrator and User"
2157
  msgstr ""
2158
 
2159
- #: ../addons/email-notices/myCRED-addon-email-notices.php:877 ../addons/email-
2160
- #: notices/myCRED-addon-email-notices.php:1034
2161
  msgid "All types"
2162
  msgstr ""
2163
 
2164
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
2165
  msgid "Available Template Tags"
2166
  msgstr ""
2167
 
2168
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
2169
  msgid "Email Header"
2170
  msgstr ""
2171
 
2172
- #: ../addons/email-notices/myCRED-addon-email-notices.php:983
2173
  msgid "Send this email notice when..."
2174
  msgstr ""
2175
 
2176
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1014
2177
  msgid "Recipient:"
2178
  msgstr ""
2179
 
2180
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1018
2181
  msgid "Both"
2182
  msgstr ""
2183
 
2184
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1022 ..
2185
- #: addons/gateway/carts/mycred-woocommerce.php:161 ../modules/mycred-module-
2186
- #: settings.php:632 ../modules/mycred-module-settings.php:651 ../modules/mycred-
2187
- #: module-settings.php:674
2188
  msgid "Label"
2189
  msgstr ""
2190
 
2191
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1054
2192
  msgid "Reply-To Email:"
2193
  msgstr ""
2194
 
2195
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1060
2196
  msgid "Save"
2197
  msgstr ""
2198
 
2199
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1072
2200
  msgid "CSS Styling"
2201
  msgstr ""
2202
 
2203
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1088
2204
  msgid "Site Related"
2205
  msgstr ""
2206
 
2207
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2208
  msgid "Your websites title"
2209
  msgstr ""
2210
 
2211
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1090
2212
  msgid "Your websites address"
2213
  msgstr ""
2214
 
2215
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2216
  msgid "Your websites tagline (description)"
2217
  msgstr ""
2218
 
2219
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2220
  msgid "Your websites admin email"
2221
  msgstr ""
2222
 
2223
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2224
  msgid "Total number of blog members"
2225
  msgstr ""
2226
 
2227
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1097
2228
  msgid "The users new balance"
2229
  msgstr ""
2230
 
2231
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1098
2232
  msgid "The users old balance"
2233
  msgstr ""
2234
 
2235
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1099
2236
  msgid "The amount of points gained or lost in this instance"
2237
  msgstr ""
2238
 
2239
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2240
  msgid "The log entry"
2241
  msgstr ""
2242
 
2243
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1175 ../addons/email-
2244
- #: notices/myCRED-addon-email-notices.php:1178 ../addons/email-notices/myCRED-
2245
- #: addon-email-notices.php:1184
2246
  msgid "Email Notice Updated."
2247
  msgstr ""
2248
 
2249
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1180
2250
  msgid "Email Notice Activated"
2251
  msgstr ""
2252
 
2253
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1181
2254
  msgid "Email Notice Saved"
2255
  msgstr ""
2256
 
2257
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1200
2258
  msgid ""
2259
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2260
  "are not yet ready to use this email notice!"
2261
  msgstr ""
2262
 
2263
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1202
2264
  #, php-format
2265
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2266
  msgstr ""
2267
 
2268
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1204
2269
  msgid "This email notice is active."
2270
  msgstr ""
2271
 
2272
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1215
2273
  msgid "Settings saved."
2274
  msgstr ""
2275
 
2276
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1263
2277
  msgid "Unsubscribe"
2278
  msgstr ""
2279
 
2280
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1284
2281
  msgid "There are no email notifications yet."
2282
  msgstr ""
2283
 
@@ -2323,7 +2319,7 @@ msgid "Paid"
2323
  msgstr ""
2324
 
2325
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2326
- #: addons/gateway/carts/mycred-woocommerce.php:34 ../includes/mycred-network.php:
2327
  #: 50 ../includes/mycred-network.php:51
2328
  msgid "myCRED"
2329
  msgstr ""
@@ -2354,7 +2350,7 @@ msgid ""
2354
  msgstr ""
2355
 
2356
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2357
- #: addons/gateway/carts/mycred-woocommerce.php:259
2358
  msgid "Insufficient funds."
2359
  msgstr ""
2360
 
@@ -2387,22 +2383,22 @@ msgid "Gateway Logo URL"
2387
  msgstr ""
2388
 
2389
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2390
- #: addons/gateway/carts/mycred-woocommerce.php:137
2391
  #, php-format
2392
  msgid "How much is 1 %_singular% worth in %currency%?"
2393
  msgstr ""
2394
 
2395
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2396
- #: addons/gateway/carts/mycred-woocommerce.php:142 ..
2397
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2398
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2399
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2400
- #: php:578 ../includes/mycred-shortcodes.php:976
2401
  msgid "Exchange Rate"
2402
  msgstr ""
2403
 
2404
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2405
- #: addons/gateway/carts/mycred-woocommerce.php:170 ..
2406
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2407
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2408
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2415,7 +2411,7 @@ msgid "Percentage"
2415
  msgstr ""
2416
 
2417
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2418
- #: addons/gateway/carts/mycred-woocommerce.php:172 ..
2419
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2420
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2421
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2480,82 +2476,82 @@ msgid ""
2480
  "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2481
  msgstr ""
2482
 
2483
- #: ../addons/gateway/carts/mycred-woocommerce.php:35
2484
  msgid "Let users pay using their myCRED balance."
2485
  msgstr ""
2486
 
2487
- #: ../addons/gateway/carts/mycred-woocommerce.php:86
2488
  msgid "Enable/Disable"
2489
  msgstr ""
2490
 
2491
- #: ../addons/gateway/carts/mycred-woocommerce.php:88
2492
  msgid "Enable myCRED Payment"
2493
  msgstr ""
2494
 
2495
- #: ../addons/gateway/carts/mycred-woocommerce.php:90
2496
  msgid ""
2497
  "Users who are not logged in or excluded from using myCRED will not have "
2498
  "access to this gateway!"
2499
  msgstr ""
2500
 
2501
- #: ../addons/gateway/carts/mycred-woocommerce.php:95
2502
  msgid "Title to show for this payment option."
2503
  msgstr ""
2504
 
2505
- #: ../addons/gateway/carts/mycred-woocommerce.php:96
2506
  msgid "Pay with myCRED"
2507
  msgstr ""
2508
 
2509
- #: ../addons/gateway/carts/mycred-woocommerce.php:100
2510
  msgid "Customer Message"
2511
  msgstr ""
2512
 
2513
- #: ../addons/gateway/carts/mycred-woocommerce.php:111 ..
2514
- #: addons/gateway/carts/mycred-woocommerce.php:183
2515
  msgid "Refund Log Template"
2516
  msgstr ""
2517
 
2518
- #: ../addons/gateway/carts/mycred-woocommerce.php:123
2519
  msgid "Select the point type users can use to pay."
2520
  msgstr ""
2521
 
2522
- #: ../addons/gateway/carts/mycred-woocommerce.php:149
2523
  msgid "Show Total"
2524
  msgstr ""
2525
 
2526
- #: ../addons/gateway/carts/mycred-woocommerce.php:151
2527
  msgid "Show the final price in %_plural% ."
2528
  msgstr ""
2529
 
2530
- #: ../addons/gateway/carts/mycred-woocommerce.php:154
2531
  msgid "Show in Cart"
2532
  msgstr ""
2533
 
2534
- #: ../addons/gateway/carts/mycred-woocommerce.php:155
2535
  msgid "Show on Checkout Page"
2536
  msgstr ""
2537
 
2538
- #: ../addons/gateway/carts/mycred-woocommerce.php:156
2539
  msgid "Show in Cart and on Checkout Page"
2540
  msgstr ""
2541
 
2542
- #: ../addons/gateway/carts/mycred-woocommerce.php:163
2543
  msgid "Order Total in %_plural%"
2544
  msgstr ""
2545
 
2546
- #: ../addons/gateway/carts/mycred-woocommerce.php:179
2547
  msgid "Log entry template for profit sharing."
2548
  msgstr ""
2549
 
2550
- #: ../addons/gateway/carts/mycred-woocommerce.php:185
2551
  msgid "Log entry template for refunds of profit shares."
2552
  msgstr ""
2553
 
2554
- #: ../addons/gateway/carts/mycred-woocommerce.php:211
2555
  msgid "myCRED Payment"
2556
  msgstr ""
2557
 
2558
- #: ../addons/gateway/carts/mycred-woocommerce.php:212
2559
  #, php-format
2560
  msgid ""
2561
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
@@ -2563,19 +2559,25 @@ msgid ""
2563
  "this payment gateway on the checkout page."
2564
  msgstr ""
2565
 
2566
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
2567
  msgid "You must be logged in to pay with %_plural%"
2568
  msgstr ""
2569
 
2570
- #: ../addons/gateway/carts/mycred-woocommerce.php:239
2571
  msgid "You can not use this gateway. Please try a different payment option."
2572
  msgstr ""
2573
 
2574
- #: ../addons/gateway/carts/mycred-woocommerce.php:396
 
 
 
 
 
 
2575
  msgid "Your account has successfully been charged."
2576
  msgstr ""
2577
 
2578
- #: ../addons/gateway/carts/mycred-woocommerce.php:708 ..
2579
  #: addons/gateway/carts/mycred-wpecommerce.php:131
2580
  msgid "Your current balance"
2581
  msgstr ""
@@ -2713,7 +2715,7 @@ msgid "Users must be logged in to use this gateway!"
2713
  msgstr ""
2714
 
2715
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2716
- #: modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2717
  msgid "Log"
2718
  msgstr ""
2719
 
@@ -2807,8 +2809,8 @@ msgid "Reject"
2807
  msgstr ""
2808
 
2809
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2810
- #: modules/mycred-module-log.php:522 ../modules/mycred-module-settings.php:636 ..
2811
- #: modules/mycred-module-settings.php:655
2812
  msgid "Delete"
2813
  msgstr ""
2814
 
@@ -2933,8 +2935,8 @@ msgid "Use the included CSS Styling for notifications."
2933
  msgstr ""
2934
 
2935
  #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
2936
- #: addons/ranks/myCRED-addon-ranks.php:1417 ../addons/ranks/myCRED-addon-ranks.
2937
- #: php:1463 ../modules/mycred-module-buddypress.php:428
2938
  msgid "Template"
2939
  msgstr ""
2940
 
@@ -2967,299 +2969,299 @@ msgid ""
2967
  "to user. Use zero to disable."
2968
  msgstr ""
2969
 
2970
- #: ../addons/ranks/myCRED-addon-ranks.php:211 ../addons/ranks/myCRED-addon-ranks.
2971
- #: php:212 ../addons/ranks/myCRED-addon-ranks.php:440 ../addons/ranks/myCRED-
2972
- #: addon-ranks.php:449 ../addons/ranks/myCRED-addon-ranks.php:455 ..
2973
- #: addons/ranks/myCRED-addon-ranks.php:831 ../addons/ranks/myCRED-addon-ranks.
2974
- #: php:1299 ../addons/ranks/myCRED-addon-ranks.php:1590
2975
  msgid "Ranks"
2976
  msgstr ""
2977
 
2978
- #: ../addons/ranks/myCRED-addon-ranks.php:422
2979
  msgid "Warning! All ranks will be deleted! This can not be undone!"
2980
  msgstr ""
2981
 
2982
- #: ../addons/ranks/myCRED-addon-ranks.php:423
2983
  msgid "Are you sure you want to re-assign user ranks?"
2984
  msgstr ""
2985
 
2986
- #: ../addons/ranks/myCRED-addon-ranks.php:438
2987
  #, php-format
2988
  msgid "Ranks for %s"
2989
  msgstr ""
2990
 
2991
- #: ../addons/ranks/myCRED-addon-ranks.php:444 ../addons/ranks/myCRED-addon-ranks.
2992
- #: php:831
2993
  msgid "Rank"
2994
  msgstr ""
2995
 
2996
- #: ../addons/ranks/myCRED-addon-ranks.php:446
2997
  msgid "Add New Rank"
2998
  msgstr ""
2999
 
3000
- #: ../addons/ranks/myCRED-addon-ranks.php:447
3001
  msgid "Edit Rank"
3002
  msgstr ""
3003
 
3004
- #: ../addons/ranks/myCRED-addon-ranks.php:448
3005
  msgid "New Rank"
3006
  msgstr ""
3007
 
3008
- #: ../addons/ranks/myCRED-addon-ranks.php:450
3009
  msgid "View Rank"
3010
  msgstr ""
3011
 
3012
- #: ../addons/ranks/myCRED-addon-ranks.php:451
3013
  msgid "Search Ranks"
3014
  msgstr ""
3015
 
3016
- #: ../addons/ranks/myCRED-addon-ranks.php:452
3017
  msgid "No ranks found"
3018
  msgstr ""
3019
 
3020
- #: ../addons/ranks/myCRED-addon-ranks.php:453
3021
  msgid "No ranks found in Trash"
3022
  msgstr ""
3023
 
3024
- #: ../addons/ranks/myCRED-addon-ranks.php:537
3025
  #, php-format
3026
  msgid "Completed - Total of %d users effected"
3027
  msgstr ""
3028
 
3029
- #: ../addons/ranks/myCRED-addon-ranks.php:975 ../addons/ranks/myCRED-addon-ranks.
3030
- #: php:976 ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-
3031
- #: addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ..
3032
- #: addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.
3033
- #: php:983 ../addons/ranks/myCRED-addon-ranks.php:984
3034
  msgid "Rank Updated."
3035
  msgstr ""
3036
 
3037
- #: ../addons/ranks/myCRED-addon-ranks.php:981
3038
  msgid "Rank Enabled"
3039
  msgstr ""
3040
 
3041
- #: ../addons/ranks/myCRED-addon-ranks.php:982
3042
  msgid "Rank Saved"
3043
  msgstr ""
3044
 
3045
- #: ../addons/ranks/myCRED-addon-ranks.php:1019
3046
  #, php-format
3047
  msgid "<strong>Rank:</strong> %s"
3048
  msgstr ""
3049
 
3050
- #: ../addons/ranks/myCRED-addon-ranks.php:1035 ../addons/ranks/myCRED-addon-ranks.
3051
- #: php:1116
3052
  msgid "Rank Title"
3053
  msgstr ""
3054
 
3055
- #: ../addons/ranks/myCRED-addon-ranks.php:1036
3056
  msgid "Logo"
3057
  msgstr ""
3058
 
3059
- #: ../addons/ranks/myCRED-addon-ranks.php:1037
3060
  msgid "Requirement"
3061
  msgstr ""
3062
 
3063
- #: ../addons/ranks/myCRED-addon-ranks.php:1062
3064
  msgid "No Logo Set"
3065
  msgstr ""
3066
 
3067
- #: ../addons/ranks/myCRED-addon-ranks.php:1077 ../addons/ranks/myCRED-addon-ranks.
3068
- #: php:1082
3069
  msgid "Any Value"
3070
  msgstr ""
3071
 
3072
- #: ../addons/ranks/myCRED-addon-ranks.php:1084
3073
  msgid "Maximum %plural%"
3074
  msgstr ""
3075
 
3076
- #: ../addons/ranks/myCRED-addon-ranks.php:1129
3077
  msgid "Rank Settings"
3078
  msgstr ""
3079
 
3080
- #: ../addons/ranks/myCRED-addon-ranks.php:1182
3081
  msgid "Minimum %plural% to reach this rank"
3082
  msgstr ""
3083
 
3084
- #: ../addons/ranks/myCRED-addon-ranks.php:1186
3085
  msgid "Maximum %plural% to be included in this rank"
3086
  msgstr ""
3087
 
3088
- #: ../addons/ranks/myCRED-addon-ranks.php:1204
3089
  msgid "All Published Ranks"
3090
  msgstr ""
3091
 
3092
- #: ../addons/ranks/myCRED-addon-ranks.php:1214 ../addons/ranks/myCRED-addon-ranks.
3093
- #: php:1216
3094
  msgid "Not Set"
3095
  msgstr ""
3096
 
3097
- #: ../addons/ranks/myCRED-addon-ranks.php:1222
3098
  msgid "No Ranks found"
3099
  msgstr ""
3100
 
3101
- #: ../addons/ranks/myCRED-addon-ranks.php:1304
3102
  msgid "Rank Features"
3103
  msgstr ""
3104
 
3105
- #: ../addons/ranks/myCRED-addon-ranks.php:1308
3106
  msgid "%plural% requirement"
3107
  msgstr ""
3108
 
3109
- #: ../addons/ranks/myCRED-addon-ranks.php:1309
3110
  msgid "Featured Image (Logo)"
3111
  msgstr ""
3112
 
3113
- #: ../addons/ranks/myCRED-addon-ranks.php:1311
3114
  msgid "Content"
3115
  msgstr ""
3116
 
3117
- #: ../addons/ranks/myCRED-addon-ranks.php:1313
3118
  msgid "Excerpt"
3119
  msgstr ""
3120
 
3121
- #: ../addons/ranks/myCRED-addon-ranks.php:1315
3122
  msgid "Comments"
3123
  msgstr ""
3124
 
3125
- #: ../addons/ranks/myCRED-addon-ranks.php:1317
3126
  msgid "Page Attributes"
3127
  msgstr ""
3128
 
3129
- #: ../addons/ranks/myCRED-addon-ranks.php:1319
3130
  msgid "Custom Fields"
3131
  msgstr ""
3132
 
3133
- #: ../addons/ranks/myCRED-addon-ranks.php:1323
3134
  msgid "Public"
3135
  msgstr ""
3136
 
3137
- #: ../addons/ranks/myCRED-addon-ranks.php:1327
3138
  msgid ""
3139
  "If you want to create a template archive for each rank, you must select to "
3140
  "have ranks public. Defaults to disabled."
3141
  msgstr ""
3142
 
3143
- #: ../addons/ranks/myCRED-addon-ranks.php:1330
3144
  msgid "Archive URL"
3145
  msgstr ""
3146
 
3147
- #: ../addons/ranks/myCRED-addon-ranks.php:1334
3148
  msgid "Ignored if Ranks are not public"
3149
  msgstr ""
3150
 
3151
- #: ../addons/ranks/myCRED-addon-ranks.php:1337
3152
  msgid "Display Order"
3153
  msgstr ""
3154
 
3155
- #: ../addons/ranks/myCRED-addon-ranks.php:1345
3156
  msgid "Ascending - Lowest rank to highest"
3157
  msgstr ""
3158
 
3159
- #: ../addons/ranks/myCRED-addon-ranks.php:1346
3160
  msgid "Descending - Highest rank to lowest"
3161
  msgstr ""
3162
 
3163
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
3164
  msgid ""
3165
  "Select in what order ranks should be displayed in your admin area and/or "
3166
  "front if ranks are \"Public\""
3167
  msgstr ""
3168
 
3169
- #: ../addons/ranks/myCRED-addon-ranks.php:1363
3170
  msgid "Rank Basis"
3171
  msgstr ""
3172
 
3173
- #: ../addons/ranks/myCRED-addon-ranks.php:1366
3174
  msgid "Users are ranked according to their current balance."
3175
  msgstr ""
3176
 
3177
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
3178
  msgid ""
3179
  "Users are ranked according to the total amount of %_plural% they have "
3180
  "accumulated."
3181
  msgstr ""
3182
 
3183
- #: ../addons/ranks/myCRED-addon-ranks.php:1373 ../addons/ranks/myCRED-addon-ranks.
3184
- #: php:1378
3185
  msgid "Calculate Totals"
3186
  msgstr ""
3187
 
3188
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3189
  msgid ""
3190
  "Use this button to calculate or recalculate your users totals. If not used, "
3191
  "the users current balance will be used as a starting point."
3192
  msgstr ""
3193
 
3194
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3195
  msgid ""
3196
  "Once a users total has been calculated, they will be assigned to their "
3197
  "appropriate roles. For this reason, it is highly recommended that you first "
3198
  "setup your ranks!"
3199
  msgstr ""
3200
 
3201
- #: ../addons/ranks/myCRED-addon-ranks.php:1377
3202
  msgid ""
3203
  "Depending on your log size and number of users this process may take a while."
3204
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3205
  "this is completed!"
3206
  msgstr ""
3207
 
3208
- #: ../addons/ranks/myCRED-addon-ranks.php:1394 ../addons/ranks/myCRED-addon-ranks.
3209
- #: php:1440 ../modules/mycred-module-buddypress.php:391
3210
  msgid "Do not show."
3211
  msgstr ""
3212
 
3213
- #: ../addons/ranks/myCRED-addon-ranks.php:1395
3214
  msgid "Include in Profile Header."
3215
  msgstr ""
3216
 
3217
- #: ../addons/ranks/myCRED-addon-ranks.php:1397
3218
  msgid "Include under the \"Profile\" tab and Profile Header."
3219
  msgstr ""
3220
 
3221
- #: ../addons/ranks/myCRED-addon-ranks.php:1402
3222
  msgid "Rank in BuddyPress"
3223
  msgstr ""
3224
 
3225
- #: ../addons/ranks/myCRED-addon-ranks.php:1419 ../addons/ranks/myCRED-addon-ranks.
3226
- #: php:1465
3227
  #, php-format
3228
  msgid ""
3229
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3230
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3231
  msgstr ""
3232
 
3233
- #: ../addons/ranks/myCRED-addon-ranks.php:1441
3234
  msgid "Include in Topic Replies"
3235
  msgstr ""
3236
 
3237
- #: ../addons/ranks/myCRED-addon-ranks.php:1443
3238
  msgid "Include in Topic Replies and Profile"
3239
  msgstr ""
3240
 
3241
- #: ../addons/ranks/myCRED-addon-ranks.php:1448
3242
  msgid "Rank in bbPress"
3243
  msgstr ""
3244
 
3245
- #: ../addons/ranks/myCRED-addon-ranks.php:1528
3246
  msgid "Script Communication Error"
3247
  msgstr ""
3248
 
3249
- #: ../addons/ranks/myCRED-addon-ranks.php:1593 ../modules/mycred-module-settings.
3250
- #: php:596
3251
  msgid "User Meta Key"
3252
  msgstr ""
3253
 
3254
- #: ../addons/ranks/myCRED-addon-ranks.php:1597
3255
  msgid "No. of ranks"
3256
  msgstr ""
3257
 
3258
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3259
  msgid "Remove All Ranks"
3260
  msgstr ""
3261
 
3262
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3263
  msgid "Assign Ranks to Users"
3264
  msgstr ""
3265
 
@@ -3456,8 +3458,8 @@ msgid "View Log"
3456
  msgstr ""
3457
 
3458
  #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3459
- #: modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ..
3460
- #: modules/mycred-module-hooks.php:27
3461
  msgid "Hooks"
3462
  msgstr ""
3463
 
@@ -3495,17 +3497,17 @@ msgid "Total Spent: %s"
3495
  msgstr ""
3496
 
3497
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3498
- #: includes/mycred-log.php:837 ../modules/mycred-module-buddypress.php:222
3499
  msgid "Today"
3500
  msgstr ""
3501
 
3502
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3503
- #: includes/mycred-log.php:839 ../modules/mycred-module-buddypress.php:224
3504
  msgid "This Week"
3505
  msgstr ""
3506
 
3507
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3508
- #: includes/mycred-log.php:840 ../modules/mycred-module-buddypress.php:225
3509
  msgid "This Month"
3510
  msgstr ""
3511
 
@@ -3572,7 +3574,7 @@ msgid "You have exceeded your %limit% transfer limit."
3572
  msgstr ""
3573
 
3574
  #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3575
- #: php:2446
3576
  msgid "Transfer"
3577
  msgstr ""
3578
 
@@ -3607,7 +3609,7 @@ msgid ""
3607
  msgstr ""
3608
 
3609
  #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3610
- #: php:2574
3611
  msgid "Insufficient Funds. Please try a lower amount."
3612
  msgstr ""
3613
 
@@ -3749,11 +3751,11 @@ msgstr ""
3749
  msgid "recipients %s"
3750
  msgstr ""
3751
 
3752
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:219
3753
  msgid "To:"
3754
  msgstr ""
3755
 
3756
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3757
  msgid "Amount:"
3758
  msgstr ""
3759
 
@@ -3949,394 +3951,394 @@ msgstr ""
3949
  msgid "Available Template Tags:"
3950
  msgstr ""
3951
 
3952
- #: ../includes/mycred-functions.php:1686
3953
  msgid "Entire Log"
3954
  msgstr ""
3955
 
3956
- #: ../includes/mycred-functions.php:1691 ../includes/mycred-functions.php:1692
3957
  msgid "Displayed Rows"
3958
  msgstr ""
3959
 
3960
- #: ../includes/mycred-functions.php:1699
3961
  msgid "Search Results"
3962
  msgstr ""
3963
 
3964
- #: ../includes/mycred-functions.php:1700
3965
  msgid "My Entire Log"
3966
  msgstr ""
3967
 
3968
- #: ../includes/mycred-functions.php:1867
3969
  msgid "ref empty"
3970
  msgstr ""
3971
 
3972
- #: ../includes/mycred-functions.php:1875
3973
  msgid "incorrect user id format"
3974
  msgstr ""
3975
 
3976
- #: ../includes/mycred-functions.php:1888
3977
  msgid "incorrect unix timestamp (from):"
3978
  msgstr ""
3979
 
3980
- #: ../includes/mycred-functions.php:1897
3981
  msgid "incorrect unix timestamp (to):"
3982
  msgstr ""
3983
 
3984
- #: ../includes/mycred-functions.php:2306
3985
  msgid "Website Registration"
3986
  msgstr ""
3987
 
3988
- #: ../includes/mycred-functions.php:2307
3989
  msgid "Website Visit"
3990
  msgstr ""
3991
 
3992
- #: ../includes/mycred-functions.php:2308
3993
  msgid "Viewing Content (Member)"
3994
  msgstr ""
3995
 
3996
- #: ../includes/mycred-functions.php:2309
3997
  msgid "Viewing Content (Author)"
3998
  msgstr ""
3999
 
4000
- #: ../includes/mycred-functions.php:2310
4001
  msgid "Logging in"
4002
  msgstr ""
4003
 
4004
- #: ../includes/mycred-functions.php:2311
4005
  msgid "Publishing Content"
4006
  msgstr ""
4007
 
4008
- #: ../includes/mycred-functions.php:2312 ../modules/mycred-module-hooks.php:1512
4009
  msgid "Approved Comment"
4010
  msgstr ""
4011
 
4012
- #: ../includes/mycred-functions.php:2313
4013
  msgid "Unapproved Comment"
4014
  msgstr ""
4015
 
4016
- #: ../includes/mycred-functions.php:2314
4017
  msgid "SPAM Comment"
4018
  msgstr ""
4019
 
4020
- #: ../includes/mycred-functions.php:2315
4021
  msgid "Deleted Comment"
4022
  msgstr ""
4023
 
4024
- #: ../includes/mycred-functions.php:2316
4025
  msgid "Link Click"
4026
  msgstr ""
4027
 
4028
- #: ../includes/mycred-functions.php:2317
4029
  msgid "Watching Video"
4030
  msgstr ""
4031
 
4032
- #: ../includes/mycred-functions.php:2318
4033
  msgid "Visitor Referral"
4034
  msgstr ""
4035
 
4036
- #: ../includes/mycred-functions.php:2319
4037
  msgid "Signup Referral"
4038
  msgstr ""
4039
 
4040
- #: ../includes/mycred-functions.php:2323
4041
  msgid "New Profile Update"
4042
  msgstr ""
4043
 
4044
- #: ../includes/mycred-functions.php:2324
4045
  msgid "Profile Update Removal"
4046
  msgstr ""
4047
 
4048
- #: ../includes/mycred-functions.php:2325
4049
  msgid "Avatar Upload"
4050
  msgstr ""
4051
 
4052
- #: ../includes/mycred-functions.php:2326
4053
  msgid "New Friendship"
4054
  msgstr ""
4055
 
4056
- #: ../includes/mycred-functions.php:2327
4057
  msgid "Ended Friendship"
4058
  msgstr ""
4059
 
4060
- #: ../includes/mycred-functions.php:2328
4061
  msgid "New Profile Comment"
4062
  msgstr ""
4063
 
4064
- #: ../includes/mycred-functions.php:2329
4065
  msgid "Profile Comment Deletion"
4066
  msgstr ""
4067
 
4068
- #: ../includes/mycred-functions.php:2330
4069
  msgid "New Message"
4070
  msgstr ""
4071
 
4072
- #: ../includes/mycred-functions.php:2331
4073
  msgid "Sending Gift"
4074
  msgstr ""
4075
 
4076
- #: ../includes/mycred-functions.php:2332
4077
  msgid "New Group"
4078
  msgstr ""
4079
 
4080
- #: ../includes/mycred-functions.php:2333
4081
  msgid "Deleted Group"
4082
  msgstr ""
4083
 
4084
- #: ../includes/mycred-functions.php:2334
4085
  msgid "New Group Forum Topic"
4086
  msgstr ""
4087
 
4088
- #: ../includes/mycred-functions.php:2335
4089
  msgid "Edit Group Forum Topic"
4090
  msgstr ""
4091
 
4092
- #: ../includes/mycred-functions.php:2336
4093
  msgid "New Group Forum Post"
4094
  msgstr ""
4095
 
4096
- #: ../includes/mycred-functions.php:2337
4097
  msgid "Edit Group Forum Post"
4098
  msgstr ""
4099
 
4100
- #: ../includes/mycred-functions.php:2338
4101
  msgid "Joining Group"
4102
  msgstr ""
4103
 
4104
- #: ../includes/mycred-functions.php:2339
4105
  msgid "Leaving Group"
4106
  msgstr ""
4107
 
4108
- #: ../includes/mycred-functions.php:2340
4109
  msgid "New Group Avatar"
4110
  msgstr ""
4111
 
4112
- #: ../includes/mycred-functions.php:2341
4113
  msgid "New Group Comment"
4114
  msgstr ""
4115
 
4116
- #: ../includes/mycred-functions.php:2345 ../plugins/mycred-hook-buddypress-media.
4117
  #: php:205
4118
  msgid "Photo Upload"
4119
  msgstr ""
4120
 
4121
- #: ../includes/mycred-functions.php:2346 ../plugins/mycred-hook-buddypress-media.
4122
  #: php:219
4123
  msgid "Video Upload"
4124
  msgstr ""
4125
 
4126
- #: ../includes/mycred-functions.php:2347 ../plugins/mycred-hook-buddypress-media.
4127
  #: php:233
4128
  msgid "Music Upload"
4129
  msgstr ""
4130
 
4131
- #: ../includes/mycred-functions.php:2351
4132
  msgid "New Link"
4133
  msgstr ""
4134
 
4135
- #: ../includes/mycred-functions.php:2352
4136
  msgid "Link Voting"
4137
  msgstr ""
4138
 
4139
- #: ../includes/mycred-functions.php:2353
4140
  msgid "Link Update"
4141
  msgstr ""
4142
 
4143
- #: ../includes/mycred-functions.php:2357
4144
  msgid "New Forum (bbPress)"
4145
  msgstr ""
4146
 
4147
- #: ../includes/mycred-functions.php:2358
4148
  msgid "New Forum Topic (bbPress)"
4149
  msgstr ""
4150
 
4151
- #: ../includes/mycred-functions.php:2359
4152
  msgid "Favorited Topic (bbPress)"
4153
  msgstr ""
4154
 
4155
- #: ../includes/mycred-functions.php:2360
4156
  msgid "New Topic Reply (bbPress)"
4157
  msgstr ""
4158
 
4159
- #: ../includes/mycred-functions.php:2364
4160
  msgid "Form Submission (Contact Form 7)"
4161
  msgstr ""
4162
 
4163
- #: ../includes/mycred-functions.php:2367
4164
  msgid "Form Submission (Gravity Form)"
4165
  msgstr ""
4166
 
4167
- #: ../includes/mycred-functions.php:2370
4168
  msgid "New Forum Topic (SimplePress)"
4169
  msgstr ""
4170
 
4171
- #: ../includes/mycred-functions.php:2371
4172
  msgid "New Forum Post (SimplePress)"
4173
  msgstr ""
4174
 
4175
- #: ../includes/mycred-functions.php:2380
4176
  msgid "Affiliate Signup (AffiliateWP)"
4177
  msgstr ""
4178
 
4179
- #: ../includes/mycred-functions.php:2381
4180
  msgid "Referred Visit (AffiliateWP)"
4181
  msgstr ""
4182
 
4183
- #: ../includes/mycred-functions.php:2382
4184
  msgid "Affiliate Referral (AffiliateWP)"
4185
  msgstr ""
4186
 
4187
- #: ../includes/mycred-functions.php:2383
4188
  msgid "Referral Refund (AffiliateWP)"
4189
  msgstr ""
4190
 
4191
- #: ../includes/mycred-functions.php:2387 ../plugins/mycred-hook-wp-postratings.
4192
  #: php:150
4193
  msgid "Adding a Rating"
4194
  msgstr ""
4195
 
4196
- #: ../includes/mycred-functions.php:2388 ../plugins/mycred-hook-wp-postratings.
4197
  #: php:169
4198
  msgid "Receiving a Rating"
4199
  msgstr ""
4200
 
4201
- #: ../includes/mycred-functions.php:2392
4202
  msgid "Poll Voting"
4203
  msgstr ""
4204
 
4205
- #: ../includes/mycred-functions.php:2395
4206
  msgid "Sending an Invite"
4207
  msgstr ""
4208
 
4209
- #: ../includes/mycred-functions.php:2396
4210
  msgid "Accepting an Invite"
4211
  msgstr ""
4212
 
4213
- #: ../includes/mycred-functions.php:2402
4214
  msgid "Banking Payout"
4215
  msgstr ""
4216
 
4217
- #: ../includes/mycred-functions.php:2405
4218
  msgid "buyCRED Purchase (PayPal Standard)"
4219
  msgstr ""
4220
 
4221
- #: ../includes/mycred-functions.php:2406
4222
  msgid "buyCRED Purchase (Skrill)"
4223
  msgstr ""
4224
 
4225
- #: ../includes/mycred-functions.php:2407
4226
  msgid "buyCRED Purchase (Zombaio)"
4227
  msgstr ""
4228
 
4229
- #: ../includes/mycred-functions.php:2408
4230
  msgid "buyCRED Purchase (NETBilling)"
4231
  msgstr ""
4232
 
4233
- #: ../includes/mycred-functions.php:2409
4234
  msgid "buyCRED Purchase (BitPay)"
4235
  msgstr ""
4236
 
4237
- #: ../includes/mycred-functions.php:2414
4238
  msgid "Coupon Purchase"
4239
  msgstr ""
4240
 
4241
- #: ../includes/mycred-functions.php:2418
4242
  msgid "Store Purchase (WooCommerce)"
4243
  msgstr ""
4244
 
4245
- #: ../includes/mycred-functions.php:2419
4246
  msgid "Store Reward (WooCommerce)"
4247
  msgstr ""
4248
 
4249
- #: ../includes/mycred-functions.php:2420
4250
  msgid "Product Review (WooCommerce)"
4251
  msgstr ""
4252
 
4253
- #: ../includes/mycred-functions.php:2423
4254
  msgid "Store Purchase (MarketPress)"
4255
  msgstr ""
4256
 
4257
- #: ../includes/mycred-functions.php:2424
4258
  msgid "Store Reward (MarketPress)"
4259
  msgstr ""
4260
 
4261
- #: ../includes/mycred-functions.php:2427
4262
  msgid "Store Purchase (WP E-Commerce)"
4263
  msgstr ""
4264
 
4265
- #: ../includes/mycred-functions.php:2433
4266
  msgid "Event Payment (Event Espresso)"
4267
  msgstr ""
4268
 
4269
- #: ../includes/mycred-functions.php:2434
4270
  msgid "Event Sale (Event Espresso)"
4271
  msgstr ""
4272
 
4273
- #: ../includes/mycred-functions.php:2438
4274
  msgid "Event Payment (Events Manager)"
4275
  msgstr ""
4276
 
4277
- #: ../includes/mycred-functions.php:2439
4278
  msgid "Event Sale (Events Manager)"
4279
  msgstr ""
4280
 
4281
- #: ../includes/mycred-functions.php:2443
4282
  msgid "Content Purchase / Sale"
4283
  msgstr ""
4284
 
4285
- #: ../includes/mycred-functions.php:2450
4286
  msgid "Manual Adjustment by Admin"
4287
  msgstr ""
4288
 
4289
- #: ../includes/mycred-functions.php:2520 ../includes/mycred-shortcodes.php:924
4290
  msgid "Point types not found."
4291
  msgstr ""
4292
 
4293
- #: ../includes/mycred-functions.php:2532 ../includes/mycred-functions.php:2552 ..
4294
- #: includes/mycred-shortcodes.php:930 ../includes/mycred-shortcodes.php:938
4295
  #, php-format
4296
  msgid "You are excluded from using %s."
4297
  msgstr ""
4298
 
4299
- #: ../includes/mycred-functions.php:2542 ../includes/mycred-shortcodes.php:934
4300
  msgid "Your balance is too low to use this feature."
4301
  msgstr ""
4302
 
4303
- #: ../includes/mycred-functions.php:2565
4304
  #, php-format
4305
  msgid "You must exchange at least %s!"
4306
  msgstr ""
4307
 
4308
- #: ../includes/mycred-functions.php:2587
4309
  #, php-format
4310
  msgid "Exchange from %s"
4311
  msgstr ""
4312
 
4313
- #: ../includes/mycred-functions.php:2599
4314
  #, php-format
4315
  msgid "Exchange to %s"
4316
  msgstr ""
4317
 
4318
- #: ../includes/mycred-functions.php:2607
4319
  #, php-format
4320
  msgid "You have successfully exchanged %s into %s."
4321
  msgstr ""
4322
 
4323
- #: ../includes/mycred-functions.php:2638
4324
  msgid "per day"
4325
  msgstr ""
4326
 
4327
- #: ../includes/mycred-functions.php:2640
4328
  msgid "per week"
4329
  msgstr ""
4330
 
4331
- #: ../includes/mycred-functions.php:2642
4332
  msgid "per month"
4333
  msgstr ""
4334
 
4335
- #: ../includes/mycred-functions.php:2644
4336
  msgid "in total"
4337
  msgstr ""
4338
 
4339
- #: ../includes/mycred-functions.php:2646 ../includes/mycred-functions.php:2650
4340
  #, php-format
4341
  msgid "Maximum once"
4342
  msgid_plural "Maximum %d times"
@@ -4400,102 +4402,102 @@ msgid ""
4400
  "requirements for running myCRED. The following errors were given:"
4401
  msgstr ""
4402
 
4403
- #: ../includes/mycred-install.php:256
4404
  msgid "myCRED needs your attention."
4405
  msgstr ""
4406
 
4407
- #: ../includes/mycred-install.php:256
4408
  msgid "Run Setup"
4409
  msgstr ""
4410
 
4411
- #: ../includes/mycred-install.php:268 ../includes/mycred-install.php:269
4412
  msgid "myCRED Setup"
4413
  msgstr ""
4414
 
4415
- #: ../includes/mycred-install.php:398
4416
  #, php-format
4417
  msgid "%s Setup"
4418
  msgstr ""
4419
 
4420
- #: ../includes/mycred-install.php:400
4421
  msgid "Step"
4422
  msgstr ""
4423
 
4424
- #: ../includes/mycred-install.php:424
4425
  msgid ""
4426
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4427
  "points format, layout and security settings."
4428
  msgstr ""
4429
 
4430
- #: ../includes/mycred-install.php:425
4431
  msgid "Begin Setup"
4432
  msgstr ""
4433
 
4434
- #: ../includes/mycred-install.php:480
4435
  msgid "Select the format you want to use for your points."
4436
  msgstr ""
4437
 
4438
- #: ../includes/mycred-install.php:481
4439
  msgid "Format"
4440
  msgstr ""
4441
 
4442
- #: ../includes/mycred-install.php:484
4443
  msgid "Separators"
4444
  msgstr ""
4445
 
4446
- #: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:501
4447
  msgid "Decimals"
4448
  msgstr ""
4449
 
4450
- #: ../includes/mycred-install.php:496
4451
  msgid "Use zero for no decimals or maximum 20."
4452
  msgstr ""
4453
 
4454
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:505
4455
  msgid "Presentation"
4456
  msgstr ""
4457
 
4458
- #: ../includes/mycred-install.php:502 ../modules/mycred-module-settings.php:488
4459
  msgid "Name (Singular)"
4460
  msgstr ""
4461
 
4462
- #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:493
4463
  msgid "Name (Plural)"
4464
  msgstr ""
4465
 
4466
- #: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:508
4467
  msgid "Prefix"
4468
  msgstr ""
4469
 
4470
- #: ../includes/mycred-install.php:520 ../modules/mycred-module-settings.php:516
4471
  msgid "Suffix"
4472
  msgstr ""
4473
 
4474
- #: ../includes/mycred-install.php:524
4475
  msgid "Cancel Setup"
4476
  msgstr ""
4477
 
4478
- #: ../includes/mycred-install.php:524 ../includes/mycred-install.php:594
4479
  msgid "Next"
4480
  msgstr ""
4481
 
4482
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:524
4483
  msgid "Security"
4484
  msgstr ""
4485
 
4486
- #: ../includes/mycred-install.php:559
4487
  msgid "Edit Settings Capability"
4488
  msgstr ""
4489
 
4490
- #: ../includes/mycred-install.php:563
4491
  msgid "Edit Users %plural% Capability"
4492
  msgstr ""
4493
 
4494
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:537
4495
  msgid "Maximum %plural% payouts"
4496
  msgstr ""
4497
 
4498
- #: ../includes/mycred-install.php:569 ../modules/mycred-module-settings.php:539
4499
  msgid ""
4500
  "As an added security, you can set the maximum amount a user can gain or "
4501
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -4503,139 +4505,139 @@ msgid ""
4503
  "disable."
4504
  msgstr ""
4505
 
4506
- #: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:542
4507
  msgid "Excludes"
4508
  msgstr ""
4509
 
4510
- #: ../includes/mycred-install.php:576 ../modules/mycred-module-settings.php:546
4511
  msgid "Exclude those who can \"Edit Settings\"."
4512
  msgstr ""
4513
 
4514
- #: ../includes/mycred-install.php:580 ../modules/mycred-module-settings.php:550
4515
  msgid "Exclude those who can \"Edit Users %plural%\"."
4516
  msgstr ""
4517
 
4518
- #: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:554
4519
  msgid "Exclude the following user IDs:"
4520
  msgstr ""
4521
 
4522
- #: ../includes/mycred-install.php:587 ../modules/mycred-module-settings.php:559
4523
  msgid "User Deletions"
4524
  msgstr ""
4525
 
4526
- #: ../includes/mycred-install.php:591 ../modules/mycred-module-settings.php:562
4527
  msgid "Delete log entries when user is deleted."
4528
  msgstr ""
4529
 
4530
- #: ../includes/mycred-install.php:612
4531
  msgid "Ready"
4532
  msgstr ""
4533
 
4534
- #: ../includes/mycred-install.php:613
4535
  msgid "Almost done! Click the button below to finish this setup."
4536
  msgstr ""
4537
 
4538
- #: ../includes/mycred-install.php:614
4539
  msgid "Install & Run"
4540
  msgstr ""
4541
 
4542
- #: ../includes/mycred-log.php:398
4543
  #, php-format
4544
  msgid "Showing %d %s"
4545
  msgstr ""
4546
 
4547
- #: ../includes/mycred-log.php:398
4548
  msgid "entry"
4549
  msgid_plural "entries"
4550
  msgstr[0] ""
4551
  msgstr[1] ""
4552
 
4553
- #: ../includes/mycred-log.php:412
4554
  msgid "Go to the first page"
4555
  msgstr ""
4556
 
4557
- #: ../includes/mycred-log.php:419
4558
  msgid "Go to the previous page"
4559
  msgstr ""
4560
 
4561
- #: ../includes/mycred-log.php:428
4562
  msgid "Current page"
4563
  msgstr ""
4564
 
4565
- #: ../includes/mycred-log.php:434
4566
  #, php-format
4567
  msgctxt "mycred"
4568
  msgid "%1$s of %2$s"
4569
  msgstr ""
4570
 
4571
- #: ../includes/mycred-log.php:438
4572
  msgid "Go to the next page"
4573
  msgstr ""
4574
 
4575
- #: ../includes/mycred-log.php:445
4576
  msgid "Go to the last page"
4577
  msgstr ""
4578
 
4579
- #: ../includes/mycred-log.php:512
4580
  msgid "Show all references"
4581
  msgstr ""
4582
 
4583
- #: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:705
4584
- msgid "User ID"
4585
  msgstr ""
4586
 
4587
- #: ../includes/mycred-log.php:531
4588
  msgid "Show in order"
4589
  msgstr ""
4590
 
4591
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:426
4592
  msgid "Ascending"
4593
  msgstr ""
4594
 
4595
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:427
4596
  msgid "Descending"
4597
  msgstr ""
4598
 
4599
- #: ../includes/mycred-log.php:550
4600
  msgid "Filter"
4601
  msgstr ""
4602
 
4603
- #: ../includes/mycred-log.php:603
4604
  msgid ""
4605
  "Log entries are exported to a CSV file and depending on the number of "
4606
  "entries selected, the process may take a few seconds."
4607
  msgstr ""
4608
 
4609
- #: ../includes/mycred-log.php:607
4610
  msgid "No export options available."
4611
  msgstr ""
4612
 
4613
- #: ../includes/mycred-log.php:636
4614
  msgid "Entry"
4615
  msgstr ""
4616
 
4617
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:484
4618
  msgid "User Missing"
4619
  msgstr ""
4620
 
4621
- #: ../includes/mycred-log.php:807
4622
  msgid "No log entries found"
4623
  msgstr ""
4624
 
4625
- #: ../includes/mycred-log.php:822 ../includes/mycred-log.php:824
4626
  msgid "Search Log"
4627
  msgstr ""
4628
 
4629
- #: ../includes/mycred-log.php:823
4630
  msgid "search log entries"
4631
  msgstr ""
4632
 
4633
- #: ../includes/mycred-log.php:836 ../modules/mycred-module-buddypress.php:221 ..
4634
- #: modules/mycred-module-buddypress.php:234
4635
  msgid "All"
4636
  msgstr ""
4637
 
4638
- #: ../includes/mycred-log.php:838 ../modules/mycred-module-buddypress.php:223
4639
  msgid "Yesterday"
4640
  msgstr ""
4641
 
@@ -4794,56 +4796,56 @@ msgstr ""
4794
  msgid "Error - Try Again"
4795
  msgstr ""
4796
 
4797
- #: ../includes/mycred-shortcodes.php:763
4798
  msgid "A video ID is required for this shortcode"
4799
  msgstr ""
4800
 
4801
- #: ../includes/mycred-shortcodes.php:956
4802
  #, php-format
4803
  msgid "Convert <span>%s</span> to <span>%s</span>"
4804
  msgstr ""
4805
 
4806
- #: ../includes/mycred-shortcodes.php:965
4807
  #, php-format
4808
  msgid "Your current %s balance"
4809
  msgstr ""
4810
 
4811
- #: ../includes/mycred-shortcodes.php:973
4812
  #, php-format
4813
  msgid "Minimum %s"
4814
  msgstr ""
4815
 
4816
- #: ../includes/mycred-shortcodes.php:977
4817
  #, php-format
4818
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4819
  msgstr ""
4820
 
4821
- #: ../includes/mycred-shortcodes.php:983
4822
  msgid "Exchange"
4823
  msgstr ""
4824
 
4825
- #: ../includes/mycred-shortcodes.php:1048
4826
  msgid "No instances found for this point type"
4827
  msgstr ""
4828
 
4829
- #: ../includes/mycred-shortcodes.php:1052
4830
  msgid "Invalid point type"
4831
  msgstr ""
4832
 
4833
- #: ../includes/mycred-shortcodes.php:1111
4834
  msgid "Instance"
4835
  msgstr ""
4836
 
4837
- #: ../includes/mycred-shortcodes.php:1113 ../modules/mycred-module-hooks.php:600 .
4838
- #: ./modules/mycred-module-hooks.php:607 ../modules/mycred-module-hooks.php:631 ..
4839
- #: modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:706 ..
4840
- #: modules/mycred-module-hooks.php:713 ../modules/mycred-module-hooks.php:898 ..
4841
- #: modules/mycred-module-hooks.php:1029 ../modules/mycred-module-hooks.php:1046 .
4842
- #: ./modules/mycred-module-hooks.php:1093 ../modules/mycred-module-hooks.php:2793
4843
- #: ../modules/mycred-module-hooks.php:2822 ../plugins/mycred-hook-affiliatewp.php:
4844
- #: 237 ../plugins/mycred-hook-bbPress.php:413 ../plugins/mycred-hook-bbPress.php:
4845
- #: 443 ../plugins/mycred-hook-bbPress.php:478 ../plugins/mycred-hook-bbPress.php:
4846
- #: 495 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
4847
  #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
4848
  #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
4849
  #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
@@ -4864,7 +4866,7 @@ msgstr ""
4864
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4865
  #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
4866
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4867
- #: php:314 ../plugins/mycred-hook-woocommerce.php:300 ../plugins/mycred-hook-wp-
4868
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
4869
  #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
4870
  #: postratings.php:175
@@ -5122,325 +5124,333 @@ msgstr ""
5122
  msgid "Import log entries from a CSV file."
5123
  msgstr ""
5124
 
5125
- #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
5126
  msgid "Add-ons"
5127
  msgstr ""
5128
 
5129
- #: ../modules/mycred-module-addons.php:151
5130
  msgid "Give your users badges based on their interaction with your website."
5131
  msgstr ""
5132
 
5133
- #: ../modules/mycred-module-addons.php:162
5134
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
5135
  msgstr ""
5136
 
5137
- #: ../modules/mycred-module-addons.php:173
5138
  msgid ""
5139
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5140
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
5141
  "also let your users buy points for other members."
5142
  msgstr ""
5143
 
5144
- #: ../modules/mycred-module-addons.php:184
5145
  msgid ""
5146
  "The coupons add-on allows you to create coupons that users can use to add "
5147
  "points to their accounts."
5148
  msgstr ""
5149
 
5150
- #: ../modules/mycred-module-addons.php:195
5151
  msgid "Create email notices for any type of myCRED instance."
5152
  msgstr ""
5153
 
5154
- #: ../modules/mycred-module-addons.php:206
5155
  msgid ""
5156
  "Let your users pay using their <strong>my</strong>CRED points balance. "
5157
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5158
  "Bookings: Event Espresso and Events Manager (free & pro)."
5159
  msgstr ""
5160
 
5161
- #: ../modules/mycred-module-addons.php:217
5162
  msgid "Create pop-up notifications for when users gain or loose points."
5163
  msgstr ""
5164
 
5165
- #: ../modules/mycred-module-addons.php:229
5166
  msgid ""
5167
  "Create ranks for users reaching a certain number of %_plural% with the "
5168
  "option to add logos for each rank."
5169
  msgstr ""
5170
 
5171
- #: ../modules/mycred-module-addons.php:240
5172
  msgid ""
5173
  "This add-on allows you to sell posts, pages or any public post types on your "
5174
  "website. You can either sell the entire content or using our shortcode, sell "
5175
  "parts of your content allowing you to offer \"teasers\"."
5176
  msgstr ""
5177
 
5178
- #: ../modules/mycred-module-addons.php:251
5179
  msgid ""
5180
  "Gives you access to your myCRED Staticstics based on your users gains and "
5181
  "loses."
5182
  msgstr ""
5183
 
5184
- #: ../modules/mycred-module-addons.php:262
5185
  msgid ""
5186
  "Allow your users to send or \"donate\" points to other members by either using "
5187
  "the mycred_transfer shortcode or the myCRED Transfer widget."
5188
  msgstr ""
5189
 
5190
- #: ../modules/mycred-module-addons.php:297
5191
  #, php-format
5192
  msgid "%s Add-ons"
5193
  msgstr ""
5194
 
5195
- #: ../modules/mycred-module-addons.php:302
5196
  msgid "Add-on Activated"
5197
  msgstr ""
5198
 
5199
- #: ../modules/mycred-module-addons.php:305
5200
  msgid "Add-on Deactivated"
5201
  msgstr ""
5202
 
5203
- #: ../modules/mycred-module-addons.php:309
 
 
 
 
5204
  msgid "Add-ons can expand your current installation with further features."
5205
  msgstr ""
5206
 
5207
- #: ../modules/mycred-module-addons.php:330
 
 
 
 
5208
  #, php-format
5209
  msgid "You can find more add-ons in our %s."
5210
  msgstr ""
5211
 
5212
- #: ../modules/mycred-module-addons.php:330
5213
  msgid "online store"
5214
  msgstr ""
5215
 
5216
- #: ../modules/mycred-module-addons.php:351
5217
  msgid "Deactivate Add-on"
5218
  msgstr ""
5219
 
5220
- #: ../modules/mycred-module-addons.php:352
5221
  msgid "Deactivate"
5222
  msgstr ""
5223
 
5224
- #: ../modules/mycred-module-addons.php:359
5225
  msgid "Activate Add-on"
5226
  msgstr ""
5227
 
5228
- #: ../modules/mycred-module-addons.php:360
5229
  msgid "Activate"
5230
  msgstr ""
5231
 
5232
- #: ../modules/mycred-module-addons.php:376
5233
  msgid "Version"
5234
  msgstr ""
5235
 
5236
- #: ../modules/mycred-module-addons.php:380
5237
  msgid "By"
5238
  msgstr ""
5239
 
5240
- #: ../modules/mycred-module-addons.php:384
5241
  msgid "About"
5242
  msgstr ""
5243
 
5244
- #: ../modules/mycred-module-addons.php:388
5245
  msgid "Get Pro"
5246
  msgstr ""
5247
 
5248
- #: ../modules/mycred-module-buddypress.php:30
5249
  msgid "My History"
5250
  msgstr ""
5251
 
5252
- #: ../modules/mycred-module-buddypress.php:31
5253
  #, php-format
5254
  msgid "%s's History"
5255
  msgstr ""
5256
 
5257
- #: ../modules/mycred-module-buddypress.php:121
5258
  msgid "Current balance"
5259
  msgstr ""
5260
 
5261
- #: ../modules/mycred-module-buddypress.php:336
5262
  msgid "Go"
5263
  msgstr ""
5264
 
5265
- #: ../modules/mycred-module-buddypress.php:392
5266
  msgid "Show in Profile"
5267
  msgstr ""
5268
 
5269
- #: ../modules/mycred-module-buddypress.php:407
5270
  #, php-format
5271
  msgid "%singular% Balance"
5272
  msgstr ""
5273
 
5274
- #: ../modules/mycred-module-buddypress.php:423
5275
  #, php-format
5276
  msgid "Members and visitors can other members %_singular% balance."
5277
  msgstr ""
5278
 
5279
- #: ../modules/mycred-module-buddypress.php:433
5280
  msgid "%plural% History"
5281
  msgstr ""
5282
 
5283
- #: ../modules/mycred-module-buddypress.php:449
5284
  msgid "Members can view each others %_plural% history."
5285
  msgstr ""
5286
 
5287
- #: ../modules/mycred-module-buddypress.php:454
5288
  msgid "Menu Title"
5289
  msgstr ""
5290
 
5291
- #: ../modules/mycred-module-buddypress.php:456
5292
  msgid "Title shown to me"
5293
  msgstr ""
5294
 
5295
- #: ../modules/mycred-module-buddypress.php:461
5296
  #, php-format
5297
  msgid "Title shown to others. Use %s to show the first name."
5298
  msgstr ""
5299
 
5300
- #: ../modules/mycred-module-buddypress.php:466
5301
  msgid "Menu Position"
5302
  msgstr ""
5303
 
5304
- #: ../modules/mycred-module-buddypress.php:468
5305
  msgid "Current menu positions:"
5306
  msgstr ""
5307
 
5308
- #: ../modules/mycred-module-buddypress.php:473
5309
  msgid "History URL slug"
5310
  msgstr ""
5311
 
5312
- #: ../modules/mycred-module-buddypress.php:475
5313
  msgid "Do not use empty spaces!"
5314
  msgstr ""
5315
 
5316
- #: ../modules/mycred-module-buddypress.php:480
5317
  msgid "Number of history entries to show"
5318
  msgstr ""
5319
 
5320
- #: ../modules/mycred-module-hooks.php:87
5321
  #, php-format
5322
  msgid "%plural% for registrations"
5323
  msgstr ""
5324
 
5325
- #: ../modules/mycred-module-hooks.php:88
5326
  #, php-format
5327
  msgid "Award %_plural% for users joining your website."
5328
  msgstr ""
5329
 
5330
- #: ../modules/mycred-module-hooks.php:94
5331
  #, php-format
5332
  msgid "%plural% for daily visits"
5333
  msgstr ""
5334
 
5335
- #: ../modules/mycred-module-hooks.php:95
5336
  #, php-format
5337
  msgid "Award %_plural% for users visiting your website on a daily basis."
5338
  msgstr ""
5339
 
5340
- #: ../modules/mycred-module-hooks.php:101
5341
  #, php-format
5342
  msgid "%plural% for viewing content"
5343
  msgstr ""
5344
 
5345
- #: ../modules/mycred-module-hooks.php:102
5346
  msgid ""
5347
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
5348
  "authors for members viewing their content."
5349
  msgstr ""
5350
 
5351
- #: ../modules/mycred-module-hooks.php:108
5352
  #, php-format
5353
  msgid "%plural% for logins"
5354
  msgstr ""
5355
 
5356
- #: ../modules/mycred-module-hooks.php:109
5357
  #, php-format
5358
  msgid ""
5359
  "Award %_plural% for logging in to your website. You can also set an optional "
5360
  "limit."
5361
  msgstr ""
5362
 
5363
- #: ../modules/mycred-module-hooks.php:115
5364
  #, php-format
5365
  msgid "%plural% for publishing content"
5366
  msgstr ""
5367
 
5368
- #: ../modules/mycred-module-hooks.php:116
5369
  #, php-format
5370
  msgid ""
5371
  "Award %_plural% for publishing content on your website. If your custom post "
5372
  "type is not shown bellow, make sure it is set to \"Public\"."
5373
  msgstr ""
5374
 
5375
- #: ../modules/mycred-module-hooks.php:122
5376
  #, php-format
5377
  msgid "%plural% for comments"
5378
  msgstr ""
5379
 
5380
- #: ../modules/mycred-module-hooks.php:122
5381
  #, php-format
5382
  msgid "%plural% for Disqus comments"
5383
  msgstr ""
5384
 
5385
- #: ../modules/mycred-module-hooks.php:123
5386
  #, php-format
5387
  msgid "Award %_plural% for making comments."
5388
  msgstr ""
5389
 
5390
- #: ../modules/mycred-module-hooks.php:129
5391
  #, php-format
5392
  msgid "%plural% for clicking on links"
5393
  msgstr ""
5394
 
5395
- #: ../modules/mycred-module-hooks.php:130
5396
  msgid ""
5397
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5398
  "shortcode."
5399
  msgstr ""
5400
 
5401
- #: ../modules/mycred-module-hooks.php:136
5402
  #, php-format
5403
  msgid "%plural% for viewing Videos"
5404
  msgstr ""
5405
 
5406
- #: ../modules/mycred-module-hooks.php:137
5407
  msgid ""
5408
  "Award %_plural% to users who watches videos embedded using the "
5409
  "[mycred_video] shortcode."
5410
  msgstr ""
5411
 
5412
- #: ../modules/mycred-module-hooks.php:143
5413
  #, php-format
5414
  msgid "%plural% for referrals"
5415
  msgstr ""
5416
 
5417
- #: ../modules/mycred-module-hooks.php:144
5418
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5419
  msgstr ""
5420
 
5421
- #: ../modules/mycred-module-hooks.php:177
5422
  #, php-format
5423
  msgid "%s Hooks"
5424
  msgstr ""
5425
 
5426
- #: ../modules/mycred-module-hooks.php:180
5427
  msgid ""
5428
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5429
  "depending on their actions around your website."
5430
  msgstr ""
5431
 
5432
- #: ../modules/mycred-module-hooks.php:362 ../modules/mycred-module-hooks.php:459 .
5433
- #: ./modules/mycred-module-hooks.php:611 ../modules/mycred-module-hooks.php:642 ..
5434
- #: modules/mycred-module-hooks.php:717 ../modules/mycred-module-hooks.php:1033 ..
5435
- #: modules/mycred-module-hooks.php:1050 ../modules/mycred-module-hooks.php:1097 .
5436
- #: ./modules/mycred-module-hooks.php:1524 ../modules/mycred-module-hooks.php:1541
5437
- #: ../modules/mycred-module-hooks.php:1558 ../modules/mycred-module-hooks.php:
5438
- #: 2785 ../modules/mycred-module-hooks.php:2814 ../plugins/mycred-hook-
5439
  #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5440
- #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:418 ..
5441
- #: plugins/mycred-hook-bbPress.php:431 ../plugins/mycred-hook-bbPress.php:448 ..
5442
- #: plugins/mycred-hook-bbPress.php:466 ../plugins/mycred-hook-bbPress.php:483 ..
5443
- #: plugins/mycred-hook-bbPress.php:500 ../plugins/mycred-hook-bbPress.php:522 ..
5444
  #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5445
  #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5446
  #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
@@ -5472,117 +5482,117 @@ msgstr ""
5472
  msgid "Log template"
5473
  msgstr ""
5474
 
5475
- #: ../modules/mycred-module-hooks.php:594
5476
  #, php-format
5477
  msgid "%plural% for viewing Posts"
5478
  msgstr ""
5479
 
5480
- #: ../modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:614 .
5481
- #: ./modules/mycred-module-hooks.php:628 ../modules/mycred-module-hooks.php:645 ..
5482
- #: modules/mycred-module-hooks.php:703 ../modules/mycred-module-hooks.php:720
5483
  msgid "Member"
5484
  msgstr ""
5485
 
5486
- #: ../modules/mycred-module-hooks.php:604 ../modules/mycred-module-hooks.php:620 .
5487
- #: ./modules/mycred-module-hooks.php:635 ../modules/mycred-module-hooks.php:651 ..
5488
- #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:726 ..
5489
- #: modules/mycred-module-hooks.php:1519 ../modules/mycred-module-hooks.php:1536 .
5490
- #: ./modules/mycred-module-hooks.php:1553
5491
  msgid "Content Author"
5492
  msgstr ""
5493
 
5494
- #: ../modules/mycred-module-hooks.php:625
5495
  #, php-format
5496
  msgid "%plural% for viewing Pages"
5497
  msgstr ""
5498
 
5499
- #: ../modules/mycred-module-hooks.php:700
5500
  #, php-format
5501
  msgid "%plural% for viewing %s"
5502
  msgstr ""
5503
 
5504
- #: ../modules/mycred-module-hooks.php:1023
5505
  #, php-format
5506
  msgid "%plural% for Posts"
5507
  msgstr ""
5508
 
5509
- #: ../modules/mycred-module-hooks.php:1040
5510
  #, php-format
5511
  msgid "%plural% for Pages"
5512
  msgstr ""
5513
 
5514
- #: ../modules/mycred-module-hooks.php:1087
5515
  #, php-format
5516
  msgid "%plural% for %s"
5517
  msgstr ""
5518
 
5519
- #: ../modules/mycred-module-hooks.php:1510
5520
  msgid ""
5521
  "%plural% are only awarded when your website has been synced with the Disqus "
5522
  "server!"
5523
  msgstr ""
5524
 
5525
- #: ../modules/mycred-module-hooks.php:1515 ../modules/mycred-module-hooks.php:
5526
- #: 1532 ../modules/mycred-module-hooks.php:1549
5527
  msgid "Comment Author"
5528
  msgstr ""
5529
 
5530
- #: ../modules/mycred-module-hooks.php:1529
5531
  msgid "Comment Marked SPAM"
5532
  msgstr ""
5533
 
5534
- #: ../modules/mycred-module-hooks.php:1546
5535
  msgid "Trashed / Unapproved Comments"
5536
  msgstr ""
5537
 
5538
- #: ../modules/mycred-module-hooks.php:1566
5539
  msgid "Limit per post"
5540
  msgstr ""
5541
 
5542
- #: ../modules/mycred-module-hooks.php:1568
5543
  msgid ""
5544
  "The number of comments per post that grants %_plural% to the comment author. "
5545
  "Use zero for unlimited."
5546
  msgstr ""
5547
 
5548
- #: ../modules/mycred-module-hooks.php:1572
5549
  msgid "Limit per day"
5550
  msgstr ""
5551
 
5552
- #: ../modules/mycred-module-hooks.php:1574
5553
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5554
  msgstr ""
5555
 
5556
- #: ../modules/mycred-module-hooks.php:1579
5557
  msgid ""
5558
  "%plural% is to be awarded even when comment authors reply to their own "
5559
  "comment."
5560
  msgstr ""
5561
 
5562
- #: ../modules/mycred-module-hooks.php:1650
5563
  msgid "Once for each unique URL"
5564
  msgstr ""
5565
 
5566
- #: ../modules/mycred-module-hooks.php:1651
5567
  msgid "Once for each unique link id"
5568
  msgstr ""
5569
 
5570
- #: ../modules/mycred-module-hooks.php:1844
5571
  msgid ""
5572
  "The default amount to award for clicking on links. You can override this in "
5573
  "the shortcode."
5574
  msgstr ""
5575
 
5576
- #: ../modules/mycred-module-hooks.php:1851
5577
  #, php-format
5578
  msgid "Custom tags: %url%, %title% or %id%."
5579
  msgstr ""
5580
 
5581
- #: ../modules/mycred-module-hooks.php:1862 ../modules/mycred-module-hooks.php:2898
5582
  msgid "Note!"
5583
  msgstr ""
5584
 
5585
- #: ../modules/mycred-module-hooks.php:1862
5586
  msgid ""
5587
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5588
  "generate one automatically based on the value set under href. If you are "
@@ -5590,418 +5600,418 @@ msgid ""
5590
  "by ID."
5591
  msgstr ""
5592
 
5593
- #: ../modules/mycred-module-hooks.php:1864 ../modules/mycred-module-hooks.php:2220
5594
  msgid "Available Shortcode"
5595
  msgstr ""
5596
 
5597
- #: ../modules/mycred-module-hooks.php:2184
5598
  msgid "Amount to award for viewing videos."
5599
  msgstr ""
5600
 
5601
- #: ../modules/mycred-module-hooks.php:2194
5602
  msgid "Award Logic"
5603
  msgstr ""
5604
 
5605
- #: ../modules/mycred-module-hooks.php:2196
5606
  #, php-format
5607
  msgid "Select when %_plural% should be awarded or deducted."
5608
  msgstr ""
5609
 
5610
- #: ../modules/mycred-module-hooks.php:2197
5611
  msgid "Play - As soon as video starts playing."
5612
  msgstr ""
5613
 
5614
- #: ../modules/mycred-module-hooks.php:2198
5615
  msgid "Full - First when the entire video has played."
5616
  msgstr ""
5617
 
5618
- #: ../modules/mycred-module-hooks.php:2199
5619
  msgid "Interval - For each x number of seconds watched."
5620
  msgstr ""
5621
 
5622
- #: ../modules/mycred-module-hooks.php:2204
5623
  msgid "Number of seconds"
5624
  msgstr ""
5625
 
5626
- #: ../modules/mycred-module-hooks.php:2211
5627
  msgid "Leniency"
5628
  msgstr ""
5629
 
5630
- #: ../modules/mycred-module-hooks.php:2213
5631
  msgid ""
5632
  "The maximum percentage a users view of a movie can differ from the actual "
5633
  "length."
5634
  msgstr ""
5635
 
5636
- #: ../modules/mycred-module-hooks.php:2216
5637
  msgid ""
5638
  "Do not set this value to zero! A lot of thing can happen while a user "
5639
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5640
  "buffering or play back errors."
5641
  msgstr ""
5642
 
5643
- #: ../modules/mycred-module-hooks.php:2284
5644
  msgid "Affiliate Program"
5645
  msgstr ""
5646
 
5647
- #: ../modules/mycred-module-hooks.php:2293
5648
  msgid "Per Day"
5649
  msgstr ""
5650
 
5651
- #: ../modules/mycred-module-hooks.php:2443
5652
  msgid "Link"
5653
  msgstr ""
5654
 
5655
- #: ../modules/mycred-module-hooks.php:2447
5656
  msgid "Visitors Referred"
5657
  msgstr ""
5658
 
5659
- #: ../modules/mycred-module-hooks.php:2451
5660
  msgid "Signups Referred"
5661
  msgstr ""
5662
 
5663
- #: ../modules/mycred-module-hooks.php:2779 ../plugins/mycred-hook-affiliatewp.php:
5664
  #: 231
5665
  msgid "Referring Visitors"
5666
  msgstr ""
5667
 
5668
- #: ../modules/mycred-module-hooks.php:2803 ../modules/mycred-module-hooks.php:2832
5669
- msgid "The number of referrals each member can make. Use zero for unlimited."
5670
- msgstr ""
5671
-
5672
- #: ../modules/mycred-module-hooks.php:2807 ../modules/mycred-module-hooks.php:2836
5673
  msgid "Referring Signups"
5674
  msgstr ""
5675
 
5676
- #: ../modules/mycred-module-hooks.php:2811
5677
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5678
  msgstr ""
5679
 
5680
- #: ../modules/mycred-module-hooks.php:2838
5681
  msgid "Registrations are disabled."
5682
  msgstr ""
5683
 
5684
- #: ../modules/mycred-module-hooks.php:2846
5685
  msgid "Referral Links"
5686
  msgstr ""
5687
 
5688
- #: ../modules/mycred-module-hooks.php:2850
5689
  msgid "Assign numeric referral IDs to each user."
5690
  msgstr ""
5691
 
5692
- #: ../modules/mycred-module-hooks.php:2851 ../modules/mycred-module-hooks.php:2857
5693
  msgid "Example"
5694
  msgstr ""
5695
 
5696
- #: ../modules/mycred-module-hooks.php:2856
5697
  msgid "Assign usernames as IDs for each user."
5698
  msgstr ""
5699
 
5700
- #: ../modules/mycred-module-hooks.php:2860
5701
  msgid "IP Limit"
5702
  msgstr ""
5703
 
5704
- #: ../modules/mycred-module-hooks.php:2864
5705
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5706
  msgstr ""
5707
 
5708
- #: ../modules/mycred-module-hooks.php:2868 ../modules/mycred-module-hooks.php:2902
5709
  msgid "BuddyPress Profile"
5710
  msgstr ""
5711
 
5712
- #: ../modules/mycred-module-hooks.php:2871
5713
  msgid "Insert Link in users Profile"
5714
  msgstr ""
5715
 
5716
- #: ../modules/mycred-module-hooks.php:2872
5717
  msgid ""
5718
  "Option to inser the referral link in users profiles. Links will only be "
5719
  "visible to users viewing their own profiles or administrators."
5720
  msgstr ""
5721
 
5722
- #: ../modules/mycred-module-hooks.php:2878
5723
  msgid "Leave empty to hide."
5724
  msgstr ""
5725
 
5726
- #: ../modules/mycred-module-hooks.php:2881
5727
  msgid "Description"
5728
  msgstr ""
5729
 
5730
- #: ../modules/mycred-module-hooks.php:2882
5731
  msgid "Optional description to insert under the link."
5732
  msgstr ""
5733
 
5734
- #: ../modules/mycred-module-hooks.php:2895
5735
  msgid "Profile Positioning"
5736
  msgstr ""
5737
 
5738
- #: ../modules/mycred-module-hooks.php:2897
5739
  msgid ""
5740
  "You can move around the referral link on your users profile by changing the "
5741
  "position. Increase to move up, decrease to move down."
5742
  msgstr ""
5743
 
5744
- #: ../modules/mycred-module-hooks.php:2898
5745
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5746
  msgstr ""
5747
 
5748
- #: ../modules/mycred-module-hooks.php:2904
5749
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5750
  msgstr ""
5751
 
5752
- #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5753
- #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5754
  msgid "Access denied for this action"
5755
  msgstr ""
5756
 
5757
- #: ../modules/mycred-module-log.php:196
5758
  msgid "Row Deleted"
5759
  msgstr ""
5760
 
5761
- #: ../modules/mycred-module-log.php:223
5762
  msgid "Log entry not found"
5763
  msgstr ""
5764
 
5765
- #: ../modules/mycred-module-log.php:236
5766
  msgid "Entry Updated"
5767
  msgstr ""
5768
 
5769
- #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:585
5770
  msgid "Entries"
5771
  msgstr ""
5772
 
5773
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:400 ..
5774
- #: modules/mycred-module-log.php:650 ../modules/mycred-module-settings.php:722
5775
  msgid "Export"
5776
  msgstr ""
5777
 
5778
- #: ../modules/mycred-module-log.php:311
5779
  msgid "Search results for"
5780
  msgstr ""
5781
 
5782
- #: ../modules/mycred-module-log.php:379
5783
  #, php-format
5784
  msgid "%s Log"
5785
  msgstr ""
5786
 
5787
- #: ../modules/mycred-module-log.php:390
5788
  msgid ""
5789
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
5790
  "Certain hooks and shortcodes will not work correctly!"
5791
  msgstr ""
5792
 
5793
- #: ../modules/mycred-module-log.php:522
5794
  msgid "Edit"
5795
  msgstr ""
5796
 
5797
- #: ../modules/mycred-module-log.php:563
5798
  msgid "Time"
5799
  msgstr ""
5800
 
5801
- #: ../modules/mycred-module-log.php:567
5802
  msgid "Current Log Entry"
5803
  msgstr ""
5804
 
5805
- #: ../modules/mycred-module-log.php:569
5806
  msgid "The current saved log entry"
5807
  msgstr ""
5808
 
5809
- #: ../modules/mycred-module-log.php:572
5810
  msgid "Adjust Log Entry"
5811
  msgstr ""
5812
 
5813
- #: ../modules/mycred-module-log.php:574
5814
  msgid "The new log entry"
5815
  msgstr ""
5816
 
5817
- #: ../modules/mycred-module-log.php:577
5818
  msgid "Update Log Entry"
5819
  msgstr ""
5820
 
5821
- #: ../modules/mycred-module-log.php:644
5822
  #, php-format
5823
  msgid "My %s History"
5824
  msgstr ""
5825
 
5826
- #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
5827
- #: 106 ../modules/mycred-module-settings.php:158
5828
  msgid "Missing point type"
5829
  msgstr ""
5830
 
5831
- #: ../modules/mycred-module-settings.php:137
5832
  msgid "Accounts successfully reset"
5833
  msgstr ""
5834
 
5835
- #: ../modules/mycred-module-settings.php:184
5836
  msgid "No users found to export"
5837
  msgstr ""
5838
 
5839
- #: ../modules/mycred-module-settings.php:234
5840
  msgid "Invalid decimal value."
5841
  msgstr ""
5842
 
5843
- #: ../modules/mycred-module-settings.php:281
5844
  msgid "Log Updated"
5845
  msgstr ""
5846
 
5847
- #: ../modules/mycred-module-settings.php:397
5848
  msgid "Update Database"
5849
  msgstr ""
5850
 
5851
- #: ../modules/mycred-module-settings.php:398
5852
  msgid "Zero for no decimals or maximum 20."
5853
  msgstr ""
5854
 
5855
- #: ../modules/mycred-module-settings.php:401 ../modules/mycred-module-settings.
5856
- #: php:498
5857
  msgid "Tip"
5858
  msgstr ""
5859
 
5860
- #: ../modules/mycred-module-settings.php:401
5861
  msgid ""
5862
  "As this is your main point type, the value you select here will be the "
5863
  "largest number of decimals your installation will support."
5864
  msgstr ""
5865
 
5866
- #: ../modules/mycred-module-settings.php:414 ../modules/mycred-module-settings.
5867
- #: php:427
5868
  msgid "No decimals"
5869
  msgstr ""
5870
 
5871
- #: ../modules/mycred-module-settings.php:439
5872
  #, php-format
5873
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
5874
  msgstr ""
5875
 
5876
- #: ../modules/mycred-module-settings.php:475
5877
  #, php-format
5878
  msgid "%s Settings"
5879
  msgstr ""
5880
 
5881
- #: ../modules/mycred-module-settings.php:478
5882
  msgid "Adjust your core or add-on settings."
5883
  msgstr ""
5884
 
5885
- #: ../modules/mycred-module-settings.php:483
5886
  msgid "Core Settings"
5887
  msgstr ""
5888
 
5889
- #: ../modules/mycred-module-settings.php:485
5890
  msgid "Name"
5891
  msgstr ""
5892
 
5893
- #: ../modules/mycred-module-settings.php:490
5894
  #, php-format
5895
  msgid "Accessible though the %singular% template tag."
5896
  msgstr ""
5897
 
5898
- #: ../modules/mycred-module-settings.php:495
5899
  msgid "Accessible though the %plural% template tag."
5900
  msgstr ""
5901
 
5902
- #: ../modules/mycred-module-settings.php:498
5903
  msgid ""
5904
  "Adding an underscore at the beginning of template tag for names will return "
5905
  "them in lowercase. i.e. %_singular%"
5906
  msgstr ""
5907
 
5908
- #: ../modules/mycred-module-settings.php:520
5909
  msgid "Separator"
5910
  msgid_plural "Separators"
5911
  msgstr[0] ""
5912
  msgstr[1] ""
5913
 
5914
- #: ../modules/mycred-module-settings.php:527
5915
  msgid "Edit Settings"
5916
  msgstr ""
5917
 
5918
- #: ../modules/mycred-module-settings.php:529 ../modules/mycred-module-settings.
5919
- #: php:534
5920
  msgid "Capability to check for."
5921
  msgstr ""
5922
 
5923
- #: ../modules/mycred-module-settings.php:532
5924
  msgid "Edit Users %plural%"
5925
  msgstr ""
5926
 
5927
- #: ../modules/mycred-module-settings.php:556
5928
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
5929
  msgstr ""
5930
 
5931
- #: ../modules/mycred-module-settings.php:576
5932
  msgid "Management"
5933
  msgstr ""
5934
 
5935
- #: ../modules/mycred-module-settings.php:578
5936
  msgid "The Log"
5937
  msgstr ""
5938
 
5939
- #: ../modules/mycred-module-settings.php:581
5940
  msgid "Table Name"
5941
  msgstr ""
5942
 
5943
- #: ../modules/mycred-module-settings.php:590
5944
  msgid "Empty Log"
5945
  msgstr ""
5946
 
5947
- #: ../modules/mycred-module-settings.php:605
5948
  msgid "Set all to zero"
5949
  msgstr ""
5950
 
5951
- #: ../modules/mycred-module-settings.php:605
5952
  msgid "CSV Export"
5953
  msgstr ""
5954
 
5955
- #: ../modules/mycred-module-settings.php:625
5956
  msgid "Default"
5957
  msgstr ""
5958
 
5959
- #: ../modules/mycred-module-settings.php:628 ../modules/mycred-module-settings.
5960
- #: php:647 ../modules/mycred-module-settings.php:669
5961
  msgid "Meta Key"
5962
  msgstr ""
5963
 
5964
- #: ../modules/mycred-module-settings.php:666
5965
  msgid "Add New Type"
5966
  msgstr ""
5967
 
5968
- #: ../modules/mycred-module-settings.php:671
5969
  msgid "A unique ID for this type."
5970
  msgstr ""
5971
 
5972
- #: ../modules/mycred-module-settings.php:676
5973
  msgid "Menu and page title."
5974
  msgstr ""
5975
 
5976
- #: ../modules/mycred-module-settings.php:679
5977
  msgid ""
5978
  "The meta key must be lowercase and only contain letters or underscores. All "
5979
  "other characters will be deleted!"
5980
  msgstr ""
5981
 
5982
- #: ../modules/mycred-module-settings.php:700
5983
  msgid "Identify users by"
5984
  msgstr ""
5985
 
5986
- #: ../modules/mycred-module-settings.php:706
 
 
 
 
5987
  msgid "User Email"
5988
  msgstr ""
5989
 
5990
- #: ../modules/mycred-module-settings.php:707
5991
  msgid "User Login"
5992
  msgstr ""
5993
 
5994
- #: ../modules/mycred-module-settings.php:714
5995
  msgid ""
5996
  "Use ID if you intend to use this export as a backup of your current site "
5997
  "while Email is recommended if you want to export to a different site."
5998
  msgstr ""
5999
 
6000
- #: ../modules/mycred-module-settings.php:717
6001
  msgid "Import Log Entry"
6002
  msgstr ""
6003
 
6004
- #: ../modules/mycred-module-settings.php:719
6005
  #, php-format
6006
  msgid ""
6007
  "Optional log entry to use if you intend to import this file in a different "
@@ -6098,54 +6108,54 @@ msgstr ""
6098
  msgid "Awards %_plural% for bbPress actions."
6099
  msgstr ""
6100
 
6101
- #: ../plugins/mycred-hook-bbPress.php:407
6102
  #, php-format
6103
  msgid "%plural% for New Forum"
6104
  msgstr ""
6105
 
6106
- #: ../plugins/mycred-hook-bbPress.php:424
6107
  #, php-format
6108
  msgid "%plural% for Forum Deletion"
6109
  msgstr ""
6110
 
6111
- #: ../plugins/mycred-hook-bbPress.php:437 ../plugins/mycred-hook-simplepress.php:
6112
  #: 278
6113
  #, php-format
6114
  msgid "%plural% for New Topic"
6115
  msgstr ""
6116
 
6117
- #: ../plugins/mycred-hook-bbPress.php:455
6118
  #, php-format
6119
  msgid "Forum authors can receive %_plural% for creating new topics."
6120
  msgstr ""
6121
 
6122
- #: ../plugins/mycred-hook-bbPress.php:459 ../plugins/mycred-hook-simplepress.php:
6123
  #: 295
6124
  #, php-format
6125
  msgid "%plural% for Topic Deletion"
6126
  msgstr ""
6127
 
6128
- #: ../plugins/mycred-hook-bbPress.php:472
6129
  #, php-format
6130
  msgid "%plural% for Favorited Topic"
6131
  msgstr ""
6132
 
6133
- #: ../plugins/mycred-hook-bbPress.php:489
6134
  #, php-format
6135
  msgid "%plural% for New Reply"
6136
  msgstr ""
6137
 
6138
- #: ../plugins/mycred-hook-bbPress.php:507
6139
  #, php-format
6140
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
6141
  msgstr ""
6142
 
6143
- #: ../plugins/mycred-hook-bbPress.php:511
6144
  #, php-format
6145
  msgid "Show users %_plural% balance in replies"
6146
  msgstr ""
6147
 
6148
- #: ../plugins/mycred-hook-bbPress.php:515
6149
  #, php-format
6150
  msgid "%plural% for Reply Deletion"
6151
  msgstr ""
@@ -6481,7 +6491,7 @@ msgid "Comment Subscriptions"
6481
  msgstr ""
6482
 
6483
  #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6484
- #: php:63
6485
  msgid "Reward with %plural%"
6486
  msgstr ""
6487
 
@@ -6525,11 +6535,11 @@ msgstr ""
6525
  msgid "%plural% for Topic Post Deletion"
6526
  msgstr ""
6527
 
6528
- #: ../plugins/mycred-hook-woocommerce.php:193
6529
  msgid "WooCommerce Product Reviews"
6530
  msgstr ""
6531
 
6532
- #: ../plugins/mycred-hook-woocommerce.php:194
6533
  #, php-format
6534
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6535
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Apr 08 2015 17:01:15 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
+ "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
+ "me>\n"
10
  "Language: English\n"
11
  "Plural-Forms: nplurals=2; plural=n != 1\n"
12
  "MIME-Version: 1.0\n"
43
  msgstr ""
44
 
45
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
46
+ #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
+ #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
103
  msgstr ""
104
 
105
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
106
+ #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
107
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
108
  msgid "Setup"
109
  msgstr ""
110
 
111
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
112
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
113
+ #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
114
+ #: module-settings.php:22 ../modules/mycred-module-settings.php:23
115
  msgid "Settings"
116
  msgstr ""
117
 
121
  "anything goes wrong!"
122
  msgstr ""
123
 
 
 
 
 
124
  #: ../abstracts/mycred-abstract-hook.php:83
125
  msgid "This Hook has no settings"
126
  msgstr ""
127
 
128
+ #: ../abstracts/mycred-abstract-hook.php:226 ../abstracts/mycred-abstract-hook.
129
+ #: php:293 ../includes/mycred-functions.php:2641 ../modules/mycred-module-hooks.
130
+ #: php:1809
131
  msgid "No limit"
132
  msgstr ""
133
 
134
+ #: ../abstracts/mycred-abstract-hook.php:227
135
  msgid "/ Day"
136
  msgstr ""
137
 
138
+ #: ../abstracts/mycred-abstract-hook.php:228
139
  msgid "/ Week"
140
  msgstr ""
141
 
142
+ #: ../abstracts/mycred-abstract-hook.php:229
143
  msgid "/ Month"
144
  msgstr ""
145
 
146
+ #: ../abstracts/mycred-abstract-hook.php:230
147
  msgid "in Total"
148
  msgstr ""
149
 
150
+ #: ../abstracts/mycred-abstract-hook.php:294
151
  msgid "Once every 24 hours"
152
  msgstr ""
153
 
154
+ #: ../abstracts/mycred-abstract-hook.php:295
155
  msgid "Once every 7 days"
156
  msgstr ""
157
 
158
+ #: ../abstracts/mycred-abstract-hook.php:296
159
  msgid "Once per day (reset at midnight)"
160
  msgstr ""
161
 
162
+ #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
163
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
164
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
165
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
166
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
167
+ #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
168
+ #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992
169
  msgid "Select"
170
  msgstr ""
171
 
173
  msgid "myCRED_Module() Error. A Module ID is required!"
174
  msgstr ""
175
 
176
+ #: ../abstracts/mycred-abstract-module.php:350 ../abstracts/mycred-abstract-
177
+ #: module.php:358
178
  msgid "Surprise"
179
  msgstr ""
180
 
181
+ #: ../abstracts/mycred-abstract-module.php:445 ../includes/mycred-network.php:83
182
  msgid "click to close"
183
  msgstr ""
184
 
185
+ #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:84
186
  msgid "click to open"
187
  msgstr ""
188
 
189
+ #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
190
+ #: buy-creds.php:884
191
  msgid "Settings Updated"
192
  msgstr ""
193
 
194
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
195
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
196
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
197
+ #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
198
+ #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
199
+ #: badges.php:395
200
  msgid "Badges"
201
  msgstr ""
202
 
205
  msgid "Badges (%d)"
206
  msgstr ""
207
 
208
+ #: ../addons/badges/myCRED-addon-badges.php:260
209
  #, php-format
210
  msgid "%d Users earned this badge."
211
  msgstr ""
212
 
213
+ #: ../addons/badges/myCRED-addon-badges.php:264
214
  msgid "No users has yet earned this badge."
215
  msgstr ""
216
 
217
+ #: ../addons/badges/myCRED-addon-badges.php:287
218
+ msgid "No connections where removed."
219
+ msgstr ""
220
+
221
+ #: ../addons/badges/myCRED-addon-badges.php:289
222
  #, php-format
223
  msgid "%s connections where removed."
224
  msgstr ""
225
 
226
+ #: ../addons/badges/myCRED-addon-badges.php:384
227
  msgid "Badge"
228
  msgstr ""
229
 
230
+ #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
231
+ #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
232
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
233
+ #: addons/ranks/myCRED-addon-ranks.php:448
234
  msgid "Add New"
235
  msgstr ""
236
 
237
+ #: ../addons/badges/myCRED-addon-badges.php:386
238
  msgid "Add New Badge"
239
  msgstr ""
240
 
241
+ #: ../addons/badges/myCRED-addon-badges.php:387
242
  msgid "Edit Badge"
243
  msgstr ""
244
 
245
+ #: ../addons/badges/myCRED-addon-badges.php:388
246
  msgid "New Badge"
247
  msgstr ""
248
 
249
+ #: ../addons/badges/myCRED-addon-badges.php:390
250
  msgid "View Badge"
251
  msgstr ""
252
 
253
+ #: ../addons/badges/myCRED-addon-badges.php:391
254
  msgid "Search Badge"
255
  msgstr ""
256
 
257
+ #: ../addons/badges/myCRED-addon-badges.php:392
258
  msgid "No badges found"
259
  msgstr ""
260
 
261
+ #: ../addons/badges/myCRED-addon-badges.php:393
262
  msgid "No badges found in Trash"
263
  msgstr ""
264
 
265
+ #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
266
+ #: badges.php:541
267
  msgid "Badge Name"
268
  msgstr ""
269
 
270
+ #: ../addons/badges/myCRED-addon-badges.php:440
271
  msgid "Badge Images"
272
  msgstr ""
273
 
274
+ #: ../addons/badges/myCRED-addon-badges.php:441
275
  msgid "Requirements"
276
  msgstr ""
277
 
278
+ #: ../addons/badges/myCRED-addon-badges.php:442 ../addons/ranks/myCRED-addon-
279
+ #: ranks.php:1042 ../modules/mycred-module-settings.php:636
280
  msgid "Users"
281
  msgstr ""
282
 
283
+ #: ../addons/badges/myCRED-addon-badges.php:481
284
  msgid "A user must have gained or lost:"
285
  msgstr ""
286
 
287
+ #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
288
+ #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
289
+ #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
290
+ #: badges.php:526
291
  msgid "Badge Updated."
292
  msgstr ""
293
 
294
+ #: ../addons/badges/myCRED-addon-badges.php:522
295
  msgid "Badge Enabled"
296
  msgstr ""
297
 
298
+ #: ../addons/badges/myCRED-addon-badges.php:523
299
  msgid "Badge Saved"
300
  msgstr ""
301
 
302
+ #: ../addons/badges/myCRED-addon-badges.php:555
303
  msgid "Badge Setup"
304
  msgstr ""
305
 
306
+ #: ../addons/badges/myCRED-addon-badges.php:582
307
  msgid "Assign Badge"
308
  msgstr ""
309
 
310
+ #: ../addons/badges/myCRED-addon-badges.php:583
311
  msgid "Remove Connections"
312
  msgstr ""
313
 
314
+ #: ../addons/badges/myCRED-addon-badges.php:638
315
  msgid "Time(s)"
316
  msgstr ""
317
 
318
+ #: ../addons/badges/myCRED-addon-badges.php:639
319
  msgid "In total"
320
  msgstr ""
321
 
322
+ #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
323
+ #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
324
+ #: addons/badges/myCRED-addon-badges.php:846
325
  msgid "Badge Image"
326
  msgstr ""
327
 
328
+ #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
329
+ #: badges.php:672
330
  msgid "Set badge image"
331
  msgstr ""
332
 
333
+ #: ../addons/badges/myCRED-addon-badges.php:682
334
  msgid "Default Image"
335
  msgstr ""
336
 
337
+ #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
338
+ #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
339
+ #: addons/badges/myCRED-addon-badges.php:831
340
  msgid "image url"
341
  msgstr ""
342
 
343
+ #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
344
+ #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
345
+ #: addons/badges/myCRED-addon-badges.php:831
346
  msgid "Add Image"
347
  msgstr ""
348
 
349
+ #: ../addons/badges/myCRED-addon-badges.php:685
350
  msgid "Optional image to show when a user has not yet earned this badge."
351
  msgstr ""
352
 
353
+ #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
354
+ #: badges.php:756
355
  #, php-format
356
  msgid "Level %d"
357
  msgstr ""
358
 
359
+ #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
360
+ #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
361
  msgid "for"
362
  msgstr ""
363
 
364
+ #: ../addons/badges/myCRED-addon-badges.php:740
365
  msgid "Main Image"
366
  msgstr ""
367
 
368
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
369
+ #: badges.php:831
370
  msgid "Leave empty if you do not want to assign a custom image for this level."
371
  msgstr ""
372
 
373
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
374
+ #: badges.php:831
375
  msgid "Remove this level"
376
  msgstr ""
377
 
378
+ #: ../addons/badges/myCRED-addon-badges.php:788
379
  msgid "Add Level"
380
  msgstr ""
381
 
382
+ #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
383
+ #: badges.php:1154
384
  msgid "Level"
385
  msgstr ""
386
 
387
+ #: ../addons/badges/myCRED-addon-badges.php:848
388
  msgid "Use as Badge"
389
  msgstr ""
390
 
391
+ #: ../addons/badges/myCRED-addon-badges.php:970 ../addons/badges/myCRED-addon-
392
+ #: badges.php:1001 ../addons/gateway/carts/mycred-woocommerce.php:152 ..
393
+ #: modules/mycred-module-buddypress.php:417
394
  msgid "Do not show"
395
  msgstr ""
396
 
397
+ #: ../addons/badges/myCRED-addon-badges.php:971 ../modules/mycred-module-
398
+ #: buddypress.php:418
399
  msgid "Include in Profile Header"
400
  msgstr ""
401
 
402
+ #: ../addons/badges/myCRED-addon-badges.php:972 ../addons/ranks/myCRED-addon-
403
+ #: ranks.php:1407 ../modules/mycred-module-buddypress.php:419
404
  msgid "Include under the \"Profile\" tab"
405
  msgstr ""
406
 
407
+ #: ../addons/badges/myCRED-addon-badges.php:973 ../modules/mycred-module-
408
+ #: buddypress.php:420
409
  msgid "Include under the \"Profile\" tab and Profile Header"
410
  msgstr ""
411
 
412
+ #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
413
+ #: badges.php:1017
414
  msgid "Show all badges, including badges users have not yet earned."
415
  msgstr ""
416
 
417
+ #: ../addons/badges/myCRED-addon-badges.php:1002 ../addons/ranks/myCRED-addon-
418
+ #: ranks.php:1452
419
  msgid "Include in Profile"
420
  msgstr ""
421
 
422
+ #: ../addons/badges/myCRED-addon-badges.php:1003
423
  msgid "Include in Forum Replies"
424
  msgstr ""
425
 
426
+ #: ../addons/badges/myCRED-addon-badges.php:1004
427
  msgid "Include in Profile and Forum Replies"
428
  msgstr ""
429
 
430
+ #: ../addons/badges/myCRED-addon-badges.php:1111
431
  msgid "User Badges"
432
  msgstr ""
433
 
434
+ #: ../addons/badges/myCRED-addon-badges.php:1116
435
  msgid ""
436
  "Here you can view the badges this user has earned and if needed, manually "
437
  "give or take away a badge from a user."
438
  msgstr ""
439
 
440
+ #: ../addons/badges/myCRED-addon-badges.php:1125
441
  msgid "Not earned"
442
  msgstr ""
443
 
444
+ #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
445
+ #: badges.php:1168
446
  msgid "Earned"
447
  msgstr ""
448
 
449
+ #: ../addons/badges/myCRED-addon-badges.php:1143
450
  msgid "No image"
451
  msgstr ""
452
 
453
+ #: ../addons/badges/myCRED-addon-badges.php:1150
454
  msgid "Select a level"
455
  msgstr ""
456
 
457
+ #: ../addons/badges/myCRED-addon-badges.php:1165 ../addons/email-notices/myCRED-
458
+ #: addon-email-notices.php:810
459
  msgid "Status"
460
  msgstr ""
461
 
462
+ #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
463
+ #: addon-email-notices.php:1293
464
  msgid "Save Changes"
465
  msgstr ""
466
 
467
+ #: ../addons/badges/includes/mycred-badge-functions.php:68
468
  #, php-format
469
  msgid "Level %s"
470
  msgstr ""
471
 
472
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
473
  #, php-format
474
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
475
  msgid "%s for %s %s - %s"
476
  msgstr ""
477
 
478
+ #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
479
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
480
  #: coupons.php:469
481
  #, php-format
484
  msgstr[0] ""
485
  msgstr[1] ""
486
 
487
+ #: ../addons/badges/includes/mycred-badge-functions.php:73
488
  #, php-format
489
  msgctxt "\"x points\" for \"reference\" in total"
490
  msgid "%s for %s in total"
526
  msgstr ""
527
 
528
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
529
+ #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
530
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
531
+ #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
532
+ #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
533
+ #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
534
  msgid "Access Denied"
535
  msgstr ""
536
 
552
  msgstr ""
553
 
554
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
555
+ #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
556
  msgid "Enable"
557
  msgstr ""
558
 
559
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
560
+ #: php:240
561
  msgid "Update Changes"
562
  msgstr ""
563
 
674
 
675
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
676
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
677
+ #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
678
+ #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
679
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
680
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
681
+ #: addons/gateway/carts/mycred-woocommerce.php:104 ..
682
+ #: addons/gateway/carts/mycred-woocommerce.php:176 ..
683
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
684
+ #: hooks.php:1004 ../modules/mycred-module-hooks.php:2025 ../modules/mycred-
685
+ #: module-hooks.php:2395 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-
686
+ #: hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-
687
+ #: hook-events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.
688
+ #: php:209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
689
+ #: gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:321 ..
690
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
691
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
692
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
733
  msgstr ""
734
 
735
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
736
+ #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
737
  #: content.php:114
738
  msgid "Leave empty to use the default value."
739
  msgstr ""
746
  msgid "Exclude from receiving interest"
747
  msgstr ""
748
 
749
+ #: ../addons/banking/services/mycred-bank-service-interest.php:673
750
  msgid "Compound interest rate saved."
751
  msgstr ""
752
 
753
+ #: ../addons/banking/services/mycred-bank-service-interest.php:675
754
  msgid "User excluded from receiving interest."
755
  msgstr ""
756
 
757
+ #: ../addons/banking/services/mycred-bank-service-interest.php:677
758
  msgid "User included in receiving interest."
759
  msgstr ""
760
 
763
  msgstr ""
764
 
765
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
766
+ #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
767
+ #: modules/mycred-module-log.php:277
768
  msgid "History"
769
  msgstr ""
770
 
781
  msgstr ""
782
 
783
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
784
+ #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
785
+ #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
786
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
787
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
788
+ #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
789
  #: plugins/mycred-hook-affiliatewp.php:256
790
  msgid "Amount"
791
  msgstr ""
792
 
793
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
794
+ #: modules/mycred-module-hooks.php:2410
795
  msgid "Interval"
796
  msgstr ""
797
 
814
  "when it gets re-activated. Set cycles to zero to reset."
815
  msgstr ""
816
 
817
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
818
+ #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
819
  msgid "Payment Gateways"
820
  msgstr ""
821
 
822
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
823
  msgctxt "Post Type General Name"
824
  msgid "Pending Payments"
825
  msgstr ""
826
 
827
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
828
  msgctxt "Post Type Singular Name"
829
  msgid "Pending Payment"
830
  msgstr ""
831
 
832
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
833
+ #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
834
  msgid "Pending Payments"
835
  msgstr ""
836
 
837
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
838
  msgid "Edit Pending Payment"
839
  msgstr ""
840
 
841
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
842
+ #: addon-buy-creds.php:1699
843
  msgid "No pending payments found"
844
  msgstr ""
845
 
846
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
847
  msgid "Not found in Trash"
848
  msgstr ""
849
 
850
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
851
+ #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
852
  msgid "Transaction ID"
853
  msgstr ""
854
 
855
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
856
+ #: addon-buy-creds.php:1025
857
  msgid "Buyer"
858
  msgstr ""
859
 
860
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
861
+ #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
862
  #: gateway.php:594
863
  msgid "Cost"
864
  msgstr ""
865
 
866
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
867
+ #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
868
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
869
  msgid "Gateway"
870
  msgstr ""
871
 
872
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
873
  msgid "Type"
874
  msgstr ""
875
 
876
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
877
  msgid "Pay Out"
878
  msgstr ""
879
 
880
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
881
  msgid "buyCRED Purchase Log"
882
  msgstr ""
883
 
884
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
885
+ #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
886
  msgid "Purchase Log"
887
  msgstr ""
888
 
889
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
890
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
891
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
892
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
893
  msgid "Payments"
894
  msgstr ""
895
 
896
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
897
  msgid "Please login to purchase %_plural%"
898
  msgstr ""
899
 
900
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
901
  #, php-format
902
  msgid "Gift purchase from %display_name%."
903
  msgstr ""
904
 
905
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
906
+ #: addon-ranks.php:1084
907
  msgid "Minimum %plural%"
908
  msgstr ""
909
 
910
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
911
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
912
  msgstr ""
913
 
914
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
915
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
916
+ #: module-settings.php:656
917
  msgid "Point Types"
918
  msgstr ""
919
 
920
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
921
  msgid "Select the point types that users can buy. You must select at least one!"
922
  msgstr ""
923
 
924
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
925
  msgid "Login Template"
926
  msgstr ""
927
 
928
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
929
  msgid "Content to show when a user is not logged in."
930
  msgstr ""
931
 
932
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
933
  msgid "Thank You Page"
934
  msgstr ""
935
 
936
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
937
+ #: addon-buy-creds.php:668
938
  msgid "Custom URL"
939
  msgstr ""
940
 
941
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
942
+ #: addon-buy-creds.php:673
943
  msgid "Page"
944
  msgstr ""
945
 
946
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
947
  msgid "Cancellation Page"
948
  msgstr ""
949
 
950
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
951
  msgid "Show seperate log for %_plural% purchases."
952
  msgstr ""
953
 
954
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
955
  msgid "Gifting"
956
  msgstr ""
957
 
958
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
959
  #, php-format
960
  msgid "Allow users to buy %_plural% for other users."
961
  msgstr ""
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
964
  #, php-format
965
  msgid "Allow users to buy %_plural% for content authors."
966
  msgstr ""
967
 
968
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
969
+ #: hooks.php:3110
970
  msgid "Available Shortcodes"
971
  msgstr ""
972
 
973
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
974
  #, php-format
975
  msgid "%s Exchange Rate"
976
  msgstr ""
977
 
978
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
979
  msgid "Save Exchange Rates"
980
  msgstr ""
981
 
982
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
983
  msgid "Exchange rate override saved"
984
  msgstr ""
985
 
986
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
987
  msgid "Payment completed"
988
  msgstr ""
989
 
990
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
991
  #, php-format
992
  msgid "%s Payment Gateways"
993
  msgstr ""
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
996
+ #: addon-buy-creds.php:1034
997
  msgid "buyCRED Settings"
998
  msgstr ""
999
 
1000
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1001
  msgid "Test Mode"
1002
  msgstr ""
1003
 
1004
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1005
  msgid "Enabled"
1006
  msgstr ""
1007
 
1008
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1009
  msgid "Disabled"
1010
  msgstr ""
1011
 
1012
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1013
  msgid "Sandbox Mode"
1014
  msgstr ""
1015
 
1016
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1017
  msgid "Enable for test purchases."
1018
  msgstr ""
1019
 
1020
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1021
+ #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1022
  msgid "Update Settings"
1023
  msgstr ""
1024
 
1025
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1026
  msgid "More Gateways"
1027
  msgstr ""
1028
 
1029
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1030
+ #: 666
1031
  msgid "Date"
1032
  msgstr ""
1033
 
1034
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1035
  msgid "Payed"
1036
  msgstr ""
1037
 
1038
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1039
  msgid "<strong>buy</strong>CRED Purchase Log"
1040
  msgstr ""
1041
 
1042
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1043
  #: booking/mycred-eventespresso3.php:367
1044
  msgid "Gateway Settings"
1045
  msgstr ""
1046
 
1047
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1048
  #: content/myCRED-addon-sell-content.php:1209
1049
  msgid "No purchases found"
1050
  msgstr ""
1051
 
1052
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1053
+ #: addon-buy-creds.php:1411
1054
  msgid "This Add-on needs to setup before you can use this shortcode."
1055
  msgstr ""
1056
 
1057
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1058
+ #: addon-buy-creds.php:1430
1059
  msgid "No gateways installed."
1060
  msgstr ""
1061
 
1062
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1063
+ #: addon-buy-creds.php:1431
1064
  msgid "Gateway does not exist."
1065
  msgstr ""
1066
 
1067
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1068
  msgid "Yourself"
1069
  msgstr ""
1070
 
1071
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1072
  msgid "No active gateways found."
1073
  msgstr ""
1074
 
1075
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1076
  msgid "The selected gateway is not active."
1077
  msgstr ""
1078
 
1079
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1080
  #, php-format
1081
  msgid "Buy with %gateway%"
1082
  msgstr ""
1083
 
1084
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1085
  #: content/myCRED-addon-sell-content.php:44
1086
  msgid "Buy Now"
1087
  msgstr ""
1088
 
1089
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1090
  msgid "No users found"
1091
  msgstr ""
1092
 
1093
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1094
  msgid "To"
1095
  msgstr ""
1096
 
1097
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1098
  msgid "Select Amount"
1099
  msgstr ""
1100
 
1101
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1102
  msgid "min."
1103
  msgstr ""
1104
 
1105
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1106
  msgid "Select Gateway"
1107
  msgstr ""
1108
 
1109
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1110
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1111
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1112
  #: php:35
1113
  msgid "Pay Now"
1114
  msgstr ""
1115
 
1116
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1117
+ #: php:536
1118
  msgid "Cancel"
1119
  msgstr ""
1120
 
1121
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1122
+ #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1123
+ #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1124
  msgid "Actions"
1125
  msgstr ""
1126
 
1252
  msgstr ""
1253
 
1254
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1255
+ #: addons/buy-creds/gateways/bitpay.php:233
1256
  msgid "Click here if you are not automatically redirected"
1257
  msgstr ""
1258
 
1312
  msgid "December"
1313
  msgstr ""
1314
 
1315
+ #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
1316
+ #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
1317
+ #: php:145 ../addons/buy-creds/gateways/skrill.php:124
 
 
 
 
 
 
1318
  #, php-format
1319
  msgid "Price mismatch. Expected: %s Received: %s"
1320
  msgstr ""
1321
 
1322
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
1323
+ #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
1324
  #, php-format
1325
  msgid "Currency mismatch. Expected: %s Received: %s"
1326
  msgstr ""
1327
 
1328
+ #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
1329
+ #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
1330
+ #: php:157 ../addons/buy-creds/gateways/skrill.php:136
1331
  #, php-format
1332
  msgid "Payment not completed. Received: %s"
1333
  msgstr ""
1334
 
1335
+ #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
1336
+ #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/paypal-standard.
1337
+ #: php:168 ../addons/buy-creds/gateways/skrill.php:147 ../addons/buy-
1338
+ #: creds/gateways/zombaio.php:185
1339
  msgid "Failed to credit users account."
1340
  msgstr ""
1341
 
1342
+ #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
1343
+ #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/paypal-standard.
1344
+ #: php:208 ../addons/buy-creds/gateways/skrill.php:187 ../addons/buy-
1345
+ #: creds/gateways/zombaio.php:214
1346
  msgid "Please setup this gateway before attempting to make a purchase!"
1347
  msgstr ""
1348
 
1349
+ #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
1350
+ #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
1351
+ #: ./addons/buy-creds/gateways/paypal-standard.php:268 ../addons/buy-
1352
+ #: creds/gateways/skrill.php:281 ../addons/buy-creds/gateways/zombaio.php:247
1353
  msgid "Processing payment &hellip;"
1354
  msgstr ""
1355
 
1356
+ #: ../addons/buy-creds/gateways/bitpay.php:219
1357
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1358
  msgstr ""
1359
 
1360
+ #: ../addons/buy-creds/gateways/bitpay.php:220
1361
  msgid "Bitpay returned the following error message:"
1362
  msgstr ""
1363
 
1364
+ #: ../addons/buy-creds/gateways/bitpay.php:253 ../includes/mycred-remote.php:551
1365
  msgid "API Key"
1366
  msgstr ""
1367
 
1368
+ #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1369
+ #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
1370
+ #: 300
1371
  msgid "Currency"
1372
  msgstr ""
1373
 
1374
+ #: ../addons/buy-creds/gateways/bitpay.php:262
1375
  msgid "Currency Code"
1376
  msgstr ""
1377
 
1378
+ #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1379
+ #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
1380
+ #: php:298 ../addons/buy-creds/gateways/skrill.php:319
1381
  msgid "Item Name"
1382
  msgstr ""
1383
 
1384
+ #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
1385
+ #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
1386
+ #: php:302 ../addons/buy-creds/gateways/skrill.php:323
1387
  msgid "Description of the item being purchased by the user."
1388
  msgstr ""
1389
 
1390
+ #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
1391
+ #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
1392
+ #: php:305 ../addons/buy-creds/gateways/skrill.php:326
1393
  msgid "Exchange Rates"
1394
  msgstr ""
1395
 
1396
+ #: ../addons/buy-creds/gateways/bitpay.php:277
1397
  msgid "Transaction Speed"
1398
  msgstr ""
1399
 
1400
+ #: ../addons/buy-creds/gateways/bitpay.php:284
1401
  msgid "High"
1402
  msgstr ""
1403
 
1404
+ #: ../addons/buy-creds/gateways/bitpay.php:285
1405
  msgid "Medium"
1406
  msgstr ""
1407
 
1408
+ #: ../addons/buy-creds/gateways/bitpay.php:286
1409
  msgid "Low"
1410
  msgstr ""
1411
 
1412
+ #: ../addons/buy-creds/gateways/bitpay.php:299
1413
  msgid "Full Notifications"
1414
  msgstr ""
1415
 
1416
+ #: ../addons/buy-creds/gateways/bitpay.php:306 ../includes/mycred-network.php:161
1417
  #: ../includes/mycred-network.php:175
1418
  msgid "No"
1419
  msgstr ""
1420
 
1421
+ #: ../addons/buy-creds/gateways/bitpay.php:307 ../includes/mycred-network.php:157
1422
  #: ../includes/mycred-network.php:171
1423
  msgid "Yes"
1424
  msgstr ""
1425
 
1426
+ #: ../addons/buy-creds/gateways/netbilling.php:216
1427
  msgid "Account ID"
1428
  msgstr ""
1429
 
1430
+ #: ../addons/buy-creds/gateways/netbilling.php:222
1431
  msgid "Site Tag"
1432
  msgstr ""
1433
 
1434
+ #: ../addons/buy-creds/gateways/netbilling.php:228
1435
  msgid "Order Integrity Key"
1436
  msgstr ""
1437
 
1438
+ #: ../addons/buy-creds/gateways/netbilling.php:232
1439
  msgid "Found under Step 12 on the Fraud Defense page."
1440
  msgstr ""
1441
 
1442
+ #: ../addons/buy-creds/gateways/netbilling.php:246
1443
  msgid "Postback CGI URL"
1444
  msgstr ""
1445
 
1446
+ #: ../addons/buy-creds/gateways/netbilling.php:250
1447
  msgid ""
1448
  "For this gateway to work, you must login to your NETbilling account and edit "
1449
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1450
  "URL is set to the above address and \"Return method\" is set to POST."
1451
  msgstr ""
1452
 
1453
+ #: ../addons/buy-creds/gateways/netbilling.php:298
1454
  msgid "Incorrect Credit Card number"
1455
  msgstr ""
1456
 
1457
+ #: ../addons/buy-creds/gateways/netbilling.php:304
1458
  msgid "The credit card entered is past its expiration date."
1459
  msgstr ""
1460
 
1461
+ #: ../addons/buy-creds/gateways/netbilling.php:307
1462
  msgid "The CVV2 number entered is not valid."
1463
  msgstr ""
1464
 
1465
+ #: ../addons/buy-creds/gateways/netbilling.php:314
1466
  msgid "The bank routing number entered is not valid."
1467
  msgstr ""
1468
 
1469
+ #: ../addons/buy-creds/gateways/netbilling.php:318
1470
  msgid "The bank account number entered is not valid."
1471
  msgstr ""
1472
 
1473
+ #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
1474
+ #: creds/gateways/skrill.php:171
1475
  msgid "Success"
1476
  msgstr ""
1477
 
1478
+ #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
1479
+ #: creds/gateways/skrill.php:172
1480
  msgid "Thank you for your purchase"
1481
  msgstr ""
1482
 
1483
+ #: ../addons/buy-creds/gateways/paypal-standard.php:263
1484
+ #, php-format
1485
+ msgctxt "Return label. %s = Website name"
1486
+ msgid "Return to %s"
1487
  msgstr ""
1488
 
1489
+ #: ../addons/buy-creds/gateways/paypal-standard.php:292
1490
  msgid "Account Email"
1491
  msgstr ""
1492
 
1493
+ #: ../addons/buy-creds/gateways/skrill.php:228
1494
+ msgid "Return to "
1495
+ msgstr ""
1496
+
1497
+ #: ../addons/buy-creds/gateways/skrill.php:264
1498
  msgid "Product:"
1499
  msgstr ""
1500
 
1501
+ #: ../addons/buy-creds/gateways/skrill.php:273
1502
  msgid "Gift to:"
1503
  msgstr ""
1504
 
1505
+ #: ../addons/buy-creds/gateways/skrill.php:274
1506
  msgid "(author)"
1507
  msgstr ""
1508
 
1509
+ #: ../addons/buy-creds/gateways/skrill.php:307
1510
  msgid "Merchant Account Email"
1511
  msgstr ""
1512
 
1513
+ #: ../addons/buy-creds/gateways/skrill.php:313
1514
  msgid "Secret Word"
1515
  msgstr ""
1516
 
1517
+ #: ../addons/buy-creds/gateways/skrill.php:330
1518
  msgid "Confirmation Email"
1519
  msgstr ""
1520
 
1521
+ #: ../addons/buy-creds/gateways/skrill.php:333
1522
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1523
  msgstr ""
1524
 
1525
+ #: ../addons/buy-creds/gateways/skrill.php:336
1526
  msgid "Checkout Page"
1527
  msgstr ""
1528
 
1529
+ #: ../addons/buy-creds/gateways/skrill.php:339 ../addons/gateway/carts/mycred-
1530
+ #: woocommerce.php:92 ../addons/ranks/myCRED-addon-ranks.php:1318 ..
1531
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1532
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1533
+ #: php:592 ../modules/mycred-module-hooks.php:3073
1534
  msgid "Title"
1535
  msgstr ""
1536
 
1537
+ #: ../addons/buy-creds/gateways/skrill.php:341
1538
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1539
  msgstr ""
1540
 
1541
+ #: ../addons/buy-creds/gateways/skrill.php:344 ../addons/buy-
1542
+ #: creds/gateways/zombaio.php:283
1543
  msgid "Logo URL"
1544
  msgstr ""
1545
 
1546
+ #: ../addons/buy-creds/gateways/skrill.php:346
1547
  msgid ""
1548
  "The URL to the image you want to use on the top of the gateway. For best "
1549
  "integration results we recommend you use logos with dimensions up to 200px "
1550
  "in width and 50px in height."
1551
  msgstr ""
1552
 
1553
+ #: ../addons/buy-creds/gateways/skrill.php:349
1554
  msgid "Confirmation Note"
1555
  msgstr ""
1556
 
1557
+ #: ../addons/buy-creds/gateways/skrill.php:351
1558
  msgid ""
1559
  "Optional text to show user once a transaction has been successfully "
1560
  "completed. This text is shown by Skrill."
1561
  msgstr ""
1562
 
1563
+ #: ../addons/buy-creds/gateways/zombaio.php:154
1564
  #, php-format
1565
  msgid "Duplicate transaction. Received: %s"
1566
  msgstr ""
1567
 
1568
+ #: ../addons/buy-creds/gateways/zombaio.php:160
1569
  #, php-format
1570
  msgid "Live transaction while debug mode is enabled! Received: %s"
1571
  msgstr ""
1572
 
1573
+ #: ../addons/buy-creds/gateways/zombaio.php:265
1574
  msgid "Site ID"
1575
  msgstr ""
1576
 
1577
+ #: ../addons/buy-creds/gateways/zombaio.php:271
1578
  msgid "GW Password"
1579
  msgstr ""
1580
 
1581
+ #: ../addons/buy-creds/gateways/zombaio.php:277
1582
  msgid "Pricing ID"
1583
  msgstr ""
1584
 
1585
+ #: ../addons/buy-creds/gateways/zombaio.php:289
1586
  msgid "IP Verification"
1587
  msgstr ""
1588
 
1589
+ #: ../addons/buy-creds/gateways/zombaio.php:292
1590
  msgid "Do not verify that callbacks are coming from Zombaio."
1591
  msgstr ""
1592
 
1593
+ #: ../addons/buy-creds/gateways/zombaio.php:295
1594
  msgid "Language"
1595
  msgstr ""
1596
 
1597
+ #: ../addons/buy-creds/gateways/zombaio.php:302
1598
  msgid "Postback URL (ZScript)"
1599
  msgstr ""
1600
 
1601
+ #: ../addons/buy-creds/gateways/zombaio.php:306
1602
  msgid ""
1603
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1604
  "address and click validate."
1686
  msgstr ""
1687
 
1688
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1689
+ #: transfer.php:259 ../modules/mycred-module-hooks.php:1714 ../modules/mycred-
1690
+ #: module-hooks.php:2032
1691
  msgid "Limits"
1692
  msgstr ""
1693
 
1696
  msgstr ""
1697
 
1698
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1699
+ #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:814 ..
1700
+ #: addons/email-notices/myCRED-addon-email-notices.php:1031 ..
1701
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1702
+ #: addons/gateway/carts/mycred-woocommerce.php:120 ..
1703
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1704
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1705
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1706
+ #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1707
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1708
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1709
  #: includes/importers/mycred-cubepoints.php:365
1710
  msgid "Point Type"
1716
  msgstr ""
1717
 
1718
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1719
+ #: 395 ../modules/mycred-module-hooks.php:2507
1720
  msgid "Total"
1721
  msgstr ""
1722
 
1862
  msgid "Message to show when a coupon was successfully deposited to a users account."
1863
  msgstr ""
1864
 
 
 
 
 
1865
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1866
  msgid "Apply Coupon"
1867
  msgstr ""
1868
 
1869
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1870
+ #: notices/myCRED-addon-email-notices.php:1267
1871
  msgid "Email Notice"
1872
  msgstr ""
1873
 
2060
  msgstr ""
2061
 
2062
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2063
+ #: notices/myCRED-addon-email-notices.php:900
2064
  msgid "Email Settings"
2065
  msgstr ""
2066
 
2067
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2068
+ #: notices/myCRED-addon-email-notices.php:1053
2069
  msgid "Senders Name:"
2070
  msgstr ""
2071
 
2072
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2073
+ #: notices/myCRED-addon-email-notices.php:1055
2074
  msgid "Senders Email:"
2075
  msgstr ""
2076
 
2094
  msgid "Ignored if HTML is not allowed in emails."
2095
  msgstr ""
2096
 
2097
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:719
2098
  #, php-format
2099
  msgctxt "Badge Title - Level 1,2,3.."
2100
  msgid "%s - Level %d"
2101
  msgstr ""
2102
 
2103
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
2104
+ #: notices/myCRED-addon-email-notices.php:949
2105
  msgid "Email Subject"
2106
  msgstr ""
2107
 
2108
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2109
  msgid "Not Active"
2110
  msgstr ""
2111
 
2112
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:838
2113
  #, php-format
2114
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2115
  msgstr ""
2116
 
2117
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:843
2118
  msgid "Active"
2119
  msgstr ""
2120
 
2121
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:845
2122
  #, php-format
2123
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2124
  msgstr ""
2125
 
2126
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:855
2127
  msgid "Email is sent when"
2128
  msgstr ""
2129
 
2130
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:857
2131
  msgid "Missing instance for this notice!"
2132
  msgstr ""
2133
 
2134
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2135
+ #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
2136
+ #: addon-email-notices.php:870
2137
  msgid "Sent To"
2138
  msgstr ""
2139
 
2140
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2141
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2142
+ #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2143
  msgid "User"
2144
  msgstr ""
2145
 
2146
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
2147
+ #: notices/myCRED-addon-email-notices.php:1020
2148
  msgid "Administrator"
2149
  msgstr ""
2150
 
2151
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2152
  msgid "Both Administrator and User"
2153
  msgstr ""
2154
 
2155
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
2156
+ #: notices/myCRED-addon-email-notices.php:1037
2157
  msgid "All types"
2158
  msgstr ""
2159
 
2160
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2161
  msgid "Available Template Tags"
2162
  msgstr ""
2163
 
2164
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:920
2165
  msgid "Email Header"
2166
  msgstr ""
2167
 
2168
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:986
2169
  msgid "Send this email notice when..."
2170
  msgstr ""
2171
 
2172
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
2173
  msgid "Recipient:"
2174
  msgstr ""
2175
 
2176
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2177
  msgid "Both"
2178
  msgstr ""
2179
 
2180
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1025 ..
2181
+ #: addons/gateway/carts/mycred-woocommerce.php:160 ../modules/mycred-module-
2182
+ #: settings.php:674 ../modules/mycred-module-settings.php:695 ../modules/mycred-
2183
+ #: module-settings.php:720
2184
  msgid "Label"
2185
  msgstr ""
2186
 
2187
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
2188
  msgid "Reply-To Email:"
2189
  msgstr ""
2190
 
2191
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
2192
  msgid "Save"
2193
  msgstr ""
2194
 
2195
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
2196
  msgid "CSS Styling"
2197
  msgstr ""
2198
 
2199
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2200
  msgid "Site Related"
2201
  msgstr ""
2202
 
2203
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2204
  msgid "Your websites title"
2205
  msgstr ""
2206
 
2207
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2208
  msgid "Your websites address"
2209
  msgstr ""
2210
 
2211
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
2212
  msgid "Your websites tagline (description)"
2213
  msgstr ""
2214
 
2215
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
2216
  msgid "Your websites admin email"
2217
  msgstr ""
2218
 
2219
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
2220
  msgid "Total number of blog members"
2221
  msgstr ""
2222
 
2223
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2224
  msgid "The users new balance"
2225
  msgstr ""
2226
 
2227
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
2228
  msgid "The users old balance"
2229
  msgstr ""
2230
 
2231
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
2232
  msgid "The amount of points gained or lost in this instance"
2233
  msgstr ""
2234
 
2235
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2236
  msgid "The log entry"
2237
  msgstr ""
2238
 
2239
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
2240
+ #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
2241
+ #: addon-email-notices.php:1187
2242
  msgid "Email Notice Updated."
2243
  msgstr ""
2244
 
2245
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
2246
  msgid "Email Notice Activated"
2247
  msgstr ""
2248
 
2249
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
2250
  msgid "Email Notice Saved"
2251
  msgstr ""
2252
 
2253
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
2254
  msgid ""
2255
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2256
  "are not yet ready to use this email notice!"
2257
  msgstr ""
2258
 
2259
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
2260
  #, php-format
2261
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2262
  msgstr ""
2263
 
2264
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
2265
  msgid "This email notice is active."
2266
  msgstr ""
2267
 
2268
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
2269
  msgid "Settings saved."
2270
  msgstr ""
2271
 
2272
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2273
  msgid "Unsubscribe"
2274
  msgstr ""
2275
 
2276
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2277
  msgid "There are no email notifications yet."
2278
  msgstr ""
2279
 
2319
  msgstr ""
2320
 
2321
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2322
+ #: addons/gateway/carts/mycred-woocommerce.php:30 ../includes/mycred-network.php:
2323
  #: 50 ../includes/mycred-network.php:51
2324
  msgid "myCRED"
2325
  msgstr ""
2350
  msgstr ""
2351
 
2352
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2353
+ #: addons/gateway/carts/mycred-woocommerce.php:263
2354
  msgid "Insufficient funds."
2355
  msgstr ""
2356
 
2383
  msgstr ""
2384
 
2385
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2386
+ #: addons/gateway/carts/mycred-woocommerce.php:136
2387
  #, php-format
2388
  msgid "How much is 1 %_singular% worth in %currency%?"
2389
  msgstr ""
2390
 
2391
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2392
+ #: addons/gateway/carts/mycred-woocommerce.php:141 ..
2393
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2394
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2395
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2396
+ #: php:578 ../includes/mycred-shortcodes.php:977
2397
  msgid "Exchange Rate"
2398
  msgstr ""
2399
 
2400
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2401
+ #: addons/gateway/carts/mycred-woocommerce.php:169 ..
2402
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2403
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2404
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
2411
  msgstr ""
2412
 
2413
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2414
+ #: addons/gateway/carts/mycred-woocommerce.php:171 ..
2415
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2416
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2417
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
2476
  "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2477
  msgstr ""
2478
 
2479
+ #: ../addons/gateway/carts/mycred-woocommerce.php:31
2480
  msgid "Let users pay using their myCRED balance."
2481
  msgstr ""
2482
 
2483
+ #: ../addons/gateway/carts/mycred-woocommerce.php:85
2484
  msgid "Enable/Disable"
2485
  msgstr ""
2486
 
2487
+ #: ../addons/gateway/carts/mycred-woocommerce.php:87
2488
  msgid "Enable myCRED Payment"
2489
  msgstr ""
2490
 
2491
+ #: ../addons/gateway/carts/mycred-woocommerce.php:89
2492
  msgid ""
2493
  "Users who are not logged in or excluded from using myCRED will not have "
2494
  "access to this gateway!"
2495
  msgstr ""
2496
 
2497
+ #: ../addons/gateway/carts/mycred-woocommerce.php:94
2498
  msgid "Title to show for this payment option."
2499
  msgstr ""
2500
 
2501
+ #: ../addons/gateway/carts/mycred-woocommerce.php:95
2502
  msgid "Pay with myCRED"
2503
  msgstr ""
2504
 
2505
+ #: ../addons/gateway/carts/mycred-woocommerce.php:99
2506
  msgid "Customer Message"
2507
  msgstr ""
2508
 
2509
+ #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
2510
+ #: addons/gateway/carts/mycred-woocommerce.php:182
2511
  msgid "Refund Log Template"
2512
  msgstr ""
2513
 
2514
+ #: ../addons/gateway/carts/mycred-woocommerce.php:122
2515
  msgid "Select the point type users can use to pay."
2516
  msgstr ""
2517
 
2518
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148
2519
  msgid "Show Total"
2520
  msgstr ""
2521
 
2522
+ #: ../addons/gateway/carts/mycred-woocommerce.php:150
2523
  msgid "Show the final price in %_plural% ."
2524
  msgstr ""
2525
 
2526
+ #: ../addons/gateway/carts/mycred-woocommerce.php:153
2527
  msgid "Show in Cart"
2528
  msgstr ""
2529
 
2530
+ #: ../addons/gateway/carts/mycred-woocommerce.php:154
2531
  msgid "Show on Checkout Page"
2532
  msgstr ""
2533
 
2534
+ #: ../addons/gateway/carts/mycred-woocommerce.php:155
2535
  msgid "Show in Cart and on Checkout Page"
2536
  msgstr ""
2537
 
2538
+ #: ../addons/gateway/carts/mycred-woocommerce.php:162
2539
  msgid "Order Total in %_plural%"
2540
  msgstr ""
2541
 
2542
+ #: ../addons/gateway/carts/mycred-woocommerce.php:178
2543
  msgid "Log entry template for profit sharing."
2544
  msgstr ""
2545
 
2546
+ #: ../addons/gateway/carts/mycred-woocommerce.php:184
2547
  msgid "Log entry template for refunds of profit shares."
2548
  msgstr ""
2549
 
2550
+ #: ../addons/gateway/carts/mycred-woocommerce.php:214
2551
  msgid "myCRED Payment"
2552
  msgstr ""
2553
 
2554
+ #: ../addons/gateway/carts/mycred-woocommerce.php:215
2555
  #, php-format
2556
  msgid ""
2557
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2559
  "this payment gateway on the checkout page."
2560
  msgstr ""
2561
 
2562
+ #: ../addons/gateway/carts/mycred-woocommerce.php:240
2563
  msgid "You must be logged in to pay with %_plural%"
2564
  msgstr ""
2565
 
2566
+ #: ../addons/gateway/carts/mycred-woocommerce.php:246
2567
  msgid "You can not use this gateway. Please try a different payment option."
2568
  msgstr ""
2569
 
2570
+ #: ../addons/gateway/carts/mycred-woocommerce.php:360
2571
+ #, php-format
2572
+ msgctxt "%s = Point amount formatted"
2573
+ msgid "Refunded %s"
2574
+ msgstr ""
2575
+
2576
+ #: ../addons/gateway/carts/mycred-woocommerce.php:408
2577
  msgid "Your account has successfully been charged."
2578
  msgstr ""
2579
 
2580
+ #: ../addons/gateway/carts/mycred-woocommerce.php:741 ..
2581
  #: addons/gateway/carts/mycred-wpecommerce.php:131
2582
  msgid "Your current balance"
2583
  msgstr ""
2715
  msgstr ""
2716
 
2717
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2718
+ #: modules/mycred-module-log.php:23 ../modules/mycred-module-log.php:24
2719
  msgid "Log"
2720
  msgstr ""
2721
 
2809
  msgstr ""
2810
 
2811
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2812
+ #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2813
+ #: modules/mycred-module-settings.php:699
2814
  msgid "Delete"
2815
  msgstr ""
2816
 
2935
  msgstr ""
2936
 
2937
  #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
2938
+ #: addons/ranks/myCRED-addon-ranks.php:1427 ../addons/ranks/myCRED-addon-ranks.
2939
+ #: php:1472 ../modules/mycred-module-buddypress.php:464
2940
  msgid "Template"
2941
  msgstr ""
2942
 
2969
  "to user. Use zero to disable."
2970
  msgstr ""
2971
 
2972
+ #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
2973
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
2974
+ #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
2975
+ #: addons/ranks/myCRED-addon-ranks.php:833 ../addons/ranks/myCRED-addon-ranks.
2976
+ #: php:1310 ../addons/ranks/myCRED-addon-ranks.php:1601
2977
  msgid "Ranks"
2978
  msgstr ""
2979
 
2980
+ #: ../addons/ranks/myCRED-addon-ranks.php:424
2981
  msgid "Warning! All ranks will be deleted! This can not be undone!"
2982
  msgstr ""
2983
 
2984
+ #: ../addons/ranks/myCRED-addon-ranks.php:425
2985
  msgid "Are you sure you want to re-assign user ranks?"
2986
  msgstr ""
2987
 
2988
+ #: ../addons/ranks/myCRED-addon-ranks.php:441
2989
  #, php-format
2990
  msgid "Ranks for %s"
2991
  msgstr ""
2992
 
2993
+ #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
2994
+ #: php:833
2995
  msgid "Rank"
2996
  msgstr ""
2997
 
2998
+ #: ../addons/ranks/myCRED-addon-ranks.php:449
2999
  msgid "Add New Rank"
3000
  msgstr ""
3001
 
3002
+ #: ../addons/ranks/myCRED-addon-ranks.php:450
3003
  msgid "Edit Rank"
3004
  msgstr ""
3005
 
3006
+ #: ../addons/ranks/myCRED-addon-ranks.php:451
3007
  msgid "New Rank"
3008
  msgstr ""
3009
 
3010
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
3011
  msgid "View Rank"
3012
  msgstr ""
3013
 
3014
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
3015
  msgid "Search Ranks"
3016
  msgstr ""
3017
 
3018
+ #: ../addons/ranks/myCRED-addon-ranks.php:455
3019
  msgid "No ranks found"
3020
  msgstr ""
3021
 
3022
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
3023
  msgid "No ranks found in Trash"
3024
  msgstr ""
3025
 
3026
+ #: ../addons/ranks/myCRED-addon-ranks.php:540
3027
  #, php-format
3028
  msgid "Completed - Total of %d users effected"
3029
  msgstr ""
3030
 
3031
+ #: ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-addon-ranks.
3032
+ #: php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ../addons/ranks/myCRED-
3033
+ #: addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.php:981 ..
3034
+ #: addons/ranks/myCRED-addon-ranks.php:982 ../addons/ranks/myCRED-addon-ranks.
3035
+ #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986
3036
  msgid "Rank Updated."
3037
  msgstr ""
3038
 
3039
+ #: ../addons/ranks/myCRED-addon-ranks.php:983
3040
  msgid "Rank Enabled"
3041
  msgstr ""
3042
 
3043
+ #: ../addons/ranks/myCRED-addon-ranks.php:984
3044
  msgid "Rank Saved"
3045
  msgstr ""
3046
 
3047
+ #: ../addons/ranks/myCRED-addon-ranks.php:1023
3048
  #, php-format
3049
  msgid "<strong>Rank:</strong> %s"
3050
  msgstr ""
3051
 
3052
+ #: ../addons/ranks/myCRED-addon-ranks.php:1039 ../addons/ranks/myCRED-addon-ranks.
3053
+ #: php:1122
3054
  msgid "Rank Title"
3055
  msgstr ""
3056
 
3057
+ #: ../addons/ranks/myCRED-addon-ranks.php:1040
3058
  msgid "Logo"
3059
  msgstr ""
3060
 
3061
+ #: ../addons/ranks/myCRED-addon-ranks.php:1041
3062
  msgid "Requirement"
3063
  msgstr ""
3064
 
3065
+ #: ../addons/ranks/myCRED-addon-ranks.php:1067
3066
  msgid "No Logo Set"
3067
  msgstr ""
3068
 
3069
+ #: ../addons/ranks/myCRED-addon-ranks.php:1082 ../addons/ranks/myCRED-addon-ranks.
3070
+ #: php:1087
3071
  msgid "Any Value"
3072
  msgstr ""
3073
 
3074
+ #: ../addons/ranks/myCRED-addon-ranks.php:1089
3075
  msgid "Maximum %plural%"
3076
  msgstr ""
3077
 
3078
+ #: ../addons/ranks/myCRED-addon-ranks.php:1137
3079
  msgid "Rank Settings"
3080
  msgstr ""
3081
 
3082
+ #: ../addons/ranks/myCRED-addon-ranks.php:1191
3083
  msgid "Minimum %plural% to reach this rank"
3084
  msgstr ""
3085
 
3086
+ #: ../addons/ranks/myCRED-addon-ranks.php:1195
3087
  msgid "Maximum %plural% to be included in this rank"
3088
  msgstr ""
3089
 
3090
+ #: ../addons/ranks/myCRED-addon-ranks.php:1213
3091
  msgid "All Published Ranks"
3092
  msgstr ""
3093
 
3094
+ #: ../addons/ranks/myCRED-addon-ranks.php:1223 ../addons/ranks/myCRED-addon-ranks.
3095
+ #: php:1225
3096
  msgid "Not Set"
3097
  msgstr ""
3098
 
3099
+ #: ../addons/ranks/myCRED-addon-ranks.php:1231
3100
  msgid "No Ranks found"
3101
  msgstr ""
3102
 
3103
+ #: ../addons/ranks/myCRED-addon-ranks.php:1315
3104
  msgid "Rank Features"
3105
  msgstr ""
3106
 
3107
+ #: ../addons/ranks/myCRED-addon-ranks.php:1319
3108
  msgid "%plural% requirement"
3109
  msgstr ""
3110
 
3111
+ #: ../addons/ranks/myCRED-addon-ranks.php:1320
3112
  msgid "Featured Image (Logo)"
3113
  msgstr ""
3114
 
3115
+ #: ../addons/ranks/myCRED-addon-ranks.php:1322
3116
  msgid "Content"
3117
  msgstr ""
3118
 
3119
+ #: ../addons/ranks/myCRED-addon-ranks.php:1324
3120
  msgid "Excerpt"
3121
  msgstr ""
3122
 
3123
+ #: ../addons/ranks/myCRED-addon-ranks.php:1326
3124
  msgid "Comments"
3125
  msgstr ""
3126
 
3127
+ #: ../addons/ranks/myCRED-addon-ranks.php:1328
3128
  msgid "Page Attributes"
3129
  msgstr ""
3130
 
3131
+ #: ../addons/ranks/myCRED-addon-ranks.php:1330
3132
  msgid "Custom Fields"
3133
  msgstr ""
3134
 
3135
+ #: ../addons/ranks/myCRED-addon-ranks.php:1334
3136
  msgid "Public"
3137
  msgstr ""
3138
 
3139
+ #: ../addons/ranks/myCRED-addon-ranks.php:1338
3140
  msgid ""
3141
  "If you want to create a template archive for each rank, you must select to "
3142
  "have ranks public. Defaults to disabled."
3143
  msgstr ""
3144
 
3145
+ #: ../addons/ranks/myCRED-addon-ranks.php:1341
3146
  msgid "Archive URL"
3147
  msgstr ""
3148
 
3149
+ #: ../addons/ranks/myCRED-addon-ranks.php:1345
3150
  msgid "Ignored if Ranks are not public"
3151
  msgstr ""
3152
 
3153
+ #: ../addons/ranks/myCRED-addon-ranks.php:1348
3154
  msgid "Display Order"
3155
  msgstr ""
3156
 
3157
+ #: ../addons/ranks/myCRED-addon-ranks.php:1356
3158
  msgid "Ascending - Lowest rank to highest"
3159
  msgstr ""
3160
 
3161
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
3162
  msgid "Descending - Highest rank to lowest"
3163
  msgstr ""
3164
 
3165
+ #: ../addons/ranks/myCRED-addon-ranks.php:1368
3166
  msgid ""
3167
  "Select in what order ranks should be displayed in your admin area and/or "
3168
  "front if ranks are \"Public\""
3169
  msgstr ""
3170
 
3171
+ #: ../addons/ranks/myCRED-addon-ranks.php:1374
3172
  msgid "Rank Basis"
3173
  msgstr ""
3174
 
3175
+ #: ../addons/ranks/myCRED-addon-ranks.php:1377
3176
  msgid "Users are ranked according to their current balance."
3177
  msgstr ""
3178
 
3179
+ #: ../addons/ranks/myCRED-addon-ranks.php:1380
3180
  msgid ""
3181
  "Users are ranked according to the total amount of %_plural% they have "
3182
  "accumulated."
3183
  msgstr ""
3184
 
3185
+ #: ../addons/ranks/myCRED-addon-ranks.php:1384 ../addons/ranks/myCRED-addon-ranks.
3186
+ #: php:1389
3187
  msgid "Calculate Totals"
3188
  msgstr ""
3189
 
3190
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3191
  msgid ""
3192
  "Use this button to calculate or recalculate your users totals. If not used, "
3193
  "the users current balance will be used as a starting point."
3194
  msgstr ""
3195
 
3196
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3197
  msgid ""
3198
  "Once a users total has been calculated, they will be assigned to their "
3199
  "appropriate roles. For this reason, it is highly recommended that you first "
3200
  "setup your ranks!"
3201
  msgstr ""
3202
 
3203
+ #: ../addons/ranks/myCRED-addon-ranks.php:1388
3204
  msgid ""
3205
  "Depending on your log size and number of users this process may take a while."
3206
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3207
  "this is completed!"
3208
  msgstr ""
3209
 
3210
+ #: ../addons/ranks/myCRED-addon-ranks.php:1405 ../addons/ranks/myCRED-addon-ranks.
3211
+ #: php:1450 ../modules/mycred-module-buddypress.php:424
3212
  msgid "Do not show."
3213
  msgstr ""
3214
 
3215
+ #: ../addons/ranks/myCRED-addon-ranks.php:1406
3216
  msgid "Include in Profile Header."
3217
  msgstr ""
3218
 
3219
+ #: ../addons/ranks/myCRED-addon-ranks.php:1408
3220
  msgid "Include under the \"Profile\" tab and Profile Header."
3221
  msgstr ""
3222
 
3223
+ #: ../addons/ranks/myCRED-addon-ranks.php:1412
3224
  msgid "Rank in BuddyPress"
3225
  msgstr ""
3226
 
3227
+ #: ../addons/ranks/myCRED-addon-ranks.php:1429 ../addons/ranks/myCRED-addon-ranks.
3228
+ #: php:1474
3229
  #, php-format
3230
  msgid ""
3231
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3232
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3233
  msgstr ""
3234
 
3235
+ #: ../addons/ranks/myCRED-addon-ranks.php:1451
3236
  msgid "Include in Topic Replies"
3237
  msgstr ""
3238
 
3239
+ #: ../addons/ranks/myCRED-addon-ranks.php:1453
3240
  msgid "Include in Topic Replies and Profile"
3241
  msgstr ""
3242
 
3243
+ #: ../addons/ranks/myCRED-addon-ranks.php:1457
3244
  msgid "Rank in bbPress"
3245
  msgstr ""
3246
 
3247
+ #: ../addons/ranks/myCRED-addon-ranks.php:1536
3248
  msgid "Script Communication Error"
3249
  msgstr ""
3250
 
3251
+ #: ../addons/ranks/myCRED-addon-ranks.php:1604 ../modules/mycred-module-settings.
3252
+ #: php:632
3253
  msgid "User Meta Key"
3254
  msgstr ""
3255
 
3256
+ #: ../addons/ranks/myCRED-addon-ranks.php:1608
3257
  msgid "No. of ranks"
3258
  msgstr ""
3259
 
3260
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3261
  msgid "Remove All Ranks"
3262
  msgstr ""
3263
 
3264
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3265
  msgid "Assign Ranks to Users"
3266
  msgstr ""
3267
 
3458
  msgstr ""
3459
 
3460
  #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3461
+ #: modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27 ..
3462
+ #: modules/mycred-module-hooks.php:28
3463
  msgid "Hooks"
3464
  msgstr ""
3465
 
3497
  msgstr ""
3498
 
3499
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3500
+ #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3501
  msgid "Today"
3502
  msgstr ""
3503
 
3504
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3505
+ #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3506
  msgid "This Week"
3507
  msgstr ""
3508
 
3509
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3510
+ #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3511
  msgid "This Month"
3512
  msgstr ""
3513
 
3574
  msgstr ""
3575
 
3576
  #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3577
+ #: php:2454
3578
  msgid "Transfer"
3579
  msgstr ""
3580
 
3609
  msgstr ""
3610
 
3611
  #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3612
+ #: php:2582
3613
  msgid "Insufficient Funds. Please try a lower amount."
3614
  msgstr ""
3615
 
3751
  msgid "recipients %s"
3752
  msgstr ""
3753
 
3754
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3755
  msgid "To:"
3756
  msgstr ""
3757
 
3758
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
3759
  msgid "Amount:"
3760
  msgstr ""
3761
 
3951
  msgid "Available Template Tags:"
3952
  msgstr ""
3953
 
3954
+ #: ../includes/mycred-functions.php:1694
3955
  msgid "Entire Log"
3956
  msgstr ""
3957
 
3958
+ #: ../includes/mycred-functions.php:1699 ../includes/mycred-functions.php:1700
3959
  msgid "Displayed Rows"
3960
  msgstr ""
3961
 
3962
+ #: ../includes/mycred-functions.php:1707
3963
  msgid "Search Results"
3964
  msgstr ""
3965
 
3966
+ #: ../includes/mycred-functions.php:1708
3967
  msgid "My Entire Log"
3968
  msgstr ""
3969
 
3970
+ #: ../includes/mycred-functions.php:1875
3971
  msgid "ref empty"
3972
  msgstr ""
3973
 
3974
+ #: ../includes/mycred-functions.php:1883
3975
  msgid "incorrect user id format"
3976
  msgstr ""
3977
 
3978
+ #: ../includes/mycred-functions.php:1896
3979
  msgid "incorrect unix timestamp (from):"
3980
  msgstr ""
3981
 
3982
+ #: ../includes/mycred-functions.php:1905
3983
  msgid "incorrect unix timestamp (to):"
3984
  msgstr ""
3985
 
3986
+ #: ../includes/mycred-functions.php:2314
3987
  msgid "Website Registration"
3988
  msgstr ""
3989
 
3990
+ #: ../includes/mycred-functions.php:2315
3991
  msgid "Website Visit"
3992
  msgstr ""
3993
 
3994
+ #: ../includes/mycred-functions.php:2316
3995
  msgid "Viewing Content (Member)"
3996
  msgstr ""
3997
 
3998
+ #: ../includes/mycred-functions.php:2317
3999
  msgid "Viewing Content (Author)"
4000
  msgstr ""
4001
 
4002
+ #: ../includes/mycred-functions.php:2318
4003
  msgid "Logging in"
4004
  msgstr ""
4005
 
4006
+ #: ../includes/mycred-functions.php:2319
4007
  msgid "Publishing Content"
4008
  msgstr ""
4009
 
4010
+ #: ../includes/mycred-functions.php:2320 ../modules/mycred-module-hooks.php:1663
4011
  msgid "Approved Comment"
4012
  msgstr ""
4013
 
4014
+ #: ../includes/mycred-functions.php:2321
4015
  msgid "Unapproved Comment"
4016
  msgstr ""
4017
 
4018
+ #: ../includes/mycred-functions.php:2322
4019
  msgid "SPAM Comment"
4020
  msgstr ""
4021
 
4022
+ #: ../includes/mycred-functions.php:2323
4023
  msgid "Deleted Comment"
4024
  msgstr ""
4025
 
4026
+ #: ../includes/mycred-functions.php:2324
4027
  msgid "Link Click"
4028
  msgstr ""
4029
 
4030
+ #: ../includes/mycred-functions.php:2325
4031
  msgid "Watching Video"
4032
  msgstr ""
4033
 
4034
+ #: ../includes/mycred-functions.php:2326
4035
  msgid "Visitor Referral"
4036
  msgstr ""
4037
 
4038
+ #: ../includes/mycred-functions.php:2327
4039
  msgid "Signup Referral"
4040
  msgstr ""
4041
 
4042
+ #: ../includes/mycred-functions.php:2331
4043
  msgid "New Profile Update"
4044
  msgstr ""
4045
 
4046
+ #: ../includes/mycred-functions.php:2332
4047
  msgid "Profile Update Removal"
4048
  msgstr ""
4049
 
4050
+ #: ../includes/mycred-functions.php:2333
4051
  msgid "Avatar Upload"
4052
  msgstr ""
4053
 
4054
+ #: ../includes/mycred-functions.php:2334
4055
  msgid "New Friendship"
4056
  msgstr ""
4057
 
4058
+ #: ../includes/mycred-functions.php:2335
4059
  msgid "Ended Friendship"
4060
  msgstr ""
4061
 
4062
+ #: ../includes/mycred-functions.php:2336
4063
  msgid "New Profile Comment"
4064
  msgstr ""
4065
 
4066
+ #: ../includes/mycred-functions.php:2337
4067
  msgid "Profile Comment Deletion"
4068
  msgstr ""
4069
 
4070
+ #: ../includes/mycred-functions.php:2338
4071
  msgid "New Message"
4072
  msgstr ""
4073
 
4074
+ #: ../includes/mycred-functions.php:2339
4075
  msgid "Sending Gift"
4076
  msgstr ""
4077
 
4078
+ #: ../includes/mycred-functions.php:2340
4079
  msgid "New Group"
4080
  msgstr ""
4081
 
4082
+ #: ../includes/mycred-functions.php:2341
4083
  msgid "Deleted Group"
4084
  msgstr ""
4085
 
4086
+ #: ../includes/mycred-functions.php:2342
4087
  msgid "New Group Forum Topic"
4088
  msgstr ""
4089
 
4090
+ #: ../includes/mycred-functions.php:2343
4091
  msgid "Edit Group Forum Topic"
4092
  msgstr ""
4093
 
4094
+ #: ../includes/mycred-functions.php:2344
4095
  msgid "New Group Forum Post"
4096
  msgstr ""
4097
 
4098
+ #: ../includes/mycred-functions.php:2345
4099
  msgid "Edit Group Forum Post"
4100
  msgstr ""
4101
 
4102
+ #: ../includes/mycred-functions.php:2346
4103
  msgid "Joining Group"
4104
  msgstr ""
4105
 
4106
+ #: ../includes/mycred-functions.php:2347
4107
  msgid "Leaving Group"
4108
  msgstr ""
4109
 
4110
+ #: ../includes/mycred-functions.php:2348
4111
  msgid "New Group Avatar"
4112
  msgstr ""
4113
 
4114
+ #: ../includes/mycred-functions.php:2349
4115
  msgid "New Group Comment"
4116
  msgstr ""
4117
 
4118
+ #: ../includes/mycred-functions.php:2353 ../plugins/mycred-hook-buddypress-media.
4119
  #: php:205
4120
  msgid "Photo Upload"
4121
  msgstr ""
4122
 
4123
+ #: ../includes/mycred-functions.php:2354 ../plugins/mycred-hook-buddypress-media.
4124
  #: php:219
4125
  msgid "Video Upload"
4126
  msgstr ""
4127
 
4128
+ #: ../includes/mycred-functions.php:2355 ../plugins/mycred-hook-buddypress-media.
4129
  #: php:233
4130
  msgid "Music Upload"
4131
  msgstr ""
4132
 
4133
+ #: ../includes/mycred-functions.php:2359
4134
  msgid "New Link"
4135
  msgstr ""
4136
 
4137
+ #: ../includes/mycred-functions.php:2360
4138
  msgid "Link Voting"
4139
  msgstr ""
4140
 
4141
+ #: ../includes/mycred-functions.php:2361
4142
  msgid "Link Update"
4143
  msgstr ""
4144
 
4145
+ #: ../includes/mycred-functions.php:2365
4146
  msgid "New Forum (bbPress)"
4147
  msgstr ""
4148
 
4149
+ #: ../includes/mycred-functions.php:2366
4150
  msgid "New Forum Topic (bbPress)"
4151
  msgstr ""
4152
 
4153
+ #: ../includes/mycred-functions.php:2367
4154
  msgid "Favorited Topic (bbPress)"
4155
  msgstr ""
4156
 
4157
+ #: ../includes/mycred-functions.php:2368
4158
  msgid "New Topic Reply (bbPress)"
4159
  msgstr ""
4160
 
4161
+ #: ../includes/mycred-functions.php:2372
4162
  msgid "Form Submission (Contact Form 7)"
4163
  msgstr ""
4164
 
4165
+ #: ../includes/mycred-functions.php:2375
4166
  msgid "Form Submission (Gravity Form)"
4167
  msgstr ""
4168
 
4169
+ #: ../includes/mycred-functions.php:2378
4170
  msgid "New Forum Topic (SimplePress)"
4171
  msgstr ""
4172
 
4173
+ #: ../includes/mycred-functions.php:2379
4174
  msgid "New Forum Post (SimplePress)"
4175
  msgstr ""
4176
 
4177
+ #: ../includes/mycred-functions.php:2388
4178
  msgid "Affiliate Signup (AffiliateWP)"
4179
  msgstr ""
4180
 
4181
+ #: ../includes/mycred-functions.php:2389
4182
  msgid "Referred Visit (AffiliateWP)"
4183
  msgstr ""
4184
 
4185
+ #: ../includes/mycred-functions.php:2390
4186
  msgid "Affiliate Referral (AffiliateWP)"
4187
  msgstr ""
4188
 
4189
+ #: ../includes/mycred-functions.php:2391
4190
  msgid "Referral Refund (AffiliateWP)"
4191
  msgstr ""
4192
 
4193
+ #: ../includes/mycred-functions.php:2395 ../plugins/mycred-hook-wp-postratings.
4194
  #: php:150
4195
  msgid "Adding a Rating"
4196
  msgstr ""
4197
 
4198
+ #: ../includes/mycred-functions.php:2396 ../plugins/mycred-hook-wp-postratings.
4199
  #: php:169
4200
  msgid "Receiving a Rating"
4201
  msgstr ""
4202
 
4203
+ #: ../includes/mycred-functions.php:2400
4204
  msgid "Poll Voting"
4205
  msgstr ""
4206
 
4207
+ #: ../includes/mycred-functions.php:2403
4208
  msgid "Sending an Invite"
4209
  msgstr ""
4210
 
4211
+ #: ../includes/mycred-functions.php:2404
4212
  msgid "Accepting an Invite"
4213
  msgstr ""
4214
 
4215
+ #: ../includes/mycred-functions.php:2410
4216
  msgid "Banking Payout"
4217
  msgstr ""
4218
 
4219
+ #: ../includes/mycred-functions.php:2413
4220
  msgid "buyCRED Purchase (PayPal Standard)"
4221
  msgstr ""
4222
 
4223
+ #: ../includes/mycred-functions.php:2414
4224
  msgid "buyCRED Purchase (Skrill)"
4225
  msgstr ""
4226
 
4227
+ #: ../includes/mycred-functions.php:2415
4228
  msgid "buyCRED Purchase (Zombaio)"
4229
  msgstr ""
4230
 
4231
+ #: ../includes/mycred-functions.php:2416
4232
  msgid "buyCRED Purchase (NETBilling)"
4233
  msgstr ""
4234
 
4235
+ #: ../includes/mycred-functions.php:2417
4236
  msgid "buyCRED Purchase (BitPay)"
4237
  msgstr ""
4238
 
4239
+ #: ../includes/mycred-functions.php:2422
4240
  msgid "Coupon Purchase"
4241
  msgstr ""
4242
 
4243
+ #: ../includes/mycred-functions.php:2426
4244
  msgid "Store Purchase (WooCommerce)"
4245
  msgstr ""
4246
 
4247
+ #: ../includes/mycred-functions.php:2427
4248
  msgid "Store Reward (WooCommerce)"
4249
  msgstr ""
4250
 
4251
+ #: ../includes/mycred-functions.php:2428
4252
  msgid "Product Review (WooCommerce)"
4253
  msgstr ""
4254
 
4255
+ #: ../includes/mycred-functions.php:2431
4256
  msgid "Store Purchase (MarketPress)"
4257
  msgstr ""
4258
 
4259
+ #: ../includes/mycred-functions.php:2432
4260
  msgid "Store Reward (MarketPress)"
4261
  msgstr ""
4262
 
4263
+ #: ../includes/mycred-functions.php:2435
4264
  msgid "Store Purchase (WP E-Commerce)"
4265
  msgstr ""
4266
 
4267
+ #: ../includes/mycred-functions.php:2441
4268
  msgid "Event Payment (Event Espresso)"
4269
  msgstr ""
4270
 
4271
+ #: ../includes/mycred-functions.php:2442
4272
  msgid "Event Sale (Event Espresso)"
4273
  msgstr ""
4274
 
4275
+ #: ../includes/mycred-functions.php:2446
4276
  msgid "Event Payment (Events Manager)"
4277
  msgstr ""
4278
 
4279
+ #: ../includes/mycred-functions.php:2447
4280
  msgid "Event Sale (Events Manager)"
4281
  msgstr ""
4282
 
4283
+ #: ../includes/mycred-functions.php:2451
4284
  msgid "Content Purchase / Sale"
4285
  msgstr ""
4286
 
4287
+ #: ../includes/mycred-functions.php:2458
4288
  msgid "Manual Adjustment by Admin"
4289
  msgstr ""
4290
 
4291
+ #: ../includes/mycred-functions.php:2528 ../includes/mycred-shortcodes.php:925
4292
  msgid "Point types not found."
4293
  msgstr ""
4294
 
4295
+ #: ../includes/mycred-functions.php:2540 ../includes/mycred-functions.php:2560 ..
4296
+ #: includes/mycred-shortcodes.php:931 ../includes/mycred-shortcodes.php:939
4297
  #, php-format
4298
  msgid "You are excluded from using %s."
4299
  msgstr ""
4300
 
4301
+ #: ../includes/mycred-functions.php:2550 ../includes/mycred-shortcodes.php:935
4302
  msgid "Your balance is too low to use this feature."
4303
  msgstr ""
4304
 
4305
+ #: ../includes/mycred-functions.php:2573
4306
  #, php-format
4307
  msgid "You must exchange at least %s!"
4308
  msgstr ""
4309
 
4310
+ #: ../includes/mycred-functions.php:2595
4311
  #, php-format
4312
  msgid "Exchange from %s"
4313
  msgstr ""
4314
 
4315
+ #: ../includes/mycred-functions.php:2607
4316
  #, php-format
4317
  msgid "Exchange to %s"
4318
  msgstr ""
4319
 
4320
+ #: ../includes/mycred-functions.php:2615
4321
  #, php-format
4322
  msgid "You have successfully exchanged %s into %s."
4323
  msgstr ""
4324
 
4325
+ #: ../includes/mycred-functions.php:2647
4326
  msgid "per day"
4327
  msgstr ""
4328
 
4329
+ #: ../includes/mycred-functions.php:2649
4330
  msgid "per week"
4331
  msgstr ""
4332
 
4333
+ #: ../includes/mycred-functions.php:2651
4334
  msgid "per month"
4335
  msgstr ""
4336
 
4337
+ #: ../includes/mycred-functions.php:2653
4338
  msgid "in total"
4339
  msgstr ""
4340
 
4341
+ #: ../includes/mycred-functions.php:2655 ../includes/mycred-functions.php:2659
4342
  #, php-format
4343
  msgid "Maximum once"
4344
  msgid_plural "Maximum %d times"
4402
  "requirements for running myCRED. The following errors were given:"
4403
  msgstr ""
4404
 
4405
+ #: ../includes/mycred-install.php:268
4406
  msgid "myCRED needs your attention."
4407
  msgstr ""
4408
 
4409
+ #: ../includes/mycred-install.php:268
4410
  msgid "Run Setup"
4411
  msgstr ""
4412
 
4413
+ #: ../includes/mycred-install.php:280 ../includes/mycred-install.php:281
4414
  msgid "myCRED Setup"
4415
  msgstr ""
4416
 
4417
+ #: ../includes/mycred-install.php:410
4418
  #, php-format
4419
  msgid "%s Setup"
4420
  msgstr ""
4421
 
4422
+ #: ../includes/mycred-install.php:412
4423
  msgid "Step"
4424
  msgstr ""
4425
 
4426
+ #: ../includes/mycred-install.php:436
4427
  msgid ""
4428
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4429
  "points format, layout and security settings."
4430
  msgstr ""
4431
 
4432
+ #: ../includes/mycred-install.php:437
4433
  msgid "Begin Setup"
4434
  msgstr ""
4435
 
4436
+ #: ../includes/mycred-install.php:492
4437
  msgid "Select the format you want to use for your points."
4438
  msgstr ""
4439
 
4440
+ #: ../includes/mycred-install.php:493
4441
  msgid "Format"
4442
  msgstr ""
4443
 
4444
+ #: ../includes/mycred-install.php:496
4445
  msgid "Separators"
4446
  msgstr ""
4447
 
4448
+ #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:531
4449
  msgid "Decimals"
4450
  msgstr ""
4451
 
4452
+ #: ../includes/mycred-install.php:508
4453
  msgid "Use zero for no decimals or maximum 20."
4454
  msgstr ""
4455
 
4456
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:537
4457
  msgid "Presentation"
4458
  msgstr ""
4459
 
4460
+ #: ../includes/mycred-install.php:514 ../modules/mycred-module-settings.php:518
4461
  msgid "Name (Singular)"
4462
  msgstr ""
4463
 
4464
+ #: ../includes/mycred-install.php:518 ../modules/mycred-module-settings.php:523
4465
  msgid "Name (Plural)"
4466
  msgstr ""
4467
 
4468
+ #: ../includes/mycred-install.php:524 ../modules/mycred-module-settings.php:540
4469
  msgid "Prefix"
4470
  msgstr ""
4471
 
4472
+ #: ../includes/mycred-install.php:532 ../modules/mycred-module-settings.php:548
4473
  msgid "Suffix"
4474
  msgstr ""
4475
 
4476
+ #: ../includes/mycred-install.php:536
4477
  msgid "Cancel Setup"
4478
  msgstr ""
4479
 
4480
+ #: ../includes/mycred-install.php:536 ../includes/mycred-install.php:606
4481
  msgid "Next"
4482
  msgstr ""
4483
 
4484
+ #: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:556
4485
  msgid "Security"
4486
  msgstr ""
4487
 
4488
+ #: ../includes/mycred-install.php:571
4489
  msgid "Edit Settings Capability"
4490
  msgstr ""
4491
 
4492
+ #: ../includes/mycred-install.php:575
4493
  msgid "Edit Users %plural% Capability"
4494
  msgstr ""
4495
 
4496
+ #: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:569
4497
  msgid "Maximum %plural% payouts"
4498
  msgstr ""
4499
 
4500
+ #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:571
4501
  msgid ""
4502
  "As an added security, you can set the maximum amount a user can gain or "
4503
  "loose in a single instance. If used, make sure this is the maximum amount a "
4505
  "disable."
4506
  msgstr ""
4507
 
4508
+ #: ../includes/mycred-install.php:584 ../modules/mycred-module-settings.php:574
4509
  msgid "Excludes"
4510
  msgstr ""
4511
 
4512
+ #: ../includes/mycred-install.php:588 ../modules/mycred-module-settings.php:578
4513
  msgid "Exclude those who can \"Edit Settings\"."
4514
  msgstr ""
4515
 
4516
+ #: ../includes/mycred-install.php:592 ../modules/mycred-module-settings.php:582
4517
  msgid "Exclude those who can \"Edit Users %plural%\"."
4518
  msgstr ""
4519
 
4520
+ #: ../includes/mycred-install.php:595 ../modules/mycred-module-settings.php:586
4521
  msgid "Exclude the following user IDs:"
4522
  msgstr ""
4523
 
4524
+ #: ../includes/mycred-install.php:599 ../modules/mycred-module-settings.php:591
4525
  msgid "User Deletions"
4526
  msgstr ""
4527
 
4528
+ #: ../includes/mycred-install.php:603 ../modules/mycred-module-settings.php:594
4529
  msgid "Delete log entries when user is deleted."
4530
  msgstr ""
4531
 
4532
+ #: ../includes/mycred-install.php:624
4533
  msgid "Ready"
4534
  msgstr ""
4535
 
4536
+ #: ../includes/mycred-install.php:625
4537
  msgid "Almost done! Click the button below to finish this setup."
4538
  msgstr ""
4539
 
4540
+ #: ../includes/mycred-install.php:626
4541
  msgid "Install & Run"
4542
  msgstr ""
4543
 
4544
+ #: ../includes/mycred-log.php:430
4545
  #, php-format
4546
  msgid "Showing %d %s"
4547
  msgstr ""
4548
 
4549
+ #: ../includes/mycred-log.php:430
4550
  msgid "entry"
4551
  msgid_plural "entries"
4552
  msgstr[0] ""
4553
  msgstr[1] ""
4554
 
4555
+ #: ../includes/mycred-log.php:444
4556
  msgid "Go to the first page"
4557
  msgstr ""
4558
 
4559
+ #: ../includes/mycred-log.php:451
4560
  msgid "Go to the previous page"
4561
  msgstr ""
4562
 
4563
+ #: ../includes/mycred-log.php:460
4564
  msgid "Current page"
4565
  msgstr ""
4566
 
4567
+ #: ../includes/mycred-log.php:466
4568
  #, php-format
4569
  msgctxt "mycred"
4570
  msgid "%1$s of %2$s"
4571
  msgstr ""
4572
 
4573
+ #: ../includes/mycred-log.php:470
4574
  msgid "Go to the next page"
4575
  msgstr ""
4576
 
4577
+ #: ../includes/mycred-log.php:477
4578
  msgid "Go to the last page"
4579
  msgstr ""
4580
 
4581
+ #: ../includes/mycred-log.php:544
4582
  msgid "Show all references"
4583
  msgstr ""
4584
 
4585
+ #: ../includes/mycred-log.php:557
4586
+ msgid "User ID, Username, Email or Nicename"
4587
  msgstr ""
4588
 
4589
+ #: ../includes/mycred-log.php:563
4590
  msgid "Show in order"
4591
  msgstr ""
4592
 
4593
+ #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4594
  msgid "Ascending"
4595
  msgstr ""
4596
 
4597
+ #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4598
  msgid "Descending"
4599
  msgstr ""
4600
 
4601
+ #: ../includes/mycred-log.php:582
4602
  msgid "Filter"
4603
  msgstr ""
4604
 
4605
+ #: ../includes/mycred-log.php:635
4606
  msgid ""
4607
  "Log entries are exported to a CSV file and depending on the number of "
4608
  "entries selected, the process may take a few seconds."
4609
  msgstr ""
4610
 
4611
+ #: ../includes/mycred-log.php:639
4612
  msgid "No export options available."
4613
  msgstr ""
4614
 
4615
+ #: ../includes/mycred-log.php:668
4616
  msgid "Entry"
4617
  msgstr ""
4618
 
4619
+ #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4620
  msgid "User Missing"
4621
  msgstr ""
4622
 
4623
+ #: ../includes/mycred-log.php:839
4624
  msgid "No log entries found"
4625
  msgstr ""
4626
 
4627
+ #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4628
  msgid "Search Log"
4629
  msgstr ""
4630
 
4631
+ #: ../includes/mycred-log.php:855
4632
  msgid "search log entries"
4633
  msgstr ""
4634
 
4635
+ #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4636
+ #: modules/mycred-module-buddypress.php:249
4637
  msgid "All"
4638
  msgstr ""
4639
 
4640
+ #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4641
  msgid "Yesterday"
4642
  msgstr ""
4643
 
4796
  msgid "Error - Try Again"
4797
  msgstr ""
4798
 
4799
+ #: ../includes/mycred-shortcodes.php:764
4800
  msgid "A video ID is required for this shortcode"
4801
  msgstr ""
4802
 
4803
+ #: ../includes/mycred-shortcodes.php:957
4804
  #, php-format
4805
  msgid "Convert <span>%s</span> to <span>%s</span>"
4806
  msgstr ""
4807
 
4808
+ #: ../includes/mycred-shortcodes.php:966
4809
  #, php-format
4810
  msgid "Your current %s balance"
4811
  msgstr ""
4812
 
4813
+ #: ../includes/mycred-shortcodes.php:974
4814
  #, php-format
4815
  msgid "Minimum %s"
4816
  msgstr ""
4817
 
4818
+ #: ../includes/mycred-shortcodes.php:978
4819
  #, php-format
4820
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4821
  msgstr ""
4822
 
4823
+ #: ../includes/mycred-shortcodes.php:984
4824
  msgid "Exchange"
4825
  msgstr ""
4826
 
4827
+ #: ../includes/mycred-shortcodes.php:1049
4828
  msgid "No instances found for this point type"
4829
  msgstr ""
4830
 
4831
+ #: ../includes/mycred-shortcodes.php:1053
4832
  msgid "Invalid point type"
4833
  msgstr ""
4834
 
4835
+ #: ../includes/mycred-shortcodes.php:1114
4836
  msgid "Instance"
4837
  msgstr ""
4838
 
4839
+ #: ../includes/mycred-shortcodes.php:1116 ../modules/mycred-module-hooks.php:672 .
4840
+ #: ./modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:703 ..
4841
+ #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:780 ..
4842
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:1011 ..
4843
+ #: modules/mycred-module-hooks.php:1153 ../modules/mycred-module-hooks.php:1170 .
4844
+ #: ./modules/mycred-module-hooks.php:1219 ../modules/mycred-module-hooks.php:3008
4845
+ #: ../modules/mycred-module-hooks.php:3028 ../plugins/mycred-hook-affiliatewp.php:
4846
+ #: 237 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-bbPress.php:
4847
+ #: 440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-bbPress.php:
4848
+ #: 492 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
4849
  #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
4850
  #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
4851
  #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
4866
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4867
  #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
4868
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4869
+ #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
4870
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
4871
  #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
4872
  #: postratings.php:175
5124
  msgid "Import log entries from a CSV file."
5125
  msgstr ""
5126
 
5127
+ #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26
5128
  msgid "Add-ons"
5129
  msgstr ""
5130
 
5131
+ #: ../modules/mycred-module-addons.php:160
5132
  msgid "Give your users badges based on their interaction with your website."
5133
  msgstr ""
5134
 
5135
+ #: ../modules/mycred-module-addons.php:171
5136
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
5137
  msgstr ""
5138
 
5139
+ #: ../modules/mycred-module-addons.php:182
5140
  msgid ""
5141
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5142
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
5143
  "also let your users buy points for other members."
5144
  msgstr ""
5145
 
5146
+ #: ../modules/mycred-module-addons.php:193
5147
  msgid ""
5148
  "The coupons add-on allows you to create coupons that users can use to add "
5149
  "points to their accounts."
5150
  msgstr ""
5151
 
5152
+ #: ../modules/mycred-module-addons.php:204
5153
  msgid "Create email notices for any type of myCRED instance."
5154
  msgstr ""
5155
 
5156
+ #: ../modules/mycred-module-addons.php:215
5157
  msgid ""
5158
  "Let your users pay using their <strong>my</strong>CRED points balance. "
5159
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5160
  "Bookings: Event Espresso and Events Manager (free & pro)."
5161
  msgstr ""
5162
 
5163
+ #: ../modules/mycred-module-addons.php:226
5164
  msgid "Create pop-up notifications for when users gain or loose points."
5165
  msgstr ""
5166
 
5167
+ #: ../modules/mycred-module-addons.php:238
5168
  msgid ""
5169
  "Create ranks for users reaching a certain number of %_plural% with the "
5170
  "option to add logos for each rank."
5171
  msgstr ""
5172
 
5173
+ #: ../modules/mycred-module-addons.php:249
5174
  msgid ""
5175
  "This add-on allows you to sell posts, pages or any public post types on your "
5176
  "website. You can either sell the entire content or using our shortcode, sell "
5177
  "parts of your content allowing you to offer \"teasers\"."
5178
  msgstr ""
5179
 
5180
+ #: ../modules/mycred-module-addons.php:260
5181
  msgid ""
5182
  "Gives you access to your myCRED Staticstics based on your users gains and "
5183
  "loses."
5184
  msgstr ""
5185
 
5186
+ #: ../modules/mycred-module-addons.php:271
5187
  msgid ""
5188
  "Allow your users to send or \"donate\" points to other members by either using "
5189
  "the mycred_transfer shortcode or the myCRED Transfer widget."
5190
  msgstr ""
5191
 
5192
+ #: ../modules/mycred-module-addons.php:313
5193
  #, php-format
5194
  msgid "%s Add-ons"
5195
  msgstr ""
5196
 
5197
+ #: ../modules/mycred-module-addons.php:320
5198
  msgid "Add-on Activated"
5199
  msgstr ""
5200
 
5201
+ #: ../modules/mycred-module-addons.php:323
5202
  msgid "Add-on Deactivated"
5203
  msgstr ""
5204
 
5205
+ #: ../modules/mycred-module-addons.php:328
5206
+ msgid "Add-ons Reloaded"
5207
+ msgstr ""
5208
+
5209
+ #: ../modules/mycred-module-addons.php:331
5210
  msgid "Add-ons can expand your current installation with further features."
5211
  msgstr ""
5212
 
5213
+ #: ../modules/mycred-module-addons.php:358
5214
+ msgid "Reload Add-ons"
5215
+ msgstr ""
5216
+
5217
+ #: ../modules/mycred-module-addons.php:359
5218
  #, php-format
5219
  msgid "You can find more add-ons in our %s."
5220
  msgstr ""
5221
 
5222
+ #: ../modules/mycred-module-addons.php:359
5223
  msgid "online store"
5224
  msgstr ""
5225
 
5226
+ #: ../modules/mycred-module-addons.php:382
5227
  msgid "Deactivate Add-on"
5228
  msgstr ""
5229
 
5230
+ #: ../modules/mycred-module-addons.php:383
5231
  msgid "Deactivate"
5232
  msgstr ""
5233
 
5234
+ #: ../modules/mycred-module-addons.php:390
5235
  msgid "Activate Add-on"
5236
  msgstr ""
5237
 
5238
+ #: ../modules/mycred-module-addons.php:391
5239
  msgid "Activate"
5240
  msgstr ""
5241
 
5242
+ #: ../modules/mycred-module-addons.php:409
5243
  msgid "Version"
5244
  msgstr ""
5245
 
5246
+ #: ../modules/mycred-module-addons.php:413
5247
  msgid "By"
5248
  msgstr ""
5249
 
5250
+ #: ../modules/mycred-module-addons.php:417
5251
  msgid "About"
5252
  msgstr ""
5253
 
5254
+ #: ../modules/mycred-module-addons.php:421
5255
  msgid "Get Pro"
5256
  msgstr ""
5257
 
5258
+ #: ../modules/mycred-module-buddypress.php:31
5259
  msgid "My History"
5260
  msgstr ""
5261
 
5262
+ #: ../modules/mycred-module-buddypress.php:32
5263
  #, php-format
5264
  msgid "%s's History"
5265
  msgstr ""
5266
 
5267
+ #: ../modules/mycred-module-buddypress.php:131
5268
  msgid "Current balance"
5269
  msgstr ""
5270
 
5271
+ #: ../modules/mycred-module-buddypress.php:362
5272
  msgid "Go"
5273
  msgstr ""
5274
 
5275
+ #: ../modules/mycred-module-buddypress.php:425
5276
  msgid "Show in Profile"
5277
  msgstr ""
5278
 
5279
+ #: ../modules/mycred-module-buddypress.php:442
5280
  #, php-format
5281
  msgid "%singular% Balance"
5282
  msgstr ""
5283
 
5284
+ #: ../modules/mycred-module-buddypress.php:459
5285
  #, php-format
5286
  msgid "Members and visitors can other members %_singular% balance."
5287
  msgstr ""
5288
 
5289
+ #: ../modules/mycred-module-buddypress.php:469
5290
  msgid "%plural% History"
5291
  msgstr ""
5292
 
5293
+ #: ../modules/mycred-module-buddypress.php:486
5294
  msgid "Members can view each others %_plural% history."
5295
  msgstr ""
5296
 
5297
+ #: ../modules/mycred-module-buddypress.php:491
5298
  msgid "Menu Title"
5299
  msgstr ""
5300
 
5301
+ #: ../modules/mycred-module-buddypress.php:493
5302
  msgid "Title shown to me"
5303
  msgstr ""
5304
 
5305
+ #: ../modules/mycred-module-buddypress.php:498
5306
  #, php-format
5307
  msgid "Title shown to others. Use %s to show the first name."
5308
  msgstr ""
5309
 
5310
+ #: ../modules/mycred-module-buddypress.php:503
5311
  msgid "Menu Position"
5312
  msgstr ""
5313
 
5314
+ #: ../modules/mycred-module-buddypress.php:505
5315
  msgid "Current menu positions:"
5316
  msgstr ""
5317
 
5318
+ #: ../modules/mycred-module-buddypress.php:510
5319
  msgid "History URL slug"
5320
  msgstr ""
5321
 
5322
+ #: ../modules/mycred-module-buddypress.php:512
5323
  msgid "Do not use empty spaces!"
5324
  msgstr ""
5325
 
5326
+ #: ../modules/mycred-module-buddypress.php:517
5327
  msgid "Number of history entries to show"
5328
  msgstr ""
5329
 
5330
+ #: ../modules/mycred-module-hooks.php:107
5331
  #, php-format
5332
  msgid "%plural% for registrations"
5333
  msgstr ""
5334
 
5335
+ #: ../modules/mycred-module-hooks.php:108
5336
  #, php-format
5337
  msgid "Award %_plural% for users joining your website."
5338
  msgstr ""
5339
 
5340
+ #: ../modules/mycred-module-hooks.php:114
5341
  #, php-format
5342
  msgid "%plural% for daily visits"
5343
  msgstr ""
5344
 
5345
+ #: ../modules/mycred-module-hooks.php:115
5346
  #, php-format
5347
  msgid "Award %_plural% for users visiting your website on a daily basis."
5348
  msgstr ""
5349
 
5350
+ #: ../modules/mycred-module-hooks.php:121
5351
  #, php-format
5352
  msgid "%plural% for viewing content"
5353
  msgstr ""
5354
 
5355
+ #: ../modules/mycred-module-hooks.php:122
5356
  msgid ""
5357
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
5358
  "authors for members viewing their content."
5359
  msgstr ""
5360
 
5361
+ #: ../modules/mycred-module-hooks.php:128
5362
  #, php-format
5363
  msgid "%plural% for logins"
5364
  msgstr ""
5365
 
5366
+ #: ../modules/mycred-module-hooks.php:129
5367
  #, php-format
5368
  msgid ""
5369
  "Award %_plural% for logging in to your website. You can also set an optional "
5370
  "limit."
5371
  msgstr ""
5372
 
5373
+ #: ../modules/mycred-module-hooks.php:135
5374
  #, php-format
5375
  msgid "%plural% for publishing content"
5376
  msgstr ""
5377
 
5378
+ #: ../modules/mycred-module-hooks.php:136
5379
  #, php-format
5380
  msgid ""
5381
  "Award %_plural% for publishing content on your website. If your custom post "
5382
  "type is not shown bellow, make sure it is set to \"Public\"."
5383
  msgstr ""
5384
 
5385
+ #: ../modules/mycred-module-hooks.php:142
5386
  #, php-format
5387
  msgid "%plural% for comments"
5388
  msgstr ""
5389
 
5390
+ #: ../modules/mycred-module-hooks.php:142
5391
  #, php-format
5392
  msgid "%plural% for Disqus comments"
5393
  msgstr ""
5394
 
5395
+ #: ../modules/mycred-module-hooks.php:143
5396
  #, php-format
5397
  msgid "Award %_plural% for making comments."
5398
  msgstr ""
5399
 
5400
+ #: ../modules/mycred-module-hooks.php:149
5401
  #, php-format
5402
  msgid "%plural% for clicking on links"
5403
  msgstr ""
5404
 
5405
+ #: ../modules/mycred-module-hooks.php:150
5406
  msgid ""
5407
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5408
  "shortcode."
5409
  msgstr ""
5410
 
5411
+ #: ../modules/mycred-module-hooks.php:156
5412
  #, php-format
5413
  msgid "%plural% for viewing Videos"
5414
  msgstr ""
5415
 
5416
+ #: ../modules/mycred-module-hooks.php:157
5417
  msgid ""
5418
  "Award %_plural% to users who watches videos embedded using the "
5419
  "[mycred_video] shortcode."
5420
  msgstr ""
5421
 
5422
+ #: ../modules/mycred-module-hooks.php:163
5423
  #, php-format
5424
  msgid "%plural% for referrals"
5425
  msgstr ""
5426
 
5427
+ #: ../modules/mycred-module-hooks.php:164
5428
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5429
  msgstr ""
5430
 
5431
+ #: ../modules/mycred-module-hooks.php:199
5432
  #, php-format
5433
  msgid "%s Hooks"
5434
  msgstr ""
5435
 
5436
+ #: ../modules/mycred-module-hooks.php:203
5437
  msgid ""
5438
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5439
  "depending on their actions around your website."
5440
  msgstr ""
5441
 
5442
+ #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
5443
+ #: ./modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:714 ..
5444
+ #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:1157 ..
5445
+ #: modules/mycred-module-hooks.php:1174 ../modules/mycred-module-hooks.php:1223 .
5446
+ #: ./modules/mycred-module-hooks.php:1675 ../modules/mycred-module-hooks.php:1692
5447
+ #: ../modules/mycred-module-hooks.php:1709 ../modules/mycred-module-hooks.php:
5448
+ #: 3000 ../modules/mycred-module-hooks.php:3020 ../plugins/mycred-hook-
5449
  #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5450
+ #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:415 ..
5451
+ #: plugins/mycred-hook-bbPress.php:428 ../plugins/mycred-hook-bbPress.php:445 ..
5452
+ #: plugins/mycred-hook-bbPress.php:463 ../plugins/mycred-hook-bbPress.php:480 ..
5453
+ #: plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:519 ..
5454
  #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5455
  #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5456
  #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
5482
  msgid "Log template"
5483
  msgstr ""
5484
 
5485
+ #: ../modules/mycred-module-hooks.php:666
5486
  #, php-format
5487
  msgid "%plural% for viewing Posts"
5488
  msgstr ""
5489
 
5490
+ #: ../modules/mycred-module-hooks.php:669 ../modules/mycred-module-hooks.php:686 .
5491
+ #: ./modules/mycred-module-hooks.php:700 ../modules/mycred-module-hooks.php:717 ..
5492
+ #: modules/mycred-module-hooks.php:777 ../modules/mycred-module-hooks.php:794
5493
  msgid "Member"
5494
  msgstr ""
5495
 
5496
+ #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:692 .
5497
+ #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:723 ..
5498
+ #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:800 ..
5499
+ #: modules/mycred-module-hooks.php:1670 ../modules/mycred-module-hooks.php:1687 .
5500
+ #: ./modules/mycred-module-hooks.php:1704
5501
  msgid "Content Author"
5502
  msgstr ""
5503
 
5504
+ #: ../modules/mycred-module-hooks.php:697
5505
  #, php-format
5506
  msgid "%plural% for viewing Pages"
5507
  msgstr ""
5508
 
5509
+ #: ../modules/mycred-module-hooks.php:774
5510
  #, php-format
5511
  msgid "%plural% for viewing %s"
5512
  msgstr ""
5513
 
5514
+ #: ../modules/mycred-module-hooks.php:1147
5515
  #, php-format
5516
  msgid "%plural% for Posts"
5517
  msgstr ""
5518
 
5519
+ #: ../modules/mycred-module-hooks.php:1164
5520
  #, php-format
5521
  msgid "%plural% for Pages"
5522
  msgstr ""
5523
 
5524
+ #: ../modules/mycred-module-hooks.php:1213
5525
  #, php-format
5526
  msgid "%plural% for %s"
5527
  msgstr ""
5528
 
5529
+ #: ../modules/mycred-module-hooks.php:1660
5530
  msgid ""
5531
  "%plural% are only awarded when your website has been synced with the Disqus "
5532
  "server!"
5533
  msgstr ""
5534
 
5535
+ #: ../modules/mycred-module-hooks.php:1666 ../modules/mycred-module-hooks.php:
5536
+ #: 1683 ../modules/mycred-module-hooks.php:1700
5537
  msgid "Comment Author"
5538
  msgstr ""
5539
 
5540
+ #: ../modules/mycred-module-hooks.php:1680
5541
  msgid "Comment Marked SPAM"
5542
  msgstr ""
5543
 
5544
+ #: ../modules/mycred-module-hooks.php:1697
5545
  msgid "Trashed / Unapproved Comments"
5546
  msgstr ""
5547
 
5548
+ #: ../modules/mycred-module-hooks.php:1717
5549
  msgid "Limit per post"
5550
  msgstr ""
5551
 
5552
+ #: ../modules/mycred-module-hooks.php:1719
5553
  msgid ""
5554
  "The number of comments per post that grants %_plural% to the comment author. "
5555
  "Use zero for unlimited."
5556
  msgstr ""
5557
 
5558
+ #: ../modules/mycred-module-hooks.php:1723
5559
  msgid "Limit per day"
5560
  msgstr ""
5561
 
5562
+ #: ../modules/mycred-module-hooks.php:1725
5563
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5564
  msgstr ""
5565
 
5566
+ #: ../modules/mycred-module-hooks.php:1730
5567
  msgid ""
5568
  "%plural% is to be awarded even when comment authors reply to their own "
5569
  "comment."
5570
  msgstr ""
5571
 
5572
+ #: ../modules/mycred-module-hooks.php:1810
5573
  msgid "Once for each unique URL"
5574
  msgstr ""
5575
 
5576
+ #: ../modules/mycred-module-hooks.php:1811
5577
  msgid "Once for each unique link id"
5578
  msgstr ""
5579
 
5580
+ #: ../modules/mycred-module-hooks.php:2022
5581
  msgid ""
5582
  "The default amount to award for clicking on links. You can override this in "
5583
  "the shortcode."
5584
  msgstr ""
5585
 
5586
+ #: ../modules/mycred-module-hooks.php:2029
5587
  #, php-format
5588
  msgid "Custom tags: %url%, %title% or %id%."
5589
  msgstr ""
5590
 
5591
+ #: ../modules/mycred-module-hooks.php:2042 ../modules/mycred-module-hooks.php:3096
5592
  msgid "Note!"
5593
  msgstr ""
5594
 
5595
+ #: ../modules/mycred-module-hooks.php:2042
5596
  msgid ""
5597
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5598
  "generate one automatically based on the value set under href. If you are "
5600
  "by ID."
5601
  msgstr ""
5602
 
5603
+ #: ../modules/mycred-module-hooks.php:2044 ../modules/mycred-module-hooks.php:2428
5604
  msgid "Available Shortcode"
5605
  msgstr ""
5606
 
5607
+ #: ../modules/mycred-module-hooks.php:2392
5608
  msgid "Amount to award for viewing videos."
5609
  msgstr ""
5610
 
5611
+ #: ../modules/mycred-module-hooks.php:2402
5612
  msgid "Award Logic"
5613
  msgstr ""
5614
 
5615
+ #: ../modules/mycred-module-hooks.php:2404
5616
  #, php-format
5617
  msgid "Select when %_plural% should be awarded or deducted."
5618
  msgstr ""
5619
 
5620
+ #: ../modules/mycred-module-hooks.php:2405
5621
  msgid "Play - As soon as video starts playing."
5622
  msgstr ""
5623
 
5624
+ #: ../modules/mycred-module-hooks.php:2406
5625
  msgid "Full - First when the entire video has played."
5626
  msgstr ""
5627
 
5628
+ #: ../modules/mycred-module-hooks.php:2407
5629
  msgid "Interval - For each x number of seconds watched."
5630
  msgstr ""
5631
 
5632
+ #: ../modules/mycred-module-hooks.php:2412
5633
  msgid "Number of seconds"
5634
  msgstr ""
5635
 
5636
+ #: ../modules/mycred-module-hooks.php:2419
5637
  msgid "Leniency"
5638
  msgstr ""
5639
 
5640
+ #: ../modules/mycred-module-hooks.php:2421
5641
  msgid ""
5642
  "The maximum percentage a users view of a movie can differ from the actual "
5643
  "length."
5644
  msgstr ""
5645
 
5646
+ #: ../modules/mycred-module-hooks.php:2424
5647
  msgid ""
5648
  "Do not set this value to zero! A lot of thing can happen while a user "
5649
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5650
  "buffering or play back errors."
5651
  msgstr ""
5652
 
5653
+ #: ../modules/mycred-module-hooks.php:2499
5654
  msgid "Affiliate Program"
5655
  msgstr ""
5656
 
5657
+ #: ../modules/mycred-module-hooks.php:2508
5658
  msgid "Per Day"
5659
  msgstr ""
5660
 
5661
+ #: ../modules/mycred-module-hooks.php:2667
5662
  msgid "Link"
5663
  msgstr ""
5664
 
5665
+ #: ../modules/mycred-module-hooks.php:2671
5666
  msgid "Visitors Referred"
5667
  msgstr ""
5668
 
5669
+ #: ../modules/mycred-module-hooks.php:2675
5670
  msgid "Signups Referred"
5671
  msgstr ""
5672
 
5673
+ #: ../modules/mycred-module-hooks.php:2994 ../plugins/mycred-hook-affiliatewp.php:
5674
  #: 231
5675
  msgid "Referring Visitors"
5676
  msgstr ""
5677
 
5678
+ #: ../modules/mycred-module-hooks.php:3013 ../modules/mycred-module-hooks.php:3033
 
 
 
 
5679
  msgid "Referring Signups"
5680
  msgstr ""
5681
 
5682
+ #: ../modules/mycred-module-hooks.php:3017
5683
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5684
  msgstr ""
5685
 
5686
+ #: ../modules/mycred-module-hooks.php:3035
5687
  msgid "Registrations are disabled."
5688
  msgstr ""
5689
 
5690
+ #: ../modules/mycred-module-hooks.php:3043
5691
  msgid "Referral Links"
5692
  msgstr ""
5693
 
5694
+ #: ../modules/mycred-module-hooks.php:3047
5695
  msgid "Assign numeric referral IDs to each user."
5696
  msgstr ""
5697
 
5698
+ #: ../modules/mycred-module-hooks.php:3048 ../modules/mycred-module-hooks.php:3054
5699
  msgid "Example"
5700
  msgstr ""
5701
 
5702
+ #: ../modules/mycred-module-hooks.php:3053
5703
  msgid "Assign usernames as IDs for each user."
5704
  msgstr ""
5705
 
5706
+ #: ../modules/mycred-module-hooks.php:3057
5707
  msgid "IP Limit"
5708
  msgstr ""
5709
 
5710
+ #: ../modules/mycred-module-hooks.php:3061
5711
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5712
  msgstr ""
5713
 
5714
+ #: ../modules/mycred-module-hooks.php:3065 ../modules/mycred-module-hooks.php:3100
5715
  msgid "BuddyPress Profile"
5716
  msgstr ""
5717
 
5718
+ #: ../modules/mycred-module-hooks.php:3068
5719
  msgid "Insert Link in users Profile"
5720
  msgstr ""
5721
 
5722
+ #: ../modules/mycred-module-hooks.php:3069
5723
  msgid ""
5724
  "Option to inser the referral link in users profiles. Links will only be "
5725
  "visible to users viewing their own profiles or administrators."
5726
  msgstr ""
5727
 
5728
+ #: ../modules/mycred-module-hooks.php:3075
5729
  msgid "Leave empty to hide."
5730
  msgstr ""
5731
 
5732
+ #: ../modules/mycred-module-hooks.php:3078
5733
  msgid "Description"
5734
  msgstr ""
5735
 
5736
+ #: ../modules/mycred-module-hooks.php:3079
5737
  msgid "Optional description to insert under the link."
5738
  msgstr ""
5739
 
5740
+ #: ../modules/mycred-module-hooks.php:3093
5741
  msgid "Profile Positioning"
5742
  msgstr ""
5743
 
5744
+ #: ../modules/mycred-module-hooks.php:3095
5745
  msgid ""
5746
  "You can move around the referral link on your users profile by changing the "
5747
  "position. Increase to move up, decrease to move down."
5748
  msgstr ""
5749
 
5750
+ #: ../modules/mycred-module-hooks.php:3096
5751
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5752
  msgstr ""
5753
 
5754
+ #: ../modules/mycred-module-hooks.php:3102
5755
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5756
  msgstr ""
5757
 
5758
+ #: ../modules/mycred-module-log.php:207 ../modules/mycred-module-log.php:230 ..
5759
+ #: modules/mycred-module-settings.php:66 ../modules/mycred-module-settings.php:109
5760
  msgid "Access denied for this action"
5761
  msgstr ""
5762
 
5763
+ #: ../modules/mycred-module-log.php:214
5764
  msgid "Row Deleted"
5765
  msgstr ""
5766
 
5767
+ #: ../modules/mycred-module-log.php:243
5768
  msgid "Log entry not found"
5769
  msgstr ""
5770
 
5771
+ #: ../modules/mycred-module-log.php:256
5772
  msgid "Entry Updated"
5773
  msgstr ""
5774
 
5775
+ #: ../modules/mycred-module-log.php:316 ../modules/mycred-module-settings.php:621
5776
  msgid "Entries"
5777
  msgstr ""
5778
 
5779
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
5780
+ #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
5781
  msgid "Export"
5782
  msgstr ""
5783
 
5784
+ #: ../modules/mycred-module-log.php:340
5785
  msgid "Search results for"
5786
  msgstr ""
5787
 
5788
+ #: ../modules/mycred-module-log.php:411
5789
  #, php-format
5790
  msgid "%s Log"
5791
  msgstr ""
5792
 
5793
+ #: ../modules/mycred-module-log.php:422
5794
  msgid ""
5795
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
5796
  "Certain hooks and shortcodes will not work correctly!"
5797
  msgstr ""
5798
 
5799
+ #: ../modules/mycred-module-log.php:565
5800
  msgid "Edit"
5801
  msgstr ""
5802
 
5803
+ #: ../modules/mycred-module-log.php:612
5804
  msgid "Time"
5805
  msgstr ""
5806
 
5807
+ #: ../modules/mycred-module-log.php:616
5808
  msgid "Current Log Entry"
5809
  msgstr ""
5810
 
5811
+ #: ../modules/mycred-module-log.php:618
5812
  msgid "The current saved log entry"
5813
  msgstr ""
5814
 
5815
+ #: ../modules/mycred-module-log.php:621
5816
  msgid "Adjust Log Entry"
5817
  msgstr ""
5818
 
5819
+ #: ../modules/mycred-module-log.php:623
5820
  msgid "The new log entry"
5821
  msgstr ""
5822
 
5823
+ #: ../modules/mycred-module-log.php:626
5824
  msgid "Update Log Entry"
5825
  msgstr ""
5826
 
5827
+ #: ../modules/mycred-module-log.php:697
5828
  #, php-format
5829
  msgid "My %s History"
5830
  msgstr ""
5831
 
5832
+ #: ../modules/mycred-module-settings.php:70 ../modules/mycred-module-settings.php:
5833
+ #: 113 ../modules/mycred-module-settings.php:166
5834
  msgid "Missing point type"
5835
  msgstr ""
5836
 
5837
+ #: ../modules/mycred-module-settings.php:144
5838
  msgid "Accounts successfully reset"
5839
  msgstr ""
5840
 
5841
+ #: ../modules/mycred-module-settings.php:196
5842
  msgid "No users found to export"
5843
  msgstr ""
5844
 
5845
+ #: ../modules/mycred-module-settings.php:246
5846
  msgid "Invalid decimal value."
5847
  msgstr ""
5848
 
5849
+ #: ../modules/mycred-module-settings.php:293
5850
  msgid "Log Updated"
5851
  msgstr ""
5852
 
5853
+ #: ../modules/mycred-module-settings.php:423
5854
  msgid "Update Database"
5855
  msgstr ""
5856
 
5857
+ #: ../modules/mycred-module-settings.php:424
5858
  msgid "Zero for no decimals or maximum 20."
5859
  msgstr ""
5860
 
5861
+ #: ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.
5862
+ #: php:528
5863
  msgid "Tip"
5864
  msgstr ""
5865
 
5866
+ #: ../modules/mycred-module-settings.php:427
5867
  msgid ""
5868
  "As this is your main point type, the value you select here will be the "
5869
  "largest number of decimals your installation will support."
5870
  msgstr ""
5871
 
5872
+ #: ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.
5873
+ #: php:453
5874
  msgid "No decimals"
5875
  msgstr ""
5876
 
5877
+ #: ../modules/mycred-module-settings.php:465
5878
  #, php-format
5879
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
5880
  msgstr ""
5881
 
5882
+ #: ../modules/mycred-module-settings.php:503
5883
  #, php-format
5884
  msgid "%s Settings"
5885
  msgstr ""
5886
 
5887
+ #: ../modules/mycred-module-settings.php:507
5888
  msgid "Adjust your core or add-on settings."
5889
  msgstr ""
5890
 
5891
+ #: ../modules/mycred-module-settings.php:513
5892
  msgid "Core Settings"
5893
  msgstr ""
5894
 
5895
+ #: ../modules/mycred-module-settings.php:515
5896
  msgid "Name"
5897
  msgstr ""
5898
 
5899
+ #: ../modules/mycred-module-settings.php:520
5900
  #, php-format
5901
  msgid "Accessible though the %singular% template tag."
5902
  msgstr ""
5903
 
5904
+ #: ../modules/mycred-module-settings.php:525
5905
  msgid "Accessible though the %plural% template tag."
5906
  msgstr ""
5907
 
5908
+ #: ../modules/mycred-module-settings.php:528
5909
  msgid ""
5910
  "Adding an underscore at the beginning of template tag for names will return "
5911
  "them in lowercase. i.e. %_singular%"
5912
  msgstr ""
5913
 
5914
+ #: ../modules/mycred-module-settings.php:552
5915
  msgid "Separator"
5916
  msgid_plural "Separators"
5917
  msgstr[0] ""
5918
  msgstr[1] ""
5919
 
5920
+ #: ../modules/mycred-module-settings.php:559
5921
  msgid "Edit Settings"
5922
  msgstr ""
5923
 
5924
+ #: ../modules/mycred-module-settings.php:561 ../modules/mycred-module-settings.
5925
+ #: php:566
5926
  msgid "Capability to check for."
5927
  msgstr ""
5928
 
5929
+ #: ../modules/mycred-module-settings.php:564
5930
  msgid "Edit Users %plural%"
5931
  msgstr ""
5932
 
5933
+ #: ../modules/mycred-module-settings.php:588
5934
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
5935
  msgstr ""
5936
 
5937
+ #: ../modules/mycred-module-settings.php:612
5938
  msgid "Management"
5939
  msgstr ""
5940
 
5941
+ #: ../modules/mycred-module-settings.php:614
5942
  msgid "The Log"
5943
  msgstr ""
5944
 
5945
+ #: ../modules/mycred-module-settings.php:617
5946
  msgid "Table Name"
5947
  msgstr ""
5948
 
5949
+ #: ../modules/mycred-module-settings.php:626
5950
  msgid "Empty Log"
5951
  msgstr ""
5952
 
5953
+ #: ../modules/mycred-module-settings.php:641
5954
  msgid "Set all to zero"
5955
  msgstr ""
5956
 
5957
+ #: ../modules/mycred-module-settings.php:641
5958
  msgid "CSV Export"
5959
  msgstr ""
5960
 
5961
+ #: ../modules/mycred-module-settings.php:667
5962
  msgid "Default"
5963
  msgstr ""
5964
 
5965
+ #: ../modules/mycred-module-settings.php:670 ../modules/mycred-module-settings.
5966
+ #: php:691 ../modules/mycred-module-settings.php:715
5967
  msgid "Meta Key"
5968
  msgstr ""
5969
 
5970
+ #: ../modules/mycred-module-settings.php:712
5971
  msgid "Add New Type"
5972
  msgstr ""
5973
 
5974
+ #: ../modules/mycred-module-settings.php:717
5975
  msgid "A unique ID for this type."
5976
  msgstr ""
5977
 
5978
+ #: ../modules/mycred-module-settings.php:722
5979
  msgid "Menu and page title."
5980
  msgstr ""
5981
 
5982
+ #: ../modules/mycred-module-settings.php:725
5983
  msgid ""
5984
  "The meta key must be lowercase and only contain letters or underscores. All "
5985
  "other characters will be deleted!"
5986
  msgstr ""
5987
 
5988
+ #: ../modules/mycred-module-settings.php:748
5989
  msgid "Identify users by"
5990
  msgstr ""
5991
 
5992
+ #: ../modules/mycred-module-settings.php:754
5993
+ msgid "User ID"
5994
+ msgstr ""
5995
+
5996
+ #: ../modules/mycred-module-settings.php:755
5997
  msgid "User Email"
5998
  msgstr ""
5999
 
6000
+ #: ../modules/mycred-module-settings.php:756
6001
  msgid "User Login"
6002
  msgstr ""
6003
 
6004
+ #: ../modules/mycred-module-settings.php:764
6005
  msgid ""
6006
  "Use ID if you intend to use this export as a backup of your current site "
6007
  "while Email is recommended if you want to export to a different site."
6008
  msgstr ""
6009
 
6010
+ #: ../modules/mycred-module-settings.php:767
6011
  msgid "Import Log Entry"
6012
  msgstr ""
6013
 
6014
+ #: ../modules/mycred-module-settings.php:769
6015
  #, php-format
6016
  msgid ""
6017
  "Optional log entry to use if you intend to import this file in a different "
6108
  msgid "Awards %_plural% for bbPress actions."
6109
  msgstr ""
6110
 
6111
+ #: ../plugins/mycred-hook-bbPress.php:404
6112
  #, php-format
6113
  msgid "%plural% for New Forum"
6114
  msgstr ""
6115
 
6116
+ #: ../plugins/mycred-hook-bbPress.php:421
6117
  #, php-format
6118
  msgid "%plural% for Forum Deletion"
6119
  msgstr ""
6120
 
6121
+ #: ../plugins/mycred-hook-bbPress.php:434 ../plugins/mycred-hook-simplepress.php:
6122
  #: 278
6123
  #, php-format
6124
  msgid "%plural% for New Topic"
6125
  msgstr ""
6126
 
6127
+ #: ../plugins/mycred-hook-bbPress.php:452
6128
  #, php-format
6129
  msgid "Forum authors can receive %_plural% for creating new topics."
6130
  msgstr ""
6131
 
6132
+ #: ../plugins/mycred-hook-bbPress.php:456 ../plugins/mycred-hook-simplepress.php:
6133
  #: 295
6134
  #, php-format
6135
  msgid "%plural% for Topic Deletion"
6136
  msgstr ""
6137
 
6138
+ #: ../plugins/mycred-hook-bbPress.php:469
6139
  #, php-format
6140
  msgid "%plural% for Favorited Topic"
6141
  msgstr ""
6142
 
6143
+ #: ../plugins/mycred-hook-bbPress.php:486
6144
  #, php-format
6145
  msgid "%plural% for New Reply"
6146
  msgstr ""
6147
 
6148
+ #: ../plugins/mycred-hook-bbPress.php:504
6149
  #, php-format
6150
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
6151
  msgstr ""
6152
 
6153
+ #: ../plugins/mycred-hook-bbPress.php:508
6154
  #, php-format
6155
  msgid "Show users %_plural% balance in replies"
6156
  msgstr ""
6157
 
6158
+ #: ../plugins/mycred-hook-bbPress.php:512
6159
  #, php-format
6160
  msgid "%plural% for Reply Deletion"
6161
  msgstr ""
6491
  msgstr ""
6492
 
6493
  #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6494
+ #: php:80
6495
  msgid "Reward with %plural%"
6496
  msgstr ""
6497
 
6535
  msgid "%plural% for Topic Post Deletion"
6536
  msgstr ""
6537
 
6538
+ #: ../plugins/mycred-hook-woocommerce.php:210
6539
  msgid "WooCommerce Product Reviews"
6540
  msgstr ""
6541
 
6542
+ #: ../plugins/mycred-hook-woocommerce.php:211
6543
  #, php-format
6544
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6545
  msgstr ""
lang/mycred-es_ES.mo CHANGED
Binary file
lang/mycred-es_ES.po CHANGED
@@ -3,9 +3,10 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Feb 02 2015 11:27:25 GMT+0100 (CET)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
- "Language-Team: LANGUAGE <support@mycred.me>\n"
 
9
  "Language: Spanish (Spain)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
11
  "MIME-Version: 1.0\n"
@@ -30,7 +31,7 @@ msgstr "Saldo"
30
 
31
  #: ../mycred.php:474
32
  msgid "%label% History"
33
- msgstr "%lavel% Historial"
34
 
35
  #: ../mycred.php:567
36
  #, php-format
@@ -42,9 +43,9 @@ msgid "Awesome People"
42
  msgstr "Gente genial"
43
 
44
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
45
- #: addon-badges.php:595 ../addons/gateway/event-booking/mycred-eventsmanager.php:
46
- #: 478 ../addons/ranks/myCRED-addon-ranks.php:421 ../addons/ranks/myCRED-addon-
47
- #: ranks.php:1514 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
48
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
49
  #: php:636
50
  msgid "Processing..."
@@ -110,15 +111,15 @@ msgid "Log entry updated"
110
  msgstr "Entrada de registro actualizado"
111
 
112
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
113
- #: notices.php:808 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
114
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
115
  msgid "Setup"
116
  msgstr "Configurar"
117
 
118
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
119
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
120
- #: network.php:151 ../modules/mycred-module-settings.php:20 ../modules/mycred-
121
- #: module-settings.php:21 ../modules/mycred-module-settings.php:22
122
  msgid "Settings"
123
  msgstr "Configuraciones"
124
 
@@ -130,55 +131,51 @@ msgstr ""
130
  "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
131
  "archivo, por si acaso!"
132
 
133
- #: ../abstracts/mycred-abstract-hook.php:74
134
- msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
135
- msgstr "Historia"
136
-
137
  #: ../abstracts/mycred-abstract-hook.php:83
138
  msgid "This Hook has no settings"
139
  msgstr "Este gancho no ha sido configurado"
140
 
141
- #: ../abstracts/mycred-abstract-hook.php:223 ../abstracts/mycred-abstract-hook.
142
- #: php:290 ../includes/mycred-functions.php:2633 ../modules/mycred-module-hooks.
143
- #: php:1649
144
  msgid "No limit"
145
  msgstr "Sin Limite"
146
 
147
- #: ../abstracts/mycred-abstract-hook.php:224
148
  msgid "/ Day"
149
  msgstr ""
150
 
151
- #: ../abstracts/mycred-abstract-hook.php:225
152
  msgid "/ Week"
153
  msgstr ""
154
 
155
- #: ../abstracts/mycred-abstract-hook.php:226
156
  msgid "/ Month"
157
  msgstr ""
158
 
159
- #: ../abstracts/mycred-abstract-hook.php:227
160
  msgid "in Total"
161
  msgstr ""
162
 
163
- #: ../abstracts/mycred-abstract-hook.php:291
164
  msgid "Once every 24 hours"
165
  msgstr "Una vez cada 24 horas"
166
 
167
- #: ../abstracts/mycred-abstract-hook.php:292
168
  msgid "Once every 7 days"
169
  msgstr "Una vez cada 7 dias"
170
 
171
- #: ../abstracts/mycred-abstract-hook.php:293
172
  msgid "Once per day (reset at midnight)"
173
  msgstr "Una vez al dia (reinicializado al medianoche)"
174
 
175
- #: ../abstracts/mycred-abstract-hook.php:300 ../addons/banking/abstracts/mycred-
176
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:628 ..
177
- #: addons/buy-creds/myCRED-addon-buy-creds.php:649 ../addons/buy-
178
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
179
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
180
- #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
181
- #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:989
182
  msgid "Select"
183
  msgstr "Seleccionar"
184
 
@@ -186,30 +183,30 @@ msgstr "Seleccionar"
186
  msgid "myCRED_Module() Error. A Module ID is required!"
187
  msgstr "Error de myCRED_Module(). ¡Se requiere una ID de Modulo!"
188
 
189
- #: ../abstracts/mycred-abstract-module.php:351 ../abstracts/mycred-abstract-
190
- #: module.php:359
191
  msgid "Surprise"
192
  msgstr "Sorpresa"
193
 
194
- #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:83
195
  msgid "click to close"
196
  msgstr "haga clic para cerrar"
197
 
198
- #: ../abstracts/mycred-abstract-module.php:447 ../includes/mycred-network.php:84
199
  msgid "click to open"
200
  msgstr "haga clic para abrir"
201
 
202
- #: ../abstracts/mycred-abstract-module.php:480 ../addons/buy-creds/myCRED-addon-
203
- #: buy-creds.php:846
204
  msgid "Settings Updated"
205
  msgstr "Configuraciones Actualizadas"
206
 
207
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
208
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
209
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
210
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:373 ..
211
- #: addons/badges/myCRED-addon-badges.php:379 ../addons/badges/myCRED-addon-
212
- #: badges.php:385
213
  msgid "Badges"
214
  msgstr "Insignias"
215
 
@@ -218,273 +215,277 @@ msgstr "Insignias"
218
  msgid "Badges (%d)"
219
  msgstr ""
220
 
221
- #: ../addons/badges/myCRED-addon-badges.php:256
222
  #, php-format
223
  msgid "%d Users earned this badge."
224
  msgstr "%d Usuarios que han ganado esta insignia."
225
 
226
- #: ../addons/badges/myCRED-addon-badges.php:260
227
  msgid "No users has yet earned this badge."
228
  msgstr "Ningun usuario ha ganado esta insignia."
229
 
230
- #: ../addons/badges/myCRED-addon-badges.php:282
 
 
 
 
231
  #, php-format
232
  msgid "%s connections where removed."
233
  msgstr "%s conexiones han sido quitados."
234
 
235
- #: ../addons/badges/myCRED-addon-badges.php:374
236
  msgid "Badge"
237
  msgstr "Insignia"
238
 
239
- #: ../addons/badges/myCRED-addon-badges.php:375 ../addons/buy-creds/myCRED-addon-
240
- #: buy-creds.php:259 ../addons/buy-creds/myCRED-addon-buy-creds.php:260 ..
241
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
242
- #: addons/ranks/myCRED-addon-ranks.php:445
243
  msgid "Add New"
244
  msgstr "Añade Nuevo"
245
 
246
- #: ../addons/badges/myCRED-addon-badges.php:376
247
  msgid "Add New Badge"
248
  msgstr "Añadir Nueva Insignia"
249
 
250
- #: ../addons/badges/myCRED-addon-badges.php:377
251
  msgid "Edit Badge"
252
  msgstr "Editar Insignia"
253
 
254
- #: ../addons/badges/myCRED-addon-badges.php:378
255
  msgid "New Badge"
256
  msgstr "Nueva Insignia"
257
 
258
- #: ../addons/badges/myCRED-addon-badges.php:380
259
  msgid "View Badge"
260
  msgstr "Ver Insignia"
261
 
262
- #: ../addons/badges/myCRED-addon-badges.php:381
263
  msgid "Search Badge"
264
  msgstr "Buscar Insignia"
265
 
266
- #: ../addons/badges/myCRED-addon-badges.php:382
267
  msgid "No badges found"
268
  msgstr "Ninguna Insignia Encontrada"
269
 
270
- #: ../addons/badges/myCRED-addon-badges.php:383
271
  msgid "No badges found in Trash"
272
  msgstr "Ninguna Insignia Encontrada en la Papelera"
273
 
274
- #: ../addons/badges/myCRED-addon-badges.php:429 ../addons/badges/myCRED-addon-
275
- #: badges.php:531
276
  msgid "Badge Name"
277
  msgstr "Nombre de Insignia"
278
 
279
- #: ../addons/badges/myCRED-addon-badges.php:430
280
  msgid "Badge Images"
281
  msgstr "Imagen de la Insignia"
282
 
283
- #: ../addons/badges/myCRED-addon-badges.php:431
284
  msgid "Requirements"
285
  msgstr "Requisitos"
286
 
287
- #: ../addons/badges/myCRED-addon-badges.php:432 ../addons/ranks/myCRED-addon-
288
- #: ranks.php:1038 ../modules/mycred-module-settings.php:600
289
  msgid "Users"
290
  msgstr "Usuarios"
291
 
292
- #: ../addons/badges/myCRED-addon-badges.php:471
293
  msgid "A user must have gained or lost:"
294
  msgstr "Un usuario deberia ganado o perdido:"
295
 
296
- #: ../addons/badges/myCRED-addon-badges.php:507 ../addons/badges/myCRED-addon-
297
- #: badges.php:510 ../addons/badges/myCRED-addon-badges.php:514 ..
298
- #: addons/badges/myCRED-addon-badges.php:515 ../addons/badges/myCRED-addon-
299
- #: badges.php:516
300
  msgid "Badge Updated."
301
  msgstr "Insignia Actualizada"
302
 
303
- #: ../addons/badges/myCRED-addon-badges.php:512
304
  msgid "Badge Enabled"
305
  msgstr "Insignia Habilitado"
306
 
307
- #: ../addons/badges/myCRED-addon-badges.php:513
308
  msgid "Badge Saved"
309
  msgstr "Insignia Guardada"
310
 
311
- #: ../addons/badges/myCRED-addon-badges.php:545
312
  msgid "Badge Setup"
313
  msgstr ""
314
 
315
- #: ../addons/badges/myCRED-addon-badges.php:572
316
  msgid "Assign Badge"
317
  msgstr "Asignar Insignia"
318
 
319
- #: ../addons/badges/myCRED-addon-badges.php:573
320
  msgid "Remove Connections"
321
  msgstr "Quitar Conexiones"
322
 
323
- #: ../addons/badges/myCRED-addon-badges.php:628
324
  msgid "Time(s)"
325
  msgstr "Tiempo(s)"
326
 
327
- #: ../addons/badges/myCRED-addon-badges.php:629
328
  msgid "In total"
329
  msgstr "En Total"
330
 
331
- #: ../addons/badges/myCRED-addon-badges.php:661 ../addons/badges/myCRED-addon-
332
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:821 ..
333
- #: addons/badges/myCRED-addon-badges.php:836
334
  msgid "Badge Image"
335
  msgstr "Imagen de la Insignia"
336
 
337
- #: ../addons/badges/myCRED-addon-badges.php:662 ../addons/badges/myCRED-addon-
338
- #: badges.php:662
339
  msgid "Set badge image"
340
  msgstr "Configurar la imagen para la insignia"
341
 
342
- #: ../addons/badges/myCRED-addon-badges.php:672
343
  msgid "Default Image"
344
  msgstr "Imagen Predefinida"
345
 
346
- #: ../addons/badges/myCRED-addon-badges.php:673 ../addons/badges/myCRED-addon-
347
- #: badges.php:731 ../addons/badges/myCRED-addon-badges.php:762 ..
348
- #: addons/badges/myCRED-addon-badges.php:821
349
  msgid "image url"
350
  msgstr "enlace de la imagen"
351
 
352
- #: ../addons/badges/myCRED-addon-badges.php:674 ../addons/badges/myCRED-addon-
353
- #: badges.php:732 ../addons/badges/myCRED-addon-badges.php:763 ..
354
- #: addons/badges/myCRED-addon-badges.php:821
355
  msgid "Add Image"
356
  msgstr ""
357
 
358
- #: ../addons/badges/myCRED-addon-badges.php:675
359
  msgid "Optional image to show when a user has not yet earned this badge."
360
  msgstr ""
361
 
362
- #: ../addons/badges/myCRED-addon-badges.php:694 ../addons/badges/myCRED-addon-
363
- #: badges.php:746
364
  #, php-format
365
  msgid "Level %d"
366
  msgstr ""
367
 
368
- #: ../addons/badges/myCRED-addon-badges.php:699 ../addons/badges/myCRED-addon-
369
- #: badges.php:751 ../addons/badges/myCRED-addon-badges.php:821
370
  msgid "for"
371
  msgstr ""
372
 
373
- #: ../addons/badges/myCRED-addon-badges.php:730
374
  msgid "Main Image"
375
  msgstr "Imagen Principal"
376
 
377
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
378
- #: badges.php:821
379
  msgid "Leave empty if you do not want to assign a custom image for this level."
380
  msgstr ""
381
 
382
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
383
- #: badges.php:821
384
  msgid "Remove this level"
385
  msgstr ""
386
 
387
- #: ../addons/badges/myCRED-addon-badges.php:778
388
  msgid "Add Level"
389
  msgstr ""
390
 
391
- #: ../addons/badges/myCRED-addon-badges.php:821 ../addons/badges/myCRED-addon-
392
- #: badges.php:1141
393
  msgid "Level"
394
  msgstr ""
395
 
396
- #: ../addons/badges/myCRED-addon-badges.php:838
397
  msgid "Use as Badge"
398
  msgstr "Utiliza como Insignia"
399
 
400
- #: ../addons/badges/myCRED-addon-badges.php:960 ../addons/badges/myCRED-addon-
401
- #: badges.php:991 ../addons/gateway/carts/mycred-woocommerce.php:153 ..
402
- #: modules/mycred-module-buddypress.php:384
403
  msgid "Do not show"
404
  msgstr "No Mostrar"
405
 
406
- #: ../addons/badges/myCRED-addon-badges.php:961 ../modules/mycred-module-
407
- #: buddypress.php:385
408
  msgid "Include in Profile Header"
409
  msgstr "Incluir en el Encabezado del Perfil"
410
 
411
- #: ../addons/badges/myCRED-addon-badges.php:962 ../addons/ranks/myCRED-addon-
412
- #: ranks.php:1396 ../modules/mycred-module-buddypress.php:386
413
  msgid "Include under the \"Profile\" tab"
414
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
415
 
416
- #: ../addons/badges/myCRED-addon-badges.php:963 ../modules/mycred-module-
417
- #: buddypress.php:387
418
  msgid "Include under the \"Profile\" tab and Profile Header"
419
  msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil"
420
 
421
- #: ../addons/badges/myCRED-addon-badges.php:976 ../addons/badges/myCRED-addon-
422
- #: badges.php:1007
423
  msgid "Show all badges, including badges users have not yet earned."
424
  msgstr ""
425
 
426
- #: ../addons/badges/myCRED-addon-badges.php:992 ../addons/ranks/myCRED-addon-
427
- #: ranks.php:1442
428
  msgid "Include in Profile"
429
  msgstr "Incluir en el Perfil"
430
 
431
- #: ../addons/badges/myCRED-addon-badges.php:993
432
  msgid "Include in Forum Replies"
433
  msgstr "Incluir en Respuesta de Fórum"
434
 
435
- #: ../addons/badges/myCRED-addon-badges.php:994
436
  msgid "Include in Profile and Forum Replies"
437
  msgstr "Incluir en Perfil y Respuestas de Fórum"
438
 
439
- #: ../addons/badges/myCRED-addon-badges.php:1098
440
  msgid "User Badges"
441
  msgstr ""
442
 
443
- #: ../addons/badges/myCRED-addon-badges.php:1103
444
  msgid ""
445
  "Here you can view the badges this user has earned and if needed, manually "
446
  "give or take away a badge from a user."
447
  msgstr ""
448
 
449
- #: ../addons/badges/myCRED-addon-badges.php:1112
450
  msgid "Not earned"
451
  msgstr ""
452
 
453
- #: ../addons/badges/myCRED-addon-badges.php:1118 ../addons/badges/myCRED-addon-
454
- #: badges.php:1155
455
  msgid "Earned"
456
  msgstr ""
457
 
458
- #: ../addons/badges/myCRED-addon-badges.php:1130
459
  msgid "No image"
460
  msgstr ""
461
 
462
- #: ../addons/badges/myCRED-addon-badges.php:1137
463
  msgid "Select a level"
464
  msgstr ""
465
 
466
- #: ../addons/badges/myCRED-addon-badges.php:1152 ../addons/email-notices/myCRED-
467
- #: addon-email-notices.php:807
468
  msgid "Status"
469
  msgstr "Estatus"
470
 
471
- #: ../addons/badges/myCRED-addon-badges.php:1169 ../addons/email-notices/myCRED-
472
- #: addon-email-notices.php:1290
473
  msgid "Save Changes"
474
  msgstr "Guardar Cambios"
475
 
476
- #: ../addons/badges/includes/mycred-badge-functions.php:65
477
  #, php-format
478
  msgid "Level %s"
479
  msgstr ""
480
 
481
- #: ../addons/badges/includes/mycred-badge-functions.php:68
482
  #, php-format
483
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
484
  msgid "%s for %s %s - %s"
485
  msgstr ""
486
 
487
- #: ../addons/badges/includes/mycred-badge-functions.php:68 ..
488
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
489
  #: coupons.php:469
490
  #, php-format
@@ -493,7 +494,7 @@ msgid_plural "%d times"
493
  msgstr[0] ""
494
  msgstr[1] ""
495
 
496
- #: ../addons/badges/includes/mycred-badge-functions.php:70
497
  #, php-format
498
  msgctxt "\"x points\" for \"reference\" in total"
499
  msgid "%s for %s in total"
@@ -540,11 +541,11 @@ msgid "Setup mass %_singular% payouts for your users."
540
  msgstr "Configurar pago en masa &_singular% para tus usuarios."
541
 
542
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
543
- #: addon-buy-creds.php:836 ../addons/buy-creds/myCRED-addon-buy-creds.php:932 ..
544
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
545
- #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:292 ..
546
- #: modules/mycred-module-hooks.php:171 ../modules/mycred-module-log.php:326 ..
547
- #: modules/mycred-module-log.php:597 ../modules/mycred-module-settings.php:457
548
  msgid "Access Denied"
549
  msgstr "Acceso Denegado"
550
 
@@ -566,12 +567,12 @@ msgid "Warning! This add-on requires WP - Cron to work."
566
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
567
 
568
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
569
- #: addon-buy-creds.php:870 ../modules/mycred-module-hooks.php:196
570
  msgid "Enable"
571
  msgstr "Habilitar"
572
 
573
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
574
- #: php:211
575
  msgid "Update Changes"
576
  msgstr "Actualizar Cambios"
577
 
@@ -692,19 +693,19 @@ msgstr "Desembolso"
692
  #. can also be "Plantilla de Bitácora"
693
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
694
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
695
- #: creds/myCRED-addon-buy-creds.php:606 ../addons/buy-creds/myCRED-addon-buy-
696
- #: creds.php:665 ../addons/coupons/myCRED-addon-coupons.php:502 ..
697
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
698
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
699
- #: addons/gateway/carts/mycred-woocommerce.php:105 ..
700
- #: addons/gateway/carts/mycred-woocommerce.php:177 ..
701
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
702
- #: hooks.php:891 ../modules/mycred-module-hooks.php:1847 ../modules/mycred-module-
703
- #: hooks.php:2187 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-
704
- #: badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-hook-
705
- #: events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.php:
706
- #: 209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-
707
- #: star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:304 ..
708
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
709
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
710
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
@@ -751,7 +752,7 @@ msgid "This user role is excluded from receiving interest on this balance."
751
  msgstr "Este papel de usuario esta excluido de recibir interés sobre este saldo."
752
 
753
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
754
- #: creds/myCRED-addon-buy-creds.php:758 ../addons/sell-content/myCRED-addon-sell-
755
  #: content.php:114
756
  msgid "Leave empty to use the default value."
757
  msgstr "Dejar vacio si va a utilizar el valor predefinido."
@@ -764,15 +765,15 @@ msgstr "Guardar el tipo de interés"
764
  msgid "Exclude from receiving interest"
765
  msgstr "Excluir de recibir interés"
766
 
767
- #: ../addons/banking/services/mycred-bank-service-interest.php:667
768
  msgid "Compound interest rate saved."
769
  msgstr "Tipo de interés compuesto guardado."
770
 
771
- #: ../addons/banking/services/mycred-bank-service-interest.php:669
772
  msgid "User excluded from receiving interest."
773
  msgstr "Usuario excluido la concesión de interés."
774
 
775
- #: ../addons/banking/services/mycred-bank-service-interest.php:671
776
  msgid "User included in receiving interest."
777
  msgstr "Usuario permitido la concesión de interés."
778
 
@@ -781,8 +782,8 @@ msgid "Daily %_plural%"
781
  msgstr "%_plural% diarios"
782
 
783
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
784
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:254 ..
785
- #: modules/mycred-module-log.php:255
786
  msgid "History"
787
  msgstr "Historial"
788
 
@@ -799,17 +800,17 @@ msgid "Pay Users"
799
  msgstr "Pagar a los Usuarios"
800
 
801
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
802
- #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
803
- #: creds.php:1523 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
804
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
805
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
806
- #: includes/mycred-shortcodes.php:971 ../includes/mycred-shortcodes.php:1112 ..
807
  #: plugins/mycred-hook-affiliatewp.php:256
808
  msgid "Amount"
809
  msgstr "Cantidad"
810
 
811
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
812
- #: modules/mycred-module-hooks.php:2202
813
  msgid "Interval"
814
  msgstr "Interval"
815
 
@@ -836,320 +837,320 @@ msgstr ""
836
  "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
837
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
838
 
839
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
840
- #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
841
  msgid "Payment Gateways"
842
  msgstr "Pasarela de Pago"
843
 
844
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:253
845
  msgctxt "Post Type General Name"
846
  msgid "Pending Payments"
847
  msgstr "Pagos Pendientes"
848
 
849
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:254
850
  msgctxt "Post Type Singular Name"
851
  msgid "Pending Payment"
852
  msgstr "Pago Pendiente"
853
 
854
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:255 ../addons/buy-creds/myCRED-
855
- #: addon-buy-creds.php:257 ../addons/buy-creds/myCRED-addon-buy-creds.php:268
856
  msgid "Pending Payments"
857
  msgstr "Pagos Pendientes"
858
 
859
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
860
  msgid "Edit Pending Payment"
861
  msgstr "Editar Pago Pendiente"
862
 
863
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
864
- #: addon-buy-creds.php:1634
865
  msgid "No pending payments found"
866
  msgstr "Ningun pago pendiente encontrado"
867
 
868
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265
869
  msgid "Not found in Trash"
870
  msgstr "No ha sido encontrado en la Papelera"
871
 
872
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
873
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1598
874
  msgid "Transaction ID"
875
  msgstr "Identificación de la Transacción"
876
 
877
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
878
- #: addon-buy-creds.php:984
879
  msgid "Buyer"
880
  msgstr "Comprador"
881
 
882
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
883
- #: addon-buy-creds.php:1601 ../addons/buy-creds/abstracts/mycred-abstract-payment-
884
  #: gateway.php:594
885
  msgid "Cost"
886
  msgstr "Coste"
887
 
888
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
889
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ..
890
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
891
  msgid "Gateway"
892
  msgstr "Pasarela"
893
 
894
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:303
895
  msgid "Type"
896
  msgstr "Clase"
897
 
898
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:390
899
  msgid "Pay Out"
900
  msgstr "Desembolso"
901
 
902
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
903
  msgid "buyCRED Purchase Log"
904
  msgstr "compraCRED Registro de Compras"
905
 
906
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:422 ../addons/buy-creds/myCRED-
907
- #: addon-buy-creds.php:655 ../addons/buy-creds/myCRED-addon-buy-creds.php:842
908
  msgid "Purchase Log"
909
  msgstr "Registro de Compras"
910
 
911
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:515 ../addons/gateway/event-
912
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
913
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
914
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
915
  msgid "Payments"
916
  msgstr "Pagos"
917
 
918
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
919
  msgid "Please login to purchase %_plural%"
920
  msgstr "Identifícate antes de comprar %_plural%"
921
 
922
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
923
  #, php-format
924
  msgid "Gift purchase from %display_name%."
925
  msgstr "Regalo comprado de parte de %display_name%."
926
 
927
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:576 ../addons/ranks/myCRED-
928
- #: addon-ranks.php:1079
929
  msgid "Minimum %plural%"
930
  msgstr "Minimo %_plural%"
931
 
932
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:580
933
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
934
  msgstr ""
935
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
936
  "a 1."
937
 
938
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:585 ../addons/transfer/myCRED-
939
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
940
- #: module-settings.php:617
941
  msgid "Point Types"
942
  msgstr "Clase de Puntos"
943
 
944
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
945
  msgid "Select the point types that users can buy. You must select at least one!"
946
  msgstr ""
947
  "Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
948
  "uno!"
949
 
950
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:599
951
  msgid "Login Template"
952
  msgstr "Plantilla de Ingreso"
953
 
954
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603
955
  msgid "Content to show when a user is not logged in."
956
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
957
 
958
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
959
  msgid "Thank You Page"
960
  msgstr "Página de Agradecimiento"
961
 
962
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:616 ../addons/buy-creds/myCRED-
963
- #: addon-buy-creds.php:637
964
  msgid "Custom URL"
965
  msgstr "URL Personalizada"
966
 
967
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:621 ../addons/buy-creds/myCRED-
968
- #: addon-buy-creds.php:642
969
  msgid "Page"
970
  msgstr "Página"
971
 
972
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:634
973
  msgid "Cancellation Page"
974
  msgstr "Página de Cancelación"
975
 
976
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657
977
  msgid "Show seperate log for %_plural% purchases."
978
  msgstr "Mostrar registro distinto para compras de %_plural%."
979
 
980
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
981
  msgid "Gifting"
982
  msgstr "Regalar"
983
 
984
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:661
985
  #, php-format
986
  msgid "Allow users to buy %_plural% for other users."
987
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
988
 
989
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:662
990
  #, php-format
991
  msgid "Allow users to buy %_plural% for content authors."
992
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
993
 
994
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670 ../modules/mycred-module-
995
- #: hooks.php:2912
996
  msgid "Available Shortcodes"
997
  msgstr "Códigos cortos Disponibles"
998
 
999
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:752
1000
  #, php-format
1001
  msgid "%s Exchange Rate"
1002
  msgstr "Tipo de Cambio %s"
1003
 
1004
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:766
1005
  msgid "Save Exchange Rates"
1006
  msgstr "Guardar Tipo de Cambio"
1007
 
1008
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:821
1009
  msgid "Exchange rate override saved"
1010
  msgstr "Anulación de de tipo de cambio guardado"
1011
 
1012
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
1013
  msgid "Payment completed"
1014
  msgstr "Pago finalizado"
1015
 
1016
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842
1017
  #, php-format
1018
  msgid "%s Payment Gateways"
1019
  msgstr "%s Pasarelas de Pago"
1020
 
1021
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842 ../addons/buy-creds/myCRED-
1022
- #: addon-buy-creds.php:992
1023
  msgid "buyCRED Settings"
1024
  msgstr "Configuraciones de compraCRED"
1025
 
1026
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:863
1027
  msgid "Test Mode"
1028
  msgstr "Modo de Prueba"
1029
 
1030
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:865
1031
  msgid "Enabled"
1032
  msgstr "Habilitado"
1033
 
1034
  #. also, "Inhabilitar"
1035
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
1036
  msgid "Disabled"
1037
  msgstr "Desactivado"
1038
 
1039
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:878
1040
  msgid "Sandbox Mode"
1041
  msgstr "Modo Entorno Aislado"
1042
 
1043
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
1044
  msgid "Enable for test purchases."
1045
  msgstr "Habilitar para compras de prueba."
1046
 
1047
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:898 ../addons/gateway/event-
1048
- #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:692
1049
  msgid "Update Settings"
1050
  msgstr "Actualizar Configuraciones"
1051
 
1052
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
1053
  msgid "More Gateways"
1054
  msgstr "Mas Pasarelas"
1055
 
1056
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
1057
- #: 634
1058
  msgid "Date"
1059
  msgstr "Fecha"
1060
 
1061
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1062
  msgid "Payed"
1063
  msgstr "Pagado"
1064
 
1065
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
1066
  msgid "<strong>buy</strong>CRED Purchase Log"
1067
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
1068
 
1069
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
1070
  #: booking/mycred-eventespresso3.php:367
1071
  msgid "Gateway Settings"
1072
  msgstr "Configuraciones de la Pasarela de Pago"
1073
 
1074
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171 ../addons/sell-
1075
  #: content/myCRED-addon-sell-content.php:1209
1076
  msgid "No purchases found"
1077
  msgstr "No se encontro ninguna compra"
1078
 
1079
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1241 ../addons/buy-creds/myCRED-
1080
- #: addon-buy-creds.php:1354
1081
  msgid "This Add-on needs to setup before you can use this shortcode."
1082
  msgstr ""
1083
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
1084
  "corto (shortcode)."
1085
 
1086
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1260 ../addons/buy-creds/myCRED-
1087
- #: addon-buy-creds.php:1373
1088
  msgid "No gateways installed."
1089
  msgstr "Ningun pasarela de pago instalado."
1090
 
1091
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
1092
- #: addon-buy-creds.php:1374
1093
  msgid "Gateway does not exist."
1094
  msgstr "Puerta de enlace no existe."
1095
 
1096
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1309
1097
  msgid "Yourself"
1098
  msgstr "Tu mismo"
1099
 
1100
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1375
1101
  msgid "No active gateways found."
1102
  msgstr "No se encuentra ningun puerta de enlace activo."
1103
 
1104
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
1105
  msgid "The selected gateway is not active."
1106
  msgstr "La puerta de enlace seleccionada no esta activo."
1107
 
1108
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1423
1109
  #, php-format
1110
  msgid "Buy with %gateway%"
1111
  msgstr "Compra con %gateway%"
1112
 
1113
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1429 ../addons/sell-
1114
  #: content/myCRED-addon-sell-content.php:44
1115
  msgid "Buy Now"
1116
  msgstr "Compra Ahora"
1117
 
1118
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1474
1119
  msgid "No users found"
1120
  msgstr "Ningun Usuario Encontrado"
1121
 
1122
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1484
1123
  msgid "To"
1124
  msgstr "A"
1125
 
1126
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1501
1127
  msgid "Select Amount"
1128
  msgstr "Selecciona la Cantidad"
1129
 
1130
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1525
1131
  msgid "min."
1132
  msgstr "min."
1133
 
1134
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1135
  msgid "Select Gateway"
1136
  msgstr "Selecciona la Pasarela de Pago"
1137
 
1138
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1574 ../addons/gateway/event-
1139
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1140
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1141
  #: php:35
1142
  msgid "Pay Now"
1143
  msgstr "Pagar Ahora"
1144
 
1145
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../includes/mycred-install.
1146
- #: php:524
1147
  msgid "Cancel"
1148
  msgstr "Cancelar"
1149
 
1150
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1602 ../addons/ranks/myCRED-
1151
- #: addon-ranks.php:1601 ../modules/mycred-module-log.php:375 ../modules/mycred-
1152
- #: module-settings.php:589 ../modules/mycred-module-settings.php:604
1153
  msgid "Actions"
1154
  msgstr "Acciones"
1155
 
@@ -1287,7 +1288,7 @@ msgid "Continue to %s"
1287
  msgstr "Continuar a %s"
1288
 
1289
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1290
- #: addons/buy-creds/gateways/bitpay.php:226
1291
  msgid "Click here if you are not automatically redirected"
1292
  msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
1293
 
@@ -1347,148 +1348,142 @@ msgstr "Noviembre"
1347
  msgid "December"
1348
  msgstr "Diciembre"
1349
 
1350
- #: ../addons/buy-creds/gateways/bitpay.php:30 ../addons/buy-
1351
- #: creds/gateways/netbilling.php:35 ../addons/buy-creds/gateways/paypal-standard.
1352
- #: php:30 ../addons/buy-creds/gateways/skrill.php:35
1353
- msgid "Purchase of myCRED %plural%"
1354
- msgstr "Compra de myCRED %plural%"
1355
-
1356
- #: ../addons/buy-creds/gateways/bitpay.php:60 ../addons/buy-
1357
- #: creds/gateways/netbilling.php:88 ../addons/buy-creds/gateways/paypal-standard.
1358
- #: php:142 ../addons/buy-creds/gateways/skrill.php:119
1359
  #, php-format
1360
  msgid "Price mismatch. Expected: %s Received: %s"
1361
  msgstr "Desajuste de precio. Esperaba: %s Recibido: %s"
1362
 
1363
- #: ../addons/buy-creds/gateways/bitpay.php:66 ../addons/buy-creds/gateways/paypal-
1364
- #: standard.php:148 ../addons/buy-creds/gateways/skrill.php:125
1365
  #, php-format
1366
  msgid "Currency mismatch. Expected: %s Received: %s"
1367
  msgstr "Desajuste de moneda. Esperaba: %s Recibido: %s"
1368
 
1369
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
1370
- #: creds/gateways/netbilling.php:94 ../addons/buy-creds/gateways/paypal-standard.
1371
- #: php:154 ../addons/buy-creds/gateways/skrill.php:131
1372
  #, php-format
1373
  msgid "Payment not completed. Received: %s"
1374
  msgstr "Pago no cumplido. Recibido: %s"
1375
 
1376
- #: ../addons/buy-creds/gateways/bitpay.php:83 ../addons/buy-
1377
- #: creds/gateways/netbilling.php:105 ../addons/buy-creds/gateways/paypal-standard.
1378
- #: php:165 ../addons/buy-creds/gateways/skrill.php:142 ../addons/buy-
1379
- #: creds/gateways/zombaio.php:174
1380
  msgid "Failed to credit users account."
1381
  msgstr "No se pudo creditar la cuenta del usuario."
1382
 
1383
- #: ../addons/buy-creds/gateways/bitpay.php:160 ../addons/buy-
1384
- #: creds/gateways/netbilling.php:140 ../addons/buy-creds/gateways/paypal-standard.
1385
- #: php:202 ../addons/buy-creds/gateways/skrill.php:180 ../addons/buy-
1386
- #: creds/gateways/zombaio.php:201
1387
  msgid "Please setup this gateway before attempting to make a purchase!"
1388
  msgstr ""
1389
  "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
1390
  "compra!"
1391
 
1392
- #: ../addons/buy-creds/gateways/bitpay.php:212 ../addons/buy-
1393
- #: creds/gateways/bitpay.php:221 ../addons/buy-creds/gateways/netbilling.php:193 .
1394
- #: ./addons/buy-creds/gateways/paypal-standard.php:262 ../addons/buy-
1395
- #: creds/gateways/skrill.php:274 ../addons/buy-creds/gateways/zombaio.php:234
1396
  msgid "Processing payment &hellip;"
1397
  msgstr "Procesando el pago &hellip;"
1398
 
1399
- #: ../addons/buy-creds/gateways/bitpay.php:214
1400
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1401
  msgstr ""
1402
  "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
1403
  "el administrador del sitio!"
1404
 
1405
- #: ../addons/buy-creds/gateways/bitpay.php:215
1406
  msgid "Bitpay returned the following error message:"
1407
  msgstr "Bitpay comunico este mensaje de error:"
1408
 
1409
- #: ../addons/buy-creds/gateways/bitpay.php:246 ../includes/mycred-remote.php:551
1410
  msgid "API Key"
1411
  msgstr "Clave de la API"
1412
 
1413
- #: ../addons/buy-creds/gateways/bitpay.php:252 ../addons/buy-
1414
- #: creds/gateways/paypal-standard.php:279 ../addons/buy-creds/gateways/skrill.php:
1415
- #: 292
1416
  msgid "Currency"
1417
  msgstr "Moneda"
1418
 
1419
- #: ../addons/buy-creds/gateways/bitpay.php:255
1420
  msgid "Currency Code"
1421
  msgstr "Código de Moneda"
1422
 
1423
- #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1424
- #: creds/gateways/netbilling.php:229 ../addons/buy-creds/gateways/paypal-standard.
1425
- #: php:291 ../addons/buy-creds/gateways/skrill.php:311
1426
  msgid "Item Name"
1427
  msgstr "Nombre de Artículo"
1428
 
1429
- #: ../addons/buy-creds/gateways/bitpay.php:263 ../addons/buy-
1430
- #: creds/gateways/netbilling.php:233 ../addons/buy-creds/gateways/paypal-standard.
1431
- #: php:295 ../addons/buy-creds/gateways/skrill.php:315
1432
  msgid "Description of the item being purchased by the user."
1433
  msgstr "Descripción del artículo que el usuario esta comprando."
1434
 
1435
- #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1436
- #: creds/gateways/netbilling.php:236 ../addons/buy-creds/gateways/paypal-standard.
1437
- #: php:298 ../addons/buy-creds/gateways/skrill.php:318
1438
  msgid "Exchange Rates"
1439
  msgstr "Tipo de Cambio"
1440
 
1441
- #: ../addons/buy-creds/gateways/bitpay.php:270
1442
  msgid "Transaction Speed"
1443
  msgstr "Velocidad de la Transacción"
1444
 
1445
- #: ../addons/buy-creds/gateways/bitpay.php:277
1446
  msgid "High"
1447
  msgstr "Alto"
1448
 
1449
- #: ../addons/buy-creds/gateways/bitpay.php:278
1450
  msgid "Medium"
1451
  msgstr "Medio"
1452
 
1453
- #: ../addons/buy-creds/gateways/bitpay.php:279
1454
  msgid "Low"
1455
  msgstr "Bajo"
1456
 
1457
- #: ../addons/buy-creds/gateways/bitpay.php:292
1458
  msgid "Full Notifications"
1459
  msgstr "Notificaciones Completas"
1460
 
1461
- #: ../addons/buy-creds/gateways/bitpay.php:299 ../includes/mycred-network.php:161
1462
  #: ../includes/mycred-network.php:175
1463
  msgid "No"
1464
  msgstr "No"
1465
 
1466
- #: ../addons/buy-creds/gateways/bitpay.php:300 ../includes/mycred-network.php:157
1467
  #: ../includes/mycred-network.php:171
1468
  msgid "Yes"
1469
  msgstr "Sí"
1470
 
1471
- #: ../addons/buy-creds/gateways/netbilling.php:210
1472
  msgid "Account ID"
1473
  msgstr "ID de la Cuenta"
1474
 
1475
- #: ../addons/buy-creds/gateways/netbilling.php:216
1476
  msgid "Site Tag"
1477
  msgstr "Etiqueta (tag) del Sitio"
1478
 
1479
- #: ../addons/buy-creds/gateways/netbilling.php:222
1480
  msgid "Order Integrity Key"
1481
  msgstr "Clave de Integridad del Pedido"
1482
 
1483
- #: ../addons/buy-creds/gateways/netbilling.php:226
1484
  msgid "Found under Step 12 on the Fraud Defense page."
1485
  msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
1486
 
1487
- #: ../addons/buy-creds/gateways/netbilling.php:240
1488
  msgid "Postback CGI URL"
1489
  msgstr "Devolución de la URL CGI"
1490
 
1491
- #: ../addons/buy-creds/gateways/netbilling.php:244
1492
  msgid ""
1493
  "For this gateway to work, you must login to your NETbilling account and edit "
1494
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
@@ -1499,99 +1494,104 @@ msgstr ""
1499
  "Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a la "
1500
  "dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
1501
 
1502
- #: ../addons/buy-creds/gateways/netbilling.php:288
1503
  msgid "Incorrect Credit Card number"
1504
  msgstr "Número de Tarjeta de Crédito Incorrecta"
1505
 
1506
- #: ../addons/buy-creds/gateways/netbilling.php:294
1507
  msgid "The credit card entered is past its expiration date."
1508
  msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
1509
 
1510
- #: ../addons/buy-creds/gateways/netbilling.php:297
1511
  msgid "The CVV2 number entered is not valid."
1512
  msgstr "El numero CVV2 teclado no es valido."
1513
 
1514
- #: ../addons/buy-creds/gateways/netbilling.php:304
1515
  msgid "The bank routing number entered is not valid."
1516
  msgstr "El número de ruta bancaria introducido no es valido."
1517
 
1518
- #: ../addons/buy-creds/gateways/netbilling.php:308
1519
  msgid "The bank account number entered is not valid."
1520
  msgstr "La cuenta bancaria introducida no es valida."
1521
 
1522
- #: ../addons/buy-creds/gateways/paypal-standard.php:188 ../addons/buy-
1523
- #: creds/gateways/skrill.php:166
1524
  msgid "Success"
1525
  msgstr "Exito"
1526
 
1527
- #: ../addons/buy-creds/gateways/paypal-standard.php:189 ../addons/buy-
1528
- #: creds/gateways/skrill.php:167
1529
  msgid "Thank you for your purchase"
1530
  msgstr "Gracias por su compra"
1531
 
1532
- #: ../addons/buy-creds/gateways/paypal-standard.php:257 ../addons/buy-
1533
- #: creds/gateways/skrill.php:221
1534
- msgid "Return to "
1535
- msgstr "Volver a"
 
1536
 
1537
- #: ../addons/buy-creds/gateways/paypal-standard.php:285
1538
  msgid "Account Email"
1539
  msgstr "Cuenta de Correo Electrónico"
1540
 
1541
- #: ../addons/buy-creds/gateways/skrill.php:257
 
 
 
 
1542
  msgid "Product:"
1543
  msgstr "Producto:"
1544
 
1545
- #: ../addons/buy-creds/gateways/skrill.php:266
1546
  msgid "Gift to:"
1547
  msgstr "Regalar a:"
1548
 
1549
- #: ../addons/buy-creds/gateways/skrill.php:267
1550
  msgid "(author)"
1551
  msgstr "(autor)"
1552
 
1553
- #: ../addons/buy-creds/gateways/skrill.php:299
1554
  msgid "Merchant Account Email"
1555
  msgstr "Correo electrónico de la Cuenta Comerciante"
1556
 
1557
- #: ../addons/buy-creds/gateways/skrill.php:305
1558
  msgid "Secret Word"
1559
  msgstr "Palabra Secreta"
1560
 
1561
- #: ../addons/buy-creds/gateways/skrill.php:322
1562
  msgid "Confirmation Email"
1563
  msgstr "Correo electrónico de confirmación"
1564
 
1565
- #: ../addons/buy-creds/gateways/skrill.php:325
1566
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1567
  msgstr ""
1568
  "Pide a Skrill que me mande un email de confirmación para cada compra "
1569
  "finalizada con éxito."
1570
 
1571
- #: ../addons/buy-creds/gateways/skrill.php:328
1572
  msgid "Checkout Page"
1573
  msgstr "Página de Pago"
1574
 
1575
- #: ../addons/buy-creds/gateways/skrill.php:331 ../addons/gateway/carts/mycred-
1576
- #: woocommerce.php:93 ../addons/ranks/myCRED-addon-ranks.php:1307 ..
1577
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1578
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1579
- #: php:592 ../modules/mycred-module-hooks.php:2876
1580
  msgid "Title"
1581
  msgstr "Titulo"
1582
 
1583
- #: ../addons/buy-creds/gateways/skrill.php:333
1584
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1585
  msgstr ""
1586
  "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
1587
  "título en la Página de Pagos Skrill. "
1588
 
1589
- #: ../addons/buy-creds/gateways/skrill.php:336 ../addons/buy-
1590
- #: creds/gateways/zombaio.php:269
1591
  msgid "Logo URL"
1592
  msgstr "URL del Logotipo"
1593
 
1594
- #: ../addons/buy-creds/gateways/skrill.php:338
1595
  msgid ""
1596
  "The URL to the image you want to use on the top of the gateway. For best "
1597
  "integration results we recommend you use logos with dimensions up to 200px "
@@ -1601,11 +1601,11 @@ msgstr ""
1601
  "Para obtener la mejor integración recomendamos que uses logotipos con "
1602
  "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
1603
 
1604
- #: ../addons/buy-creds/gateways/skrill.php:341
1605
  msgid "Confirmation Note"
1606
  msgstr "Nota de Confirmación"
1607
 
1608
- #: ../addons/buy-creds/gateways/skrill.php:343
1609
  msgid ""
1610
  "Optional text to show user once a transaction has been successfully "
1611
  "completed. This text is shown by Skrill."
@@ -1613,46 +1613,46 @@ msgstr ""
1613
  "Texto opcional a mostrar al usuario cuando la transacción haya sido "
1614
  "completado con éxito. Este texto sera mostrado por Skrill."
1615
 
1616
- #: ../addons/buy-creds/gateways/zombaio.php:143
1617
  #, php-format
1618
  msgid "Duplicate transaction. Received: %s"
1619
  msgstr "Transacción duplicado. Recibido: %s"
1620
 
1621
- #: ../addons/buy-creds/gateways/zombaio.php:149
1622
  #, php-format
1623
  msgid "Live transaction while debug mode is enabled! Received: %s"
1624
  msgstr "Depuración de transacciones en vivo esta habilitado! Recibido: %s"
1625
 
1626
- #: ../addons/buy-creds/gateways/zombaio.php:251
1627
  msgid "Site ID"
1628
  msgstr "ID del Sitio de web"
1629
 
1630
  #. or "Contraseña de GW" not clear based on lack of context
1631
- #: ../addons/buy-creds/gateways/zombaio.php:257
1632
  msgid "GW Password"
1633
  msgstr "Contraseña GW"
1634
 
1635
- #: ../addons/buy-creds/gateways/zombaio.php:263
1636
  msgid "Pricing ID"
1637
  msgstr "ID de Precios"
1638
 
1639
- #: ../addons/buy-creds/gateways/zombaio.php:275
1640
  msgid "IP Verification"
1641
  msgstr "Verificación de IP"
1642
 
1643
- #: ../addons/buy-creds/gateways/zombaio.php:278
1644
  msgid "Do not verify that callbacks are coming from Zombaio."
1645
  msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
1646
 
1647
- #: ../addons/buy-creds/gateways/zombaio.php:281
1648
  msgid "Language"
1649
  msgstr "Lengua"
1650
 
1651
- #: ../addons/buy-creds/gateways/zombaio.php:288
1652
  msgid "Postback URL (ZScript)"
1653
  msgstr "Devolución de la URL (ZScript)"
1654
 
1655
- #: ../addons/buy-creds/gateways/zombaio.php:292
1656
  msgid ""
1657
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1658
  "address and click validate."
@@ -1743,8 +1743,8 @@ msgid "Used"
1743
  msgstr ""
1744
 
1745
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1746
- #: transfer.php:259 ../modules/mycred-module-hooks.php:1563 ../modules/mycred-
1747
- #: module-hooks.php:1854
1748
  msgid "Limits"
1749
  msgstr "imites"
1750
 
@@ -1753,15 +1753,15 @@ msgid "Expires"
1753
  msgstr "Expire"
1754
 
1755
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1756
- #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:811 ..
1757
- #: addons/email-notices/myCRED-addon-email-notices.php:1028 ..
1758
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1759
- #: addons/gateway/carts/mycred-woocommerce.php:121 ..
1760
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1761
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1762
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1763
- #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1041 ../addons/ranks/myCRED-
1764
- #: addon-ranks.php:1191 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1765
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1766
  #: includes/importers/mycred-cubepoints.php:365
1767
  msgid "Point Type"
@@ -1773,7 +1773,7 @@ msgid "not yet used"
1773
  msgstr "todavia no utilizado"
1774
 
1775
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1776
- #: 395 ../modules/mycred-module-hooks.php:2292
1777
  msgid "Total"
1778
  msgstr "Total"
1779
 
@@ -1935,16 +1935,12 @@ msgstr "Mensaje de éxito"
1935
  msgid "Message to show when a coupon was successfully deposited to a users account."
1936
  msgstr "Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
1937
 
1938
- #: ../addons/coupons/includes/mycred-coupon-functions.php:158
1939
- msgid "Coupon redemption"
1940
- msgstr "Canje de cupones"
1941
-
1942
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1943
  msgid "Apply Coupon"
1944
  msgstr "Aplica el Cupón"
1945
 
1946
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1947
- #: notices/myCRED-addon-email-notices.php:1264
1948
  msgid "Email Notice"
1949
  msgstr "Aviso por Correo Electrónico"
1950
 
@@ -2151,17 +2147,17 @@ msgstr ""
2151
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
2152
 
2153
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2154
- #: notices/myCRED-addon-email-notices.php:897
2155
  msgid "Email Settings"
2156
  msgstr "Configuraciones de Correo Electrónico"
2157
 
2158
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2159
- #: notices/myCRED-addon-email-notices.php:1050
2160
  msgid "Senders Name:"
2161
  msgstr "Nombre del Remitente"
2162
 
2163
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2164
- #: notices/myCRED-addon-email-notices.php:1052
2165
  msgid "Senders Email:"
2166
  msgstr "Correo Electrónico del Remitente:"
2167
 
@@ -2185,163 +2181,163 @@ msgstr "Estilo de Correo Electrónico Predefinido"
2185
  msgid "Ignored if HTML is not allowed in emails."
2186
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
2187
 
2188
- #: ../addons/email-notices/myCRED-addon-email-notices.php:716
2189
  #, php-format
2190
  msgctxt "Badge Title - Level 1,2,3.."
2191
  msgid "%s - Level %d"
2192
  msgstr ""
2193
 
2194
- #: ../addons/email-notices/myCRED-addon-email-notices.php:806 ../addons/email-
2195
- #: notices/myCRED-addon-email-notices.php:946
2196
  msgid "Email Subject"
2197
  msgstr "Asunto del Correo Electrónico"
2198
 
2199
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
2200
  msgid "Not Active"
2201
  msgstr "No esta Activo"
2202
 
2203
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2204
  #, php-format
2205
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2206
  msgstr "Programada:<br /><strong>%1$s</strong>"
2207
 
2208
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
2209
  msgid "Active"
2210
  msgstr "Activo"
2211
 
2212
- #: ../addons/email-notices/myCRED-addon-email-notices.php:842
2213
  #, php-format
2214
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2215
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
2216
 
2217
- #: ../addons/email-notices/myCRED-addon-email-notices.php:852
2218
  msgid "Email is sent when"
2219
  msgstr "el Correo Electrónico se envia cuando"
2220
 
2221
- #: ../addons/email-notices/myCRED-addon-email-notices.php:854
2222
  msgid "Missing instance for this notice!"
2223
  msgstr "¡Falta una instancia para este aviso!"
2224
 
2225
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2226
- #: notices/myCRED-addon-email-notices.php:865 ../addons/email-notices/myCRED-
2227
- #: addon-email-notices.php:867
2228
  msgid "Sent To"
2229
  msgstr "Enviado A:"
2230
 
2231
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2232
- #: notices/myCRED-addon-email-notices.php:1016 ../includes/mycred-admin.php:754 ..
2233
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:562
2234
  msgid "User"
2235
  msgstr "Usuario"
2236
 
2237
- #: ../addons/email-notices/myCRED-addon-email-notices.php:865 ../addons/email-
2238
- #: notices/myCRED-addon-email-notices.php:1017
2239
  msgid "Administrator"
2240
  msgstr "Administrador"
2241
 
2242
- #: ../addons/email-notices/myCRED-addon-email-notices.php:867
2243
  msgid "Both Administrator and User"
2244
  msgstr "Tanto Administrador como Usuario"
2245
 
2246
- #: ../addons/email-notices/myCRED-addon-email-notices.php:877 ../addons/email-
2247
- #: notices/myCRED-addon-email-notices.php:1034
2248
  msgid "All types"
2249
  msgstr ""
2250
 
2251
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
2252
  msgid "Available Template Tags"
2253
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
2254
 
2255
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
2256
  msgid "Email Header"
2257
  msgstr "Encabezado del Correo Electrónico"
2258
 
2259
- #: ../addons/email-notices/myCRED-addon-email-notices.php:983
2260
  msgid "Send this email notice when..."
2261
  msgstr "Envia este aviso por correo electrónico cuando..."
2262
 
2263
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1014
2264
  msgid "Recipient:"
2265
  msgstr "Destinatario:"
2266
 
2267
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1018
2268
  msgid "Both"
2269
  msgstr "Ambos"
2270
 
2271
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1022 ..
2272
- #: addons/gateway/carts/mycred-woocommerce.php:161 ../modules/mycred-module-
2273
- #: settings.php:632 ../modules/mycred-module-settings.php:651 ../modules/mycred-
2274
- #: module-settings.php:674
2275
  msgid "Label"
2276
  msgstr "Etiqueta"
2277
 
2278
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1054
2279
  msgid "Reply-To Email:"
2280
  msgstr "Responder-A Correo Electrónico:"
2281
 
2282
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1060
2283
  msgid "Save"
2284
  msgstr "Guardar"
2285
 
2286
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1072
2287
  msgid "CSS Styling"
2288
  msgstr "Estilo CSS"
2289
 
2290
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1088
2291
  msgid "Site Related"
2292
  msgstr "Relacionado al Sitio"
2293
 
2294
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2295
  msgid "Your websites title"
2296
  msgstr "Titulo de tu pagina web"
2297
 
2298
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1090
2299
  msgid "Your websites address"
2300
  msgstr "Dirección de tu pagina web"
2301
 
2302
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2303
  msgid "Your websites tagline (description)"
2304
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2305
 
2306
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2307
  msgid "Your websites admin email"
2308
  msgstr "El correo electrónico de admin para tu pagina web"
2309
 
2310
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2311
  msgid "Total number of blog members"
2312
  msgstr "Número total de miembros del blog"
2313
 
2314
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1097
2315
  msgid "The users new balance"
2316
  msgstr ""
2317
 
2318
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1098
2319
  msgid "The users old balance"
2320
  msgstr ""
2321
 
2322
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1099
2323
  msgid "The amount of points gained or lost in this instance"
2324
  msgstr ""
2325
 
2326
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2327
  msgid "The log entry"
2328
  msgstr ""
2329
 
2330
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1175 ../addons/email-
2331
- #: notices/myCRED-addon-email-notices.php:1178 ../addons/email-notices/myCRED-
2332
- #: addon-email-notices.php:1184
2333
  msgid "Email Notice Updated."
2334
  msgstr "Aviso atraves de correo electrónico Actualizado."
2335
 
2336
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1180
2337
  msgid "Email Notice Activated"
2338
  msgstr "Notificación atraves de Correo Electrónico Activado"
2339
 
2340
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1181
2341
  msgid "Email Notice Saved"
2342
  msgstr "Aviso por Correo Electrónico Guardado"
2343
 
2344
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1200
2345
  msgid ""
2346
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2347
  "are not yet ready to use this email notice!"
@@ -2349,24 +2345,24 @@ msgstr ""
2349
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2350
  "si aun no estás listo para utilizar este aviso por email!"
2351
 
2352
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1202
2353
  #, php-format
2354
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2355
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2356
 
2357
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1204
2358
  msgid "This email notice is active."
2359
  msgstr "Esta notificación de correo electrónico esta activada."
2360
 
2361
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1215
2362
  msgid "Settings saved."
2363
  msgstr "Configuraciones Guardadas"
2364
 
2365
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1263
2366
  msgid "Unsubscribe"
2367
  msgstr "Cancelar la Suscripción"
2368
 
2369
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1284
2370
  msgid "There are no email notifications yet."
2371
  msgstr "Todavía no hay notificaciones de email."
2372
 
@@ -2414,7 +2410,7 @@ msgid "Paid"
2414
  msgstr "Pagado"
2415
 
2416
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2417
- #: addons/gateway/carts/mycred-woocommerce.php:34 ../includes/mycred-network.php:
2418
  #: 50 ../includes/mycred-network.php:51
2419
  msgid "myCRED"
2420
  msgstr "myCRED"
@@ -2445,7 +2441,7 @@ msgid ""
2445
  msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balance_f%"
2446
 
2447
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2448
- #: addons/gateway/carts/mycred-woocommerce.php:259
2449
  msgid "Insufficient funds."
2450
  msgstr "Fondos Insuficientes."
2451
 
@@ -2485,22 +2481,22 @@ msgid "Gateway Logo URL"
2485
  msgstr "URL del Logotipo de la Pasarela de Pago"
2486
 
2487
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2488
- #: addons/gateway/carts/mycred-woocommerce.php:137
2489
  #, php-format
2490
  msgid "How much is 1 %_singular% worth in %currency%?"
2491
  msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
2492
 
2493
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2494
- #: addons/gateway/carts/mycred-woocommerce.php:142 ..
2495
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2496
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2497
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2498
- #: php:578 ../includes/mycred-shortcodes.php:976
2499
  msgid "Exchange Rate"
2500
  msgstr "Tipo de Cambio"
2501
 
2502
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2503
- #: addons/gateway/carts/mycred-woocommerce.php:170 ..
2504
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2505
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2506
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2513,7 +2509,7 @@ msgid "Percentage"
2513
  msgstr "Porcentaje"
2514
 
2515
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2516
- #: addons/gateway/carts/mycred-woocommerce.php:172 ..
2517
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2518
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2519
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2587,19 +2583,19 @@ msgstr ""
2587
  "pedido: ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. "
2588
  "No se permite el uso de HTML."
2589
 
2590
- #: ../addons/gateway/carts/mycred-woocommerce.php:35
2591
  msgid "Let users pay using their myCRED balance."
2592
  msgstr "Permite que los usuarios paguen mediante su saldo myCRED."
2593
 
2594
- #: ../addons/gateway/carts/mycred-woocommerce.php:86
2595
  msgid "Enable/Disable"
2596
  msgstr "Activar/Desactivar"
2597
 
2598
- #: ../addons/gateway/carts/mycred-woocommerce.php:88
2599
  msgid "Enable myCRED Payment"
2600
  msgstr "Activar Pago myCRED"
2601
 
2602
- #: ../addons/gateway/carts/mycred-woocommerce.php:90
2603
  msgid ""
2604
  "Users who are not logged in or excluded from using myCRED will not have "
2605
  "access to this gateway!"
@@ -2607,65 +2603,65 @@ msgstr ""
2607
  "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
2608
  "myCRED no tendran acceso a esta pasarela de pago!"
2609
 
2610
- #: ../addons/gateway/carts/mycred-woocommerce.php:95
2611
  msgid "Title to show for this payment option."
2612
  msgstr "Mostrar este titulo para esta opción de pago."
2613
 
2614
- #: ../addons/gateway/carts/mycred-woocommerce.php:96
2615
  msgid "Pay with myCRED"
2616
  msgstr "Paga con myCRED"
2617
 
2618
  #. not sure if it is "message to customers" or "message from customers"? current translation is "message to customers"
2619
- #: ../addons/gateway/carts/mycred-woocommerce.php:100
2620
  msgid "Customer Message"
2621
  msgstr "Mensaje a los Clientes"
2622
 
2623
- #: ../addons/gateway/carts/mycred-woocommerce.php:111 ..
2624
- #: addons/gateway/carts/mycred-woocommerce.php:183
2625
  msgid "Refund Log Template"
2626
  msgstr "Plantilla de Registro de Reembolsos"
2627
 
2628
- #: ../addons/gateway/carts/mycred-woocommerce.php:123
2629
  msgid "Select the point type users can use to pay."
2630
  msgstr "Elige el clase de punto que los usuarios pueden utilizar para realizar pagos."
2631
 
2632
- #: ../addons/gateway/carts/mycred-woocommerce.php:149
2633
  msgid "Show Total"
2634
  msgstr "Mostrar Total"
2635
 
2636
- #: ../addons/gateway/carts/mycred-woocommerce.php:151
2637
  msgid "Show the final price in %_plural% ."
2638
  msgstr "Mostrar el precio final en %_plural%."
2639
 
2640
- #: ../addons/gateway/carts/mycred-woocommerce.php:154
2641
  msgid "Show in Cart"
2642
  msgstr "Mostrar en Carrito"
2643
 
2644
- #: ../addons/gateway/carts/mycred-woocommerce.php:155
2645
  msgid "Show on Checkout Page"
2646
  msgstr "Mostrar en la página de pago"
2647
 
2648
- #: ../addons/gateway/carts/mycred-woocommerce.php:156
2649
  msgid "Show in Cart and on Checkout Page"
2650
  msgstr "Mostrar en el Carrito y en la página de pago"
2651
 
2652
- #: ../addons/gateway/carts/mycred-woocommerce.php:163
2653
  msgid "Order Total in %_plural%"
2654
  msgstr "Total del Pedido en %_plural%"
2655
 
2656
- #: ../addons/gateway/carts/mycred-woocommerce.php:179
2657
  msgid "Log entry template for profit sharing."
2658
  msgstr "Plantilla para entradas de registro para el reparto de ganancias."
2659
 
2660
- #: ../addons/gateway/carts/mycred-woocommerce.php:185
2661
  msgid "Log entry template for refunds of profit shares."
2662
  msgstr "Plantilla de entrada de registro para reembolsos de reparto de ganancias."
2663
 
2664
- #: ../addons/gateway/carts/mycred-woocommerce.php:211
2665
  msgid "myCRED Payment"
2666
  msgstr "Pago myCRED"
2667
 
2668
- #: ../addons/gateway/carts/mycred-woocommerce.php:212
2669
  #, php-format
2670
  msgid ""
2671
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
@@ -2676,21 +2672,27 @@ msgstr ""
2676
  "ten en cuenta que los usuarios con fondos insuficientes y los usuarios que "
2677
  "no han iniciado sesión no verán esta pasarela de pago en la página de pago."
2678
 
2679
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
2680
  msgid "You must be logged in to pay with %_plural%"
2681
  msgstr "Debes haber iniciado sesión para pagar con %_plural%"
2682
 
2683
- #: ../addons/gateway/carts/mycred-woocommerce.php:239
2684
  msgid "You can not use this gateway. Please try a different payment option."
2685
  msgstr ""
2686
  "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
2687
  "diferente."
2688
 
2689
- #: ../addons/gateway/carts/mycred-woocommerce.php:396
 
 
 
 
 
 
2690
  msgid "Your account has successfully been charged."
2691
  msgstr "Su cuenta ha sido cambiado con éxito."
2692
 
2693
- #: ../addons/gateway/carts/mycred-woocommerce.php:708 ..
2694
  #: addons/gateway/carts/mycred-wpecommerce.php:131
2695
  msgid "Your current balance"
2696
  msgstr "Tu saldo actual"
@@ -2835,7 +2837,7 @@ msgid "Users must be logged in to use this gateway!"
2835
  msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
2836
 
2837
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2838
- #: modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2839
  msgid "Log"
2840
  msgstr "Registro"
2841
 
@@ -2935,8 +2937,8 @@ msgid "Reject"
2935
  msgstr "Rechazar"
2936
 
2937
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2938
- #: modules/mycred-module-log.php:522 ../modules/mycred-module-settings.php:636 ..
2939
- #: modules/mycred-module-settings.php:655
2940
  msgid "Delete"
2941
  msgstr "Borrar"
2942
 
@@ -3071,8 +3073,8 @@ msgid "Use the included CSS Styling for notifications."
3071
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
3072
 
3073
  #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
3074
- #: addons/ranks/myCRED-addon-ranks.php:1417 ../addons/ranks/myCRED-addon-ranks.
3075
- #: php:1463 ../modules/mycred-module-buddypress.php:428
3076
  msgid "Template"
3077
  msgstr "Plantilla"
3078
 
@@ -3109,175 +3111,175 @@ msgid ""
3109
  "to user. Use zero to disable."
3110
  msgstr ""
3111
 
3112
- #: ../addons/ranks/myCRED-addon-ranks.php:211 ../addons/ranks/myCRED-addon-ranks.
3113
- #: php:212 ../addons/ranks/myCRED-addon-ranks.php:440 ../addons/ranks/myCRED-
3114
- #: addon-ranks.php:449 ../addons/ranks/myCRED-addon-ranks.php:455 ..
3115
- #: addons/ranks/myCRED-addon-ranks.php:831 ../addons/ranks/myCRED-addon-ranks.
3116
- #: php:1299 ../addons/ranks/myCRED-addon-ranks.php:1590
3117
  msgid "Ranks"
3118
  msgstr "Rangos"
3119
 
3120
- #: ../addons/ranks/myCRED-addon-ranks.php:422
3121
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3122
  msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
3123
 
3124
- #: ../addons/ranks/myCRED-addon-ranks.php:423
3125
  msgid "Are you sure you want to re-assign user ranks?"
3126
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
3127
 
3128
- #: ../addons/ranks/myCRED-addon-ranks.php:438
3129
  #, php-format
3130
  msgid "Ranks for %s"
3131
  msgstr ""
3132
 
3133
- #: ../addons/ranks/myCRED-addon-ranks.php:444 ../addons/ranks/myCRED-addon-ranks.
3134
- #: php:831
3135
  msgid "Rank"
3136
  msgstr "Rango"
3137
 
3138
- #: ../addons/ranks/myCRED-addon-ranks.php:446
3139
  msgid "Add New Rank"
3140
  msgstr "Añadir Nuevo Rango"
3141
 
3142
- #: ../addons/ranks/myCRED-addon-ranks.php:447
3143
  msgid "Edit Rank"
3144
  msgstr "Editar Rango"
3145
 
3146
- #: ../addons/ranks/myCRED-addon-ranks.php:448
3147
  msgid "New Rank"
3148
  msgstr "Nuevo Rango"
3149
 
3150
- #: ../addons/ranks/myCRED-addon-ranks.php:450
3151
  msgid "View Rank"
3152
  msgstr "Ver Rango"
3153
 
3154
- #: ../addons/ranks/myCRED-addon-ranks.php:451
3155
  msgid "Search Ranks"
3156
  msgstr "Búsqueda de Rangos"
3157
 
3158
- #: ../addons/ranks/myCRED-addon-ranks.php:452
3159
  msgid "No ranks found"
3160
  msgstr "Ningun rango encontrado"
3161
 
3162
- #: ../addons/ranks/myCRED-addon-ranks.php:453
3163
  msgid "No ranks found in Trash"
3164
  msgstr "Ningun rango encontrao el la papelera"
3165
 
3166
- #: ../addons/ranks/myCRED-addon-ranks.php:537
3167
  #, php-format
3168
  msgid "Completed - Total of %d users effected"
3169
  msgstr "Completado - Un total %d usuarios afectados"
3170
 
3171
- #: ../addons/ranks/myCRED-addon-ranks.php:975 ../addons/ranks/myCRED-addon-ranks.
3172
- #: php:976 ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-
3173
- #: addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ..
3174
- #: addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.
3175
- #: php:983 ../addons/ranks/myCRED-addon-ranks.php:984
3176
  msgid "Rank Updated."
3177
  msgstr "Rango Actualizado."
3178
 
3179
- #: ../addons/ranks/myCRED-addon-ranks.php:981
3180
  msgid "Rank Enabled"
3181
  msgstr "Rango Habilitado"
3182
 
3183
- #: ../addons/ranks/myCRED-addon-ranks.php:982
3184
  msgid "Rank Saved"
3185
  msgstr "Rango Guardado"
3186
 
3187
- #: ../addons/ranks/myCRED-addon-ranks.php:1019
3188
  #, php-format
3189
  msgid "<strong>Rank:</strong> %s"
3190
  msgstr ""
3191
 
3192
- #: ../addons/ranks/myCRED-addon-ranks.php:1035 ../addons/ranks/myCRED-addon-ranks.
3193
- #: php:1116
3194
  msgid "Rank Title"
3195
  msgstr "Titulo de Rango"
3196
 
3197
- #: ../addons/ranks/myCRED-addon-ranks.php:1036
3198
  msgid "Logo"
3199
  msgstr "Logotipo"
3200
 
3201
- #: ../addons/ranks/myCRED-addon-ranks.php:1037
3202
  msgid "Requirement"
3203
  msgstr "Requisito"
3204
 
3205
- #: ../addons/ranks/myCRED-addon-ranks.php:1062
3206
  msgid "No Logo Set"
3207
  msgstr "No hay Logotipo Configurado"
3208
 
3209
- #: ../addons/ranks/myCRED-addon-ranks.php:1077 ../addons/ranks/myCRED-addon-ranks.
3210
- #: php:1082
3211
  msgid "Any Value"
3212
  msgstr "Cualquier Valor"
3213
 
3214
- #: ../addons/ranks/myCRED-addon-ranks.php:1084
3215
  msgid "Maximum %plural%"
3216
  msgstr "Maximo %plural%"
3217
 
3218
- #: ../addons/ranks/myCRED-addon-ranks.php:1129
3219
  msgid "Rank Settings"
3220
  msgstr "Configuración de Rango"
3221
 
3222
- #: ../addons/ranks/myCRED-addon-ranks.php:1182
3223
  msgid "Minimum %plural% to reach this rank"
3224
  msgstr "Minimo %plural% para llegar a este rango"
3225
 
3226
- #: ../addons/ranks/myCRED-addon-ranks.php:1186
3227
  msgid "Maximum %plural% to be included in this rank"
3228
  msgstr "Maximo %plural% para ser incluido en este rango"
3229
 
3230
- #: ../addons/ranks/myCRED-addon-ranks.php:1204
3231
  msgid "All Published Ranks"
3232
  msgstr "Todos los Rangos Publicados"
3233
 
3234
- #: ../addons/ranks/myCRED-addon-ranks.php:1214 ../addons/ranks/myCRED-addon-ranks.
3235
- #: php:1216
3236
  msgid "Not Set"
3237
  msgstr "No Configurado"
3238
 
3239
- #: ../addons/ranks/myCRED-addon-ranks.php:1222
3240
  msgid "No Ranks found"
3241
  msgstr "Ningun rango encontrado"
3242
 
3243
- #: ../addons/ranks/myCRED-addon-ranks.php:1304
3244
  msgid "Rank Features"
3245
  msgstr "Caracteristicas de los Rangos"
3246
 
3247
- #: ../addons/ranks/myCRED-addon-ranks.php:1308
3248
  msgid "%plural% requirement"
3249
  msgstr "%plural% requisito"
3250
 
3251
- #: ../addons/ranks/myCRED-addon-ranks.php:1309
3252
  msgid "Featured Image (Logo)"
3253
  msgstr "Imagen Principal (Logotipo)"
3254
 
3255
- #: ../addons/ranks/myCRED-addon-ranks.php:1311
3256
  msgid "Content"
3257
  msgstr "Contenido"
3258
 
3259
- #: ../addons/ranks/myCRED-addon-ranks.php:1313
3260
  msgid "Excerpt"
3261
  msgstr "Extracto"
3262
 
3263
- #: ../addons/ranks/myCRED-addon-ranks.php:1315
3264
  msgid "Comments"
3265
  msgstr "Comentario"
3266
 
3267
- #: ../addons/ranks/myCRED-addon-ranks.php:1317
3268
  msgid "Page Attributes"
3269
  msgstr "Atributos de Página"
3270
 
3271
- #: ../addons/ranks/myCRED-addon-ranks.php:1319
3272
  msgid "Custom Fields"
3273
  msgstr "Campo Personalizado"
3274
 
3275
- #: ../addons/ranks/myCRED-addon-ranks.php:1323
3276
  msgid "Public"
3277
  msgstr "Público"
3278
 
3279
  #. This is not clear, especially the second sentence (fragment)!
3280
- #: ../addons/ranks/myCRED-addon-ranks.php:1327
3281
  msgid ""
3282
  "If you want to create a template archive for each rank, you must select to "
3283
  "have ranks public. Defaults to disabled."
@@ -3285,28 +3287,28 @@ msgstr ""
3285
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
3286
  "los rangos sean público. Los valores predeterminados desactivado."
3287
 
3288
- #: ../addons/ranks/myCRED-addon-ranks.php:1330
3289
  msgid "Archive URL"
3290
  msgstr "URL del Archivo"
3291
 
3292
- #: ../addons/ranks/myCRED-addon-ranks.php:1334
3293
  msgid "Ignored if Ranks are not public"
3294
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
3295
 
3296
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
3297
- #: ../addons/ranks/myCRED-addon-ranks.php:1337
3298
  msgid "Display Order"
3299
  msgstr "Orden de Visualización"
3300
 
3301
- #: ../addons/ranks/myCRED-addon-ranks.php:1345
3302
  msgid "Ascending - Lowest rank to highest"
3303
  msgstr "Ascendente - Rango más bajo a lo más alto"
3304
 
3305
- #: ../addons/ranks/myCRED-addon-ranks.php:1346
3306
  msgid "Descending - Highest rank to lowest"
3307
  msgstr "Descendiente - Rango más alto al más bajo"
3308
 
3309
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
3310
  msgid ""
3311
  "Select in what order ranks should be displayed in your admin area and/or "
3312
  "front if ranks are \"Public\""
@@ -3314,15 +3316,15 @@ msgstr ""
3314
  "Elige en que orden se debe mostrar los rangos en tu area de administrador "
3315
  "y/o en el frente si los rangos son \"Público\""
3316
 
3317
- #: ../addons/ranks/myCRED-addon-ranks.php:1363
3318
  msgid "Rank Basis"
3319
  msgstr "Base de Rango"
3320
 
3321
- #: ../addons/ranks/myCRED-addon-ranks.php:1366
3322
  msgid "Users are ranked according to their current balance."
3323
  msgstr "Los usuarios se clasifican según su saldo actual."
3324
 
3325
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
3326
  msgid ""
3327
  "Users are ranked according to the total amount of %_plural% they have "
3328
  "accumulated."
@@ -3330,18 +3332,18 @@ msgstr ""
3330
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
3331
  "acumulado."
3332
 
3333
- #: ../addons/ranks/myCRED-addon-ranks.php:1373 ../addons/ranks/myCRED-addon-ranks.
3334
- #: php:1378
3335
  msgid "Calculate Totals"
3336
  msgstr "Calcular Totales"
3337
 
3338
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3339
  msgid ""
3340
  "Use this button to calculate or recalculate your users totals. If not used, "
3341
  "the users current balance will be used as a starting point."
3342
  msgstr ""
3343
 
3344
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3345
  msgid ""
3346
  "Once a users total has been calculated, they will be assigned to their "
3347
  "appropriate roles. For this reason, it is highly recommended that you first "
@@ -3351,7 +3353,7 @@ msgstr ""
3351
  "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
3352
  "que primero configures los rangos!"
3353
 
3354
- #: ../addons/ranks/myCRED-addon-ranks.php:1377
3355
  msgid ""
3356
  "Depending on your log size and number of users this process may take a while."
3357
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
@@ -3362,61 +3364,61 @@ msgstr ""
3362
  "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
3363
  "completado!"
3364
 
3365
- #: ../addons/ranks/myCRED-addon-ranks.php:1394 ../addons/ranks/myCRED-addon-ranks.
3366
- #: php:1440 ../modules/mycred-module-buddypress.php:391
3367
  msgid "Do not show."
3368
  msgstr "No mostrar."
3369
 
3370
- #: ../addons/ranks/myCRED-addon-ranks.php:1395
3371
  msgid "Include in Profile Header."
3372
  msgstr "Incluir en Encabezado del Perfil"
3373
 
3374
- #: ../addons/ranks/myCRED-addon-ranks.php:1397
3375
  msgid "Include under the \"Profile\" tab and Profile Header."
3376
  msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil."
3377
 
3378
- #: ../addons/ranks/myCRED-addon-ranks.php:1402
3379
  msgid "Rank in BuddyPress"
3380
  msgstr "Rango en BuddyPress"
3381
 
3382
- #: ../addons/ranks/myCRED-addon-ranks.php:1419 ../addons/ranks/myCRED-addon-ranks.
3383
- #: php:1465
3384
  #, php-format
3385
  msgid ""
3386
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3387
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3388
  msgstr ""
3389
 
3390
- #: ../addons/ranks/myCRED-addon-ranks.php:1441
3391
  msgid "Include in Topic Replies"
3392
  msgstr ""
3393
 
3394
- #: ../addons/ranks/myCRED-addon-ranks.php:1443
3395
  msgid "Include in Topic Replies and Profile"
3396
  msgstr ""
3397
 
3398
- #: ../addons/ranks/myCRED-addon-ranks.php:1448
3399
  msgid "Rank in bbPress"
3400
  msgstr ""
3401
 
3402
- #: ../addons/ranks/myCRED-addon-ranks.php:1528
3403
  msgid "Script Communication Error"
3404
  msgstr "Error del Script de Comunicación"
3405
 
3406
- #: ../addons/ranks/myCRED-addon-ranks.php:1593 ../modules/mycred-module-settings.
3407
- #: php:596
3408
  msgid "User Meta Key"
3409
  msgstr "Clave Meta del Usuario"
3410
 
3411
- #: ../addons/ranks/myCRED-addon-ranks.php:1597
3412
  msgid "No. of ranks"
3413
  msgstr "Numero de Rangos"
3414
 
3415
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3416
  msgid "Remove All Ranks"
3417
  msgstr "Quitar todos los Rangos"
3418
 
3419
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3420
  msgid "Assign Ranks to Users"
3421
  msgstr "Asignar Rango a los Usuarios"
3422
 
@@ -3622,8 +3624,8 @@ msgid "View Log"
3622
  msgstr "Ver Registro"
3623
 
3624
  #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3625
- #: modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ..
3626
- #: modules/mycred-module-hooks.php:27
3627
  msgid "Hooks"
3628
  msgstr "Ganchos"
3629
 
@@ -3661,17 +3663,17 @@ msgid "Total Spent: %s"
3661
  msgstr ""
3662
 
3663
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3664
- #: includes/mycred-log.php:837 ../modules/mycred-module-buddypress.php:222
3665
  msgid "Today"
3666
  msgstr "Hoy"
3667
 
3668
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3669
- #: includes/mycred-log.php:839 ../modules/mycred-module-buddypress.php:224
3670
  msgid "This Week"
3671
  msgstr "Esta Semana"
3672
 
3673
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3674
- #: includes/mycred-log.php:840 ../modules/mycred-module-buddypress.php:225
3675
  msgid "This Month"
3676
  msgstr "Este Mes"
3677
 
@@ -3738,7 +3740,7 @@ msgid "You have exceeded your %limit% transfer limit."
3738
  msgstr "Has excedido tu limite de transferencia de %limit%."
3739
 
3740
  #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3741
- #: php:2446
3742
  msgid "Transfer"
3743
  msgstr "Transferir"
3744
 
@@ -3777,7 +3779,7 @@ msgstr ""
3777
  "transferencias hasta que se haga esto."
3778
 
3779
  #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3780
- #: php:2574
3781
  msgid "Insufficient Funds. Please try a lower amount."
3782
  msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
3783
 
@@ -3935,11 +3937,11 @@ msgstr "correo electrónico"
3935
  msgid "recipients %s"
3936
  msgstr "destinatarios %s"
3937
 
3938
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:219
3939
  msgid "To:"
3940
  msgstr "A:"
3941
 
3942
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3943
  msgid "Amount:"
3944
  msgstr "Cantidad:"
3945
 
@@ -4140,394 +4142,394 @@ msgstr "y"
4140
  msgid "Available Template Tags:"
4141
  msgstr "Etiquetas de Plantilla Disponibles:"
4142
 
4143
- #: ../includes/mycred-functions.php:1686
4144
  msgid "Entire Log"
4145
  msgstr "Todo el Registro"
4146
 
4147
- #: ../includes/mycred-functions.php:1691 ../includes/mycred-functions.php:1692
4148
  msgid "Displayed Rows"
4149
  msgstr "Filas Mostradas"
4150
 
4151
- #: ../includes/mycred-functions.php:1699
4152
  msgid "Search Results"
4153
  msgstr "Resultados de la Búsqueda"
4154
 
4155
- #: ../includes/mycred-functions.php:1700
4156
  msgid "My Entire Log"
4157
  msgstr "Mi Registro Entero"
4158
 
4159
- #: ../includes/mycred-functions.php:1867
4160
  msgid "ref empty"
4161
  msgstr "ref vacío"
4162
 
4163
- #: ../includes/mycred-functions.php:1875
4164
  msgid "incorrect user id format"
4165
  msgstr "Formato incorrecto para id del usuario"
4166
 
4167
- #: ../includes/mycred-functions.php:1888
4168
  msgid "incorrect unix timestamp (from):"
4169
  msgstr "erroneo marca de tiempo de unix (desde):"
4170
 
4171
- #: ../includes/mycred-functions.php:1897
4172
  msgid "incorrect unix timestamp (to):"
4173
  msgstr "erroneo marca de tiempo de unix (a):"
4174
 
4175
- #: ../includes/mycred-functions.php:2306
4176
  msgid "Website Registration"
4177
  msgstr "Inscripción del Sitio Web"
4178
 
4179
- #: ../includes/mycred-functions.php:2307
4180
  msgid "Website Visit"
4181
  msgstr "Visita de Sitio Web"
4182
 
4183
- #: ../includes/mycred-functions.php:2308
4184
  msgid "Viewing Content (Member)"
4185
  msgstr "Viendo Contenido (Miembro)"
4186
 
4187
- #: ../includes/mycred-functions.php:2309
4188
  msgid "Viewing Content (Author)"
4189
  msgstr "Viendo Contenido (Autor)"
4190
 
4191
- #: ../includes/mycred-functions.php:2310
4192
  msgid "Logging in"
4193
  msgstr "Accediendo"
4194
 
4195
- #: ../includes/mycred-functions.php:2311
4196
  msgid "Publishing Content"
4197
  msgstr "Publicando Contenido"
4198
 
4199
- #: ../includes/mycred-functions.php:2312 ../modules/mycred-module-hooks.php:1512
4200
  msgid "Approved Comment"
4201
  msgstr "Comentario Aprobado"
4202
 
4203
- #: ../includes/mycred-functions.php:2313
4204
  msgid "Unapproved Comment"
4205
  msgstr "Comentario no Aprobado"
4206
 
4207
- #: ../includes/mycred-functions.php:2314
4208
  msgid "SPAM Comment"
4209
  msgstr "Comentario SPAM"
4210
 
4211
- #: ../includes/mycred-functions.php:2315
4212
  msgid "Deleted Comment"
4213
  msgstr "Comentario Borrado"
4214
 
4215
- #: ../includes/mycred-functions.php:2316
4216
  msgid "Link Click"
4217
  msgstr "Click al Enlace"
4218
 
4219
- #: ../includes/mycred-functions.php:2317
4220
  msgid "Watching Video"
4221
  msgstr "Mirando Video"
4222
 
4223
- #: ../includes/mycred-functions.php:2318
4224
  msgid "Visitor Referral"
4225
  msgstr "Referencia de Visitante"
4226
 
4227
- #: ../includes/mycred-functions.php:2319
4228
  msgid "Signup Referral"
4229
  msgstr "Referencia de Inscripción "
4230
 
4231
- #: ../includes/mycred-functions.php:2323
4232
  msgid "New Profile Update"
4233
  msgstr "Nuevo Perfil Actualizado"
4234
 
4235
- #: ../includes/mycred-functions.php:2324
4236
  msgid "Profile Update Removal"
4237
  msgstr ""
4238
 
4239
- #: ../includes/mycred-functions.php:2325
4240
  msgid "Avatar Upload"
4241
  msgstr "Subir Avatar"
4242
 
4243
- #: ../includes/mycred-functions.php:2326
4244
  msgid "New Friendship"
4245
  msgstr "Nueva Amistad"
4246
 
4247
- #: ../includes/mycred-functions.php:2327
4248
  msgid "Ended Friendship"
4249
  msgstr "Amistad Terminada"
4250
 
4251
- #: ../includes/mycred-functions.php:2328
4252
  msgid "New Profile Comment"
4253
  msgstr "Nuevo Comentario de Perfil"
4254
 
4255
- #: ../includes/mycred-functions.php:2329
4256
  msgid "Profile Comment Deletion"
4257
  msgstr "Borrar Comentario del Perfil"
4258
 
4259
- #: ../includes/mycred-functions.php:2330
4260
  msgid "New Message"
4261
  msgstr "Nuevo Mensaje"
4262
 
4263
- #: ../includes/mycred-functions.php:2331
4264
  msgid "Sending Gift"
4265
  msgstr "Mandando Regalo"
4266
 
4267
- #: ../includes/mycred-functions.php:2332
4268
  msgid "New Group"
4269
  msgstr "Nuevo Grupo"
4270
 
4271
- #: ../includes/mycred-functions.php:2333
4272
  msgid "Deleted Group"
4273
  msgstr "Grupo Borrado"
4274
 
4275
- #: ../includes/mycred-functions.php:2334
4276
  msgid "New Group Forum Topic"
4277
  msgstr "Nuevo Tema del Fórum de Grupo"
4278
 
4279
- #: ../includes/mycred-functions.php:2335
4280
  msgid "Edit Group Forum Topic"
4281
  msgstr "Editar el Tema del Fórum de Grupo"
4282
 
4283
- #: ../includes/mycred-functions.php:2336
4284
  msgid "New Group Forum Post"
4285
  msgstr "Nueva Entrada del Fórum de Grupo"
4286
 
4287
- #: ../includes/mycred-functions.php:2337
4288
  msgid "Edit Group Forum Post"
4289
  msgstr "Editar Entrada del Fórum de Grupo"
4290
 
4291
- #: ../includes/mycred-functions.php:2338
4292
  msgid "Joining Group"
4293
  msgstr "Agregar al Grupo"
4294
 
4295
- #: ../includes/mycred-functions.php:2339
4296
  msgid "Leaving Group"
4297
  msgstr "Dejando el Grupo"
4298
 
4299
- #: ../includes/mycred-functions.php:2340
4300
  msgid "New Group Avatar"
4301
  msgstr "Nuevo Avatar del Grupo"
4302
 
4303
- #: ../includes/mycred-functions.php:2341
4304
  msgid "New Group Comment"
4305
  msgstr "Nuevo Comentario al Grupo\n"
4306
 
4307
- #: ../includes/mycred-functions.php:2345 ../plugins/mycred-hook-buddypress-media.
4308
  #: php:205
4309
  msgid "Photo Upload"
4310
  msgstr "Subir Foto"
4311
 
4312
- #: ../includes/mycred-functions.php:2346 ../plugins/mycred-hook-buddypress-media.
4313
  #: php:219
4314
  msgid "Video Upload"
4315
  msgstr "Subir Video"
4316
 
4317
- #: ../includes/mycred-functions.php:2347 ../plugins/mycred-hook-buddypress-media.
4318
  #: php:233
4319
  msgid "Music Upload"
4320
  msgstr "Subir Música"
4321
 
4322
- #: ../includes/mycred-functions.php:2351
4323
  msgid "New Link"
4324
  msgstr "Nuevo Enlace"
4325
 
4326
- #: ../includes/mycred-functions.php:2352
4327
  msgid "Link Voting"
4328
  msgstr "Votar sobre Enlace"
4329
 
4330
- #: ../includes/mycred-functions.php:2353
4331
  msgid "Link Update"
4332
  msgstr "Enlace Actualizado"
4333
 
4334
- #: ../includes/mycred-functions.php:2357
4335
  msgid "New Forum (bbPress)"
4336
  msgstr "Nuevo Fórum (bbPress)"
4337
 
4338
- #: ../includes/mycred-functions.php:2358
4339
  msgid "New Forum Topic (bbPress)"
4340
  msgstr "Nuevo Tema de Fórum (bbPress)"
4341
 
4342
- #: ../includes/mycred-functions.php:2359
4343
  msgid "Favorited Topic (bbPress)"
4344
  msgstr "Tema Favorito (bbPress)"
4345
 
4346
- #: ../includes/mycred-functions.php:2360
4347
  msgid "New Topic Reply (bbPress)"
4348
  msgstr "Nueva Respuesta a Tema (bbPress)"
4349
 
4350
- #: ../includes/mycred-functions.php:2364
4351
  msgid "Form Submission (Contact Form 7)"
4352
  msgstr "Sumisión de Formulario (Contact Form 7)"
4353
 
4354
- #: ../includes/mycred-functions.php:2367
4355
  msgid "Form Submission (Gravity Form)"
4356
  msgstr "Sumisión de Formulario (Gravity Form)"
4357
 
4358
- #: ../includes/mycred-functions.php:2370
4359
  msgid "New Forum Topic (SimplePress)"
4360
  msgstr "Nuevo Tema de Fórum (SimplePress)"
4361
 
4362
- #: ../includes/mycred-functions.php:2371
4363
  msgid "New Forum Post (SimplePress)"
4364
  msgstr "Nueva Entrada de Fórum (SimplePress)"
4365
 
4366
- #: ../includes/mycred-functions.php:2380
4367
  msgid "Affiliate Signup (AffiliateWP)"
4368
  msgstr ""
4369
 
4370
- #: ../includes/mycred-functions.php:2381
4371
  msgid "Referred Visit (AffiliateWP)"
4372
  msgstr ""
4373
 
4374
- #: ../includes/mycred-functions.php:2382
4375
  msgid "Affiliate Referral (AffiliateWP)"
4376
  msgstr ""
4377
 
4378
- #: ../includes/mycred-functions.php:2383
4379
  msgid "Referral Refund (AffiliateWP)"
4380
  msgstr ""
4381
 
4382
- #: ../includes/mycred-functions.php:2387 ../plugins/mycred-hook-wp-postratings.
4383
  #: php:150
4384
  msgid "Adding a Rating"
4385
  msgstr ""
4386
 
4387
- #: ../includes/mycred-functions.php:2388 ../plugins/mycred-hook-wp-postratings.
4388
  #: php:169
4389
  msgid "Receiving a Rating"
4390
  msgstr ""
4391
 
4392
- #: ../includes/mycred-functions.php:2392
4393
  msgid "Poll Voting"
4394
  msgstr "Votación"
4395
 
4396
- #: ../includes/mycred-functions.php:2395
4397
  msgid "Sending an Invite"
4398
  msgstr "Mandando una Invitación"
4399
 
4400
- #: ../includes/mycred-functions.php:2396
4401
  msgid "Accepting an Invite"
4402
  msgstr "Aceptando una Invitación"
4403
 
4404
- #: ../includes/mycred-functions.php:2402
4405
  msgid "Banking Payout"
4406
  msgstr "Desembolso Bancario"
4407
 
4408
- #: ../includes/mycred-functions.php:2405
4409
  msgid "buyCRED Purchase (PayPal Standard)"
4410
  msgstr "Compra buyCRED (PayPal Standard)"
4411
 
4412
- #: ../includes/mycred-functions.php:2406
4413
  msgid "buyCRED Purchase (Skrill)"
4414
  msgstr "Compra buyCRED (Skrill)"
4415
 
4416
- #: ../includes/mycred-functions.php:2407
4417
  msgid "buyCRED Purchase (Zombaio)"
4418
  msgstr "Compra buyCRED (Zombaio)"
4419
 
4420
- #: ../includes/mycred-functions.php:2408
4421
  msgid "buyCRED Purchase (NETBilling)"
4422
  msgstr "Compra buyCRED (NETBilling)"
4423
 
4424
- #: ../includes/mycred-functions.php:2409
4425
  msgid "buyCRED Purchase (BitPay)"
4426
  msgstr "Compra buyCRED (BitPay)"
4427
 
4428
- #: ../includes/mycred-functions.php:2414
4429
  msgid "Coupon Purchase"
4430
  msgstr "Compra Cupón"
4431
 
4432
- #: ../includes/mycred-functions.php:2418
4433
  msgid "Store Purchase (WooCommerce)"
4434
  msgstr "Compra de Tienda (WooCommerce)"
4435
 
4436
- #: ../includes/mycred-functions.php:2419
4437
  msgid "Store Reward (WooCommerce)"
4438
  msgstr ""
4439
 
4440
- #: ../includes/mycred-functions.php:2420
4441
  msgid "Product Review (WooCommerce)"
4442
  msgstr ""
4443
 
4444
- #: ../includes/mycred-functions.php:2423
4445
  msgid "Store Purchase (MarketPress)"
4446
  msgstr "Compra de Tienda (MarketPress)"
4447
 
4448
- #: ../includes/mycred-functions.php:2424
4449
  msgid "Store Reward (MarketPress)"
4450
  msgstr ""
4451
 
4452
- #: ../includes/mycred-functions.php:2427
4453
  msgid "Store Purchase (WP E-Commerce)"
4454
  msgstr "Compra de Tienda (WP E-Commerce)"
4455
 
4456
- #: ../includes/mycred-functions.php:2433
4457
  msgid "Event Payment (Event Espresso)"
4458
  msgstr "Pago por Evento (Event Espresso)"
4459
 
4460
- #: ../includes/mycred-functions.php:2434
4461
  msgid "Event Sale (Event Espresso)"
4462
  msgstr "Venta de Evento (Event Espresso)"
4463
 
4464
- #: ../includes/mycred-functions.php:2438
4465
  msgid "Event Payment (Events Manager)"
4466
  msgstr "Pago por Evento (Events Manager)"
4467
 
4468
- #: ../includes/mycred-functions.php:2439
4469
  msgid "Event Sale (Events Manager)"
4470
  msgstr "Venta de Evento (Events Manager)"
4471
 
4472
- #: ../includes/mycred-functions.php:2443
4473
  msgid "Content Purchase / Sale"
4474
  msgstr "Compra / Venta de Contenido"
4475
 
4476
- #: ../includes/mycred-functions.php:2450
4477
  msgid "Manual Adjustment by Admin"
4478
  msgstr "Ajuste Manual por Admin"
4479
 
4480
- #: ../includes/mycred-functions.php:2520 ../includes/mycred-shortcodes.php:924
4481
  msgid "Point types not found."
4482
  msgstr "Clase de puntos no encontrado."
4483
 
4484
- #: ../includes/mycred-functions.php:2532 ../includes/mycred-functions.php:2552 ..
4485
- #: includes/mycred-shortcodes.php:930 ../includes/mycred-shortcodes.php:938
4486
  #, php-format
4487
  msgid "You are excluded from using %s."
4488
  msgstr "Esta exluido del uso de %s."
4489
 
4490
- #: ../includes/mycred-functions.php:2542 ../includes/mycred-shortcodes.php:934
4491
  msgid "Your balance is too low to use this feature."
4492
  msgstr "Tu saldo esta demasiado bajo para usar esta característica."
4493
 
4494
- #: ../includes/mycred-functions.php:2565
4495
  #, php-format
4496
  msgid "You must exchange at least %s!"
4497
  msgstr "Debes intercambiar por lo menos %s!"
4498
 
4499
- #: ../includes/mycred-functions.php:2587
4500
  #, php-format
4501
  msgid "Exchange from %s"
4502
  msgstr "Intercambiar desde %s"
4503
 
4504
- #: ../includes/mycred-functions.php:2599
4505
  #, php-format
4506
  msgid "Exchange to %s"
4507
  msgstr "Intercambiar a %s"
4508
 
4509
- #: ../includes/mycred-functions.php:2607
4510
  #, php-format
4511
  msgid "You have successfully exchanged %s into %s."
4512
  msgstr "Has intercambiado %s a %s con éxito."
4513
 
4514
- #: ../includes/mycred-functions.php:2638
4515
  msgid "per day"
4516
  msgstr ""
4517
 
4518
- #: ../includes/mycred-functions.php:2640
4519
  msgid "per week"
4520
  msgstr ""
4521
 
4522
- #: ../includes/mycred-functions.php:2642
4523
  msgid "per month"
4524
  msgstr ""
4525
 
4526
- #: ../includes/mycred-functions.php:2644
4527
  msgid "in total"
4528
  msgstr ""
4529
 
4530
- #: ../includes/mycred-functions.php:2646 ../includes/mycred-functions.php:2650
4531
  #, php-format
4532
  msgid "Maximum once"
4533
  msgid_plural "Maximum %d times"
@@ -4596,28 +4598,28 @@ msgstr ""
4596
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
4597
  "mínimos de mycred. Se produce los siguientes errores:"
4598
 
4599
- #: ../includes/mycred-install.php:256
4600
  msgid "myCRED needs your attention."
4601
  msgstr "myCRED precisa tu atención."
4602
 
4603
- #: ../includes/mycred-install.php:256
4604
  msgid "Run Setup"
4605
  msgstr "Ejecutar Configuración"
4606
 
4607
- #: ../includes/mycred-install.php:268 ../includes/mycred-install.php:269
4608
  msgid "myCRED Setup"
4609
  msgstr "Instalación de myCRED"
4610
 
4611
- #: ../includes/mycred-install.php:398
4612
  #, php-format
4613
  msgid "%s Setup"
4614
  msgstr "Configurar %s"
4615
 
4616
- #: ../includes/mycred-install.php:400
4617
  msgid "Step"
4618
  msgstr "Paso"
4619
 
4620
- #: ../includes/mycred-install.php:424
4621
  msgid ""
4622
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4623
  "points format, layout and security settings."
@@ -4625,76 +4627,76 @@ msgstr ""
4625
  "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
4626
  "el formato de puntos, disposiciones y configuraciones de seguridad."
4627
 
4628
- #: ../includes/mycred-install.php:425
4629
  msgid "Begin Setup"
4630
  msgstr "Empezar la Instalación"
4631
 
4632
- #: ../includes/mycred-install.php:480
4633
  msgid "Select the format you want to use for your points."
4634
  msgstr "Elige el formato que quieres usar para tus puntos."
4635
 
4636
- #: ../includes/mycred-install.php:481
4637
  msgid "Format"
4638
  msgstr "Formato"
4639
 
4640
- #: ../includes/mycred-install.php:484
4641
  msgid "Separators"
4642
  msgstr "Separadores"
4643
 
4644
- #: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:501
4645
  msgid "Decimals"
4646
  msgstr "Decimales"
4647
 
4648
- #: ../includes/mycred-install.php:496
4649
  msgid "Use zero for no decimals or maximum 20."
4650
  msgstr ""
4651
 
4652
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:505
4653
  msgid "Presentation"
4654
  msgstr "Presentación"
4655
 
4656
- #: ../includes/mycred-install.php:502 ../modules/mycred-module-settings.php:488
4657
  msgid "Name (Singular)"
4658
  msgstr "Nombre (singular)"
4659
 
4660
- #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:493
4661
  msgid "Name (Plural)"
4662
  msgstr "Nombre (plural)"
4663
 
4664
- #: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:508
4665
  msgid "Prefix"
4666
  msgstr "Prefijo"
4667
 
4668
- #: ../includes/mycred-install.php:520 ../modules/mycred-module-settings.php:516
4669
  msgid "Suffix"
4670
  msgstr "Sufijo"
4671
 
4672
- #: ../includes/mycred-install.php:524
4673
  msgid "Cancel Setup"
4674
  msgstr "Cancelar la Instalación"
4675
 
4676
- #: ../includes/mycred-install.php:524 ../includes/mycred-install.php:594
4677
  msgid "Next"
4678
  msgstr "Siguiente"
4679
 
4680
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:524
4681
  msgid "Security"
4682
  msgstr "Seguridad"
4683
 
4684
- #: ../includes/mycred-install.php:559
4685
  msgid "Edit Settings Capability"
4686
  msgstr "Editar la capacidad de las configuraciones"
4687
 
4688
  #. is this user's or users (plural)?
4689
- #: ../includes/mycred-install.php:563
4690
  msgid "Edit Users %plural% Capability"
4691
  msgstr "Editar la Capacidad de %plural% del Usuario"
4692
 
4693
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:537
4694
  msgid "Maximum %plural% payouts"
4695
  msgstr "Desembolso %plural% Máximo"
4696
 
4697
- #: ../includes/mycred-install.php:569 ../modules/mycred-module-settings.php:539
4698
  msgid ""
4699
  "As an added security, you can set the maximum amount a user can gain or "
4700
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -4706,105 +4708,105 @@ msgstr ""
4706
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
4707
  "o gastar en tu tienda. Ponga zero para desactivar."
4708
 
4709
- #: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:542
4710
  msgid "Excludes"
4711
  msgstr "Excluye"
4712
 
4713
- #: ../includes/mycred-install.php:576 ../modules/mycred-module-settings.php:546
4714
  msgid "Exclude those who can \"Edit Settings\"."
4715
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
4716
 
4717
- #: ../includes/mycred-install.php:580 ../modules/mycred-module-settings.php:550
4718
  msgid "Exclude those who can \"Edit Users %plural%\"."
4719
  msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
4720
 
4721
- #: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:554
4722
  msgid "Exclude the following user IDs:"
4723
  msgstr "Excluir a los siguientes IDs de usuarios"
4724
 
4725
- #: ../includes/mycred-install.php:587 ../modules/mycred-module-settings.php:559
4726
  msgid "User Deletions"
4727
  msgstr "Eliminación de Usuarios"
4728
 
4729
- #: ../includes/mycred-install.php:591 ../modules/mycred-module-settings.php:562
4730
  msgid "Delete log entries when user is deleted."
4731
  msgstr "Elimina las entradas de registro cuando se elimina el usuario."
4732
 
4733
- #: ../includes/mycred-install.php:612
4734
  msgid "Ready"
4735
  msgstr "Listo"
4736
 
4737
- #: ../includes/mycred-install.php:613
4738
  msgid "Almost done! Click the button below to finish this setup."
4739
  msgstr ""
4740
  "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
4741
  "configuración."
4742
 
4743
- #: ../includes/mycred-install.php:614
4744
  msgid "Install & Run"
4745
  msgstr "Instalar e ejecutar"
4746
 
4747
- #: ../includes/mycred-log.php:398
4748
  #, php-format
4749
  msgid "Showing %d %s"
4750
  msgstr "Mostrando %d %s"
4751
 
4752
  #. need more context: entrada or inscripción
4753
- #: ../includes/mycred-log.php:398
4754
  msgid "entry"
4755
  msgstr "entrada"
4756
 
4757
- #: ../includes/mycred-log.php:412
4758
  msgid "Go to the first page"
4759
  msgstr "Ir a la primera página"
4760
 
4761
- #: ../includes/mycred-log.php:419
4762
  msgid "Go to the previous page"
4763
  msgstr "Ir a la página anterior"
4764
 
4765
- #: ../includes/mycred-log.php:428
4766
  msgid "Current page"
4767
  msgstr "Página corriente"
4768
 
4769
- #: ../includes/mycred-log.php:434
4770
  #, php-format
4771
  msgctxt "mycred"
4772
  msgid "%1$s of %2$s"
4773
  msgstr "%1$s de %2$s"
4774
 
4775
- #: ../includes/mycred-log.php:438
4776
  msgid "Go to the next page"
4777
  msgstr "Ir a la página siguiente"
4778
 
4779
- #: ../includes/mycred-log.php:445
4780
  msgid "Go to the last page"
4781
  msgstr "Ir a la última página"
4782
 
4783
- #: ../includes/mycred-log.php:512
4784
  msgid "Show all references"
4785
  msgstr "Muestra todas las referencias"
4786
 
4787
- #: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:705
4788
- msgid "User ID"
4789
- msgstr "ID del Usuario"
4790
 
4791
- #: ../includes/mycred-log.php:531
4792
  msgid "Show in order"
4793
  msgstr "Mostrar en Orden"
4794
 
4795
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:426
4796
  msgid "Ascending"
4797
  msgstr "Ascendente"
4798
 
4799
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:427
4800
  msgid "Descending"
4801
  msgstr "Descendente"
4802
 
4803
- #: ../includes/mycred-log.php:550
4804
  msgid "Filter"
4805
  msgstr "Filtro"
4806
 
4807
- #: ../includes/mycred-log.php:603
4808
  msgid ""
4809
  "Log entries are exported to a CSV file and depending on the number of "
4810
  "entries selected, the process may take a few seconds."
@@ -4812,38 +4814,38 @@ msgstr ""
4812
  "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
4813
  "número de entradas seleccionadas, el proceso puede tardar unos segundos."
4814
 
4815
- #: ../includes/mycred-log.php:607
4816
  msgid "No export options available."
4817
  msgstr "No hay opciones para exportar."
4818
 
4819
  #. need more context: entrada or inscripción
4820
- #: ../includes/mycred-log.php:636
4821
  msgid "Entry"
4822
  msgstr "Entrada"
4823
 
4824
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:484
4825
  msgid "User Missing"
4826
  msgstr "Usuario Ausente"
4827
 
4828
- #: ../includes/mycred-log.php:807
4829
  msgid "No log entries found"
4830
  msgstr "Ninguna entrada de registro encontrada"
4831
 
4832
- #: ../includes/mycred-log.php:822 ../includes/mycred-log.php:824
4833
  msgid "Search Log"
4834
  msgstr "Busqueda de Registro"
4835
 
4836
  #. buscar las entradas en el registro
4837
- #: ../includes/mycred-log.php:823
4838
  msgid "search log entries"
4839
  msgstr "Búsqueda de las entradas de registro"
4840
 
4841
- #: ../includes/mycred-log.php:836 ../modules/mycred-module-buddypress.php:221 ..
4842
- #: modules/mycred-module-buddypress.php:234
4843
  msgid "All"
4844
  msgstr "Todo"
4845
 
4846
- #: ../includes/mycred-log.php:838 ../modules/mycred-module-buddypress.php:223
4847
  msgid "Yesterday"
4848
  msgstr "Ayer"
4849
 
@@ -5019,56 +5021,56 @@ msgstr "Enviado"
5019
  msgid "Error - Try Again"
5020
  msgstr "Error - Inténtelo de nuevo."
5021
 
5022
- #: ../includes/mycred-shortcodes.php:763
5023
  msgid "A video ID is required for this shortcode"
5024
  msgstr "Este código corto (shortcode) precisa un ID del video."
5025
 
5026
- #: ../includes/mycred-shortcodes.php:956
5027
  #, php-format
5028
  msgid "Convert <span>%s</span> to <span>%s</span>"
5029
  msgstr "Convertir <span>%s</span> a <span>%s</span>"
5030
 
5031
- #: ../includes/mycred-shortcodes.php:965
5032
  #, php-format
5033
  msgid "Your current %s balance"
5034
  msgstr "Tu Saldo Actual %s"
5035
 
5036
- #: ../includes/mycred-shortcodes.php:973
5037
  #, php-format
5038
  msgid "Minimum %s"
5039
  msgstr "Minimo %s"
5040
 
5041
- #: ../includes/mycred-shortcodes.php:977
5042
  #, php-format
5043
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
5044
  msgstr "1 %s = <span class=\"rate\">%s</span> %s"
5045
 
5046
- #: ../includes/mycred-shortcodes.php:983
5047
  msgid "Exchange"
5048
  msgstr "Intercambio"
5049
 
5050
- #: ../includes/mycred-shortcodes.php:1048
5051
  msgid "No instances found for this point type"
5052
  msgstr ""
5053
 
5054
- #: ../includes/mycred-shortcodes.php:1052
5055
  msgid "Invalid point type"
5056
  msgstr ""
5057
 
5058
- #: ../includes/mycred-shortcodes.php:1111
5059
  msgid "Instance"
5060
  msgstr ""
5061
 
5062
- #: ../includes/mycred-shortcodes.php:1113 ../modules/mycred-module-hooks.php:600 .
5063
- #: ./modules/mycred-module-hooks.php:607 ../modules/mycred-module-hooks.php:631 ..
5064
- #: modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:706 ..
5065
- #: modules/mycred-module-hooks.php:713 ../modules/mycred-module-hooks.php:898 ..
5066
- #: modules/mycred-module-hooks.php:1029 ../modules/mycred-module-hooks.php:1046 .
5067
- #: ./modules/mycred-module-hooks.php:1093 ../modules/mycred-module-hooks.php:2793
5068
- #: ../modules/mycred-module-hooks.php:2822 ../plugins/mycred-hook-affiliatewp.php:
5069
- #: 237 ../plugins/mycred-hook-bbPress.php:413 ../plugins/mycred-hook-bbPress.php:
5070
- #: 443 ../plugins/mycred-hook-bbPress.php:478 ../plugins/mycred-hook-bbPress.php:
5071
- #: 495 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
5072
  #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
5073
  #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
5074
  #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
@@ -5089,7 +5091,7 @@ msgstr ""
5089
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5090
  #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5091
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5092
- #: php:314 ../plugins/mycred-hook-woocommerce.php:300 ../plugins/mycred-hook-wp-
5093
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5094
  #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
5095
  #: postratings.php:175
@@ -5362,21 +5364,21 @@ msgstr "Importar Entradas de Registro"
5362
  msgid "Import log entries from a CSV file."
5363
  msgstr "Importa las entradas de registro desde un fichero CSV."
5364
 
5365
- #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
5366
  msgid "Add-ons"
5367
  msgstr "Extensiones"
5368
 
5369
- #: ../modules/mycred-module-addons.php:151
5370
  msgid "Give your users badges based on their interaction with your website."
5371
  msgstr "Dar insignias a tus usuarios basado en sus interacciones con tu sitio web."
5372
 
5373
- #: ../modules/mycred-module-addons.php:162
5374
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
5375
  msgstr ""
5376
  "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
5377
  "de las cuentas de usuarios."
5378
 
5379
- #: ../modules/mycred-module-addons.php:173
5380
  msgid ""
5381
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5382
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
@@ -5387,7 +5389,7 @@ msgstr ""
5387
  "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
5388
  "para otros miembros."
5389
 
5390
- #: ../modules/mycred-module-addons.php:184
5391
  msgid ""
5392
  "The coupons add-on allows you to create coupons that users can use to add "
5393
  "points to their accounts."
@@ -5395,13 +5397,13 @@ msgstr ""
5395
  "Los cupones de add-on le permite crear cupones que los usuarios pueden "
5396
  "utilizar para agregar puntos a sus cuentas."
5397
 
5398
- #: ../modules/mycred-module-addons.php:195
5399
  msgid "Create email notices for any type of myCRED instance."
5400
  msgstr ""
5401
  "Crea avisos por correo electrónico para cualquier tipo de instancias de "
5402
  "myCRED."
5403
 
5404
- #: ../modules/mycred-module-addons.php:206
5405
  msgid ""
5406
  "Let your users pay using their <strong>my</strong>CRED points balance. "
5407
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
@@ -5412,11 +5414,11 @@ msgstr ""
5412
  "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
5413
  "Manager (gratis y pro)."
5414
 
5415
- #: ../modules/mycred-module-addons.php:217
5416
  msgid "Create pop-up notifications for when users gain or loose points."
5417
  msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
5418
 
5419
- #: ../modules/mycred-module-addons.php:229
5420
  msgid ""
5421
  "Create ranks for users reaching a certain number of %_plural% with the "
5422
  "option to add logos for each rank."
@@ -5424,7 +5426,7 @@ msgstr ""
5424
  "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
5425
  "con la opción de añadir logotipos para cada rango."
5426
 
5427
- #: ../modules/mycred-module-addons.php:240
5428
  msgid ""
5429
  "This add-on allows you to sell posts, pages or any public post types on your "
5430
  "website. You can either sell the entire content or using our shortcode, sell "
@@ -5435,13 +5437,13 @@ msgstr ""
5435
  "el código corto (shortcode), vender partes de tu contenido permitiendote "
5436
  "ofrecer \"avances\"."
5437
 
5438
- #: ../modules/mycred-module-addons.php:251
5439
  msgid ""
5440
  "Gives you access to your myCRED Staticstics based on your users gains and "
5441
  "loses."
5442
  msgstr ""
5443
 
5444
- #: ../modules/mycred-module-addons.php:262
5445
  msgid ""
5446
  "Allow your users to send or \"donate\" points to other members by either using "
5447
  "the mycred_transfer shortcode or the myCRED Transfer widget."
@@ -5450,164 +5452,172 @@ msgstr ""
5450
  "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
5451
  "myCRED."
5452
 
5453
- #: ../modules/mycred-module-addons.php:297
5454
  #, php-format
5455
  msgid "%s Add-ons"
5456
  msgstr "%s Extensiones (addons)"
5457
 
5458
- #: ../modules/mycred-module-addons.php:302
5459
  msgid "Add-on Activated"
5460
  msgstr "Extensión Activado"
5461
 
5462
- #: ../modules/mycred-module-addons.php:305
5463
  msgid "Add-on Deactivated"
5464
  msgstr "Extensión Desactivado"
5465
 
5466
- #: ../modules/mycred-module-addons.php:309
 
 
 
 
5467
  msgid "Add-ons can expand your current installation with further features."
5468
  msgstr ""
5469
  "Extensiones pueden ampliar tu instalación actual con más características "
5470
  "técnicas."
5471
 
5472
- #: ../modules/mycred-module-addons.php:330
 
 
 
 
5473
  #, php-format
5474
  msgid "You can find more add-ons in our %s."
5475
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
5476
 
5477
- #: ../modules/mycred-module-addons.php:330
5478
  msgid "online store"
5479
  msgstr "tienda online"
5480
 
5481
- #: ../modules/mycred-module-addons.php:351
5482
  msgid "Deactivate Add-on"
5483
  msgstr "Desactivar Extensión"
5484
 
5485
- #: ../modules/mycred-module-addons.php:352
5486
  msgid "Deactivate"
5487
  msgstr "Desactivar"
5488
 
5489
- #: ../modules/mycred-module-addons.php:359
5490
  msgid "Activate Add-on"
5491
  msgstr "Activar Extensión"
5492
 
5493
- #: ../modules/mycred-module-addons.php:360
5494
  msgid "Activate"
5495
  msgstr "Activar"
5496
 
5497
- #: ../modules/mycred-module-addons.php:376
5498
  msgid "Version"
5499
  msgstr "Version"
5500
 
5501
- #: ../modules/mycred-module-addons.php:380
5502
  msgid "By"
5503
  msgstr "Por"
5504
 
5505
- #: ../modules/mycred-module-addons.php:384
5506
  msgid "About"
5507
  msgstr "Acerca de"
5508
 
5509
- #: ../modules/mycred-module-addons.php:388
5510
  msgid "Get Pro"
5511
  msgstr "Obtenga la versión Pro"
5512
 
5513
- #: ../modules/mycred-module-buddypress.php:30
5514
  msgid "My History"
5515
  msgstr "Mi Historial"
5516
 
5517
- #: ../modules/mycred-module-buddypress.php:31
5518
  #, php-format
5519
  msgid "%s's History"
5520
  msgstr "La Historial de %s"
5521
 
5522
- #: ../modules/mycred-module-buddypress.php:121
5523
  msgid "Current balance"
5524
  msgstr "Saldo Actual"
5525
 
5526
- #: ../modules/mycred-module-buddypress.php:336
5527
  msgid "Go"
5528
  msgstr "Ir a"
5529
 
5530
- #: ../modules/mycred-module-buddypress.php:392
5531
  msgid "Show in Profile"
5532
  msgstr "Mostrar en Perfil"
5533
 
5534
- #: ../modules/mycred-module-buddypress.php:407
5535
  #, php-format
5536
  msgid "%singular% Balance"
5537
  msgstr "%singular% Saldo"
5538
 
5539
- #: ../modules/mycred-module-buddypress.php:423
5540
  #, php-format
5541
  msgid "Members and visitors can other members %_singular% balance."
5542
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
5543
 
5544
- #: ../modules/mycred-module-buddypress.php:433
5545
  msgid "%plural% History"
5546
  msgstr "Historial de %plural%"
5547
 
5548
- #: ../modules/mycred-module-buddypress.php:449
5549
  msgid "Members can view each others %_plural% history."
5550
  msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
5551
 
5552
- #: ../modules/mycred-module-buddypress.php:454
5553
  msgid "Menu Title"
5554
  msgstr "Título de Menú"
5555
 
5556
- #: ../modules/mycred-module-buddypress.php:456
5557
  msgid "Title shown to me"
5558
  msgstr "Título mostrado a mi"
5559
 
5560
- #: ../modules/mycred-module-buddypress.php:461
5561
  #, php-format
5562
  msgid "Title shown to others. Use %s to show the first name."
5563
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
5564
 
5565
- #: ../modules/mycred-module-buddypress.php:466
5566
  msgid "Menu Position"
5567
  msgstr "Posición del Menú"
5568
 
5569
- #: ../modules/mycred-module-buddypress.php:468
5570
  msgid "Current menu positions:"
5571
  msgstr "Posiciones Acuales del Menú"
5572
 
5573
- #: ../modules/mycred-module-buddypress.php:473
5574
  msgid "History URL slug"
5575
  msgstr "La ficha historial de la URL"
5576
 
5577
- #: ../modules/mycred-module-buddypress.php:475
5578
  msgid "Do not use empty spaces!"
5579
  msgstr "¡No utilice espacios vacíos!"
5580
 
5581
- #: ../modules/mycred-module-buddypress.php:480
5582
  msgid "Number of history entries to show"
5583
  msgstr "Numero de entradas de historial a mostrar"
5584
 
5585
- #: ../modules/mycred-module-hooks.php:87
5586
  #, php-format
5587
  msgid "%plural% for registrations"
5588
  msgstr "%plural% por inscripciones"
5589
 
5590
- #: ../modules/mycred-module-hooks.php:88
5591
  #, php-format
5592
  msgid "Award %_plural% for users joining your website."
5593
  msgstr "Concede %_plural% a usuarios por unirse a tu sitio de web."
5594
 
5595
- #: ../modules/mycred-module-hooks.php:94
5596
  #, php-format
5597
  msgid "%plural% for daily visits"
5598
  msgstr "%plural% para visitas diarias"
5599
 
5600
- #: ../modules/mycred-module-hooks.php:95
5601
  #, php-format
5602
  msgid "Award %_plural% for users visiting your website on a daily basis."
5603
  msgstr "Concede %_plural% a usuarios por visitar tu sitio web diariamente."
5604
 
5605
- #: ../modules/mycred-module-hooks.php:101
5606
  #, php-format
5607
  msgid "%plural% for viewing content"
5608
  msgstr "%plural% para ver contenido"
5609
 
5610
- #: ../modules/mycred-module-hooks.php:102
5611
  msgid ""
5612
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
5613
  "authors for members viewing their content."
@@ -5615,12 +5625,12 @@ msgstr ""
5615
  "Concede %_plural% a usuarios por ver entradas y / o %plural% a tus autores "
5616
  "cuando miembros ven su contenido."
5617
 
5618
- #: ../modules/mycred-module-hooks.php:108
5619
  #, php-format
5620
  msgid "%plural% for logins"
5621
  msgstr "%plural% para ingresos"
5622
 
5623
- #: ../modules/mycred-module-hooks.php:109
5624
  #, php-format
5625
  msgid ""
5626
  "Award %_plural% for logging in to your website. You can also set an optional "
@@ -5629,39 +5639,39 @@ msgstr ""
5629
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
5630
  "ajustar un limíte opcional."
5631
 
5632
- #: ../modules/mycred-module-hooks.php:115
5633
  #, php-format
5634
  msgid "%plural% for publishing content"
5635
  msgstr "%plural% por publicar contenido"
5636
 
5637
- #: ../modules/mycred-module-hooks.php:116
5638
  #, php-format
5639
  msgid ""
5640
  "Award %_plural% for publishing content on your website. If your custom post "
5641
  "type is not shown bellow, make sure it is set to \"Public\"."
5642
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
5643
 
5644
- #: ../modules/mycred-module-hooks.php:122
5645
  #, php-format
5646
  msgid "%plural% for comments"
5647
  msgstr "%plural% por comentarios"
5648
 
5649
- #: ../modules/mycred-module-hooks.php:122
5650
  #, php-format
5651
  msgid "%plural% for Disqus comments"
5652
  msgstr "%plural% por comentarios Disqus"
5653
 
5654
- #: ../modules/mycred-module-hooks.php:123
5655
  #, php-format
5656
  msgid "Award %_plural% for making comments."
5657
  msgstr "Concede %_plural% por hacer comentarios."
5658
 
5659
- #: ../modules/mycred-module-hooks.php:129
5660
  #, php-format
5661
  msgid "%plural% for clicking on links"
5662
  msgstr "%plural% por hacer clic sobre enlaces"
5663
 
5664
- #: ../modules/mycred-module-hooks.php:130
5665
  msgid ""
5666
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5667
  "shortcode."
@@ -5669,12 +5679,12 @@ msgstr ""
5669
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
5670
  "por el [mycred_link] código corto (shortcode)."
5671
 
5672
- #: ../modules/mycred-module-hooks.php:136
5673
  #, php-format
5674
  msgid "%plural% for viewing Videos"
5675
  msgstr "%plural% por ver videos"
5676
 
5677
- #: ../modules/mycred-module-hooks.php:137
5678
  msgid ""
5679
  "Award %_plural% to users who watches videos embedded using the "
5680
  "[mycred_video] shortcode."
@@ -5682,23 +5692,23 @@ msgstr ""
5682
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
5683
  "el [mycred_link] código corto (shortcode)."
5684
 
5685
- #: ../modules/mycred-module-hooks.php:143
5686
  #, php-format
5687
  msgid "%plural% for referrals"
5688
  msgstr "%plural% por referencias (o recomendaciones)"
5689
 
5690
- #: ../modules/mycred-module-hooks.php:144
5691
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5692
  msgstr ""
5693
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
5694
  "miembros inscritos."
5695
 
5696
- #: ../modules/mycred-module-hooks.php:177
5697
  #, php-format
5698
  msgid "%s Hooks"
5699
  msgstr "Ganchos de %s"
5700
 
5701
- #: ../modules/mycred-module-hooks.php:180
5702
  msgid ""
5703
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5704
  "depending on their actions around your website."
@@ -5706,18 +5716,18 @@ msgstr ""
5706
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
5707
  "usuario, dependiendo de sus acciones en tu sitio web."
5708
 
5709
- #: ../modules/mycred-module-hooks.php:362 ../modules/mycred-module-hooks.php:459 .
5710
- #: ./modules/mycred-module-hooks.php:611 ../modules/mycred-module-hooks.php:642 ..
5711
- #: modules/mycred-module-hooks.php:717 ../modules/mycred-module-hooks.php:1033 ..
5712
- #: modules/mycred-module-hooks.php:1050 ../modules/mycred-module-hooks.php:1097 .
5713
- #: ./modules/mycred-module-hooks.php:1524 ../modules/mycred-module-hooks.php:1541
5714
- #: ../modules/mycred-module-hooks.php:1558 ../modules/mycred-module-hooks.php:
5715
- #: 2785 ../modules/mycred-module-hooks.php:2814 ../plugins/mycred-hook-
5716
  #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5717
- #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:418 ..
5718
- #: plugins/mycred-hook-bbPress.php:431 ../plugins/mycred-hook-bbPress.php:448 ..
5719
- #: plugins/mycred-hook-bbPress.php:466 ../plugins/mycred-hook-bbPress.php:483 ..
5720
- #: plugins/mycred-hook-bbPress.php:500 ../plugins/mycred-hook-bbPress.php:522 ..
5721
  #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5722
  #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5723
  #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
@@ -5749,51 +5759,51 @@ msgstr ""
5749
  msgid "Log template"
5750
  msgstr "Plantilla de Registro"
5751
 
5752
- #: ../modules/mycred-module-hooks.php:594
5753
  #, php-format
5754
  msgid "%plural% for viewing Posts"
5755
  msgstr "%plural% para ver Entradas"
5756
 
5757
- #: ../modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:614 .
5758
- #: ./modules/mycred-module-hooks.php:628 ../modules/mycred-module-hooks.php:645 ..
5759
- #: modules/mycred-module-hooks.php:703 ../modules/mycred-module-hooks.php:720
5760
  msgid "Member"
5761
  msgstr "Miembro"
5762
 
5763
- #: ../modules/mycred-module-hooks.php:604 ../modules/mycred-module-hooks.php:620 .
5764
- #: ./modules/mycred-module-hooks.php:635 ../modules/mycred-module-hooks.php:651 ..
5765
- #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:726 ..
5766
- #: modules/mycred-module-hooks.php:1519 ../modules/mycred-module-hooks.php:1536 .
5767
- #: ./modules/mycred-module-hooks.php:1553
5768
  msgid "Content Author"
5769
  msgstr "Autor del Contenido"
5770
 
5771
- #: ../modules/mycred-module-hooks.php:625
5772
  #, php-format
5773
  msgid "%plural% for viewing Pages"
5774
  msgstr "%plural% para ver Paginas"
5775
 
5776
- #: ../modules/mycred-module-hooks.php:700
5777
  #, php-format
5778
  msgid "%plural% for viewing %s"
5779
  msgstr "%plural% para Ver %s"
5780
 
5781
- #: ../modules/mycred-module-hooks.php:1023
5782
  #, php-format
5783
  msgid "%plural% for Posts"
5784
  msgstr "%plural% por Posts"
5785
 
5786
- #: ../modules/mycred-module-hooks.php:1040
5787
  #, php-format
5788
  msgid "%plural% for Pages"
5789
  msgstr "%plural% por Paginas"
5790
 
5791
- #: ../modules/mycred-module-hooks.php:1087
5792
  #, php-format
5793
  msgid "%plural% for %s"
5794
  msgstr "%plural% por %s"
5795
 
5796
- #: ../modules/mycred-module-hooks.php:1510
5797
  msgid ""
5798
  "%plural% are only awarded when your website has been synced with the Disqus "
5799
  "server!"
@@ -5801,25 +5811,25 @@ msgstr ""
5801
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
5802
  "sincronizado con el servidor de Disqus!"
5803
 
5804
- #: ../modules/mycred-module-hooks.php:1515 ../modules/mycred-module-hooks.php:
5805
- #: 1532 ../modules/mycred-module-hooks.php:1549
5806
  msgid "Comment Author"
5807
  msgstr "Autor del Comentario"
5808
 
5809
- #: ../modules/mycred-module-hooks.php:1529
5810
  msgid "Comment Marked SPAM"
5811
  msgstr "Comentario Marcado como SPAM"
5812
 
5813
- #: ../modules/mycred-module-hooks.php:1546
5814
  msgid "Trashed / Unapproved Comments"
5815
  msgstr "Comentarios Destrozados / No Aprobados"
5816
 
5817
- #: ../modules/mycred-module-hooks.php:1566
5818
  msgid "Limit per post"
5819
  msgstr "Límite por Entrada"
5820
 
5821
  #. what is the Spanish word for "post"? o anglicismo?
5822
- #: ../modules/mycred-module-hooks.php:1568
5823
  msgid ""
5824
  "The number of comments per post that grants %_plural% to the comment author. "
5825
  "Use zero for unlimited."
@@ -5827,17 +5837,17 @@ msgstr ""
5827
  "El numero de comentarios por cada post que concede %_plural% al autor del "
5828
  "comentario. Utilice cero para un número ilimitado"
5829
 
5830
- #: ../modules/mycred-module-hooks.php:1572
5831
  msgid "Limit per day"
5832
  msgstr "Límite por día"
5833
 
5834
- #: ../modules/mycred-module-hooks.php:1574
5835
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5836
  msgstr ""
5837
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
5838
  "número ilimitado."
5839
 
5840
- #: ../modules/mycred-module-hooks.php:1579
5841
  msgid ""
5842
  "%plural% is to be awarded even when comment authors reply to their own "
5843
  "comment."
@@ -5845,15 +5855,15 @@ msgstr ""
5845
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
5846
  "comentario."
5847
 
5848
- #: ../modules/mycred-module-hooks.php:1650
5849
  msgid "Once for each unique URL"
5850
  msgstr "Una sola vez para cada única URL"
5851
 
5852
- #: ../modules/mycred-module-hooks.php:1651
5853
  msgid "Once for each unique link id"
5854
  msgstr "Una vez para cada id del enlace único "
5855
 
5856
- #: ../modules/mycred-module-hooks.php:1844
5857
  msgid ""
5858
  "The default amount to award for clicking on links. You can override this in "
5859
  "the shortcode."
@@ -5861,16 +5871,16 @@ msgstr ""
5861
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
5862
  "anular esto con el 'shortcode' (código corto)."
5863
 
5864
- #: ../modules/mycred-module-hooks.php:1851
5865
  #, php-format
5866
  msgid "Custom tags: %url%, %title% or %id%."
5867
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
5868
 
5869
- #: ../modules/mycred-module-hooks.php:1862 ../modules/mycred-module-hooks.php:2898
5870
  msgid "Note!"
5871
  msgstr "¡Atención!"
5872
 
5873
- #: ../modules/mycred-module-hooks.php:1862
5874
  msgid ""
5875
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5876
  "generate one automatically based on the value set under href. If you are "
@@ -5882,44 +5892,44 @@ msgstr ""
5882
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
5883
  "contenidos, se recomienda que limites por ID."
5884
 
5885
- #: ../modules/mycred-module-hooks.php:1864 ../modules/mycred-module-hooks.php:2220
5886
  msgid "Available Shortcode"
5887
  msgstr "Código corto Disponible"
5888
 
5889
- #: ../modules/mycred-module-hooks.php:2184
5890
  msgid "Amount to award for viewing videos."
5891
  msgstr "Cantidad a ceder para ver videos."
5892
 
5893
- #: ../modules/mycred-module-hooks.php:2194
5894
  msgid "Award Logic"
5895
  msgstr "Lógica de Concesión"
5896
 
5897
- #: ../modules/mycred-module-hooks.php:2196
5898
  #, php-format
5899
  msgid "Select when %_plural% should be awarded or deducted."
5900
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
5901
 
5902
- #: ../modules/mycred-module-hooks.php:2197
5903
  msgid "Play - As soon as video starts playing."
5904
  msgstr "Play - En cuanto el video empiece a reproducirse."
5905
 
5906
- #: ../modules/mycred-module-hooks.php:2198
5907
  msgid "Full - First when the entire video has played."
5908
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
5909
 
5910
- #: ../modules/mycred-module-hooks.php:2199
5911
  msgid "Interval - For each x number of seconds watched."
5912
  msgstr "Intervalo - Para cada x numero de segundos vistos."
5913
 
5914
- #: ../modules/mycred-module-hooks.php:2204
5915
  msgid "Number of seconds"
5916
  msgstr "Numero de segundos"
5917
 
5918
- #: ../modules/mycred-module-hooks.php:2211
5919
  msgid "Leniency"
5920
  msgstr "Lenidad"
5921
 
5922
- #: ../modules/mycred-module-hooks.php:2213
5923
  msgid ""
5924
  "The maximum percentage a users view of a movie can differ from the actual "
5925
  "length."
@@ -5927,7 +5937,7 @@ msgstr ""
5927
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
5928
  "actual del video."
5929
 
5930
- #: ../modules/mycred-module-hooks.php:2216
5931
  msgid ""
5932
  "Do not set this value to zero! A lot of thing can happen while a user "
5933
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -5937,84 +5947,78 @@ msgstr ""
5937
  "usuario ve una película y a veces la contador puede disminuir por pocos "
5938
  "segundos por falta de buffering o por errores de reproducción."
5939
 
5940
- #: ../modules/mycred-module-hooks.php:2284
5941
  msgid "Affiliate Program"
5942
  msgstr "Programa de Afiliados"
5943
 
5944
- #: ../modules/mycred-module-hooks.php:2293
5945
  msgid "Per Day"
5946
  msgstr "Por Día"
5947
 
5948
- #: ../modules/mycred-module-hooks.php:2443
5949
  msgid "Link"
5950
  msgstr "Enlace"
5951
 
5952
- #: ../modules/mycred-module-hooks.php:2447
5953
  msgid "Visitors Referred"
5954
  msgstr "Visitantes Referidos"
5955
 
5956
- #: ../modules/mycred-module-hooks.php:2451
5957
  msgid "Signups Referred"
5958
  msgstr "Inscripciones Referidos"
5959
 
5960
- #: ../modules/mycred-module-hooks.php:2779 ../plugins/mycred-hook-affiliatewp.php:
5961
  #: 231
5962
  msgid "Referring Visitors"
5963
  msgstr "Referiendo Visitantes"
5964
 
5965
- #: ../modules/mycred-module-hooks.php:2803 ../modules/mycred-module-hooks.php:2832
5966
- msgid "The number of referrals each member can make. Use zero for unlimited."
5967
- msgstr ""
5968
- "El numero de referencias que cada miembro puede hacer. Utilice cero para "
5969
- "ilimitado."
5970
-
5971
- #: ../modules/mycred-module-hooks.php:2807 ../modules/mycred-module-hooks.php:2836
5972
  msgid "Referring Signups"
5973
  msgstr "Inscripciones a través de Referencias"
5974
 
5975
- #: ../modules/mycred-module-hooks.php:2811
5976
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5977
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
5978
 
5979
- #: ../modules/mycred-module-hooks.php:2838
5980
  msgid "Registrations are disabled."
5981
  msgstr "Se han deshabilitado inscripciones."
5982
 
5983
- #: ../modules/mycred-module-hooks.php:2846
5984
  msgid "Referral Links"
5985
  msgstr "Enlaces Referentes"
5986
 
5987
- #: ../modules/mycred-module-hooks.php:2850
5988
  msgid "Assign numeric referral IDs to each user."
5989
  msgstr "Asignar ID numerica referente a cada usuario."
5990
 
5991
- #: ../modules/mycred-module-hooks.php:2851 ../modules/mycred-module-hooks.php:2857
5992
  msgid "Example"
5993
  msgstr "Ejemplo"
5994
 
5995
- #: ../modules/mycred-module-hooks.php:2856
5996
  msgid "Assign usernames as IDs for each user."
5997
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
5998
 
5999
- #: ../modules/mycred-module-hooks.php:2860
6000
  msgid "IP Limit"
6001
  msgstr "Límite de IP"
6002
 
6003
- #: ../modules/mycred-module-hooks.php:2864
6004
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
6005
  msgstr ""
6006
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
6007
  "número ilimitado"
6008
 
6009
- #: ../modules/mycred-module-hooks.php:2868 ../modules/mycred-module-hooks.php:2902
6010
  msgid "BuddyPress Profile"
6011
  msgstr "Perfil de BuddyPress"
6012
 
6013
- #: ../modules/mycred-module-hooks.php:2871
6014
  msgid "Insert Link in users Profile"
6015
  msgstr "Insertar enlace en el perfil del usuario"
6016
 
6017
- #: ../modules/mycred-module-hooks.php:2872
6018
  msgid ""
6019
  "Option to inser the referral link in users profiles. Links will only be "
6020
  "visible to users viewing their own profiles or administrators."
@@ -6023,23 +6027,23 @@ msgstr ""
6023
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
6024
  "ven a sus propios perfiles."
6025
 
6026
- #: ../modules/mycred-module-hooks.php:2878
6027
  msgid "Leave empty to hide."
6028
  msgstr "Deje el campo vacío para ocultarlo."
6029
 
6030
- #: ../modules/mycred-module-hooks.php:2881
6031
  msgid "Description"
6032
  msgstr "Descripción"
6033
 
6034
- #: ../modules/mycred-module-hooks.php:2882
6035
  msgid "Optional description to insert under the link."
6036
  msgstr "Insertar la descripción opcional debajo del enlace."
6037
 
6038
- #: ../modules/mycred-module-hooks.php:2895
6039
  msgid "Profile Positioning"
6040
  msgstr "Posicionamiento del Perfil"
6041
 
6042
- #: ../modules/mycred-module-hooks.php:2897
6043
  msgid ""
6044
  "You can move around the referral link on your users profile by changing the "
6045
  "position. Increase to move up, decrease to move down."
@@ -6047,167 +6051,167 @@ msgstr ""
6047
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
6048
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
6049
 
6050
- #: ../modules/mycred-module-hooks.php:2898
6051
  msgid "You can not move the referral link above the users \"Base\" profile details!"
6052
  msgstr ""
6053
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
6054
  "en el perfil del usuario!"
6055
 
6056
- #: ../modules/mycred-module-hooks.php:2904
6057
  msgid "Requires BuddyPress Extended Profiles to be enabled."
6058
  msgstr "Requiere que Perfils Extendidos de BuddyPress sea activado."
6059
 
6060
- #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
6061
- #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
6062
  msgid "Access denied for this action"
6063
  msgstr "Acceso denegado para esta acción"
6064
 
6065
- #: ../modules/mycred-module-log.php:196
6066
  msgid "Row Deleted"
6067
  msgstr "Fila Borrado"
6068
 
6069
- #: ../modules/mycred-module-log.php:223
6070
  msgid "Log entry not found"
6071
  msgstr "No se encontro la entrada de registro "
6072
 
6073
- #: ../modules/mycred-module-log.php:236
6074
  msgid "Entry Updated"
6075
  msgstr "Entrada Actualizada"
6076
 
6077
- #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:585
6078
  msgid "Entries"
6079
  msgstr "Entradas"
6080
 
6081
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:400 ..
6082
- #: modules/mycred-module-log.php:650 ../modules/mycred-module-settings.php:722
6083
  msgid "Export"
6084
  msgstr "Exportar"
6085
 
6086
- #: ../modules/mycred-module-log.php:311
6087
  msgid "Search results for"
6088
  msgstr "Buscar entre resultados por"
6089
 
6090
- #: ../modules/mycred-module-log.php:379
6091
  #, php-format
6092
  msgid "%s Log"
6093
  msgstr "Registro de %s"
6094
 
6095
- #: ../modules/mycred-module-log.php:390
6096
  msgid ""
6097
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
6098
  "Certain hooks and shortcodes will not work correctly!"
6099
  msgstr ""
6100
 
6101
- #: ../modules/mycred-module-log.php:522
6102
  msgid "Edit"
6103
  msgstr "Editar"
6104
 
6105
- #: ../modules/mycred-module-log.php:563
6106
  msgid "Time"
6107
  msgstr "Tiempo"
6108
 
6109
- #: ../modules/mycred-module-log.php:567
6110
  msgid "Current Log Entry"
6111
  msgstr "Entrada Actual de Registro"
6112
 
6113
- #: ../modules/mycred-module-log.php:569
6114
  msgid "The current saved log entry"
6115
  msgstr "La entrada guardada actual del registro"
6116
 
6117
- #: ../modules/mycred-module-log.php:572
6118
  msgid "Adjust Log Entry"
6119
  msgstr "Ajustar entrada de registro"
6120
 
6121
- #: ../modules/mycred-module-log.php:574
6122
  msgid "The new log entry"
6123
  msgstr "La nueva entrada de registro"
6124
 
6125
- #: ../modules/mycred-module-log.php:577
6126
  msgid "Update Log Entry"
6127
  msgstr "Actualiza la entrada de registro"
6128
 
6129
- #: ../modules/mycred-module-log.php:644
6130
  #, php-format
6131
  msgid "My %s History"
6132
  msgstr "Mi Historial de %s"
6133
 
6134
- #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
6135
- #: 106 ../modules/mycred-module-settings.php:158
6136
  msgid "Missing point type"
6137
  msgstr "Falta el clase de punto (\"point type\")"
6138
 
6139
- #: ../modules/mycred-module-settings.php:137
6140
  msgid "Accounts successfully reset"
6141
  msgstr "Las cuentas fueron reiniciadas con éxito."
6142
 
6143
- #: ../modules/mycred-module-settings.php:184
6144
  msgid "No users found to export"
6145
  msgstr "No se encontro usuarios para exportar"
6146
 
6147
- #: ../modules/mycred-module-settings.php:234
6148
  msgid "Invalid decimal value."
6149
  msgstr ""
6150
 
6151
- #: ../modules/mycred-module-settings.php:281
6152
  msgid "Log Updated"
6153
  msgstr ""
6154
 
6155
- #: ../modules/mycred-module-settings.php:397
6156
  msgid "Update Database"
6157
  msgstr ""
6158
 
6159
- #: ../modules/mycred-module-settings.php:398
6160
  msgid "Zero for no decimals or maximum 20."
6161
  msgstr ""
6162
 
6163
- #: ../modules/mycred-module-settings.php:401 ../modules/mycred-module-settings.
6164
- #: php:498
6165
  msgid "Tip"
6166
  msgstr "Pista"
6167
 
6168
- #: ../modules/mycred-module-settings.php:401
6169
  msgid ""
6170
  "As this is your main point type, the value you select here will be the "
6171
  "largest number of decimals your installation will support."
6172
  msgstr ""
6173
 
6174
- #: ../modules/mycred-module-settings.php:414 ../modules/mycred-module-settings.
6175
- #: php:427
6176
  msgid "No decimals"
6177
  msgstr ""
6178
 
6179
- #: ../modules/mycred-module-settings.php:439
6180
  #, php-format
6181
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
6182
  msgstr ""
6183
 
6184
- #: ../modules/mycred-module-settings.php:475
6185
  #, php-format
6186
  msgid "%s Settings"
6187
  msgstr "Configuración de %s"
6188
 
6189
- #: ../modules/mycred-module-settings.php:478
6190
  msgid "Adjust your core or add-on settings."
6191
  msgstr "Ajustar las configuraciones de tu nucleo o de las extensiones."
6192
 
6193
- #: ../modules/mycred-module-settings.php:483
6194
  msgid "Core Settings"
6195
  msgstr "Ajustes Basicos"
6196
 
6197
- #: ../modules/mycred-module-settings.php:485
6198
  msgid "Name"
6199
  msgstr "Nombre"
6200
 
6201
- #: ../modules/mycred-module-settings.php:490
6202
  #, php-format
6203
  msgid "Accessible though the %singular% template tag."
6204
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
6205
 
6206
- #: ../modules/mycred-module-settings.php:495
6207
  msgid "Accessible though the %plural% template tag."
6208
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
6209
 
6210
- #: ../modules/mycred-module-settings.php:498
6211
  msgid ""
6212
  "Adding an underscore at the beginning of template tag for names will return "
6213
  "them in lowercase. i.e. %_singular%"
@@ -6215,94 +6219,98 @@ msgstr ""
6215
  "Añadiendo un guión bajo al principio de la etiqueta de la plantilla para "
6216
  "nombres los cnovertira en minúsculas. Por ejemplo %_singular%"
6217
 
6218
- #: ../modules/mycred-module-settings.php:520
6219
  msgid "Separator"
6220
  msgstr "Separador"
6221
 
6222
- #: ../modules/mycred-module-settings.php:527
6223
  msgid "Edit Settings"
6224
  msgstr "Editar las Configuraciones"
6225
 
6226
  #. or "Verificar la capacidad de"
6227
- #: ../modules/mycred-module-settings.php:529 ../modules/mycred-module-settings.
6228
- #: php:534
6229
  msgid "Capability to check for."
6230
  msgstr "La capacidad que se va a verificar."
6231
 
6232
- #: ../modules/mycred-module-settings.php:532
6233
  msgid "Edit Users %plural%"
6234
  msgstr "Edita %plural% de Usuarios"
6235
 
6236
- #: ../modules/mycred-module-settings.php:556
6237
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
6238
  msgstr ""
6239
  "Lista separada por comas de los IDs de usuario para excluir. ¡No se permiten "
6240
  "espacios!"
6241
 
6242
- #: ../modules/mycred-module-settings.php:576
6243
  msgid "Management"
6244
  msgstr "Gestión"
6245
 
6246
- #: ../modules/mycred-module-settings.php:578
6247
  msgid "The Log"
6248
  msgstr "El Registro"
6249
 
6250
- #: ../modules/mycred-module-settings.php:581
6251
  msgid "Table Name"
6252
  msgstr "Nombre de Tabla"
6253
 
6254
- #: ../modules/mycred-module-settings.php:590
6255
  msgid "Empty Log"
6256
  msgstr "Registro Vacío"
6257
 
6258
- #: ../modules/mycred-module-settings.php:605
6259
  msgid "Set all to zero"
6260
  msgstr "Ajusta todo a cero"
6261
 
6262
- #: ../modules/mycred-module-settings.php:605
6263
  msgid "CSV Export"
6264
  msgstr "Exportar CSV"
6265
 
6266
- #: ../modules/mycred-module-settings.php:625
6267
  msgid "Default"
6268
  msgstr "Predefinido"
6269
 
6270
- #: ../modules/mycred-module-settings.php:628 ../modules/mycred-module-settings.
6271
- #: php:647 ../modules/mycred-module-settings.php:669
6272
  msgid "Meta Key"
6273
  msgstr "Clave Meta"
6274
 
6275
- #: ../modules/mycred-module-settings.php:666
6276
  msgid "Add New Type"
6277
  msgstr "Añadir Nuevo Clase"
6278
 
6279
- #: ../modules/mycred-module-settings.php:671
6280
  msgid "A unique ID for this type."
6281
  msgstr "Una ID exclusiva para este clase."
6282
 
6283
- #: ../modules/mycred-module-settings.php:676
6284
  msgid "Menu and page title."
6285
  msgstr "Título del Menú y de la Página\n"
6286
 
6287
- #: ../modules/mycred-module-settings.php:679
6288
  msgid ""
6289
  "The meta key must be lowercase and only contain letters or underscores. All "
6290
  "other characters will be deleted!"
6291
  msgstr ""
6292
 
6293
- #: ../modules/mycred-module-settings.php:700
6294
  msgid "Identify users by"
6295
  msgstr "Identifique usuarios por"
6296
 
6297
- #: ../modules/mycred-module-settings.php:706
 
 
 
 
6298
  msgid "User Email"
6299
  msgstr "Email de Usuario"
6300
 
6301
- #: ../modules/mycred-module-settings.php:707
6302
  msgid "User Login"
6303
  msgstr "Ingreso de Usuario"
6304
 
6305
- #: ../modules/mycred-module-settings.php:714
6306
  msgid ""
6307
  "Use ID if you intend to use this export as a backup of your current site "
6308
  "while Email is recommended if you want to export to a different site."
@@ -6310,11 +6318,11 @@ msgstr ""
6310
  "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
6311
  "Email si deseas exportar la data a otro sitio"
6312
 
6313
- #: ../modules/mycred-module-settings.php:717
6314
  msgid "Import Log Entry"
6315
  msgstr "Importa la entrada de registro"
6316
 
6317
- #: ../modules/mycred-module-settings.php:719
6318
  #, php-format
6319
  msgid ""
6320
  "Optional log entry to use if you intend to import this file in a different "
@@ -6418,54 +6426,54 @@ msgstr "bbPress"
6418
  msgid "Awards %_plural% for bbPress actions."
6419
  msgstr "Concede %_plural% por acciones en bbPress."
6420
 
6421
- #: ../plugins/mycred-hook-bbPress.php:407
6422
  #, php-format
6423
  msgid "%plural% for New Forum"
6424
  msgstr "%plural% por nuevo foro"
6425
 
6426
- #: ../plugins/mycred-hook-bbPress.php:424
6427
  #, php-format
6428
  msgid "%plural% for Forum Deletion"
6429
  msgstr "%plural% por Eliminar Foro"
6430
 
6431
- #: ../plugins/mycred-hook-bbPress.php:437 ../plugins/mycred-hook-simplepress.php:
6432
  #: 278
6433
  #, php-format
6434
  msgid "%plural% for New Topic"
6435
  msgstr "%plural% por Nuevo Tema"
6436
 
6437
- #: ../plugins/mycred-hook-bbPress.php:455
6438
  #, php-format
6439
  msgid "Forum authors can receive %_plural% for creating new topics."
6440
  msgstr "Autores "
6441
 
6442
- #: ../plugins/mycred-hook-bbPress.php:459 ../plugins/mycred-hook-simplepress.php:
6443
  #: 295
6444
  #, php-format
6445
  msgid "%plural% for Topic Deletion"
6446
  msgstr "%plural% por Borrar Tema"
6447
 
6448
- #: ../plugins/mycred-hook-bbPress.php:472
6449
  #, php-format
6450
  msgid "%plural% for Favorited Topic"
6451
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
6452
 
6453
- #: ../plugins/mycred-hook-bbPress.php:489
6454
  #, php-format
6455
  msgid "%plural% for New Reply"
6456
  msgstr "%plural% por Nueva Respuesta"
6457
 
6458
- #: ../plugins/mycred-hook-bbPress.php:507
6459
  #, php-format
6460
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
6461
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
6462
 
6463
- #: ../plugins/mycred-hook-bbPress.php:511
6464
  #, php-format
6465
  msgid "Show users %_plural% balance in replies"
6466
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
6467
 
6468
- #: ../plugins/mycred-hook-bbPress.php:515
6469
  #, php-format
6470
  msgid "%plural% for Reply Deletion"
6471
  msgstr "%plural% para Borrar Respuesta"
@@ -6820,7 +6828,7 @@ msgid "Comment Subscriptions"
6820
  msgstr "Suscripciónes a commentarios"
6821
 
6822
  #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6823
- #: php:63
6824
  msgid "Reward with %plural%"
6825
  msgstr "Premiar con %plural%"
6826
 
@@ -6866,11 +6874,11 @@ msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
6866
  msgid "%plural% for Topic Post Deletion"
6867
  msgstr "%plural% por Borrar la Tema del Post"
6868
 
6869
- #: ../plugins/mycred-hook-woocommerce.php:193
6870
  msgid "WooCommerce Product Reviews"
6871
  msgstr " Revisión del Producto WooCommerce\n"
6872
 
6873
- #: ../plugins/mycred-hook-woocommerce.php:194
6874
  #, php-format
6875
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6876
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Apr 08 2015 17:01:34 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
+ "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
+ "me>\n"
10
  "Language: Spanish (Spain)\n"
11
  "Plural-Forms: nplurals=2; plural=n != 1\n"
12
  "MIME-Version: 1.0\n"
31
 
32
  #: ../mycred.php:474
33
  msgid "%label% History"
34
+ msgstr "%label% Historial"
35
 
36
  #: ../mycred.php:567
37
  #, php-format
43
  msgstr "Gente genial"
44
 
45
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
46
+ #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
+ #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
111
  msgstr "Entrada de registro actualizado"
112
 
113
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
114
+ #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
  msgid "Setup"
117
  msgstr "Configurar"
118
 
119
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
120
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
121
+ #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
122
+ #: module-settings.php:22 ../modules/mycred-module-settings.php:23
123
  msgid "Settings"
124
  msgstr "Configuraciones"
125
 
131
  "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
132
  "archivo, por si acaso!"
133
 
 
 
 
 
134
  #: ../abstracts/mycred-abstract-hook.php:83
135
  msgid "This Hook has no settings"
136
  msgstr "Este gancho no ha sido configurado"
137
 
138
+ #: ../abstracts/mycred-abstract-hook.php:226 ../abstracts/mycred-abstract-hook.
139
+ #: php:293 ../includes/mycred-functions.php:2641 ../modules/mycred-module-hooks.
140
+ #: php:1809
141
  msgid "No limit"
142
  msgstr "Sin Limite"
143
 
144
+ #: ../abstracts/mycred-abstract-hook.php:227
145
  msgid "/ Day"
146
  msgstr ""
147
 
148
+ #: ../abstracts/mycred-abstract-hook.php:228
149
  msgid "/ Week"
150
  msgstr ""
151
 
152
+ #: ../abstracts/mycred-abstract-hook.php:229
153
  msgid "/ Month"
154
  msgstr ""
155
 
156
+ #: ../abstracts/mycred-abstract-hook.php:230
157
  msgid "in Total"
158
  msgstr ""
159
 
160
+ #: ../abstracts/mycred-abstract-hook.php:294
161
  msgid "Once every 24 hours"
162
  msgstr "Una vez cada 24 horas"
163
 
164
+ #: ../abstracts/mycred-abstract-hook.php:295
165
  msgid "Once every 7 days"
166
  msgstr "Una vez cada 7 dias"
167
 
168
+ #: ../abstracts/mycred-abstract-hook.php:296
169
  msgid "Once per day (reset at midnight)"
170
  msgstr "Una vez al dia (reinicializado al medianoche)"
171
 
172
+ #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
173
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
174
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
175
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
176
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
177
+ #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
178
+ #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992
179
  msgid "Select"
180
  msgstr "Seleccionar"
181
 
183
  msgid "myCRED_Module() Error. A Module ID is required!"
184
  msgstr "Error de myCRED_Module(). ¡Se requiere una ID de Modulo!"
185
 
186
+ #: ../abstracts/mycred-abstract-module.php:350 ../abstracts/mycred-abstract-
187
+ #: module.php:358
188
  msgid "Surprise"
189
  msgstr "Sorpresa"
190
 
191
+ #: ../abstracts/mycred-abstract-module.php:445 ../includes/mycred-network.php:83
192
  msgid "click to close"
193
  msgstr "haga clic para cerrar"
194
 
195
+ #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:84
196
  msgid "click to open"
197
  msgstr "haga clic para abrir"
198
 
199
+ #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
200
+ #: buy-creds.php:884
201
  msgid "Settings Updated"
202
  msgstr "Configuraciones Actualizadas"
203
 
204
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
205
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
206
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
207
+ #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
208
+ #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
209
+ #: badges.php:395
210
  msgid "Badges"
211
  msgstr "Insignias"
212
 
215
  msgid "Badges (%d)"
216
  msgstr ""
217
 
218
+ #: ../addons/badges/myCRED-addon-badges.php:260
219
  #, php-format
220
  msgid "%d Users earned this badge."
221
  msgstr "%d Usuarios que han ganado esta insignia."
222
 
223
+ #: ../addons/badges/myCRED-addon-badges.php:264
224
  msgid "No users has yet earned this badge."
225
  msgstr "Ningun usuario ha ganado esta insignia."
226
 
227
+ #: ../addons/badges/myCRED-addon-badges.php:287
228
+ msgid "No connections where removed."
229
+ msgstr ""
230
+
231
+ #: ../addons/badges/myCRED-addon-badges.php:289
232
  #, php-format
233
  msgid "%s connections where removed."
234
  msgstr "%s conexiones han sido quitados."
235
 
236
+ #: ../addons/badges/myCRED-addon-badges.php:384
237
  msgid "Badge"
238
  msgstr "Insignia"
239
 
240
+ #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
241
+ #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
242
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
243
+ #: addons/ranks/myCRED-addon-ranks.php:448
244
  msgid "Add New"
245
  msgstr "Añade Nuevo"
246
 
247
+ #: ../addons/badges/myCRED-addon-badges.php:386
248
  msgid "Add New Badge"
249
  msgstr "Añadir Nueva Insignia"
250
 
251
+ #: ../addons/badges/myCRED-addon-badges.php:387
252
  msgid "Edit Badge"
253
  msgstr "Editar Insignia"
254
 
255
+ #: ../addons/badges/myCRED-addon-badges.php:388
256
  msgid "New Badge"
257
  msgstr "Nueva Insignia"
258
 
259
+ #: ../addons/badges/myCRED-addon-badges.php:390
260
  msgid "View Badge"
261
  msgstr "Ver Insignia"
262
 
263
+ #: ../addons/badges/myCRED-addon-badges.php:391
264
  msgid "Search Badge"
265
  msgstr "Buscar Insignia"
266
 
267
+ #: ../addons/badges/myCRED-addon-badges.php:392
268
  msgid "No badges found"
269
  msgstr "Ninguna Insignia Encontrada"
270
 
271
+ #: ../addons/badges/myCRED-addon-badges.php:393
272
  msgid "No badges found in Trash"
273
  msgstr "Ninguna Insignia Encontrada en la Papelera"
274
 
275
+ #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
276
+ #: badges.php:541
277
  msgid "Badge Name"
278
  msgstr "Nombre de Insignia"
279
 
280
+ #: ../addons/badges/myCRED-addon-badges.php:440
281
  msgid "Badge Images"
282
  msgstr "Imagen de la Insignia"
283
 
284
+ #: ../addons/badges/myCRED-addon-badges.php:441
285
  msgid "Requirements"
286
  msgstr "Requisitos"
287
 
288
+ #: ../addons/badges/myCRED-addon-badges.php:442 ../addons/ranks/myCRED-addon-
289
+ #: ranks.php:1042 ../modules/mycred-module-settings.php:636
290
  msgid "Users"
291
  msgstr "Usuarios"
292
 
293
+ #: ../addons/badges/myCRED-addon-badges.php:481
294
  msgid "A user must have gained or lost:"
295
  msgstr "Un usuario deberia ganado o perdido:"
296
 
297
+ #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
298
+ #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
299
+ #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
300
+ #: badges.php:526
301
  msgid "Badge Updated."
302
  msgstr "Insignia Actualizada"
303
 
304
+ #: ../addons/badges/myCRED-addon-badges.php:522
305
  msgid "Badge Enabled"
306
  msgstr "Insignia Habilitado"
307
 
308
+ #: ../addons/badges/myCRED-addon-badges.php:523
309
  msgid "Badge Saved"
310
  msgstr "Insignia Guardada"
311
 
312
+ #: ../addons/badges/myCRED-addon-badges.php:555
313
  msgid "Badge Setup"
314
  msgstr ""
315
 
316
+ #: ../addons/badges/myCRED-addon-badges.php:582
317
  msgid "Assign Badge"
318
  msgstr "Asignar Insignia"
319
 
320
+ #: ../addons/badges/myCRED-addon-badges.php:583
321
  msgid "Remove Connections"
322
  msgstr "Quitar Conexiones"
323
 
324
+ #: ../addons/badges/myCRED-addon-badges.php:638
325
  msgid "Time(s)"
326
  msgstr "Tiempo(s)"
327
 
328
+ #: ../addons/badges/myCRED-addon-badges.php:639
329
  msgid "In total"
330
  msgstr "En Total"
331
 
332
+ #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
333
+ #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
334
+ #: addons/badges/myCRED-addon-badges.php:846
335
  msgid "Badge Image"
336
  msgstr "Imagen de la Insignia"
337
 
338
+ #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
339
+ #: badges.php:672
340
  msgid "Set badge image"
341
  msgstr "Configurar la imagen para la insignia"
342
 
343
+ #: ../addons/badges/myCRED-addon-badges.php:682
344
  msgid "Default Image"
345
  msgstr "Imagen Predefinida"
346
 
347
+ #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
348
+ #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
349
+ #: addons/badges/myCRED-addon-badges.php:831
350
  msgid "image url"
351
  msgstr "enlace de la imagen"
352
 
353
+ #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
354
+ #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
355
+ #: addons/badges/myCRED-addon-badges.php:831
356
  msgid "Add Image"
357
  msgstr ""
358
 
359
+ #: ../addons/badges/myCRED-addon-badges.php:685
360
  msgid "Optional image to show when a user has not yet earned this badge."
361
  msgstr ""
362
 
363
+ #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
364
+ #: badges.php:756
365
  #, php-format
366
  msgid "Level %d"
367
  msgstr ""
368
 
369
+ #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
370
+ #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
371
  msgid "for"
372
  msgstr ""
373
 
374
+ #: ../addons/badges/myCRED-addon-badges.php:740
375
  msgid "Main Image"
376
  msgstr "Imagen Principal"
377
 
378
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
379
+ #: badges.php:831
380
  msgid "Leave empty if you do not want to assign a custom image for this level."
381
  msgstr ""
382
 
383
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
384
+ #: badges.php:831
385
  msgid "Remove this level"
386
  msgstr ""
387
 
388
+ #: ../addons/badges/myCRED-addon-badges.php:788
389
  msgid "Add Level"
390
  msgstr ""
391
 
392
+ #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
393
+ #: badges.php:1154
394
  msgid "Level"
395
  msgstr ""
396
 
397
+ #: ../addons/badges/myCRED-addon-badges.php:848
398
  msgid "Use as Badge"
399
  msgstr "Utiliza como Insignia"
400
 
401
+ #: ../addons/badges/myCRED-addon-badges.php:970 ../addons/badges/myCRED-addon-
402
+ #: badges.php:1001 ../addons/gateway/carts/mycred-woocommerce.php:152 ..
403
+ #: modules/mycred-module-buddypress.php:417
404
  msgid "Do not show"
405
  msgstr "No Mostrar"
406
 
407
+ #: ../addons/badges/myCRED-addon-badges.php:971 ../modules/mycred-module-
408
+ #: buddypress.php:418
409
  msgid "Include in Profile Header"
410
  msgstr "Incluir en el Encabezado del Perfil"
411
 
412
+ #: ../addons/badges/myCRED-addon-badges.php:972 ../addons/ranks/myCRED-addon-
413
+ #: ranks.php:1407 ../modules/mycred-module-buddypress.php:419
414
  msgid "Include under the \"Profile\" tab"
415
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
416
 
417
+ #: ../addons/badges/myCRED-addon-badges.php:973 ../modules/mycred-module-
418
+ #: buddypress.php:420
419
  msgid "Include under the \"Profile\" tab and Profile Header"
420
  msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil"
421
 
422
+ #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
423
+ #: badges.php:1017
424
  msgid "Show all badges, including badges users have not yet earned."
425
  msgstr ""
426
 
427
+ #: ../addons/badges/myCRED-addon-badges.php:1002 ../addons/ranks/myCRED-addon-
428
+ #: ranks.php:1452
429
  msgid "Include in Profile"
430
  msgstr "Incluir en el Perfil"
431
 
432
+ #: ../addons/badges/myCRED-addon-badges.php:1003
433
  msgid "Include in Forum Replies"
434
  msgstr "Incluir en Respuesta de Fórum"
435
 
436
+ #: ../addons/badges/myCRED-addon-badges.php:1004
437
  msgid "Include in Profile and Forum Replies"
438
  msgstr "Incluir en Perfil y Respuestas de Fórum"
439
 
440
+ #: ../addons/badges/myCRED-addon-badges.php:1111
441
  msgid "User Badges"
442
  msgstr ""
443
 
444
+ #: ../addons/badges/myCRED-addon-badges.php:1116
445
  msgid ""
446
  "Here you can view the badges this user has earned and if needed, manually "
447
  "give or take away a badge from a user."
448
  msgstr ""
449
 
450
+ #: ../addons/badges/myCRED-addon-badges.php:1125
451
  msgid "Not earned"
452
  msgstr ""
453
 
454
+ #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
455
+ #: badges.php:1168
456
  msgid "Earned"
457
  msgstr ""
458
 
459
+ #: ../addons/badges/myCRED-addon-badges.php:1143
460
  msgid "No image"
461
  msgstr ""
462
 
463
+ #: ../addons/badges/myCRED-addon-badges.php:1150
464
  msgid "Select a level"
465
  msgstr ""
466
 
467
+ #: ../addons/badges/myCRED-addon-badges.php:1165 ../addons/email-notices/myCRED-
468
+ #: addon-email-notices.php:810
469
  msgid "Status"
470
  msgstr "Estatus"
471
 
472
+ #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
473
+ #: addon-email-notices.php:1293
474
  msgid "Save Changes"
475
  msgstr "Guardar Cambios"
476
 
477
+ #: ../addons/badges/includes/mycred-badge-functions.php:68
478
  #, php-format
479
  msgid "Level %s"
480
  msgstr ""
481
 
482
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
483
  #, php-format
484
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
485
  msgid "%s for %s %s - %s"
486
  msgstr ""
487
 
488
+ #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
489
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
490
  #: coupons.php:469
491
  #, php-format
494
  msgstr[0] ""
495
  msgstr[1] ""
496
 
497
+ #: ../addons/badges/includes/mycred-badge-functions.php:73
498
  #, php-format
499
  msgctxt "\"x points\" for \"reference\" in total"
500
  msgid "%s for %s in total"
541
  msgstr "Configurar pago en masa &_singular% para tus usuarios."
542
 
543
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
544
+ #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
545
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
546
+ #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
547
+ #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
548
+ #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
549
  msgid "Access Denied"
550
  msgstr "Acceso Denegado"
551
 
567
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
568
 
569
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
570
+ #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
571
  msgid "Enable"
572
  msgstr "Habilitar"
573
 
574
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
575
+ #: php:240
576
  msgid "Update Changes"
577
  msgstr "Actualizar Cambios"
578
 
693
  #. can also be "Plantilla de Bitácora"
694
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
695
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
696
+ #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
697
+ #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
698
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
699
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
700
+ #: addons/gateway/carts/mycred-woocommerce.php:104 ..
701
+ #: addons/gateway/carts/mycred-woocommerce.php:176 ..
702
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
703
+ #: hooks.php:1004 ../modules/mycred-module-hooks.php:2025 ../modules/mycred-
704
+ #: module-hooks.php:2395 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-
705
+ #: hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-
706
+ #: hook-events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.
707
+ #: php:209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
708
+ #: gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:321 ..
709
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
710
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
711
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
752
  msgstr "Este papel de usuario esta excluido de recibir interés sobre este saldo."
753
 
754
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
755
+ #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
756
  #: content.php:114
757
  msgid "Leave empty to use the default value."
758
  msgstr "Dejar vacio si va a utilizar el valor predefinido."
765
  msgid "Exclude from receiving interest"
766
  msgstr "Excluir de recibir interés"
767
 
768
+ #: ../addons/banking/services/mycred-bank-service-interest.php:673
769
  msgid "Compound interest rate saved."
770
  msgstr "Tipo de interés compuesto guardado."
771
 
772
+ #: ../addons/banking/services/mycred-bank-service-interest.php:675
773
  msgid "User excluded from receiving interest."
774
  msgstr "Usuario excluido la concesión de interés."
775
 
776
+ #: ../addons/banking/services/mycred-bank-service-interest.php:677
777
  msgid "User included in receiving interest."
778
  msgstr "Usuario permitido la concesión de interés."
779
 
782
  msgstr "%_plural% diarios"
783
 
784
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
785
+ #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
786
+ #: modules/mycred-module-log.php:277
787
  msgid "History"
788
  msgstr "Historial"
789
 
800
  msgstr "Pagar a los Usuarios"
801
 
802
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
803
+ #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
804
+ #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
805
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
806
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
807
+ #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
808
  #: plugins/mycred-hook-affiliatewp.php:256
809
  msgid "Amount"
810
  msgstr "Cantidad"
811
 
812
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
813
+ #: modules/mycred-module-hooks.php:2410
814
  msgid "Interval"
815
  msgstr "Interval"
816
 
837
  "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
838
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
839
 
840
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
841
+ #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
842
  msgid "Payment Gateways"
843
  msgstr "Pasarela de Pago"
844
 
845
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
846
  msgctxt "Post Type General Name"
847
  msgid "Pending Payments"
848
  msgstr "Pagos Pendientes"
849
 
850
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
851
  msgctxt "Post Type Singular Name"
852
  msgid "Pending Payment"
853
  msgstr "Pago Pendiente"
854
 
855
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
856
+ #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
857
  msgid "Pending Payments"
858
  msgstr "Pagos Pendientes"
859
 
860
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
861
  msgid "Edit Pending Payment"
862
  msgstr "Editar Pago Pendiente"
863
 
864
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
865
+ #: addon-buy-creds.php:1699
866
  msgid "No pending payments found"
867
  msgstr "Ningun pago pendiente encontrado"
868
 
869
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
870
  msgid "Not found in Trash"
871
  msgstr "No ha sido encontrado en la Papelera"
872
 
873
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
874
+ #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
875
  msgid "Transaction ID"
876
  msgstr "Identificación de la Transacción"
877
 
878
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
879
+ #: addon-buy-creds.php:1025
880
  msgid "Buyer"
881
  msgstr "Comprador"
882
 
883
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
884
+ #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
885
  #: gateway.php:594
886
  msgid "Cost"
887
  msgstr "Coste"
888
 
889
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
890
+ #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
891
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
892
  msgid "Gateway"
893
  msgstr "Pasarela"
894
 
895
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
896
  msgid "Type"
897
  msgstr "Clase"
898
 
899
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
900
  msgid "Pay Out"
901
  msgstr "Desembolso"
902
 
903
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
904
  msgid "buyCRED Purchase Log"
905
  msgstr "compraCRED Registro de Compras"
906
 
907
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
908
+ #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
909
  msgid "Purchase Log"
910
  msgstr "Registro de Compras"
911
 
912
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
913
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
914
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
915
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
916
  msgid "Payments"
917
  msgstr "Pagos"
918
 
919
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
920
  msgid "Please login to purchase %_plural%"
921
  msgstr "Identifícate antes de comprar %_plural%"
922
 
923
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
924
  #, php-format
925
  msgid "Gift purchase from %display_name%."
926
  msgstr "Regalo comprado de parte de %display_name%."
927
 
928
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
929
+ #: addon-ranks.php:1084
930
  msgid "Minimum %plural%"
931
  msgstr "Minimo %_plural%"
932
 
933
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
934
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
935
  msgstr ""
936
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
937
  "a 1."
938
 
939
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
940
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
941
+ #: module-settings.php:656
942
  msgid "Point Types"
943
  msgstr "Clase de Puntos"
944
 
945
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
946
  msgid "Select the point types that users can buy. You must select at least one!"
947
  msgstr ""
948
  "Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
949
  "uno!"
950
 
951
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
952
  msgid "Login Template"
953
  msgstr "Plantilla de Ingreso"
954
 
955
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
956
  msgid "Content to show when a user is not logged in."
957
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
958
 
959
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
960
  msgid "Thank You Page"
961
  msgstr "Página de Agradecimiento"
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
964
+ #: addon-buy-creds.php:668
965
  msgid "Custom URL"
966
  msgstr "URL Personalizada"
967
 
968
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
969
+ #: addon-buy-creds.php:673
970
  msgid "Page"
971
  msgstr "Página"
972
 
973
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
974
  msgid "Cancellation Page"
975
  msgstr "Página de Cancelación"
976
 
977
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
978
  msgid "Show seperate log for %_plural% purchases."
979
  msgstr "Mostrar registro distinto para compras de %_plural%."
980
 
981
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
982
  msgid "Gifting"
983
  msgstr "Regalar"
984
 
985
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
986
  #, php-format
987
  msgid "Allow users to buy %_plural% for other users."
988
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
989
 
990
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
991
  #, php-format
992
  msgid "Allow users to buy %_plural% for content authors."
993
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
996
+ #: hooks.php:3110
997
  msgid "Available Shortcodes"
998
  msgstr "Códigos cortos Disponibles"
999
 
1000
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
1001
  #, php-format
1002
  msgid "%s Exchange Rate"
1003
  msgstr "Tipo de Cambio %s"
1004
 
1005
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
1006
  msgid "Save Exchange Rates"
1007
  msgstr "Guardar Tipo de Cambio"
1008
 
1009
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
1010
  msgid "Exchange rate override saved"
1011
  msgstr "Anulación de de tipo de cambio guardado"
1012
 
1013
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
1014
  msgid "Payment completed"
1015
  msgstr "Pago finalizado"
1016
 
1017
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1018
  #, php-format
1019
  msgid "%s Payment Gateways"
1020
  msgstr "%s Pasarelas de Pago"
1021
 
1022
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1023
+ #: addon-buy-creds.php:1034
1024
  msgid "buyCRED Settings"
1025
  msgstr "Configuraciones de compraCRED"
1026
 
1027
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1028
  msgid "Test Mode"
1029
  msgstr "Modo de Prueba"
1030
 
1031
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1032
  msgid "Enabled"
1033
  msgstr "Habilitado"
1034
 
1035
  #. also, "Inhabilitar"
1036
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1037
  msgid "Disabled"
1038
  msgstr "Desactivado"
1039
 
1040
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1041
  msgid "Sandbox Mode"
1042
  msgstr "Modo Entorno Aislado"
1043
 
1044
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1045
  msgid "Enable for test purchases."
1046
  msgstr "Habilitar para compras de prueba."
1047
 
1048
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1049
+ #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1050
  msgid "Update Settings"
1051
  msgstr "Actualizar Configuraciones"
1052
 
1053
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1054
  msgid "More Gateways"
1055
  msgstr "Mas Pasarelas"
1056
 
1057
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1058
+ #: 666
1059
  msgid "Date"
1060
  msgstr "Fecha"
1061
 
1062
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1063
  msgid "Payed"
1064
  msgstr "Pagado"
1065
 
1066
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1067
  msgid "<strong>buy</strong>CRED Purchase Log"
1068
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
1069
 
1070
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1071
  #: booking/mycred-eventespresso3.php:367
1072
  msgid "Gateway Settings"
1073
  msgstr "Configuraciones de la Pasarela de Pago"
1074
 
1075
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1076
  #: content/myCRED-addon-sell-content.php:1209
1077
  msgid "No purchases found"
1078
  msgstr "No se encontro ninguna compra"
1079
 
1080
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1081
+ #: addon-buy-creds.php:1411
1082
  msgid "This Add-on needs to setup before you can use this shortcode."
1083
  msgstr ""
1084
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
1085
  "corto (shortcode)."
1086
 
1087
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1088
+ #: addon-buy-creds.php:1430
1089
  msgid "No gateways installed."
1090
  msgstr "Ningun pasarela de pago instalado."
1091
 
1092
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1093
+ #: addon-buy-creds.php:1431
1094
  msgid "Gateway does not exist."
1095
  msgstr "Puerta de enlace no existe."
1096
 
1097
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1098
  msgid "Yourself"
1099
  msgstr "Tu mismo"
1100
 
1101
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1102
  msgid "No active gateways found."
1103
  msgstr "No se encuentra ningun puerta de enlace activo."
1104
 
1105
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1106
  msgid "The selected gateway is not active."
1107
  msgstr "La puerta de enlace seleccionada no esta activo."
1108
 
1109
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1110
  #, php-format
1111
  msgid "Buy with %gateway%"
1112
  msgstr "Compra con %gateway%"
1113
 
1114
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1115
  #: content/myCRED-addon-sell-content.php:44
1116
  msgid "Buy Now"
1117
  msgstr "Compra Ahora"
1118
 
1119
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1120
  msgid "No users found"
1121
  msgstr "Ningun Usuario Encontrado"
1122
 
1123
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1124
  msgid "To"
1125
  msgstr "A"
1126
 
1127
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1128
  msgid "Select Amount"
1129
  msgstr "Selecciona la Cantidad"
1130
 
1131
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1132
  msgid "min."
1133
  msgstr "min."
1134
 
1135
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1136
  msgid "Select Gateway"
1137
  msgstr "Selecciona la Pasarela de Pago"
1138
 
1139
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1140
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1141
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1142
  #: php:35
1143
  msgid "Pay Now"
1144
  msgstr "Pagar Ahora"
1145
 
1146
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1147
+ #: php:536
1148
  msgid "Cancel"
1149
  msgstr "Cancelar"
1150
 
1151
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1152
+ #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1153
+ #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1154
  msgid "Actions"
1155
  msgstr "Acciones"
1156
 
1288
  msgstr "Continuar a %s"
1289
 
1290
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1291
+ #: addons/buy-creds/gateways/bitpay.php:233
1292
  msgid "Click here if you are not automatically redirected"
1293
  msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
1294
 
1348
  msgid "December"
1349
  msgstr "Diciembre"
1350
 
1351
+ #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
1352
+ #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
1353
+ #: php:145 ../addons/buy-creds/gateways/skrill.php:124
 
 
 
 
 
 
1354
  #, php-format
1355
  msgid "Price mismatch. Expected: %s Received: %s"
1356
  msgstr "Desajuste de precio. Esperaba: %s Recibido: %s"
1357
 
1358
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
1359
+ #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
1360
  #, php-format
1361
  msgid "Currency mismatch. Expected: %s Received: %s"
1362
  msgstr "Desajuste de moneda. Esperaba: %s Recibido: %s"
1363
 
1364
+ #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
1365
+ #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
1366
+ #: php:157 ../addons/buy-creds/gateways/skrill.php:136
1367
  #, php-format
1368
  msgid "Payment not completed. Received: %s"
1369
  msgstr "Pago no cumplido. Recibido: %s"
1370
 
1371
+ #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
1372
+ #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/paypal-standard.
1373
+ #: php:168 ../addons/buy-creds/gateways/skrill.php:147 ../addons/buy-
1374
+ #: creds/gateways/zombaio.php:185
1375
  msgid "Failed to credit users account."
1376
  msgstr "No se pudo creditar la cuenta del usuario."
1377
 
1378
+ #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
1379
+ #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/paypal-standard.
1380
+ #: php:208 ../addons/buy-creds/gateways/skrill.php:187 ../addons/buy-
1381
+ #: creds/gateways/zombaio.php:214
1382
  msgid "Please setup this gateway before attempting to make a purchase!"
1383
  msgstr ""
1384
  "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
1385
  "compra!"
1386
 
1387
+ #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
1388
+ #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
1389
+ #: ./addons/buy-creds/gateways/paypal-standard.php:268 ../addons/buy-
1390
+ #: creds/gateways/skrill.php:281 ../addons/buy-creds/gateways/zombaio.php:247
1391
  msgid "Processing payment &hellip;"
1392
  msgstr "Procesando el pago &hellip;"
1393
 
1394
+ #: ../addons/buy-creds/gateways/bitpay.php:219
1395
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1396
  msgstr ""
1397
  "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
1398
  "el administrador del sitio!"
1399
 
1400
+ #: ../addons/buy-creds/gateways/bitpay.php:220
1401
  msgid "Bitpay returned the following error message:"
1402
  msgstr "Bitpay comunico este mensaje de error:"
1403
 
1404
+ #: ../addons/buy-creds/gateways/bitpay.php:253 ../includes/mycred-remote.php:551
1405
  msgid "API Key"
1406
  msgstr "Clave de la API"
1407
 
1408
+ #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1409
+ #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
1410
+ #: 300
1411
  msgid "Currency"
1412
  msgstr "Moneda"
1413
 
1414
+ #: ../addons/buy-creds/gateways/bitpay.php:262
1415
  msgid "Currency Code"
1416
  msgstr "Código de Moneda"
1417
 
1418
+ #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1419
+ #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
1420
+ #: php:298 ../addons/buy-creds/gateways/skrill.php:319
1421
  msgid "Item Name"
1422
  msgstr "Nombre de Artículo"
1423
 
1424
+ #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
1425
+ #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
1426
+ #: php:302 ../addons/buy-creds/gateways/skrill.php:323
1427
  msgid "Description of the item being purchased by the user."
1428
  msgstr "Descripción del artículo que el usuario esta comprando."
1429
 
1430
+ #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
1431
+ #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
1432
+ #: php:305 ../addons/buy-creds/gateways/skrill.php:326
1433
  msgid "Exchange Rates"
1434
  msgstr "Tipo de Cambio"
1435
 
1436
+ #: ../addons/buy-creds/gateways/bitpay.php:277
1437
  msgid "Transaction Speed"
1438
  msgstr "Velocidad de la Transacción"
1439
 
1440
+ #: ../addons/buy-creds/gateways/bitpay.php:284
1441
  msgid "High"
1442
  msgstr "Alto"
1443
 
1444
+ #: ../addons/buy-creds/gateways/bitpay.php:285
1445
  msgid "Medium"
1446
  msgstr "Medio"
1447
 
1448
+ #: ../addons/buy-creds/gateways/bitpay.php:286
1449
  msgid "Low"
1450
  msgstr "Bajo"
1451
 
1452
+ #: ../addons/buy-creds/gateways/bitpay.php:299
1453
  msgid "Full Notifications"
1454
  msgstr "Notificaciones Completas"
1455
 
1456
+ #: ../addons/buy-creds/gateways/bitpay.php:306 ../includes/mycred-network.php:161
1457
  #: ../includes/mycred-network.php:175
1458
  msgid "No"
1459
  msgstr "No"
1460
 
1461
+ #: ../addons/buy-creds/gateways/bitpay.php:307 ../includes/mycred-network.php:157
1462
  #: ../includes/mycred-network.php:171
1463
  msgid "Yes"
1464
  msgstr "Sí"
1465
 
1466
+ #: ../addons/buy-creds/gateways/netbilling.php:216
1467
  msgid "Account ID"
1468
  msgstr "ID de la Cuenta"
1469
 
1470
+ #: ../addons/buy-creds/gateways/netbilling.php:222
1471
  msgid "Site Tag"
1472
  msgstr "Etiqueta (tag) del Sitio"
1473
 
1474
+ #: ../addons/buy-creds/gateways/netbilling.php:228
1475
  msgid "Order Integrity Key"
1476
  msgstr "Clave de Integridad del Pedido"
1477
 
1478
+ #: ../addons/buy-creds/gateways/netbilling.php:232
1479
  msgid "Found under Step 12 on the Fraud Defense page."
1480
  msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
1481
 
1482
+ #: ../addons/buy-creds/gateways/netbilling.php:246
1483
  msgid "Postback CGI URL"
1484
  msgstr "Devolución de la URL CGI"
1485
 
1486
+ #: ../addons/buy-creds/gateways/netbilling.php:250
1487
  msgid ""
1488
  "For this gateway to work, you must login to your NETbilling account and edit "
1489
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1494
  "Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a la "
1495
  "dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
1496
 
1497
+ #: ../addons/buy-creds/gateways/netbilling.php:298
1498
  msgid "Incorrect Credit Card number"
1499
  msgstr "Número de Tarjeta de Crédito Incorrecta"
1500
 
1501
+ #: ../addons/buy-creds/gateways/netbilling.php:304
1502
  msgid "The credit card entered is past its expiration date."
1503
  msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
1504
 
1505
+ #: ../addons/buy-creds/gateways/netbilling.php:307
1506
  msgid "The CVV2 number entered is not valid."
1507
  msgstr "El numero CVV2 teclado no es valido."
1508
 
1509
+ #: ../addons/buy-creds/gateways/netbilling.php:314
1510
  msgid "The bank routing number entered is not valid."
1511
  msgstr "El número de ruta bancaria introducido no es valido."
1512
 
1513
+ #: ../addons/buy-creds/gateways/netbilling.php:318
1514
  msgid "The bank account number entered is not valid."
1515
  msgstr "La cuenta bancaria introducida no es valida."
1516
 
1517
+ #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
1518
+ #: creds/gateways/skrill.php:171
1519
  msgid "Success"
1520
  msgstr "Exito"
1521
 
1522
+ #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
1523
+ #: creds/gateways/skrill.php:172
1524
  msgid "Thank you for your purchase"
1525
  msgstr "Gracias por su compra"
1526
 
1527
+ #: ../addons/buy-creds/gateways/paypal-standard.php:263
1528
+ #, php-format
1529
+ msgctxt "Return label. %s = Website name"
1530
+ msgid "Return to %s"
1531
+ msgstr ""
1532
 
1533
+ #: ../addons/buy-creds/gateways/paypal-standard.php:292
1534
  msgid "Account Email"
1535
  msgstr "Cuenta de Correo Electrónico"
1536
 
1537
+ #: ../addons/buy-creds/gateways/skrill.php:228
1538
+ msgid "Return to "
1539
+ msgstr "Volver a"
1540
+
1541
+ #: ../addons/buy-creds/gateways/skrill.php:264
1542
  msgid "Product:"
1543
  msgstr "Producto:"
1544
 
1545
+ #: ../addons/buy-creds/gateways/skrill.php:273
1546
  msgid "Gift to:"
1547
  msgstr "Regalar a:"
1548
 
1549
+ #: ../addons/buy-creds/gateways/skrill.php:274
1550
  msgid "(author)"
1551
  msgstr "(autor)"
1552
 
1553
+ #: ../addons/buy-creds/gateways/skrill.php:307
1554
  msgid "Merchant Account Email"
1555
  msgstr "Correo electrónico de la Cuenta Comerciante"
1556
 
1557
+ #: ../addons/buy-creds/gateways/skrill.php:313
1558
  msgid "Secret Word"
1559
  msgstr "Palabra Secreta"
1560
 
1561
+ #: ../addons/buy-creds/gateways/skrill.php:330
1562
  msgid "Confirmation Email"
1563
  msgstr "Correo electrónico de confirmación"
1564
 
1565
+ #: ../addons/buy-creds/gateways/skrill.php:333
1566
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1567
  msgstr ""
1568
  "Pide a Skrill que me mande un email de confirmación para cada compra "
1569
  "finalizada con éxito."
1570
 
1571
+ #: ../addons/buy-creds/gateways/skrill.php:336
1572
  msgid "Checkout Page"
1573
  msgstr "Página de Pago"
1574
 
1575
+ #: ../addons/buy-creds/gateways/skrill.php:339 ../addons/gateway/carts/mycred-
1576
+ #: woocommerce.php:92 ../addons/ranks/myCRED-addon-ranks.php:1318 ..
1577
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1578
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1579
+ #: php:592 ../modules/mycred-module-hooks.php:3073
1580
  msgid "Title"
1581
  msgstr "Titulo"
1582
 
1583
+ #: ../addons/buy-creds/gateways/skrill.php:341
1584
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1585
  msgstr ""
1586
  "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
1587
  "título en la Página de Pagos Skrill. "
1588
 
1589
+ #: ../addons/buy-creds/gateways/skrill.php:344 ../addons/buy-
1590
+ #: creds/gateways/zombaio.php:283
1591
  msgid "Logo URL"
1592
  msgstr "URL del Logotipo"
1593
 
1594
+ #: ../addons/buy-creds/gateways/skrill.php:346
1595
  msgid ""
1596
  "The URL to the image you want to use on the top of the gateway. For best "
1597
  "integration results we recommend you use logos with dimensions up to 200px "
1601
  "Para obtener la mejor integración recomendamos que uses logotipos con "
1602
  "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
1603
 
1604
+ #: ../addons/buy-creds/gateways/skrill.php:349
1605
  msgid "Confirmation Note"
1606
  msgstr "Nota de Confirmación"
1607
 
1608
+ #: ../addons/buy-creds/gateways/skrill.php:351
1609
  msgid ""
1610
  "Optional text to show user once a transaction has been successfully "
1611
  "completed. This text is shown by Skrill."
1613
  "Texto opcional a mostrar al usuario cuando la transacción haya sido "
1614
  "completado con éxito. Este texto sera mostrado por Skrill."
1615
 
1616
+ #: ../addons/buy-creds/gateways/zombaio.php:154
1617
  #, php-format
1618
  msgid "Duplicate transaction. Received: %s"
1619
  msgstr "Transacción duplicado. Recibido: %s"
1620
 
1621
+ #: ../addons/buy-creds/gateways/zombaio.php:160
1622
  #, php-format
1623
  msgid "Live transaction while debug mode is enabled! Received: %s"
1624
  msgstr "Depuración de transacciones en vivo esta habilitado! Recibido: %s"
1625
 
1626
+ #: ../addons/buy-creds/gateways/zombaio.php:265
1627
  msgid "Site ID"
1628
  msgstr "ID del Sitio de web"
1629
 
1630
  #. or "Contraseña de GW" not clear based on lack of context
1631
+ #: ../addons/buy-creds/gateways/zombaio.php:271
1632
  msgid "GW Password"
1633
  msgstr "Contraseña GW"
1634
 
1635
+ #: ../addons/buy-creds/gateways/zombaio.php:277
1636
  msgid "Pricing ID"
1637
  msgstr "ID de Precios"
1638
 
1639
+ #: ../addons/buy-creds/gateways/zombaio.php:289
1640
  msgid "IP Verification"
1641
  msgstr "Verificación de IP"
1642
 
1643
+ #: ../addons/buy-creds/gateways/zombaio.php:292
1644
  msgid "Do not verify that callbacks are coming from Zombaio."
1645
  msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
1646
 
1647
+ #: ../addons/buy-creds/gateways/zombaio.php:295
1648
  msgid "Language"
1649
  msgstr "Lengua"
1650
 
1651
+ #: ../addons/buy-creds/gateways/zombaio.php:302
1652
  msgid "Postback URL (ZScript)"
1653
  msgstr "Devolución de la URL (ZScript)"
1654
 
1655
+ #: ../addons/buy-creds/gateways/zombaio.php:306
1656
  msgid ""
1657
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1658
  "address and click validate."
1743
  msgstr ""
1744
 
1745
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1746
+ #: transfer.php:259 ../modules/mycred-module-hooks.php:1714 ../modules/mycred-
1747
+ #: module-hooks.php:2032
1748
  msgid "Limits"
1749
  msgstr "imites"
1750
 
1753
  msgstr "Expire"
1754
 
1755
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1756
+ #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:814 ..
1757
+ #: addons/email-notices/myCRED-addon-email-notices.php:1031 ..
1758
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1759
+ #: addons/gateway/carts/mycred-woocommerce.php:120 ..
1760
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1761
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1762
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1763
+ #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1764
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1765
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1766
  #: includes/importers/mycred-cubepoints.php:365
1767
  msgid "Point Type"
1773
  msgstr "todavia no utilizado"
1774
 
1775
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1776
+ #: 395 ../modules/mycred-module-hooks.php:2507
1777
  msgid "Total"
1778
  msgstr "Total"
1779
 
1935
  msgid "Message to show when a coupon was successfully deposited to a users account."
1936
  msgstr "Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
1937
 
 
 
 
 
1938
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1939
  msgid "Apply Coupon"
1940
  msgstr "Aplica el Cupón"
1941
 
1942
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1943
+ #: notices/myCRED-addon-email-notices.php:1267
1944
  msgid "Email Notice"
1945
  msgstr "Aviso por Correo Electrónico"
1946
 
2147
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
2148
 
2149
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2150
+ #: notices/myCRED-addon-email-notices.php:900
2151
  msgid "Email Settings"
2152
  msgstr "Configuraciones de Correo Electrónico"
2153
 
2154
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2155
+ #: notices/myCRED-addon-email-notices.php:1053
2156
  msgid "Senders Name:"
2157
  msgstr "Nombre del Remitente"
2158
 
2159
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2160
+ #: notices/myCRED-addon-email-notices.php:1055
2161
  msgid "Senders Email:"
2162
  msgstr "Correo Electrónico del Remitente:"
2163
 
2181
  msgid "Ignored if HTML is not allowed in emails."
2182
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
2183
 
2184
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:719
2185
  #, php-format
2186
  msgctxt "Badge Title - Level 1,2,3.."
2187
  msgid "%s - Level %d"
2188
  msgstr ""
2189
 
2190
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
2191
+ #: notices/myCRED-addon-email-notices.php:949
2192
  msgid "Email Subject"
2193
  msgstr "Asunto del Correo Electrónico"
2194
 
2195
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2196
  msgid "Not Active"
2197
  msgstr "No esta Activo"
2198
 
2199
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:838
2200
  #, php-format
2201
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2202
  msgstr "Programada:<br /><strong>%1$s</strong>"
2203
 
2204
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:843
2205
  msgid "Active"
2206
  msgstr "Activo"
2207
 
2208
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:845
2209
  #, php-format
2210
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2211
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
2212
 
2213
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:855
2214
  msgid "Email is sent when"
2215
  msgstr "el Correo Electrónico se envia cuando"
2216
 
2217
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:857
2218
  msgid "Missing instance for this notice!"
2219
  msgstr "¡Falta una instancia para este aviso!"
2220
 
2221
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2222
+ #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
2223
+ #: addon-email-notices.php:870
2224
  msgid "Sent To"
2225
  msgstr "Enviado A:"
2226
 
2227
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2228
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2229
+ #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2230
  msgid "User"
2231
  msgstr "Usuario"
2232
 
2233
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
2234
+ #: notices/myCRED-addon-email-notices.php:1020
2235
  msgid "Administrator"
2236
  msgstr "Administrador"
2237
 
2238
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2239
  msgid "Both Administrator and User"
2240
  msgstr "Tanto Administrador como Usuario"
2241
 
2242
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
2243
+ #: notices/myCRED-addon-email-notices.php:1037
2244
  msgid "All types"
2245
  msgstr ""
2246
 
2247
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2248
  msgid "Available Template Tags"
2249
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
2250
 
2251
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:920
2252
  msgid "Email Header"
2253
  msgstr "Encabezado del Correo Electrónico"
2254
 
2255
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:986
2256
  msgid "Send this email notice when..."
2257
  msgstr "Envia este aviso por correo electrónico cuando..."
2258
 
2259
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
2260
  msgid "Recipient:"
2261
  msgstr "Destinatario:"
2262
 
2263
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2264
  msgid "Both"
2265
  msgstr "Ambos"
2266
 
2267
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1025 ..
2268
+ #: addons/gateway/carts/mycred-woocommerce.php:160 ../modules/mycred-module-
2269
+ #: settings.php:674 ../modules/mycred-module-settings.php:695 ../modules/mycred-
2270
+ #: module-settings.php:720
2271
  msgid "Label"
2272
  msgstr "Etiqueta"
2273
 
2274
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
2275
  msgid "Reply-To Email:"
2276
  msgstr "Responder-A Correo Electrónico:"
2277
 
2278
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
2279
  msgid "Save"
2280
  msgstr "Guardar"
2281
 
2282
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
2283
  msgid "CSS Styling"
2284
  msgstr "Estilo CSS"
2285
 
2286
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2287
  msgid "Site Related"
2288
  msgstr "Relacionado al Sitio"
2289
 
2290
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2291
  msgid "Your websites title"
2292
  msgstr "Titulo de tu pagina web"
2293
 
2294
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2295
  msgid "Your websites address"
2296
  msgstr "Dirección de tu pagina web"
2297
 
2298
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
2299
  msgid "Your websites tagline (description)"
2300
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2301
 
2302
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
2303
  msgid "Your websites admin email"
2304
  msgstr "El correo electrónico de admin para tu pagina web"
2305
 
2306
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
2307
  msgid "Total number of blog members"
2308
  msgstr "Número total de miembros del blog"
2309
 
2310
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2311
  msgid "The users new balance"
2312
  msgstr ""
2313
 
2314
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
2315
  msgid "The users old balance"
2316
  msgstr ""
2317
 
2318
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
2319
  msgid "The amount of points gained or lost in this instance"
2320
  msgstr ""
2321
 
2322
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2323
  msgid "The log entry"
2324
  msgstr ""
2325
 
2326
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
2327
+ #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
2328
+ #: addon-email-notices.php:1187
2329
  msgid "Email Notice Updated."
2330
  msgstr "Aviso atraves de correo electrónico Actualizado."
2331
 
2332
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
2333
  msgid "Email Notice Activated"
2334
  msgstr "Notificación atraves de Correo Electrónico Activado"
2335
 
2336
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
2337
  msgid "Email Notice Saved"
2338
  msgstr "Aviso por Correo Electrónico Guardado"
2339
 
2340
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
2341
  msgid ""
2342
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2343
  "are not yet ready to use this email notice!"
2345
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2346
  "si aun no estás listo para utilizar este aviso por email!"
2347
 
2348
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
2349
  #, php-format
2350
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2351
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2352
 
2353
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
2354
  msgid "This email notice is active."
2355
  msgstr "Esta notificación de correo electrónico esta activada."
2356
 
2357
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
2358
  msgid "Settings saved."
2359
  msgstr "Configuraciones Guardadas"
2360
 
2361
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2362
  msgid "Unsubscribe"
2363
  msgstr "Cancelar la Suscripción"
2364
 
2365
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2366
  msgid "There are no email notifications yet."
2367
  msgstr "Todavía no hay notificaciones de email."
2368
 
2410
  msgstr "Pagado"
2411
 
2412
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2413
+ #: addons/gateway/carts/mycred-woocommerce.php:30 ../includes/mycred-network.php:
2414
  #: 50 ../includes/mycred-network.php:51
2415
  msgid "myCRED"
2416
  msgstr "myCRED"
2441
  msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balance_f%"
2442
 
2443
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2444
+ #: addons/gateway/carts/mycred-woocommerce.php:263
2445
  msgid "Insufficient funds."
2446
  msgstr "Fondos Insuficientes."
2447
 
2481
  msgstr "URL del Logotipo de la Pasarela de Pago"
2482
 
2483
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2484
+ #: addons/gateway/carts/mycred-woocommerce.php:136
2485
  #, php-format
2486
  msgid "How much is 1 %_singular% worth in %currency%?"
2487
  msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
2488
 
2489
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2490
+ #: addons/gateway/carts/mycred-woocommerce.php:141 ..
2491
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2492
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2493
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2494
+ #: php:578 ../includes/mycred-shortcodes.php:977
2495
  msgid "Exchange Rate"
2496
  msgstr "Tipo de Cambio"
2497
 
2498
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2499
+ #: addons/gateway/carts/mycred-woocommerce.php:169 ..
2500
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2501
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2502
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
2509
  msgstr "Porcentaje"
2510
 
2511
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2512
+ #: addons/gateway/carts/mycred-woocommerce.php:171 ..
2513
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2514
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2515
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
2583
  "pedido: ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. "
2584
  "No se permite el uso de HTML."
2585
 
2586
+ #: ../addons/gateway/carts/mycred-woocommerce.php:31
2587
  msgid "Let users pay using their myCRED balance."
2588
  msgstr "Permite que los usuarios paguen mediante su saldo myCRED."
2589
 
2590
+ #: ../addons/gateway/carts/mycred-woocommerce.php:85
2591
  msgid "Enable/Disable"
2592
  msgstr "Activar/Desactivar"
2593
 
2594
+ #: ../addons/gateway/carts/mycred-woocommerce.php:87
2595
  msgid "Enable myCRED Payment"
2596
  msgstr "Activar Pago myCRED"
2597
 
2598
+ #: ../addons/gateway/carts/mycred-woocommerce.php:89
2599
  msgid ""
2600
  "Users who are not logged in or excluded from using myCRED will not have "
2601
  "access to this gateway!"
2603
  "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
2604
  "myCRED no tendran acceso a esta pasarela de pago!"
2605
 
2606
+ #: ../addons/gateway/carts/mycred-woocommerce.php:94
2607
  msgid "Title to show for this payment option."
2608
  msgstr "Mostrar este titulo para esta opción de pago."
2609
 
2610
+ #: ../addons/gateway/carts/mycred-woocommerce.php:95
2611
  msgid "Pay with myCRED"
2612
  msgstr "Paga con myCRED"
2613
 
2614
  #. not sure if it is "message to customers" or "message from customers"? current translation is "message to customers"
2615
+ #: ../addons/gateway/carts/mycred-woocommerce.php:99
2616
  msgid "Customer Message"
2617
  msgstr "Mensaje a los Clientes"
2618
 
2619
+ #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
2620
+ #: addons/gateway/carts/mycred-woocommerce.php:182
2621
  msgid "Refund Log Template"
2622
  msgstr "Plantilla de Registro de Reembolsos"
2623
 
2624
+ #: ../addons/gateway/carts/mycred-woocommerce.php:122
2625
  msgid "Select the point type users can use to pay."
2626
  msgstr "Elige el clase de punto que los usuarios pueden utilizar para realizar pagos."
2627
 
2628
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148
2629
  msgid "Show Total"
2630
  msgstr "Mostrar Total"
2631
 
2632
+ #: ../addons/gateway/carts/mycred-woocommerce.php:150
2633
  msgid "Show the final price in %_plural% ."
2634
  msgstr "Mostrar el precio final en %_plural%."
2635
 
2636
+ #: ../addons/gateway/carts/mycred-woocommerce.php:153
2637
  msgid "Show in Cart"
2638
  msgstr "Mostrar en Carrito"
2639
 
2640
+ #: ../addons/gateway/carts/mycred-woocommerce.php:154
2641
  msgid "Show on Checkout Page"
2642
  msgstr "Mostrar en la página de pago"
2643
 
2644
+ #: ../addons/gateway/carts/mycred-woocommerce.php:155
2645
  msgid "Show in Cart and on Checkout Page"
2646
  msgstr "Mostrar en el Carrito y en la página de pago"
2647
 
2648
+ #: ../addons/gateway/carts/mycred-woocommerce.php:162
2649
  msgid "Order Total in %_plural%"
2650
  msgstr "Total del Pedido en %_plural%"
2651
 
2652
+ #: ../addons/gateway/carts/mycred-woocommerce.php:178
2653
  msgid "Log entry template for profit sharing."
2654
  msgstr "Plantilla para entradas de registro para el reparto de ganancias."
2655
 
2656
+ #: ../addons/gateway/carts/mycred-woocommerce.php:184
2657
  msgid "Log entry template for refunds of profit shares."
2658
  msgstr "Plantilla de entrada de registro para reembolsos de reparto de ganancias."
2659
 
2660
+ #: ../addons/gateway/carts/mycred-woocommerce.php:214
2661
  msgid "myCRED Payment"
2662
  msgstr "Pago myCRED"
2663
 
2664
+ #: ../addons/gateway/carts/mycred-woocommerce.php:215
2665
  #, php-format
2666
  msgid ""
2667
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2672
  "ten en cuenta que los usuarios con fondos insuficientes y los usuarios que "
2673
  "no han iniciado sesión no verán esta pasarela de pago en la página de pago."
2674
 
2675
+ #: ../addons/gateway/carts/mycred-woocommerce.php:240
2676
  msgid "You must be logged in to pay with %_plural%"
2677
  msgstr "Debes haber iniciado sesión para pagar con %_plural%"
2678
 
2679
+ #: ../addons/gateway/carts/mycred-woocommerce.php:246
2680
  msgid "You can not use this gateway. Please try a different payment option."
2681
  msgstr ""
2682
  "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
2683
  "diferente."
2684
 
2685
+ #: ../addons/gateway/carts/mycred-woocommerce.php:360
2686
+ #, php-format
2687
+ msgctxt "%s = Point amount formatted"
2688
+ msgid "Refunded %s"
2689
+ msgstr ""
2690
+
2691
+ #: ../addons/gateway/carts/mycred-woocommerce.php:408
2692
  msgid "Your account has successfully been charged."
2693
  msgstr "Su cuenta ha sido cambiado con éxito."
2694
 
2695
+ #: ../addons/gateway/carts/mycred-woocommerce.php:741 ..
2696
  #: addons/gateway/carts/mycred-wpecommerce.php:131
2697
  msgid "Your current balance"
2698
  msgstr "Tu saldo actual"
2837
  msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
2838
 
2839
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2840
+ #: modules/mycred-module-log.php:23 ../modules/mycred-module-log.php:24
2841
  msgid "Log"
2842
  msgstr "Registro"
2843
 
2937
  msgstr "Rechazar"
2938
 
2939
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2940
+ #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2941
+ #: modules/mycred-module-settings.php:699
2942
  msgid "Delete"
2943
  msgstr "Borrar"
2944
 
3073
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
3074
 
3075
  #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
3076
+ #: addons/ranks/myCRED-addon-ranks.php:1427 ../addons/ranks/myCRED-addon-ranks.
3077
+ #: php:1472 ../modules/mycred-module-buddypress.php:464
3078
  msgid "Template"
3079
  msgstr "Plantilla"
3080
 
3111
  "to user. Use zero to disable."
3112
  msgstr ""
3113
 
3114
+ #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
3115
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
3116
+ #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
3117
+ #: addons/ranks/myCRED-addon-ranks.php:833 ../addons/ranks/myCRED-addon-ranks.
3118
+ #: php:1310 ../addons/ranks/myCRED-addon-ranks.php:1601
3119
  msgid "Ranks"
3120
  msgstr "Rangos"
3121
 
3122
+ #: ../addons/ranks/myCRED-addon-ranks.php:424
3123
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3124
  msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
3125
 
3126
+ #: ../addons/ranks/myCRED-addon-ranks.php:425
3127
  msgid "Are you sure you want to re-assign user ranks?"
3128
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
3129
 
3130
+ #: ../addons/ranks/myCRED-addon-ranks.php:441
3131
  #, php-format
3132
  msgid "Ranks for %s"
3133
  msgstr ""
3134
 
3135
+ #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
3136
+ #: php:833
3137
  msgid "Rank"
3138
  msgstr "Rango"
3139
 
3140
+ #: ../addons/ranks/myCRED-addon-ranks.php:449
3141
  msgid "Add New Rank"
3142
  msgstr "Añadir Nuevo Rango"
3143
 
3144
+ #: ../addons/ranks/myCRED-addon-ranks.php:450
3145
  msgid "Edit Rank"
3146
  msgstr "Editar Rango"
3147
 
3148
+ #: ../addons/ranks/myCRED-addon-ranks.php:451
3149
  msgid "New Rank"
3150
  msgstr "Nuevo Rango"
3151
 
3152
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
3153
  msgid "View Rank"
3154
  msgstr "Ver Rango"
3155
 
3156
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
3157
  msgid "Search Ranks"
3158
  msgstr "Búsqueda de Rangos"
3159
 
3160
+ #: ../addons/ranks/myCRED-addon-ranks.php:455
3161
  msgid "No ranks found"
3162
  msgstr "Ningun rango encontrado"
3163
 
3164
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
3165
  msgid "No ranks found in Trash"
3166
  msgstr "Ningun rango encontrao el la papelera"
3167
 
3168
+ #: ../addons/ranks/myCRED-addon-ranks.php:540
3169
  #, php-format
3170
  msgid "Completed - Total of %d users effected"
3171
  msgstr "Completado - Un total %d usuarios afectados"
3172
 
3173
+ #: ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-addon-ranks.
3174
+ #: php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ../addons/ranks/myCRED-
3175
+ #: addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.php:981 ..
3176
+ #: addons/ranks/myCRED-addon-ranks.php:982 ../addons/ranks/myCRED-addon-ranks.
3177
+ #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986
3178
  msgid "Rank Updated."
3179
  msgstr "Rango Actualizado."
3180
 
3181
+ #: ../addons/ranks/myCRED-addon-ranks.php:983
3182
  msgid "Rank Enabled"
3183
  msgstr "Rango Habilitado"
3184
 
3185
+ #: ../addons/ranks/myCRED-addon-ranks.php:984
3186
  msgid "Rank Saved"
3187
  msgstr "Rango Guardado"
3188
 
3189
+ #: ../addons/ranks/myCRED-addon-ranks.php:1023
3190
  #, php-format
3191
  msgid "<strong>Rank:</strong> %s"
3192
  msgstr ""
3193
 
3194
+ #: ../addons/ranks/myCRED-addon-ranks.php:1039 ../addons/ranks/myCRED-addon-ranks.
3195
+ #: php:1122
3196
  msgid "Rank Title"
3197
  msgstr "Titulo de Rango"
3198
 
3199
+ #: ../addons/ranks/myCRED-addon-ranks.php:1040
3200
  msgid "Logo"
3201
  msgstr "Logotipo"
3202
 
3203
+ #: ../addons/ranks/myCRED-addon-ranks.php:1041
3204
  msgid "Requirement"
3205
  msgstr "Requisito"
3206
 
3207
+ #: ../addons/ranks/myCRED-addon-ranks.php:1067
3208
  msgid "No Logo Set"
3209
  msgstr "No hay Logotipo Configurado"
3210
 
3211
+ #: ../addons/ranks/myCRED-addon-ranks.php:1082 ../addons/ranks/myCRED-addon-ranks.
3212
+ #: php:1087
3213
  msgid "Any Value"
3214
  msgstr "Cualquier Valor"
3215
 
3216
+ #: ../addons/ranks/myCRED-addon-ranks.php:1089
3217
  msgid "Maximum %plural%"
3218
  msgstr "Maximo %plural%"
3219
 
3220
+ #: ../addons/ranks/myCRED-addon-ranks.php:1137
3221
  msgid "Rank Settings"
3222
  msgstr "Configuración de Rango"
3223
 
3224
+ #: ../addons/ranks/myCRED-addon-ranks.php:1191
3225
  msgid "Minimum %plural% to reach this rank"
3226
  msgstr "Minimo %plural% para llegar a este rango"
3227
 
3228
+ #: ../addons/ranks/myCRED-addon-ranks.php:1195
3229
  msgid "Maximum %plural% to be included in this rank"
3230
  msgstr "Maximo %plural% para ser incluido en este rango"
3231
 
3232
+ #: ../addons/ranks/myCRED-addon-ranks.php:1213
3233
  msgid "All Published Ranks"
3234
  msgstr "Todos los Rangos Publicados"
3235
 
3236
+ #: ../addons/ranks/myCRED-addon-ranks.php:1223 ../addons/ranks/myCRED-addon-ranks.
3237
+ #: php:1225
3238
  msgid "Not Set"
3239
  msgstr "No Configurado"
3240
 
3241
+ #: ../addons/ranks/myCRED-addon-ranks.php:1231
3242
  msgid "No Ranks found"
3243
  msgstr "Ningun rango encontrado"
3244
 
3245
+ #: ../addons/ranks/myCRED-addon-ranks.php:1315
3246
  msgid "Rank Features"
3247
  msgstr "Caracteristicas de los Rangos"
3248
 
3249
+ #: ../addons/ranks/myCRED-addon-ranks.php:1319
3250
  msgid "%plural% requirement"
3251
  msgstr "%plural% requisito"
3252
 
3253
+ #: ../addons/ranks/myCRED-addon-ranks.php:1320
3254
  msgid "Featured Image (Logo)"
3255
  msgstr "Imagen Principal (Logotipo)"
3256
 
3257
+ #: ../addons/ranks/myCRED-addon-ranks.php:1322
3258
  msgid "Content"
3259
  msgstr "Contenido"
3260
 
3261
+ #: ../addons/ranks/myCRED-addon-ranks.php:1324
3262
  msgid "Excerpt"
3263
  msgstr "Extracto"
3264
 
3265
+ #: ../addons/ranks/myCRED-addon-ranks.php:1326
3266
  msgid "Comments"
3267
  msgstr "Comentario"
3268
 
3269
+ #: ../addons/ranks/myCRED-addon-ranks.php:1328
3270
  msgid "Page Attributes"
3271
  msgstr "Atributos de Página"
3272
 
3273
+ #: ../addons/ranks/myCRED-addon-ranks.php:1330
3274
  msgid "Custom Fields"
3275
  msgstr "Campo Personalizado"
3276
 
3277
+ #: ../addons/ranks/myCRED-addon-ranks.php:1334
3278
  msgid "Public"
3279
  msgstr "Público"
3280
 
3281
  #. This is not clear, especially the second sentence (fragment)!
3282
+ #: ../addons/ranks/myCRED-addon-ranks.php:1338
3283
  msgid ""
3284
  "If you want to create a template archive for each rank, you must select to "
3285
  "have ranks public. Defaults to disabled."
3287
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
3288
  "los rangos sean público. Los valores predeterminados desactivado."
3289
 
3290
+ #: ../addons/ranks/myCRED-addon-ranks.php:1341
3291
  msgid "Archive URL"
3292
  msgstr "URL del Archivo"
3293
 
3294
+ #: ../addons/ranks/myCRED-addon-ranks.php:1345
3295
  msgid "Ignored if Ranks are not public"
3296
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
3297
 
3298
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
3299
+ #: ../addons/ranks/myCRED-addon-ranks.php:1348
3300
  msgid "Display Order"
3301
  msgstr "Orden de Visualización"
3302
 
3303
+ #: ../addons/ranks/myCRED-addon-ranks.php:1356
3304
  msgid "Ascending - Lowest rank to highest"
3305
  msgstr "Ascendente - Rango más bajo a lo más alto"
3306
 
3307
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
3308
  msgid "Descending - Highest rank to lowest"
3309
  msgstr "Descendiente - Rango más alto al más bajo"
3310
 
3311
+ #: ../addons/ranks/myCRED-addon-ranks.php:1368
3312
  msgid ""
3313
  "Select in what order ranks should be displayed in your admin area and/or "
3314
  "front if ranks are \"Public\""
3316
  "Elige en que orden se debe mostrar los rangos en tu area de administrador "
3317
  "y/o en el frente si los rangos son \"Público\""
3318
 
3319
+ #: ../addons/ranks/myCRED-addon-ranks.php:1374
3320
  msgid "Rank Basis"
3321
  msgstr "Base de Rango"
3322
 
3323
+ #: ../addons/ranks/myCRED-addon-ranks.php:1377
3324
  msgid "Users are ranked according to their current balance."
3325
  msgstr "Los usuarios se clasifican según su saldo actual."
3326
 
3327
+ #: ../addons/ranks/myCRED-addon-ranks.php:1380
3328
  msgid ""
3329
  "Users are ranked according to the total amount of %_plural% they have "
3330
  "accumulated."
3332
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
3333
  "acumulado."
3334
 
3335
+ #: ../addons/ranks/myCRED-addon-ranks.php:1384 ../addons/ranks/myCRED-addon-ranks.
3336
+ #: php:1389
3337
  msgid "Calculate Totals"
3338
  msgstr "Calcular Totales"
3339
 
3340
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3341
  msgid ""
3342
  "Use this button to calculate or recalculate your users totals. If not used, "
3343
  "the users current balance will be used as a starting point."
3344
  msgstr ""
3345
 
3346
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3347
  msgid ""
3348
  "Once a users total has been calculated, they will be assigned to their "
3349
  "appropriate roles. For this reason, it is highly recommended that you first "
3353
  "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
3354
  "que primero configures los rangos!"
3355
 
3356
+ #: ../addons/ranks/myCRED-addon-ranks.php:1388
3357
  msgid ""
3358
  "Depending on your log size and number of users this process may take a while."
3359
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3364
  "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
3365
  "completado!"
3366
 
3367
+ #: ../addons/ranks/myCRED-addon-ranks.php:1405 ../addons/ranks/myCRED-addon-ranks.
3368
+ #: php:1450 ../modules/mycred-module-buddypress.php:424
3369
  msgid "Do not show."
3370
  msgstr "No mostrar."
3371
 
3372
+ #: ../addons/ranks/myCRED-addon-ranks.php:1406
3373
  msgid "Include in Profile Header."
3374
  msgstr "Incluir en Encabezado del Perfil"
3375
 
3376
+ #: ../addons/ranks/myCRED-addon-ranks.php:1408
3377
  msgid "Include under the \"Profile\" tab and Profile Header."
3378
  msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil."
3379
 
3380
+ #: ../addons/ranks/myCRED-addon-ranks.php:1412
3381
  msgid "Rank in BuddyPress"
3382
  msgstr "Rango en BuddyPress"
3383
 
3384
+ #: ../addons/ranks/myCRED-addon-ranks.php:1429 ../addons/ranks/myCRED-addon-ranks.
3385
+ #: php:1474
3386
  #, php-format
3387
  msgid ""
3388
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3389
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3390
  msgstr ""
3391
 
3392
+ #: ../addons/ranks/myCRED-addon-ranks.php:1451
3393
  msgid "Include in Topic Replies"
3394
  msgstr ""
3395
 
3396
+ #: ../addons/ranks/myCRED-addon-ranks.php:1453
3397
  msgid "Include in Topic Replies and Profile"
3398
  msgstr ""
3399
 
3400
+ #: ../addons/ranks/myCRED-addon-ranks.php:1457
3401
  msgid "Rank in bbPress"
3402
  msgstr ""
3403
 
3404
+ #: ../addons/ranks/myCRED-addon-ranks.php:1536
3405
  msgid "Script Communication Error"
3406
  msgstr "Error del Script de Comunicación"
3407
 
3408
+ #: ../addons/ranks/myCRED-addon-ranks.php:1604 ../modules/mycred-module-settings.
3409
+ #: php:632
3410
  msgid "User Meta Key"
3411
  msgstr "Clave Meta del Usuario"
3412
 
3413
+ #: ../addons/ranks/myCRED-addon-ranks.php:1608
3414
  msgid "No. of ranks"
3415
  msgstr "Numero de Rangos"
3416
 
3417
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3418
  msgid "Remove All Ranks"
3419
  msgstr "Quitar todos los Rangos"
3420
 
3421
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3422
  msgid "Assign Ranks to Users"
3423
  msgstr "Asignar Rango a los Usuarios"
3424
 
3624
  msgstr "Ver Registro"
3625
 
3626
  #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3627
+ #: modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27 ..
3628
+ #: modules/mycred-module-hooks.php:28
3629
  msgid "Hooks"
3630
  msgstr "Ganchos"
3631
 
3663
  msgstr ""
3664
 
3665
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3666
+ #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3667
  msgid "Today"
3668
  msgstr "Hoy"
3669
 
3670
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3671
+ #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3672
  msgid "This Week"
3673
  msgstr "Esta Semana"
3674
 
3675
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3676
+ #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3677
  msgid "This Month"
3678
  msgstr "Este Mes"
3679
 
3740
  msgstr "Has excedido tu limite de transferencia de %limit%."
3741
 
3742
  #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3743
+ #: php:2454
3744
  msgid "Transfer"
3745
  msgstr "Transferir"
3746
 
3779
  "transferencias hasta que se haga esto."
3780
 
3781
  #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3782
+ #: php:2582
3783
  msgid "Insufficient Funds. Please try a lower amount."
3784
  msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
3785
 
3937
  msgid "recipients %s"
3938
  msgstr "destinatarios %s"
3939
 
3940
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3941
  msgid "To:"
3942
  msgstr "A:"
3943
 
3944
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
3945
  msgid "Amount:"
3946
  msgstr "Cantidad:"
3947
 
4142
  msgid "Available Template Tags:"
4143
  msgstr "Etiquetas de Plantilla Disponibles:"
4144
 
4145
+ #: ../includes/mycred-functions.php:1694
4146
  msgid "Entire Log"
4147
  msgstr "Todo el Registro"
4148
 
4149
+ #: ../includes/mycred-functions.php:1699 ../includes/mycred-functions.php:1700
4150
  msgid "Displayed Rows"
4151
  msgstr "Filas Mostradas"
4152
 
4153
+ #: ../includes/mycred-functions.php:1707
4154
  msgid "Search Results"
4155
  msgstr "Resultados de la Búsqueda"
4156
 
4157
+ #: ../includes/mycred-functions.php:1708
4158
  msgid "My Entire Log"
4159
  msgstr "Mi Registro Entero"
4160
 
4161
+ #: ../includes/mycred-functions.php:1875
4162
  msgid "ref empty"
4163
  msgstr "ref vacío"
4164
 
4165
+ #: ../includes/mycred-functions.php:1883
4166
  msgid "incorrect user id format"
4167
  msgstr "Formato incorrecto para id del usuario"
4168
 
4169
+ #: ../includes/mycred-functions.php:1896
4170
  msgid "incorrect unix timestamp (from):"
4171
  msgstr "erroneo marca de tiempo de unix (desde):"
4172
 
4173
+ #: ../includes/mycred-functions.php:1905
4174
  msgid "incorrect unix timestamp (to):"
4175
  msgstr "erroneo marca de tiempo de unix (a):"
4176
 
4177
+ #: ../includes/mycred-functions.php:2314
4178
  msgid "Website Registration"
4179
  msgstr "Inscripción del Sitio Web"
4180
 
4181
+ #: ../includes/mycred-functions.php:2315
4182
  msgid "Website Visit"
4183
  msgstr "Visita de Sitio Web"
4184
 
4185
+ #: ../includes/mycred-functions.php:2316
4186
  msgid "Viewing Content (Member)"
4187
  msgstr "Viendo Contenido (Miembro)"
4188
 
4189
+ #: ../includes/mycred-functions.php:2317
4190
  msgid "Viewing Content (Author)"
4191
  msgstr "Viendo Contenido (Autor)"
4192
 
4193
+ #: ../includes/mycred-functions.php:2318
4194
  msgid "Logging in"
4195
  msgstr "Accediendo"
4196
 
4197
+ #: ../includes/mycred-functions.php:2319
4198
  msgid "Publishing Content"
4199
  msgstr "Publicando Contenido"
4200
 
4201
+ #: ../includes/mycred-functions.php:2320 ../modules/mycred-module-hooks.php:1663
4202
  msgid "Approved Comment"
4203
  msgstr "Comentario Aprobado"
4204
 
4205
+ #: ../includes/mycred-functions.php:2321
4206
  msgid "Unapproved Comment"
4207
  msgstr "Comentario no Aprobado"
4208
 
4209
+ #: ../includes/mycred-functions.php:2322
4210
  msgid "SPAM Comment"
4211
  msgstr "Comentario SPAM"
4212
 
4213
+ #: ../includes/mycred-functions.php:2323
4214
  msgid "Deleted Comment"
4215
  msgstr "Comentario Borrado"
4216
 
4217
+ #: ../includes/mycred-functions.php:2324
4218
  msgid "Link Click"
4219
  msgstr "Click al Enlace"
4220
 
4221
+ #: ../includes/mycred-functions.php:2325
4222
  msgid "Watching Video"
4223
  msgstr "Mirando Video"
4224
 
4225
+ #: ../includes/mycred-functions.php:2326
4226
  msgid "Visitor Referral"
4227
  msgstr "Referencia de Visitante"
4228
 
4229
+ #: ../includes/mycred-functions.php:2327
4230
  msgid "Signup Referral"
4231
  msgstr "Referencia de Inscripción "
4232
 
4233
+ #: ../includes/mycred-functions.php:2331
4234
  msgid "New Profile Update"
4235
  msgstr "Nuevo Perfil Actualizado"
4236
 
4237
+ #: ../includes/mycred-functions.php:2332
4238
  msgid "Profile Update Removal"
4239
  msgstr ""
4240
 
4241
+ #: ../includes/mycred-functions.php:2333
4242
  msgid "Avatar Upload"
4243
  msgstr "Subir Avatar"
4244
 
4245
+ #: ../includes/mycred-functions.php:2334
4246
  msgid "New Friendship"
4247
  msgstr "Nueva Amistad"
4248
 
4249
+ #: ../includes/mycred-functions.php:2335
4250
  msgid "Ended Friendship"
4251
  msgstr "Amistad Terminada"
4252
 
4253
+ #: ../includes/mycred-functions.php:2336
4254
  msgid "New Profile Comment"
4255
  msgstr "Nuevo Comentario de Perfil"
4256
 
4257
+ #: ../includes/mycred-functions.php:2337
4258
  msgid "Profile Comment Deletion"
4259
  msgstr "Borrar Comentario del Perfil"
4260
 
4261
+ #: ../includes/mycred-functions.php:2338
4262
  msgid "New Message"
4263
  msgstr "Nuevo Mensaje"
4264
 
4265
+ #: ../includes/mycred-functions.php:2339
4266
  msgid "Sending Gift"
4267
  msgstr "Mandando Regalo"
4268
 
4269
+ #: ../includes/mycred-functions.php:2340
4270
  msgid "New Group"
4271
  msgstr "Nuevo Grupo"
4272
 
4273
+ #: ../includes/mycred-functions.php:2341
4274
  msgid "Deleted Group"
4275
  msgstr "Grupo Borrado"
4276
 
4277
+ #: ../includes/mycred-functions.php:2342
4278
  msgid "New Group Forum Topic"
4279
  msgstr "Nuevo Tema del Fórum de Grupo"
4280
 
4281
+ #: ../includes/mycred-functions.php:2343
4282
  msgid "Edit Group Forum Topic"
4283
  msgstr "Editar el Tema del Fórum de Grupo"
4284
 
4285
+ #: ../includes/mycred-functions.php:2344
4286
  msgid "New Group Forum Post"
4287
  msgstr "Nueva Entrada del Fórum de Grupo"
4288
 
4289
+ #: ../includes/mycred-functions.php:2345
4290
  msgid "Edit Group Forum Post"
4291
  msgstr "Editar Entrada del Fórum de Grupo"
4292
 
4293
+ #: ../includes/mycred-functions.php:2346
4294
  msgid "Joining Group"
4295
  msgstr "Agregar al Grupo"
4296
 
4297
+ #: ../includes/mycred-functions.php:2347
4298
  msgid "Leaving Group"
4299
  msgstr "Dejando el Grupo"
4300
 
4301
+ #: ../includes/mycred-functions.php:2348
4302
  msgid "New Group Avatar"
4303
  msgstr "Nuevo Avatar del Grupo"
4304
 
4305
+ #: ../includes/mycred-functions.php:2349
4306
  msgid "New Group Comment"
4307
  msgstr "Nuevo Comentario al Grupo\n"
4308
 
4309
+ #: ../includes/mycred-functions.php:2353 ../plugins/mycred-hook-buddypress-media.
4310
  #: php:205
4311
  msgid "Photo Upload"
4312
  msgstr "Subir Foto"
4313
 
4314
+ #: ../includes/mycred-functions.php:2354 ../plugins/mycred-hook-buddypress-media.
4315
  #: php:219
4316
  msgid "Video Upload"
4317
  msgstr "Subir Video"
4318
 
4319
+ #: ../includes/mycred-functions.php:2355 ../plugins/mycred-hook-buddypress-media.
4320
  #: php:233
4321
  msgid "Music Upload"
4322
  msgstr "Subir Música"
4323
 
4324
+ #: ../includes/mycred-functions.php:2359
4325
  msgid "New Link"
4326
  msgstr "Nuevo Enlace"
4327
 
4328
+ #: ../includes/mycred-functions.php:2360
4329
  msgid "Link Voting"
4330
  msgstr "Votar sobre Enlace"
4331
 
4332
+ #: ../includes/mycred-functions.php:2361
4333
  msgid "Link Update"
4334
  msgstr "Enlace Actualizado"
4335
 
4336
+ #: ../includes/mycred-functions.php:2365
4337
  msgid "New Forum (bbPress)"
4338
  msgstr "Nuevo Fórum (bbPress)"
4339
 
4340
+ #: ../includes/mycred-functions.php:2366
4341
  msgid "New Forum Topic (bbPress)"
4342
  msgstr "Nuevo Tema de Fórum (bbPress)"
4343
 
4344
+ #: ../includes/mycred-functions.php:2367
4345
  msgid "Favorited Topic (bbPress)"
4346
  msgstr "Tema Favorito (bbPress)"
4347
 
4348
+ #: ../includes/mycred-functions.php:2368
4349
  msgid "New Topic Reply (bbPress)"
4350
  msgstr "Nueva Respuesta a Tema (bbPress)"
4351
 
4352
+ #: ../includes/mycred-functions.php:2372
4353
  msgid "Form Submission (Contact Form 7)"
4354
  msgstr "Sumisión de Formulario (Contact Form 7)"
4355
 
4356
+ #: ../includes/mycred-functions.php:2375
4357
  msgid "Form Submission (Gravity Form)"
4358
  msgstr "Sumisión de Formulario (Gravity Form)"
4359
 
4360
+ #: ../includes/mycred-functions.php:2378
4361
  msgid "New Forum Topic (SimplePress)"
4362
  msgstr "Nuevo Tema de Fórum (SimplePress)"
4363
 
4364
+ #: ../includes/mycred-functions.php:2379
4365
  msgid "New Forum Post (SimplePress)"
4366
  msgstr "Nueva Entrada de Fórum (SimplePress)"
4367
 
4368
+ #: ../includes/mycred-functions.php:2388
4369
  msgid "Affiliate Signup (AffiliateWP)"
4370
  msgstr ""
4371
 
4372
+ #: ../includes/mycred-functions.php:2389
4373
  msgid "Referred Visit (AffiliateWP)"
4374
  msgstr ""
4375
 
4376
+ #: ../includes/mycred-functions.php:2390
4377
  msgid "Affiliate Referral (AffiliateWP)"
4378
  msgstr ""
4379
 
4380
+ #: ../includes/mycred-functions.php:2391
4381
  msgid "Referral Refund (AffiliateWP)"
4382
  msgstr ""
4383
 
4384
+ #: ../includes/mycred-functions.php:2395 ../plugins/mycred-hook-wp-postratings.
4385
  #: php:150
4386
  msgid "Adding a Rating"
4387
  msgstr ""
4388
 
4389
+ #: ../includes/mycred-functions.php:2396 ../plugins/mycred-hook-wp-postratings.
4390
  #: php:169
4391
  msgid "Receiving a Rating"
4392
  msgstr ""
4393
 
4394
+ #: ../includes/mycred-functions.php:2400
4395
  msgid "Poll Voting"
4396
  msgstr "Votación"
4397
 
4398
+ #: ../includes/mycred-functions.php:2403
4399
  msgid "Sending an Invite"
4400
  msgstr "Mandando una Invitación"
4401
 
4402
+ #: ../includes/mycred-functions.php:2404
4403
  msgid "Accepting an Invite"
4404
  msgstr "Aceptando una Invitación"
4405
 
4406
+ #: ../includes/mycred-functions.php:2410
4407
  msgid "Banking Payout"
4408
  msgstr "Desembolso Bancario"
4409
 
4410
+ #: ../includes/mycred-functions.php:2413
4411
  msgid "buyCRED Purchase (PayPal Standard)"
4412
  msgstr "Compra buyCRED (PayPal Standard)"
4413
 
4414
+ #: ../includes/mycred-functions.php:2414
4415
  msgid "buyCRED Purchase (Skrill)"
4416
  msgstr "Compra buyCRED (Skrill)"
4417
 
4418
+ #: ../includes/mycred-functions.php:2415
4419
  msgid "buyCRED Purchase (Zombaio)"
4420
  msgstr "Compra buyCRED (Zombaio)"
4421
 
4422
+ #: ../includes/mycred-functions.php:2416
4423
  msgid "buyCRED Purchase (NETBilling)"
4424
  msgstr "Compra buyCRED (NETBilling)"
4425
 
4426
+ #: ../includes/mycred-functions.php:2417
4427
  msgid "buyCRED Purchase (BitPay)"
4428
  msgstr "Compra buyCRED (BitPay)"
4429
 
4430
+ #: ../includes/mycred-functions.php:2422
4431
  msgid "Coupon Purchase"
4432
  msgstr "Compra Cupón"
4433
 
4434
+ #: ../includes/mycred-functions.php:2426
4435
  msgid "Store Purchase (WooCommerce)"
4436
  msgstr "Compra de Tienda (WooCommerce)"
4437
 
4438
+ #: ../includes/mycred-functions.php:2427
4439
  msgid "Store Reward (WooCommerce)"
4440
  msgstr ""
4441
 
4442
+ #: ../includes/mycred-functions.php:2428
4443
  msgid "Product Review (WooCommerce)"
4444
  msgstr ""
4445
 
4446
+ #: ../includes/mycred-functions.php:2431
4447
  msgid "Store Purchase (MarketPress)"
4448
  msgstr "Compra de Tienda (MarketPress)"
4449
 
4450
+ #: ../includes/mycred-functions.php:2432
4451
  msgid "Store Reward (MarketPress)"
4452
  msgstr ""
4453
 
4454
+ #: ../includes/mycred-functions.php:2435
4455
  msgid "Store Purchase (WP E-Commerce)"
4456
  msgstr "Compra de Tienda (WP E-Commerce)"
4457
 
4458
+ #: ../includes/mycred-functions.php:2441
4459
  msgid "Event Payment (Event Espresso)"
4460
  msgstr "Pago por Evento (Event Espresso)"
4461
 
4462
+ #: ../includes/mycred-functions.php:2442
4463
  msgid "Event Sale (Event Espresso)"
4464
  msgstr "Venta de Evento (Event Espresso)"
4465
 
4466
+ #: ../includes/mycred-functions.php:2446
4467
  msgid "Event Payment (Events Manager)"
4468
  msgstr "Pago por Evento (Events Manager)"
4469
 
4470
+ #: ../includes/mycred-functions.php:2447
4471
  msgid "Event Sale (Events Manager)"
4472
  msgstr "Venta de Evento (Events Manager)"
4473
 
4474
+ #: ../includes/mycred-functions.php:2451
4475
  msgid "Content Purchase / Sale"
4476
  msgstr "Compra / Venta de Contenido"
4477
 
4478
+ #: ../includes/mycred-functions.php:2458
4479
  msgid "Manual Adjustment by Admin"
4480
  msgstr "Ajuste Manual por Admin"
4481
 
4482
+ #: ../includes/mycred-functions.php:2528 ../includes/mycred-shortcodes.php:925
4483
  msgid "Point types not found."
4484
  msgstr "Clase de puntos no encontrado."
4485
 
4486
+ #: ../includes/mycred-functions.php:2540 ../includes/mycred-functions.php:2560 ..
4487
+ #: includes/mycred-shortcodes.php:931 ../includes/mycred-shortcodes.php:939
4488
  #, php-format
4489
  msgid "You are excluded from using %s."
4490
  msgstr "Esta exluido del uso de %s."
4491
 
4492
+ #: ../includes/mycred-functions.php:2550 ../includes/mycred-shortcodes.php:935
4493
  msgid "Your balance is too low to use this feature."
4494
  msgstr "Tu saldo esta demasiado bajo para usar esta característica."
4495
 
4496
+ #: ../includes/mycred-functions.php:2573
4497
  #, php-format
4498
  msgid "You must exchange at least %s!"
4499
  msgstr "Debes intercambiar por lo menos %s!"
4500
 
4501
+ #: ../includes/mycred-functions.php:2595
4502
  #, php-format
4503
  msgid "Exchange from %s"
4504
  msgstr "Intercambiar desde %s"
4505
 
4506
+ #: ../includes/mycred-functions.php:2607
4507
  #, php-format
4508
  msgid "Exchange to %s"
4509
  msgstr "Intercambiar a %s"
4510
 
4511
+ #: ../includes/mycred-functions.php:2615
4512
  #, php-format
4513
  msgid "You have successfully exchanged %s into %s."
4514
  msgstr "Has intercambiado %s a %s con éxito."
4515
 
4516
+ #: ../includes/mycred-functions.php:2647
4517
  msgid "per day"
4518
  msgstr ""
4519
 
4520
+ #: ../includes/mycred-functions.php:2649
4521
  msgid "per week"
4522
  msgstr ""
4523
 
4524
+ #: ../includes/mycred-functions.php:2651
4525
  msgid "per month"
4526
  msgstr ""
4527
 
4528
+ #: ../includes/mycred-functions.php:2653
4529
  msgid "in total"
4530
  msgstr ""
4531
 
4532
+ #: ../includes/mycred-functions.php:2655 ../includes/mycred-functions.php:2659
4533
  #, php-format
4534
  msgid "Maximum once"
4535
  msgid_plural "Maximum %d times"
4598
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
4599
  "mínimos de mycred. Se produce los siguientes errores:"
4600
 
4601
+ #: ../includes/mycred-install.php:268
4602
  msgid "myCRED needs your attention."
4603
  msgstr "myCRED precisa tu atención."
4604
 
4605
+ #: ../includes/mycred-install.php:268
4606
  msgid "Run Setup"
4607
  msgstr "Ejecutar Configuración"
4608
 
4609
+ #: ../includes/mycred-install.php:280 ../includes/mycred-install.php:281
4610
  msgid "myCRED Setup"
4611
  msgstr "Instalación de myCRED"
4612
 
4613
+ #: ../includes/mycred-install.php:410
4614
  #, php-format
4615
  msgid "%s Setup"
4616
  msgstr "Configurar %s"
4617
 
4618
+ #: ../includes/mycred-install.php:412
4619
  msgid "Step"
4620
  msgstr "Paso"
4621
 
4622
+ #: ../includes/mycred-install.php:436
4623
  msgid ""
4624
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4625
  "points format, layout and security settings."
4627
  "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
4628
  "el formato de puntos, disposiciones y configuraciones de seguridad."
4629
 
4630
+ #: ../includes/mycred-install.php:437
4631
  msgid "Begin Setup"
4632
  msgstr "Empezar la Instalación"
4633
 
4634
+ #: ../includes/mycred-install.php:492
4635
  msgid "Select the format you want to use for your points."
4636
  msgstr "Elige el formato que quieres usar para tus puntos."
4637
 
4638
+ #: ../includes/mycred-install.php:493
4639
  msgid "Format"
4640
  msgstr "Formato"
4641
 
4642
+ #: ../includes/mycred-install.php:496
4643
  msgid "Separators"
4644
  msgstr "Separadores"
4645
 
4646
+ #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:531
4647
  msgid "Decimals"
4648
  msgstr "Decimales"
4649
 
4650
+ #: ../includes/mycred-install.php:508
4651
  msgid "Use zero for no decimals or maximum 20."
4652
  msgstr ""
4653
 
4654
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:537
4655
  msgid "Presentation"
4656
  msgstr "Presentación"
4657
 
4658
+ #: ../includes/mycred-install.php:514 ../modules/mycred-module-settings.php:518
4659
  msgid "Name (Singular)"
4660
  msgstr "Nombre (singular)"
4661
 
4662
+ #: ../includes/mycred-install.php:518 ../modules/mycred-module-settings.php:523
4663
  msgid "Name (Plural)"
4664
  msgstr "Nombre (plural)"
4665
 
4666
+ #: ../includes/mycred-install.php:524 ../modules/mycred-module-settings.php:540
4667
  msgid "Prefix"
4668
  msgstr "Prefijo"
4669
 
4670
+ #: ../includes/mycred-install.php:532 ../modules/mycred-module-settings.php:548
4671
  msgid "Suffix"
4672
  msgstr "Sufijo"
4673
 
4674
+ #: ../includes/mycred-install.php:536
4675
  msgid "Cancel Setup"
4676
  msgstr "Cancelar la Instalación"
4677
 
4678
+ #: ../includes/mycred-install.php:536 ../includes/mycred-install.php:606
4679
  msgid "Next"
4680
  msgstr "Siguiente"
4681
 
4682
+ #: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:556
4683
  msgid "Security"
4684
  msgstr "Seguridad"
4685
 
4686
+ #: ../includes/mycred-install.php:571
4687
  msgid "Edit Settings Capability"
4688
  msgstr "Editar la capacidad de las configuraciones"
4689
 
4690
  #. is this user's or users (plural)?
4691
+ #: ../includes/mycred-install.php:575
4692
  msgid "Edit Users %plural% Capability"
4693
  msgstr "Editar la Capacidad de %plural% del Usuario"
4694
 
4695
+ #: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:569
4696
  msgid "Maximum %plural% payouts"
4697
  msgstr "Desembolso %plural% Máximo"
4698
 
4699
+ #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:571
4700
  msgid ""
4701
  "As an added security, you can set the maximum amount a user can gain or "
4702
  "loose in a single instance. If used, make sure this is the maximum amount a "
4708
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
4709
  "o gastar en tu tienda. Ponga zero para desactivar."
4710
 
4711
+ #: ../includes/mycred-install.php:584 ../modules/mycred-module-settings.php:574
4712
  msgid "Excludes"
4713
  msgstr "Excluye"
4714
 
4715
+ #: ../includes/mycred-install.php:588 ../modules/mycred-module-settings.php:578
4716
  msgid "Exclude those who can \"Edit Settings\"."
4717
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
4718
 
4719
+ #: ../includes/mycred-install.php:592 ../modules/mycred-module-settings.php:582
4720
  msgid "Exclude those who can \"Edit Users %plural%\"."
4721
  msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
4722
 
4723
+ #: ../includes/mycred-install.php:595 ../modules/mycred-module-settings.php:586
4724
  msgid "Exclude the following user IDs:"
4725
  msgstr "Excluir a los siguientes IDs de usuarios"
4726
 
4727
+ #: ../includes/mycred-install.php:599 ../modules/mycred-module-settings.php:591
4728
  msgid "User Deletions"
4729
  msgstr "Eliminación de Usuarios"
4730
 
4731
+ #: ../includes/mycred-install.php:603 ../modules/mycred-module-settings.php:594
4732
  msgid "Delete log entries when user is deleted."
4733
  msgstr "Elimina las entradas de registro cuando se elimina el usuario."
4734
 
4735
+ #: ../includes/mycred-install.php:624
4736
  msgid "Ready"
4737
  msgstr "Listo"
4738
 
4739
+ #: ../includes/mycred-install.php:625
4740
  msgid "Almost done! Click the button below to finish this setup."
4741
  msgstr ""
4742
  "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
4743
  "configuración."
4744
 
4745
+ #: ../includes/mycred-install.php:626
4746
  msgid "Install & Run"
4747
  msgstr "Instalar e ejecutar"
4748
 
4749
+ #: ../includes/mycred-log.php:430
4750
  #, php-format
4751
  msgid "Showing %d %s"
4752
  msgstr "Mostrando %d %s"
4753
 
4754
  #. need more context: entrada or inscripción
4755
+ #: ../includes/mycred-log.php:430
4756
  msgid "entry"
4757
  msgstr "entrada"
4758
 
4759
+ #: ../includes/mycred-log.php:444
4760
  msgid "Go to the first page"
4761
  msgstr "Ir a la primera página"
4762
 
4763
+ #: ../includes/mycred-log.php:451
4764
  msgid "Go to the previous page"
4765
  msgstr "Ir a la página anterior"
4766
 
4767
+ #: ../includes/mycred-log.php:460
4768
  msgid "Current page"
4769
  msgstr "Página corriente"
4770
 
4771
+ #: ../includes/mycred-log.php:466
4772
  #, php-format
4773
  msgctxt "mycred"
4774
  msgid "%1$s of %2$s"
4775
  msgstr "%1$s de %2$s"
4776
 
4777
+ #: ../includes/mycred-log.php:470
4778
  msgid "Go to the next page"
4779
  msgstr "Ir a la página siguiente"
4780
 
4781
+ #: ../includes/mycred-log.php:477
4782
  msgid "Go to the last page"
4783
  msgstr "Ir a la última página"
4784
 
4785
+ #: ../includes/mycred-log.php:544
4786
  msgid "Show all references"
4787
  msgstr "Muestra todas las referencias"
4788
 
4789
+ #: ../includes/mycred-log.php:557
4790
+ msgid "User ID, Username, Email or Nicename"
4791
+ msgstr ""
4792
 
4793
+ #: ../includes/mycred-log.php:563
4794
  msgid "Show in order"
4795
  msgstr "Mostrar en Orden"
4796
 
4797
+ #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4798
  msgid "Ascending"
4799
  msgstr "Ascendente"
4800
 
4801
+ #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4802
  msgid "Descending"
4803
  msgstr "Descendente"
4804
 
4805
+ #: ../includes/mycred-log.php:582
4806
  msgid "Filter"
4807
  msgstr "Filtro"
4808
 
4809
+ #: ../includes/mycred-log.php:635
4810
  msgid ""
4811
  "Log entries are exported to a CSV file and depending on the number of "
4812
  "entries selected, the process may take a few seconds."
4814
  "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
4815
  "número de entradas seleccionadas, el proceso puede tardar unos segundos."
4816
 
4817
+ #: ../includes/mycred-log.php:639
4818
  msgid "No export options available."
4819
  msgstr "No hay opciones para exportar."
4820
 
4821
  #. need more context: entrada or inscripción
4822
+ #: ../includes/mycred-log.php:668
4823
  msgid "Entry"
4824
  msgstr "Entrada"
4825
 
4826
+ #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4827
  msgid "User Missing"
4828
  msgstr "Usuario Ausente"
4829
 
4830
+ #: ../includes/mycred-log.php:839
4831
  msgid "No log entries found"
4832
  msgstr "Ninguna entrada de registro encontrada"
4833
 
4834
+ #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4835
  msgid "Search Log"
4836
  msgstr "Busqueda de Registro"
4837
 
4838
  #. buscar las entradas en el registro
4839
+ #: ../includes/mycred-log.php:855
4840
  msgid "search log entries"
4841
  msgstr "Búsqueda de las entradas de registro"
4842
 
4843
+ #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4844
+ #: modules/mycred-module-buddypress.php:249
4845
  msgid "All"
4846
  msgstr "Todo"
4847
 
4848
+ #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4849
  msgid "Yesterday"
4850
  msgstr "Ayer"
4851
 
5021
  msgid "Error - Try Again"
5022
  msgstr "Error - Inténtelo de nuevo."
5023
 
5024
+ #: ../includes/mycred-shortcodes.php:764
5025
  msgid "A video ID is required for this shortcode"
5026
  msgstr "Este código corto (shortcode) precisa un ID del video."
5027
 
5028
+ #: ../includes/mycred-shortcodes.php:957
5029
  #, php-format
5030
  msgid "Convert <span>%s</span> to <span>%s</span>"
5031
  msgstr "Convertir <span>%s</span> a <span>%s</span>"
5032
 
5033
+ #: ../includes/mycred-shortcodes.php:966
5034
  #, php-format
5035
  msgid "Your current %s balance"
5036
  msgstr "Tu Saldo Actual %s"
5037
 
5038
+ #: ../includes/mycred-shortcodes.php:974
5039
  #, php-format
5040
  msgid "Minimum %s"
5041
  msgstr "Minimo %s"
5042
 
5043
+ #: ../includes/mycred-shortcodes.php:978
5044
  #, php-format
5045
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
5046
  msgstr "1 %s = <span class=\"rate\">%s</span> %s"
5047
 
5048
+ #: ../includes/mycred-shortcodes.php:984
5049
  msgid "Exchange"
5050
  msgstr "Intercambio"
5051
 
5052
+ #: ../includes/mycred-shortcodes.php:1049
5053
  msgid "No instances found for this point type"
5054
  msgstr ""
5055
 
5056
+ #: ../includes/mycred-shortcodes.php:1053
5057
  msgid "Invalid point type"
5058
  msgstr ""
5059
 
5060
+ #: ../includes/mycred-shortcodes.php:1114
5061
  msgid "Instance"
5062
  msgstr ""
5063
 
5064
+ #: ../includes/mycred-shortcodes.php:1116 ../modules/mycred-module-hooks.php:672 .
5065
+ #: ./modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:703 ..
5066
+ #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:780 ..
5067
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:1011 ..
5068
+ #: modules/mycred-module-hooks.php:1153 ../modules/mycred-module-hooks.php:1170 .
5069
+ #: ./modules/mycred-module-hooks.php:1219 ../modules/mycred-module-hooks.php:3008
5070
+ #: ../modules/mycred-module-hooks.php:3028 ../plugins/mycred-hook-affiliatewp.php:
5071
+ #: 237 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-bbPress.php:
5072
+ #: 440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-bbPress.php:
5073
+ #: 492 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
5074
  #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
5075
  #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
5076
  #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
5091
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5092
  #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5093
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5094
+ #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5095
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5096
  #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
5097
  #: postratings.php:175
5364
  msgid "Import log entries from a CSV file."
5365
  msgstr "Importa las entradas de registro desde un fichero CSV."
5366
 
5367
+ #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26
5368
  msgid "Add-ons"
5369
  msgstr "Extensiones"
5370
 
5371
+ #: ../modules/mycred-module-addons.php:160
5372
  msgid "Give your users badges based on their interaction with your website."
5373
  msgstr "Dar insignias a tus usuarios basado en sus interacciones con tu sitio web."
5374
 
5375
+ #: ../modules/mycred-module-addons.php:171
5376
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
5377
  msgstr ""
5378
  "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
5379
  "de las cuentas de usuarios."
5380
 
5381
+ #: ../modules/mycred-module-addons.php:182
5382
  msgid ""
5383
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5384
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
5389
  "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
5390
  "para otros miembros."
5391
 
5392
+ #: ../modules/mycred-module-addons.php:193
5393
  msgid ""
5394
  "The coupons add-on allows you to create coupons that users can use to add "
5395
  "points to their accounts."
5397
  "Los cupones de add-on le permite crear cupones que los usuarios pueden "
5398
  "utilizar para agregar puntos a sus cuentas."
5399
 
5400
+ #: ../modules/mycred-module-addons.php:204
5401
  msgid "Create email notices for any type of myCRED instance."
5402
  msgstr ""
5403
  "Crea avisos por correo electrónico para cualquier tipo de instancias de "
5404
  "myCRED."
5405
 
5406
+ #: ../modules/mycred-module-addons.php:215
5407
  msgid ""
5408
  "Let your users pay using their <strong>my</strong>CRED points balance. "
5409
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5414
  "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
5415
  "Manager (gratis y pro)."
5416
 
5417
+ #: ../modules/mycred-module-addons.php:226
5418
  msgid "Create pop-up notifications for when users gain or loose points."
5419
  msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
5420
 
5421
+ #: ../modules/mycred-module-addons.php:238
5422
  msgid ""
5423
  "Create ranks for users reaching a certain number of %_plural% with the "
5424
  "option to add logos for each rank."
5426
  "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
5427
  "con la opción de añadir logotipos para cada rango."
5428
 
5429
+ #: ../modules/mycred-module-addons.php:249
5430
  msgid ""
5431
  "This add-on allows you to sell posts, pages or any public post types on your "
5432
  "website. You can either sell the entire content or using our shortcode, sell "
5437
  "el código corto (shortcode), vender partes de tu contenido permitiendote "
5438
  "ofrecer \"avances\"."
5439
 
5440
+ #: ../modules/mycred-module-addons.php:260
5441
  msgid ""
5442
  "Gives you access to your myCRED Staticstics based on your users gains and "
5443
  "loses."
5444
  msgstr ""
5445
 
5446
+ #: ../modules/mycred-module-addons.php:271
5447
  msgid ""
5448
  "Allow your users to send or \"donate\" points to other members by either using "
5449
  "the mycred_transfer shortcode or the myCRED Transfer widget."
5452
  "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
5453
  "myCRED."
5454
 
5455
+ #: ../modules/mycred-module-addons.php:313
5456
  #, php-format
5457
  msgid "%s Add-ons"
5458
  msgstr "%s Extensiones (addons)"
5459
 
5460
+ #: ../modules/mycred-module-addons.php:320
5461
  msgid "Add-on Activated"
5462
  msgstr "Extensión Activado"
5463
 
5464
+ #: ../modules/mycred-module-addons.php:323
5465
  msgid "Add-on Deactivated"
5466
  msgstr "Extensión Desactivado"
5467
 
5468
+ #: ../modules/mycred-module-addons.php:328
5469
+ msgid "Add-ons Reloaded"
5470
+ msgstr ""
5471
+
5472
+ #: ../modules/mycred-module-addons.php:331
5473
  msgid "Add-ons can expand your current installation with further features."
5474
  msgstr ""
5475
  "Extensiones pueden ampliar tu instalación actual con más características "
5476
  "técnicas."
5477
 
5478
+ #: ../modules/mycred-module-addons.php:358
5479
+ msgid "Reload Add-ons"
5480
+ msgstr ""
5481
+
5482
+ #: ../modules/mycred-module-addons.php:359
5483
  #, php-format
5484
  msgid "You can find more add-ons in our %s."
5485
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
5486
 
5487
+ #: ../modules/mycred-module-addons.php:359
5488
  msgid "online store"
5489
  msgstr "tienda online"
5490
 
5491
+ #: ../modules/mycred-module-addons.php:382
5492
  msgid "Deactivate Add-on"
5493
  msgstr "Desactivar Extensión"
5494
 
5495
+ #: ../modules/mycred-module-addons.php:383
5496
  msgid "Deactivate"
5497
  msgstr "Desactivar"
5498
 
5499
+ #: ../modules/mycred-module-addons.php:390
5500
  msgid "Activate Add-on"
5501
  msgstr "Activar Extensión"
5502
 
5503
+ #: ../modules/mycred-module-addons.php:391
5504
  msgid "Activate"
5505
  msgstr "Activar"
5506
 
5507
+ #: ../modules/mycred-module-addons.php:409
5508
  msgid "Version"
5509
  msgstr "Version"
5510
 
5511
+ #: ../modules/mycred-module-addons.php:413
5512
  msgid "By"
5513
  msgstr "Por"
5514
 
5515
+ #: ../modules/mycred-module-addons.php:417
5516
  msgid "About"
5517
  msgstr "Acerca de"
5518
 
5519
+ #: ../modules/mycred-module-addons.php:421
5520
  msgid "Get Pro"
5521
  msgstr "Obtenga la versión Pro"
5522
 
5523
+ #: ../modules/mycred-module-buddypress.php:31
5524
  msgid "My History"
5525
  msgstr "Mi Historial"
5526
 
5527
+ #: ../modules/mycred-module-buddypress.php:32
5528
  #, php-format
5529
  msgid "%s's History"
5530
  msgstr "La Historial de %s"
5531
 
5532
+ #: ../modules/mycred-module-buddypress.php:131
5533
  msgid "Current balance"
5534
  msgstr "Saldo Actual"
5535
 
5536
+ #: ../modules/mycred-module-buddypress.php:362
5537
  msgid "Go"
5538
  msgstr "Ir a"
5539
 
5540
+ #: ../modules/mycred-module-buddypress.php:425
5541
  msgid "Show in Profile"
5542
  msgstr "Mostrar en Perfil"
5543
 
5544
+ #: ../modules/mycred-module-buddypress.php:442
5545
  #, php-format
5546
  msgid "%singular% Balance"
5547
  msgstr "%singular% Saldo"
5548
 
5549
+ #: ../modules/mycred-module-buddypress.php:459
5550
  #, php-format
5551
  msgid "Members and visitors can other members %_singular% balance."
5552
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
5553
 
5554
+ #: ../modules/mycred-module-buddypress.php:469
5555
  msgid "%plural% History"
5556
  msgstr "Historial de %plural%"
5557
 
5558
+ #: ../modules/mycred-module-buddypress.php:486
5559
  msgid "Members can view each others %_plural% history."
5560
  msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
5561
 
5562
+ #: ../modules/mycred-module-buddypress.php:491
5563
  msgid "Menu Title"
5564
  msgstr "Título de Menú"
5565
 
5566
+ #: ../modules/mycred-module-buddypress.php:493
5567
  msgid "Title shown to me"
5568
  msgstr "Título mostrado a mi"
5569
 
5570
+ #: ../modules/mycred-module-buddypress.php:498
5571
  #, php-format
5572
  msgid "Title shown to others. Use %s to show the first name."
5573
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
5574
 
5575
+ #: ../modules/mycred-module-buddypress.php:503
5576
  msgid "Menu Position"
5577
  msgstr "Posición del Menú"
5578
 
5579
+ #: ../modules/mycred-module-buddypress.php:505
5580
  msgid "Current menu positions:"
5581
  msgstr "Posiciones Acuales del Menú"
5582
 
5583
+ #: ../modules/mycred-module-buddypress.php:510
5584
  msgid "History URL slug"
5585
  msgstr "La ficha historial de la URL"
5586
 
5587
+ #: ../modules/mycred-module-buddypress.php:512
5588
  msgid "Do not use empty spaces!"
5589
  msgstr "¡No utilice espacios vacíos!"
5590
 
5591
+ #: ../modules/mycred-module-buddypress.php:517
5592
  msgid "Number of history entries to show"
5593
  msgstr "Numero de entradas de historial a mostrar"
5594
 
5595
+ #: ../modules/mycred-module-hooks.php:107
5596
  #, php-format
5597
  msgid "%plural% for registrations"
5598
  msgstr "%plural% por inscripciones"
5599
 
5600
+ #: ../modules/mycred-module-hooks.php:108
5601
  #, php-format
5602
  msgid "Award %_plural% for users joining your website."
5603
  msgstr "Concede %_plural% a usuarios por unirse a tu sitio de web."
5604
 
5605
+ #: ../modules/mycred-module-hooks.php:114
5606
  #, php-format
5607
  msgid "%plural% for daily visits"
5608
  msgstr "%plural% para visitas diarias"
5609
 
5610
+ #: ../modules/mycred-module-hooks.php:115
5611
  #, php-format
5612
  msgid "Award %_plural% for users visiting your website on a daily basis."
5613
  msgstr "Concede %_plural% a usuarios por visitar tu sitio web diariamente."
5614
 
5615
+ #: ../modules/mycred-module-hooks.php:121
5616
  #, php-format
5617
  msgid "%plural% for viewing content"
5618
  msgstr "%plural% para ver contenido"
5619
 
5620
+ #: ../modules/mycred-module-hooks.php:122
5621
  msgid ""
5622
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
5623
  "authors for members viewing their content."
5625
  "Concede %_plural% a usuarios por ver entradas y / o %plural% a tus autores "
5626
  "cuando miembros ven su contenido."
5627
 
5628
+ #: ../modules/mycred-module-hooks.php:128
5629
  #, php-format
5630
  msgid "%plural% for logins"
5631
  msgstr "%plural% para ingresos"
5632
 
5633
+ #: ../modules/mycred-module-hooks.php:129
5634
  #, php-format
5635
  msgid ""
5636
  "Award %_plural% for logging in to your website. You can also set an optional "
5639
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
5640
  "ajustar un limíte opcional."
5641
 
5642
+ #: ../modules/mycred-module-hooks.php:135
5643
  #, php-format
5644
  msgid "%plural% for publishing content"
5645
  msgstr "%plural% por publicar contenido"
5646
 
5647
+ #: ../modules/mycred-module-hooks.php:136
5648
  #, php-format
5649
  msgid ""
5650
  "Award %_plural% for publishing content on your website. If your custom post "
5651
  "type is not shown bellow, make sure it is set to \"Public\"."
5652
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
5653
 
5654
+ #: ../modules/mycred-module-hooks.php:142
5655
  #, php-format
5656
  msgid "%plural% for comments"
5657
  msgstr "%plural% por comentarios"
5658
 
5659
+ #: ../modules/mycred-module-hooks.php:142
5660
  #, php-format
5661
  msgid "%plural% for Disqus comments"
5662
  msgstr "%plural% por comentarios Disqus"
5663
 
5664
+ #: ../modules/mycred-module-hooks.php:143
5665
  #, php-format
5666
  msgid "Award %_plural% for making comments."
5667
  msgstr "Concede %_plural% por hacer comentarios."
5668
 
5669
+ #: ../modules/mycred-module-hooks.php:149
5670
  #, php-format
5671
  msgid "%plural% for clicking on links"
5672
  msgstr "%plural% por hacer clic sobre enlaces"
5673
 
5674
+ #: ../modules/mycred-module-hooks.php:150
5675
  msgid ""
5676
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5677
  "shortcode."
5679
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
5680
  "por el [mycred_link] código corto (shortcode)."
5681
 
5682
+ #: ../modules/mycred-module-hooks.php:156
5683
  #, php-format
5684
  msgid "%plural% for viewing Videos"
5685
  msgstr "%plural% por ver videos"
5686
 
5687
+ #: ../modules/mycred-module-hooks.php:157
5688
  msgid ""
5689
  "Award %_plural% to users who watches videos embedded using the "
5690
  "[mycred_video] shortcode."
5692
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
5693
  "el [mycred_link] código corto (shortcode)."
5694
 
5695
+ #: ../modules/mycred-module-hooks.php:163
5696
  #, php-format
5697
  msgid "%plural% for referrals"
5698
  msgstr "%plural% por referencias (o recomendaciones)"
5699
 
5700
+ #: ../modules/mycred-module-hooks.php:164
5701
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5702
  msgstr ""
5703
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
5704
  "miembros inscritos."
5705
 
5706
+ #: ../modules/mycred-module-hooks.php:199
5707
  #, php-format
5708
  msgid "%s Hooks"
5709
  msgstr "Ganchos de %s"
5710
 
5711
+ #: ../modules/mycred-module-hooks.php:203
5712
  msgid ""
5713
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5714
  "depending on their actions around your website."
5716
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
5717
  "usuario, dependiendo de sus acciones en tu sitio web."
5718
 
5719
+ #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
5720
+ #: ./modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:714 ..
5721
+ #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:1157 ..
5722
+ #: modules/mycred-module-hooks.php:1174 ../modules/mycred-module-hooks.php:1223 .
5723
+ #: ./modules/mycred-module-hooks.php:1675 ../modules/mycred-module-hooks.php:1692
5724
+ #: ../modules/mycred-module-hooks.php:1709 ../modules/mycred-module-hooks.php:
5725
+ #: 3000 ../modules/mycred-module-hooks.php:3020 ../plugins/mycred-hook-
5726
  #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5727
+ #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:415 ..
5728
+ #: plugins/mycred-hook-bbPress.php:428 ../plugins/mycred-hook-bbPress.php:445 ..
5729
+ #: plugins/mycred-hook-bbPress.php:463 ../plugins/mycred-hook-bbPress.php:480 ..
5730
+ #: plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:519 ..
5731
  #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5732
  #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5733
  #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
5759
  msgid "Log template"
5760
  msgstr "Plantilla de Registro"
5761
 
5762
+ #: ../modules/mycred-module-hooks.php:666
5763
  #, php-format
5764
  msgid "%plural% for viewing Posts"
5765
  msgstr "%plural% para ver Entradas"
5766
 
5767
+ #: ../modules/mycred-module-hooks.php:669 ../modules/mycred-module-hooks.php:686 .
5768
+ #: ./modules/mycred-module-hooks.php:700 ../modules/mycred-module-hooks.php:717 ..
5769
+ #: modules/mycred-module-hooks.php:777 ../modules/mycred-module-hooks.php:794
5770
  msgid "Member"
5771
  msgstr "Miembro"
5772
 
5773
+ #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:692 .
5774
+ #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:723 ..
5775
+ #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:800 ..
5776
+ #: modules/mycred-module-hooks.php:1670 ../modules/mycred-module-hooks.php:1687 .
5777
+ #: ./modules/mycred-module-hooks.php:1704
5778
  msgid "Content Author"
5779
  msgstr "Autor del Contenido"
5780
 
5781
+ #: ../modules/mycred-module-hooks.php:697
5782
  #, php-format
5783
  msgid "%plural% for viewing Pages"
5784
  msgstr "%plural% para ver Paginas"
5785
 
5786
+ #: ../modules/mycred-module-hooks.php:774
5787
  #, php-format
5788
  msgid "%plural% for viewing %s"
5789
  msgstr "%plural% para Ver %s"
5790
 
5791
+ #: ../modules/mycred-module-hooks.php:1147
5792
  #, php-format
5793
  msgid "%plural% for Posts"
5794
  msgstr "%plural% por Posts"
5795
 
5796
+ #: ../modules/mycred-module-hooks.php:1164
5797
  #, php-format
5798
  msgid "%plural% for Pages"
5799
  msgstr "%plural% por Paginas"
5800
 
5801
+ #: ../modules/mycred-module-hooks.php:1213
5802
  #, php-format
5803
  msgid "%plural% for %s"
5804
  msgstr "%plural% por %s"
5805
 
5806
+ #: ../modules/mycred-module-hooks.php:1660
5807
  msgid ""
5808
  "%plural% are only awarded when your website has been synced with the Disqus "
5809
  "server!"
5811
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
5812
  "sincronizado con el servidor de Disqus!"
5813
 
5814
+ #: ../modules/mycred-module-hooks.php:1666 ../modules/mycred-module-hooks.php:
5815
+ #: 1683 ../modules/mycred-module-hooks.php:1700
5816
  msgid "Comment Author"
5817
  msgstr "Autor del Comentario"
5818
 
5819
+ #: ../modules/mycred-module-hooks.php:1680
5820
  msgid "Comment Marked SPAM"
5821
  msgstr "Comentario Marcado como SPAM"
5822
 
5823
+ #: ../modules/mycred-module-hooks.php:1697
5824
  msgid "Trashed / Unapproved Comments"
5825
  msgstr "Comentarios Destrozados / No Aprobados"
5826
 
5827
+ #: ../modules/mycred-module-hooks.php:1717
5828
  msgid "Limit per post"
5829
  msgstr "Límite por Entrada"
5830
 
5831
  #. what is the Spanish word for "post"? o anglicismo?
5832
+ #: ../modules/mycred-module-hooks.php:1719
5833
  msgid ""
5834
  "The number of comments per post that grants %_plural% to the comment author. "
5835
  "Use zero for unlimited."
5837
  "El numero de comentarios por cada post que concede %_plural% al autor del "
5838
  "comentario. Utilice cero para un número ilimitado"
5839
 
5840
+ #: ../modules/mycred-module-hooks.php:1723
5841
  msgid "Limit per day"
5842
  msgstr "Límite por día"
5843
 
5844
+ #: ../modules/mycred-module-hooks.php:1725
5845
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5846
  msgstr ""
5847
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
5848
  "número ilimitado."
5849
 
5850
+ #: ../modules/mycred-module-hooks.php:1730
5851
  msgid ""
5852
  "%plural% is to be awarded even when comment authors reply to their own "
5853
  "comment."
5855
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
5856
  "comentario."
5857
 
5858
+ #: ../modules/mycred-module-hooks.php:1810
5859
  msgid "Once for each unique URL"
5860
  msgstr "Una sola vez para cada única URL"
5861
 
5862
+ #: ../modules/mycred-module-hooks.php:1811
5863
  msgid "Once for each unique link id"
5864
  msgstr "Una vez para cada id del enlace único "
5865
 
5866
+ #: ../modules/mycred-module-hooks.php:2022
5867
  msgid ""
5868
  "The default amount to award for clicking on links. You can override this in "
5869
  "the shortcode."
5871
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
5872
  "anular esto con el 'shortcode' (código corto)."
5873
 
5874
+ #: ../modules/mycred-module-hooks.php:2029
5875
  #, php-format
5876
  msgid "Custom tags: %url%, %title% or %id%."
5877
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
5878
 
5879
+ #: ../modules/mycred-module-hooks.php:2042 ../modules/mycred-module-hooks.php:3096
5880
  msgid "Note!"
5881
  msgstr "¡Atención!"
5882
 
5883
+ #: ../modules/mycred-module-hooks.php:2042
5884
  msgid ""
5885
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5886
  "generate one automatically based on the value set under href. If you are "
5892
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
5893
  "contenidos, se recomienda que limites por ID."
5894
 
5895
+ #: ../modules/mycred-module-hooks.php:2044 ../modules/mycred-module-hooks.php:2428
5896
  msgid "Available Shortcode"
5897
  msgstr "Código corto Disponible"
5898
 
5899
+ #: ../modules/mycred-module-hooks.php:2392
5900
  msgid "Amount to award for viewing videos."
5901
  msgstr "Cantidad a ceder para ver videos."
5902
 
5903
+ #: ../modules/mycred-module-hooks.php:2402
5904
  msgid "Award Logic"
5905
  msgstr "Lógica de Concesión"
5906
 
5907
+ #: ../modules/mycred-module-hooks.php:2404
5908
  #, php-format
5909
  msgid "Select when %_plural% should be awarded or deducted."
5910
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
5911
 
5912
+ #: ../modules/mycred-module-hooks.php:2405
5913
  msgid "Play - As soon as video starts playing."
5914
  msgstr "Play - En cuanto el video empiece a reproducirse."
5915
 
5916
+ #: ../modules/mycred-module-hooks.php:2406
5917
  msgid "Full - First when the entire video has played."
5918
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
5919
 
5920
+ #: ../modules/mycred-module-hooks.php:2407
5921
  msgid "Interval - For each x number of seconds watched."
5922
  msgstr "Intervalo - Para cada x numero de segundos vistos."
5923
 
5924
+ #: ../modules/mycred-module-hooks.php:2412
5925
  msgid "Number of seconds"
5926
  msgstr "Numero de segundos"
5927
 
5928
+ #: ../modules/mycred-module-hooks.php:2419
5929
  msgid "Leniency"
5930
  msgstr "Lenidad"
5931
 
5932
+ #: ../modules/mycred-module-hooks.php:2421
5933
  msgid ""
5934
  "The maximum percentage a users view of a movie can differ from the actual "
5935
  "length."
5937
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
5938
  "actual del video."
5939
 
5940
+ #: ../modules/mycred-module-hooks.php:2424
5941
  msgid ""
5942
  "Do not set this value to zero! A lot of thing can happen while a user "
5943
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5947
  "usuario ve una película y a veces la contador puede disminuir por pocos "
5948
  "segundos por falta de buffering o por errores de reproducción."
5949
 
5950
+ #: ../modules/mycred-module-hooks.php:2499
5951
  msgid "Affiliate Program"
5952
  msgstr "Programa de Afiliados"
5953
 
5954
+ #: ../modules/mycred-module-hooks.php:2508
5955
  msgid "Per Day"
5956
  msgstr "Por Día"
5957
 
5958
+ #: ../modules/mycred-module-hooks.php:2667
5959
  msgid "Link"
5960
  msgstr "Enlace"
5961
 
5962
+ #: ../modules/mycred-module-hooks.php:2671
5963
  msgid "Visitors Referred"
5964
  msgstr "Visitantes Referidos"
5965
 
5966
+ #: ../modules/mycred-module-hooks.php:2675
5967
  msgid "Signups Referred"
5968
  msgstr "Inscripciones Referidos"
5969
 
5970
+ #: ../modules/mycred-module-hooks.php:2994 ../plugins/mycred-hook-affiliatewp.php:
5971
  #: 231
5972
  msgid "Referring Visitors"
5973
  msgstr "Referiendo Visitantes"
5974
 
5975
+ #: ../modules/mycred-module-hooks.php:3013 ../modules/mycred-module-hooks.php:3033
 
 
 
 
 
 
5976
  msgid "Referring Signups"
5977
  msgstr "Inscripciones a través de Referencias"
5978
 
5979
+ #: ../modules/mycred-module-hooks.php:3017
5980
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5981
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
5982
 
5983
+ #: ../modules/mycred-module-hooks.php:3035
5984
  msgid "Registrations are disabled."
5985
  msgstr "Se han deshabilitado inscripciones."
5986
 
5987
+ #: ../modules/mycred-module-hooks.php:3043
5988
  msgid "Referral Links"
5989
  msgstr "Enlaces Referentes"
5990
 
5991
+ #: ../modules/mycred-module-hooks.php:3047
5992
  msgid "Assign numeric referral IDs to each user."
5993
  msgstr "Asignar ID numerica referente a cada usuario."
5994
 
5995
+ #: ../modules/mycred-module-hooks.php:3048 ../modules/mycred-module-hooks.php:3054
5996
  msgid "Example"
5997
  msgstr "Ejemplo"
5998
 
5999
+ #: ../modules/mycred-module-hooks.php:3053
6000
  msgid "Assign usernames as IDs for each user."
6001
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
6002
 
6003
+ #: ../modules/mycred-module-hooks.php:3057
6004
  msgid "IP Limit"
6005
  msgstr "Límite de IP"
6006
 
6007
+ #: ../modules/mycred-module-hooks.php:3061
6008
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
6009
  msgstr ""
6010
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
6011
  "número ilimitado"
6012
 
6013
+ #: ../modules/mycred-module-hooks.php:3065 ../modules/mycred-module-hooks.php:3100
6014
  msgid "BuddyPress Profile"
6015
  msgstr "Perfil de BuddyPress"
6016
 
6017
+ #: ../modules/mycred-module-hooks.php:3068
6018
  msgid "Insert Link in users Profile"
6019
  msgstr "Insertar enlace en el perfil del usuario"
6020
 
6021
+ #: ../modules/mycred-module-hooks.php:3069
6022
  msgid ""
6023
  "Option to inser the referral link in users profiles. Links will only be "
6024
  "visible to users viewing their own profiles or administrators."
6027
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
6028
  "ven a sus propios perfiles."
6029
 
6030
+ #: ../modules/mycred-module-hooks.php:3075
6031
  msgid "Leave empty to hide."
6032
  msgstr "Deje el campo vacío para ocultarlo."
6033
 
6034
+ #: ../modules/mycred-module-hooks.php:3078
6035
  msgid "Description"
6036
  msgstr "Descripción"
6037
 
6038
+ #: ../modules/mycred-module-hooks.php:3079
6039
  msgid "Optional description to insert under the link."
6040
  msgstr "Insertar la descripción opcional debajo del enlace."
6041
 
6042
+ #: ../modules/mycred-module-hooks.php:3093
6043
  msgid "Profile Positioning"
6044
  msgstr "Posicionamiento del Perfil"
6045
 
6046
+ #: ../modules/mycred-module-hooks.php:3095
6047
  msgid ""
6048
  "You can move around the referral link on your users profile by changing the "
6049
  "position. Increase to move up, decrease to move down."
6051
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
6052
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
6053
 
6054
+ #: ../modules/mycred-module-hooks.php:3096
6055
  msgid "You can not move the referral link above the users \"Base\" profile details!"
6056
  msgstr ""
6057
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
6058
  "en el perfil del usuario!"
6059
 
6060
+ #: ../modules/mycred-module-hooks.php:3102
6061
  msgid "Requires BuddyPress Extended Profiles to be enabled."
6062
  msgstr "Requiere que Perfils Extendidos de BuddyPress sea activado."
6063
 
6064
+ #: ../modules/mycred-module-log.php:207 ../modules/mycred-module-log.php:230 ..
6065
+ #: modules/mycred-module-settings.php:66 ../modules/mycred-module-settings.php:109
6066
  msgid "Access denied for this action"
6067
  msgstr "Acceso denegado para esta acción"
6068
 
6069
+ #: ../modules/mycred-module-log.php:214
6070
  msgid "Row Deleted"
6071
  msgstr "Fila Borrado"
6072
 
6073
+ #: ../modules/mycred-module-log.php:243
6074
  msgid "Log entry not found"
6075
  msgstr "No se encontro la entrada de registro "
6076
 
6077
+ #: ../modules/mycred-module-log.php:256
6078
  msgid "Entry Updated"
6079
  msgstr "Entrada Actualizada"
6080
 
6081
+ #: ../modules/mycred-module-log.php:316 ../modules/mycred-module-settings.php:621
6082
  msgid "Entries"
6083
  msgstr "Entradas"
6084
 
6085
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
6086
+ #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
6087
  msgid "Export"
6088
  msgstr "Exportar"
6089
 
6090
+ #: ../modules/mycred-module-log.php:340
6091
  msgid "Search results for"
6092
  msgstr "Buscar entre resultados por"
6093
 
6094
+ #: ../modules/mycred-module-log.php:411
6095
  #, php-format
6096
  msgid "%s Log"
6097
  msgstr "Registro de %s"
6098
 
6099
+ #: ../modules/mycred-module-log.php:422
6100
  msgid ""
6101
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
6102
  "Certain hooks and shortcodes will not work correctly!"
6103
  msgstr ""
6104
 
6105
+ #: ../modules/mycred-module-log.php:565
6106
  msgid "Edit"
6107
  msgstr "Editar"
6108
 
6109
+ #: ../modules/mycred-module-log.php:612
6110
  msgid "Time"
6111
  msgstr "Tiempo"
6112
 
6113
+ #: ../modules/mycred-module-log.php:616
6114
  msgid "Current Log Entry"
6115
  msgstr "Entrada Actual de Registro"
6116
 
6117
+ #: ../modules/mycred-module-log.php:618
6118
  msgid "The current saved log entry"
6119
  msgstr "La entrada guardada actual del registro"
6120
 
6121
+ #: ../modules/mycred-module-log.php:621
6122
  msgid "Adjust Log Entry"
6123
  msgstr "Ajustar entrada de registro"
6124
 
6125
+ #: ../modules/mycred-module-log.php:623
6126
  msgid "The new log entry"
6127
  msgstr "La nueva entrada de registro"
6128
 
6129
+ #: ../modules/mycred-module-log.php:626
6130
  msgid "Update Log Entry"
6131
  msgstr "Actualiza la entrada de registro"
6132
 
6133
+ #: ../modules/mycred-module-log.php:697
6134
  #, php-format
6135
  msgid "My %s History"
6136
  msgstr "Mi Historial de %s"
6137
 
6138
+ #: ../modules/mycred-module-settings.php:70 ../modules/mycred-module-settings.php:
6139
+ #: 113 ../modules/mycred-module-settings.php:166
6140
  msgid "Missing point type"
6141
  msgstr "Falta el clase de punto (\"point type\")"
6142
 
6143
+ #: ../modules/mycred-module-settings.php:144
6144
  msgid "Accounts successfully reset"
6145
  msgstr "Las cuentas fueron reiniciadas con éxito."
6146
 
6147
+ #: ../modules/mycred-module-settings.php:196
6148
  msgid "No users found to export"
6149
  msgstr "No se encontro usuarios para exportar"
6150
 
6151
+ #: ../modules/mycred-module-settings.php:246
6152
  msgid "Invalid decimal value."
6153
  msgstr ""
6154
 
6155
+ #: ../modules/mycred-module-settings.php:293
6156
  msgid "Log Updated"
6157
  msgstr ""
6158
 
6159
+ #: ../modules/mycred-module-settings.php:423
6160
  msgid "Update Database"
6161
  msgstr ""
6162
 
6163
+ #: ../modules/mycred-module-settings.php:424
6164
  msgid "Zero for no decimals or maximum 20."
6165
  msgstr ""
6166
 
6167
+ #: ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.
6168
+ #: php:528
6169
  msgid "Tip"
6170
  msgstr "Pista"
6171
 
6172
+ #: ../modules/mycred-module-settings.php:427
6173
  msgid ""
6174
  "As this is your main point type, the value you select here will be the "
6175
  "largest number of decimals your installation will support."
6176
  msgstr ""
6177
 
6178
+ #: ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.
6179
+ #: php:453
6180
  msgid "No decimals"
6181
  msgstr ""
6182
 
6183
+ #: ../modules/mycred-module-settings.php:465
6184
  #, php-format
6185
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
6186
  msgstr ""
6187
 
6188
+ #: ../modules/mycred-module-settings.php:503
6189
  #, php-format
6190
  msgid "%s Settings"
6191
  msgstr "Configuración de %s"
6192
 
6193
+ #: ../modules/mycred-module-settings.php:507
6194
  msgid "Adjust your core or add-on settings."
6195
  msgstr "Ajustar las configuraciones de tu nucleo o de las extensiones."
6196
 
6197
+ #: ../modules/mycred-module-settings.php:513
6198
  msgid "Core Settings"
6199
  msgstr "Ajustes Basicos"
6200
 
6201
+ #: ../modules/mycred-module-settings.php:515
6202
  msgid "Name"
6203
  msgstr "Nombre"
6204
 
6205
+ #: ../modules/mycred-module-settings.php:520
6206
  #, php-format
6207
  msgid "Accessible though the %singular% template tag."
6208
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
6209
 
6210
+ #: ../modules/mycred-module-settings.php:525
6211
  msgid "Accessible though the %plural% template tag."
6212
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
6213
 
6214
+ #: ../modules/mycred-module-settings.php:528
6215
  msgid ""
6216
  "Adding an underscore at the beginning of template tag for names will return "
6217
  "them in lowercase. i.e. %_singular%"
6219
  "Añadiendo un guión bajo al principio de la etiqueta de la plantilla para "
6220
  "nombres los cnovertira en minúsculas. Por ejemplo %_singular%"
6221
 
6222
+ #: ../modules/mycred-module-settings.php:552
6223
  msgid "Separator"
6224
  msgstr "Separador"
6225
 
6226
+ #: ../modules/mycred-module-settings.php:559
6227
  msgid "Edit Settings"
6228
  msgstr "Editar las Configuraciones"
6229
 
6230
  #. or "Verificar la capacidad de"
6231
+ #: ../modules/mycred-module-settings.php:561 ../modules/mycred-module-settings.
6232
+ #: php:566
6233
  msgid "Capability to check for."
6234
  msgstr "La capacidad que se va a verificar."
6235
 
6236
+ #: ../modules/mycred-module-settings.php:564
6237
  msgid "Edit Users %plural%"
6238
  msgstr "Edita %plural% de Usuarios"
6239
 
6240
+ #: ../modules/mycred-module-settings.php:588
6241
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
6242
  msgstr ""
6243
  "Lista separada por comas de los IDs de usuario para excluir. ¡No se permiten "
6244
  "espacios!"
6245
 
6246
+ #: ../modules/mycred-module-settings.php:612
6247
  msgid "Management"
6248
  msgstr "Gestión"
6249
 
6250
+ #: ../modules/mycred-module-settings.php:614
6251
  msgid "The Log"
6252
  msgstr "El Registro"
6253
 
6254
+ #: ../modules/mycred-module-settings.php:617
6255
  msgid "Table Name"
6256
  msgstr "Nombre de Tabla"
6257
 
6258
+ #: ../modules/mycred-module-settings.php:626
6259
  msgid "Empty Log"
6260
  msgstr "Registro Vacío"
6261
 
6262
+ #: ../modules/mycred-module-settings.php:641
6263
  msgid "Set all to zero"
6264
  msgstr "Ajusta todo a cero"
6265
 
6266
+ #: ../modules/mycred-module-settings.php:641
6267
  msgid "CSV Export"
6268
  msgstr "Exportar CSV"
6269
 
6270
+ #: ../modules/mycred-module-settings.php:667
6271
  msgid "Default"
6272
  msgstr "Predefinido"
6273
 
6274
+ #: ../modules/mycred-module-settings.php:670 ../modules/mycred-module-settings.
6275
+ #: php:691 ../modules/mycred-module-settings.php:715
6276
  msgid "Meta Key"
6277
  msgstr "Clave Meta"
6278
 
6279
+ #: ../modules/mycred-module-settings.php:712
6280
  msgid "Add New Type"
6281
  msgstr "Añadir Nuevo Clase"
6282
 
6283
+ #: ../modules/mycred-module-settings.php:717
6284
  msgid "A unique ID for this type."
6285
  msgstr "Una ID exclusiva para este clase."
6286
 
6287
+ #: ../modules/mycred-module-settings.php:722
6288
  msgid "Menu and page title."
6289
  msgstr "Título del Menú y de la Página\n"
6290
 
6291
+ #: ../modules/mycred-module-settings.php:725
6292
  msgid ""
6293
  "The meta key must be lowercase and only contain letters or underscores. All "
6294
  "other characters will be deleted!"
6295
  msgstr ""
6296
 
6297
+ #: ../modules/mycred-module-settings.php:748
6298
  msgid "Identify users by"
6299
  msgstr "Identifique usuarios por"
6300
 
6301
+ #: ../modules/mycred-module-settings.php:754
6302
+ msgid "User ID"
6303
+ msgstr "ID del Usuario"
6304
+
6305
+ #: ../modules/mycred-module-settings.php:755
6306
  msgid "User Email"
6307
  msgstr "Email de Usuario"
6308
 
6309
+ #: ../modules/mycred-module-settings.php:756
6310
  msgid "User Login"
6311
  msgstr "Ingreso de Usuario"
6312
 
6313
+ #: ../modules/mycred-module-settings.php:764
6314
  msgid ""
6315
  "Use ID if you intend to use this export as a backup of your current site "
6316
  "while Email is recommended if you want to export to a different site."
6318
  "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
6319
  "Email si deseas exportar la data a otro sitio"
6320
 
6321
+ #: ../modules/mycred-module-settings.php:767
6322
  msgid "Import Log Entry"
6323
  msgstr "Importa la entrada de registro"
6324
 
6325
+ #: ../modules/mycred-module-settings.php:769
6326
  #, php-format
6327
  msgid ""
6328
  "Optional log entry to use if you intend to import this file in a different "
6426
  msgid "Awards %_plural% for bbPress actions."
6427
  msgstr "Concede %_plural% por acciones en bbPress."
6428
 
6429
+ #: ../plugins/mycred-hook-bbPress.php:404
6430
  #, php-format
6431
  msgid "%plural% for New Forum"
6432
  msgstr "%plural% por nuevo foro"
6433
 
6434
+ #: ../plugins/mycred-hook-bbPress.php:421
6435
  #, php-format
6436
  msgid "%plural% for Forum Deletion"
6437
  msgstr "%plural% por Eliminar Foro"
6438
 
6439
+ #: ../plugins/mycred-hook-bbPress.php:434 ../plugins/mycred-hook-simplepress.php:
6440
  #: 278
6441
  #, php-format
6442
  msgid "%plural% for New Topic"
6443
  msgstr "%plural% por Nuevo Tema"
6444
 
6445
+ #: ../plugins/mycred-hook-bbPress.php:452
6446
  #, php-format
6447
  msgid "Forum authors can receive %_plural% for creating new topics."
6448
  msgstr "Autores "
6449
 
6450
+ #: ../plugins/mycred-hook-bbPress.php:456 ../plugins/mycred-hook-simplepress.php:
6451
  #: 295
6452
  #, php-format
6453
  msgid "%plural% for Topic Deletion"
6454
  msgstr "%plural% por Borrar Tema"
6455
 
6456
+ #: ../plugins/mycred-hook-bbPress.php:469
6457
  #, php-format
6458
  msgid "%plural% for Favorited Topic"
6459
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
6460
 
6461
+ #: ../plugins/mycred-hook-bbPress.php:486
6462
  #, php-format
6463
  msgid "%plural% for New Reply"
6464
  msgstr "%plural% por Nueva Respuesta"
6465
 
6466
+ #: ../plugins/mycred-hook-bbPress.php:504
6467
  #, php-format
6468
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
6469
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
6470
 
6471
+ #: ../plugins/mycred-hook-bbPress.php:508
6472
  #, php-format
6473
  msgid "Show users %_plural% balance in replies"
6474
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
6475
 
6476
+ #: ../plugins/mycred-hook-bbPress.php:512
6477
  #, php-format
6478
  msgid "%plural% for Reply Deletion"
6479
  msgstr "%plural% para Borrar Respuesta"
6828
  msgstr "Suscripciónes a commentarios"
6829
 
6830
  #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6831
+ #: php:80
6832
  msgid "Reward with %plural%"
6833
  msgstr "Premiar con %plural%"
6834
 
6874
  msgid "%plural% for Topic Post Deletion"
6875
  msgstr "%plural% por Borrar la Tema del Post"
6876
 
6877
+ #: ../plugins/mycred-hook-woocommerce.php:210
6878
  msgid "WooCommerce Product Reviews"
6879
  msgstr " Revisión del Producto WooCommerce\n"
6880
 
6881
+ #: ../plugins/mycred-hook-woocommerce.php:211
6882
  #, php-format
6883
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6884
  msgstr ""
lang/mycred-es_VE.mo CHANGED
Binary file
lang/mycred-es_VE.po CHANGED
@@ -3,9 +3,10 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Feb 02 2015 11:27:42 GMT+0100 (CET)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
- "Language-Team: LANGUAGE <support@mycred.me>\n"
 
9
  "Language: Spanish (Venezuela)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
11
  "MIME-Version: 1.0\n"
@@ -42,9 +43,9 @@ msgid "Awesome People"
42
  msgstr "Gente genial"
43
 
44
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
45
- #: addon-badges.php:595 ../addons/gateway/event-booking/mycred-eventsmanager.php:
46
- #: 478 ../addons/ranks/myCRED-addon-ranks.php:421 ../addons/ranks/myCRED-addon-
47
- #: ranks.php:1514 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
48
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
49
  #: php:636
50
  msgid "Processing..."
@@ -110,15 +111,15 @@ msgid "Log entry updated"
110
  msgstr "Entrada de registro actualizado"
111
 
112
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
113
- #: notices.php:808 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
114
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
115
  msgid "Setup"
116
  msgstr "Configurar"
117
 
118
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
119
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
120
- #: network.php:151 ../modules/mycred-module-settings.php:20 ../modules/mycred-
121
- #: module-settings.php:21 ../modules/mycred-module-settings.php:22
122
  msgid "Settings"
123
  msgstr "Configuraciones"
124
 
@@ -130,55 +131,51 @@ msgstr ""
130
  "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
131
  "archivo, por si acaso!"
132
 
133
- #: ../abstracts/mycred-abstract-hook.php:74
134
- msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
135
- msgstr "Historia"
136
-
137
  #: ../abstracts/mycred-abstract-hook.php:83
138
  msgid "This Hook has no settings"
139
  msgstr "Este gancho no ha sido configurado"
140
 
141
- #: ../abstracts/mycred-abstract-hook.php:223 ../abstracts/mycred-abstract-hook.
142
- #: php:290 ../includes/mycred-functions.php:2633 ../modules/mycred-module-hooks.
143
- #: php:1649
144
  msgid "No limit"
145
  msgstr "Sin Limite"
146
 
147
- #: ../abstracts/mycred-abstract-hook.php:224
148
  msgid "/ Day"
149
  msgstr ""
150
 
151
- #: ../abstracts/mycred-abstract-hook.php:225
152
  msgid "/ Week"
153
  msgstr ""
154
 
155
- #: ../abstracts/mycred-abstract-hook.php:226
156
  msgid "/ Month"
157
  msgstr ""
158
 
159
- #: ../abstracts/mycred-abstract-hook.php:227
160
  msgid "in Total"
161
  msgstr ""
162
 
163
- #: ../abstracts/mycred-abstract-hook.php:291
164
  msgid "Once every 24 hours"
165
  msgstr "Una vez cada 24 horas"
166
 
167
- #: ../abstracts/mycred-abstract-hook.php:292
168
  msgid "Once every 7 days"
169
  msgstr "Una vez cada 7 dias"
170
 
171
- #: ../abstracts/mycred-abstract-hook.php:293
172
  msgid "Once per day (reset at midnight)"
173
  msgstr "Una vez al dia (reinicializado al medianoche)"
174
 
175
- #: ../abstracts/mycred-abstract-hook.php:300 ../addons/banking/abstracts/mycred-
176
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:628 ..
177
- #: addons/buy-creds/myCRED-addon-buy-creds.php:649 ../addons/buy-
178
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
179
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
180
- #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
181
- #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:989
182
  msgid "Select"
183
  msgstr "Seleccionar"
184
 
@@ -186,30 +183,30 @@ msgstr "Seleccionar"
186
  msgid "myCRED_Module() Error. A Module ID is required!"
187
  msgstr "Error de myCRED_Module(). ¡Se requiere una ID de Modulo!"
188
 
189
- #: ../abstracts/mycred-abstract-module.php:351 ../abstracts/mycred-abstract-
190
- #: module.php:359
191
  msgid "Surprise"
192
  msgstr "Sorpresa"
193
 
194
- #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:83
195
  msgid "click to close"
196
  msgstr "haga clic para cerrar"
197
 
198
- #: ../abstracts/mycred-abstract-module.php:447 ../includes/mycred-network.php:84
199
  msgid "click to open"
200
  msgstr "haga clic para abrir"
201
 
202
- #: ../abstracts/mycred-abstract-module.php:480 ../addons/buy-creds/myCRED-addon-
203
- #: buy-creds.php:846
204
  msgid "Settings Updated"
205
  msgstr "Configuraciones Actualizadas"
206
 
207
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
208
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
209
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
210
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:373 ..
211
- #: addons/badges/myCRED-addon-badges.php:379 ../addons/badges/myCRED-addon-
212
- #: badges.php:385
213
  msgid "Badges"
214
  msgstr ""
215
 
@@ -218,273 +215,277 @@ msgstr ""
218
  msgid "Badges (%d)"
219
  msgstr ""
220
 
221
- #: ../addons/badges/myCRED-addon-badges.php:256
222
  #, php-format
223
  msgid "%d Users earned this badge."
224
  msgstr ""
225
 
226
- #: ../addons/badges/myCRED-addon-badges.php:260
227
  msgid "No users has yet earned this badge."
228
  msgstr ""
229
 
230
- #: ../addons/badges/myCRED-addon-badges.php:282
 
 
 
 
231
  #, php-format
232
  msgid "%s connections where removed."
233
  msgstr ""
234
 
235
- #: ../addons/badges/myCRED-addon-badges.php:374
236
  msgid "Badge"
237
  msgstr ""
238
 
239
- #: ../addons/badges/myCRED-addon-badges.php:375 ../addons/buy-creds/myCRED-addon-
240
- #: buy-creds.php:259 ../addons/buy-creds/myCRED-addon-buy-creds.php:260 ..
241
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
242
- #: addons/ranks/myCRED-addon-ranks.php:445
243
  msgid "Add New"
244
  msgstr "Añade Nuevo"
245
 
246
- #: ../addons/badges/myCRED-addon-badges.php:376
247
  msgid "Add New Badge"
248
  msgstr ""
249
 
250
- #: ../addons/badges/myCRED-addon-badges.php:377
251
  msgid "Edit Badge"
252
  msgstr ""
253
 
254
- #: ../addons/badges/myCRED-addon-badges.php:378
255
  msgid "New Badge"
256
  msgstr ""
257
 
258
- #: ../addons/badges/myCRED-addon-badges.php:380
259
  msgid "View Badge"
260
  msgstr ""
261
 
262
- #: ../addons/badges/myCRED-addon-badges.php:381
263
  msgid "Search Badge"
264
  msgstr ""
265
 
266
- #: ../addons/badges/myCRED-addon-badges.php:382
267
  msgid "No badges found"
268
  msgstr ""
269
 
270
- #: ../addons/badges/myCRED-addon-badges.php:383
271
  msgid "No badges found in Trash"
272
  msgstr ""
273
 
274
- #: ../addons/badges/myCRED-addon-badges.php:429 ../addons/badges/myCRED-addon-
275
- #: badges.php:531
276
  msgid "Badge Name"
277
  msgstr ""
278
 
279
- #: ../addons/badges/myCRED-addon-badges.php:430
280
  msgid "Badge Images"
281
  msgstr ""
282
 
283
- #: ../addons/badges/myCRED-addon-badges.php:431
284
  msgid "Requirements"
285
  msgstr ""
286
 
287
- #: ../addons/badges/myCRED-addon-badges.php:432 ../addons/ranks/myCRED-addon-
288
- #: ranks.php:1038 ../modules/mycred-module-settings.php:600
289
  msgid "Users"
290
  msgstr "Usuarios"
291
 
292
- #: ../addons/badges/myCRED-addon-badges.php:471
293
  msgid "A user must have gained or lost:"
294
  msgstr ""
295
 
296
- #: ../addons/badges/myCRED-addon-badges.php:507 ../addons/badges/myCRED-addon-
297
- #: badges.php:510 ../addons/badges/myCRED-addon-badges.php:514 ..
298
- #: addons/badges/myCRED-addon-badges.php:515 ../addons/badges/myCRED-addon-
299
- #: badges.php:516
300
  msgid "Badge Updated."
301
  msgstr ""
302
 
303
- #: ../addons/badges/myCRED-addon-badges.php:512
304
  msgid "Badge Enabled"
305
  msgstr ""
306
 
307
- #: ../addons/badges/myCRED-addon-badges.php:513
308
  msgid "Badge Saved"
309
  msgstr ""
310
 
311
- #: ../addons/badges/myCRED-addon-badges.php:545
312
  msgid "Badge Setup"
313
  msgstr ""
314
 
315
- #: ../addons/badges/myCRED-addon-badges.php:572
316
  msgid "Assign Badge"
317
  msgstr ""
318
 
319
- #: ../addons/badges/myCRED-addon-badges.php:573
320
  msgid "Remove Connections"
321
  msgstr ""
322
 
323
- #: ../addons/badges/myCRED-addon-badges.php:628
324
  msgid "Time(s)"
325
  msgstr ""
326
 
327
- #: ../addons/badges/myCRED-addon-badges.php:629
328
  msgid "In total"
329
  msgstr ""
330
 
331
- #: ../addons/badges/myCRED-addon-badges.php:661 ../addons/badges/myCRED-addon-
332
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:821 ..
333
- #: addons/badges/myCRED-addon-badges.php:836
334
  msgid "Badge Image"
335
  msgstr ""
336
 
337
- #: ../addons/badges/myCRED-addon-badges.php:662 ../addons/badges/myCRED-addon-
338
- #: badges.php:662
339
  msgid "Set badge image"
340
  msgstr ""
341
 
342
- #: ../addons/badges/myCRED-addon-badges.php:672
343
  msgid "Default Image"
344
  msgstr ""
345
 
346
- #: ../addons/badges/myCRED-addon-badges.php:673 ../addons/badges/myCRED-addon-
347
- #: badges.php:731 ../addons/badges/myCRED-addon-badges.php:762 ..
348
- #: addons/badges/myCRED-addon-badges.php:821
349
  msgid "image url"
350
  msgstr ""
351
 
352
- #: ../addons/badges/myCRED-addon-badges.php:674 ../addons/badges/myCRED-addon-
353
- #: badges.php:732 ../addons/badges/myCRED-addon-badges.php:763 ..
354
- #: addons/badges/myCRED-addon-badges.php:821
355
  msgid "Add Image"
356
  msgstr ""
357
 
358
- #: ../addons/badges/myCRED-addon-badges.php:675
359
  msgid "Optional image to show when a user has not yet earned this badge."
360
  msgstr ""
361
 
362
- #: ../addons/badges/myCRED-addon-badges.php:694 ../addons/badges/myCRED-addon-
363
- #: badges.php:746
364
  #, php-format
365
  msgid "Level %d"
366
  msgstr ""
367
 
368
- #: ../addons/badges/myCRED-addon-badges.php:699 ../addons/badges/myCRED-addon-
369
- #: badges.php:751 ../addons/badges/myCRED-addon-badges.php:821
370
  msgid "for"
371
  msgstr ""
372
 
373
- #: ../addons/badges/myCRED-addon-badges.php:730
374
  msgid "Main Image"
375
  msgstr ""
376
 
377
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
378
- #: badges.php:821
379
  msgid "Leave empty if you do not want to assign a custom image for this level."
380
  msgstr ""
381
 
382
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
383
- #: badges.php:821
384
  msgid "Remove this level"
385
  msgstr ""
386
 
387
- #: ../addons/badges/myCRED-addon-badges.php:778
388
  msgid "Add Level"
389
  msgstr ""
390
 
391
- #: ../addons/badges/myCRED-addon-badges.php:821 ../addons/badges/myCRED-addon-
392
- #: badges.php:1141
393
  msgid "Level"
394
  msgstr ""
395
 
396
- #: ../addons/badges/myCRED-addon-badges.php:838
397
  msgid "Use as Badge"
398
  msgstr ""
399
 
400
- #: ../addons/badges/myCRED-addon-badges.php:960 ../addons/badges/myCRED-addon-
401
- #: badges.php:991 ../addons/gateway/carts/mycred-woocommerce.php:153 ..
402
- #: modules/mycred-module-buddypress.php:384
403
  msgid "Do not show"
404
  msgstr "No Mostrar"
405
 
406
- #: ../addons/badges/myCRED-addon-badges.php:961 ../modules/mycred-module-
407
- #: buddypress.php:385
408
  msgid "Include in Profile Header"
409
  msgstr ""
410
 
411
- #: ../addons/badges/myCRED-addon-badges.php:962 ../addons/ranks/myCRED-addon-
412
- #: ranks.php:1396 ../modules/mycred-module-buddypress.php:386
413
  msgid "Include under the \"Profile\" tab"
414
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
415
 
416
- #: ../addons/badges/myCRED-addon-badges.php:963 ../modules/mycred-module-
417
- #: buddypress.php:387
418
  msgid "Include under the \"Profile\" tab and Profile Header"
419
  msgstr ""
420
 
421
- #: ../addons/badges/myCRED-addon-badges.php:976 ../addons/badges/myCRED-addon-
422
- #: badges.php:1007
423
  msgid "Show all badges, including badges users have not yet earned."
424
  msgstr ""
425
 
426
- #: ../addons/badges/myCRED-addon-badges.php:992 ../addons/ranks/myCRED-addon-
427
- #: ranks.php:1442
428
  msgid "Include in Profile"
429
  msgstr ""
430
 
431
- #: ../addons/badges/myCRED-addon-badges.php:993
432
  msgid "Include in Forum Replies"
433
  msgstr ""
434
 
435
- #: ../addons/badges/myCRED-addon-badges.php:994
436
  msgid "Include in Profile and Forum Replies"
437
  msgstr ""
438
 
439
- #: ../addons/badges/myCRED-addon-badges.php:1098
440
  msgid "User Badges"
441
  msgstr ""
442
 
443
- #: ../addons/badges/myCRED-addon-badges.php:1103
444
  msgid ""
445
  "Here you can view the badges this user has earned and if needed, manually "
446
  "give or take away a badge from a user."
447
  msgstr ""
448
 
449
- #: ../addons/badges/myCRED-addon-badges.php:1112
450
  msgid "Not earned"
451
  msgstr ""
452
 
453
- #: ../addons/badges/myCRED-addon-badges.php:1118 ../addons/badges/myCRED-addon-
454
- #: badges.php:1155
455
  msgid "Earned"
456
  msgstr ""
457
 
458
- #: ../addons/badges/myCRED-addon-badges.php:1130
459
  msgid "No image"
460
  msgstr ""
461
 
462
- #: ../addons/badges/myCRED-addon-badges.php:1137
463
  msgid "Select a level"
464
  msgstr ""
465
 
466
- #: ../addons/badges/myCRED-addon-badges.php:1152 ../addons/email-notices/myCRED-
467
- #: addon-email-notices.php:807
468
  msgid "Status"
469
  msgstr "Estatus"
470
 
471
- #: ../addons/badges/myCRED-addon-badges.php:1169 ../addons/email-notices/myCRED-
472
- #: addon-email-notices.php:1290
473
  msgid "Save Changes"
474
  msgstr ""
475
 
476
- #: ../addons/badges/includes/mycred-badge-functions.php:65
477
  #, php-format
478
  msgid "Level %s"
479
  msgstr ""
480
 
481
- #: ../addons/badges/includes/mycred-badge-functions.php:68
482
  #, php-format
483
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
484
  msgid "%s for %s %s - %s"
485
  msgstr ""
486
 
487
- #: ../addons/badges/includes/mycred-badge-functions.php:68 ..
488
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
489
  #: coupons.php:469
490
  #, php-format
@@ -493,7 +494,7 @@ msgid_plural "%d times"
493
  msgstr[0] ""
494
  msgstr[1] ""
495
 
496
- #: ../addons/badges/includes/mycred-badge-functions.php:70
497
  #, php-format
498
  msgctxt "\"x points\" for \"reference\" in total"
499
  msgid "%s for %s in total"
@@ -535,11 +536,11 @@ msgid "Setup mass %_singular% payouts for your users."
535
  msgstr ""
536
 
537
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
538
- #: addon-buy-creds.php:836 ../addons/buy-creds/myCRED-addon-buy-creds.php:932 ..
539
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
540
- #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:292 ..
541
- #: modules/mycred-module-hooks.php:171 ../modules/mycred-module-log.php:326 ..
542
- #: modules/mycred-module-log.php:597 ../modules/mycred-module-settings.php:457
543
  msgid "Access Denied"
544
  msgstr "Acceso Denegado"
545
 
@@ -561,12 +562,12 @@ msgid "Warning! This add-on requires WP - Cron to work."
561
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
562
 
563
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
564
- #: addon-buy-creds.php:870 ../modules/mycred-module-hooks.php:196
565
  msgid "Enable"
566
  msgstr "Activar"
567
 
568
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
569
- #: php:211
570
  msgid "Update Changes"
571
  msgstr "Actualizar Cambios"
572
 
@@ -685,19 +686,19 @@ msgstr "Desembolso"
685
  #. can also be "Plantilla de Bitácora"
686
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
687
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
688
- #: creds/myCRED-addon-buy-creds.php:606 ../addons/buy-creds/myCRED-addon-buy-
689
- #: creds.php:665 ../addons/coupons/myCRED-addon-coupons.php:502 ..
690
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
691
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
692
- #: addons/gateway/carts/mycred-woocommerce.php:105 ..
693
- #: addons/gateway/carts/mycred-woocommerce.php:177 ..
694
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
695
- #: hooks.php:891 ../modules/mycred-module-hooks.php:1847 ../modules/mycred-module-
696
- #: hooks.php:2187 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-
697
- #: badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-hook-
698
- #: events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.php:
699
- #: 209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-
700
- #: star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:304 ..
701
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
702
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
703
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
@@ -744,7 +745,7 @@ msgid "This user role is excluded from receiving interest on this balance."
744
  msgstr ""
745
 
746
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
747
- #: creds/myCRED-addon-buy-creds.php:758 ../addons/sell-content/myCRED-addon-sell-
748
  #: content.php:114
749
  msgid "Leave empty to use the default value."
750
  msgstr ""
@@ -757,15 +758,15 @@ msgstr ""
757
  msgid "Exclude from receiving interest"
758
  msgstr ""
759
 
760
- #: ../addons/banking/services/mycred-bank-service-interest.php:667
761
  msgid "Compound interest rate saved."
762
  msgstr ""
763
 
764
- #: ../addons/banking/services/mycred-bank-service-interest.php:669
765
  msgid "User excluded from receiving interest."
766
  msgstr ""
767
 
768
- #: ../addons/banking/services/mycred-bank-service-interest.php:671
769
  msgid "User included in receiving interest."
770
  msgstr ""
771
 
@@ -774,8 +775,8 @@ msgid "Daily %_plural%"
774
  msgstr "%_plural% diarios"
775
 
776
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
777
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:254 ..
778
- #: modules/mycred-module-log.php:255
779
  msgid "History"
780
  msgstr "Historial"
781
 
@@ -792,17 +793,17 @@ msgid "Pay Users"
792
  msgstr "Pagar a los Usuarios"
793
 
794
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
795
- #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
796
- #: creds.php:1523 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
797
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
798
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
799
- #: includes/mycred-shortcodes.php:971 ../includes/mycred-shortcodes.php:1112 ..
800
  #: plugins/mycred-hook-affiliatewp.php:256
801
  msgid "Amount"
802
  msgstr "Cantidad"
803
 
804
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
805
- #: modules/mycred-module-hooks.php:2202
806
  msgid "Interval"
807
  msgstr "Interval"
808
 
@@ -829,318 +830,318 @@ msgstr ""
829
  "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
830
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
831
 
832
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
833
- #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
834
  msgid "Payment Gateways"
835
  msgstr "Pasarela de Pago"
836
 
837
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:253
838
  msgctxt "Post Type General Name"
839
  msgid "Pending Payments"
840
  msgstr ""
841
 
842
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:254
843
  msgctxt "Post Type Singular Name"
844
  msgid "Pending Payment"
845
  msgstr ""
846
 
847
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:255 ../addons/buy-creds/myCRED-
848
- #: addon-buy-creds.php:257 ../addons/buy-creds/myCRED-addon-buy-creds.php:268
849
  msgid "Pending Payments"
850
  msgstr ""
851
 
852
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
853
  msgid "Edit Pending Payment"
854
  msgstr ""
855
 
856
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
857
- #: addon-buy-creds.php:1634
858
  msgid "No pending payments found"
859
  msgstr ""
860
 
861
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265
862
  msgid "Not found in Trash"
863
  msgstr ""
864
 
865
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
866
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1598
867
  msgid "Transaction ID"
868
  msgstr "Identificación de la Transacción"
869
 
870
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
871
- #: addon-buy-creds.php:984
872
  msgid "Buyer"
873
  msgstr ""
874
 
875
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
876
- #: addon-buy-creds.php:1601 ../addons/buy-creds/abstracts/mycred-abstract-payment-
877
  #: gateway.php:594
878
  msgid "Cost"
879
  msgstr "Costo"
880
 
881
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
882
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ..
883
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
884
  msgid "Gateway"
885
  msgstr "Pasarela"
886
 
887
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:303
888
  msgid "Type"
889
  msgstr ""
890
 
891
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:390
892
  msgid "Pay Out"
893
  msgstr ""
894
 
895
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
896
  msgid "buyCRED Purchase Log"
897
  msgstr "compraCRED Registro de Compras"
898
 
899
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:422 ../addons/buy-creds/myCRED-
900
- #: addon-buy-creds.php:655 ../addons/buy-creds/myCRED-addon-buy-creds.php:842
901
  msgid "Purchase Log"
902
  msgstr "Registro de Compras"
903
 
904
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:515 ../addons/gateway/event-
905
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
906
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
907
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
908
  msgid "Payments"
909
  msgstr "Pagos"
910
 
911
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
912
  msgid "Please login to purchase %_plural%"
913
  msgstr "Identifícate antes de comprar %_plural%"
914
 
915
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
916
  #, php-format
917
  msgid "Gift purchase from %display_name%."
918
  msgstr "Regalo comprado de parte de %display_name%."
919
 
920
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:576 ../addons/ranks/myCRED-
921
- #: addon-ranks.php:1079
922
  msgid "Minimum %plural%"
923
  msgstr "Minimo %_plural%"
924
 
925
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:580
926
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
927
  msgstr ""
928
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
929
  "a 1."
930
 
931
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:585 ../addons/transfer/myCRED-
932
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
933
- #: module-settings.php:617
934
  msgid "Point Types"
935
  msgstr "Tipo de Puntos"
936
 
937
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
938
  msgid "Select the point types that users can buy. You must select at least one!"
939
  msgstr ""
940
 
941
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:599
942
  msgid "Login Template"
943
  msgstr "Plantilla de Ingreso"
944
 
945
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603
946
  msgid "Content to show when a user is not logged in."
947
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
948
 
949
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
950
  msgid "Thank You Page"
951
  msgstr "Página de Agradecimiento"
952
 
953
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:616 ../addons/buy-creds/myCRED-
954
- #: addon-buy-creds.php:637
955
  msgid "Custom URL"
956
  msgstr "URL Personalizada"
957
 
958
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:621 ../addons/buy-creds/myCRED-
959
- #: addon-buy-creds.php:642
960
  msgid "Page"
961
  msgstr "Página"
962
 
963
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:634
964
  msgid "Cancellation Page"
965
  msgstr "Página de Cancelación"
966
 
967
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657
968
  msgid "Show seperate log for %_plural% purchases."
969
  msgstr "Mostrar registro distinto para compras de %_plural%."
970
 
971
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
972
  msgid "Gifting"
973
  msgstr "Regalar"
974
 
975
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:661
976
  #, php-format
977
  msgid "Allow users to buy %_plural% for other users."
978
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
979
 
980
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:662
981
  #, php-format
982
  msgid "Allow users to buy %_plural% for content authors."
983
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
984
 
985
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670 ../modules/mycred-module-
986
- #: hooks.php:2912
987
  msgid "Available Shortcodes"
988
  msgstr "Códigos cortos Disponibles"
989
 
990
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:752
991
  #, php-format
992
  msgid "%s Exchange Rate"
993
  msgstr ""
994
 
995
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:766
996
  msgid "Save Exchange Rates"
997
  msgstr ""
998
 
999
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:821
1000
  msgid "Exchange rate override saved"
1001
  msgstr ""
1002
 
1003
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
1004
  msgid "Payment completed"
1005
  msgstr ""
1006
 
1007
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842
1008
  #, php-format
1009
  msgid "%s Payment Gateways"
1010
  msgstr "%s Pasarelas de Pago"
1011
 
1012
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842 ../addons/buy-creds/myCRED-
1013
- #: addon-buy-creds.php:992
1014
  msgid "buyCRED Settings"
1015
  msgstr "Configuraciones de compraCRED"
1016
 
1017
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:863
1018
  msgid "Test Mode"
1019
  msgstr "Modo de Prueba"
1020
 
1021
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:865
1022
  msgid "Enabled"
1023
  msgstr "Habilitado"
1024
 
1025
  #. also, "Inhabilitar"
1026
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
1027
  msgid "Disabled"
1028
  msgstr "Deshactivado"
1029
 
1030
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:878
1031
  msgid "Sandbox Mode"
1032
  msgstr "Modo Entorno Aislado"
1033
 
1034
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
1035
  msgid "Enable for test purchases."
1036
  msgstr "Habilitar para compras de prueba."
1037
 
1038
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:898 ../addons/gateway/event-
1039
- #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:692
1040
  msgid "Update Settings"
1041
  msgstr "Actualizar Configuraciones"
1042
 
1043
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
1044
  msgid "More Gateways"
1045
  msgstr ""
1046
 
1047
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
1048
- #: 634
1049
  msgid "Date"
1050
  msgstr "Fecha"
1051
 
1052
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1053
  msgid "Payed"
1054
  msgstr "Pagado"
1055
 
1056
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
1057
  msgid "<strong>buy</strong>CRED Purchase Log"
1058
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
1059
 
1060
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
1061
  #: booking/mycred-eventespresso3.php:367
1062
  msgid "Gateway Settings"
1063
  msgstr "Configuraciones de la Pasarela de Pago"
1064
 
1065
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171 ../addons/sell-
1066
  #: content/myCRED-addon-sell-content.php:1209
1067
  msgid "No purchases found"
1068
  msgstr "No se encontro ninguna compra"
1069
 
1070
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1241 ../addons/buy-creds/myCRED-
1071
- #: addon-buy-creds.php:1354
1072
  msgid "This Add-on needs to setup before you can use this shortcode."
1073
  msgstr ""
1074
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
1075
  "corto (shortcode)."
1076
 
1077
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1260 ../addons/buy-creds/myCRED-
1078
- #: addon-buy-creds.php:1373
1079
  msgid "No gateways installed."
1080
  msgstr "Ningun pasarela de pago instalado."
1081
 
1082
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
1083
- #: addon-buy-creds.php:1374
1084
  msgid "Gateway does not exist."
1085
  msgstr "Puerta de enlace no existe."
1086
 
1087
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1309
1088
  msgid "Yourself"
1089
  msgstr "Tu mismo"
1090
 
1091
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1375
1092
  msgid "No active gateways found."
1093
  msgstr "No se encuentra ningun puerta de enlace activo."
1094
 
1095
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
1096
  msgid "The selected gateway is not active."
1097
  msgstr "La puerta de enlace seleccionada no esta activo."
1098
 
1099
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1423
1100
  #, php-format
1101
  msgid "Buy with %gateway%"
1102
  msgstr "Compra con %gateway%"
1103
 
1104
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1429 ../addons/sell-
1105
  #: content/myCRED-addon-sell-content.php:44
1106
  msgid "Buy Now"
1107
  msgstr "Compra Ahora"
1108
 
1109
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1474
1110
  msgid "No users found"
1111
  msgstr "Ningun Usuario Encontrado"
1112
 
1113
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1484
1114
  msgid "To"
1115
  msgstr "A"
1116
 
1117
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1501
1118
  msgid "Select Amount"
1119
  msgstr "Selecciona la Cantidad"
1120
 
1121
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1525
1122
  msgid "min."
1123
  msgstr "min."
1124
 
1125
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1126
  msgid "Select Gateway"
1127
  msgstr "Selecciona la Pasarela de Pago"
1128
 
1129
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1574 ../addons/gateway/event-
1130
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1131
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1132
  #: php:35
1133
  msgid "Pay Now"
1134
  msgstr "Pagar Ahora"
1135
 
1136
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../includes/mycred-install.
1137
- #: php:524
1138
  msgid "Cancel"
1139
  msgstr "Cancelar"
1140
 
1141
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1602 ../addons/ranks/myCRED-
1142
- #: addon-ranks.php:1601 ../modules/mycred-module-log.php:375 ../modules/mycred-
1143
- #: module-settings.php:589 ../modules/mycred-module-settings.php:604
1144
  msgid "Actions"
1145
  msgstr "Acciones"
1146
 
@@ -1278,7 +1279,7 @@ msgid "Continue to %s"
1278
  msgstr "Continuar a %s"
1279
 
1280
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1281
- #: addons/buy-creds/gateways/bitpay.php:226
1282
  msgid "Click here if you are not automatically redirected"
1283
  msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
1284
 
@@ -1338,148 +1339,142 @@ msgstr ""
1338
  msgid "December"
1339
  msgstr ""
1340
 
1341
- #: ../addons/buy-creds/gateways/bitpay.php:30 ../addons/buy-
1342
- #: creds/gateways/netbilling.php:35 ../addons/buy-creds/gateways/paypal-standard.
1343
- #: php:30 ../addons/buy-creds/gateways/skrill.php:35
1344
- msgid "Purchase of myCRED %plural%"
1345
- msgstr "Compra de myCRED %plural%"
1346
-
1347
- #: ../addons/buy-creds/gateways/bitpay.php:60 ../addons/buy-
1348
- #: creds/gateways/netbilling.php:88 ../addons/buy-creds/gateways/paypal-standard.
1349
- #: php:142 ../addons/buy-creds/gateways/skrill.php:119
1350
  #, php-format
1351
  msgid "Price mismatch. Expected: %s Received: %s"
1352
  msgstr ""
1353
 
1354
- #: ../addons/buy-creds/gateways/bitpay.php:66 ../addons/buy-creds/gateways/paypal-
1355
- #: standard.php:148 ../addons/buy-creds/gateways/skrill.php:125
1356
  #, php-format
1357
  msgid "Currency mismatch. Expected: %s Received: %s"
1358
  msgstr ""
1359
 
1360
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
1361
- #: creds/gateways/netbilling.php:94 ../addons/buy-creds/gateways/paypal-standard.
1362
- #: php:154 ../addons/buy-creds/gateways/skrill.php:131
1363
  #, php-format
1364
  msgid "Payment not completed. Received: %s"
1365
  msgstr ""
1366
 
1367
- #: ../addons/buy-creds/gateways/bitpay.php:83 ../addons/buy-
1368
- #: creds/gateways/netbilling.php:105 ../addons/buy-creds/gateways/paypal-standard.
1369
- #: php:165 ../addons/buy-creds/gateways/skrill.php:142 ../addons/buy-
1370
- #: creds/gateways/zombaio.php:174
1371
  msgid "Failed to credit users account."
1372
  msgstr ""
1373
 
1374
- #: ../addons/buy-creds/gateways/bitpay.php:160 ../addons/buy-
1375
- #: creds/gateways/netbilling.php:140 ../addons/buy-creds/gateways/paypal-standard.
1376
- #: php:202 ../addons/buy-creds/gateways/skrill.php:180 ../addons/buy-
1377
- #: creds/gateways/zombaio.php:201
1378
  msgid "Please setup this gateway before attempting to make a purchase!"
1379
  msgstr ""
1380
  "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
1381
  "compra!"
1382
 
1383
- #: ../addons/buy-creds/gateways/bitpay.php:212 ../addons/buy-
1384
- #: creds/gateways/bitpay.php:221 ../addons/buy-creds/gateways/netbilling.php:193 .
1385
- #: ./addons/buy-creds/gateways/paypal-standard.php:262 ../addons/buy-
1386
- #: creds/gateways/skrill.php:274 ../addons/buy-creds/gateways/zombaio.php:234
1387
  msgid "Processing payment &hellip;"
1388
  msgstr "Procesando el pago &hellip;"
1389
 
1390
- #: ../addons/buy-creds/gateways/bitpay.php:214
1391
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1392
  msgstr ""
1393
  "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
1394
  "el administrador del sitio!"
1395
 
1396
- #: ../addons/buy-creds/gateways/bitpay.php:215
1397
  msgid "Bitpay returned the following error message:"
1398
  msgstr "Bitpay comunico este mensaje de error:"
1399
 
1400
- #: ../addons/buy-creds/gateways/bitpay.php:246 ../includes/mycred-remote.php:551
1401
  msgid "API Key"
1402
  msgstr "Clave de la API"
1403
 
1404
- #: ../addons/buy-creds/gateways/bitpay.php:252 ../addons/buy-
1405
- #: creds/gateways/paypal-standard.php:279 ../addons/buy-creds/gateways/skrill.php:
1406
- #: 292
1407
  msgid "Currency"
1408
  msgstr "Moneda"
1409
 
1410
- #: ../addons/buy-creds/gateways/bitpay.php:255
1411
  msgid "Currency Code"
1412
  msgstr "Código de Moneda"
1413
 
1414
- #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1415
- #: creds/gateways/netbilling.php:229 ../addons/buy-creds/gateways/paypal-standard.
1416
- #: php:291 ../addons/buy-creds/gateways/skrill.php:311
1417
  msgid "Item Name"
1418
  msgstr "Nombre de Artículo"
1419
 
1420
- #: ../addons/buy-creds/gateways/bitpay.php:263 ../addons/buy-
1421
- #: creds/gateways/netbilling.php:233 ../addons/buy-creds/gateways/paypal-standard.
1422
- #: php:295 ../addons/buy-creds/gateways/skrill.php:315
1423
  msgid "Description of the item being purchased by the user."
1424
  msgstr "Descripción del artículo que el usuario esta comprando."
1425
 
1426
- #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1427
- #: creds/gateways/netbilling.php:236 ../addons/buy-creds/gateways/paypal-standard.
1428
- #: php:298 ../addons/buy-creds/gateways/skrill.php:318
1429
  msgid "Exchange Rates"
1430
  msgstr ""
1431
 
1432
- #: ../addons/buy-creds/gateways/bitpay.php:270
1433
  msgid "Transaction Speed"
1434
  msgstr "Velocidad de la Transacción"
1435
 
1436
- #: ../addons/buy-creds/gateways/bitpay.php:277
1437
  msgid "High"
1438
  msgstr "Alto"
1439
 
1440
- #: ../addons/buy-creds/gateways/bitpay.php:278
1441
  msgid "Medium"
1442
  msgstr "Medio"
1443
 
1444
- #: ../addons/buy-creds/gateways/bitpay.php:279
1445
  msgid "Low"
1446
  msgstr "Bajo"
1447
 
1448
- #: ../addons/buy-creds/gateways/bitpay.php:292
1449
  msgid "Full Notifications"
1450
  msgstr "Notificaciones Completas"
1451
 
1452
- #: ../addons/buy-creds/gateways/bitpay.php:299 ../includes/mycred-network.php:161
1453
  #: ../includes/mycred-network.php:175
1454
  msgid "No"
1455
  msgstr "No"
1456
 
1457
- #: ../addons/buy-creds/gateways/bitpay.php:300 ../includes/mycred-network.php:157
1458
  #: ../includes/mycred-network.php:171
1459
  msgid "Yes"
1460
  msgstr "Sí"
1461
 
1462
- #: ../addons/buy-creds/gateways/netbilling.php:210
1463
  msgid "Account ID"
1464
  msgstr "ID de la Cuenta"
1465
 
1466
- #: ../addons/buy-creds/gateways/netbilling.php:216
1467
  msgid "Site Tag"
1468
  msgstr "Etiqueta (tag) del Sitio"
1469
 
1470
- #: ../addons/buy-creds/gateways/netbilling.php:222
1471
  msgid "Order Integrity Key"
1472
  msgstr "Clave de Integridad del Pedido"
1473
 
1474
- #: ../addons/buy-creds/gateways/netbilling.php:226
1475
  msgid "Found under Step 12 on the Fraud Defense page."
1476
  msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
1477
 
1478
- #: ../addons/buy-creds/gateways/netbilling.php:240
1479
  msgid "Postback CGI URL"
1480
  msgstr "Devolución de la URL CGI"
1481
 
1482
- #: ../addons/buy-creds/gateways/netbilling.php:244
1483
  msgid ""
1484
  "For this gateway to work, you must login to your NETbilling account and edit "
1485
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
@@ -1490,99 +1485,104 @@ msgstr ""
1490
  "Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a la "
1491
  "dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
1492
 
1493
- #: ../addons/buy-creds/gateways/netbilling.php:288
1494
  msgid "Incorrect Credit Card number"
1495
  msgstr "Número de Tarjeta de Crédito Incorrecta"
1496
 
1497
- #: ../addons/buy-creds/gateways/netbilling.php:294
1498
  msgid "The credit card entered is past its expiration date."
1499
  msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
1500
 
1501
- #: ../addons/buy-creds/gateways/netbilling.php:297
1502
  msgid "The CVV2 number entered is not valid."
1503
  msgstr "El numero CVV2 teclado no es valido."
1504
 
1505
- #: ../addons/buy-creds/gateways/netbilling.php:304
1506
  msgid "The bank routing number entered is not valid."
1507
  msgstr "El número de ruta bancaria introducido no es valido."
1508
 
1509
- #: ../addons/buy-creds/gateways/netbilling.php:308
1510
  msgid "The bank account number entered is not valid."
1511
  msgstr "La cuenta bancaria introducida no es valida."
1512
 
1513
- #: ../addons/buy-creds/gateways/paypal-standard.php:188 ../addons/buy-
1514
- #: creds/gateways/skrill.php:166
1515
  msgid "Success"
1516
  msgstr "Exito"
1517
 
1518
- #: ../addons/buy-creds/gateways/paypal-standard.php:189 ../addons/buy-
1519
- #: creds/gateways/skrill.php:167
1520
  msgid "Thank you for your purchase"
1521
  msgstr "Gracias por su compra"
1522
 
1523
- #: ../addons/buy-creds/gateways/paypal-standard.php:257 ../addons/buy-
1524
- #: creds/gateways/skrill.php:221
1525
- msgid "Return to "
1526
- msgstr "Volver a"
 
1527
 
1528
- #: ../addons/buy-creds/gateways/paypal-standard.php:285
1529
  msgid "Account Email"
1530
  msgstr "Cuenta de Correo Electrónico"
1531
 
1532
- #: ../addons/buy-creds/gateways/skrill.php:257
 
 
 
 
1533
  msgid "Product:"
1534
  msgstr "Producto:"
1535
 
1536
- #: ../addons/buy-creds/gateways/skrill.php:266
1537
  msgid "Gift to:"
1538
  msgstr "Regalar a:"
1539
 
1540
- #: ../addons/buy-creds/gateways/skrill.php:267
1541
  msgid "(author)"
1542
  msgstr "(autor)"
1543
 
1544
- #: ../addons/buy-creds/gateways/skrill.php:299
1545
  msgid "Merchant Account Email"
1546
  msgstr "Correo electrónico de la Cuenta Comerciante"
1547
 
1548
- #: ../addons/buy-creds/gateways/skrill.php:305
1549
  msgid "Secret Word"
1550
  msgstr "Palabra Secreta"
1551
 
1552
- #: ../addons/buy-creds/gateways/skrill.php:322
1553
  msgid "Confirmation Email"
1554
  msgstr "Correo electrónico de confirmación"
1555
 
1556
- #: ../addons/buy-creds/gateways/skrill.php:325
1557
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1558
  msgstr ""
1559
  "Pide a Skrill que me mande un email de confirmación para cada compra "
1560
  "finalizada con éxito."
1561
 
1562
- #: ../addons/buy-creds/gateways/skrill.php:328
1563
  msgid "Checkout Page"
1564
  msgstr "Página de Pago"
1565
 
1566
- #: ../addons/buy-creds/gateways/skrill.php:331 ../addons/gateway/carts/mycred-
1567
- #: woocommerce.php:93 ../addons/ranks/myCRED-addon-ranks.php:1307 ..
1568
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1569
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1570
- #: php:592 ../modules/mycred-module-hooks.php:2876
1571
  msgid "Title"
1572
  msgstr "Titulo"
1573
 
1574
- #: ../addons/buy-creds/gateways/skrill.php:333
1575
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1576
  msgstr ""
1577
  "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
1578
  "título en la Página de Pagos Skrill. "
1579
 
1580
- #: ../addons/buy-creds/gateways/skrill.php:336 ../addons/buy-
1581
- #: creds/gateways/zombaio.php:269
1582
  msgid "Logo URL"
1583
  msgstr "URL del Logotipo"
1584
 
1585
- #: ../addons/buy-creds/gateways/skrill.php:338
1586
  msgid ""
1587
  "The URL to the image you want to use on the top of the gateway. For best "
1588
  "integration results we recommend you use logos with dimensions up to 200px "
@@ -1592,11 +1592,11 @@ msgstr ""
1592
  "Para obtener la mejor integración recomendamos que uses logotipos con "
1593
  "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
1594
 
1595
- #: ../addons/buy-creds/gateways/skrill.php:341
1596
  msgid "Confirmation Note"
1597
  msgstr "Nota de Confirmación"
1598
 
1599
- #: ../addons/buy-creds/gateways/skrill.php:343
1600
  msgid ""
1601
  "Optional text to show user once a transaction has been successfully "
1602
  "completed. This text is shown by Skrill."
@@ -1604,46 +1604,46 @@ msgstr ""
1604
  "Texto opcional a mostrar al usuario cuando la transacción haya sido "
1605
  "completado con éxito. Este texto sera mostrado por Skrill."
1606
 
1607
- #: ../addons/buy-creds/gateways/zombaio.php:143
1608
  #, php-format
1609
  msgid "Duplicate transaction. Received: %s"
1610
  msgstr ""
1611
 
1612
- #: ../addons/buy-creds/gateways/zombaio.php:149
1613
  #, php-format
1614
  msgid "Live transaction while debug mode is enabled! Received: %s"
1615
  msgstr ""
1616
 
1617
- #: ../addons/buy-creds/gateways/zombaio.php:251
1618
  msgid "Site ID"
1619
  msgstr "ID del Sitio de web"
1620
 
1621
  #. or "Contraseña de GW" not clear based on lack of context
1622
- #: ../addons/buy-creds/gateways/zombaio.php:257
1623
  msgid "GW Password"
1624
  msgstr "Contraseña GW"
1625
 
1626
- #: ../addons/buy-creds/gateways/zombaio.php:263
1627
  msgid "Pricing ID"
1628
  msgstr "ID de Precios"
1629
 
1630
- #: ../addons/buy-creds/gateways/zombaio.php:275
1631
  msgid "IP Verification"
1632
  msgstr "Verificación de IP"
1633
 
1634
- #: ../addons/buy-creds/gateways/zombaio.php:278
1635
  msgid "Do not verify that callbacks are coming from Zombaio."
1636
  msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
1637
 
1638
- #: ../addons/buy-creds/gateways/zombaio.php:281
1639
  msgid "Language"
1640
  msgstr "Lengua"
1641
 
1642
- #: ../addons/buy-creds/gateways/zombaio.php:288
1643
  msgid "Postback URL (ZScript)"
1644
  msgstr "Devolución de la URL (ZScript)"
1645
 
1646
- #: ../addons/buy-creds/gateways/zombaio.php:292
1647
  msgid ""
1648
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1649
  "address and click validate."
@@ -1734,8 +1734,8 @@ msgid "Used"
1734
  msgstr ""
1735
 
1736
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1737
- #: transfer.php:259 ../modules/mycred-module-hooks.php:1563 ../modules/mycred-
1738
- #: module-hooks.php:1854
1739
  msgid "Limits"
1740
  msgstr "imites"
1741
 
@@ -1744,15 +1744,15 @@ msgid "Expires"
1744
  msgstr "Expire"
1745
 
1746
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1747
- #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:811 ..
1748
- #: addons/email-notices/myCRED-addon-email-notices.php:1028 ..
1749
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1750
- #: addons/gateway/carts/mycred-woocommerce.php:121 ..
1751
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1752
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1753
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1754
- #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1041 ../addons/ranks/myCRED-
1755
- #: addon-ranks.php:1191 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1756
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1757
  #: includes/importers/mycred-cubepoints.php:365
1758
  msgid "Point Type"
@@ -1764,7 +1764,7 @@ msgid "not yet used"
1764
  msgstr "todavia no utilizado"
1765
 
1766
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1767
- #: 395 ../modules/mycred-module-hooks.php:2292
1768
  msgid "Total"
1769
  msgstr "Total"
1770
 
@@ -1926,16 +1926,12 @@ msgstr "Mensaje de éxito"
1926
  msgid "Message to show when a coupon was successfully deposited to a users account."
1927
  msgstr "Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
1928
 
1929
- #: ../addons/coupons/includes/mycred-coupon-functions.php:158
1930
- msgid "Coupon redemption"
1931
- msgstr "Canje de cupones"
1932
-
1933
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1934
  msgid "Apply Coupon"
1935
  msgstr "Aplica el Cupón"
1936
 
1937
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1938
- #: notices/myCRED-addon-email-notices.php:1264
1939
  msgid "Email Notice"
1940
  msgstr "Aviso por Correo Electrónico"
1941
 
@@ -2138,17 +2134,17 @@ msgstr ""
2138
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
2139
 
2140
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2141
- #: notices/myCRED-addon-email-notices.php:897
2142
  msgid "Email Settings"
2143
  msgstr "Configuracion de Correo Electrónico"
2144
 
2145
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2146
- #: notices/myCRED-addon-email-notices.php:1050
2147
  msgid "Senders Name:"
2148
  msgstr "Nombre del Remitente"
2149
 
2150
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2151
- #: notices/myCRED-addon-email-notices.php:1052
2152
  msgid "Senders Email:"
2153
  msgstr "Correo Electrónico del Remitente:"
2154
 
@@ -2172,163 +2168,163 @@ msgstr "Estilo de Correo Electrónico Predefinido"
2172
  msgid "Ignored if HTML is not allowed in emails."
2173
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
2174
 
2175
- #: ../addons/email-notices/myCRED-addon-email-notices.php:716
2176
  #, php-format
2177
  msgctxt "Badge Title - Level 1,2,3.."
2178
  msgid "%s - Level %d"
2179
  msgstr ""
2180
 
2181
- #: ../addons/email-notices/myCRED-addon-email-notices.php:806 ../addons/email-
2182
- #: notices/myCRED-addon-email-notices.php:946
2183
  msgid "Email Subject"
2184
  msgstr "Asunto del Correo Electrónico"
2185
 
2186
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
2187
  msgid "Not Active"
2188
  msgstr "No esta Activo"
2189
 
2190
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2191
  #, php-format
2192
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2193
  msgstr "Programada:<br /><strong>%1$s</strong>"
2194
 
2195
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
2196
  msgid "Active"
2197
  msgstr "Activo"
2198
 
2199
- #: ../addons/email-notices/myCRED-addon-email-notices.php:842
2200
  #, php-format
2201
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2202
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
2203
 
2204
- #: ../addons/email-notices/myCRED-addon-email-notices.php:852
2205
  msgid "Email is sent when"
2206
  msgstr "el Correo Electrónico se envia cuando"
2207
 
2208
- #: ../addons/email-notices/myCRED-addon-email-notices.php:854
2209
  msgid "Missing instance for this notice!"
2210
  msgstr "¡Falta una instancia para este aviso!"
2211
 
2212
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2213
- #: notices/myCRED-addon-email-notices.php:865 ../addons/email-notices/myCRED-
2214
- #: addon-email-notices.php:867
2215
  msgid "Sent To"
2216
  msgstr "Enviado A:"
2217
 
2218
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2219
- #: notices/myCRED-addon-email-notices.php:1016 ../includes/mycred-admin.php:754 ..
2220
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:562
2221
  msgid "User"
2222
  msgstr "Usuario"
2223
 
2224
- #: ../addons/email-notices/myCRED-addon-email-notices.php:865 ../addons/email-
2225
- #: notices/myCRED-addon-email-notices.php:1017
2226
  msgid "Administrator"
2227
  msgstr "Administrador"
2228
 
2229
- #: ../addons/email-notices/myCRED-addon-email-notices.php:867
2230
  msgid "Both Administrator and User"
2231
  msgstr "Tanto Administrador como Usuario"
2232
 
2233
- #: ../addons/email-notices/myCRED-addon-email-notices.php:877 ../addons/email-
2234
- #: notices/myCRED-addon-email-notices.php:1034
2235
  msgid "All types"
2236
  msgstr ""
2237
 
2238
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
2239
  msgid "Available Template Tags"
2240
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
2241
 
2242
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
2243
  msgid "Email Header"
2244
  msgstr "Encabezado del Correo Electrónico"
2245
 
2246
- #: ../addons/email-notices/myCRED-addon-email-notices.php:983
2247
  msgid "Send this email notice when..."
2248
  msgstr "Envia este aviso por correo electrónico cuando..."
2249
 
2250
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1014
2251
  msgid "Recipient:"
2252
  msgstr "Destinatario:"
2253
 
2254
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1018
2255
  msgid "Both"
2256
  msgstr "Ambos"
2257
 
2258
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1022 ..
2259
- #: addons/gateway/carts/mycred-woocommerce.php:161 ../modules/mycred-module-
2260
- #: settings.php:632 ../modules/mycred-module-settings.php:651 ../modules/mycred-
2261
- #: module-settings.php:674
2262
  msgid "Label"
2263
  msgstr "Etiqueta"
2264
 
2265
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1054
2266
  msgid "Reply-To Email:"
2267
  msgstr "Responder-A Correo Electrónico:"
2268
 
2269
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1060
2270
  msgid "Save"
2271
  msgstr "Guardar"
2272
 
2273
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1072
2274
  msgid "CSS Styling"
2275
  msgstr "Estilo CSS"
2276
 
2277
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1088
2278
  msgid "Site Related"
2279
  msgstr "Relacionado al Sitio"
2280
 
2281
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2282
  msgid "Your websites title"
2283
  msgstr "Titulo de tu pagina web"
2284
 
2285
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1090
2286
  msgid "Your websites address"
2287
  msgstr "Dirección de tu pagina web"
2288
 
2289
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2290
  msgid "Your websites tagline (description)"
2291
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2292
 
2293
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2294
  msgid "Your websites admin email"
2295
  msgstr "El correo electrónico de admin para tu pagina web"
2296
 
2297
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2298
  msgid "Total number of blog members"
2299
  msgstr "Número total de miembros del blog"
2300
 
2301
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1097
2302
  msgid "The users new balance"
2303
  msgstr ""
2304
 
2305
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1098
2306
  msgid "The users old balance"
2307
  msgstr ""
2308
 
2309
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1099
2310
  msgid "The amount of points gained or lost in this instance"
2311
  msgstr ""
2312
 
2313
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2314
  msgid "The log entry"
2315
  msgstr ""
2316
 
2317
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1175 ../addons/email-
2318
- #: notices/myCRED-addon-email-notices.php:1178 ../addons/email-notices/myCRED-
2319
- #: addon-email-notices.php:1184
2320
  msgid "Email Notice Updated."
2321
  msgstr ""
2322
 
2323
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1180
2324
  msgid "Email Notice Activated"
2325
  msgstr "Notificación atraves de Correo Electrónico Activado"
2326
 
2327
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1181
2328
  msgid "Email Notice Saved"
2329
  msgstr "Aviso por Correo Electrónico Guardado"
2330
 
2331
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1200
2332
  msgid ""
2333
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2334
  "are not yet ready to use this email notice!"
@@ -2336,24 +2332,24 @@ msgstr ""
2336
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2337
  "si aun no estás listo para utilizar este aviso por email!"
2338
 
2339
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1202
2340
  #, php-format
2341
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2342
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2343
 
2344
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1204
2345
  msgid "This email notice is active."
2346
  msgstr "Esta notificación de correo electrónico esta activada."
2347
 
2348
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1215
2349
  msgid "Settings saved."
2350
  msgstr ""
2351
 
2352
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1263
2353
  msgid "Unsubscribe"
2354
  msgstr ""
2355
 
2356
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1284
2357
  msgid "There are no email notifications yet."
2358
  msgstr ""
2359
 
@@ -2401,7 +2397,7 @@ msgid "Paid"
2401
  msgstr "Pagado"
2402
 
2403
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2404
- #: addons/gateway/carts/mycred-woocommerce.php:34 ../includes/mycred-network.php:
2405
  #: 50 ../includes/mycred-network.php:51
2406
  msgid "myCRED"
2407
  msgstr "myCRED"
@@ -2432,7 +2428,7 @@ msgid ""
2432
  msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balance_f%"
2433
 
2434
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2435
- #: addons/gateway/carts/mycred-woocommerce.php:259
2436
  msgid "Insufficient funds."
2437
  msgstr ""
2438
 
@@ -2472,22 +2468,22 @@ msgid "Gateway Logo URL"
2472
  msgstr "URL del Logotipo de la Pasarela de Pago"
2473
 
2474
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2475
- #: addons/gateway/carts/mycred-woocommerce.php:137
2476
  #, php-format
2477
  msgid "How much is 1 %_singular% worth in %currency%?"
2478
  msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
2479
 
2480
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2481
- #: addons/gateway/carts/mycred-woocommerce.php:142 ..
2482
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2483
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2484
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2485
- #: php:578 ../includes/mycred-shortcodes.php:976
2486
  msgid "Exchange Rate"
2487
  msgstr "Tipo de Cambio"
2488
 
2489
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2490
- #: addons/gateway/carts/mycred-woocommerce.php:170 ..
2491
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2492
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2493
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2500,7 +2496,7 @@ msgid "Percentage"
2500
  msgstr "Porcentaje"
2501
 
2502
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2503
- #: addons/gateway/carts/mycred-woocommerce.php:172 ..
2504
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2505
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2506
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2574,19 +2570,19 @@ msgstr ""
2574
  "pedido: ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. "
2575
  "No se permite el uso de HTML."
2576
 
2577
- #: ../addons/gateway/carts/mycred-woocommerce.php:35
2578
  msgid "Let users pay using their myCRED balance."
2579
  msgstr "Permite que los usuarios paguen mediante su saldo myCRED."
2580
 
2581
- #: ../addons/gateway/carts/mycred-woocommerce.php:86
2582
  msgid "Enable/Disable"
2583
  msgstr "Activar/Desactivar"
2584
 
2585
- #: ../addons/gateway/carts/mycred-woocommerce.php:88
2586
  msgid "Enable myCRED Payment"
2587
  msgstr "Activar Pago myCRED"
2588
 
2589
- #: ../addons/gateway/carts/mycred-woocommerce.php:90
2590
  msgid ""
2591
  "Users who are not logged in or excluded from using myCRED will not have "
2592
  "access to this gateway!"
@@ -2594,65 +2590,65 @@ msgstr ""
2594
  "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
2595
  "myCRED no tendran acceso a esta pasarela de pago!"
2596
 
2597
- #: ../addons/gateway/carts/mycred-woocommerce.php:95
2598
  msgid "Title to show for this payment option."
2599
  msgstr "Mostrar este titulo para esta opción de pago."
2600
 
2601
- #: ../addons/gateway/carts/mycred-woocommerce.php:96
2602
  msgid "Pay with myCRED"
2603
  msgstr "Paga con myCRED"
2604
 
2605
  #. not sure if it is "message to customers" or "message from customers"? current translation is "message to customers"
2606
- #: ../addons/gateway/carts/mycred-woocommerce.php:100
2607
  msgid "Customer Message"
2608
  msgstr "Mensaje a los Clientes"
2609
 
2610
- #: ../addons/gateway/carts/mycred-woocommerce.php:111 ..
2611
- #: addons/gateway/carts/mycred-woocommerce.php:183
2612
  msgid "Refund Log Template"
2613
  msgstr ""
2614
 
2615
- #: ../addons/gateway/carts/mycred-woocommerce.php:123
2616
  msgid "Select the point type users can use to pay."
2617
  msgstr "Elige el tipo de punto que los usuarios pueden utilizar para realizar pagos."
2618
 
2619
- #: ../addons/gateway/carts/mycred-woocommerce.php:149
2620
  msgid "Show Total"
2621
  msgstr "Mostrar Total"
2622
 
2623
- #: ../addons/gateway/carts/mycred-woocommerce.php:151
2624
  msgid "Show the final price in %_plural% ."
2625
  msgstr "Mostrar el precio final en %_plural%."
2626
 
2627
- #: ../addons/gateway/carts/mycred-woocommerce.php:154
2628
  msgid "Show in Cart"
2629
  msgstr "Mostrar en Carrito"
2630
 
2631
- #: ../addons/gateway/carts/mycred-woocommerce.php:155
2632
  msgid "Show on Checkout Page"
2633
  msgstr "Mostrar en la página de pago"
2634
 
2635
- #: ../addons/gateway/carts/mycred-woocommerce.php:156
2636
  msgid "Show in Cart and on Checkout Page"
2637
  msgstr "Mostrar en el Carrito y en la página de pago"
2638
 
2639
- #: ../addons/gateway/carts/mycred-woocommerce.php:163
2640
  msgid "Order Total in %_plural%"
2641
  msgstr "Total del Pedido en %_plural%"
2642
 
2643
- #: ../addons/gateway/carts/mycred-woocommerce.php:179
2644
  msgid "Log entry template for profit sharing."
2645
  msgstr "Plantilla para entradas de registro para el reparto de ganancias."
2646
 
2647
- #: ../addons/gateway/carts/mycred-woocommerce.php:185
2648
  msgid "Log entry template for refunds of profit shares."
2649
  msgstr ""
2650
 
2651
- #: ../addons/gateway/carts/mycred-woocommerce.php:211
2652
  msgid "myCRED Payment"
2653
  msgstr "Pago myCRED"
2654
 
2655
- #: ../addons/gateway/carts/mycred-woocommerce.php:212
2656
  #, php-format
2657
  msgid ""
2658
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
@@ -2663,21 +2659,27 @@ msgstr ""
2663
  "ten en cuenta que los usuarios con fondos insuficientes y los usuarios que "
2664
  "no han iniciado sesión no verán esta pasarela de pago en la página de pago."
2665
 
2666
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
2667
  msgid "You must be logged in to pay with %_plural%"
2668
  msgstr "Debes haber iniciado sesión para pagar con %_plural%"
2669
 
2670
- #: ../addons/gateway/carts/mycred-woocommerce.php:239
2671
  msgid "You can not use this gateway. Please try a different payment option."
2672
  msgstr ""
2673
  "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
2674
  "diferente."
2675
 
2676
- #: ../addons/gateway/carts/mycred-woocommerce.php:396
 
 
 
 
 
 
2677
  msgid "Your account has successfully been charged."
2678
  msgstr "Su cuenta ha sido cambiado con éxito."
2679
 
2680
- #: ../addons/gateway/carts/mycred-woocommerce.php:708 ..
2681
  #: addons/gateway/carts/mycred-wpecommerce.php:131
2682
  msgid "Your current balance"
2683
  msgstr "Tu saldo actual"
@@ -2822,7 +2824,7 @@ msgid "Users must be logged in to use this gateway!"
2822
  msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
2823
 
2824
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2825
- #: modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2826
  msgid "Log"
2827
  msgstr "Registro"
2828
 
@@ -2922,8 +2924,8 @@ msgid "Reject"
2922
  msgstr "Rechazar"
2923
 
2924
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2925
- #: modules/mycred-module-log.php:522 ../modules/mycred-module-settings.php:636 ..
2926
- #: modules/mycred-module-settings.php:655
2927
  msgid "Delete"
2928
  msgstr "Borrar"
2929
 
@@ -3058,8 +3060,8 @@ msgid "Use the included CSS Styling for notifications."
3058
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
3059
 
3060
  #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
3061
- #: addons/ranks/myCRED-addon-ranks.php:1417 ../addons/ranks/myCRED-addon-ranks.
3062
- #: php:1463 ../modules/mycred-module-buddypress.php:428
3063
  msgid "Template"
3064
  msgstr "Plantilla"
3065
 
@@ -3096,175 +3098,175 @@ msgid ""
3096
  "to user. Use zero to disable."
3097
  msgstr ""
3098
 
3099
- #: ../addons/ranks/myCRED-addon-ranks.php:211 ../addons/ranks/myCRED-addon-ranks.
3100
- #: php:212 ../addons/ranks/myCRED-addon-ranks.php:440 ../addons/ranks/myCRED-
3101
- #: addon-ranks.php:449 ../addons/ranks/myCRED-addon-ranks.php:455 ..
3102
- #: addons/ranks/myCRED-addon-ranks.php:831 ../addons/ranks/myCRED-addon-ranks.
3103
- #: php:1299 ../addons/ranks/myCRED-addon-ranks.php:1590
3104
  msgid "Ranks"
3105
  msgstr "Rangos"
3106
 
3107
- #: ../addons/ranks/myCRED-addon-ranks.php:422
3108
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3109
  msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
3110
 
3111
- #: ../addons/ranks/myCRED-addon-ranks.php:423
3112
  msgid "Are you sure you want to re-assign user ranks?"
3113
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
3114
 
3115
- #: ../addons/ranks/myCRED-addon-ranks.php:438
3116
  #, php-format
3117
  msgid "Ranks for %s"
3118
  msgstr ""
3119
 
3120
- #: ../addons/ranks/myCRED-addon-ranks.php:444 ../addons/ranks/myCRED-addon-ranks.
3121
- #: php:831
3122
  msgid "Rank"
3123
  msgstr "Rango"
3124
 
3125
- #: ../addons/ranks/myCRED-addon-ranks.php:446
3126
  msgid "Add New Rank"
3127
  msgstr "Añadir Nuevo Rango"
3128
 
3129
- #: ../addons/ranks/myCRED-addon-ranks.php:447
3130
  msgid "Edit Rank"
3131
  msgstr "Editar Rango"
3132
 
3133
- #: ../addons/ranks/myCRED-addon-ranks.php:448
3134
  msgid "New Rank"
3135
  msgstr "Nuevo Rango"
3136
 
3137
- #: ../addons/ranks/myCRED-addon-ranks.php:450
3138
  msgid "View Rank"
3139
  msgstr "Ver Rango"
3140
 
3141
- #: ../addons/ranks/myCRED-addon-ranks.php:451
3142
  msgid "Search Ranks"
3143
  msgstr "Búsqueda de Rangos"
3144
 
3145
- #: ../addons/ranks/myCRED-addon-ranks.php:452
3146
  msgid "No ranks found"
3147
  msgstr "Ningun rango encontrado"
3148
 
3149
- #: ../addons/ranks/myCRED-addon-ranks.php:453
3150
  msgid "No ranks found in Trash"
3151
  msgstr "Ningun rango encontrao el la papelera"
3152
 
3153
- #: ../addons/ranks/myCRED-addon-ranks.php:537
3154
  #, php-format
3155
  msgid "Completed - Total of %d users effected"
3156
  msgstr "Completado - Un total %d usuarios afectados"
3157
 
3158
- #: ../addons/ranks/myCRED-addon-ranks.php:975 ../addons/ranks/myCRED-addon-ranks.
3159
- #: php:976 ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-
3160
- #: addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ..
3161
- #: addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.
3162
- #: php:983 ../addons/ranks/myCRED-addon-ranks.php:984
3163
  msgid "Rank Updated."
3164
  msgstr ""
3165
 
3166
- #: ../addons/ranks/myCRED-addon-ranks.php:981
3167
  msgid "Rank Enabled"
3168
  msgstr ""
3169
 
3170
- #: ../addons/ranks/myCRED-addon-ranks.php:982
3171
  msgid "Rank Saved"
3172
  msgstr "Rango Guardado"
3173
 
3174
- #: ../addons/ranks/myCRED-addon-ranks.php:1019
3175
  #, php-format
3176
  msgid "<strong>Rank:</strong> %s"
3177
  msgstr ""
3178
 
3179
- #: ../addons/ranks/myCRED-addon-ranks.php:1035 ../addons/ranks/myCRED-addon-ranks.
3180
- #: php:1116
3181
  msgid "Rank Title"
3182
  msgstr "Titulo de Rango"
3183
 
3184
- #: ../addons/ranks/myCRED-addon-ranks.php:1036
3185
  msgid "Logo"
3186
  msgstr "Logotipo"
3187
 
3188
- #: ../addons/ranks/myCRED-addon-ranks.php:1037
3189
  msgid "Requirement"
3190
  msgstr "Requisito"
3191
 
3192
- #: ../addons/ranks/myCRED-addon-ranks.php:1062
3193
  msgid "No Logo Set"
3194
  msgstr "No hay Logotipo Configurado"
3195
 
3196
- #: ../addons/ranks/myCRED-addon-ranks.php:1077 ../addons/ranks/myCRED-addon-ranks.
3197
- #: php:1082
3198
  msgid "Any Value"
3199
  msgstr "Cualquier Valor"
3200
 
3201
- #: ../addons/ranks/myCRED-addon-ranks.php:1084
3202
  msgid "Maximum %plural%"
3203
  msgstr "Maximo %plural%"
3204
 
3205
- #: ../addons/ranks/myCRED-addon-ranks.php:1129
3206
  msgid "Rank Settings"
3207
  msgstr "Configuración de Rango"
3208
 
3209
- #: ../addons/ranks/myCRED-addon-ranks.php:1182
3210
  msgid "Minimum %plural% to reach this rank"
3211
  msgstr "Minimo %plural% para llegar a este rango"
3212
 
3213
- #: ../addons/ranks/myCRED-addon-ranks.php:1186
3214
  msgid "Maximum %plural% to be included in this rank"
3215
  msgstr "Maximo %plural% para ser incluido en este rango"
3216
 
3217
- #: ../addons/ranks/myCRED-addon-ranks.php:1204
3218
  msgid "All Published Ranks"
3219
  msgstr "Todos los Rangos Publicados"
3220
 
3221
- #: ../addons/ranks/myCRED-addon-ranks.php:1214 ../addons/ranks/myCRED-addon-ranks.
3222
- #: php:1216
3223
  msgid "Not Set"
3224
  msgstr "No Configurado"
3225
 
3226
- #: ../addons/ranks/myCRED-addon-ranks.php:1222
3227
  msgid "No Ranks found"
3228
  msgstr "Ningun rango encontrado"
3229
 
3230
- #: ../addons/ranks/myCRED-addon-ranks.php:1304
3231
  msgid "Rank Features"
3232
  msgstr "Caracteristicas de los Rangos"
3233
 
3234
- #: ../addons/ranks/myCRED-addon-ranks.php:1308
3235
  msgid "%plural% requirement"
3236
  msgstr "%plural% requisito"
3237
 
3238
- #: ../addons/ranks/myCRED-addon-ranks.php:1309
3239
  msgid "Featured Image (Logo)"
3240
  msgstr "Imagen Principal (Logotipo)"
3241
 
3242
- #: ../addons/ranks/myCRED-addon-ranks.php:1311
3243
  msgid "Content"
3244
  msgstr "Contenido"
3245
 
3246
- #: ../addons/ranks/myCRED-addon-ranks.php:1313
3247
  msgid "Excerpt"
3248
  msgstr "Extracto"
3249
 
3250
- #: ../addons/ranks/myCRED-addon-ranks.php:1315
3251
  msgid "Comments"
3252
  msgstr "Comentario"
3253
 
3254
- #: ../addons/ranks/myCRED-addon-ranks.php:1317
3255
  msgid "Page Attributes"
3256
  msgstr "Atributos de Página"
3257
 
3258
- #: ../addons/ranks/myCRED-addon-ranks.php:1319
3259
  msgid "Custom Fields"
3260
  msgstr "Campo Personalizado"
3261
 
3262
- #: ../addons/ranks/myCRED-addon-ranks.php:1323
3263
  msgid "Public"
3264
  msgstr "Público"
3265
 
3266
  #. This is not clear, especially the second sentence (fragment)!
3267
- #: ../addons/ranks/myCRED-addon-ranks.php:1327
3268
  msgid ""
3269
  "If you want to create a template archive for each rank, you must select to "
3270
  "have ranks public. Defaults to disabled."
@@ -3272,28 +3274,28 @@ msgstr ""
3272
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
3273
  "los rangos sean público. Los valores predeterminados desactivado."
3274
 
3275
- #: ../addons/ranks/myCRED-addon-ranks.php:1330
3276
  msgid "Archive URL"
3277
  msgstr "URL del Archivo"
3278
 
3279
- #: ../addons/ranks/myCRED-addon-ranks.php:1334
3280
  msgid "Ignored if Ranks are not public"
3281
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
3282
 
3283
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
3284
- #: ../addons/ranks/myCRED-addon-ranks.php:1337
3285
  msgid "Display Order"
3286
  msgstr "Orden de Visualización"
3287
 
3288
- #: ../addons/ranks/myCRED-addon-ranks.php:1345
3289
  msgid "Ascending - Lowest rank to highest"
3290
  msgstr "Ascendente - Rango más bajo a lo más alto"
3291
 
3292
- #: ../addons/ranks/myCRED-addon-ranks.php:1346
3293
  msgid "Descending - Highest rank to lowest"
3294
  msgstr "Descendiente - Rango más alto al más bajo"
3295
 
3296
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
3297
  msgid ""
3298
  "Select in what order ranks should be displayed in your admin area and/or "
3299
  "front if ranks are \"Public\""
@@ -3301,15 +3303,15 @@ msgstr ""
3301
  "Elige en que orden se debe mostrar los rangos en tu area de administrador "
3302
  "y/o en el frente si los rangos son \"Público\""
3303
 
3304
- #: ../addons/ranks/myCRED-addon-ranks.php:1363
3305
  msgid "Rank Basis"
3306
  msgstr "Base de Rango"
3307
 
3308
- #: ../addons/ranks/myCRED-addon-ranks.php:1366
3309
  msgid "Users are ranked according to their current balance."
3310
  msgstr "Los usuarios se clasifican según su saldo actual."
3311
 
3312
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
3313
  msgid ""
3314
  "Users are ranked according to the total amount of %_plural% they have "
3315
  "accumulated."
@@ -3317,18 +3319,18 @@ msgstr ""
3317
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
3318
  "acumulado."
3319
 
3320
- #: ../addons/ranks/myCRED-addon-ranks.php:1373 ../addons/ranks/myCRED-addon-ranks.
3321
- #: php:1378
3322
  msgid "Calculate Totals"
3323
  msgstr "Calcular Totales"
3324
 
3325
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3326
  msgid ""
3327
  "Use this button to calculate or recalculate your users totals. If not used, "
3328
  "the users current balance will be used as a starting point."
3329
  msgstr ""
3330
 
3331
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3332
  msgid ""
3333
  "Once a users total has been calculated, they will be assigned to their "
3334
  "appropriate roles. For this reason, it is highly recommended that you first "
@@ -3338,7 +3340,7 @@ msgstr ""
3338
  "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
3339
  "que primero configures los rangos!"
3340
 
3341
- #: ../addons/ranks/myCRED-addon-ranks.php:1377
3342
  msgid ""
3343
  "Depending on your log size and number of users this process may take a while."
3344
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
@@ -3349,61 +3351,61 @@ msgstr ""
3349
  "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
3350
  "completado!"
3351
 
3352
- #: ../addons/ranks/myCRED-addon-ranks.php:1394 ../addons/ranks/myCRED-addon-ranks.
3353
- #: php:1440 ../modules/mycred-module-buddypress.php:391
3354
  msgid "Do not show."
3355
  msgstr "No mostrar."
3356
 
3357
- #: ../addons/ranks/myCRED-addon-ranks.php:1395
3358
  msgid "Include in Profile Header."
3359
  msgstr "Incluir en Encabezado del Perfil"
3360
 
3361
- #: ../addons/ranks/myCRED-addon-ranks.php:1397
3362
  msgid "Include under the \"Profile\" tab and Profile Header."
3363
  msgstr "Incluir en la pestanã \"Perfil\" y Encabezado de Perfil"
3364
 
3365
- #: ../addons/ranks/myCRED-addon-ranks.php:1402
3366
  msgid "Rank in BuddyPress"
3367
  msgstr "Rango en BuddyPress"
3368
 
3369
- #: ../addons/ranks/myCRED-addon-ranks.php:1419 ../addons/ranks/myCRED-addon-ranks.
3370
- #: php:1465
3371
  #, php-format
3372
  msgid ""
3373
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3374
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3375
  msgstr ""
3376
 
3377
- #: ../addons/ranks/myCRED-addon-ranks.php:1441
3378
  msgid "Include in Topic Replies"
3379
  msgstr ""
3380
 
3381
- #: ../addons/ranks/myCRED-addon-ranks.php:1443
3382
  msgid "Include in Topic Replies and Profile"
3383
  msgstr ""
3384
 
3385
- #: ../addons/ranks/myCRED-addon-ranks.php:1448
3386
  msgid "Rank in bbPress"
3387
  msgstr ""
3388
 
3389
- #: ../addons/ranks/myCRED-addon-ranks.php:1528
3390
  msgid "Script Communication Error"
3391
  msgstr "Error del Script de Comunicación"
3392
 
3393
- #: ../addons/ranks/myCRED-addon-ranks.php:1593 ../modules/mycred-module-settings.
3394
- #: php:596
3395
  msgid "User Meta Key"
3396
  msgstr "Clave Meta del Usuario"
3397
 
3398
- #: ../addons/ranks/myCRED-addon-ranks.php:1597
3399
  msgid "No. of ranks"
3400
  msgstr "Numero de Rangos"
3401
 
3402
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3403
  msgid "Remove All Ranks"
3404
  msgstr "Quitar todos los Rangos"
3405
 
3406
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3407
  msgid "Assign Ranks to Users"
3408
  msgstr "Asignar Rango a los Usuarios"
3409
 
@@ -3609,8 +3611,8 @@ msgid "View Log"
3609
  msgstr "Ver Registro"
3610
 
3611
  #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3612
- #: modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ..
3613
- #: modules/mycred-module-hooks.php:27
3614
  msgid "Hooks"
3615
  msgstr "Ganchos"
3616
 
@@ -3648,17 +3650,17 @@ msgid "Total Spent: %s"
3648
  msgstr ""
3649
 
3650
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3651
- #: includes/mycred-log.php:837 ../modules/mycred-module-buddypress.php:222
3652
  msgid "Today"
3653
  msgstr "Hoy"
3654
 
3655
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3656
- #: includes/mycred-log.php:839 ../modules/mycred-module-buddypress.php:224
3657
  msgid "This Week"
3658
  msgstr "Esta Semana"
3659
 
3660
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3661
- #: includes/mycred-log.php:840 ../modules/mycred-module-buddypress.php:225
3662
  msgid "This Month"
3663
  msgstr "Este Mes"
3664
 
@@ -3725,7 +3727,7 @@ msgid "You have exceeded your %limit% transfer limit."
3725
  msgstr "Has excedido tu limite de transferencia de %limit%."
3726
 
3727
  #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3728
- #: php:2446
3729
  msgid "Transfer"
3730
  msgstr "Transferir"
3731
 
@@ -3764,7 +3766,7 @@ msgstr ""
3764
  "transferencias hasta que se haga esto."
3765
 
3766
  #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3767
- #: php:2574
3768
  msgid "Insufficient Funds. Please try a lower amount."
3769
  msgstr ""
3770
 
@@ -3922,11 +3924,11 @@ msgstr "correo electrónico"
3922
  msgid "recipients %s"
3923
  msgstr "destinatarios %s"
3924
 
3925
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:219
3926
  msgid "To:"
3927
  msgstr "A:"
3928
 
3929
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3930
  msgid "Amount:"
3931
  msgstr "Cantidad:"
3932
 
@@ -4122,394 +4124,394 @@ msgstr "y"
4122
  msgid "Available Template Tags:"
4123
  msgstr "Etiquetas de Plantilla Disponibles:"
4124
 
4125
- #: ../includes/mycred-functions.php:1686
4126
  msgid "Entire Log"
4127
  msgstr "Todo el Registro"
4128
 
4129
- #: ../includes/mycred-functions.php:1691 ../includes/mycred-functions.php:1692
4130
  msgid "Displayed Rows"
4131
  msgstr "Filas Mostradas"
4132
 
4133
- #: ../includes/mycred-functions.php:1699
4134
  msgid "Search Results"
4135
  msgstr "Resultados de la Búsqueda"
4136
 
4137
- #: ../includes/mycred-functions.php:1700
4138
  msgid "My Entire Log"
4139
  msgstr "Mi Registro Entero"
4140
 
4141
- #: ../includes/mycred-functions.php:1867
4142
  msgid "ref empty"
4143
  msgstr "ref vacío"
4144
 
4145
- #: ../includes/mycred-functions.php:1875
4146
  msgid "incorrect user id format"
4147
  msgstr "Formato incorrecto para id del usuario"
4148
 
4149
- #: ../includes/mycred-functions.php:1888
4150
  msgid "incorrect unix timestamp (from):"
4151
  msgstr "erroneo marca de tiempo de unix (desde):"
4152
 
4153
- #: ../includes/mycred-functions.php:1897
4154
  msgid "incorrect unix timestamp (to):"
4155
  msgstr "erroneo marca de tiempo de unix (a):"
4156
 
4157
- #: ../includes/mycred-functions.php:2306
4158
  msgid "Website Registration"
4159
  msgstr ""
4160
 
4161
- #: ../includes/mycred-functions.php:2307
4162
  msgid "Website Visit"
4163
  msgstr ""
4164
 
4165
- #: ../includes/mycred-functions.php:2308
4166
  msgid "Viewing Content (Member)"
4167
  msgstr ""
4168
 
4169
- #: ../includes/mycred-functions.php:2309
4170
  msgid "Viewing Content (Author)"
4171
  msgstr ""
4172
 
4173
- #: ../includes/mycred-functions.php:2310
4174
  msgid "Logging in"
4175
  msgstr ""
4176
 
4177
- #: ../includes/mycred-functions.php:2311
4178
  msgid "Publishing Content"
4179
  msgstr ""
4180
 
4181
- #: ../includes/mycred-functions.php:2312 ../modules/mycred-module-hooks.php:1512
4182
  msgid "Approved Comment"
4183
  msgstr "Comentario Aprobado"
4184
 
4185
- #: ../includes/mycred-functions.php:2313
4186
  msgid "Unapproved Comment"
4187
  msgstr ""
4188
 
4189
- #: ../includes/mycred-functions.php:2314
4190
  msgid "SPAM Comment"
4191
  msgstr ""
4192
 
4193
- #: ../includes/mycred-functions.php:2315
4194
  msgid "Deleted Comment"
4195
  msgstr ""
4196
 
4197
- #: ../includes/mycred-functions.php:2316
4198
  msgid "Link Click"
4199
  msgstr ""
4200
 
4201
- #: ../includes/mycred-functions.php:2317
4202
  msgid "Watching Video"
4203
  msgstr ""
4204
 
4205
- #: ../includes/mycred-functions.php:2318
4206
  msgid "Visitor Referral"
4207
  msgstr ""
4208
 
4209
- #: ../includes/mycred-functions.php:2319
4210
  msgid "Signup Referral"
4211
  msgstr ""
4212
 
4213
- #: ../includes/mycred-functions.php:2323
4214
  msgid "New Profile Update"
4215
  msgstr ""
4216
 
4217
- #: ../includes/mycred-functions.php:2324
4218
  msgid "Profile Update Removal"
4219
  msgstr ""
4220
 
4221
- #: ../includes/mycred-functions.php:2325
4222
  msgid "Avatar Upload"
4223
  msgstr ""
4224
 
4225
- #: ../includes/mycred-functions.php:2326
4226
  msgid "New Friendship"
4227
  msgstr ""
4228
 
4229
- #: ../includes/mycred-functions.php:2327
4230
  msgid "Ended Friendship"
4231
  msgstr ""
4232
 
4233
- #: ../includes/mycred-functions.php:2328
4234
  msgid "New Profile Comment"
4235
  msgstr ""
4236
 
4237
- #: ../includes/mycred-functions.php:2329
4238
  msgid "Profile Comment Deletion"
4239
  msgstr ""
4240
 
4241
- #: ../includes/mycred-functions.php:2330
4242
  msgid "New Message"
4243
  msgstr ""
4244
 
4245
- #: ../includes/mycred-functions.php:2331
4246
  msgid "Sending Gift"
4247
  msgstr ""
4248
 
4249
- #: ../includes/mycred-functions.php:2332
4250
  msgid "New Group"
4251
  msgstr ""
4252
 
4253
- #: ../includes/mycred-functions.php:2333
4254
  msgid "Deleted Group"
4255
  msgstr ""
4256
 
4257
- #: ../includes/mycred-functions.php:2334
4258
  msgid "New Group Forum Topic"
4259
  msgstr ""
4260
 
4261
- #: ../includes/mycred-functions.php:2335
4262
  msgid "Edit Group Forum Topic"
4263
  msgstr ""
4264
 
4265
- #: ../includes/mycred-functions.php:2336
4266
  msgid "New Group Forum Post"
4267
  msgstr ""
4268
 
4269
- #: ../includes/mycred-functions.php:2337
4270
  msgid "Edit Group Forum Post"
4271
  msgstr ""
4272
 
4273
- #: ../includes/mycred-functions.php:2338
4274
  msgid "Joining Group"
4275
  msgstr ""
4276
 
4277
- #: ../includes/mycred-functions.php:2339
4278
  msgid "Leaving Group"
4279
  msgstr ""
4280
 
4281
- #: ../includes/mycred-functions.php:2340
4282
  msgid "New Group Avatar"
4283
  msgstr ""
4284
 
4285
- #: ../includes/mycred-functions.php:2341
4286
  msgid "New Group Comment"
4287
  msgstr ""
4288
 
4289
- #: ../includes/mycred-functions.php:2345 ../plugins/mycred-hook-buddypress-media.
4290
  #: php:205
4291
  msgid "Photo Upload"
4292
  msgstr "Subir Foto"
4293
 
4294
- #: ../includes/mycred-functions.php:2346 ../plugins/mycred-hook-buddypress-media.
4295
  #: php:219
4296
  msgid "Video Upload"
4297
  msgstr "Subir Video"
4298
 
4299
- #: ../includes/mycred-functions.php:2347 ../plugins/mycred-hook-buddypress-media.
4300
  #: php:233
4301
  msgid "Music Upload"
4302
  msgstr "Subir Música"
4303
 
4304
- #: ../includes/mycred-functions.php:2351
4305
  msgid "New Link"
4306
  msgstr ""
4307
 
4308
- #: ../includes/mycred-functions.php:2352
4309
  msgid "Link Voting"
4310
  msgstr ""
4311
 
4312
- #: ../includes/mycred-functions.php:2353
4313
  msgid "Link Update"
4314
  msgstr ""
4315
 
4316
- #: ../includes/mycred-functions.php:2357
4317
  msgid "New Forum (bbPress)"
4318
  msgstr ""
4319
 
4320
- #: ../includes/mycred-functions.php:2358
4321
  msgid "New Forum Topic (bbPress)"
4322
  msgstr ""
4323
 
4324
- #: ../includes/mycred-functions.php:2359
4325
  msgid "Favorited Topic (bbPress)"
4326
  msgstr ""
4327
 
4328
- #: ../includes/mycred-functions.php:2360
4329
  msgid "New Topic Reply (bbPress)"
4330
  msgstr ""
4331
 
4332
- #: ../includes/mycred-functions.php:2364
4333
  msgid "Form Submission (Contact Form 7)"
4334
  msgstr ""
4335
 
4336
- #: ../includes/mycred-functions.php:2367
4337
  msgid "Form Submission (Gravity Form)"
4338
  msgstr ""
4339
 
4340
- #: ../includes/mycred-functions.php:2370
4341
  msgid "New Forum Topic (SimplePress)"
4342
  msgstr ""
4343
 
4344
- #: ../includes/mycred-functions.php:2371
4345
  msgid "New Forum Post (SimplePress)"
4346
  msgstr ""
4347
 
4348
- #: ../includes/mycred-functions.php:2380
4349
  msgid "Affiliate Signup (AffiliateWP)"
4350
  msgstr ""
4351
 
4352
- #: ../includes/mycred-functions.php:2381
4353
  msgid "Referred Visit (AffiliateWP)"
4354
  msgstr ""
4355
 
4356
- #: ../includes/mycred-functions.php:2382
4357
  msgid "Affiliate Referral (AffiliateWP)"
4358
  msgstr ""
4359
 
4360
- #: ../includes/mycred-functions.php:2383
4361
  msgid "Referral Refund (AffiliateWP)"
4362
  msgstr ""
4363
 
4364
- #: ../includes/mycred-functions.php:2387 ../plugins/mycred-hook-wp-postratings.
4365
  #: php:150
4366
  msgid "Adding a Rating"
4367
  msgstr ""
4368
 
4369
- #: ../includes/mycred-functions.php:2388 ../plugins/mycred-hook-wp-postratings.
4370
  #: php:169
4371
  msgid "Receiving a Rating"
4372
  msgstr ""
4373
 
4374
- #: ../includes/mycred-functions.php:2392
4375
  msgid "Poll Voting"
4376
  msgstr ""
4377
 
4378
- #: ../includes/mycred-functions.php:2395
4379
  msgid "Sending an Invite"
4380
  msgstr ""
4381
 
4382
- #: ../includes/mycred-functions.php:2396
4383
  msgid "Accepting an Invite"
4384
  msgstr ""
4385
 
4386
- #: ../includes/mycred-functions.php:2402
4387
  msgid "Banking Payout"
4388
  msgstr ""
4389
 
4390
- #: ../includes/mycred-functions.php:2405
4391
  msgid "buyCRED Purchase (PayPal Standard)"
4392
  msgstr ""
4393
 
4394
- #: ../includes/mycred-functions.php:2406
4395
  msgid "buyCRED Purchase (Skrill)"
4396
  msgstr ""
4397
 
4398
- #: ../includes/mycred-functions.php:2407
4399
  msgid "buyCRED Purchase (Zombaio)"
4400
  msgstr ""
4401
 
4402
- #: ../includes/mycred-functions.php:2408
4403
  msgid "buyCRED Purchase (NETBilling)"
4404
  msgstr ""
4405
 
4406
- #: ../includes/mycred-functions.php:2409
4407
  msgid "buyCRED Purchase (BitPay)"
4408
  msgstr ""
4409
 
4410
- #: ../includes/mycred-functions.php:2414
4411
  msgid "Coupon Purchase"
4412
  msgstr ""
4413
 
4414
- #: ../includes/mycred-functions.php:2418
4415
  msgid "Store Purchase (WooCommerce)"
4416
  msgstr ""
4417
 
4418
- #: ../includes/mycred-functions.php:2419
4419
  msgid "Store Reward (WooCommerce)"
4420
  msgstr ""
4421
 
4422
- #: ../includes/mycred-functions.php:2420
4423
  msgid "Product Review (WooCommerce)"
4424
  msgstr ""
4425
 
4426
- #: ../includes/mycred-functions.php:2423
4427
  msgid "Store Purchase (MarketPress)"
4428
  msgstr ""
4429
 
4430
- #: ../includes/mycred-functions.php:2424
4431
  msgid "Store Reward (MarketPress)"
4432
  msgstr ""
4433
 
4434
- #: ../includes/mycred-functions.php:2427
4435
  msgid "Store Purchase (WP E-Commerce)"
4436
  msgstr ""
4437
 
4438
- #: ../includes/mycred-functions.php:2433
4439
  msgid "Event Payment (Event Espresso)"
4440
  msgstr ""
4441
 
4442
- #: ../includes/mycred-functions.php:2434
4443
  msgid "Event Sale (Event Espresso)"
4444
  msgstr ""
4445
 
4446
- #: ../includes/mycred-functions.php:2438
4447
  msgid "Event Payment (Events Manager)"
4448
  msgstr ""
4449
 
4450
- #: ../includes/mycred-functions.php:2439
4451
  msgid "Event Sale (Events Manager)"
4452
  msgstr ""
4453
 
4454
- #: ../includes/mycred-functions.php:2443
4455
  msgid "Content Purchase / Sale"
4456
  msgstr ""
4457
 
4458
- #: ../includes/mycred-functions.php:2450
4459
  msgid "Manual Adjustment by Admin"
4460
  msgstr ""
4461
 
4462
- #: ../includes/mycred-functions.php:2520 ../includes/mycred-shortcodes.php:924
4463
  msgid "Point types not found."
4464
  msgstr ""
4465
 
4466
- #: ../includes/mycred-functions.php:2532 ../includes/mycred-functions.php:2552 ..
4467
- #: includes/mycred-shortcodes.php:930 ../includes/mycred-shortcodes.php:938
4468
  #, php-format
4469
  msgid "You are excluded from using %s."
4470
  msgstr ""
4471
 
4472
- #: ../includes/mycred-functions.php:2542 ../includes/mycred-shortcodes.php:934
4473
  msgid "Your balance is too low to use this feature."
4474
  msgstr ""
4475
 
4476
- #: ../includes/mycred-functions.php:2565
4477
  #, php-format
4478
  msgid "You must exchange at least %s!"
4479
  msgstr ""
4480
 
4481
- #: ../includes/mycred-functions.php:2587
4482
  #, php-format
4483
  msgid "Exchange from %s"
4484
  msgstr ""
4485
 
4486
- #: ../includes/mycred-functions.php:2599
4487
  #, php-format
4488
  msgid "Exchange to %s"
4489
  msgstr ""
4490
 
4491
- #: ../includes/mycred-functions.php:2607
4492
  #, php-format
4493
  msgid "You have successfully exchanged %s into %s."
4494
  msgstr ""
4495
 
4496
- #: ../includes/mycred-functions.php:2638
4497
  msgid "per day"
4498
  msgstr ""
4499
 
4500
- #: ../includes/mycred-functions.php:2640
4501
  msgid "per week"
4502
  msgstr ""
4503
 
4504
- #: ../includes/mycred-functions.php:2642
4505
  msgid "per month"
4506
  msgstr ""
4507
 
4508
- #: ../includes/mycred-functions.php:2644
4509
  msgid "in total"
4510
  msgstr ""
4511
 
4512
- #: ../includes/mycred-functions.php:2646 ../includes/mycred-functions.php:2650
4513
  #, php-format
4514
  msgid "Maximum once"
4515
  msgid_plural "Maximum %d times"
@@ -4575,28 +4577,28 @@ msgstr ""
4575
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
4576
  "mínimos de mycred. Se produce los siguientes errores:"
4577
 
4578
- #: ../includes/mycred-install.php:256
4579
  msgid "myCRED needs your attention."
4580
  msgstr "myCRED precisa tu atención."
4581
 
4582
- #: ../includes/mycred-install.php:256
4583
  msgid "Run Setup"
4584
  msgstr "Ejecutar Configuración"
4585
 
4586
- #: ../includes/mycred-install.php:268 ../includes/mycred-install.php:269
4587
  msgid "myCRED Setup"
4588
  msgstr "Instalación de myCRED"
4589
 
4590
- #: ../includes/mycred-install.php:398
4591
  #, php-format
4592
  msgid "%s Setup"
4593
  msgstr "Configurar %s"
4594
 
4595
- #: ../includes/mycred-install.php:400
4596
  msgid "Step"
4597
  msgstr "Paso"
4598
 
4599
- #: ../includes/mycred-install.php:424
4600
  msgid ""
4601
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4602
  "points format, layout and security settings."
@@ -4604,76 +4606,76 @@ msgstr ""
4604
  "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
4605
  "el formato de puntos, disposiciones y configuraciones de seguridad."
4606
 
4607
- #: ../includes/mycred-install.php:425
4608
  msgid "Begin Setup"
4609
  msgstr "Empezar la Instalación"
4610
 
4611
- #: ../includes/mycred-install.php:480
4612
  msgid "Select the format you want to use for your points."
4613
  msgstr "Elige el formato que quieres usar para tus puntos."
4614
 
4615
- #: ../includes/mycred-install.php:481
4616
  msgid "Format"
4617
  msgstr "Formato"
4618
 
4619
- #: ../includes/mycred-install.php:484
4620
  msgid "Separators"
4621
  msgstr "Separadores"
4622
 
4623
- #: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:501
4624
  msgid "Decimals"
4625
  msgstr "Decimales"
4626
 
4627
- #: ../includes/mycred-install.php:496
4628
  msgid "Use zero for no decimals or maximum 20."
4629
  msgstr ""
4630
 
4631
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:505
4632
  msgid "Presentation"
4633
  msgstr "Presentación"
4634
 
4635
- #: ../includes/mycred-install.php:502 ../modules/mycred-module-settings.php:488
4636
  msgid "Name (Singular)"
4637
  msgstr "Nombre (singular)"
4638
 
4639
- #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:493
4640
  msgid "Name (Plural)"
4641
  msgstr "Nombre (plural)"
4642
 
4643
- #: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:508
4644
  msgid "Prefix"
4645
  msgstr "Prefijo"
4646
 
4647
- #: ../includes/mycred-install.php:520 ../modules/mycred-module-settings.php:516
4648
  msgid "Suffix"
4649
  msgstr "Sufijo"
4650
 
4651
- #: ../includes/mycred-install.php:524
4652
  msgid "Cancel Setup"
4653
  msgstr "Cancelar la Instalación"
4654
 
4655
- #: ../includes/mycred-install.php:524 ../includes/mycred-install.php:594
4656
  msgid "Next"
4657
  msgstr "Siguiente"
4658
 
4659
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:524
4660
  msgid "Security"
4661
  msgstr "Seguridad"
4662
 
4663
- #: ../includes/mycred-install.php:559
4664
  msgid "Edit Settings Capability"
4665
  msgstr "Editar la capacidad de las configuraciones"
4666
 
4667
  #. is this user's or users (plural)?
4668
- #: ../includes/mycred-install.php:563
4669
  msgid "Edit Users %plural% Capability"
4670
  msgstr "Editar la Capacidad de %plural% del Usuario"
4671
 
4672
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:537
4673
  msgid "Maximum %plural% payouts"
4674
  msgstr "Desembolso %plural% Máximo"
4675
 
4676
- #: ../includes/mycred-install.php:569 ../modules/mycred-module-settings.php:539
4677
  msgid ""
4678
  "As an added security, you can set the maximum amount a user can gain or "
4679
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -4685,105 +4687,105 @@ msgstr ""
4685
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
4686
  "o gastar en tu tienda. Ponga zero para desactivar."
4687
 
4688
- #: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:542
4689
  msgid "Excludes"
4690
  msgstr "Excluye"
4691
 
4692
- #: ../includes/mycred-install.php:576 ../modules/mycred-module-settings.php:546
4693
  msgid "Exclude those who can \"Edit Settings\"."
4694
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
4695
 
4696
- #: ../includes/mycred-install.php:580 ../modules/mycred-module-settings.php:550
4697
  msgid "Exclude those who can \"Edit Users %plural%\"."
4698
  msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
4699
 
4700
- #: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:554
4701
  msgid "Exclude the following user IDs:"
4702
  msgstr "Excluir a los siguientes IDs de usuarios"
4703
 
4704
- #: ../includes/mycred-install.php:587 ../modules/mycred-module-settings.php:559
4705
  msgid "User Deletions"
4706
  msgstr "Eliminación de Usuarios"
4707
 
4708
- #: ../includes/mycred-install.php:591 ../modules/mycred-module-settings.php:562
4709
  msgid "Delete log entries when user is deleted."
4710
  msgstr "Elimina las entradas de registro cuando se elimina el usuario."
4711
 
4712
- #: ../includes/mycred-install.php:612
4713
  msgid "Ready"
4714
  msgstr "Listo"
4715
 
4716
- #: ../includes/mycred-install.php:613
4717
  msgid "Almost done! Click the button below to finish this setup."
4718
  msgstr ""
4719
  "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
4720
  "configuración."
4721
 
4722
- #: ../includes/mycred-install.php:614
4723
  msgid "Install & Run"
4724
  msgstr "Instalar e ejecutar"
4725
 
4726
- #: ../includes/mycred-log.php:398
4727
  #, php-format
4728
  msgid "Showing %d %s"
4729
  msgstr "Mostrando %d %s"
4730
 
4731
  #. need more context: entrada or inscripción
4732
- #: ../includes/mycred-log.php:398
4733
  msgid "entry"
4734
  msgstr "entrada"
4735
 
4736
- #: ../includes/mycred-log.php:412
4737
  msgid "Go to the first page"
4738
  msgstr "Ir a la primera página"
4739
 
4740
- #: ../includes/mycred-log.php:419
4741
  msgid "Go to the previous page"
4742
  msgstr "Ir a la página anterior"
4743
 
4744
- #: ../includes/mycred-log.php:428
4745
  msgid "Current page"
4746
  msgstr "Página corriente"
4747
 
4748
- #: ../includes/mycred-log.php:434
4749
  #, php-format
4750
  msgctxt "mycred"
4751
  msgid "%1$s of %2$s"
4752
  msgstr ""
4753
 
4754
- #: ../includes/mycred-log.php:438
4755
  msgid "Go to the next page"
4756
  msgstr "Ir a la página siguiente"
4757
 
4758
- #: ../includes/mycred-log.php:445
4759
  msgid "Go to the last page"
4760
  msgstr "Ir a la última página"
4761
 
4762
- #: ../includes/mycred-log.php:512
4763
  msgid "Show all references"
4764
  msgstr "Muestra todas las referencias"
4765
 
4766
- #: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:705
4767
- msgid "User ID"
4768
- msgstr "ID del Usuario"
4769
 
4770
- #: ../includes/mycred-log.php:531
4771
  msgid "Show in order"
4772
  msgstr "Mostrar en Orden"
4773
 
4774
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:426
4775
  msgid "Ascending"
4776
  msgstr "Ascendente"
4777
 
4778
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:427
4779
  msgid "Descending"
4780
  msgstr "Descendente"
4781
 
4782
- #: ../includes/mycred-log.php:550
4783
  msgid "Filter"
4784
  msgstr "Filtro"
4785
 
4786
- #: ../includes/mycred-log.php:603
4787
  msgid ""
4788
  "Log entries are exported to a CSV file and depending on the number of "
4789
  "entries selected, the process may take a few seconds."
@@ -4791,38 +4793,38 @@ msgstr ""
4791
  "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
4792
  "número de entradas seleccionadas, el proceso puede tardar unos segundos."
4793
 
4794
- #: ../includes/mycred-log.php:607
4795
  msgid "No export options available."
4796
  msgstr "No hay opciones para exportar."
4797
 
4798
  #. need more context: entrada or inscripción
4799
- #: ../includes/mycred-log.php:636
4800
  msgid "Entry"
4801
  msgstr "Entrada"
4802
 
4803
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:484
4804
  msgid "User Missing"
4805
  msgstr "Usuario Ausente"
4806
 
4807
- #: ../includes/mycred-log.php:807
4808
  msgid "No log entries found"
4809
  msgstr "Ninguna entrada de registro encontrada"
4810
 
4811
- #: ../includes/mycred-log.php:822 ../includes/mycred-log.php:824
4812
  msgid "Search Log"
4813
  msgstr "Busqueda de Registro"
4814
 
4815
  #. buscar las entradas en el registro
4816
- #: ../includes/mycred-log.php:823
4817
  msgid "search log entries"
4818
  msgstr "Búsqueda de las entradas de registro"
4819
 
4820
- #: ../includes/mycred-log.php:836 ../modules/mycred-module-buddypress.php:221 ..
4821
- #: modules/mycred-module-buddypress.php:234
4822
  msgid "All"
4823
  msgstr "Todo"
4824
 
4825
- #: ../includes/mycred-log.php:838 ../modules/mycred-module-buddypress.php:223
4826
  msgid "Yesterday"
4827
  msgstr "Ayer"
4828
 
@@ -4998,56 +5000,56 @@ msgstr "Enviado"
4998
  msgid "Error - Try Again"
4999
  msgstr "Error - Inténtelo de nuevo."
5000
 
5001
- #: ../includes/mycred-shortcodes.php:763
5002
  msgid "A video ID is required for this shortcode"
5003
  msgstr "Este código corto (shortcode) precisa un ID del video."
5004
 
5005
- #: ../includes/mycred-shortcodes.php:956
5006
  #, php-format
5007
  msgid "Convert <span>%s</span> to <span>%s</span>"
5008
  msgstr ""
5009
 
5010
- #: ../includes/mycred-shortcodes.php:965
5011
  #, php-format
5012
  msgid "Your current %s balance"
5013
  msgstr ""
5014
 
5015
- #: ../includes/mycred-shortcodes.php:973
5016
  #, php-format
5017
  msgid "Minimum %s"
5018
  msgstr ""
5019
 
5020
- #: ../includes/mycred-shortcodes.php:977
5021
  #, php-format
5022
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
5023
  msgstr ""
5024
 
5025
- #: ../includes/mycred-shortcodes.php:983
5026
  msgid "Exchange"
5027
  msgstr ""
5028
 
5029
- #: ../includes/mycred-shortcodes.php:1048
5030
  msgid "No instances found for this point type"
5031
  msgstr ""
5032
 
5033
- #: ../includes/mycred-shortcodes.php:1052
5034
  msgid "Invalid point type"
5035
  msgstr ""
5036
 
5037
- #: ../includes/mycred-shortcodes.php:1111
5038
  msgid "Instance"
5039
  msgstr ""
5040
 
5041
- #: ../includes/mycred-shortcodes.php:1113 ../modules/mycred-module-hooks.php:600 .
5042
- #: ./modules/mycred-module-hooks.php:607 ../modules/mycred-module-hooks.php:631 ..
5043
- #: modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:706 ..
5044
- #: modules/mycred-module-hooks.php:713 ../modules/mycred-module-hooks.php:898 ..
5045
- #: modules/mycred-module-hooks.php:1029 ../modules/mycred-module-hooks.php:1046 .
5046
- #: ./modules/mycred-module-hooks.php:1093 ../modules/mycred-module-hooks.php:2793
5047
- #: ../modules/mycred-module-hooks.php:2822 ../plugins/mycred-hook-affiliatewp.php:
5048
- #: 237 ../plugins/mycred-hook-bbPress.php:413 ../plugins/mycred-hook-bbPress.php:
5049
- #: 443 ../plugins/mycred-hook-bbPress.php:478 ../plugins/mycred-hook-bbPress.php:
5050
- #: 495 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
5051
  #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
5052
  #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
5053
  #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
@@ -5068,7 +5070,7 @@ msgstr ""
5068
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5069
  #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5070
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5071
- #: php:314 ../plugins/mycred-hook-woocommerce.php:300 ../plugins/mycred-hook-wp-
5072
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5073
  #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
5074
  #: postratings.php:175
@@ -5339,21 +5341,21 @@ msgstr "Importar Entradas de Registro"
5339
  msgid "Import log entries from a CSV file."
5340
  msgstr "Importa las entradas de registro desde un fichero CSV."
5341
 
5342
- #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
5343
  msgid "Add-ons"
5344
  msgstr "Extensiones"
5345
 
5346
- #: ../modules/mycred-module-addons.php:151
5347
  msgid "Give your users badges based on their interaction with your website."
5348
  msgstr ""
5349
 
5350
- #: ../modules/mycred-module-addons.php:162
5351
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
5352
  msgstr ""
5353
  "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
5354
  "de las cuentas de usuarios."
5355
 
5356
- #: ../modules/mycred-module-addons.php:173
5357
  msgid ""
5358
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5359
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
@@ -5364,7 +5366,7 @@ msgstr ""
5364
  "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
5365
  "para otros miembros."
5366
 
5367
- #: ../modules/mycred-module-addons.php:184
5368
  msgid ""
5369
  "The coupons add-on allows you to create coupons that users can use to add "
5370
  "points to their accounts."
@@ -5372,13 +5374,13 @@ msgstr ""
5372
  "Los cupones de add-on le permite crear cupones que los usuarios pueden "
5373
  "utilizar para agregar puntos a sus cuentas."
5374
 
5375
- #: ../modules/mycred-module-addons.php:195
5376
  msgid "Create email notices for any type of myCRED instance."
5377
  msgstr ""
5378
  "Crea avisos por correo electrónico para cualquier tipo de instancias de "
5379
  "myCRED."
5380
 
5381
- #: ../modules/mycred-module-addons.php:206
5382
  msgid ""
5383
  "Let your users pay using their <strong>my</strong>CRED points balance. "
5384
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
@@ -5389,11 +5391,11 @@ msgstr ""
5389
  "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
5390
  "Manager (gratis y pro)."
5391
 
5392
- #: ../modules/mycred-module-addons.php:217
5393
  msgid "Create pop-up notifications for when users gain or loose points."
5394
  msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
5395
 
5396
- #: ../modules/mycred-module-addons.php:229
5397
  msgid ""
5398
  "Create ranks for users reaching a certain number of %_plural% with the "
5399
  "option to add logos for each rank."
@@ -5401,7 +5403,7 @@ msgstr ""
5401
  "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
5402
  "con la opción de añadir logotipos para cada rango."
5403
 
5404
- #: ../modules/mycred-module-addons.php:240
5405
  msgid ""
5406
  "This add-on allows you to sell posts, pages or any public post types on your "
5407
  "website. You can either sell the entire content or using our shortcode, sell "
@@ -5412,13 +5414,13 @@ msgstr ""
5412
  "el código corto (shortcode), vender partes de tu contenido permitiendote "
5413
  "ofrecer \"avances\"."
5414
 
5415
- #: ../modules/mycred-module-addons.php:251
5416
  msgid ""
5417
  "Gives you access to your myCRED Staticstics based on your users gains and "
5418
  "loses."
5419
  msgstr ""
5420
 
5421
- #: ../modules/mycred-module-addons.php:262
5422
  msgid ""
5423
  "Allow your users to send or \"donate\" points to other members by either using "
5424
  "the mycred_transfer shortcode or the myCRED Transfer widget."
@@ -5427,175 +5429,183 @@ msgstr ""
5427
  "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
5428
  "myCRED."
5429
 
5430
- #: ../modules/mycred-module-addons.php:297
5431
  #, php-format
5432
  msgid "%s Add-ons"
5433
  msgstr "%s Extensiones (addons)"
5434
 
5435
- #: ../modules/mycred-module-addons.php:302
5436
  msgid "Add-on Activated"
5437
  msgstr "Extensión Activado"
5438
 
5439
- #: ../modules/mycred-module-addons.php:305
5440
  msgid "Add-on Deactivated"
5441
  msgstr "Extensión Desactivado"
5442
 
5443
- #: ../modules/mycred-module-addons.php:309
 
 
 
 
5444
  msgid "Add-ons can expand your current installation with further features."
5445
  msgstr ""
5446
  "Extensiones pueden ampliar tu instalación actual con más características "
5447
  "técnicas."
5448
 
5449
- #: ../modules/mycred-module-addons.php:330
 
 
 
 
5450
  #, php-format
5451
  msgid "You can find more add-ons in our %s."
5452
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
5453
 
5454
- #: ../modules/mycred-module-addons.php:330
5455
  msgid "online store"
5456
  msgstr "tienda online"
5457
 
5458
- #: ../modules/mycred-module-addons.php:351
5459
  msgid "Deactivate Add-on"
5460
  msgstr "Desactivar Extensión"
5461
 
5462
- #: ../modules/mycred-module-addons.php:352
5463
  msgid "Deactivate"
5464
  msgstr "Desactivar"
5465
 
5466
- #: ../modules/mycred-module-addons.php:359
5467
  msgid "Activate Add-on"
5468
  msgstr "Activar Extensión"
5469
 
5470
- #: ../modules/mycred-module-addons.php:360
5471
  msgid "Activate"
5472
  msgstr "Activar"
5473
 
5474
- #: ../modules/mycred-module-addons.php:376
5475
  msgid "Version"
5476
  msgstr "Version"
5477
 
5478
- #: ../modules/mycred-module-addons.php:380
5479
  msgid "By"
5480
  msgstr "Por"
5481
 
5482
- #: ../modules/mycred-module-addons.php:384
5483
  msgid "About"
5484
  msgstr "Acerca de"
5485
 
5486
- #: ../modules/mycred-module-addons.php:388
5487
  msgid "Get Pro"
5488
  msgstr "Obtenga la versión Pro"
5489
 
5490
- #: ../modules/mycred-module-buddypress.php:30
5491
  msgid "My History"
5492
  msgstr "Mi Historial"
5493
 
5494
- #: ../modules/mycred-module-buddypress.php:31
5495
  #, php-format
5496
  msgid "%s's History"
5497
  msgstr "La Historial de %s"
5498
 
5499
- #: ../modules/mycred-module-buddypress.php:121
5500
  msgid "Current balance"
5501
  msgstr "Saldo Actual"
5502
 
5503
- #: ../modules/mycred-module-buddypress.php:336
5504
  msgid "Go"
5505
  msgstr "Ir a"
5506
 
5507
- #: ../modules/mycred-module-buddypress.php:392
5508
  msgid "Show in Profile"
5509
  msgstr "Mostrar en Perfil"
5510
 
5511
- #: ../modules/mycred-module-buddypress.php:407
5512
  #, php-format
5513
  msgid "%singular% Balance"
5514
  msgstr "%singular% Saldo"
5515
 
5516
- #: ../modules/mycred-module-buddypress.php:423
5517
  #, php-format
5518
  msgid "Members and visitors can other members %_singular% balance."
5519
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
5520
 
5521
- #: ../modules/mycred-module-buddypress.php:433
5522
  msgid "%plural% History"
5523
  msgstr "Historial de %plural%"
5524
 
5525
- #: ../modules/mycred-module-buddypress.php:449
5526
  msgid "Members can view each others %_plural% history."
5527
  msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
5528
 
5529
- #: ../modules/mycred-module-buddypress.php:454
5530
  msgid "Menu Title"
5531
  msgstr "Título de Menú"
5532
 
5533
- #: ../modules/mycred-module-buddypress.php:456
5534
  msgid "Title shown to me"
5535
  msgstr "Título mostrado a mi"
5536
 
5537
- #: ../modules/mycred-module-buddypress.php:461
5538
  #, php-format
5539
  msgid "Title shown to others. Use %s to show the first name."
5540
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
5541
 
5542
- #: ../modules/mycred-module-buddypress.php:466
5543
  msgid "Menu Position"
5544
  msgstr "Posición del Menú"
5545
 
5546
- #: ../modules/mycred-module-buddypress.php:468
5547
  msgid "Current menu positions:"
5548
  msgstr "Posiciones Acuales del Menú"
5549
 
5550
- #: ../modules/mycred-module-buddypress.php:473
5551
  msgid "History URL slug"
5552
  msgstr "La ficha historial de la URL"
5553
 
5554
- #: ../modules/mycred-module-buddypress.php:475
5555
  msgid "Do not use empty spaces!"
5556
  msgstr "¡No utilice espacios vacíos!"
5557
 
5558
- #: ../modules/mycred-module-buddypress.php:480
5559
  msgid "Number of history entries to show"
5560
  msgstr "Numero de entradas de historial a mostrar"
5561
 
5562
- #: ../modules/mycred-module-hooks.php:87
5563
  #, php-format
5564
  msgid "%plural% for registrations"
5565
  msgstr "%plural% por inscripciones"
5566
 
5567
- #: ../modules/mycred-module-hooks.php:88
5568
  #, php-format
5569
  msgid "Award %_plural% for users joining your website."
5570
  msgstr "Concede %_plural% a usuarios para unirse a tu sitio de web."
5571
 
5572
- #: ../modules/mycred-module-hooks.php:94
5573
  #, php-format
5574
  msgid "%plural% for daily visits"
5575
  msgstr ""
5576
 
5577
- #: ../modules/mycred-module-hooks.php:95
5578
  #, php-format
5579
  msgid "Award %_plural% for users visiting your website on a daily basis."
5580
  msgstr ""
5581
 
5582
- #: ../modules/mycred-module-hooks.php:101
5583
  #, php-format
5584
  msgid "%plural% for viewing content"
5585
  msgstr ""
5586
 
5587
- #: ../modules/mycred-module-hooks.php:102
5588
  msgid ""
5589
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
5590
  "authors for members viewing their content."
5591
  msgstr ""
5592
 
5593
- #: ../modules/mycred-module-hooks.php:108
5594
  #, php-format
5595
  msgid "%plural% for logins"
5596
  msgstr "%plural% para ingresos"
5597
 
5598
- #: ../modules/mycred-module-hooks.php:109
5599
  #, php-format
5600
  msgid ""
5601
  "Award %_plural% for logging in to your website. You can also set an optional "
@@ -5604,39 +5614,39 @@ msgstr ""
5604
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
5605
  "ajustar un limíte opcional."
5606
 
5607
- #: ../modules/mycred-module-hooks.php:115
5608
  #, php-format
5609
  msgid "%plural% for publishing content"
5610
  msgstr "%plural% por publicar contenido"
5611
 
5612
- #: ../modules/mycred-module-hooks.php:116
5613
  #, php-format
5614
  msgid ""
5615
  "Award %_plural% for publishing content on your website. If your custom post "
5616
  "type is not shown bellow, make sure it is set to \"Public\"."
5617
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
5618
 
5619
- #: ../modules/mycred-module-hooks.php:122
5620
  #, php-format
5621
  msgid "%plural% for comments"
5622
  msgstr "%plural% por comentarios"
5623
 
5624
- #: ../modules/mycred-module-hooks.php:122
5625
  #, php-format
5626
  msgid "%plural% for Disqus comments"
5627
  msgstr "%plural% por comentarios Disqus"
5628
 
5629
- #: ../modules/mycred-module-hooks.php:123
5630
  #, php-format
5631
  msgid "Award %_plural% for making comments."
5632
  msgstr "Concede %_plural% por hacer comentarios."
5633
 
5634
- #: ../modules/mycred-module-hooks.php:129
5635
  #, php-format
5636
  msgid "%plural% for clicking on links"
5637
  msgstr "%plural% por hacer clic sobre enlaces"
5638
 
5639
- #: ../modules/mycred-module-hooks.php:130
5640
  msgid ""
5641
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5642
  "shortcode."
@@ -5644,12 +5654,12 @@ msgstr ""
5644
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
5645
  "por el [mycred_link] código corto (shortcode)."
5646
 
5647
- #: ../modules/mycred-module-hooks.php:136
5648
  #, php-format
5649
  msgid "%plural% for viewing Videos"
5650
  msgstr "%plural% por ver videos"
5651
 
5652
- #: ../modules/mycred-module-hooks.php:137
5653
  msgid ""
5654
  "Award %_plural% to users who watches videos embedded using the "
5655
  "[mycred_video] shortcode."
@@ -5657,23 +5667,23 @@ msgstr ""
5657
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
5658
  "el [mycred_link] código corto (shortcode)."
5659
 
5660
- #: ../modules/mycred-module-hooks.php:143
5661
  #, php-format
5662
  msgid "%plural% for referrals"
5663
  msgstr "%plural% por referencias (o recomendaciones)"
5664
 
5665
- #: ../modules/mycred-module-hooks.php:144
5666
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5667
  msgstr ""
5668
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
5669
  "miembros inscritos."
5670
 
5671
- #: ../modules/mycred-module-hooks.php:177
5672
  #, php-format
5673
  msgid "%s Hooks"
5674
  msgstr "Ganchos de %s"
5675
 
5676
- #: ../modules/mycred-module-hooks.php:180
5677
  msgid ""
5678
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5679
  "depending on their actions around your website."
@@ -5681,18 +5691,18 @@ msgstr ""
5681
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
5682
  "usuario, dependiendo de sus acciones en tu sitio web."
5683
 
5684
- #: ../modules/mycred-module-hooks.php:362 ../modules/mycred-module-hooks.php:459 .
5685
- #: ./modules/mycred-module-hooks.php:611 ../modules/mycred-module-hooks.php:642 ..
5686
- #: modules/mycred-module-hooks.php:717 ../modules/mycred-module-hooks.php:1033 ..
5687
- #: modules/mycred-module-hooks.php:1050 ../modules/mycred-module-hooks.php:1097 .
5688
- #: ./modules/mycred-module-hooks.php:1524 ../modules/mycred-module-hooks.php:1541
5689
- #: ../modules/mycred-module-hooks.php:1558 ../modules/mycred-module-hooks.php:
5690
- #: 2785 ../modules/mycred-module-hooks.php:2814 ../plugins/mycred-hook-
5691
  #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5692
- #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:418 ..
5693
- #: plugins/mycred-hook-bbPress.php:431 ../plugins/mycred-hook-bbPress.php:448 ..
5694
- #: plugins/mycred-hook-bbPress.php:466 ../plugins/mycred-hook-bbPress.php:483 ..
5695
- #: plugins/mycred-hook-bbPress.php:500 ../plugins/mycred-hook-bbPress.php:522 ..
5696
  #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5697
  #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5698
  #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
@@ -5724,51 +5734,51 @@ msgstr ""
5724
  msgid "Log template"
5725
  msgstr "Plantilla de Registro"
5726
 
5727
- #: ../modules/mycred-module-hooks.php:594
5728
  #, php-format
5729
  msgid "%plural% for viewing Posts"
5730
  msgstr ""
5731
 
5732
- #: ../modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:614 .
5733
- #: ./modules/mycred-module-hooks.php:628 ../modules/mycred-module-hooks.php:645 ..
5734
- #: modules/mycred-module-hooks.php:703 ../modules/mycred-module-hooks.php:720
5735
  msgid "Member"
5736
  msgstr ""
5737
 
5738
- #: ../modules/mycred-module-hooks.php:604 ../modules/mycred-module-hooks.php:620 .
5739
- #: ./modules/mycred-module-hooks.php:635 ../modules/mycred-module-hooks.php:651 ..
5740
- #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:726 ..
5741
- #: modules/mycred-module-hooks.php:1519 ../modules/mycred-module-hooks.php:1536 .
5742
- #: ./modules/mycred-module-hooks.php:1553
5743
  msgid "Content Author"
5744
  msgstr "Autor del Contenido"
5745
 
5746
- #: ../modules/mycred-module-hooks.php:625
5747
  #, php-format
5748
  msgid "%plural% for viewing Pages"
5749
  msgstr ""
5750
 
5751
- #: ../modules/mycred-module-hooks.php:700
5752
  #, php-format
5753
  msgid "%plural% for viewing %s"
5754
  msgstr ""
5755
 
5756
- #: ../modules/mycred-module-hooks.php:1023
5757
  #, php-format
5758
  msgid "%plural% for Posts"
5759
  msgstr "%plural% por Posts"
5760
 
5761
- #: ../modules/mycred-module-hooks.php:1040
5762
  #, php-format
5763
  msgid "%plural% for Pages"
5764
  msgstr "%plural% por Paginas"
5765
 
5766
- #: ../modules/mycred-module-hooks.php:1087
5767
  #, php-format
5768
  msgid "%plural% for %s"
5769
  msgstr "%plural% por %s"
5770
 
5771
- #: ../modules/mycred-module-hooks.php:1510
5772
  msgid ""
5773
  "%plural% are only awarded when your website has been synced with the Disqus "
5774
  "server!"
@@ -5776,25 +5786,25 @@ msgstr ""
5776
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
5777
  "sincronizado con el servidor de Disqus!"
5778
 
5779
- #: ../modules/mycred-module-hooks.php:1515 ../modules/mycred-module-hooks.php:
5780
- #: 1532 ../modules/mycred-module-hooks.php:1549
5781
  msgid "Comment Author"
5782
  msgstr "Autor del Comentario"
5783
 
5784
- #: ../modules/mycred-module-hooks.php:1529
5785
  msgid "Comment Marked SPAM"
5786
  msgstr "Comentario Marcado como SPAM"
5787
 
5788
- #: ../modules/mycred-module-hooks.php:1546
5789
  msgid "Trashed / Unapproved Comments"
5790
  msgstr "Comentarios Destrozados / No Aprobados"
5791
 
5792
- #: ../modules/mycred-module-hooks.php:1566
5793
  msgid "Limit per post"
5794
  msgstr "Límite por Entrada"
5795
 
5796
  #. what is the Spanish word for "post"? o anglicismo?
5797
- #: ../modules/mycred-module-hooks.php:1568
5798
  msgid ""
5799
  "The number of comments per post that grants %_plural% to the comment author. "
5800
  "Use zero for unlimited."
@@ -5802,17 +5812,17 @@ msgstr ""
5802
  "El numero de comentarios por cada post que concede %_plural% al autor del "
5803
  "comentario. Utilice cero para un número ilimitado"
5804
 
5805
- #: ../modules/mycred-module-hooks.php:1572
5806
  msgid "Limit per day"
5807
  msgstr "Límite por día"
5808
 
5809
- #: ../modules/mycred-module-hooks.php:1574
5810
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5811
  msgstr ""
5812
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
5813
  "número ilimitado."
5814
 
5815
- #: ../modules/mycred-module-hooks.php:1579
5816
  msgid ""
5817
  "%plural% is to be awarded even when comment authors reply to their own "
5818
  "comment."
@@ -5820,15 +5830,15 @@ msgstr ""
5820
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
5821
  "comentario."
5822
 
5823
- #: ../modules/mycred-module-hooks.php:1650
5824
  msgid "Once for each unique URL"
5825
  msgstr "Una sola vez para cada única URL"
5826
 
5827
- #: ../modules/mycred-module-hooks.php:1651
5828
  msgid "Once for each unique link id"
5829
  msgstr "Una vez para cada id del enlace único "
5830
 
5831
- #: ../modules/mycred-module-hooks.php:1844
5832
  msgid ""
5833
  "The default amount to award for clicking on links. You can override this in "
5834
  "the shortcode."
@@ -5836,16 +5846,16 @@ msgstr ""
5836
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
5837
  "anular esto con el 'shortcode' (código corto)."
5838
 
5839
- #: ../modules/mycred-module-hooks.php:1851
5840
  #, php-format
5841
  msgid "Custom tags: %url%, %title% or %id%."
5842
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
5843
 
5844
- #: ../modules/mycred-module-hooks.php:1862 ../modules/mycred-module-hooks.php:2898
5845
  msgid "Note!"
5846
  msgstr "¡Atención!"
5847
 
5848
- #: ../modules/mycred-module-hooks.php:1862
5849
  msgid ""
5850
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5851
  "generate one automatically based on the value set under href. If you are "
@@ -5857,44 +5867,44 @@ msgstr ""
5857
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
5858
  "contenidos, se recomienda que limites por ID."
5859
 
5860
- #: ../modules/mycred-module-hooks.php:1864 ../modules/mycred-module-hooks.php:2220
5861
  msgid "Available Shortcode"
5862
  msgstr "Código corto Disponible"
5863
 
5864
- #: ../modules/mycred-module-hooks.php:2184
5865
  msgid "Amount to award for viewing videos."
5866
  msgstr "Cantidad a ceder para ver videos."
5867
 
5868
- #: ../modules/mycred-module-hooks.php:2194
5869
  msgid "Award Logic"
5870
  msgstr "Lógica de Concesión"
5871
 
5872
- #: ../modules/mycred-module-hooks.php:2196
5873
  #, php-format
5874
  msgid "Select when %_plural% should be awarded or deducted."
5875
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
5876
 
5877
- #: ../modules/mycred-module-hooks.php:2197
5878
  msgid "Play - As soon as video starts playing."
5879
  msgstr "Play - En cuanto el video empiece a reproducirse."
5880
 
5881
- #: ../modules/mycred-module-hooks.php:2198
5882
  msgid "Full - First when the entire video has played."
5883
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
5884
 
5885
- #: ../modules/mycred-module-hooks.php:2199
5886
  msgid "Interval - For each x number of seconds watched."
5887
  msgstr "Intervalo - Para cada x numero de segundos vistos."
5888
 
5889
- #: ../modules/mycred-module-hooks.php:2204
5890
  msgid "Number of seconds"
5891
  msgstr "Numero de segundos"
5892
 
5893
- #: ../modules/mycred-module-hooks.php:2211
5894
  msgid "Leniency"
5895
  msgstr "Lenidad"
5896
 
5897
- #: ../modules/mycred-module-hooks.php:2213
5898
  msgid ""
5899
  "The maximum percentage a users view of a movie can differ from the actual "
5900
  "length."
@@ -5902,7 +5912,7 @@ msgstr ""
5902
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
5903
  "actual del video."
5904
 
5905
- #: ../modules/mycred-module-hooks.php:2216
5906
  msgid ""
5907
  "Do not set this value to zero! A lot of thing can happen while a user "
5908
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -5912,84 +5922,78 @@ msgstr ""
5912
  "usuario ve una película y a veces la contador puede disminuir por pocos "
5913
  "segundos por falta de buffering o por errores de reproducción."
5914
 
5915
- #: ../modules/mycred-module-hooks.php:2284
5916
  msgid "Affiliate Program"
5917
  msgstr "Programa de Afiliados"
5918
 
5919
- #: ../modules/mycred-module-hooks.php:2293
5920
  msgid "Per Day"
5921
  msgstr "Por Día"
5922
 
5923
- #: ../modules/mycred-module-hooks.php:2443
5924
  msgid "Link"
5925
  msgstr "Enlace"
5926
 
5927
- #: ../modules/mycred-module-hooks.php:2447
5928
  msgid "Visitors Referred"
5929
  msgstr ""
5930
 
5931
- #: ../modules/mycred-module-hooks.php:2451
5932
  msgid "Signups Referred"
5933
  msgstr ""
5934
 
5935
- #: ../modules/mycred-module-hooks.php:2779 ../plugins/mycred-hook-affiliatewp.php:
5936
  #: 231
5937
  msgid "Referring Visitors"
5938
  msgstr "Referiendo Visitantes"
5939
 
5940
- #: ../modules/mycred-module-hooks.php:2803 ../modules/mycred-module-hooks.php:2832
5941
- msgid "The number of referrals each member can make. Use zero for unlimited."
5942
- msgstr ""
5943
- "El numero de referencias que cada miembro puede hacer. Utilice cero para "
5944
- "ilimitado."
5945
-
5946
- #: ../modules/mycred-module-hooks.php:2807 ../modules/mycred-module-hooks.php:2836
5947
  msgid "Referring Signups"
5948
  msgstr "Inscripciones a través de Referencias"
5949
 
5950
- #: ../modules/mycred-module-hooks.php:2811
5951
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5952
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
5953
 
5954
- #: ../modules/mycred-module-hooks.php:2838
5955
  msgid "Registrations are disabled."
5956
  msgstr "Se han deshabilitado inscripciones."
5957
 
5958
- #: ../modules/mycred-module-hooks.php:2846
5959
  msgid "Referral Links"
5960
  msgstr "Enlaces Referentes"
5961
 
5962
- #: ../modules/mycred-module-hooks.php:2850
5963
  msgid "Assign numeric referral IDs to each user."
5964
  msgstr "Asignar ID numerica referente a cada usuario."
5965
 
5966
- #: ../modules/mycred-module-hooks.php:2851 ../modules/mycred-module-hooks.php:2857
5967
  msgid "Example"
5968
  msgstr "Ejemplo"
5969
 
5970
- #: ../modules/mycred-module-hooks.php:2856
5971
  msgid "Assign usernames as IDs for each user."
5972
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
5973
 
5974
- #: ../modules/mycred-module-hooks.php:2860
5975
  msgid "IP Limit"
5976
  msgstr "Límite de IP"
5977
 
5978
- #: ../modules/mycred-module-hooks.php:2864
5979
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5980
  msgstr ""
5981
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
5982
  "número ilimitado"
5983
 
5984
- #: ../modules/mycred-module-hooks.php:2868 ../modules/mycred-module-hooks.php:2902
5985
  msgid "BuddyPress Profile"
5986
  msgstr "Perfil de BuddyPress"
5987
 
5988
- #: ../modules/mycred-module-hooks.php:2871
5989
  msgid "Insert Link in users Profile"
5990
  msgstr "Insertar enlace en el perfil del usuario"
5991
 
5992
- #: ../modules/mycred-module-hooks.php:2872
5993
  msgid ""
5994
  "Option to inser the referral link in users profiles. Links will only be "
5995
  "visible to users viewing their own profiles or administrators."
@@ -5998,23 +6002,23 @@ msgstr ""
5998
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
5999
  "ven a sus propios perfiles."
6000
 
6001
- #: ../modules/mycred-module-hooks.php:2878
6002
  msgid "Leave empty to hide."
6003
  msgstr "Deje el campo vacío para ocultarlo."
6004
 
6005
- #: ../modules/mycred-module-hooks.php:2881
6006
  msgid "Description"
6007
  msgstr "Descripción"
6008
 
6009
- #: ../modules/mycred-module-hooks.php:2882
6010
  msgid "Optional description to insert under the link."
6011
  msgstr "Insertar la descripción opcional debajo del enlace."
6012
 
6013
- #: ../modules/mycred-module-hooks.php:2895
6014
  msgid "Profile Positioning"
6015
  msgstr "Posicionamiento del Perfil"
6016
 
6017
- #: ../modules/mycred-module-hooks.php:2897
6018
  msgid ""
6019
  "You can move around the referral link on your users profile by changing the "
6020
  "position. Increase to move up, decrease to move down."
@@ -6022,167 +6026,167 @@ msgstr ""
6022
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
6023
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
6024
 
6025
- #: ../modules/mycred-module-hooks.php:2898
6026
  msgid "You can not move the referral link above the users \"Base\" profile details!"
6027
  msgstr ""
6028
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
6029
  "en el perfil del usuario!"
6030
 
6031
- #: ../modules/mycred-module-hooks.php:2904
6032
  msgid "Requires BuddyPress Extended Profiles to be enabled."
6033
  msgstr "Requiere que BuddyPress Extended Profiles sea activado."
6034
 
6035
- #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
6036
- #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
6037
  msgid "Access denied for this action"
6038
  msgstr "Acceso denegado para esta acción"
6039
 
6040
- #: ../modules/mycred-module-log.php:196
6041
  msgid "Row Deleted"
6042
  msgstr "Fila Borrado"
6043
 
6044
- #: ../modules/mycred-module-log.php:223
6045
  msgid "Log entry not found"
6046
  msgstr "No se encontro la entrada de registro "
6047
 
6048
- #: ../modules/mycred-module-log.php:236
6049
  msgid "Entry Updated"
6050
  msgstr "Entrada Actualizada"
6051
 
6052
- #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:585
6053
  msgid "Entries"
6054
  msgstr "Entradas"
6055
 
6056
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:400 ..
6057
- #: modules/mycred-module-log.php:650 ../modules/mycred-module-settings.php:722
6058
  msgid "Export"
6059
  msgstr "Exportar"
6060
 
6061
- #: ../modules/mycred-module-log.php:311
6062
  msgid "Search results for"
6063
  msgstr "Buscar entre resultados por"
6064
 
6065
- #: ../modules/mycred-module-log.php:379
6066
  #, php-format
6067
  msgid "%s Log"
6068
  msgstr "Registro de %s"
6069
 
6070
- #: ../modules/mycred-module-log.php:390
6071
  msgid ""
6072
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
6073
  "Certain hooks and shortcodes will not work correctly!"
6074
  msgstr ""
6075
 
6076
- #: ../modules/mycred-module-log.php:522
6077
  msgid "Edit"
6078
  msgstr "Editar"
6079
 
6080
- #: ../modules/mycred-module-log.php:563
6081
  msgid "Time"
6082
  msgstr "Tiempo"
6083
 
6084
- #: ../modules/mycred-module-log.php:567
6085
  msgid "Current Log Entry"
6086
  msgstr "Entrada Actual de Registro"
6087
 
6088
- #: ../modules/mycred-module-log.php:569
6089
  msgid "The current saved log entry"
6090
  msgstr "La entrada guardada actual del registro"
6091
 
6092
- #: ../modules/mycred-module-log.php:572
6093
  msgid "Adjust Log Entry"
6094
  msgstr "Ajustar entrada de registro"
6095
 
6096
- #: ../modules/mycred-module-log.php:574
6097
  msgid "The new log entry"
6098
  msgstr "La nueva entrada de registro"
6099
 
6100
- #: ../modules/mycred-module-log.php:577
6101
  msgid "Update Log Entry"
6102
  msgstr "Actualiza la entrada de registro"
6103
 
6104
- #: ../modules/mycred-module-log.php:644
6105
  #, php-format
6106
  msgid "My %s History"
6107
  msgstr "Mi Historial de %s"
6108
 
6109
- #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
6110
- #: 106 ../modules/mycred-module-settings.php:158
6111
  msgid "Missing point type"
6112
  msgstr "Falta el tipo de punto"
6113
 
6114
- #: ../modules/mycred-module-settings.php:137
6115
  msgid "Accounts successfully reset"
6116
  msgstr "Las cuentas fueron reiniciadas con éxito."
6117
 
6118
- #: ../modules/mycred-module-settings.php:184
6119
  msgid "No users found to export"
6120
  msgstr "No se encontro usuarios para exportar"
6121
 
6122
- #: ../modules/mycred-module-settings.php:234
6123
  msgid "Invalid decimal value."
6124
  msgstr ""
6125
 
6126
- #: ../modules/mycred-module-settings.php:281
6127
  msgid "Log Updated"
6128
  msgstr ""
6129
 
6130
- #: ../modules/mycred-module-settings.php:397
6131
  msgid "Update Database"
6132
  msgstr ""
6133
 
6134
- #: ../modules/mycred-module-settings.php:398
6135
  msgid "Zero for no decimals or maximum 20."
6136
  msgstr ""
6137
 
6138
- #: ../modules/mycred-module-settings.php:401 ../modules/mycred-module-settings.
6139
- #: php:498
6140
  msgid "Tip"
6141
  msgstr "Pista"
6142
 
6143
- #: ../modules/mycred-module-settings.php:401
6144
  msgid ""
6145
  "As this is your main point type, the value you select here will be the "
6146
  "largest number of decimals your installation will support."
6147
  msgstr ""
6148
 
6149
- #: ../modules/mycred-module-settings.php:414 ../modules/mycred-module-settings.
6150
- #: php:427
6151
  msgid "No decimals"
6152
  msgstr ""
6153
 
6154
- #: ../modules/mycred-module-settings.php:439
6155
  #, php-format
6156
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
6157
  msgstr ""
6158
 
6159
- #: ../modules/mycred-module-settings.php:475
6160
  #, php-format
6161
  msgid "%s Settings"
6162
  msgstr "Configuración de %s"
6163
 
6164
- #: ../modules/mycred-module-settings.php:478
6165
  msgid "Adjust your core or add-on settings."
6166
  msgstr ""
6167
 
6168
- #: ../modules/mycred-module-settings.php:483
6169
  msgid "Core Settings"
6170
  msgstr "Ajustes Basicos"
6171
 
6172
- #: ../modules/mycred-module-settings.php:485
6173
  msgid "Name"
6174
  msgstr "Nombre"
6175
 
6176
- #: ../modules/mycred-module-settings.php:490
6177
  #, php-format
6178
  msgid "Accessible though the %singular% template tag."
6179
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
6180
 
6181
- #: ../modules/mycred-module-settings.php:495
6182
  msgid "Accessible though the %plural% template tag."
6183
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
6184
 
6185
- #: ../modules/mycred-module-settings.php:498
6186
  msgid ""
6187
  "Adding an underscore at the beginning of template tag for names will return "
6188
  "them in lowercase. i.e. %_singular%"
@@ -6190,94 +6194,98 @@ msgstr ""
6190
  "Añadiendo un guión bajo al principio de la etiqueta de la plantilla para "
6191
  "nombres los cnovertira en minúsculas. Por ejemplo %_singular%"
6192
 
6193
- #: ../modules/mycred-module-settings.php:520
6194
  msgid "Separator"
6195
  msgstr "Separador"
6196
 
6197
- #: ../modules/mycred-module-settings.php:527
6198
  msgid "Edit Settings"
6199
  msgstr "Editar las Configuraciones"
6200
 
6201
  #. or "Verificar la capacidad de"
6202
- #: ../modules/mycred-module-settings.php:529 ../modules/mycred-module-settings.
6203
- #: php:534
6204
  msgid "Capability to check for."
6205
  msgstr "La capacidad que se va a verificar."
6206
 
6207
- #: ../modules/mycred-module-settings.php:532
6208
  msgid "Edit Users %plural%"
6209
  msgstr "Edita %plural% de Usuarios"
6210
 
6211
- #: ../modules/mycred-module-settings.php:556
6212
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
6213
  msgstr ""
6214
  "Lista separada por comas de los IDs de usuario para excluir. ¡No se permiten "
6215
  "espacios!"
6216
 
6217
- #: ../modules/mycred-module-settings.php:576
6218
  msgid "Management"
6219
  msgstr "Gestión"
6220
 
6221
- #: ../modules/mycred-module-settings.php:578
6222
  msgid "The Log"
6223
  msgstr "El Registro"
6224
 
6225
- #: ../modules/mycred-module-settings.php:581
6226
  msgid "Table Name"
6227
  msgstr "Nombre de Tabla"
6228
 
6229
- #: ../modules/mycred-module-settings.php:590
6230
  msgid "Empty Log"
6231
  msgstr "Registro Vacío"
6232
 
6233
- #: ../modules/mycred-module-settings.php:605
6234
  msgid "Set all to zero"
6235
  msgstr "Ajusta todo a cero"
6236
 
6237
- #: ../modules/mycred-module-settings.php:605
6238
  msgid "CSV Export"
6239
  msgstr "Exportar CSV"
6240
 
6241
- #: ../modules/mycred-module-settings.php:625
6242
  msgid "Default"
6243
  msgstr "Predefinido"
6244
 
6245
- #: ../modules/mycred-module-settings.php:628 ../modules/mycred-module-settings.
6246
- #: php:647 ../modules/mycred-module-settings.php:669
6247
  msgid "Meta Key"
6248
  msgstr "Clave Meta"
6249
 
6250
- #: ../modules/mycred-module-settings.php:666
6251
  msgid "Add New Type"
6252
  msgstr "Añadir Nuevo Tipo"
6253
 
6254
- #: ../modules/mycred-module-settings.php:671
6255
  msgid "A unique ID for this type."
6256
  msgstr "Una ID exclusiva para este tipo."
6257
 
6258
- #: ../modules/mycred-module-settings.php:676
6259
  msgid "Menu and page title."
6260
  msgstr "Título del Menú y de la Página\n"
6261
 
6262
- #: ../modules/mycred-module-settings.php:679
6263
  msgid ""
6264
  "The meta key must be lowercase and only contain letters or underscores. All "
6265
  "other characters will be deleted!"
6266
  msgstr ""
6267
 
6268
- #: ../modules/mycred-module-settings.php:700
6269
  msgid "Identify users by"
6270
  msgstr "Identifique usuarios por"
6271
 
6272
- #: ../modules/mycred-module-settings.php:706
 
 
 
 
6273
  msgid "User Email"
6274
  msgstr "Email de Usuario"
6275
 
6276
- #: ../modules/mycred-module-settings.php:707
6277
  msgid "User Login"
6278
  msgstr "Ingreso de Usuario"
6279
 
6280
- #: ../modules/mycred-module-settings.php:714
6281
  msgid ""
6282
  "Use ID if you intend to use this export as a backup of your current site "
6283
  "while Email is recommended if you want to export to a different site."
@@ -6285,11 +6293,11 @@ msgstr ""
6285
  "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
6286
  "Email si deseas exportar la data a otro sitio"
6287
 
6288
- #: ../modules/mycred-module-settings.php:717
6289
  msgid "Import Log Entry"
6290
  msgstr "Importa la entrada de registro"
6291
 
6292
- #: ../modules/mycred-module-settings.php:719
6293
  #, php-format
6294
  msgid ""
6295
  "Optional log entry to use if you intend to import this file in a different "
@@ -6393,54 +6401,54 @@ msgstr "bbPress"
6393
  msgid "Awards %_plural% for bbPress actions."
6394
  msgstr "Concede %_plural% por acciones en bbPress."
6395
 
6396
- #: ../plugins/mycred-hook-bbPress.php:407
6397
  #, php-format
6398
  msgid "%plural% for New Forum"
6399
  msgstr "%plural% por nuevo foro"
6400
 
6401
- #: ../plugins/mycred-hook-bbPress.php:424
6402
  #, php-format
6403
  msgid "%plural% for Forum Deletion"
6404
  msgstr "%plural% por Eliminar Foro"
6405
 
6406
- #: ../plugins/mycred-hook-bbPress.php:437 ../plugins/mycred-hook-simplepress.php:
6407
  #: 278
6408
  #, php-format
6409
  msgid "%plural% for New Topic"
6410
  msgstr "%plural% por Nuevo Tema"
6411
 
6412
- #: ../plugins/mycred-hook-bbPress.php:455
6413
  #, php-format
6414
  msgid "Forum authors can receive %_plural% for creating new topics."
6415
  msgstr "Autores "
6416
 
6417
- #: ../plugins/mycred-hook-bbPress.php:459 ../plugins/mycred-hook-simplepress.php:
6418
  #: 295
6419
  #, php-format
6420
  msgid "%plural% for Topic Deletion"
6421
  msgstr "%plural% por Borrar Tema"
6422
 
6423
- #: ../plugins/mycred-hook-bbPress.php:472
6424
  #, php-format
6425
  msgid "%plural% for Favorited Topic"
6426
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
6427
 
6428
- #: ../plugins/mycred-hook-bbPress.php:489
6429
  #, php-format
6430
  msgid "%plural% for New Reply"
6431
  msgstr "%plural% por Nueva Respuesta"
6432
 
6433
- #: ../plugins/mycred-hook-bbPress.php:507
6434
  #, php-format
6435
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
6436
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
6437
 
6438
- #: ../plugins/mycred-hook-bbPress.php:511
6439
  #, php-format
6440
  msgid "Show users %_plural% balance in replies"
6441
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
6442
 
6443
- #: ../plugins/mycred-hook-bbPress.php:515
6444
  #, php-format
6445
  msgid "%plural% for Reply Deletion"
6446
  msgstr ""
@@ -6795,7 +6803,7 @@ msgid "Comment Subscriptions"
6795
  msgstr "Suscripciónes a commentarios"
6796
 
6797
  #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6798
- #: php:63
6799
  msgid "Reward with %plural%"
6800
  msgstr ""
6801
 
@@ -6839,11 +6847,11 @@ msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
6839
  msgid "%plural% for Topic Post Deletion"
6840
  msgstr "%plural% por Borrar la Tema del Post"
6841
 
6842
- #: ../plugins/mycred-hook-woocommerce.php:193
6843
  msgid "WooCommerce Product Reviews"
6844
  msgstr ""
6845
 
6846
- #: ../plugins/mycred-hook-woocommerce.php:194
6847
  #, php-format
6848
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6849
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Apr 08 2015 17:01:56 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
+ "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
+ "me>\n"
10
  "Language: Spanish (Venezuela)\n"
11
  "Plural-Forms: nplurals=2; plural=n != 1\n"
12
  "MIME-Version: 1.0\n"
43
  msgstr "Gente genial"
44
 
45
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
46
+ #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
+ #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
111
  msgstr "Entrada de registro actualizado"
112
 
113
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
114
+ #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
  msgid "Setup"
117
  msgstr "Configurar"
118
 
119
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
120
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
121
+ #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
122
+ #: module-settings.php:22 ../modules/mycred-module-settings.php:23
123
  msgid "Settings"
124
  msgstr "Configuraciones"
125
 
131
  "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
132
  "archivo, por si acaso!"
133
 
 
 
 
 
134
  #: ../abstracts/mycred-abstract-hook.php:83
135
  msgid "This Hook has no settings"
136
  msgstr "Este gancho no ha sido configurado"
137
 
138
+ #: ../abstracts/mycred-abstract-hook.php:226 ../abstracts/mycred-abstract-hook.
139
+ #: php:293 ../includes/mycred-functions.php:2641 ../modules/mycred-module-hooks.
140
+ #: php:1809
141
  msgid "No limit"
142
  msgstr "Sin Limite"
143
 
144
+ #: ../abstracts/mycred-abstract-hook.php:227
145
  msgid "/ Day"
146
  msgstr ""
147
 
148
+ #: ../abstracts/mycred-abstract-hook.php:228
149
  msgid "/ Week"
150
  msgstr ""
151
 
152
+ #: ../abstracts/mycred-abstract-hook.php:229
153
  msgid "/ Month"
154
  msgstr ""
155
 
156
+ #: ../abstracts/mycred-abstract-hook.php:230
157
  msgid "in Total"
158
  msgstr ""
159
 
160
+ #: ../abstracts/mycred-abstract-hook.php:294
161
  msgid "Once every 24 hours"
162
  msgstr "Una vez cada 24 horas"
163
 
164
+ #: ../abstracts/mycred-abstract-hook.php:295
165
  msgid "Once every 7 days"
166
  msgstr "Una vez cada 7 dias"
167
 
168
+ #: ../abstracts/mycred-abstract-hook.php:296
169
  msgid "Once per day (reset at midnight)"
170
  msgstr "Una vez al dia (reinicializado al medianoche)"
171
 
172
+ #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
173
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
174
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
175
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
176
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
177
+ #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
178
+ #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992
179
  msgid "Select"
180
  msgstr "Seleccionar"
181
 
183
  msgid "myCRED_Module() Error. A Module ID is required!"
184
  msgstr "Error de myCRED_Module(). ¡Se requiere una ID de Modulo!"
185
 
186
+ #: ../abstracts/mycred-abstract-module.php:350 ../abstracts/mycred-abstract-
187
+ #: module.php:358
188
  msgid "Surprise"
189
  msgstr "Sorpresa"
190
 
191
+ #: ../abstracts/mycred-abstract-module.php:445 ../includes/mycred-network.php:83
192
  msgid "click to close"
193
  msgstr "haga clic para cerrar"
194
 
195
+ #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:84
196
  msgid "click to open"
197
  msgstr "haga clic para abrir"
198
 
199
+ #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
200
+ #: buy-creds.php:884
201
  msgid "Settings Updated"
202
  msgstr "Configuraciones Actualizadas"
203
 
204
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
205
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
206
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
207
+ #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
208
+ #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
209
+ #: badges.php:395
210
  msgid "Badges"
211
  msgstr ""
212
 
215
  msgid "Badges (%d)"
216
  msgstr ""
217
 
218
+ #: ../addons/badges/myCRED-addon-badges.php:260
219
  #, php-format
220
  msgid "%d Users earned this badge."
221
  msgstr ""
222
 
223
+ #: ../addons/badges/myCRED-addon-badges.php:264
224
  msgid "No users has yet earned this badge."
225
  msgstr ""
226
 
227
+ #: ../addons/badges/myCRED-addon-badges.php:287
228
+ msgid "No connections where removed."
229
+ msgstr ""
230
+
231
+ #: ../addons/badges/myCRED-addon-badges.php:289
232
  #, php-format
233
  msgid "%s connections where removed."
234
  msgstr ""
235
 
236
+ #: ../addons/badges/myCRED-addon-badges.php:384
237
  msgid "Badge"
238
  msgstr ""
239
 
240
+ #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
241
+ #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
242
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
243
+ #: addons/ranks/myCRED-addon-ranks.php:448
244
  msgid "Add New"
245
  msgstr "Añade Nuevo"
246
 
247
+ #: ../addons/badges/myCRED-addon-badges.php:386
248
  msgid "Add New Badge"
249
  msgstr ""
250
 
251
+ #: ../addons/badges/myCRED-addon-badges.php:387
252
  msgid "Edit Badge"
253
  msgstr ""
254
 
255
+ #: ../addons/badges/myCRED-addon-badges.php:388
256
  msgid "New Badge"
257
  msgstr ""
258
 
259
+ #: ../addons/badges/myCRED-addon-badges.php:390
260
  msgid "View Badge"
261
  msgstr ""
262
 
263
+ #: ../addons/badges/myCRED-addon-badges.php:391
264
  msgid "Search Badge"
265
  msgstr ""
266
 
267
+ #: ../addons/badges/myCRED-addon-badges.php:392
268
  msgid "No badges found"
269
  msgstr ""
270
 
271
+ #: ../addons/badges/myCRED-addon-badges.php:393
272
  msgid "No badges found in Trash"
273
  msgstr ""
274
 
275
+ #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
276
+ #: badges.php:541
277
  msgid "Badge Name"
278
  msgstr ""
279
 
280
+ #: ../addons/badges/myCRED-addon-badges.php:440
281
  msgid "Badge Images"
282
  msgstr ""
283
 
284
+ #: ../addons/badges/myCRED-addon-badges.php:441
285
  msgid "Requirements"
286
  msgstr ""
287
 
288
+ #: ../addons/badges/myCRED-addon-badges.php:442 ../addons/ranks/myCRED-addon-
289
+ #: ranks.php:1042 ../modules/mycred-module-settings.php:636
290
  msgid "Users"
291
  msgstr "Usuarios"
292
 
293
+ #: ../addons/badges/myCRED-addon-badges.php:481
294
  msgid "A user must have gained or lost:"
295
  msgstr ""
296
 
297
+ #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
298
+ #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
299
+ #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
300
+ #: badges.php:526
301
  msgid "Badge Updated."
302
  msgstr ""
303
 
304
+ #: ../addons/badges/myCRED-addon-badges.php:522
305
  msgid "Badge Enabled"
306
  msgstr ""
307
 
308
+ #: ../addons/badges/myCRED-addon-badges.php:523
309
  msgid "Badge Saved"
310
  msgstr ""
311
 
312
+ #: ../addons/badges/myCRED-addon-badges.php:555
313
  msgid "Badge Setup"
314
  msgstr ""
315
 
316
+ #: ../addons/badges/myCRED-addon-badges.php:582
317
  msgid "Assign Badge"
318
  msgstr ""
319
 
320
+ #: ../addons/badges/myCRED-addon-badges.php:583
321
  msgid "Remove Connections"
322
  msgstr ""
323
 
324
+ #: ../addons/badges/myCRED-addon-badges.php:638
325
  msgid "Time(s)"
326
  msgstr ""
327
 
328
+ #: ../addons/badges/myCRED-addon-badges.php:639
329
  msgid "In total"
330
  msgstr ""
331
 
332
+ #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
333
+ #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
334
+ #: addons/badges/myCRED-addon-badges.php:846
335
  msgid "Badge Image"
336
  msgstr ""
337
 
338
+ #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
339
+ #: badges.php:672
340
  msgid "Set badge image"
341
  msgstr ""
342
 
343
+ #: ../addons/badges/myCRED-addon-badges.php:682
344
  msgid "Default Image"
345
  msgstr ""
346
 
347
+ #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
348
+ #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
349
+ #: addons/badges/myCRED-addon-badges.php:831
350
  msgid "image url"
351
  msgstr ""
352
 
353
+ #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
354
+ #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
355
+ #: addons/badges/myCRED-addon-badges.php:831
356
  msgid "Add Image"
357
  msgstr ""
358
 
359
+ #: ../addons/badges/myCRED-addon-badges.php:685
360
  msgid "Optional image to show when a user has not yet earned this badge."
361
  msgstr ""
362
 
363
+ #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
364
+ #: badges.php:756
365
  #, php-format
366
  msgid "Level %d"
367
  msgstr ""
368
 
369
+ #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
370
+ #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
371
  msgid "for"
372
  msgstr ""
373
 
374
+ #: ../addons/badges/myCRED-addon-badges.php:740
375
  msgid "Main Image"
376
  msgstr ""
377
 
378
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
379
+ #: badges.php:831
380
  msgid "Leave empty if you do not want to assign a custom image for this level."
381
  msgstr ""
382
 
383
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
384
+ #: badges.php:831
385
  msgid "Remove this level"
386
  msgstr ""
387
 
388
+ #: ../addons/badges/myCRED-addon-badges.php:788
389
  msgid "Add Level"
390
  msgstr ""
391
 
392
+ #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
393
+ #: badges.php:1154
394
  msgid "Level"
395
  msgstr ""
396
 
397
+ #: ../addons/badges/myCRED-addon-badges.php:848
398
  msgid "Use as Badge"
399
  msgstr ""
400
 
401
+ #: ../addons/badges/myCRED-addon-badges.php:970 ../addons/badges/myCRED-addon-
402
+ #: badges.php:1001 ../addons/gateway/carts/mycred-woocommerce.php:152 ..
403
+ #: modules/mycred-module-buddypress.php:417
404
  msgid "Do not show"
405
  msgstr "No Mostrar"
406
 
407
+ #: ../addons/badges/myCRED-addon-badges.php:971 ../modules/mycred-module-
408
+ #: buddypress.php:418
409
  msgid "Include in Profile Header"
410
  msgstr ""
411
 
412
+ #: ../addons/badges/myCRED-addon-badges.php:972 ../addons/ranks/myCRED-addon-
413
+ #: ranks.php:1407 ../modules/mycred-module-buddypress.php:419
414
  msgid "Include under the \"Profile\" tab"
415
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
416
 
417
+ #: ../addons/badges/myCRED-addon-badges.php:973 ../modules/mycred-module-
418
+ #: buddypress.php:420
419
  msgid "Include under the \"Profile\" tab and Profile Header"
420
  msgstr ""
421
 
422
+ #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
423
+ #: badges.php:1017
424
  msgid "Show all badges, including badges users have not yet earned."
425
  msgstr ""
426
 
427
+ #: ../addons/badges/myCRED-addon-badges.php:1002 ../addons/ranks/myCRED-addon-
428
+ #: ranks.php:1452
429
  msgid "Include in Profile"
430
  msgstr ""
431
 
432
+ #: ../addons/badges/myCRED-addon-badges.php:1003
433
  msgid "Include in Forum Replies"
434
  msgstr ""
435
 
436
+ #: ../addons/badges/myCRED-addon-badges.php:1004
437
  msgid "Include in Profile and Forum Replies"
438
  msgstr ""
439
 
440
+ #: ../addons/badges/myCRED-addon-badges.php:1111
441
  msgid "User Badges"
442
  msgstr ""
443
 
444
+ #: ../addons/badges/myCRED-addon-badges.php:1116
445
  msgid ""
446
  "Here you can view the badges this user has earned and if needed, manually "
447
  "give or take away a badge from a user."
448
  msgstr ""
449
 
450
+ #: ../addons/badges/myCRED-addon-badges.php:1125
451
  msgid "Not earned"
452
  msgstr ""
453
 
454
+ #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
455
+ #: badges.php:1168
456
  msgid "Earned"
457
  msgstr ""
458
 
459
+ #: ../addons/badges/myCRED-addon-badges.php:1143
460
  msgid "No image"
461
  msgstr ""
462
 
463
+ #: ../addons/badges/myCRED-addon-badges.php:1150
464
  msgid "Select a level"
465
  msgstr ""
466
 
467
+ #: ../addons/badges/myCRED-addon-badges.php:1165 ../addons/email-notices/myCRED-
468
+ #: addon-email-notices.php:810
469
  msgid "Status"
470
  msgstr "Estatus"
471
 
472
+ #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
473
+ #: addon-email-notices.php:1293
474
  msgid "Save Changes"
475
  msgstr ""
476
 
477
+ #: ../addons/badges/includes/mycred-badge-functions.php:68
478
  #, php-format
479
  msgid "Level %s"
480
  msgstr ""
481
 
482
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
483
  #, php-format
484
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
485
  msgid "%s for %s %s - %s"
486
  msgstr ""
487
 
488
+ #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
489
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
490
  #: coupons.php:469
491
  #, php-format
494
  msgstr[0] ""
495
  msgstr[1] ""
496
 
497
+ #: ../addons/badges/includes/mycred-badge-functions.php:73
498
  #, php-format
499
  msgctxt "\"x points\" for \"reference\" in total"
500
  msgid "%s for %s in total"
536
  msgstr ""
537
 
538
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
539
+ #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
540
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
541
+ #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
542
+ #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
543
+ #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
544
  msgid "Access Denied"
545
  msgstr "Acceso Denegado"
546
 
562
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
563
 
564
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
565
+ #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
566
  msgid "Enable"
567
  msgstr "Activar"
568
 
569
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
570
+ #: php:240
571
  msgid "Update Changes"
572
  msgstr "Actualizar Cambios"
573
 
686
  #. can also be "Plantilla de Bitácora"
687
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
688
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
689
+ #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
690
+ #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
691
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
692
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
693
+ #: addons/gateway/carts/mycred-woocommerce.php:104 ..
694
+ #: addons/gateway/carts/mycred-woocommerce.php:176 ..
695
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
696
+ #: hooks.php:1004 ../modules/mycred-module-hooks.php:2025 ../modules/mycred-
697
+ #: module-hooks.php:2395 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-
698
+ #: hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-
699
+ #: hook-events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.
700
+ #: php:209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
701
+ #: gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:321 ..
702
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
703
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
704
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
745
  msgstr ""
746
 
747
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
748
+ #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
749
  #: content.php:114
750
  msgid "Leave empty to use the default value."
751
  msgstr ""
758
  msgid "Exclude from receiving interest"
759
  msgstr ""
760
 
761
+ #: ../addons/banking/services/mycred-bank-service-interest.php:673
762
  msgid "Compound interest rate saved."
763
  msgstr ""
764
 
765
+ #: ../addons/banking/services/mycred-bank-service-interest.php:675
766
  msgid "User excluded from receiving interest."
767
  msgstr ""
768
 
769
+ #: ../addons/banking/services/mycred-bank-service-interest.php:677
770
  msgid "User included in receiving interest."
771
  msgstr ""
772
 
775
  msgstr "%_plural% diarios"
776
 
777
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
778
+ #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
779
+ #: modules/mycred-module-log.php:277
780
  msgid "History"
781
  msgstr "Historial"
782
 
793
  msgstr "Pagar a los Usuarios"
794
 
795
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
796
+ #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
797
+ #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
798
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
799
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
800
+ #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
801
  #: plugins/mycred-hook-affiliatewp.php:256
802
  msgid "Amount"
803
  msgstr "Cantidad"
804
 
805
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
806
+ #: modules/mycred-module-hooks.php:2410
807
  msgid "Interval"
808
  msgstr "Interval"
809
 
830
  "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
831
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
832
 
833
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
834
+ #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
835
  msgid "Payment Gateways"
836
  msgstr "Pasarela de Pago"
837
 
838
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
839
  msgctxt "Post Type General Name"
840
  msgid "Pending Payments"
841
  msgstr ""
842
 
843
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
844
  msgctxt "Post Type Singular Name"
845
  msgid "Pending Payment"
846
  msgstr ""
847
 
848
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
849
+ #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
850
  msgid "Pending Payments"
851
  msgstr ""
852
 
853
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
854
  msgid "Edit Pending Payment"
855
  msgstr ""
856
 
857
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
858
+ #: addon-buy-creds.php:1699
859
  msgid "No pending payments found"
860
  msgstr ""
861
 
862
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
863
  msgid "Not found in Trash"
864
  msgstr ""
865
 
866
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
867
+ #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
868
  msgid "Transaction ID"
869
  msgstr "Identificación de la Transacción"
870
 
871
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
872
+ #: addon-buy-creds.php:1025
873
  msgid "Buyer"
874
  msgstr ""
875
 
876
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
877
+ #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
878
  #: gateway.php:594
879
  msgid "Cost"
880
  msgstr "Costo"
881
 
882
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
883
+ #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
884
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
885
  msgid "Gateway"
886
  msgstr "Pasarela"
887
 
888
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
889
  msgid "Type"
890
  msgstr ""
891
 
892
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
893
  msgid "Pay Out"
894
  msgstr ""
895
 
896
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
897
  msgid "buyCRED Purchase Log"
898
  msgstr "compraCRED Registro de Compras"
899
 
900
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
901
+ #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
902
  msgid "Purchase Log"
903
  msgstr "Registro de Compras"
904
 
905
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
906
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
907
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
908
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
909
  msgid "Payments"
910
  msgstr "Pagos"
911
 
912
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
913
  msgid "Please login to purchase %_plural%"
914
  msgstr "Identifícate antes de comprar %_plural%"
915
 
916
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
917
  #, php-format
918
  msgid "Gift purchase from %display_name%."
919
  msgstr "Regalo comprado de parte de %display_name%."
920
 
921
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
922
+ #: addon-ranks.php:1084
923
  msgid "Minimum %plural%"
924
  msgstr "Minimo %_plural%"
925
 
926
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
927
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
928
  msgstr ""
929
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
930
  "a 1."
931
 
932
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
933
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
934
+ #: module-settings.php:656
935
  msgid "Point Types"
936
  msgstr "Tipo de Puntos"
937
 
938
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
939
  msgid "Select the point types that users can buy. You must select at least one!"
940
  msgstr ""
941
 
942
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
943
  msgid "Login Template"
944
  msgstr "Plantilla de Ingreso"
945
 
946
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
947
  msgid "Content to show when a user is not logged in."
948
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
949
 
950
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
951
  msgid "Thank You Page"
952
  msgstr "Página de Agradecimiento"
953
 
954
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
955
+ #: addon-buy-creds.php:668
956
  msgid "Custom URL"
957
  msgstr "URL Personalizada"
958
 
959
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
960
+ #: addon-buy-creds.php:673
961
  msgid "Page"
962
  msgstr "Página"
963
 
964
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
965
  msgid "Cancellation Page"
966
  msgstr "Página de Cancelación"
967
 
968
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
969
  msgid "Show seperate log for %_plural% purchases."
970
  msgstr "Mostrar registro distinto para compras de %_plural%."
971
 
972
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
973
  msgid "Gifting"
974
  msgstr "Regalar"
975
 
976
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
977
  #, php-format
978
  msgid "Allow users to buy %_plural% for other users."
979
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
980
 
981
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
982
  #, php-format
983
  msgid "Allow users to buy %_plural% for content authors."
984
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
985
 
986
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
987
+ #: hooks.php:3110
988
  msgid "Available Shortcodes"
989
  msgstr "Códigos cortos Disponibles"
990
 
991
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
992
  #, php-format
993
  msgid "%s Exchange Rate"
994
  msgstr ""
995
 
996
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
997
  msgid "Save Exchange Rates"
998
  msgstr ""
999
 
1000
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
1001
  msgid "Exchange rate override saved"
1002
  msgstr ""
1003
 
1004
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
1005
  msgid "Payment completed"
1006
  msgstr ""
1007
 
1008
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1009
  #, php-format
1010
  msgid "%s Payment Gateways"
1011
  msgstr "%s Pasarelas de Pago"
1012
 
1013
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1014
+ #: addon-buy-creds.php:1034
1015
  msgid "buyCRED Settings"
1016
  msgstr "Configuraciones de compraCRED"
1017
 
1018
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1019
  msgid "Test Mode"
1020
  msgstr "Modo de Prueba"
1021
 
1022
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1023
  msgid "Enabled"
1024
  msgstr "Habilitado"
1025
 
1026
  #. also, "Inhabilitar"
1027
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1028
  msgid "Disabled"
1029
  msgstr "Deshactivado"
1030
 
1031
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1032
  msgid "Sandbox Mode"
1033
  msgstr "Modo Entorno Aislado"
1034
 
1035
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1036
  msgid "Enable for test purchases."
1037
  msgstr "Habilitar para compras de prueba."
1038
 
1039
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1040
+ #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1041
  msgid "Update Settings"
1042
  msgstr "Actualizar Configuraciones"
1043
 
1044
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1045
  msgid "More Gateways"
1046
  msgstr ""
1047
 
1048
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1049
+ #: 666
1050
  msgid "Date"
1051
  msgstr "Fecha"
1052
 
1053
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1054
  msgid "Payed"
1055
  msgstr "Pagado"
1056
 
1057
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1058
  msgid "<strong>buy</strong>CRED Purchase Log"
1059
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
1060
 
1061
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1062
  #: booking/mycred-eventespresso3.php:367
1063
  msgid "Gateway Settings"
1064
  msgstr "Configuraciones de la Pasarela de Pago"
1065
 
1066
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1067
  #: content/myCRED-addon-sell-content.php:1209
1068
  msgid "No purchases found"
1069
  msgstr "No se encontro ninguna compra"
1070
 
1071
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1072
+ #: addon-buy-creds.php:1411
1073
  msgid "This Add-on needs to setup before you can use this shortcode."
1074
  msgstr ""
1075
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
1076
  "corto (shortcode)."
1077
 
1078
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1079
+ #: addon-buy-creds.php:1430
1080
  msgid "No gateways installed."
1081
  msgstr "Ningun pasarela de pago instalado."
1082
 
1083
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1084
+ #: addon-buy-creds.php:1431
1085
  msgid "Gateway does not exist."
1086
  msgstr "Puerta de enlace no existe."
1087
 
1088
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1089
  msgid "Yourself"
1090
  msgstr "Tu mismo"
1091
 
1092
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1093
  msgid "No active gateways found."
1094
  msgstr "No se encuentra ningun puerta de enlace activo."
1095
 
1096
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1097
  msgid "The selected gateway is not active."
1098
  msgstr "La puerta de enlace seleccionada no esta activo."
1099
 
1100
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1101
  #, php-format
1102
  msgid "Buy with %gateway%"
1103
  msgstr "Compra con %gateway%"
1104
 
1105
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1106
  #: content/myCRED-addon-sell-content.php:44
1107
  msgid "Buy Now"
1108
  msgstr "Compra Ahora"
1109
 
1110
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1111
  msgid "No users found"
1112
  msgstr "Ningun Usuario Encontrado"
1113
 
1114
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1115
  msgid "To"
1116
  msgstr "A"
1117
 
1118
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1119
  msgid "Select Amount"
1120
  msgstr "Selecciona la Cantidad"
1121
 
1122
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1123
  msgid "min."
1124
  msgstr "min."
1125
 
1126
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1127
  msgid "Select Gateway"
1128
  msgstr "Selecciona la Pasarela de Pago"
1129
 
1130
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1131
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1132
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1133
  #: php:35
1134
  msgid "Pay Now"
1135
  msgstr "Pagar Ahora"
1136
 
1137
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1138
+ #: php:536
1139
  msgid "Cancel"
1140
  msgstr "Cancelar"
1141
 
1142
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1143
+ #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1144
+ #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1145
  msgid "Actions"
1146
  msgstr "Acciones"
1147
 
1279
  msgstr "Continuar a %s"
1280
 
1281
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1282
+ #: addons/buy-creds/gateways/bitpay.php:233
1283
  msgid "Click here if you are not automatically redirected"
1284
  msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
1285
 
1339
  msgid "December"
1340
  msgstr ""
1341
 
1342
+ #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
1343
+ #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
1344
+ #: php:145 ../addons/buy-creds/gateways/skrill.php:124
 
 
 
 
 
 
1345
  #, php-format
1346
  msgid "Price mismatch. Expected: %s Received: %s"
1347
  msgstr ""
1348
 
1349
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
1350
+ #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
1351
  #, php-format
1352
  msgid "Currency mismatch. Expected: %s Received: %s"
1353
  msgstr ""
1354
 
1355
+ #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
1356
+ #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
1357
+ #: php:157 ../addons/buy-creds/gateways/skrill.php:136
1358
  #, php-format
1359
  msgid "Payment not completed. Received: %s"
1360
  msgstr ""
1361
 
1362
+ #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
1363
+ #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/paypal-standard.
1364
+ #: php:168 ../addons/buy-creds/gateways/skrill.php:147 ../addons/buy-
1365
+ #: creds/gateways/zombaio.php:185
1366
  msgid "Failed to credit users account."
1367
  msgstr ""
1368
 
1369
+ #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
1370
+ #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/paypal-standard.
1371
+ #: php:208 ../addons/buy-creds/gateways/skrill.php:187 ../addons/buy-
1372
+ #: creds/gateways/zombaio.php:214
1373
  msgid "Please setup this gateway before attempting to make a purchase!"
1374
  msgstr ""
1375
  "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
1376
  "compra!"
1377
 
1378
+ #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
1379
+ #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
1380
+ #: ./addons/buy-creds/gateways/paypal-standard.php:268 ../addons/buy-
1381
+ #: creds/gateways/skrill.php:281 ../addons/buy-creds/gateways/zombaio.php:247
1382
  msgid "Processing payment &hellip;"
1383
  msgstr "Procesando el pago &hellip;"
1384
 
1385
+ #: ../addons/buy-creds/gateways/bitpay.php:219
1386
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1387
  msgstr ""
1388
  "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
1389
  "el administrador del sitio!"
1390
 
1391
+ #: ../addons/buy-creds/gateways/bitpay.php:220
1392
  msgid "Bitpay returned the following error message:"
1393
  msgstr "Bitpay comunico este mensaje de error:"
1394
 
1395
+ #: ../addons/buy-creds/gateways/bitpay.php:253 ../includes/mycred-remote.php:551
1396
  msgid "API Key"
1397
  msgstr "Clave de la API"
1398
 
1399
+ #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1400
+ #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
1401
+ #: 300
1402
  msgid "Currency"
1403
  msgstr "Moneda"
1404
 
1405
+ #: ../addons/buy-creds/gateways/bitpay.php:262
1406
  msgid "Currency Code"
1407
  msgstr "Código de Moneda"
1408
 
1409
+ #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1410
+ #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
1411
+ #: php:298 ../addons/buy-creds/gateways/skrill.php:319
1412
  msgid "Item Name"
1413
  msgstr "Nombre de Artículo"
1414
 
1415
+ #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
1416
+ #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
1417
+ #: php:302 ../addons/buy-creds/gateways/skrill.php:323
1418
  msgid "Description of the item being purchased by the user."
1419
  msgstr "Descripción del artículo que el usuario esta comprando."
1420
 
1421
+ #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
1422
+ #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
1423
+ #: php:305 ../addons/buy-creds/gateways/skrill.php:326
1424
  msgid "Exchange Rates"
1425
  msgstr ""
1426
 
1427
+ #: ../addons/buy-creds/gateways/bitpay.php:277
1428
  msgid "Transaction Speed"
1429
  msgstr "Velocidad de la Transacción"
1430
 
1431
+ #: ../addons/buy-creds/gateways/bitpay.php:284
1432
  msgid "High"
1433
  msgstr "Alto"
1434
 
1435
+ #: ../addons/buy-creds/gateways/bitpay.php:285
1436
  msgid "Medium"
1437
  msgstr "Medio"
1438
 
1439
+ #: ../addons/buy-creds/gateways/bitpay.php:286
1440
  msgid "Low"
1441
  msgstr "Bajo"
1442
 
1443
+ #: ../addons/buy-creds/gateways/bitpay.php:299
1444
  msgid "Full Notifications"
1445
  msgstr "Notificaciones Completas"
1446
 
1447
+ #: ../addons/buy-creds/gateways/bitpay.php:306 ../includes/mycred-network.php:161
1448
  #: ../includes/mycred-network.php:175
1449
  msgid "No"
1450
  msgstr "No"
1451
 
1452
+ #: ../addons/buy-creds/gateways/bitpay.php:307 ../includes/mycred-network.php:157
1453
  #: ../includes/mycred-network.php:171
1454
  msgid "Yes"
1455
  msgstr "Sí"
1456
 
1457
+ #: ../addons/buy-creds/gateways/netbilling.php:216
1458
  msgid "Account ID"
1459
  msgstr "ID de la Cuenta"
1460
 
1461
+ #: ../addons/buy-creds/gateways/netbilling.php:222
1462
  msgid "Site Tag"
1463
  msgstr "Etiqueta (tag) del Sitio"
1464
 
1465
+ #: ../addons/buy-creds/gateways/netbilling.php:228
1466
  msgid "Order Integrity Key"
1467
  msgstr "Clave de Integridad del Pedido"
1468
 
1469
+ #: ../addons/buy-creds/gateways/netbilling.php:232
1470
  msgid "Found under Step 12 on the Fraud Defense page."
1471
  msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
1472
 
1473
+ #: ../addons/buy-creds/gateways/netbilling.php:246
1474
  msgid "Postback CGI URL"
1475
  msgstr "Devolución de la URL CGI"
1476
 
1477
+ #: ../addons/buy-creds/gateways/netbilling.php:250
1478
  msgid ""
1479
  "For this gateway to work, you must login to your NETbilling account and edit "
1480
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1485
  "Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a la "
1486
  "dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
1487
 
1488
+ #: ../addons/buy-creds/gateways/netbilling.php:298
1489
  msgid "Incorrect Credit Card number"
1490
  msgstr "Número de Tarjeta de Crédito Incorrecta"
1491
 
1492
+ #: ../addons/buy-creds/gateways/netbilling.php:304
1493
  msgid "The credit card entered is past its expiration date."
1494
  msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
1495
 
1496
+ #: ../addons/buy-creds/gateways/netbilling.php:307
1497
  msgid "The CVV2 number entered is not valid."
1498
  msgstr "El numero CVV2 teclado no es valido."
1499
 
1500
+ #: ../addons/buy-creds/gateways/netbilling.php:314
1501
  msgid "The bank routing number entered is not valid."
1502
  msgstr "El número de ruta bancaria introducido no es valido."
1503
 
1504
+ #: ../addons/buy-creds/gateways/netbilling.php:318
1505
  msgid "The bank account number entered is not valid."
1506
  msgstr "La cuenta bancaria introducida no es valida."
1507
 
1508
+ #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
1509
+ #: creds/gateways/skrill.php:171
1510
  msgid "Success"
1511
  msgstr "Exito"
1512
 
1513
+ #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
1514
+ #: creds/gateways/skrill.php:172
1515
  msgid "Thank you for your purchase"
1516
  msgstr "Gracias por su compra"
1517
 
1518
+ #: ../addons/buy-creds/gateways/paypal-standard.php:263
1519
+ #, php-format
1520
+ msgctxt "Return label. %s = Website name"
1521
+ msgid "Return to %s"
1522
+ msgstr ""
1523
 
1524
+ #: ../addons/buy-creds/gateways/paypal-standard.php:292
1525
  msgid "Account Email"
1526
  msgstr "Cuenta de Correo Electrónico"
1527
 
1528
+ #: ../addons/buy-creds/gateways/skrill.php:228
1529
+ msgid "Return to "
1530
+ msgstr "Volver a"
1531
+
1532
+ #: ../addons/buy-creds/gateways/skrill.php:264
1533
  msgid "Product:"
1534
  msgstr "Producto:"
1535
 
1536
+ #: ../addons/buy-creds/gateways/skrill.php:273
1537
  msgid "Gift to:"
1538
  msgstr "Regalar a:"
1539
 
1540
+ #: ../addons/buy-creds/gateways/skrill.php:274
1541
  msgid "(author)"
1542
  msgstr "(autor)"
1543
 
1544
+ #: ../addons/buy-creds/gateways/skrill.php:307
1545
  msgid "Merchant Account Email"
1546
  msgstr "Correo electrónico de la Cuenta Comerciante"
1547
 
1548
+ #: ../addons/buy-creds/gateways/skrill.php:313
1549
  msgid "Secret Word"
1550
  msgstr "Palabra Secreta"
1551
 
1552
+ #: ../addons/buy-creds/gateways/skrill.php:330
1553
  msgid "Confirmation Email"
1554
  msgstr "Correo electrónico de confirmación"
1555
 
1556
+ #: ../addons/buy-creds/gateways/skrill.php:333
1557
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1558
  msgstr ""
1559
  "Pide a Skrill que me mande un email de confirmación para cada compra "
1560
  "finalizada con éxito."
1561
 
1562
+ #: ../addons/buy-creds/gateways/skrill.php:336
1563
  msgid "Checkout Page"
1564
  msgstr "Página de Pago"
1565
 
1566
+ #: ../addons/buy-creds/gateways/skrill.php:339 ../addons/gateway/carts/mycred-
1567
+ #: woocommerce.php:92 ../addons/ranks/myCRED-addon-ranks.php:1318 ..
1568
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1569
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1570
+ #: php:592 ../modules/mycred-module-hooks.php:3073
1571
  msgid "Title"
1572
  msgstr "Titulo"
1573
 
1574
+ #: ../addons/buy-creds/gateways/skrill.php:341
1575
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1576
  msgstr ""
1577
  "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
1578
  "título en la Página de Pagos Skrill. "
1579
 
1580
+ #: ../addons/buy-creds/gateways/skrill.php:344 ../addons/buy-
1581
+ #: creds/gateways/zombaio.php:283
1582
  msgid "Logo URL"
1583
  msgstr "URL del Logotipo"
1584
 
1585
+ #: ../addons/buy-creds/gateways/skrill.php:346
1586
  msgid ""
1587
  "The URL to the image you want to use on the top of the gateway. For best "
1588
  "integration results we recommend you use logos with dimensions up to 200px "
1592
  "Para obtener la mejor integración recomendamos que uses logotipos con "
1593
  "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
1594
 
1595
+ #: ../addons/buy-creds/gateways/skrill.php:349
1596
  msgid "Confirmation Note"
1597
  msgstr "Nota de Confirmación"
1598
 
1599
+ #: ../addons/buy-creds/gateways/skrill.php:351
1600
  msgid ""
1601
  "Optional text to show user once a transaction has been successfully "
1602
  "completed. This text is shown by Skrill."
1604
  "Texto opcional a mostrar al usuario cuando la transacción haya sido "
1605
  "completado con éxito. Este texto sera mostrado por Skrill."
1606
 
1607
+ #: ../addons/buy-creds/gateways/zombaio.php:154
1608
  #, php-format
1609
  msgid "Duplicate transaction. Received: %s"
1610
  msgstr ""
1611
 
1612
+ #: ../addons/buy-creds/gateways/zombaio.php:160
1613
  #, php-format
1614
  msgid "Live transaction while debug mode is enabled! Received: %s"
1615
  msgstr ""
1616
 
1617
+ #: ../addons/buy-creds/gateways/zombaio.php:265
1618
  msgid "Site ID"
1619
  msgstr "ID del Sitio de web"
1620
 
1621
  #. or "Contraseña de GW" not clear based on lack of context
1622
+ #: ../addons/buy-creds/gateways/zombaio.php:271
1623
  msgid "GW Password"
1624
  msgstr "Contraseña GW"
1625
 
1626
+ #: ../addons/buy-creds/gateways/zombaio.php:277
1627
  msgid "Pricing ID"
1628
  msgstr "ID de Precios"
1629
 
1630
+ #: ../addons/buy-creds/gateways/zombaio.php:289
1631
  msgid "IP Verification"
1632
  msgstr "Verificación de IP"
1633
 
1634
+ #: ../addons/buy-creds/gateways/zombaio.php:292
1635
  msgid "Do not verify that callbacks are coming from Zombaio."
1636
  msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
1637
 
1638
+ #: ../addons/buy-creds/gateways/zombaio.php:295
1639
  msgid "Language"
1640
  msgstr "Lengua"
1641
 
1642
+ #: ../addons/buy-creds/gateways/zombaio.php:302
1643
  msgid "Postback URL (ZScript)"
1644
  msgstr "Devolución de la URL (ZScript)"
1645
 
1646
+ #: ../addons/buy-creds/gateways/zombaio.php:306
1647
  msgid ""
1648
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1649
  "address and click validate."
1734
  msgstr ""
1735
 
1736
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1737
+ #: transfer.php:259 ../modules/mycred-module-hooks.php:1714 ../modules/mycred-
1738
+ #: module-hooks.php:2032
1739
  msgid "Limits"
1740
  msgstr "imites"
1741
 
1744
  msgstr "Expire"
1745
 
1746
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1747
+ #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:814 ..
1748
+ #: addons/email-notices/myCRED-addon-email-notices.php:1031 ..
1749
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1750
+ #: addons/gateway/carts/mycred-woocommerce.php:120 ..
1751
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1752
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1753
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1754
+ #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1755
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1756
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1757
  #: includes/importers/mycred-cubepoints.php:365
1758
  msgid "Point Type"
1764
  msgstr "todavia no utilizado"
1765
 
1766
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1767
+ #: 395 ../modules/mycred-module-hooks.php:2507
1768
  msgid "Total"
1769
  msgstr "Total"
1770
 
1926
  msgid "Message to show when a coupon was successfully deposited to a users account."
1927
  msgstr "Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
1928
 
 
 
 
 
1929
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1930
  msgid "Apply Coupon"
1931
  msgstr "Aplica el Cupón"
1932
 
1933
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1934
+ #: notices/myCRED-addon-email-notices.php:1267
1935
  msgid "Email Notice"
1936
  msgstr "Aviso por Correo Electrónico"
1937
 
2134
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
2135
 
2136
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2137
+ #: notices/myCRED-addon-email-notices.php:900
2138
  msgid "Email Settings"
2139
  msgstr "Configuracion de Correo Electrónico"
2140
 
2141
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2142
+ #: notices/myCRED-addon-email-notices.php:1053
2143
  msgid "Senders Name:"
2144
  msgstr "Nombre del Remitente"
2145
 
2146
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2147
+ #: notices/myCRED-addon-email-notices.php:1055
2148
  msgid "Senders Email:"
2149
  msgstr "Correo Electrónico del Remitente:"
2150
 
2168
  msgid "Ignored if HTML is not allowed in emails."
2169
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
2170
 
2171
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:719
2172
  #, php-format
2173
  msgctxt "Badge Title - Level 1,2,3.."
2174
  msgid "%s - Level %d"
2175
  msgstr ""
2176
 
2177
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
2178
+ #: notices/myCRED-addon-email-notices.php:949
2179
  msgid "Email Subject"
2180
  msgstr "Asunto del Correo Electrónico"
2181
 
2182
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2183
  msgid "Not Active"
2184
  msgstr "No esta Activo"
2185
 
2186
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:838
2187
  #, php-format
2188
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2189
  msgstr "Programada:<br /><strong>%1$s</strong>"
2190
 
2191
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:843
2192
  msgid "Active"
2193
  msgstr "Activo"
2194
 
2195
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:845
2196
  #, php-format
2197
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2198
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
2199
 
2200
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:855
2201
  msgid "Email is sent when"
2202
  msgstr "el Correo Electrónico se envia cuando"
2203
 
2204
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:857
2205
  msgid "Missing instance for this notice!"
2206
  msgstr "¡Falta una instancia para este aviso!"
2207
 
2208
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2209
+ #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
2210
+ #: addon-email-notices.php:870
2211
  msgid "Sent To"
2212
  msgstr "Enviado A:"
2213
 
2214
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2215
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2216
+ #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2217
  msgid "User"
2218
  msgstr "Usuario"
2219
 
2220
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
2221
+ #: notices/myCRED-addon-email-notices.php:1020
2222
  msgid "Administrator"
2223
  msgstr "Administrador"
2224
 
2225
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2226
  msgid "Both Administrator and User"
2227
  msgstr "Tanto Administrador como Usuario"
2228
 
2229
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
2230
+ #: notices/myCRED-addon-email-notices.php:1037
2231
  msgid "All types"
2232
  msgstr ""
2233
 
2234
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2235
  msgid "Available Template Tags"
2236
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
2237
 
2238
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:920
2239
  msgid "Email Header"
2240
  msgstr "Encabezado del Correo Electrónico"
2241
 
2242
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:986
2243
  msgid "Send this email notice when..."
2244
  msgstr "Envia este aviso por correo electrónico cuando..."
2245
 
2246
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
2247
  msgid "Recipient:"
2248
  msgstr "Destinatario:"
2249
 
2250
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2251
  msgid "Both"
2252
  msgstr "Ambos"
2253
 
2254
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1025 ..
2255
+ #: addons/gateway/carts/mycred-woocommerce.php:160 ../modules/mycred-module-
2256
+ #: settings.php:674 ../modules/mycred-module-settings.php:695 ../modules/mycred-
2257
+ #: module-settings.php:720
2258
  msgid "Label"
2259
  msgstr "Etiqueta"
2260
 
2261
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
2262
  msgid "Reply-To Email:"
2263
  msgstr "Responder-A Correo Electrónico:"
2264
 
2265
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
2266
  msgid "Save"
2267
  msgstr "Guardar"
2268
 
2269
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
2270
  msgid "CSS Styling"
2271
  msgstr "Estilo CSS"
2272
 
2273
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2274
  msgid "Site Related"
2275
  msgstr "Relacionado al Sitio"
2276
 
2277
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2278
  msgid "Your websites title"
2279
  msgstr "Titulo de tu pagina web"
2280
 
2281
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2282
  msgid "Your websites address"
2283
  msgstr "Dirección de tu pagina web"
2284
 
2285
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
2286
  msgid "Your websites tagline (description)"
2287
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2288
 
2289
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
2290
  msgid "Your websites admin email"
2291
  msgstr "El correo electrónico de admin para tu pagina web"
2292
 
2293
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
2294
  msgid "Total number of blog members"
2295
  msgstr "Número total de miembros del blog"
2296
 
2297
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2298
  msgid "The users new balance"
2299
  msgstr ""
2300
 
2301
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
2302
  msgid "The users old balance"
2303
  msgstr ""
2304
 
2305
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
2306
  msgid "The amount of points gained or lost in this instance"
2307
  msgstr ""
2308
 
2309
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2310
  msgid "The log entry"
2311
  msgstr ""
2312
 
2313
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
2314
+ #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
2315
+ #: addon-email-notices.php:1187
2316
  msgid "Email Notice Updated."
2317
  msgstr ""
2318
 
2319
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
2320
  msgid "Email Notice Activated"
2321
  msgstr "Notificación atraves de Correo Electrónico Activado"
2322
 
2323
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
2324
  msgid "Email Notice Saved"
2325
  msgstr "Aviso por Correo Electrónico Guardado"
2326
 
2327
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
2328
  msgid ""
2329
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2330
  "are not yet ready to use this email notice!"
2332
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2333
  "si aun no estás listo para utilizar este aviso por email!"
2334
 
2335
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
2336
  #, php-format
2337
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2338
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2339
 
2340
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
2341
  msgid "This email notice is active."
2342
  msgstr "Esta notificación de correo electrónico esta activada."
2343
 
2344
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
2345
  msgid "Settings saved."
2346
  msgstr ""
2347
 
2348
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2349
  msgid "Unsubscribe"
2350
  msgstr ""
2351
 
2352
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2353
  msgid "There are no email notifications yet."
2354
  msgstr ""
2355
 
2397
  msgstr "Pagado"
2398
 
2399
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2400
+ #: addons/gateway/carts/mycred-woocommerce.php:30 ../includes/mycred-network.php:
2401
  #: 50 ../includes/mycred-network.php:51
2402
  msgid "myCRED"
2403
  msgstr "myCRED"
2428
  msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balance_f%"
2429
 
2430
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2431
+ #: addons/gateway/carts/mycred-woocommerce.php:263
2432
  msgid "Insufficient funds."
2433
  msgstr ""
2434
 
2468
  msgstr "URL del Logotipo de la Pasarela de Pago"
2469
 
2470
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2471
+ #: addons/gateway/carts/mycred-woocommerce.php:136
2472
  #, php-format
2473
  msgid "How much is 1 %_singular% worth in %currency%?"
2474
  msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
2475
 
2476
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2477
+ #: addons/gateway/carts/mycred-woocommerce.php:141 ..
2478
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2479
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2480
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2481
+ #: php:578 ../includes/mycred-shortcodes.php:977
2482
  msgid "Exchange Rate"
2483
  msgstr "Tipo de Cambio"
2484
 
2485
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2486
+ #: addons/gateway/carts/mycred-woocommerce.php:169 ..
2487
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2488
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2489
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
2496
  msgstr "Porcentaje"
2497
 
2498
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2499
+ #: addons/gateway/carts/mycred-woocommerce.php:171 ..
2500
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2501
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2502
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
2570
  "pedido: ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. "
2571
  "No se permite el uso de HTML."
2572
 
2573
+ #: ../addons/gateway/carts/mycred-woocommerce.php:31
2574
  msgid "Let users pay using their myCRED balance."
2575
  msgstr "Permite que los usuarios paguen mediante su saldo myCRED."
2576
 
2577
+ #: ../addons/gateway/carts/mycred-woocommerce.php:85
2578
  msgid "Enable/Disable"
2579
  msgstr "Activar/Desactivar"
2580
 
2581
+ #: ../addons/gateway/carts/mycred-woocommerce.php:87
2582
  msgid "Enable myCRED Payment"
2583
  msgstr "Activar Pago myCRED"
2584
 
2585
+ #: ../addons/gateway/carts/mycred-woocommerce.php:89
2586
  msgid ""
2587
  "Users who are not logged in or excluded from using myCRED will not have "
2588
  "access to this gateway!"
2590
  "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
2591
  "myCRED no tendran acceso a esta pasarela de pago!"
2592
 
2593
+ #: ../addons/gateway/carts/mycred-woocommerce.php:94
2594
  msgid "Title to show for this payment option."
2595
  msgstr "Mostrar este titulo para esta opción de pago."
2596
 
2597
+ #: ../addons/gateway/carts/mycred-woocommerce.php:95
2598
  msgid "Pay with myCRED"
2599
  msgstr "Paga con myCRED"
2600
 
2601
  #. not sure if it is "message to customers" or "message from customers"? current translation is "message to customers"
2602
+ #: ../addons/gateway/carts/mycred-woocommerce.php:99
2603
  msgid "Customer Message"
2604
  msgstr "Mensaje a los Clientes"
2605
 
2606
+ #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
2607
+ #: addons/gateway/carts/mycred-woocommerce.php:182
2608
  msgid "Refund Log Template"
2609
  msgstr ""
2610
 
2611
+ #: ../addons/gateway/carts/mycred-woocommerce.php:122
2612
  msgid "Select the point type users can use to pay."
2613
  msgstr "Elige el tipo de punto que los usuarios pueden utilizar para realizar pagos."
2614
 
2615
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148
2616
  msgid "Show Total"
2617
  msgstr "Mostrar Total"
2618
 
2619
+ #: ../addons/gateway/carts/mycred-woocommerce.php:150
2620
  msgid "Show the final price in %_plural% ."
2621
  msgstr "Mostrar el precio final en %_plural%."
2622
 
2623
+ #: ../addons/gateway/carts/mycred-woocommerce.php:153
2624
  msgid "Show in Cart"
2625
  msgstr "Mostrar en Carrito"
2626
 
2627
+ #: ../addons/gateway/carts/mycred-woocommerce.php:154
2628
  msgid "Show on Checkout Page"
2629
  msgstr "Mostrar en la página de pago"
2630
 
2631
+ #: ../addons/gateway/carts/mycred-woocommerce.php:155
2632
  msgid "Show in Cart and on Checkout Page"
2633
  msgstr "Mostrar en el Carrito y en la página de pago"
2634
 
2635
+ #: ../addons/gateway/carts/mycred-woocommerce.php:162
2636
  msgid "Order Total in %_plural%"
2637
  msgstr "Total del Pedido en %_plural%"
2638
 
2639
+ #: ../addons/gateway/carts/mycred-woocommerce.php:178
2640
  msgid "Log entry template for profit sharing."
2641
  msgstr "Plantilla para entradas de registro para el reparto de ganancias."
2642
 
2643
+ #: ../addons/gateway/carts/mycred-woocommerce.php:184
2644
  msgid "Log entry template for refunds of profit shares."
2645
  msgstr ""
2646
 
2647
+ #: ../addons/gateway/carts/mycred-woocommerce.php:214
2648
  msgid "myCRED Payment"
2649
  msgstr "Pago myCRED"
2650
 
2651
+ #: ../addons/gateway/carts/mycred-woocommerce.php:215
2652
  #, php-format
2653
  msgid ""
2654
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2659
  "ten en cuenta que los usuarios con fondos insuficientes y los usuarios que "
2660
  "no han iniciado sesión no verán esta pasarela de pago en la página de pago."
2661
 
2662
+ #: ../addons/gateway/carts/mycred-woocommerce.php:240
2663
  msgid "You must be logged in to pay with %_plural%"
2664
  msgstr "Debes haber iniciado sesión para pagar con %_plural%"
2665
 
2666
+ #: ../addons/gateway/carts/mycred-woocommerce.php:246
2667
  msgid "You can not use this gateway. Please try a different payment option."
2668
  msgstr ""
2669
  "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
2670
  "diferente."
2671
 
2672
+ #: ../addons/gateway/carts/mycred-woocommerce.php:360
2673
+ #, php-format
2674
+ msgctxt "%s = Point amount formatted"
2675
+ msgid "Refunded %s"
2676
+ msgstr ""
2677
+
2678
+ #: ../addons/gateway/carts/mycred-woocommerce.php:408
2679
  msgid "Your account has successfully been charged."
2680
  msgstr "Su cuenta ha sido cambiado con éxito."
2681
 
2682
+ #: ../addons/gateway/carts/mycred-woocommerce.php:741 ..
2683
  #: addons/gateway/carts/mycred-wpecommerce.php:131
2684
  msgid "Your current balance"
2685
  msgstr "Tu saldo actual"
2824
  msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
2825
 
2826
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2827
+ #: modules/mycred-module-log.php:23 ../modules/mycred-module-log.php:24
2828
  msgid "Log"
2829
  msgstr "Registro"
2830
 
2924
  msgstr "Rechazar"
2925
 
2926
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2927
+ #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2928
+ #: modules/mycred-module-settings.php:699
2929
  msgid "Delete"
2930
  msgstr "Borrar"
2931
 
3060
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
3061
 
3062
  #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
3063
+ #: addons/ranks/myCRED-addon-ranks.php:1427 ../addons/ranks/myCRED-addon-ranks.
3064
+ #: php:1472 ../modules/mycred-module-buddypress.php:464
3065
  msgid "Template"
3066
  msgstr "Plantilla"
3067
 
3098
  "to user. Use zero to disable."
3099
  msgstr ""
3100
 
3101
+ #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
3102
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
3103
+ #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
3104
+ #: addons/ranks/myCRED-addon-ranks.php:833 ../addons/ranks/myCRED-addon-ranks.
3105
+ #: php:1310 ../addons/ranks/myCRED-addon-ranks.php:1601
3106
  msgid "Ranks"
3107
  msgstr "Rangos"
3108
 
3109
+ #: ../addons/ranks/myCRED-addon-ranks.php:424
3110
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3111
  msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
3112
 
3113
+ #: ../addons/ranks/myCRED-addon-ranks.php:425
3114
  msgid "Are you sure you want to re-assign user ranks?"
3115
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
3116
 
3117
+ #: ../addons/ranks/myCRED-addon-ranks.php:441
3118
  #, php-format
3119
  msgid "Ranks for %s"
3120
  msgstr ""
3121
 
3122
+ #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
3123
+ #: php:833
3124
  msgid "Rank"
3125
  msgstr "Rango"
3126
 
3127
+ #: ../addons/ranks/myCRED-addon-ranks.php:449
3128
  msgid "Add New Rank"
3129
  msgstr "Añadir Nuevo Rango"
3130
 
3131
+ #: ../addons/ranks/myCRED-addon-ranks.php:450
3132
  msgid "Edit Rank"
3133
  msgstr "Editar Rango"
3134
 
3135
+ #: ../addons/ranks/myCRED-addon-ranks.php:451
3136
  msgid "New Rank"
3137
  msgstr "Nuevo Rango"
3138
 
3139
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
3140
  msgid "View Rank"
3141
  msgstr "Ver Rango"
3142
 
3143
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
3144
  msgid "Search Ranks"
3145
  msgstr "Búsqueda de Rangos"
3146
 
3147
+ #: ../addons/ranks/myCRED-addon-ranks.php:455
3148
  msgid "No ranks found"
3149
  msgstr "Ningun rango encontrado"
3150
 
3151
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
3152
  msgid "No ranks found in Trash"
3153
  msgstr "Ningun rango encontrao el la papelera"
3154
 
3155
+ #: ../addons/ranks/myCRED-addon-ranks.php:540
3156
  #, php-format
3157
  msgid "Completed - Total of %d users effected"
3158
  msgstr "Completado - Un total %d usuarios afectados"
3159
 
3160
+ #: ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-addon-ranks.
3161
+ #: php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ../addons/ranks/myCRED-
3162
+ #: addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.php:981 ..
3163
+ #: addons/ranks/myCRED-addon-ranks.php:982 ../addons/ranks/myCRED-addon-ranks.
3164
+ #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986
3165
  msgid "Rank Updated."
3166
  msgstr ""
3167
 
3168
+ #: ../addons/ranks/myCRED-addon-ranks.php:983
3169
  msgid "Rank Enabled"
3170
  msgstr ""
3171
 
3172
+ #: ../addons/ranks/myCRED-addon-ranks.php:984
3173
  msgid "Rank Saved"
3174
  msgstr "Rango Guardado"
3175
 
3176
+ #: ../addons/ranks/myCRED-addon-ranks.php:1023
3177
  #, php-format
3178
  msgid "<strong>Rank:</strong> %s"
3179
  msgstr ""
3180
 
3181
+ #: ../addons/ranks/myCRED-addon-ranks.php:1039 ../addons/ranks/myCRED-addon-ranks.
3182
+ #: php:1122
3183
  msgid "Rank Title"
3184
  msgstr "Titulo de Rango"
3185
 
3186
+ #: ../addons/ranks/myCRED-addon-ranks.php:1040
3187
  msgid "Logo"
3188
  msgstr "Logotipo"
3189
 
3190
+ #: ../addons/ranks/myCRED-addon-ranks.php:1041
3191
  msgid "Requirement"
3192
  msgstr "Requisito"
3193
 
3194
+ #: ../addons/ranks/myCRED-addon-ranks.php:1067
3195
  msgid "No Logo Set"
3196
  msgstr "No hay Logotipo Configurado"
3197
 
3198
+ #: ../addons/ranks/myCRED-addon-ranks.php:1082 ../addons/ranks/myCRED-addon-ranks.
3199
+ #: php:1087
3200
  msgid "Any Value"
3201
  msgstr "Cualquier Valor"
3202
 
3203
+ #: ../addons/ranks/myCRED-addon-ranks.php:1089
3204
  msgid "Maximum %plural%"
3205
  msgstr "Maximo %plural%"
3206
 
3207
+ #: ../addons/ranks/myCRED-addon-ranks.php:1137
3208
  msgid "Rank Settings"
3209
  msgstr "Configuración de Rango"
3210
 
3211
+ #: ../addons/ranks/myCRED-addon-ranks.php:1191
3212
  msgid "Minimum %plural% to reach this rank"
3213
  msgstr "Minimo %plural% para llegar a este rango"
3214
 
3215
+ #: ../addons/ranks/myCRED-addon-ranks.php:1195
3216
  msgid "Maximum %plural% to be included in this rank"
3217
  msgstr "Maximo %plural% para ser incluido en este rango"
3218
 
3219
+ #: ../addons/ranks/myCRED-addon-ranks.php:1213
3220
  msgid "All Published Ranks"
3221
  msgstr "Todos los Rangos Publicados"
3222
 
3223
+ #: ../addons/ranks/myCRED-addon-ranks.php:1223 ../addons/ranks/myCRED-addon-ranks.
3224
+ #: php:1225
3225
  msgid "Not Set"
3226
  msgstr "No Configurado"
3227
 
3228
+ #: ../addons/ranks/myCRED-addon-ranks.php:1231
3229
  msgid "No Ranks found"
3230
  msgstr "Ningun rango encontrado"
3231
 
3232
+ #: ../addons/ranks/myCRED-addon-ranks.php:1315
3233
  msgid "Rank Features"
3234
  msgstr "Caracteristicas de los Rangos"
3235
 
3236
+ #: ../addons/ranks/myCRED-addon-ranks.php:1319
3237
  msgid "%plural% requirement"
3238
  msgstr "%plural% requisito"
3239
 
3240
+ #: ../addons/ranks/myCRED-addon-ranks.php:1320
3241
  msgid "Featured Image (Logo)"
3242
  msgstr "Imagen Principal (Logotipo)"
3243
 
3244
+ #: ../addons/ranks/myCRED-addon-ranks.php:1322
3245
  msgid "Content"
3246
  msgstr "Contenido"
3247
 
3248
+ #: ../addons/ranks/myCRED-addon-ranks.php:1324
3249
  msgid "Excerpt"
3250
  msgstr "Extracto"
3251
 
3252
+ #: ../addons/ranks/myCRED-addon-ranks.php:1326
3253
  msgid "Comments"
3254
  msgstr "Comentario"
3255
 
3256
+ #: ../addons/ranks/myCRED-addon-ranks.php:1328
3257
  msgid "Page Attributes"
3258
  msgstr "Atributos de Página"
3259
 
3260
+ #: ../addons/ranks/myCRED-addon-ranks.php:1330
3261
  msgid "Custom Fields"
3262
  msgstr "Campo Personalizado"
3263
 
3264
+ #: ../addons/ranks/myCRED-addon-ranks.php:1334
3265
  msgid "Public"
3266
  msgstr "Público"
3267
 
3268
  #. This is not clear, especially the second sentence (fragment)!
3269
+ #: ../addons/ranks/myCRED-addon-ranks.php:1338
3270
  msgid ""
3271
  "If you want to create a template archive for each rank, you must select to "
3272
  "have ranks public. Defaults to disabled."
3274
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
3275
  "los rangos sean público. Los valores predeterminados desactivado."
3276
 
3277
+ #: ../addons/ranks/myCRED-addon-ranks.php:1341
3278
  msgid "Archive URL"
3279
  msgstr "URL del Archivo"
3280
 
3281
+ #: ../addons/ranks/myCRED-addon-ranks.php:1345
3282
  msgid "Ignored if Ranks are not public"
3283
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
3284
 
3285
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
3286
+ #: ../addons/ranks/myCRED-addon-ranks.php:1348
3287
  msgid "Display Order"
3288
  msgstr "Orden de Visualización"
3289
 
3290
+ #: ../addons/ranks/myCRED-addon-ranks.php:1356
3291
  msgid "Ascending - Lowest rank to highest"
3292
  msgstr "Ascendente - Rango más bajo a lo más alto"
3293
 
3294
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
3295
  msgid "Descending - Highest rank to lowest"
3296
  msgstr "Descendiente - Rango más alto al más bajo"
3297
 
3298
+ #: ../addons/ranks/myCRED-addon-ranks.php:1368
3299
  msgid ""
3300
  "Select in what order ranks should be displayed in your admin area and/or "
3301
  "front if ranks are \"Public\""
3303
  "Elige en que orden se debe mostrar los rangos en tu area de administrador "
3304
  "y/o en el frente si los rangos son \"Público\""
3305
 
3306
+ #: ../addons/ranks/myCRED-addon-ranks.php:1374
3307
  msgid "Rank Basis"
3308
  msgstr "Base de Rango"
3309
 
3310
+ #: ../addons/ranks/myCRED-addon-ranks.php:1377
3311
  msgid "Users are ranked according to their current balance."
3312
  msgstr "Los usuarios se clasifican según su saldo actual."
3313
 
3314
+ #: ../addons/ranks/myCRED-addon-ranks.php:1380
3315
  msgid ""
3316
  "Users are ranked according to the total amount of %_plural% they have "
3317
  "accumulated."
3319
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
3320
  "acumulado."
3321
 
3322
+ #: ../addons/ranks/myCRED-addon-ranks.php:1384 ../addons/ranks/myCRED-addon-ranks.
3323
+ #: php:1389
3324
  msgid "Calculate Totals"
3325
  msgstr "Calcular Totales"
3326
 
3327
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3328
  msgid ""
3329
  "Use this button to calculate or recalculate your users totals. If not used, "
3330
  "the users current balance will be used as a starting point."
3331
  msgstr ""
3332
 
3333
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3334
  msgid ""
3335
  "Once a users total has been calculated, they will be assigned to their "
3336
  "appropriate roles. For this reason, it is highly recommended that you first "
3340
  "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
3341
  "que primero configures los rangos!"
3342
 
3343
+ #: ../addons/ranks/myCRED-addon-ranks.php:1388
3344
  msgid ""
3345
  "Depending on your log size and number of users this process may take a while."
3346
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3351
  "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
3352
  "completado!"
3353
 
3354
+ #: ../addons/ranks/myCRED-addon-ranks.php:1405 ../addons/ranks/myCRED-addon-ranks.
3355
+ #: php:1450 ../modules/mycred-module-buddypress.php:424
3356
  msgid "Do not show."
3357
  msgstr "No mostrar."
3358
 
3359
+ #: ../addons/ranks/myCRED-addon-ranks.php:1406
3360
  msgid "Include in Profile Header."
3361
  msgstr "Incluir en Encabezado del Perfil"
3362
 
3363
+ #: ../addons/ranks/myCRED-addon-ranks.php:1408
3364
  msgid "Include under the \"Profile\" tab and Profile Header."
3365
  msgstr "Incluir en la pestanã \"Perfil\" y Encabezado de Perfil"
3366
 
3367
+ #: ../addons/ranks/myCRED-addon-ranks.php:1412
3368
  msgid "Rank in BuddyPress"
3369
  msgstr "Rango en BuddyPress"
3370
 
3371
+ #: ../addons/ranks/myCRED-addon-ranks.php:1429 ../addons/ranks/myCRED-addon-ranks.
3372
+ #: php:1474
3373
  #, php-format
3374
  msgid ""
3375
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3376
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3377
  msgstr ""
3378
 
3379
+ #: ../addons/ranks/myCRED-addon-ranks.php:1451
3380
  msgid "Include in Topic Replies"
3381
  msgstr ""
3382
 
3383
+ #: ../addons/ranks/myCRED-addon-ranks.php:1453
3384
  msgid "Include in Topic Replies and Profile"
3385
  msgstr ""
3386
 
3387
+ #: ../addons/ranks/myCRED-addon-ranks.php:1457
3388
  msgid "Rank in bbPress"
3389
  msgstr ""
3390
 
3391
+ #: ../addons/ranks/myCRED-addon-ranks.php:1536
3392
  msgid "Script Communication Error"
3393
  msgstr "Error del Script de Comunicación"
3394
 
3395
+ #: ../addons/ranks/myCRED-addon-ranks.php:1604 ../modules/mycred-module-settings.
3396
+ #: php:632
3397
  msgid "User Meta Key"
3398
  msgstr "Clave Meta del Usuario"
3399
 
3400
+ #: ../addons/ranks/myCRED-addon-ranks.php:1608
3401
  msgid "No. of ranks"
3402
  msgstr "Numero de Rangos"
3403
 
3404
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3405
  msgid "Remove All Ranks"
3406
  msgstr "Quitar todos los Rangos"
3407
 
3408
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3409
  msgid "Assign Ranks to Users"
3410
  msgstr "Asignar Rango a los Usuarios"
3411
 
3611
  msgstr "Ver Registro"
3612
 
3613
  #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3614
+ #: modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27 ..
3615
+ #: modules/mycred-module-hooks.php:28
3616
  msgid "Hooks"
3617
  msgstr "Ganchos"
3618
 
3650
  msgstr ""
3651
 
3652
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3653
+ #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3654
  msgid "Today"
3655
  msgstr "Hoy"
3656
 
3657
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3658
+ #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3659
  msgid "This Week"
3660
  msgstr "Esta Semana"
3661
 
3662
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3663
+ #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3664
  msgid "This Month"
3665
  msgstr "Este Mes"
3666
 
3727
  msgstr "Has excedido tu limite de transferencia de %limit%."
3728
 
3729
  #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3730
+ #: php:2454
3731
  msgid "Transfer"
3732
  msgstr "Transferir"
3733
 
3766
  "transferencias hasta que se haga esto."
3767
 
3768
  #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3769
+ #: php:2582
3770
  msgid "Insufficient Funds. Please try a lower amount."
3771
  msgstr ""
3772
 
3924
  msgid "recipients %s"
3925
  msgstr "destinatarios %s"
3926
 
3927
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3928
  msgid "To:"
3929
  msgstr "A:"
3930
 
3931
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
3932
  msgid "Amount:"
3933
  msgstr "Cantidad:"
3934
 
4124
  msgid "Available Template Tags:"
4125
  msgstr "Etiquetas de Plantilla Disponibles:"
4126
 
4127
+ #: ../includes/mycred-functions.php:1694
4128
  msgid "Entire Log"
4129
  msgstr "Todo el Registro"
4130
 
4131
+ #: ../includes/mycred-functions.php:1699 ../includes/mycred-functions.php:1700
4132
  msgid "Displayed Rows"
4133
  msgstr "Filas Mostradas"
4134
 
4135
+ #: ../includes/mycred-functions.php:1707
4136
  msgid "Search Results"
4137
  msgstr "Resultados de la Búsqueda"
4138
 
4139
+ #: ../includes/mycred-functions.php:1708
4140
  msgid "My Entire Log"
4141
  msgstr "Mi Registro Entero"
4142
 
4143
+ #: ../includes/mycred-functions.php:1875
4144
  msgid "ref empty"
4145
  msgstr "ref vacío"
4146
 
4147
+ #: ../includes/mycred-functions.php:1883
4148
  msgid "incorrect user id format"
4149
  msgstr "Formato incorrecto para id del usuario"
4150
 
4151
+ #: ../includes/mycred-functions.php:1896
4152
  msgid "incorrect unix timestamp (from):"
4153
  msgstr "erroneo marca de tiempo de unix (desde):"
4154
 
4155
+ #: ../includes/mycred-functions.php:1905
4156
  msgid "incorrect unix timestamp (to):"
4157
  msgstr "erroneo marca de tiempo de unix (a):"
4158
 
4159
+ #: ../includes/mycred-functions.php:2314
4160
  msgid "Website Registration"
4161
  msgstr ""
4162
 
4163
+ #: ../includes/mycred-functions.php:2315
4164
  msgid "Website Visit"
4165
  msgstr ""
4166
 
4167
+ #: ../includes/mycred-functions.php:2316
4168
  msgid "Viewing Content (Member)"
4169
  msgstr ""
4170
 
4171
+ #: ../includes/mycred-functions.php:2317
4172
  msgid "Viewing Content (Author)"
4173
  msgstr ""
4174
 
4175
+ #: ../includes/mycred-functions.php:2318
4176
  msgid "Logging in"
4177
  msgstr ""
4178
 
4179
+ #: ../includes/mycred-functions.php:2319
4180
  msgid "Publishing Content"
4181
  msgstr ""
4182
 
4183
+ #: ../includes/mycred-functions.php:2320 ../modules/mycred-module-hooks.php:1663
4184
  msgid "Approved Comment"
4185
  msgstr "Comentario Aprobado"
4186
 
4187
+ #: ../includes/mycred-functions.php:2321
4188
  msgid "Unapproved Comment"
4189
  msgstr ""
4190
 
4191
+ #: ../includes/mycred-functions.php:2322
4192
  msgid "SPAM Comment"
4193
  msgstr ""
4194
 
4195
+ #: ../includes/mycred-functions.php:2323
4196
  msgid "Deleted Comment"
4197
  msgstr ""
4198
 
4199
+ #: ../includes/mycred-functions.php:2324
4200
  msgid "Link Click"
4201
  msgstr ""
4202
 
4203
+ #: ../includes/mycred-functions.php:2325
4204
  msgid "Watching Video"
4205
  msgstr ""
4206
 
4207
+ #: ../includes/mycred-functions.php:2326
4208
  msgid "Visitor Referral"
4209
  msgstr ""
4210
 
4211
+ #: ../includes/mycred-functions.php:2327
4212
  msgid "Signup Referral"
4213
  msgstr ""
4214
 
4215
+ #: ../includes/mycred-functions.php:2331
4216
  msgid "New Profile Update"
4217
  msgstr ""
4218
 
4219
+ #: ../includes/mycred-functions.php:2332
4220
  msgid "Profile Update Removal"
4221
  msgstr ""
4222
 
4223
+ #: ../includes/mycred-functions.php:2333
4224
  msgid "Avatar Upload"
4225
  msgstr ""
4226
 
4227
+ #: ../includes/mycred-functions.php:2334
4228
  msgid "New Friendship"
4229
  msgstr ""
4230
 
4231
+ #: ../includes/mycred-functions.php:2335
4232
  msgid "Ended Friendship"
4233
  msgstr ""
4234
 
4235
+ #: ../includes/mycred-functions.php:2336
4236
  msgid "New Profile Comment"
4237
  msgstr ""
4238
 
4239
+ #: ../includes/mycred-functions.php:2337
4240
  msgid "Profile Comment Deletion"
4241
  msgstr ""
4242
 
4243
+ #: ../includes/mycred-functions.php:2338
4244
  msgid "New Message"
4245
  msgstr ""
4246
 
4247
+ #: ../includes/mycred-functions.php:2339
4248
  msgid "Sending Gift"
4249
  msgstr ""
4250
 
4251
+ #: ../includes/mycred-functions.php:2340
4252
  msgid "New Group"
4253
  msgstr ""
4254
 
4255
+ #: ../includes/mycred-functions.php:2341
4256
  msgid "Deleted Group"
4257
  msgstr ""
4258
 
4259
+ #: ../includes/mycred-functions.php:2342
4260
  msgid "New Group Forum Topic"
4261
  msgstr ""
4262
 
4263
+ #: ../includes/mycred-functions.php:2343
4264
  msgid "Edit Group Forum Topic"
4265
  msgstr ""
4266
 
4267
+ #: ../includes/mycred-functions.php:2344
4268
  msgid "New Group Forum Post"
4269
  msgstr ""
4270
 
4271
+ #: ../includes/mycred-functions.php:2345
4272
  msgid "Edit Group Forum Post"
4273
  msgstr ""
4274
 
4275
+ #: ../includes/mycred-functions.php:2346
4276
  msgid "Joining Group"
4277
  msgstr ""
4278
 
4279
+ #: ../includes/mycred-functions.php:2347
4280
  msgid "Leaving Group"
4281
  msgstr ""
4282
 
4283
+ #: ../includes/mycred-functions.php:2348
4284
  msgid "New Group Avatar"
4285
  msgstr ""
4286
 
4287
+ #: ../includes/mycred-functions.php:2349
4288
  msgid "New Group Comment"
4289
  msgstr ""
4290
 
4291
+ #: ../includes/mycred-functions.php:2353 ../plugins/mycred-hook-buddypress-media.
4292
  #: php:205
4293
  msgid "Photo Upload"
4294
  msgstr "Subir Foto"
4295
 
4296
+ #: ../includes/mycred-functions.php:2354 ../plugins/mycred-hook-buddypress-media.
4297
  #: php:219
4298
  msgid "Video Upload"
4299
  msgstr "Subir Video"
4300
 
4301
+ #: ../includes/mycred-functions.php:2355 ../plugins/mycred-hook-buddypress-media.
4302
  #: php:233
4303
  msgid "Music Upload"
4304
  msgstr "Subir Música"
4305
 
4306
+ #: ../includes/mycred-functions.php:2359
4307
  msgid "New Link"
4308
  msgstr ""
4309
 
4310
+ #: ../includes/mycred-functions.php:2360
4311
  msgid "Link Voting"
4312
  msgstr ""
4313
 
4314
+ #: ../includes/mycred-functions.php:2361
4315
  msgid "Link Update"
4316
  msgstr ""
4317
 
4318
+ #: ../includes/mycred-functions.php:2365
4319
  msgid "New Forum (bbPress)"
4320
  msgstr ""
4321
 
4322
+ #: ../includes/mycred-functions.php:2366
4323
  msgid "New Forum Topic (bbPress)"
4324
  msgstr ""
4325
 
4326
+ #: ../includes/mycred-functions.php:2367
4327
  msgid "Favorited Topic (bbPress)"
4328
  msgstr ""
4329
 
4330
+ #: ../includes/mycred-functions.php:2368
4331
  msgid "New Topic Reply (bbPress)"
4332
  msgstr ""
4333
 
4334
+ #: ../includes/mycred-functions.php:2372
4335
  msgid "Form Submission (Contact Form 7)"
4336
  msgstr ""
4337
 
4338
+ #: ../includes/mycred-functions.php:2375
4339
  msgid "Form Submission (Gravity Form)"
4340
  msgstr ""
4341
 
4342
+ #: ../includes/mycred-functions.php:2378
4343
  msgid "New Forum Topic (SimplePress)"
4344
  msgstr ""
4345
 
4346
+ #: ../includes/mycred-functions.php:2379
4347
  msgid "New Forum Post (SimplePress)"
4348
  msgstr ""
4349
 
4350
+ #: ../includes/mycred-functions.php:2388
4351
  msgid "Affiliate Signup (AffiliateWP)"
4352
  msgstr ""
4353
 
4354
+ #: ../includes/mycred-functions.php:2389
4355
  msgid "Referred Visit (AffiliateWP)"
4356
  msgstr ""
4357
 
4358
+ #: ../includes/mycred-functions.php:2390
4359
  msgid "Affiliate Referral (AffiliateWP)"
4360
  msgstr ""
4361
 
4362
+ #: ../includes/mycred-functions.php:2391
4363
  msgid "Referral Refund (AffiliateWP)"
4364
  msgstr ""
4365
 
4366
+ #: ../includes/mycred-functions.php:2395 ../plugins/mycred-hook-wp-postratings.
4367
  #: php:150
4368
  msgid "Adding a Rating"
4369
  msgstr ""
4370
 
4371
+ #: ../includes/mycred-functions.php:2396 ../plugins/mycred-hook-wp-postratings.
4372
  #: php:169
4373
  msgid "Receiving a Rating"
4374
  msgstr ""
4375
 
4376
+ #: ../includes/mycred-functions.php:2400
4377
  msgid "Poll Voting"
4378
  msgstr ""
4379
 
4380
+ #: ../includes/mycred-functions.php:2403
4381
  msgid "Sending an Invite"
4382
  msgstr ""
4383
 
4384
+ #: ../includes/mycred-functions.php:2404
4385
  msgid "Accepting an Invite"
4386
  msgstr ""
4387
 
4388
+ #: ../includes/mycred-functions.php:2410
4389
  msgid "Banking Payout"
4390
  msgstr ""
4391
 
4392
+ #: ../includes/mycred-functions.php:2413
4393
  msgid "buyCRED Purchase (PayPal Standard)"
4394
  msgstr ""
4395
 
4396
+ #: ../includes/mycred-functions.php:2414
4397
  msgid "buyCRED Purchase (Skrill)"
4398
  msgstr ""
4399
 
4400
+ #: ../includes/mycred-functions.php:2415
4401
  msgid "buyCRED Purchase (Zombaio)"
4402
  msgstr ""
4403
 
4404
+ #: ../includes/mycred-functions.php:2416
4405
  msgid "buyCRED Purchase (NETBilling)"
4406
  msgstr ""
4407
 
4408
+ #: ../includes/mycred-functions.php:2417
4409
  msgid "buyCRED Purchase (BitPay)"
4410
  msgstr ""
4411
 
4412
+ #: ../includes/mycred-functions.php:2422
4413
  msgid "Coupon Purchase"
4414
  msgstr ""
4415
 
4416
+ #: ../includes/mycred-functions.php:2426
4417
  msgid "Store Purchase (WooCommerce)"
4418
  msgstr ""
4419
 
4420
+ #: ../includes/mycred-functions.php:2427
4421
  msgid "Store Reward (WooCommerce)"
4422
  msgstr ""
4423
 
4424
+ #: ../includes/mycred-functions.php:2428
4425
  msgid "Product Review (WooCommerce)"
4426
  msgstr ""
4427
 
4428
+ #: ../includes/mycred-functions.php:2431
4429
  msgid "Store Purchase (MarketPress)"
4430
  msgstr ""
4431
 
4432
+ #: ../includes/mycred-functions.php:2432
4433
  msgid "Store Reward (MarketPress)"
4434
  msgstr ""
4435
 
4436
+ #: ../includes/mycred-functions.php:2435
4437
  msgid "Store Purchase (WP E-Commerce)"
4438
  msgstr ""
4439
 
4440
+ #: ../includes/mycred-functions.php:2441
4441
  msgid "Event Payment (Event Espresso)"
4442
  msgstr ""
4443
 
4444
+ #: ../includes/mycred-functions.php:2442
4445
  msgid "Event Sale (Event Espresso)"
4446
  msgstr ""
4447
 
4448
+ #: ../includes/mycred-functions.php:2446
4449
  msgid "Event Payment (Events Manager)"
4450
  msgstr ""
4451
 
4452
+ #: ../includes/mycred-functions.php:2447
4453
  msgid "Event Sale (Events Manager)"
4454
  msgstr ""
4455
 
4456
+ #: ../includes/mycred-functions.php:2451
4457
  msgid "Content Purchase / Sale"
4458
  msgstr ""
4459
 
4460
+ #: ../includes/mycred-functions.php:2458
4461
  msgid "Manual Adjustment by Admin"
4462
  msgstr ""
4463
 
4464
+ #: ../includes/mycred-functions.php:2528 ../includes/mycred-shortcodes.php:925
4465
  msgid "Point types not found."
4466
  msgstr ""
4467
 
4468
+ #: ../includes/mycred-functions.php:2540 ../includes/mycred-functions.php:2560 ..
4469
+ #: includes/mycred-shortcodes.php:931 ../includes/mycred-shortcodes.php:939
4470
  #, php-format
4471
  msgid "You are excluded from using %s."
4472
  msgstr ""
4473
 
4474
+ #: ../includes/mycred-functions.php:2550 ../includes/mycred-shortcodes.php:935
4475
  msgid "Your balance is too low to use this feature."
4476
  msgstr ""
4477
 
4478
+ #: ../includes/mycred-functions.php:2573
4479
  #, php-format
4480
  msgid "You must exchange at least %s!"
4481
  msgstr ""
4482
 
4483
+ #: ../includes/mycred-functions.php:2595
4484
  #, php-format
4485
  msgid "Exchange from %s"
4486
  msgstr ""
4487
 
4488
+ #: ../includes/mycred-functions.php:2607
4489
  #, php-format
4490
  msgid "Exchange to %s"
4491
  msgstr ""
4492
 
4493
+ #: ../includes/mycred-functions.php:2615
4494
  #, php-format
4495
  msgid "You have successfully exchanged %s into %s."
4496
  msgstr ""
4497
 
4498
+ #: ../includes/mycred-functions.php:2647
4499
  msgid "per day"
4500
  msgstr ""
4501
 
4502
+ #: ../includes/mycred-functions.php:2649
4503
  msgid "per week"
4504
  msgstr ""
4505
 
4506
+ #: ../includes/mycred-functions.php:2651
4507
  msgid "per month"
4508
  msgstr ""
4509
 
4510
+ #: ../includes/mycred-functions.php:2653
4511
  msgid "in total"
4512
  msgstr ""
4513
 
4514
+ #: ../includes/mycred-functions.php:2655 ../includes/mycred-functions.php:2659
4515
  #, php-format
4516
  msgid "Maximum once"
4517
  msgid_plural "Maximum %d times"
4577
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
4578
  "mínimos de mycred. Se produce los siguientes errores:"
4579
 
4580
+ #: ../includes/mycred-install.php:268
4581
  msgid "myCRED needs your attention."
4582
  msgstr "myCRED precisa tu atención."
4583
 
4584
+ #: ../includes/mycred-install.php:268
4585
  msgid "Run Setup"
4586
  msgstr "Ejecutar Configuración"
4587
 
4588
+ #: ../includes/mycred-install.php:280 ../includes/mycred-install.php:281
4589
  msgid "myCRED Setup"
4590
  msgstr "Instalación de myCRED"
4591
 
4592
+ #: ../includes/mycred-install.php:410
4593
  #, php-format
4594
  msgid "%s Setup"
4595
  msgstr "Configurar %s"
4596
 
4597
+ #: ../includes/mycred-install.php:412
4598
  msgid "Step"
4599
  msgstr "Paso"
4600
 
4601
+ #: ../includes/mycred-install.php:436
4602
  msgid ""
4603
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4604
  "points format, layout and security settings."
4606
  "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
4607
  "el formato de puntos, disposiciones y configuraciones de seguridad."
4608
 
4609
+ #: ../includes/mycred-install.php:437
4610
  msgid "Begin Setup"
4611
  msgstr "Empezar la Instalación"
4612
 
4613
+ #: ../includes/mycred-install.php:492
4614
  msgid "Select the format you want to use for your points."
4615
  msgstr "Elige el formato que quieres usar para tus puntos."
4616
 
4617
+ #: ../includes/mycred-install.php:493
4618
  msgid "Format"
4619
  msgstr "Formato"
4620
 
4621
+ #: ../includes/mycred-install.php:496
4622
  msgid "Separators"
4623
  msgstr "Separadores"
4624
 
4625
+ #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:531
4626
  msgid "Decimals"
4627
  msgstr "Decimales"
4628
 
4629
+ #: ../includes/mycred-install.php:508
4630
  msgid "Use zero for no decimals or maximum 20."
4631
  msgstr ""
4632
 
4633
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:537
4634
  msgid "Presentation"
4635
  msgstr "Presentación"
4636
 
4637
+ #: ../includes/mycred-install.php:514 ../modules/mycred-module-settings.php:518
4638
  msgid "Name (Singular)"
4639
  msgstr "Nombre (singular)"
4640
 
4641
+ #: ../includes/mycred-install.php:518 ../modules/mycred-module-settings.php:523
4642
  msgid "Name (Plural)"
4643
  msgstr "Nombre (plural)"
4644
 
4645
+ #: ../includes/mycred-install.php:524 ../modules/mycred-module-settings.php:540
4646
  msgid "Prefix"
4647
  msgstr "Prefijo"
4648
 
4649
+ #: ../includes/mycred-install.php:532 ../modules/mycred-module-settings.php:548
4650
  msgid "Suffix"
4651
  msgstr "Sufijo"
4652
 
4653
+ #: ../includes/mycred-install.php:536
4654
  msgid "Cancel Setup"
4655
  msgstr "Cancelar la Instalación"
4656
 
4657
+ #: ../includes/mycred-install.php:536 ../includes/mycred-install.php:606
4658
  msgid "Next"
4659
  msgstr "Siguiente"
4660
 
4661
+ #: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:556
4662
  msgid "Security"
4663
  msgstr "Seguridad"
4664
 
4665
+ #: ../includes/mycred-install.php:571
4666
  msgid "Edit Settings Capability"
4667
  msgstr "Editar la capacidad de las configuraciones"
4668
 
4669
  #. is this user's or users (plural)?
4670
+ #: ../includes/mycred-install.php:575
4671
  msgid "Edit Users %plural% Capability"
4672
  msgstr "Editar la Capacidad de %plural% del Usuario"
4673
 
4674
+ #: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:569
4675
  msgid "Maximum %plural% payouts"
4676
  msgstr "Desembolso %plural% Máximo"
4677
 
4678
+ #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:571
4679
  msgid ""
4680
  "As an added security, you can set the maximum amount a user can gain or "
4681
  "loose in a single instance. If used, make sure this is the maximum amount a "
4687
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
4688
  "o gastar en tu tienda. Ponga zero para desactivar."
4689
 
4690
+ #: ../includes/mycred-install.php:584 ../modules/mycred-module-settings.php:574
4691
  msgid "Excludes"
4692
  msgstr "Excluye"
4693
 
4694
+ #: ../includes/mycred-install.php:588 ../modules/mycred-module-settings.php:578
4695
  msgid "Exclude those who can \"Edit Settings\"."
4696
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
4697
 
4698
+ #: ../includes/mycred-install.php:592 ../modules/mycred-module-settings.php:582
4699
  msgid "Exclude those who can \"Edit Users %plural%\"."
4700
  msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
4701
 
4702
+ #: ../includes/mycred-install.php:595 ../modules/mycred-module-settings.php:586
4703
  msgid "Exclude the following user IDs:"
4704
  msgstr "Excluir a los siguientes IDs de usuarios"
4705
 
4706
+ #: ../includes/mycred-install.php:599 ../modules/mycred-module-settings.php:591
4707
  msgid "User Deletions"
4708
  msgstr "Eliminación de Usuarios"
4709
 
4710
+ #: ../includes/mycred-install.php:603 ../modules/mycred-module-settings.php:594
4711
  msgid "Delete log entries when user is deleted."
4712
  msgstr "Elimina las entradas de registro cuando se elimina el usuario."
4713
 
4714
+ #: ../includes/mycred-install.php:624
4715
  msgid "Ready"
4716
  msgstr "Listo"
4717
 
4718
+ #: ../includes/mycred-install.php:625
4719
  msgid "Almost done! Click the button below to finish this setup."
4720
  msgstr ""
4721
  "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
4722
  "configuración."
4723
 
4724
+ #: ../includes/mycred-install.php:626
4725
  msgid "Install & Run"
4726
  msgstr "Instalar e ejecutar"
4727
 
4728
+ #: ../includes/mycred-log.php:430
4729
  #, php-format
4730
  msgid "Showing %d %s"
4731
  msgstr "Mostrando %d %s"
4732
 
4733
  #. need more context: entrada or inscripción
4734
+ #: ../includes/mycred-log.php:430
4735
  msgid "entry"
4736
  msgstr "entrada"
4737
 
4738
+ #: ../includes/mycred-log.php:444
4739
  msgid "Go to the first page"
4740
  msgstr "Ir a la primera página"
4741
 
4742
+ #: ../includes/mycred-log.php:451
4743
  msgid "Go to the previous page"
4744
  msgstr "Ir a la página anterior"
4745
 
4746
+ #: ../includes/mycred-log.php:460
4747
  msgid "Current page"
4748
  msgstr "Página corriente"
4749
 
4750
+ #: ../includes/mycred-log.php:466
4751
  #, php-format
4752
  msgctxt "mycred"
4753
  msgid "%1$s of %2$s"
4754
  msgstr ""
4755
 
4756
+ #: ../includes/mycred-log.php:470
4757
  msgid "Go to the next page"
4758
  msgstr "Ir a la página siguiente"
4759
 
4760
+ #: ../includes/mycred-log.php:477
4761
  msgid "Go to the last page"
4762
  msgstr "Ir a la última página"
4763
 
4764
+ #: ../includes/mycred-log.php:544
4765
  msgid "Show all references"
4766
  msgstr "Muestra todas las referencias"
4767
 
4768
+ #: ../includes/mycred-log.php:557
4769
+ msgid "User ID, Username, Email or Nicename"
4770
+ msgstr ""
4771
 
4772
+ #: ../includes/mycred-log.php:563
4773
  msgid "Show in order"
4774
  msgstr "Mostrar en Orden"
4775
 
4776
+ #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4777
  msgid "Ascending"
4778
  msgstr "Ascendente"
4779
 
4780
+ #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4781
  msgid "Descending"
4782
  msgstr "Descendente"
4783
 
4784
+ #: ../includes/mycred-log.php:582
4785
  msgid "Filter"
4786
  msgstr "Filtro"
4787
 
4788
+ #: ../includes/mycred-log.php:635
4789
  msgid ""
4790
  "Log entries are exported to a CSV file and depending on the number of "
4791
  "entries selected, the process may take a few seconds."
4793
  "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
4794
  "número de entradas seleccionadas, el proceso puede tardar unos segundos."
4795
 
4796
+ #: ../includes/mycred-log.php:639
4797
  msgid "No export options available."
4798
  msgstr "No hay opciones para exportar."
4799
 
4800
  #. need more context: entrada or inscripción
4801
+ #: ../includes/mycred-log.php:668
4802
  msgid "Entry"
4803
  msgstr "Entrada"
4804
 
4805
+ #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4806
  msgid "User Missing"
4807
  msgstr "Usuario Ausente"
4808
 
4809
+ #: ../includes/mycred-log.php:839
4810
  msgid "No log entries found"
4811
  msgstr "Ninguna entrada de registro encontrada"
4812
 
4813
+ #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4814
  msgid "Search Log"
4815
  msgstr "Busqueda de Registro"
4816
 
4817
  #. buscar las entradas en el registro
4818
+ #: ../includes/mycred-log.php:855
4819
  msgid "search log entries"
4820
  msgstr "Búsqueda de las entradas de registro"
4821
 
4822
+ #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4823
+ #: modules/mycred-module-buddypress.php:249
4824
  msgid "All"
4825
  msgstr "Todo"
4826
 
4827
+ #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4828
  msgid "Yesterday"
4829
  msgstr "Ayer"
4830
 
5000
  msgid "Error - Try Again"
5001
  msgstr "Error - Inténtelo de nuevo."
5002
 
5003
+ #: ../includes/mycred-shortcodes.php:764
5004
  msgid "A video ID is required for this shortcode"
5005
  msgstr "Este código corto (shortcode) precisa un ID del video."
5006
 
5007
+ #: ../includes/mycred-shortcodes.php:957
5008
  #, php-format
5009
  msgid "Convert <span>%s</span> to <span>%s</span>"
5010
  msgstr ""
5011
 
5012
+ #: ../includes/mycred-shortcodes.php:966
5013
  #, php-format
5014
  msgid "Your current %s balance"
5015
  msgstr ""
5016
 
5017
+ #: ../includes/mycred-shortcodes.php:974
5018
  #, php-format
5019
  msgid "Minimum %s"
5020
  msgstr ""
5021
 
5022
+ #: ../includes/mycred-shortcodes.php:978
5023
  #, php-format
5024
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
5025
  msgstr ""
5026
 
5027
+ #: ../includes/mycred-shortcodes.php:984
5028
  msgid "Exchange"
5029
  msgstr ""
5030
 
5031
+ #: ../includes/mycred-shortcodes.php:1049
5032
  msgid "No instances found for this point type"
5033
  msgstr ""
5034
 
5035
+ #: ../includes/mycred-shortcodes.php:1053
5036
  msgid "Invalid point type"
5037
  msgstr ""
5038
 
5039
+ #: ../includes/mycred-shortcodes.php:1114
5040
  msgid "Instance"
5041
  msgstr ""
5042
 
5043
+ #: ../includes/mycred-shortcodes.php:1116 ../modules/mycred-module-hooks.php:672 .
5044
+ #: ./modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:703 ..
5045
+ #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:780 ..
5046
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:1011 ..
5047
+ #: modules/mycred-module-hooks.php:1153 ../modules/mycred-module-hooks.php:1170 .
5048
+ #: ./modules/mycred-module-hooks.php:1219 ../modules/mycred-module-hooks.php:3008
5049
+ #: ../modules/mycred-module-hooks.php:3028 ../plugins/mycred-hook-affiliatewp.php:
5050
+ #: 237 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-bbPress.php:
5051
+ #: 440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-bbPress.php:
5052
+ #: 492 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
5053
  #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
5054
  #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
5055
  #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
5070
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5071
  #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5072
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5073
+ #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5074
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5075
  #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
5076
  #: postratings.php:175
5341
  msgid "Import log entries from a CSV file."
5342
  msgstr "Importa las entradas de registro desde un fichero CSV."
5343
 
5344
+ #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26
5345
  msgid "Add-ons"
5346
  msgstr "Extensiones"
5347
 
5348
+ #: ../modules/mycred-module-addons.php:160
5349
  msgid "Give your users badges based on their interaction with your website."
5350
  msgstr ""
5351
 
5352
+ #: ../modules/mycred-module-addons.php:171
5353
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
5354
  msgstr ""
5355
  "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
5356
  "de las cuentas de usuarios."
5357
 
5358
+ #: ../modules/mycred-module-addons.php:182
5359
  msgid ""
5360
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5361
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
5366
  "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
5367
  "para otros miembros."
5368
 
5369
+ #: ../modules/mycred-module-addons.php:193
5370
  msgid ""
5371
  "The coupons add-on allows you to create coupons that users can use to add "
5372
  "points to their accounts."
5374
  "Los cupones de add-on le permite crear cupones que los usuarios pueden "
5375
  "utilizar para agregar puntos a sus cuentas."
5376
 
5377
+ #: ../modules/mycred-module-addons.php:204
5378
  msgid "Create email notices for any type of myCRED instance."
5379
  msgstr ""
5380
  "Crea avisos por correo electrónico para cualquier tipo de instancias de "
5381
  "myCRED."
5382
 
5383
+ #: ../modules/mycred-module-addons.php:215
5384
  msgid ""
5385
  "Let your users pay using their <strong>my</strong>CRED points balance. "
5386
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5391
  "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
5392
  "Manager (gratis y pro)."
5393
 
5394
+ #: ../modules/mycred-module-addons.php:226
5395
  msgid "Create pop-up notifications for when users gain or loose points."
5396
  msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
5397
 
5398
+ #: ../modules/mycred-module-addons.php:238
5399
  msgid ""
5400
  "Create ranks for users reaching a certain number of %_plural% with the "
5401
  "option to add logos for each rank."
5403
  "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
5404
  "con la opción de añadir logotipos para cada rango."
5405
 
5406
+ #: ../modules/mycred-module-addons.php:249
5407
  msgid ""
5408
  "This add-on allows you to sell posts, pages or any public post types on your "
5409
  "website. You can either sell the entire content or using our shortcode, sell "
5414
  "el código corto (shortcode), vender partes de tu contenido permitiendote "
5415
  "ofrecer \"avances\"."
5416
 
5417
+ #: ../modules/mycred-module-addons.php:260
5418
  msgid ""
5419
  "Gives you access to your myCRED Staticstics based on your users gains and "
5420
  "loses."
5421
  msgstr ""
5422
 
5423
+ #: ../modules/mycred-module-addons.php:271
5424
  msgid ""
5425
  "Allow your users to send or \"donate\" points to other members by either using "
5426
  "the mycred_transfer shortcode or the myCRED Transfer widget."
5429
  "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
5430
  "myCRED."
5431
 
5432
+ #: ../modules/mycred-module-addons.php:313
5433
  #, php-format
5434
  msgid "%s Add-ons"
5435
  msgstr "%s Extensiones (addons)"
5436
 
5437
+ #: ../modules/mycred-module-addons.php:320
5438
  msgid "Add-on Activated"
5439
  msgstr "Extensión Activado"
5440
 
5441
+ #: ../modules/mycred-module-addons.php:323
5442
  msgid "Add-on Deactivated"
5443
  msgstr "Extensión Desactivado"
5444
 
5445
+ #: ../modules/mycred-module-addons.php:328
5446
+ msgid "Add-ons Reloaded"
5447
+ msgstr ""
5448
+
5449
+ #: ../modules/mycred-module-addons.php:331
5450
  msgid "Add-ons can expand your current installation with further features."
5451
  msgstr ""
5452
  "Extensiones pueden ampliar tu instalación actual con más características "
5453
  "técnicas."
5454
 
5455
+ #: ../modules/mycred-module-addons.php:358
5456
+ msgid "Reload Add-ons"
5457
+ msgstr ""
5458
+
5459
+ #: ../modules/mycred-module-addons.php:359
5460
  #, php-format
5461
  msgid "You can find more add-ons in our %s."
5462
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
5463
 
5464
+ #: ../modules/mycred-module-addons.php:359
5465
  msgid "online store"
5466
  msgstr "tienda online"
5467
 
5468
+ #: ../modules/mycred-module-addons.php:382
5469
  msgid "Deactivate Add-on"
5470
  msgstr "Desactivar Extensión"
5471
 
5472
+ #: ../modules/mycred-module-addons.php:383
5473
  msgid "Deactivate"
5474
  msgstr "Desactivar"
5475
 
5476
+ #: ../modules/mycred-module-addons.php:390
5477
  msgid "Activate Add-on"
5478
  msgstr "Activar Extensión"
5479
 
5480
+ #: ../modules/mycred-module-addons.php:391
5481
  msgid "Activate"
5482
  msgstr "Activar"
5483
 
5484
+ #: ../modules/mycred-module-addons.php:409
5485
  msgid "Version"
5486
  msgstr "Version"
5487
 
5488
+ #: ../modules/mycred-module-addons.php:413
5489
  msgid "By"
5490
  msgstr "Por"
5491
 
5492
+ #: ../modules/mycred-module-addons.php:417
5493
  msgid "About"
5494
  msgstr "Acerca de"
5495
 
5496
+ #: ../modules/mycred-module-addons.php:421
5497
  msgid "Get Pro"
5498
  msgstr "Obtenga la versión Pro"
5499
 
5500
+ #: ../modules/mycred-module-buddypress.php:31
5501
  msgid "My History"
5502
  msgstr "Mi Historial"
5503
 
5504
+ #: ../modules/mycred-module-buddypress.php:32
5505
  #, php-format
5506
  msgid "%s's History"
5507
  msgstr "La Historial de %s"
5508
 
5509
+ #: ../modules/mycred-module-buddypress.php:131
5510
  msgid "Current balance"
5511
  msgstr "Saldo Actual"
5512
 
5513
+ #: ../modules/mycred-module-buddypress.php:362
5514
  msgid "Go"
5515
  msgstr "Ir a"
5516
 
5517
+ #: ../modules/mycred-module-buddypress.php:425
5518
  msgid "Show in Profile"
5519
  msgstr "Mostrar en Perfil"
5520
 
5521
+ #: ../modules/mycred-module-buddypress.php:442
5522
  #, php-format
5523
  msgid "%singular% Balance"
5524
  msgstr "%singular% Saldo"
5525
 
5526
+ #: ../modules/mycred-module-buddypress.php:459
5527
  #, php-format
5528
  msgid "Members and visitors can other members %_singular% balance."
5529
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
5530
 
5531
+ #: ../modules/mycred-module-buddypress.php:469
5532
  msgid "%plural% History"
5533
  msgstr "Historial de %plural%"
5534
 
5535
+ #: ../modules/mycred-module-buddypress.php:486
5536
  msgid "Members can view each others %_plural% history."
5537
  msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
5538
 
5539
+ #: ../modules/mycred-module-buddypress.php:491
5540
  msgid "Menu Title"
5541
  msgstr "Título de Menú"
5542
 
5543
+ #: ../modules/mycred-module-buddypress.php:493
5544
  msgid "Title shown to me"
5545
  msgstr "Título mostrado a mi"
5546
 
5547
+ #: ../modules/mycred-module-buddypress.php:498
5548
  #, php-format
5549
  msgid "Title shown to others. Use %s to show the first name."
5550
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
5551
 
5552
+ #: ../modules/mycred-module-buddypress.php:503
5553
  msgid "Menu Position"
5554
  msgstr "Posición del Menú"
5555
 
5556
+ #: ../modules/mycred-module-buddypress.php:505
5557
  msgid "Current menu positions:"
5558
  msgstr "Posiciones Acuales del Menú"
5559
 
5560
+ #: ../modules/mycred-module-buddypress.php:510
5561
  msgid "History URL slug"
5562
  msgstr "La ficha historial de la URL"
5563
 
5564
+ #: ../modules/mycred-module-buddypress.php:512
5565
  msgid "Do not use empty spaces!"
5566
  msgstr "¡No utilice espacios vacíos!"
5567
 
5568
+ #: ../modules/mycred-module-buddypress.php:517
5569
  msgid "Number of history entries to show"
5570
  msgstr "Numero de entradas de historial a mostrar"
5571
 
5572
+ #: ../modules/mycred-module-hooks.php:107
5573
  #, php-format
5574
  msgid "%plural% for registrations"
5575
  msgstr "%plural% por inscripciones"
5576
 
5577
+ #: ../modules/mycred-module-hooks.php:108
5578
  #, php-format
5579
  msgid "Award %_plural% for users joining your website."
5580
  msgstr "Concede %_plural% a usuarios para unirse a tu sitio de web."
5581
 
5582
+ #: ../modules/mycred-module-hooks.php:114
5583
  #, php-format
5584
  msgid "%plural% for daily visits"
5585
  msgstr ""
5586
 
5587
+ #: ../modules/mycred-module-hooks.php:115
5588
  #, php-format
5589
  msgid "Award %_plural% for users visiting your website on a daily basis."
5590
  msgstr ""
5591
 
5592
+ #: ../modules/mycred-module-hooks.php:121
5593
  #, php-format
5594
  msgid "%plural% for viewing content"
5595
  msgstr ""
5596
 
5597
+ #: ../modules/mycred-module-hooks.php:122
5598
  msgid ""
5599
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
5600
  "authors for members viewing their content."
5601
  msgstr ""
5602
 
5603
+ #: ../modules/mycred-module-hooks.php:128
5604
  #, php-format
5605
  msgid "%plural% for logins"
5606
  msgstr "%plural% para ingresos"
5607
 
5608
+ #: ../modules/mycred-module-hooks.php:129
5609
  #, php-format
5610
  msgid ""
5611
  "Award %_plural% for logging in to your website. You can also set an optional "
5614
  "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
5615
  "ajustar un limíte opcional."
5616
 
5617
+ #: ../modules/mycred-module-hooks.php:135
5618
  #, php-format
5619
  msgid "%plural% for publishing content"
5620
  msgstr "%plural% por publicar contenido"
5621
 
5622
+ #: ../modules/mycred-module-hooks.php:136
5623
  #, php-format
5624
  msgid ""
5625
  "Award %_plural% for publishing content on your website. If your custom post "
5626
  "type is not shown bellow, make sure it is set to \"Public\"."
5627
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
5628
 
5629
+ #: ../modules/mycred-module-hooks.php:142
5630
  #, php-format
5631
  msgid "%plural% for comments"
5632
  msgstr "%plural% por comentarios"
5633
 
5634
+ #: ../modules/mycred-module-hooks.php:142
5635
  #, php-format
5636
  msgid "%plural% for Disqus comments"
5637
  msgstr "%plural% por comentarios Disqus"
5638
 
5639
+ #: ../modules/mycred-module-hooks.php:143
5640
  #, php-format
5641
  msgid "Award %_plural% for making comments."
5642
  msgstr "Concede %_plural% por hacer comentarios."
5643
 
5644
+ #: ../modules/mycred-module-hooks.php:149
5645
  #, php-format
5646
  msgid "%plural% for clicking on links"
5647
  msgstr "%plural% por hacer clic sobre enlaces"
5648
 
5649
+ #: ../modules/mycred-module-hooks.php:150
5650
  msgid ""
5651
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5652
  "shortcode."
5654
  "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
5655
  "por el [mycred_link] código corto (shortcode)."
5656
 
5657
+ #: ../modules/mycred-module-hooks.php:156
5658
  #, php-format
5659
  msgid "%plural% for viewing Videos"
5660
  msgstr "%plural% por ver videos"
5661
 
5662
+ #: ../modules/mycred-module-hooks.php:157
5663
  msgid ""
5664
  "Award %_plural% to users who watches videos embedded using the "
5665
  "[mycred_video] shortcode."
5667
  "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
5668
  "el [mycred_link] código corto (shortcode)."
5669
 
5670
+ #: ../modules/mycred-module-hooks.php:163
5671
  #, php-format
5672
  msgid "%plural% for referrals"
5673
  msgstr "%plural% por referencias (o recomendaciones)"
5674
 
5675
+ #: ../modules/mycred-module-hooks.php:164
5676
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5677
  msgstr ""
5678
  "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
5679
  "miembros inscritos."
5680
 
5681
+ #: ../modules/mycred-module-hooks.php:199
5682
  #, php-format
5683
  msgid "%s Hooks"
5684
  msgstr "Ganchos de %s"
5685
 
5686
+ #: ../modules/mycred-module-hooks.php:203
5687
  msgid ""
5688
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5689
  "depending on their actions around your website."
5691
  "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
5692
  "usuario, dependiendo de sus acciones en tu sitio web."
5693
 
5694
+ #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
5695
+ #: ./modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:714 ..
5696
+ #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:1157 ..
5697
+ #: modules/mycred-module-hooks.php:1174 ../modules/mycred-module-hooks.php:1223 .
5698
+ #: ./modules/mycred-module-hooks.php:1675 ../modules/mycred-module-hooks.php:1692
5699
+ #: ../modules/mycred-module-hooks.php:1709 ../modules/mycred-module-hooks.php:
5700
+ #: 3000 ../modules/mycred-module-hooks.php:3020 ../plugins/mycred-hook-
5701
  #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5702
+ #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:415 ..
5703
+ #: plugins/mycred-hook-bbPress.php:428 ../plugins/mycred-hook-bbPress.php:445 ..
5704
+ #: plugins/mycred-hook-bbPress.php:463 ../plugins/mycred-hook-bbPress.php:480 ..
5705
+ #: plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:519 ..
5706
  #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5707
  #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5708
  #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
5734
  msgid "Log template"
5735
  msgstr "Plantilla de Registro"
5736
 
5737
+ #: ../modules/mycred-module-hooks.php:666
5738
  #, php-format
5739
  msgid "%plural% for viewing Posts"
5740
  msgstr ""
5741
 
5742
+ #: ../modules/mycred-module-hooks.php:669 ../modules/mycred-module-hooks.php:686 .
5743
+ #: ./modules/mycred-module-hooks.php:700 ../modules/mycred-module-hooks.php:717 ..
5744
+ #: modules/mycred-module-hooks.php:777 ../modules/mycred-module-hooks.php:794
5745
  msgid "Member"
5746
  msgstr ""
5747
 
5748
+ #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:692 .
5749
+ #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:723 ..
5750
+ #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:800 ..
5751
+ #: modules/mycred-module-hooks.php:1670 ../modules/mycred-module-hooks.php:1687 .
5752
+ #: ./modules/mycred-module-hooks.php:1704
5753
  msgid "Content Author"
5754
  msgstr "Autor del Contenido"
5755
 
5756
+ #: ../modules/mycred-module-hooks.php:697
5757
  #, php-format
5758
  msgid "%plural% for viewing Pages"
5759
  msgstr ""
5760
 
5761
+ #: ../modules/mycred-module-hooks.php:774
5762
  #, php-format
5763
  msgid "%plural% for viewing %s"
5764
  msgstr ""
5765
 
5766
+ #: ../modules/mycred-module-hooks.php:1147
5767
  #, php-format
5768
  msgid "%plural% for Posts"
5769
  msgstr "%plural% por Posts"
5770
 
5771
+ #: ../modules/mycred-module-hooks.php:1164
5772
  #, php-format
5773
  msgid "%plural% for Pages"
5774
  msgstr "%plural% por Paginas"
5775
 
5776
+ #: ../modules/mycred-module-hooks.php:1213
5777
  #, php-format
5778
  msgid "%plural% for %s"
5779
  msgstr "%plural% por %s"
5780
 
5781
+ #: ../modules/mycred-module-hooks.php:1660
5782
  msgid ""
5783
  "%plural% are only awarded when your website has been synced with the Disqus "
5784
  "server!"
5786
  "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
5787
  "sincronizado con el servidor de Disqus!"
5788
 
5789
+ #: ../modules/mycred-module-hooks.php:1666 ../modules/mycred-module-hooks.php:
5790
+ #: 1683 ../modules/mycred-module-hooks.php:1700
5791
  msgid "Comment Author"
5792
  msgstr "Autor del Comentario"
5793
 
5794
+ #: ../modules/mycred-module-hooks.php:1680
5795
  msgid "Comment Marked SPAM"
5796
  msgstr "Comentario Marcado como SPAM"
5797
 
5798
+ #: ../modules/mycred-module-hooks.php:1697
5799
  msgid "Trashed / Unapproved Comments"
5800
  msgstr "Comentarios Destrozados / No Aprobados"
5801
 
5802
+ #: ../modules/mycred-module-hooks.php:1717
5803
  msgid "Limit per post"
5804
  msgstr "Límite por Entrada"
5805
 
5806
  #. what is the Spanish word for "post"? o anglicismo?
5807
+ #: ../modules/mycred-module-hooks.php:1719
5808
  msgid ""
5809
  "The number of comments per post that grants %_plural% to the comment author. "
5810
  "Use zero for unlimited."
5812
  "El numero de comentarios por cada post que concede %_plural% al autor del "
5813
  "comentario. Utilice cero para un número ilimitado"
5814
 
5815
+ #: ../modules/mycred-module-hooks.php:1723
5816
  msgid "Limit per day"
5817
  msgstr "Límite por día"
5818
 
5819
+ #: ../modules/mycred-module-hooks.php:1725
5820
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5821
  msgstr ""
5822
  "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
5823
  "número ilimitado."
5824
 
5825
+ #: ../modules/mycred-module-hooks.php:1730
5826
  msgid ""
5827
  "%plural% is to be awarded even when comment authors reply to their own "
5828
  "comment."
5830
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
5831
  "comentario."
5832
 
5833
+ #: ../modules/mycred-module-hooks.php:1810
5834
  msgid "Once for each unique URL"
5835
  msgstr "Una sola vez para cada única URL"
5836
 
5837
+ #: ../modules/mycred-module-hooks.php:1811
5838
  msgid "Once for each unique link id"
5839
  msgstr "Una vez para cada id del enlace único "
5840
 
5841
+ #: ../modules/mycred-module-hooks.php:2022
5842
  msgid ""
5843
  "The default amount to award for clicking on links. You can override this in "
5844
  "the shortcode."
5846
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
5847
  "anular esto con el 'shortcode' (código corto)."
5848
 
5849
+ #: ../modules/mycred-module-hooks.php:2029
5850
  #, php-format
5851
  msgid "Custom tags: %url%, %title% or %id%."
5852
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
5853
 
5854
+ #: ../modules/mycred-module-hooks.php:2042 ../modules/mycred-module-hooks.php:3096
5855
  msgid "Note!"
5856
  msgstr "¡Atención!"
5857
 
5858
+ #: ../modules/mycred-module-hooks.php:2042
5859
  msgid ""
5860
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5861
  "generate one automatically based on the value set under href. If you are "
5867
  "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
5868
  "contenidos, se recomienda que limites por ID."
5869
 
5870
+ #: ../modules/mycred-module-hooks.php:2044 ../modules/mycred-module-hooks.php:2428
5871
  msgid "Available Shortcode"
5872
  msgstr "Código corto Disponible"
5873
 
5874
+ #: ../modules/mycred-module-hooks.php:2392
5875
  msgid "Amount to award for viewing videos."
5876
  msgstr "Cantidad a ceder para ver videos."
5877
 
5878
+ #: ../modules/mycred-module-hooks.php:2402
5879
  msgid "Award Logic"
5880
  msgstr "Lógica de Concesión"
5881
 
5882
+ #: ../modules/mycred-module-hooks.php:2404
5883
  #, php-format
5884
  msgid "Select when %_plural% should be awarded or deducted."
5885
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
5886
 
5887
+ #: ../modules/mycred-module-hooks.php:2405
5888
  msgid "Play - As soon as video starts playing."
5889
  msgstr "Play - En cuanto el video empiece a reproducirse."
5890
 
5891
+ #: ../modules/mycred-module-hooks.php:2406
5892
  msgid "Full - First when the entire video has played."
5893
  msgstr "Completo - Primero cuando el video entero se haya reproducido."
5894
 
5895
+ #: ../modules/mycred-module-hooks.php:2407
5896
  msgid "Interval - For each x number of seconds watched."
5897
  msgstr "Intervalo - Para cada x numero de segundos vistos."
5898
 
5899
+ #: ../modules/mycred-module-hooks.php:2412
5900
  msgid "Number of seconds"
5901
  msgstr "Numero de segundos"
5902
 
5903
+ #: ../modules/mycred-module-hooks.php:2419
5904
  msgid "Leniency"
5905
  msgstr "Lenidad"
5906
 
5907
+ #: ../modules/mycred-module-hooks.php:2421
5908
  msgid ""
5909
  "The maximum percentage a users view of a movie can differ from the actual "
5910
  "length."
5912
  "El porcentaje máximo medido que un usuario vea puede variar con la duración "
5913
  "actual del video."
5914
 
5915
+ #: ../modules/mycred-module-hooks.php:2424
5916
  msgid ""
5917
  "Do not set this value to zero! A lot of thing can happen while a user "
5918
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5922
  "usuario ve una película y a veces la contador puede disminuir por pocos "
5923
  "segundos por falta de buffering o por errores de reproducción."
5924
 
5925
+ #: ../modules/mycred-module-hooks.php:2499
5926
  msgid "Affiliate Program"
5927
  msgstr "Programa de Afiliados"
5928
 
5929
+ #: ../modules/mycred-module-hooks.php:2508
5930
  msgid "Per Day"
5931
  msgstr "Por Día"
5932
 
5933
+ #: ../modules/mycred-module-hooks.php:2667
5934
  msgid "Link"
5935
  msgstr "Enlace"
5936
 
5937
+ #: ../modules/mycred-module-hooks.php:2671
5938
  msgid "Visitors Referred"
5939
  msgstr ""
5940
 
5941
+ #: ../modules/mycred-module-hooks.php:2675
5942
  msgid "Signups Referred"
5943
  msgstr ""
5944
 
5945
+ #: ../modules/mycred-module-hooks.php:2994 ../plugins/mycred-hook-affiliatewp.php:
5946
  #: 231
5947
  msgid "Referring Visitors"
5948
  msgstr "Referiendo Visitantes"
5949
 
5950
+ #: ../modules/mycred-module-hooks.php:3013 ../modules/mycred-module-hooks.php:3033
 
 
 
 
 
 
5951
  msgid "Referring Signups"
5952
  msgstr "Inscripciones a través de Referencias"
5953
 
5954
+ #: ../modules/mycred-module-hooks.php:3017
5955
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5956
  msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
5957
 
5958
+ #: ../modules/mycred-module-hooks.php:3035
5959
  msgid "Registrations are disabled."
5960
  msgstr "Se han deshabilitado inscripciones."
5961
 
5962
+ #: ../modules/mycred-module-hooks.php:3043
5963
  msgid "Referral Links"
5964
  msgstr "Enlaces Referentes"
5965
 
5966
+ #: ../modules/mycred-module-hooks.php:3047
5967
  msgid "Assign numeric referral IDs to each user."
5968
  msgstr "Asignar ID numerica referente a cada usuario."
5969
 
5970
+ #: ../modules/mycred-module-hooks.php:3048 ../modules/mycred-module-hooks.php:3054
5971
  msgid "Example"
5972
  msgstr "Ejemplo"
5973
 
5974
+ #: ../modules/mycred-module-hooks.php:3053
5975
  msgid "Assign usernames as IDs for each user."
5976
  msgstr "Asignar los nombres de usuario como ID para cada usuario."
5977
 
5978
+ #: ../modules/mycred-module-hooks.php:3057
5979
  msgid "IP Limit"
5980
  msgstr "Límite de IP"
5981
 
5982
+ #: ../modules/mycred-module-hooks.php:3061
5983
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5984
  msgstr ""
5985
  "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
5986
  "número ilimitado"
5987
 
5988
+ #: ../modules/mycred-module-hooks.php:3065 ../modules/mycred-module-hooks.php:3100
5989
  msgid "BuddyPress Profile"
5990
  msgstr "Perfil de BuddyPress"
5991
 
5992
+ #: ../modules/mycred-module-hooks.php:3068
5993
  msgid "Insert Link in users Profile"
5994
  msgstr "Insertar enlace en el perfil del usuario"
5995
 
5996
+ #: ../modules/mycred-module-hooks.php:3069
5997
  msgid ""
5998
  "Option to inser the referral link in users profiles. Links will only be "
5999
  "visible to users viewing their own profiles or administrators."
6002
  " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
6003
  "ven a sus propios perfiles."
6004
 
6005
+ #: ../modules/mycred-module-hooks.php:3075
6006
  msgid "Leave empty to hide."
6007
  msgstr "Deje el campo vacío para ocultarlo."
6008
 
6009
+ #: ../modules/mycred-module-hooks.php:3078
6010
  msgid "Description"
6011
  msgstr "Descripción"
6012
 
6013
+ #: ../modules/mycred-module-hooks.php:3079
6014
  msgid "Optional description to insert under the link."
6015
  msgstr "Insertar la descripción opcional debajo del enlace."
6016
 
6017
+ #: ../modules/mycred-module-hooks.php:3093
6018
  msgid "Profile Positioning"
6019
  msgstr "Posicionamiento del Perfil"
6020
 
6021
+ #: ../modules/mycred-module-hooks.php:3095
6022
  msgid ""
6023
  "You can move around the referral link on your users profile by changing the "
6024
  "position. Increase to move up, decrease to move down."
6026
  "Puedes moverte por el enlace de referencia en su perfil los usuarios "
6027
  "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
6028
 
6029
+ #: ../modules/mycred-module-hooks.php:3096
6030
  msgid "You can not move the referral link above the users \"Base\" profile details!"
6031
  msgstr ""
6032
  "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
6033
  "en el perfil del usuario!"
6034
 
6035
+ #: ../modules/mycred-module-hooks.php:3102
6036
  msgid "Requires BuddyPress Extended Profiles to be enabled."
6037
  msgstr "Requiere que BuddyPress Extended Profiles sea activado."
6038
 
6039
+ #: ../modules/mycred-module-log.php:207 ../modules/mycred-module-log.php:230 ..
6040
+ #: modules/mycred-module-settings.php:66 ../modules/mycred-module-settings.php:109
6041
  msgid "Access denied for this action"
6042
  msgstr "Acceso denegado para esta acción"
6043
 
6044
+ #: ../modules/mycred-module-log.php:214
6045
  msgid "Row Deleted"
6046
  msgstr "Fila Borrado"
6047
 
6048
+ #: ../modules/mycred-module-log.php:243
6049
  msgid "Log entry not found"
6050
  msgstr "No se encontro la entrada de registro "
6051
 
6052
+ #: ../modules/mycred-module-log.php:256
6053
  msgid "Entry Updated"
6054
  msgstr "Entrada Actualizada"
6055
 
6056
+ #: ../modules/mycred-module-log.php:316 ../modules/mycred-module-settings.php:621
6057
  msgid "Entries"
6058
  msgstr "Entradas"
6059
 
6060
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
6061
+ #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
6062
  msgid "Export"
6063
  msgstr "Exportar"
6064
 
6065
+ #: ../modules/mycred-module-log.php:340
6066
  msgid "Search results for"
6067
  msgstr "Buscar entre resultados por"
6068
 
6069
+ #: ../modules/mycred-module-log.php:411
6070
  #, php-format
6071
  msgid "%s Log"
6072
  msgstr "Registro de %s"
6073
 
6074
+ #: ../modules/mycred-module-log.php:422
6075
  msgid ""
6076
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
6077
  "Certain hooks and shortcodes will not work correctly!"
6078
  msgstr ""
6079
 
6080
+ #: ../modules/mycred-module-log.php:565
6081
  msgid "Edit"
6082
  msgstr "Editar"
6083
 
6084
+ #: ../modules/mycred-module-log.php:612
6085
  msgid "Time"
6086
  msgstr "Tiempo"
6087
 
6088
+ #: ../modules/mycred-module-log.php:616
6089
  msgid "Current Log Entry"
6090
  msgstr "Entrada Actual de Registro"
6091
 
6092
+ #: ../modules/mycred-module-log.php:618
6093
  msgid "The current saved log entry"
6094
  msgstr "La entrada guardada actual del registro"
6095
 
6096
+ #: ../modules/mycred-module-log.php:621
6097
  msgid "Adjust Log Entry"
6098
  msgstr "Ajustar entrada de registro"
6099
 
6100
+ #: ../modules/mycred-module-log.php:623
6101
  msgid "The new log entry"
6102
  msgstr "La nueva entrada de registro"
6103
 
6104
+ #: ../modules/mycred-module-log.php:626
6105
  msgid "Update Log Entry"
6106
  msgstr "Actualiza la entrada de registro"
6107
 
6108
+ #: ../modules/mycred-module-log.php:697
6109
  #, php-format
6110
  msgid "My %s History"
6111
  msgstr "Mi Historial de %s"
6112
 
6113
+ #: ../modules/mycred-module-settings.php:70 ../modules/mycred-module-settings.php:
6114
+ #: 113 ../modules/mycred-module-settings.php:166
6115
  msgid "Missing point type"
6116
  msgstr "Falta el tipo de punto"
6117
 
6118
+ #: ../modules/mycred-module-settings.php:144
6119
  msgid "Accounts successfully reset"
6120
  msgstr "Las cuentas fueron reiniciadas con éxito."
6121
 
6122
+ #: ../modules/mycred-module-settings.php:196
6123
  msgid "No users found to export"
6124
  msgstr "No se encontro usuarios para exportar"
6125
 
6126
+ #: ../modules/mycred-module-settings.php:246
6127
  msgid "Invalid decimal value."
6128
  msgstr ""
6129
 
6130
+ #: ../modules/mycred-module-settings.php:293
6131
  msgid "Log Updated"
6132
  msgstr ""
6133
 
6134
+ #: ../modules/mycred-module-settings.php:423
6135
  msgid "Update Database"
6136
  msgstr ""
6137
 
6138
+ #: ../modules/mycred-module-settings.php:424
6139
  msgid "Zero for no decimals or maximum 20."
6140
  msgstr ""
6141
 
6142
+ #: ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.
6143
+ #: php:528
6144
  msgid "Tip"
6145
  msgstr "Pista"
6146
 
6147
+ #: ../modules/mycred-module-settings.php:427
6148
  msgid ""
6149
  "As this is your main point type, the value you select here will be the "
6150
  "largest number of decimals your installation will support."
6151
  msgstr ""
6152
 
6153
+ #: ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.
6154
+ #: php:453
6155
  msgid "No decimals"
6156
  msgstr ""
6157
 
6158
+ #: ../modules/mycred-module-settings.php:465
6159
  #, php-format
6160
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
6161
  msgstr ""
6162
 
6163
+ #: ../modules/mycred-module-settings.php:503
6164
  #, php-format
6165
  msgid "%s Settings"
6166
  msgstr "Configuración de %s"
6167
 
6168
+ #: ../modules/mycred-module-settings.php:507
6169
  msgid "Adjust your core or add-on settings."
6170
  msgstr ""
6171
 
6172
+ #: ../modules/mycred-module-settings.php:513
6173
  msgid "Core Settings"
6174
  msgstr "Ajustes Basicos"
6175
 
6176
+ #: ../modules/mycred-module-settings.php:515
6177
  msgid "Name"
6178
  msgstr "Nombre"
6179
 
6180
+ #: ../modules/mycred-module-settings.php:520
6181
  #, php-format
6182
  msgid "Accessible though the %singular% template tag."
6183
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
6184
 
6185
+ #: ../modules/mycred-module-settings.php:525
6186
  msgid "Accessible though the %plural% template tag."
6187
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
6188
 
6189
+ #: ../modules/mycred-module-settings.php:528
6190
  msgid ""
6191
  "Adding an underscore at the beginning of template tag for names will return "
6192
  "them in lowercase. i.e. %_singular%"
6194
  "Añadiendo un guión bajo al principio de la etiqueta de la plantilla para "
6195
  "nombres los cnovertira en minúsculas. Por ejemplo %_singular%"
6196
 
6197
+ #: ../modules/mycred-module-settings.php:552
6198
  msgid "Separator"
6199
  msgstr "Separador"
6200
 
6201
+ #: ../modules/mycred-module-settings.php:559
6202
  msgid "Edit Settings"
6203
  msgstr "Editar las Configuraciones"
6204
 
6205
  #. or "Verificar la capacidad de"
6206
+ #: ../modules/mycred-module-settings.php:561 ../modules/mycred-module-settings.
6207
+ #: php:566
6208
  msgid "Capability to check for."
6209
  msgstr "La capacidad que se va a verificar."
6210
 
6211
+ #: ../modules/mycred-module-settings.php:564
6212
  msgid "Edit Users %plural%"
6213
  msgstr "Edita %plural% de Usuarios"
6214
 
6215
+ #: ../modules/mycred-module-settings.php:588
6216
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
6217
  msgstr ""
6218
  "Lista separada por comas de los IDs de usuario para excluir. ¡No se permiten "
6219
  "espacios!"
6220
 
6221
+ #: ../modules/mycred-module-settings.php:612
6222
  msgid "Management"
6223
  msgstr "Gestión"
6224
 
6225
+ #: ../modules/mycred-module-settings.php:614
6226
  msgid "The Log"
6227
  msgstr "El Registro"
6228
 
6229
+ #: ../modules/mycred-module-settings.php:617
6230
  msgid "Table Name"
6231
  msgstr "Nombre de Tabla"
6232
 
6233
+ #: ../modules/mycred-module-settings.php:626
6234
  msgid "Empty Log"
6235
  msgstr "Registro Vacío"
6236
 
6237
+ #: ../modules/mycred-module-settings.php:641
6238
  msgid "Set all to zero"
6239
  msgstr "Ajusta todo a cero"
6240
 
6241
+ #: ../modules/mycred-module-settings.php:641
6242
  msgid "CSV Export"
6243
  msgstr "Exportar CSV"
6244
 
6245
+ #: ../modules/mycred-module-settings.php:667
6246
  msgid "Default"
6247
  msgstr "Predefinido"
6248
 
6249
+ #: ../modules/mycred-module-settings.php:670 ../modules/mycred-module-settings.
6250
+ #: php:691 ../modules/mycred-module-settings.php:715
6251
  msgid "Meta Key"
6252
  msgstr "Clave Meta"
6253
 
6254
+ #: ../modules/mycred-module-settings.php:712
6255
  msgid "Add New Type"
6256
  msgstr "Añadir Nuevo Tipo"
6257
 
6258
+ #: ../modules/mycred-module-settings.php:717
6259
  msgid "A unique ID for this type."
6260
  msgstr "Una ID exclusiva para este tipo."
6261
 
6262
+ #: ../modules/mycred-module-settings.php:722
6263
  msgid "Menu and page title."
6264
  msgstr "Título del Menú y de la Página\n"
6265
 
6266
+ #: ../modules/mycred-module-settings.php:725
6267
  msgid ""
6268
  "The meta key must be lowercase and only contain letters or underscores. All "
6269
  "other characters will be deleted!"
6270
  msgstr ""
6271
 
6272
+ #: ../modules/mycred-module-settings.php:748
6273
  msgid "Identify users by"
6274
  msgstr "Identifique usuarios por"
6275
 
6276
+ #: ../modules/mycred-module-settings.php:754
6277
+ msgid "User ID"
6278
+ msgstr "ID del Usuario"
6279
+
6280
+ #: ../modules/mycred-module-settings.php:755
6281
  msgid "User Email"
6282
  msgstr "Email de Usuario"
6283
 
6284
+ #: ../modules/mycred-module-settings.php:756
6285
  msgid "User Login"
6286
  msgstr "Ingreso de Usuario"
6287
 
6288
+ #: ../modules/mycred-module-settings.php:764
6289
  msgid ""
6290
  "Use ID if you intend to use this export as a backup of your current site "
6291
  "while Email is recommended if you want to export to a different site."
6293
  "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
6294
  "Email si deseas exportar la data a otro sitio"
6295
 
6296
+ #: ../modules/mycred-module-settings.php:767
6297
  msgid "Import Log Entry"
6298
  msgstr "Importa la entrada de registro"
6299
 
6300
+ #: ../modules/mycred-module-settings.php:769
6301
  #, php-format
6302
  msgid ""
6303
  "Optional log entry to use if you intend to import this file in a different "
6401
  msgid "Awards %_plural% for bbPress actions."
6402
  msgstr "Concede %_plural% por acciones en bbPress."
6403
 
6404
+ #: ../plugins/mycred-hook-bbPress.php:404
6405
  #, php-format
6406
  msgid "%plural% for New Forum"
6407
  msgstr "%plural% por nuevo foro"
6408
 
6409
+ #: ../plugins/mycred-hook-bbPress.php:421
6410
  #, php-format
6411
  msgid "%plural% for Forum Deletion"
6412
  msgstr "%plural% por Eliminar Foro"
6413
 
6414
+ #: ../plugins/mycred-hook-bbPress.php:434 ../plugins/mycred-hook-simplepress.php:
6415
  #: 278
6416
  #, php-format
6417
  msgid "%plural% for New Topic"
6418
  msgstr "%plural% por Nuevo Tema"
6419
 
6420
+ #: ../plugins/mycred-hook-bbPress.php:452
6421
  #, php-format
6422
  msgid "Forum authors can receive %_plural% for creating new topics."
6423
  msgstr "Autores "
6424
 
6425
+ #: ../plugins/mycred-hook-bbPress.php:456 ../plugins/mycred-hook-simplepress.php:
6426
  #: 295
6427
  #, php-format
6428
  msgid "%plural% for Topic Deletion"
6429
  msgstr "%plural% por Borrar Tema"
6430
 
6431
+ #: ../plugins/mycred-hook-bbPress.php:469
6432
  #, php-format
6433
  msgid "%plural% for Favorited Topic"
6434
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
6435
 
6436
+ #: ../plugins/mycred-hook-bbPress.php:486
6437
  #, php-format
6438
  msgid "%plural% for New Reply"
6439
  msgstr "%plural% por Nueva Respuesta"
6440
 
6441
+ #: ../plugins/mycred-hook-bbPress.php:504
6442
  #, php-format
6443
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
6444
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
6445
 
6446
+ #: ../plugins/mycred-hook-bbPress.php:508
6447
  #, php-format
6448
  msgid "Show users %_plural% balance in replies"
6449
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
6450
 
6451
+ #: ../plugins/mycred-hook-bbPress.php:512
6452
  #, php-format
6453
  msgid "%plural% for Reply Deletion"
6454
  msgstr ""
6803
  msgstr "Suscripciónes a commentarios"
6804
 
6805
  #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6806
+ #: php:80
6807
  msgid "Reward with %plural%"
6808
  msgstr ""
6809
 
6847
  msgid "%plural% for Topic Post Deletion"
6848
  msgstr "%plural% por Borrar la Tema del Post"
6849
 
6850
+ #: ../plugins/mycred-hook-woocommerce.php:210
6851
  msgid "WooCommerce Product Reviews"
6852
  msgstr ""
6853
 
6854
+ #: ../plugins/mycred-hook-woocommerce.php:211
6855
  #, php-format
6856
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6857
  msgstr ""
lang/mycred-fa_IR.mo CHANGED
Binary file
lang/mycred-fa_IR.po CHANGED
@@ -3,9 +3,10 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Feb 02 2015 11:28:02 GMT+0100 (CET)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
- "Language-Team: LANGUAGE <support@mycred.me>\n"
 
9
  "Language: Persian\n"
10
  "Plural-Forms: nplurals=1; plural=0\n"
11
  "MIME-Version: 1.0\n"
@@ -41,9 +42,9 @@ msgid "Awesome People"
41
  msgstr "\"اعتبار من\""
42
 
43
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
44
- #: addon-badges.php:595 ../addons/gateway/event-booking/mycred-eventsmanager.php:
45
- #: 478 ../addons/ranks/myCRED-addon-ranks.php:421 ../addons/ranks/myCRED-addon-
46
- #: ranks.php:1514 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
47
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
48
  #: php:636
49
  msgid "Processing..."
@@ -103,15 +104,15 @@ msgid "Log entry updated"
103
  msgstr ""
104
 
105
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
106
- #: notices.php:808 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
107
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
108
  msgid "Setup"
109
  msgstr "نصب"
110
 
111
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
112
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
113
- #: network.php:151 ../modules/mycred-module-settings.php:20 ../modules/mycred-
114
- #: module-settings.php:21 ../modules/mycred-module-settings.php:22
115
  msgid "Settings"
116
  msgstr "تنظیمات"
117
 
@@ -121,55 +122,51 @@ msgid ""
121
  "anything goes wrong!"
122
  msgstr ""
123
 
124
- #: ../abstracts/mycred-abstract-hook.php:74
125
- msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
126
- msgstr "تابع myCRED_Hook::run() باید در کلاس زیرین ، تنظیم مجدد شود ."
127
-
128
  #: ../abstracts/mycred-abstract-hook.php:83
129
  msgid "This Hook has no settings"
130
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
131
 
132
- #: ../abstracts/mycred-abstract-hook.php:223 ../abstracts/mycred-abstract-hook.
133
- #: php:290 ../includes/mycred-functions.php:2633 ../modules/mycred-module-hooks.
134
- #: php:1649
135
  msgid "No limit"
136
  msgstr "بدون محدودیت"
137
 
138
- #: ../abstracts/mycred-abstract-hook.php:224
139
  msgid "/ Day"
140
  msgstr ""
141
 
142
- #: ../abstracts/mycred-abstract-hook.php:225
143
  msgid "/ Week"
144
  msgstr ""
145
 
146
- #: ../abstracts/mycred-abstract-hook.php:226
147
  msgid "/ Month"
148
  msgstr ""
149
 
150
- #: ../abstracts/mycred-abstract-hook.php:227
151
  msgid "in Total"
152
  msgstr ""
153
 
154
- #: ../abstracts/mycred-abstract-hook.php:291
155
  msgid "Once every 24 hours"
156
  msgstr "یک بار در هر 24 ساعت"
157
 
158
- #: ../abstracts/mycred-abstract-hook.php:292
159
  msgid "Once every 7 days"
160
  msgstr "یک بار در هر 7 روز"
161
 
162
- #: ../abstracts/mycred-abstract-hook.php:293
163
  msgid "Once per day (reset at midnight)"
164
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
165
 
166
- #: ../abstracts/mycred-abstract-hook.php:300 ../addons/banking/abstracts/mycred-
167
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:628 ..
168
- #: addons/buy-creds/myCRED-addon-buy-creds.php:649 ../addons/buy-
169
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
170
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
171
- #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
172
- #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:989
173
  msgid "Select"
174
  msgstr "انتخاب"
175
 
@@ -177,30 +174,30 @@ msgstr "انتخاب"
177
  msgid "myCRED_Module() Error. A Module ID is required!"
178
  msgstr "خطای myCRED_Module() . شناسه طرح لازم است !"
179
 
180
- #: ../abstracts/mycred-abstract-module.php:351 ../abstracts/mycred-abstract-
181
- #: module.php:359
182
  msgid "Surprise"
183
  msgstr "غافلگیری"
184
 
185
- #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:83
186
  msgid "click to close"
187
  msgstr "برای بستن کلیک کنید ."
188
 
189
- #: ../abstracts/mycred-abstract-module.php:447 ../includes/mycred-network.php:84
190
  msgid "click to open"
191
  msgstr "برای باز شدن کلیک کنید ."
192
 
193
- #: ../abstracts/mycred-abstract-module.php:480 ../addons/buy-creds/myCRED-addon-
194
- #: buy-creds.php:846
195
  msgid "Settings Updated"
196
  msgstr "تنظیمات به روز شد"
197
 
198
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
199
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
200
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
201
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:373 ..
202
- #: addons/badges/myCRED-addon-badges.php:379 ../addons/badges/myCRED-addon-
203
- #: badges.php:385
204
  msgid "Badges"
205
  msgstr ""
206
 
@@ -209,273 +206,277 @@ msgstr ""
209
  msgid "Badges (%d)"
210
  msgstr ""
211
 
212
- #: ../addons/badges/myCRED-addon-badges.php:256
213
  #, php-format
214
  msgid "%d Users earned this badge."
215
  msgstr ""
216
 
217
- #: ../addons/badges/myCRED-addon-badges.php:260
218
  msgid "No users has yet earned this badge."
219
  msgstr ""
220
 
221
- #: ../addons/badges/myCRED-addon-badges.php:282
 
 
 
 
222
  #, php-format
223
  msgid "%s connections where removed."
224
  msgstr ""
225
 
226
- #: ../addons/badges/myCRED-addon-badges.php:374
227
  msgid "Badge"
228
  msgstr ""
229
 
230
- #: ../addons/badges/myCRED-addon-badges.php:375 ../addons/buy-creds/myCRED-addon-
231
- #: buy-creds.php:259 ../addons/buy-creds/myCRED-addon-buy-creds.php:260 ..
232
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
233
- #: addons/ranks/myCRED-addon-ranks.php:445
234
  msgid "Add New"
235
  msgstr "ساختن مورد جدید"
236
 
237
- #: ../addons/badges/myCRED-addon-badges.php:376
238
  msgid "Add New Badge"
239
  msgstr ""
240
 
241
- #: ../addons/badges/myCRED-addon-badges.php:377
242
  msgid "Edit Badge"
243
  msgstr ""
244
 
245
- #: ../addons/badges/myCRED-addon-badges.php:378
246
  msgid "New Badge"
247
  msgstr ""
248
 
249
- #: ../addons/badges/myCRED-addon-badges.php:380
250
  msgid "View Badge"
251
  msgstr ""
252
 
253
- #: ../addons/badges/myCRED-addon-badges.php:381
254
  msgid "Search Badge"
255
  msgstr ""
256
 
257
- #: ../addons/badges/myCRED-addon-badges.php:382
258
  msgid "No badges found"
259
  msgstr ""
260
 
261
- #: ../addons/badges/myCRED-addon-badges.php:383
262
  msgid "No badges found in Trash"
263
  msgstr ""
264
 
265
- #: ../addons/badges/myCRED-addon-badges.php:429 ../addons/badges/myCRED-addon-
266
- #: badges.php:531
267
  msgid "Badge Name"
268
  msgstr ""
269
 
270
- #: ../addons/badges/myCRED-addon-badges.php:430
271
  msgid "Badge Images"
272
  msgstr ""
273
 
274
- #: ../addons/badges/myCRED-addon-badges.php:431
275
  msgid "Requirements"
276
  msgstr ""
277
 
278
- #: ../addons/badges/myCRED-addon-badges.php:432 ../addons/ranks/myCRED-addon-
279
- #: ranks.php:1038 ../modules/mycred-module-settings.php:600
280
  msgid "Users"
281
  msgstr "کاربران"
282
 
283
- #: ../addons/badges/myCRED-addon-badges.php:471
284
  msgid "A user must have gained or lost:"
285
  msgstr ""
286
 
287
- #: ../addons/badges/myCRED-addon-badges.php:507 ../addons/badges/myCRED-addon-
288
- #: badges.php:510 ../addons/badges/myCRED-addon-badges.php:514 ..
289
- #: addons/badges/myCRED-addon-badges.php:515 ../addons/badges/myCRED-addon-
290
- #: badges.php:516
291
  msgid "Badge Updated."
292
  msgstr ""
293
 
294
- #: ../addons/badges/myCRED-addon-badges.php:512
295
  msgid "Badge Enabled"
296
  msgstr ""
297
 
298
- #: ../addons/badges/myCRED-addon-badges.php:513
299
  msgid "Badge Saved"
300
  msgstr ""
301
 
302
- #: ../addons/badges/myCRED-addon-badges.php:545
303
  msgid "Badge Setup"
304
  msgstr ""
305
 
306
- #: ../addons/badges/myCRED-addon-badges.php:572
307
  msgid "Assign Badge"
308
  msgstr ""
309
 
310
- #: ../addons/badges/myCRED-addon-badges.php:573
311
  msgid "Remove Connections"
312
  msgstr ""
313
 
314
- #: ../addons/badges/myCRED-addon-badges.php:628
315
  msgid "Time(s)"
316
  msgstr ""
317
 
318
- #: ../addons/badges/myCRED-addon-badges.php:629
319
  msgid "In total"
320
  msgstr ""
321
 
322
- #: ../addons/badges/myCRED-addon-badges.php:661 ../addons/badges/myCRED-addon-
323
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:821 ..
324
- #: addons/badges/myCRED-addon-badges.php:836
325
  msgid "Badge Image"
326
  msgstr ""
327
 
328
- #: ../addons/badges/myCRED-addon-badges.php:662 ../addons/badges/myCRED-addon-
329
- #: badges.php:662
330
  msgid "Set badge image"
331
  msgstr ""
332
 
333
- #: ../addons/badges/myCRED-addon-badges.php:672
334
  msgid "Default Image"
335
  msgstr ""
336
 
337
- #: ../addons/badges/myCRED-addon-badges.php:673 ../addons/badges/myCRED-addon-
338
- #: badges.php:731 ../addons/badges/myCRED-addon-badges.php:762 ..
339
- #: addons/badges/myCRED-addon-badges.php:821
340
  msgid "image url"
341
  msgstr ""
342
 
343
- #: ../addons/badges/myCRED-addon-badges.php:674 ../addons/badges/myCRED-addon-
344
- #: badges.php:732 ../addons/badges/myCRED-addon-badges.php:763 ..
345
- #: addons/badges/myCRED-addon-badges.php:821
346
  msgid "Add Image"
347
  msgstr ""
348
 
349
- #: ../addons/badges/myCRED-addon-badges.php:675
350
  msgid "Optional image to show when a user has not yet earned this badge."
351
  msgstr ""
352
 
353
- #: ../addons/badges/myCRED-addon-badges.php:694 ../addons/badges/myCRED-addon-
354
- #: badges.php:746
355
  #, php-format
356
  msgid "Level %d"
357
  msgstr ""
358
 
359
- #: ../addons/badges/myCRED-addon-badges.php:699 ../addons/badges/myCRED-addon-
360
- #: badges.php:751 ../addons/badges/myCRED-addon-badges.php:821
361
  msgid "for"
362
  msgstr ""
363
 
364
- #: ../addons/badges/myCRED-addon-badges.php:730
365
  msgid "Main Image"
366
  msgstr ""
367
 
368
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
369
- #: badges.php:821
370
  msgid "Leave empty if you do not want to assign a custom image for this level."
371
  msgstr ""
372
 
373
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
374
- #: badges.php:821
375
  msgid "Remove this level"
376
  msgstr ""
377
 
378
- #: ../addons/badges/myCRED-addon-badges.php:778
379
  msgid "Add Level"
380
  msgstr ""
381
 
382
- #: ../addons/badges/myCRED-addon-badges.php:821 ../addons/badges/myCRED-addon-
383
- #: badges.php:1141
384
  msgid "Level"
385
  msgstr ""
386
 
387
- #: ../addons/badges/myCRED-addon-badges.php:838
388
  msgid "Use as Badge"
389
  msgstr ""
390
 
391
- #: ../addons/badges/myCRED-addon-badges.php:960 ../addons/badges/myCRED-addon-
392
- #: badges.php:991 ../addons/gateway/carts/mycred-woocommerce.php:153 ..
393
- #: modules/mycred-module-buddypress.php:384
394
  msgid "Do not show"
395
  msgstr "نمایش نده !"
396
 
397
- #: ../addons/badges/myCRED-addon-badges.php:961 ../modules/mycred-module-
398
- #: buddypress.php:385
399
  msgid "Include in Profile Header"
400
  msgstr ""
401
 
402
- #: ../addons/badges/myCRED-addon-badges.php:962 ../addons/ranks/myCRED-addon-
403
- #: ranks.php:1396 ../modules/mycred-module-buddypress.php:386
404
  msgid "Include under the \"Profile\" tab"
405
  msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
406
 
407
- #: ../addons/badges/myCRED-addon-badges.php:963 ../modules/mycred-module-
408
- #: buddypress.php:387
409
  msgid "Include under the \"Profile\" tab and Profile Header"
410
  msgstr ""
411
 
412
- #: ../addons/badges/myCRED-addon-badges.php:976 ../addons/badges/myCRED-addon-
413
- #: badges.php:1007
414
  msgid "Show all badges, including badges users have not yet earned."
415
  msgstr ""
416
 
417
- #: ../addons/badges/myCRED-addon-badges.php:992 ../addons/ranks/myCRED-addon-
418
- #: ranks.php:1442
419
  msgid "Include in Profile"
420
  msgstr ""
421
 
422
- #: ../addons/badges/myCRED-addon-badges.php:993
423
  msgid "Include in Forum Replies"
424
  msgstr ""
425
 
426
- #: ../addons/badges/myCRED-addon-badges.php:994
427
  msgid "Include in Profile and Forum Replies"
428
  msgstr ""
429
 
430
- #: ../addons/badges/myCRED-addon-badges.php:1098
431
  msgid "User Badges"
432
  msgstr ""
433
 
434
- #: ../addons/badges/myCRED-addon-badges.php:1103
435
  msgid ""
436
  "Here you can view the badges this user has earned and if needed, manually "
437
  "give or take away a badge from a user."
438
  msgstr ""
439
 
440
- #: ../addons/badges/myCRED-addon-badges.php:1112
441
  msgid "Not earned"
442
  msgstr ""
443
 
444
- #: ../addons/badges/myCRED-addon-badges.php:1118 ../addons/badges/myCRED-addon-
445
- #: badges.php:1155
446
  msgid "Earned"
447
  msgstr ""
448
 
449
- #: ../addons/badges/myCRED-addon-badges.php:1130
450
  msgid "No image"
451
  msgstr ""
452
 
453
- #: ../addons/badges/myCRED-addon-badges.php:1137
454
  msgid "Select a level"
455
  msgstr ""
456
 
457
- #: ../addons/badges/myCRED-addon-badges.php:1152 ../addons/email-notices/myCRED-
458
- #: addon-email-notices.php:807
459
  msgid "Status"
460
  msgstr "وضعیت"
461
 
462
- #: ../addons/badges/myCRED-addon-badges.php:1169 ../addons/email-notices/myCRED-
463
- #: addon-email-notices.php:1290
464
  msgid "Save Changes"
465
  msgstr ""
466
 
467
- #: ../addons/badges/includes/mycred-badge-functions.php:65
468
  #, php-format
469
  msgid "Level %s"
470
  msgstr ""
471
 
472
- #: ../addons/badges/includes/mycred-badge-functions.php:68
473
  #, php-format
474
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
475
  msgid "%s for %s %s - %s"
476
  msgstr ""
477
 
478
- #: ../addons/badges/includes/mycred-badge-functions.php:68 ..
479
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
480
  #: coupons.php:469
481
  #, php-format
@@ -484,7 +485,7 @@ msgid_plural "%d times"
484
  msgstr[0] ""
485
  msgstr[1] ""
486
 
487
- #: ../addons/badges/includes/mycred-badge-functions.php:70
488
  #, php-format
489
  msgctxt "\"x points\" for \"reference\" in total"
490
  msgid "%s for %s in total"
@@ -526,11 +527,11 @@ msgid "Setup mass %_singular% payouts for your users."
526
  msgstr ""
527
 
528
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
529
- #: addon-buy-creds.php:836 ../addons/buy-creds/myCRED-addon-buy-creds.php:932 ..
530
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
531
- #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:292 ..
532
- #: modules/mycred-module-hooks.php:171 ../modules/mycred-module-log.php:326 ..
533
- #: modules/mycred-module-log.php:597 ../modules/mycred-module-settings.php:457
534
  msgid "Access Denied"
535
  msgstr "دسترسی غیرمجاز می باشد"
536
 
@@ -555,12 +556,12 @@ msgstr ""
555
  "مدیر سایت می دهد"
556
 
557
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
558
- #: addon-buy-creds.php:870 ../modules/mycred-module-hooks.php:196
559
  msgid "Enable"
560
  msgstr "فعالسازی"
561
 
562
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
563
- #: php:211
564
  msgid "Update Changes"
565
  msgstr "به روزرسانی تغییرات"
566
 
@@ -677,19 +678,19 @@ msgstr "پرداخت"
677
 
678
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
679
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
680
- #: creds/myCRED-addon-buy-creds.php:606 ../addons/buy-creds/myCRED-addon-buy-
681
- #: creds.php:665 ../addons/coupons/myCRED-addon-coupons.php:502 ..
682
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
683
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
684
- #: addons/gateway/carts/mycred-woocommerce.php:105 ..
685
- #: addons/gateway/carts/mycred-woocommerce.php:177 ..
686
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
687
- #: hooks.php:891 ../modules/mycred-module-hooks.php:1847 ../modules/mycred-module-
688
- #: hooks.php:2187 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-
689
- #: badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-hook-
690
- #: events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.php:
691
- #: 209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-
692
- #: star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:304 ..
693
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
694
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
695
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
@@ -736,7 +737,7 @@ msgid "This user role is excluded from receiving interest on this balance."
736
  msgstr ""
737
 
738
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
739
- #: creds/myCRED-addon-buy-creds.php:758 ../addons/sell-content/myCRED-addon-sell-
740
  #: content.php:114
741
  msgid "Leave empty to use the default value."
742
  msgstr ""
@@ -749,15 +750,15 @@ msgstr ""
749
  msgid "Exclude from receiving interest"
750
  msgstr ""
751
 
752
- #: ../addons/banking/services/mycred-bank-service-interest.php:667
753
  msgid "Compound interest rate saved."
754
  msgstr ""
755
 
756
- #: ../addons/banking/services/mycred-bank-service-interest.php:669
757
  msgid "User excluded from receiving interest."
758
  msgstr ""
759
 
760
- #: ../addons/banking/services/mycred-bank-service-interest.php:671
761
  msgid "User included in receiving interest."
762
  msgstr ""
763
 
@@ -766,8 +767,8 @@ msgid "Daily %_plural%"
766
  msgstr "%_plural% روزانه"
767
 
768
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
769
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:254 ..
770
- #: modules/mycred-module-log.php:255
771
  msgid "History"
772
  msgstr "لیست تغییرات"
773
 
@@ -784,17 +785,17 @@ msgid "Pay Users"
784
  msgstr "پرداخت به کاربران :"
785
 
786
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
787
- #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
788
- #: creds.php:1523 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
789
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
790
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
791
- #: includes/mycred-shortcodes.php:971 ../includes/mycred-shortcodes.php:1112 ..
792
  #: plugins/mycred-hook-affiliatewp.php:256
793
  msgid "Amount"
794
  msgstr "مقدار"
795
 
796
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
797
- #: modules/mycred-module-hooks.php:2202
798
  msgid "Interval"
799
  msgstr "فاصله زمانی"
800
 
@@ -823,319 +824,319 @@ msgstr ""
823
  "نوع مکث تا زمان دلخواه شما ، برای عملیات واریز خواهد بود . برای ریست کردن "
824
  "تعداد دوره ها هم می توانید عدد صفر را وارد فرمایید"
825
 
826
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
827
- #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
828
  msgid "Payment Gateways"
829
  msgstr "درگاه های پرداخت"
830
 
831
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:253
832
  msgctxt "Post Type General Name"
833
  msgid "Pending Payments"
834
  msgstr ""
835
 
836
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:254
837
  msgctxt "Post Type Singular Name"
838
  msgid "Pending Payment"
839
  msgstr ""
840
 
841
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:255 ../addons/buy-creds/myCRED-
842
- #: addon-buy-creds.php:257 ../addons/buy-creds/myCRED-addon-buy-creds.php:268
843
  msgid "Pending Payments"
844
  msgstr ""
845
 
846
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
847
  msgid "Edit Pending Payment"
848
  msgstr ""
849
 
850
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
851
- #: addon-buy-creds.php:1634
852
  msgid "No pending payments found"
853
  msgstr ""
854
 
855
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265
856
  msgid "Not found in Trash"
857
  msgstr ""
858
 
859
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
860
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1598
861
  msgid "Transaction ID"
862
  msgstr ""
863
 
864
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
865
- #: addon-buy-creds.php:984
866
  msgid "Buyer"
867
  msgstr ""
868
 
869
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
870
- #: addon-buy-creds.php:1601 ../addons/buy-creds/abstracts/mycred-abstract-payment-
871
  #: gateway.php:594
872
  msgid "Cost"
873
  msgstr ""
874
 
875
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
876
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ..
877
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
878
  msgid "Gateway"
879
  msgstr "درگاه"
880
 
881
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:303
882
  msgid "Type"
883
  msgstr ""
884
 
885
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:390
886
  msgid "Pay Out"
887
  msgstr ""
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
890
  msgid "buyCRED Purchase Log"
891
  msgstr ""
892
 
893
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:422 ../addons/buy-creds/myCRED-
894
- #: addon-buy-creds.php:655 ../addons/buy-creds/myCRED-addon-buy-creds.php:842
895
  msgid "Purchase Log"
896
  msgstr ""
897
 
898
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:515 ../addons/gateway/event-
899
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
900
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
901
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
902
  msgid "Payments"
903
  msgstr "پرداخت ها"
904
 
905
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
906
  msgid "Please login to purchase %_plural%"
907
  msgstr "لطفا برای خرید امتیاز وارد سایت شوید"
908
 
909
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
910
  #, php-format
911
  msgid "Gift purchase from %display_name%."
912
  msgstr "خرید هدیه توسط %display_name% ."
913
 
914
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:576 ../addons/ranks/myCRED-
915
- #: addon-ranks.php:1079
916
  msgid "Minimum %plural%"
917
  msgstr "کمترین مفدار %plural%"
918
 
919
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:580
920
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
921
  msgstr ""
922
  "کمترین مقدار %plural% مجازی که کاربر می تواند خرید بکند . به صورت پیش فرض "
923
  "روی عدد یک تنظیم شده است ."
924
 
925
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:585 ../addons/transfer/myCRED-
926
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
927
- #: module-settings.php:617
928
  msgid "Point Types"
929
  msgstr ""
930
 
931
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
932
  msgid "Select the point types that users can buy. You must select at least one!"
933
  msgstr ""
934
 
935
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:599
936
  msgid "Login Template"
937
  msgstr "نمونه طرح ورود به سایت"
938
 
939
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603
940
  msgid "Content to show when a user is not logged in."
941
  msgstr "متنی که به کاربران لوگین نکرده نمایش داده خواهد شد ."
942
 
943
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
944
  msgid "Thank You Page"
945
  msgstr "صفحه ی تشکر بابت خرید"
946
 
947
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:616 ../addons/buy-creds/myCRED-
948
- #: addon-buy-creds.php:637
949
  msgid "Custom URL"
950
  msgstr "نشانی اینترنتی متفاوت"
951
 
952
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:621 ../addons/buy-creds/myCRED-
953
- #: addon-buy-creds.php:642
954
  msgid "Page"
955
  msgstr "صفحه"
956
 
957
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:634
958
  msgid "Cancellation Page"
959
  msgstr "صفحه ای که در صورت کنسل کردن خرید نمایش داده می شود"
960
 
961
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657
962
  msgid "Show seperate log for %_plural% purchases."
963
  msgstr ""
964
 
965
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
966
  msgid "Gifting"
967
  msgstr "هدیه دادن"
968
 
969
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:661
970
  #, php-format
971
  msgid "Allow users to buy %_plural% for other users."
972
  msgstr "به کاربران اجازه ی خرید %_plural% برای سایر اعضای سایت را بدهید ."
973
 
974
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:662
975
  #, php-format
976
  msgid "Allow users to buy %_plural% for content authors."
977
  msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
978
 
979
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670 ../modules/mycred-module-
980
- #: hooks.php:2912
981
  msgid "Available Shortcodes"
982
  msgstr ""
983
 
984
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:752
985
  #, php-format
986
  msgid "%s Exchange Rate"
987
  msgstr ""
988
 
989
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:766
990
  msgid "Save Exchange Rates"
991
  msgstr ""
992
 
993
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:821
994
  msgid "Exchange rate override saved"
995
  msgstr ""
996
 
997
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
998
  msgid "Payment completed"
999
  msgstr ""
1000
 
1001
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842
1002
  #, php-format
1003
  msgid "%s Payment Gateways"
1004
  msgstr "درگاه های پرداخت %s"
1005
 
1006
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842 ../addons/buy-creds/myCRED-
1007
- #: addon-buy-creds.php:992
1008
  msgid "buyCRED Settings"
1009
  msgstr ""
1010
 
1011
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:863
1012
  msgid "Test Mode"
1013
  msgstr "حالت آزمایشی ( تست )"
1014
 
1015
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:865
1016
  msgid "Enabled"
1017
  msgstr "فعال شد"
1018
 
1019
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
1020
  msgid "Disabled"
1021
  msgstr "غیرفعال شد"
1022
 
1023
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:878
1024
  msgid "Sandbox Mode"
1025
  msgstr ""
1026
  "حالت جعبه شنی ( حالت تست بانکی می باشد که در آن بابت تراکنش ها هیچ وجهی کسر "
1027
  "نمی گردد )"
1028
 
1029
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
1030
  msgid "Enable for test purchases."
1031
  msgstr ""
1032
 
1033
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:898 ../addons/gateway/event-
1034
- #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:692
1035
  msgid "Update Settings"
1036
  msgstr "به روزرسانی تنظیمات"
1037
 
1038
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
1039
  msgid "More Gateways"
1040
  msgstr ""
1041
 
1042
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
1043
- #: 634
1044
  msgid "Date"
1045
  msgstr "تاریخ"
1046
 
1047
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1048
  msgid "Payed"
1049
  msgstr ""
1050
 
1051
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
1052
  msgid "<strong>buy</strong>CRED Purchase Log"
1053
  msgstr ""
1054
 
1055
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
1056
  #: booking/mycred-eventespresso3.php:367
1057
  msgid "Gateway Settings"
1058
  msgstr "تنظیمات درگاه پرداخت"
1059
 
1060
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171 ../addons/sell-
1061
  #: content/myCRED-addon-sell-content.php:1209
1062
  msgid "No purchases found"
1063
  msgstr "خریدی یافت نشد"
1064
 
1065
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1241 ../addons/buy-creds/myCRED-
1066
- #: addon-buy-creds.php:1354
1067
  msgid "This Add-on needs to setup before you can use this shortcode."
1068
  msgstr ""
1069
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
1070
  "جانبی را راه اندازی کنید ."
1071
 
1072
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1260 ../addons/buy-creds/myCRED-
1073
- #: addon-buy-creds.php:1373
1074
  msgid "No gateways installed."
1075
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
1076
 
1077
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
1078
- #: addon-buy-creds.php:1374
1079
  msgid "Gateway does not exist."
1080
  msgstr "درگاه موجود نیست ."
1081
 
1082
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1309
1083
  msgid "Yourself"
1084
  msgstr "خودتان"
1085
 
1086
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1375
1087
  msgid "No active gateways found."
1088
  msgstr "درگاه پرداخت فعالی یافت نشد ."
1089
 
1090
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
1091
  msgid "The selected gateway is not active."
1092
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
1093
 
1094
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1423
1095
  #, php-format
1096
  msgid "Buy with %gateway%"
1097
  msgstr ""
1098
 
1099
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1429 ../addons/sell-
1100
  #: content/myCRED-addon-sell-content.php:44
1101
  msgid "Buy Now"
1102
  msgstr "همین الان بخرید"
1103
 
1104
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1474
1105
  msgid "No users found"
1106
  msgstr "کاربری یافت نشد"
1107
 
1108
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1484
1109
  msgid "To"
1110
  msgstr "به"
1111
 
1112
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1501
1113
  msgid "Select Amount"
1114
  msgstr "مقدار را انتخاب کنید"
1115
 
1116
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1525
1117
  msgid "min."
1118
  msgstr "حداقل"
1119
 
1120
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1121
  msgid "Select Gateway"
1122
  msgstr "درگاه پرداخت را انتخاب کنید"
1123
 
1124
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1574 ../addons/gateway/event-
1125
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1126
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1127
  #: php:35
1128
  msgid "Pay Now"
1129
  msgstr "همین حالا بپردازید"
1130
 
1131
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../includes/mycred-install.
1132
- #: php:524
1133
  msgid "Cancel"
1134
  msgstr "لغو"
1135
 
1136
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1602 ../addons/ranks/myCRED-
1137
- #: addon-ranks.php:1601 ../modules/mycred-module-log.php:375 ../modules/mycred-
1138
- #: module-settings.php:589 ../modules/mycred-module-settings.php:604
1139
  msgid "Actions"
1140
  msgstr "عملیات ها"
1141
 
@@ -1267,7 +1268,7 @@ msgid "Continue to %s"
1267
  msgstr ""
1268
 
1269
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1270
- #: addons/buy-creds/gateways/bitpay.php:226
1271
  msgid "Click here if you are not automatically redirected"
1272
  msgstr "اگر به صورت خودکار به آدرس مورد نظر منتقل نشدید ، اینجا را کلیک فرمایید ."
1273
 
@@ -1327,245 +1328,244 @@ msgstr ""
1327
  msgid "December"
1328
  msgstr ""
1329
 
1330
- #: ../addons/buy-creds/gateways/bitpay.php:30 ../addons/buy-
1331
- #: creds/gateways/netbilling.php:35 ../addons/buy-creds/gateways/paypal-standard.
1332
- #: php:30 ../addons/buy-creds/gateways/skrill.php:35
1333
- msgid "Purchase of myCRED %plural%"
1334
- msgstr "خرید %plural% \"اعتبار من\""
1335
-
1336
- #: ../addons/buy-creds/gateways/bitpay.php:60 ../addons/buy-
1337
- #: creds/gateways/netbilling.php:88 ../addons/buy-creds/gateways/paypal-standard.
1338
- #: php:142 ../addons/buy-creds/gateways/skrill.php:119
1339
  #, php-format
1340
  msgid "Price mismatch. Expected: %s Received: %s"
1341
  msgstr ""
1342
 
1343
- #: ../addons/buy-creds/gateways/bitpay.php:66 ../addons/buy-creds/gateways/paypal-
1344
- #: standard.php:148 ../addons/buy-creds/gateways/skrill.php:125
1345
  #, php-format
1346
  msgid "Currency mismatch. Expected: %s Received: %s"
1347
  msgstr ""
1348
 
1349
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
1350
- #: creds/gateways/netbilling.php:94 ../addons/buy-creds/gateways/paypal-standard.
1351
- #: php:154 ../addons/buy-creds/gateways/skrill.php:131
1352
  #, php-format
1353
  msgid "Payment not completed. Received: %s"
1354
  msgstr ""
1355
 
1356
- #: ../addons/buy-creds/gateways/bitpay.php:83 ../addons/buy-
1357
- #: creds/gateways/netbilling.php:105 ../addons/buy-creds/gateways/paypal-standard.
1358
- #: php:165 ../addons/buy-creds/gateways/skrill.php:142 ../addons/buy-
1359
- #: creds/gateways/zombaio.php:174
1360
  msgid "Failed to credit users account."
1361
  msgstr ""
1362
 
1363
- #: ../addons/buy-creds/gateways/bitpay.php:160 ../addons/buy-
1364
- #: creds/gateways/netbilling.php:140 ../addons/buy-creds/gateways/paypal-standard.
1365
- #: php:202 ../addons/buy-creds/gateways/skrill.php:180 ../addons/buy-
1366
- #: creds/gateways/zombaio.php:201
1367
  msgid "Please setup this gateway before attempting to make a purchase!"
1368
  msgstr ""
1369
  "لطفا قبل از اینکه تلاش به انجام پرداختی کنید ، این درگاه را راه اندازی "
1370
  "فرمایید ."
1371
 
1372
- #: ../addons/buy-creds/gateways/bitpay.php:212 ../addons/buy-
1373
- #: creds/gateways/bitpay.php:221 ../addons/buy-creds/gateways/netbilling.php:193 .
1374
- #: ./addons/buy-creds/gateways/paypal-standard.php:262 ../addons/buy-
1375
- #: creds/gateways/skrill.php:274 ../addons/buy-creds/gateways/zombaio.php:234
1376
  msgid "Processing payment &hellip;"
1377
  msgstr "پردازش پرداخت &hellip;"
1378
 
1379
- #: ../addons/buy-creds/gateways/bitpay.php:214
1380
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1381
  msgstr ""
1382
 
1383
- #: ../addons/buy-creds/gateways/bitpay.php:215
1384
  msgid "Bitpay returned the following error message:"
1385
  msgstr ""
1386
 
1387
- #: ../addons/buy-creds/gateways/bitpay.php:246 ../includes/mycred-remote.php:551
1388
  msgid "API Key"
1389
  msgstr "کلید API"
1390
 
1391
- #: ../addons/buy-creds/gateways/bitpay.php:252 ../addons/buy-
1392
- #: creds/gateways/paypal-standard.php:279 ../addons/buy-creds/gateways/skrill.php:
1393
- #: 292
1394
  msgid "Currency"
1395
  msgstr "واحد پولی"
1396
 
1397
- #: ../addons/buy-creds/gateways/bitpay.php:255
1398
  msgid "Currency Code"
1399
  msgstr ""
1400
 
1401
- #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1402
- #: creds/gateways/netbilling.php:229 ../addons/buy-creds/gateways/paypal-standard.
1403
- #: php:291 ../addons/buy-creds/gateways/skrill.php:311
1404
  msgid "Item Name"
1405
  msgstr "نام محصول"
1406
 
1407
- #: ../addons/buy-creds/gateways/bitpay.php:263 ../addons/buy-
1408
- #: creds/gateways/netbilling.php:233 ../addons/buy-creds/gateways/paypal-standard.
1409
- #: php:295 ../addons/buy-creds/gateways/skrill.php:315
1410
  msgid "Description of the item being purchased by the user."
1411
  msgstr "شرح محصولی که توسط کاربر خریداری می شود ."
1412
 
1413
- #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1414
- #: creds/gateways/netbilling.php:236 ../addons/buy-creds/gateways/paypal-standard.
1415
- #: php:298 ../addons/buy-creds/gateways/skrill.php:318
1416
  msgid "Exchange Rates"
1417
  msgstr ""
1418
 
1419
- #: ../addons/buy-creds/gateways/bitpay.php:270
1420
  msgid "Transaction Speed"
1421
  msgstr ""
1422
 
1423
- #: ../addons/buy-creds/gateways/bitpay.php:277
1424
  msgid "High"
1425
  msgstr ""
1426
 
1427
- #: ../addons/buy-creds/gateways/bitpay.php:278
1428
  msgid "Medium"
1429
  msgstr ""
1430
 
1431
- #: ../addons/buy-creds/gateways/bitpay.php:279
1432
  msgid "Low"
1433
  msgstr ""
1434
 
1435
- #: ../addons/buy-creds/gateways/bitpay.php:292
1436
  msgid "Full Notifications"
1437
  msgstr ""
1438
 
1439
- #: ../addons/buy-creds/gateways/bitpay.php:299 ../includes/mycred-network.php:161
1440
  #: ../includes/mycred-network.php:175
1441
  msgid "No"
1442
  msgstr "خیر"
1443
 
1444
- #: ../addons/buy-creds/gateways/bitpay.php:300 ../includes/mycred-network.php:157
1445
  #: ../includes/mycred-network.php:171
1446
  msgid "Yes"
1447
  msgstr "بلی"
1448
 
1449
- #: ../addons/buy-creds/gateways/netbilling.php:210
1450
  msgid "Account ID"
1451
  msgstr "شناسه اکانت"
1452
 
1453
- #: ../addons/buy-creds/gateways/netbilling.php:216
1454
  msgid "Site Tag"
1455
  msgstr "تگ سایت"
1456
 
1457
- #: ../addons/buy-creds/gateways/netbilling.php:222
1458
  msgid "Order Integrity Key"
1459
  msgstr ""
1460
 
1461
- #: ../addons/buy-creds/gateways/netbilling.php:226
1462
  msgid "Found under Step 12 on the Fraud Defense page."
1463
  msgstr ""
1464
 
1465
- #: ../addons/buy-creds/gateways/netbilling.php:240
1466
  msgid "Postback CGI URL"
1467
  msgstr ""
1468
 
1469
- #: ../addons/buy-creds/gateways/netbilling.php:244
1470
  msgid ""
1471
  "For this gateway to work, you must login to your NETbilling account and edit "
1472
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1473
  "URL is set to the above address and \"Return method\" is set to POST."
1474
  msgstr ""
1475
 
1476
- #: ../addons/buy-creds/gateways/netbilling.php:288
1477
  msgid "Incorrect Credit Card number"
1478
  msgstr "شماره کارت نامعتبر"
1479
 
1480
- #: ../addons/buy-creds/gateways/netbilling.php:294
1481
  msgid "The credit card entered is past its expiration date."
1482
  msgstr "کارت بانکی وارد شده منقضی شده است ( تاریخ انقضای کارتتان را نگاه کنید )"
1483
 
1484
- #: ../addons/buy-creds/gateways/netbilling.php:297
1485
  msgid "The CVV2 number entered is not valid."
1486
  msgstr "کد CVV2 وارد شده معتبر نمی باشد ."
1487
 
1488
- #: ../addons/buy-creds/gateways/netbilling.php:304
1489
  msgid "The bank routing number entered is not valid."
1490
  msgstr "شماره مسیریاب بانک وارد شده معتبر نمی باشد ."
1491
 
1492
- #: ../addons/buy-creds/gateways/netbilling.php:308
1493
  msgid "The bank account number entered is not valid."
1494
  msgstr "شماره حساب/کارت بانکی وارد شده معتبر نمی باشد."
1495
 
1496
- #: ../addons/buy-creds/gateways/paypal-standard.php:188 ../addons/buy-
1497
- #: creds/gateways/skrill.php:166
1498
  msgid "Success"
1499
  msgstr "موفق"
1500
 
1501
- #: ../addons/buy-creds/gateways/paypal-standard.php:189 ../addons/buy-
1502
- #: creds/gateways/skrill.php:167
1503
  msgid "Thank you for your purchase"
1504
  msgstr "**ممنون از خرید و حمایتتان**"
1505
 
1506
- #: ../addons/buy-creds/gateways/paypal-standard.php:257 ../addons/buy-
1507
- #: creds/gateways/skrill.php:221
1508
- msgid "Return to "
1509
- msgstr "بازگشت به"
 
1510
 
1511
- #: ../addons/buy-creds/gateways/paypal-standard.php:285
1512
  msgid "Account Email"
1513
  msgstr "آدرس ایمیل اکانت"
1514
 
1515
- #: ../addons/buy-creds/gateways/skrill.php:257
 
 
 
 
1516
  msgid "Product:"
1517
  msgstr "محصول :"
1518
 
1519
- #: ../addons/buy-creds/gateways/skrill.php:266
1520
  msgid "Gift to:"
1521
  msgstr "هدیه به :"
1522
 
1523
- #: ../addons/buy-creds/gateways/skrill.php:267
1524
  msgid "(author)"
1525
  msgstr "( نویسنده )"
1526
 
1527
- #: ../addons/buy-creds/gateways/skrill.php:299
1528
  msgid "Merchant Account Email"
1529
  msgstr "ایمیل اکانت مرچنت"
1530
 
1531
- #: ../addons/buy-creds/gateways/skrill.php:305
1532
  msgid "Secret Word"
1533
  msgstr "کلمه ی رمز"
1534
 
1535
- #: ../addons/buy-creds/gateways/skrill.php:322
1536
  msgid "Confirmation Email"
1537
  msgstr "ایمیل تایید پرداخت"
1538
 
1539
- #: ../addons/buy-creds/gateways/skrill.php:325
1540
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1541
  msgstr ""
1542
  "از Skrill (همون Moneybookers ) بخواید که برای هر تراکنش موفق براتون ایمیل "
1543
  "بزنه ."
1544
 
1545
- #: ../addons/buy-creds/gateways/skrill.php:328
1546
  msgid "Checkout Page"
1547
  msgstr "صفحه تسویه حساب"
1548
 
1549
- #: ../addons/buy-creds/gateways/skrill.php:331 ../addons/gateway/carts/mycred-
1550
- #: woocommerce.php:93 ../addons/ranks/myCRED-addon-ranks.php:1307 ..
1551
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1552
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1553
- #: php:592 ../modules/mycred-module-hooks.php:2876
1554
  msgid "Title"
1555
  msgstr "عنوان"
1556
 
1557
- #: ../addons/buy-creds/gateways/skrill.php:333
1558
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1559
  msgstr ""
1560
  "اگر این بخش را خالی بگذارید ، از ایمیل اکانتتان برای عنوان صفحه ی پرداخت "
1561
  "Skrill استفاده خواهد شد ."
1562
 
1563
- #: ../addons/buy-creds/gateways/skrill.php:336 ../addons/buy-
1564
- #: creds/gateways/zombaio.php:269
1565
  msgid "Logo URL"
1566
  msgstr "آدرس لوگو"
1567
 
1568
- #: ../addons/buy-creds/gateways/skrill.php:338
1569
  msgid ""
1570
  "The URL to the image you want to use on the top of the gateway. For best "
1571
  "integration results we recommend you use logos with dimensions up to 200px "
@@ -1575,11 +1575,11 @@ msgstr ""
1575
  "نتیجه و هماهنگی بهتر عکس با درگاه ، پیشنهاد می کنیم که نهایتا عرض عکس 200 "
1576
  "پیکسل و ارتفاع آن 50 پیکسل باشد ."
1577
 
1578
- #: ../addons/buy-creds/gateways/skrill.php:341
1579
  msgid "Confirmation Note"
1580
  msgstr "متن تایید پرداخت"
1581
 
1582
- #: ../addons/buy-creds/gateways/skrill.php:343
1583
  msgid ""
1584
  "Optional text to show user once a transaction has been successfully "
1585
  "completed. This text is shown by Skrill."
@@ -1587,45 +1587,45 @@ msgstr ""
1587
  "متنی اختیاری که به محض موفقیت آمیز بودن پرداخت ، توسط Skrill به کاربر "
1588
  "نمایش داده خواهد شد ."
1589
 
1590
- #: ../addons/buy-creds/gateways/zombaio.php:143
1591
  #, php-format
1592
  msgid "Duplicate transaction. Received: %s"
1593
  msgstr ""
1594
 
1595
- #: ../addons/buy-creds/gateways/zombaio.php:149
1596
  #, php-format
1597
  msgid "Live transaction while debug mode is enabled! Received: %s"
1598
  msgstr ""
1599
 
1600
- #: ../addons/buy-creds/gateways/zombaio.php:251
1601
  msgid "Site ID"
1602
  msgstr "شناسه سایت"
1603
 
1604
- #: ../addons/buy-creds/gateways/zombaio.php:257
1605
  msgid "GW Password"
1606
  msgstr "گذرواژه GW"
1607
 
1608
- #: ../addons/buy-creds/gateways/zombaio.php:263
1609
  msgid "Pricing ID"
1610
  msgstr "شناسه بها"
1611
 
1612
- #: ../addons/buy-creds/gateways/zombaio.php:275
1613
  msgid "IP Verification"
1614
  msgstr "تایید آی پی"
1615
 
1616
- #: ../addons/buy-creds/gateways/zombaio.php:278
1617
  msgid "Do not verify that callbacks are coming from Zombaio."
1618
  msgstr "فراخوانی های برگشتی از سوی سامانه Zombaio را تایید نکنید ."
1619
 
1620
- #: ../addons/buy-creds/gateways/zombaio.php:281
1621
  msgid "Language"
1622
  msgstr "زبان"
1623
 
1624
- #: ../addons/buy-creds/gateways/zombaio.php:288
1625
  msgid "Postback URL (ZScript)"
1626
  msgstr "آدرس Postback ( برای اسکریپت های سامانه Zombaio )"
1627
 
1628
- #: ../addons/buy-creds/gateways/zombaio.php:292
1629
  msgid ""
1630
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1631
  "address and click validate."
@@ -1715,8 +1715,8 @@ msgid "Used"
1715
  msgstr ""
1716
 
1717
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1718
- #: transfer.php:259 ../modules/mycred-module-hooks.php:1563 ../modules/mycred-
1719
- #: module-hooks.php:1854
1720
  msgid "Limits"
1721
  msgstr "محدودیت ها"
1722
 
@@ -1725,15 +1725,15 @@ msgid "Expires"
1725
  msgstr ""
1726
 
1727
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1728
- #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:811 ..
1729
- #: addons/email-notices/myCRED-addon-email-notices.php:1028 ..
1730
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1731
- #: addons/gateway/carts/mycred-woocommerce.php:121 ..
1732
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1733
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1734
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1735
- #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1041 ../addons/ranks/myCRED-
1736
- #: addon-ranks.php:1191 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1737
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1738
  #: includes/importers/mycred-cubepoints.php:365
1739
  msgid "Point Type"
@@ -1745,7 +1745,7 @@ msgid "not yet used"
1745
  msgstr ""
1746
 
1747
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1748
- #: 395 ../modules/mycred-module-hooks.php:2292
1749
  msgid "Total"
1750
  msgstr ""
1751
 
@@ -1891,16 +1891,12 @@ msgstr ""
1891
  msgid "Message to show when a coupon was successfully deposited to a users account."
1892
  msgstr ""
1893
 
1894
- #: ../addons/coupons/includes/mycred-coupon-functions.php:158
1895
- msgid "Coupon redemption"
1896
- msgstr ""
1897
-
1898
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1899
  msgid "Apply Coupon"
1900
  msgstr ""
1901
 
1902
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1903
- #: notices/myCRED-addon-email-notices.php:1264
1904
  msgid "Email Notice"
1905
  msgstr "اطلاعیه ایمیلی"
1906
 
@@ -2106,17 +2102,17 @@ msgstr ""
2106
  "نیز قابل ویرایش هستند ."
2107
 
2108
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2109
- #: notices/myCRED-addon-email-notices.php:897
2110
  msgid "Email Settings"
2111
  msgstr "تنظیمات ایمیل"
2112
 
2113
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2114
- #: notices/myCRED-addon-email-notices.php:1050
2115
  msgid "Senders Name:"
2116
  msgstr "نام ارسال کننده :"
2117
 
2118
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2119
- #: notices/myCRED-addon-email-notices.php:1052
2120
  msgid "Senders Email:"
2121
  msgstr "آدرس ایمیل ارسال کننده :"
2122
 
@@ -2143,163 +2139,163 @@ msgstr ""
2143
  "در صورتی که نمی خواید از HTML استفاده کنید ، توی این کادر چیزی وارد نفرمایید "
2144
  "."
2145
 
2146
- #: ../addons/email-notices/myCRED-addon-email-notices.php:716
2147
  #, php-format
2148
  msgctxt "Badge Title - Level 1,2,3.."
2149
  msgid "%s - Level %d"
2150
  msgstr ""
2151
 
2152
- #: ../addons/email-notices/myCRED-addon-email-notices.php:806 ../addons/email-
2153
- #: notices/myCRED-addon-email-notices.php:946
2154
  msgid "Email Subject"
2155
  msgstr "موضوع ایمیل"
2156
 
2157
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
2158
  msgid "Not Active"
2159
  msgstr "غیرفعال"
2160
 
2161
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2162
  #, php-format
2163
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2164
  msgstr "برنامه ریزی شده در : <br /><strong>%1$s</strong>"
2165
 
2166
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
2167
  msgid "Active"
2168
  msgstr "فعال"
2169
 
2170
- #: ../addons/email-notices/myCRED-addon-email-notices.php:842
2171
  #, php-format
2172
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2173
  msgstr "فعال - آخرین اجرا : <br /><strong>%1$s</strong>"
2174
 
2175
- #: ../addons/email-notices/myCRED-addon-email-notices.php:852
2176
  msgid "Email is sent when"
2177
  msgstr "ایمیل فرستاده وقتی فرستاده شود که"
2178
 
2179
- #: ../addons/email-notices/myCRED-addon-email-notices.php:854
2180
  msgid "Missing instance for this notice!"
2181
  msgstr "یکی از مراحل برای این اطلاعیه جا افتاده است !"
2182
 
2183
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2184
- #: notices/myCRED-addon-email-notices.php:865 ../addons/email-notices/myCRED-
2185
- #: addon-email-notices.php:867
2186
  msgid "Sent To"
2187
  msgstr "ارسال شده به"
2188
 
2189
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2190
- #: notices/myCRED-addon-email-notices.php:1016 ../includes/mycred-admin.php:754 ..
2191
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:562
2192
  msgid "User"
2193
  msgstr "کاربر"
2194
 
2195
- #: ../addons/email-notices/myCRED-addon-email-notices.php:865 ../addons/email-
2196
- #: notices/myCRED-addon-email-notices.php:1017
2197
  msgid "Administrator"
2198
  msgstr "مدیر"
2199
 
2200
- #: ../addons/email-notices/myCRED-addon-email-notices.php:867
2201
  msgid "Both Administrator and User"
2202
  msgstr "هم کاربر و هم مدیر"
2203
 
2204
- #: ../addons/email-notices/myCRED-addon-email-notices.php:877 ../addons/email-
2205
- #: notices/myCRED-addon-email-notices.php:1034
2206
  msgid "All types"
2207
  msgstr ""
2208
 
2209
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
2210
  msgid "Available Template Tags"
2211
  msgstr "نمونه تگ های قابل استفاده"
2212
 
2213
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
2214
  msgid "Email Header"
2215
  msgstr "سربرگ ایمیل"
2216
 
2217
- #: ../addons/email-notices/myCRED-addon-email-notices.php:983
2218
  msgid "Send this email notice when..."
2219
  msgstr "این اطلاعیه ایمیلی زمانی ارسال شود که ..."
2220
 
2221
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1014
2222
  msgid "Recipient:"
2223
  msgstr "گیرندگان ایمیل :"
2224
 
2225
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1018
2226
  msgid "Both"
2227
  msgstr "هر دو"
2228
 
2229
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1022 ..
2230
- #: addons/gateway/carts/mycred-woocommerce.php:161 ../modules/mycred-module-
2231
- #: settings.php:632 ../modules/mycred-module-settings.php:651 ../modules/mycred-
2232
- #: module-settings.php:674
2233
  msgid "Label"
2234
  msgstr "برچسب ( اتیکت )"
2235
 
2236
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1054
2237
  msgid "Reply-To Email:"
2238
  msgstr "ایمیلی که پاسخ ها به آن ارسال می شود :"
2239
 
2240
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1060
2241
  msgid "Save"
2242
  msgstr "ذخیره"
2243
 
2244
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1072
2245
  msgid "CSS Styling"
2246
  msgstr "صفحه آرایی با CSS"
2247
 
2248
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1088
2249
  msgid "Site Related"
2250
  msgstr "مرتبط با سایت"
2251
 
2252
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2253
  msgid "Your websites title"
2254
  msgstr "عنوان وبسایت شما"
2255
 
2256
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1090
2257
  msgid "Your websites address"
2258
  msgstr "آدرس وبسایت شما"
2259
 
2260
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2261
  msgid "Your websites tagline (description)"
2262
  msgstr "شرح وبسایت شما"
2263
 
2264
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2265
  msgid "Your websites admin email"
2266
  msgstr "آدرس ایمیل مدیر وبسایت شما"
2267
 
2268
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2269
  msgid "Total number of blog members"
2270
  msgstr "تعداد کل کاربران سایت شما"
2271
 
2272
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1097
2273
  msgid "The users new balance"
2274
  msgstr ""
2275
 
2276
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1098
2277
  msgid "The users old balance"
2278
  msgstr ""
2279
 
2280
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1099
2281
  msgid "The amount of points gained or lost in this instance"
2282
  msgstr ""
2283
 
2284
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2285
  msgid "The log entry"
2286
  msgstr ""
2287
 
2288
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1175 ../addons/email-
2289
- #: notices/myCRED-addon-email-notices.php:1178 ../addons/email-notices/myCRED-
2290
- #: addon-email-notices.php:1184
2291
  msgid "Email Notice Updated."
2292
  msgstr ""
2293
 
2294
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1180
2295
  msgid "Email Notice Activated"
2296
  msgstr "اطلاعیه فعال شد"
2297
 
2298
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1181
2299
  msgid "Email Notice Saved"
2300
  msgstr "اطلاعیه ذخیره شد"
2301
 
2302
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1200
2303
  msgid ""
2304
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2305
  "are not yet ready to use this email notice!"
@@ -2308,24 +2304,24 @@ msgstr ""
2308
  "استفاده از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می "
2309
  "گردد ."
2310
 
2311
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1202
2312
  #, php-format
2313
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2314
  msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
2315
 
2316
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1204
2317
  msgid "This email notice is active."
2318
  msgstr "این اطلاعیه ی ایمیلی فعال شد ."
2319
 
2320
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1215
2321
  msgid "Settings saved."
2322
  msgstr ""
2323
 
2324
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1263
2325
  msgid "Unsubscribe"
2326
  msgstr ""
2327
 
2328
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1284
2329
  msgid "There are no email notifications yet."
2330
  msgstr ""
2331
 
@@ -2373,7 +2369,7 @@ msgid "Paid"
2373
  msgstr "پرداخت شده"
2374
 
2375
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2376
- #: addons/gateway/carts/mycred-woocommerce.php:34 ../includes/mycred-network.php:
2377
  #: 50 ../includes/mycred-network.php:51
2378
  msgid "myCRED"
2379
  msgstr "افزونه \"اعتبار من\""
@@ -2406,7 +2402,7 @@ msgstr ""
2406
  "حاضر : %balance_f%"
2407
 
2408
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2409
- #: addons/gateway/carts/mycred-woocommerce.php:259
2410
  msgid "Insufficient funds."
2411
  msgstr ""
2412
 
@@ -2446,7 +2442,7 @@ msgid "Gateway Logo URL"
2446
  msgstr "آدرس اینترنتی لوگوی درگاه"
2447
 
2448
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2449
- #: addons/gateway/carts/mycred-woocommerce.php:137
2450
  #, php-format
2451
  msgid "How much is 1 %_singular% worth in %currency%?"
2452
  msgstr ""
@@ -2454,16 +2450,16 @@ msgstr ""
2454
  "%currency% )"
2455
 
2456
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2457
- #: addons/gateway/carts/mycred-woocommerce.php:142 ..
2458
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2459
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2460
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2461
- #: php:578 ../includes/mycred-shortcodes.php:976
2462
  msgid "Exchange Rate"
2463
  msgstr "نرخ مبادلات"
2464
 
2465
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2466
- #: addons/gateway/carts/mycred-woocommerce.php:170 ..
2467
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2468
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2469
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2476,7 +2472,7 @@ msgid "Percentage"
2476
  msgstr "درصد"
2477
 
2478
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2479
- #: addons/gateway/carts/mycred-woocommerce.php:172 ..
2480
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2481
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2482
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2555,19 +2551,19 @@ msgstr ""
2555
  "پرداخت ) - TOTAL ( کل مبلغ سبد خرید را درج می کند ) - TRACKINGURL ( آدرس "
2556
  "صفحه ی پیگیری سفارش را درج می کند . ) ... استفاده از کدهای HTML مجاز نیست !"
2557
 
2558
- #: ../addons/gateway/carts/mycred-woocommerce.php:35
2559
  msgid "Let users pay using their myCRED balance."
2560
  msgstr "به کاربرانتان امکان پرداخت از طریق امتیازات \"اعتبار من\" را بدهید ."
2561
 
2562
- #: ../addons/gateway/carts/mycred-woocommerce.php:86
2563
  msgid "Enable/Disable"
2564
  msgstr "فعالسازی/غیرفعالسازی"
2565
 
2566
- #: ../addons/gateway/carts/mycred-woocommerce.php:88
2567
  msgid "Enable myCRED Payment"
2568
  msgstr "فعالسازی پرداخت از طریق امتیازات \"اعتبار من\""
2569
 
2570
- #: ../addons/gateway/carts/mycred-woocommerce.php:90
2571
  msgid ""
2572
  "Users who are not logged in or excluded from using myCRED will not have "
2573
  "access to this gateway!"
@@ -2575,64 +2571,64 @@ msgstr ""
2575
  "کاربرانی که وارد سایت نشده باشند ( لوگین نکرده باشند ) و یا کاربران محروم ( "
2576
  "بن شده ) قابلیت دسترسی و استفاده از این درگاه پرداخت را ندارند !"
2577
 
2578
- #: ../addons/gateway/carts/mycred-woocommerce.php:95
2579
  msgid "Title to show for this payment option."
2580
  msgstr "عنوانی که برای این گزینه ی پرداخت نمایش داده می شود ."
2581
 
2582
- #: ../addons/gateway/carts/mycred-woocommerce.php:96
2583
  msgid "Pay with myCRED"
2584
  msgstr "پرداخت با \"اعتبار من\""
2585
 
2586
- #: ../addons/gateway/carts/mycred-woocommerce.php:100
2587
  msgid "Customer Message"
2588
  msgstr "پیام مشتری"
2589
 
2590
- #: ../addons/gateway/carts/mycred-woocommerce.php:111 ..
2591
- #: addons/gateway/carts/mycred-woocommerce.php:183
2592
  msgid "Refund Log Template"
2593
  msgstr ""
2594
 
2595
- #: ../addons/gateway/carts/mycred-woocommerce.php:123
2596
  msgid "Select the point type users can use to pay."
2597
  msgstr ""
2598
 
2599
- #: ../addons/gateway/carts/mycred-woocommerce.php:149
2600
  msgid "Show Total"
2601
  msgstr "نمایش کل هزینه"
2602
 
2603
- #: ../addons/gateway/carts/mycred-woocommerce.php:151
2604
  msgid "Show the final price in %_plural% ."
2605
  msgstr "نمایش هزینه ی نهایی به واحد %_plural%"
2606
 
2607
- #: ../addons/gateway/carts/mycred-woocommerce.php:154
2608
  msgid "Show in Cart"
2609
  msgstr "در سبد خرید نمایش بده"
2610
 
2611
- #: ../addons/gateway/carts/mycred-woocommerce.php:155
2612
  msgid "Show on Checkout Page"
2613
  msgstr "نمایش در صفحه ی تسویه حساب"
2614
 
2615
- #: ../addons/gateway/carts/mycred-woocommerce.php:156
2616
  msgid "Show in Cart and on Checkout Page"
2617
  msgstr "نمایش در هر دو صفحه ی سبد خرید و تسویه حساب"
2618
 
2619
- #: ../addons/gateway/carts/mycred-woocommerce.php:163
2620
  msgid "Order Total in %_plural%"
2621
  msgstr "سفارش کل به واحد %_plural%"
2622
 
2623
- #: ../addons/gateway/carts/mycred-woocommerce.php:179
2624
  msgid "Log entry template for profit sharing."
2625
  msgstr ""
2626
 
2627
- #: ../addons/gateway/carts/mycred-woocommerce.php:185
2628
  msgid "Log entry template for refunds of profit shares."
2629
  msgstr ""
2630
 
2631
- #: ../addons/gateway/carts/mycred-woocommerce.php:211
2632
  msgid "myCRED Payment"
2633
  msgstr "پرداختاز طریق \"اعتبار من\""
2634
 
2635
- #: ../addons/gateway/carts/mycred-woocommerce.php:212
2636
  #, php-format
2637
  msgid ""
2638
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
@@ -2644,21 +2640,27 @@ msgstr ""
2644
  "موجودی کافی ندارند و یا کاربرانی که وارد سایت نشده اند ( لوگین نکرده اند ) "
2645
  "این روش پرداخت در صفحه ی تسویه حساب ، به آن ها نمایش داده نخواهد شد ."
2646
 
2647
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
2648
  msgid "You must be logged in to pay with %_plural%"
2649
  msgstr "برای پرداخت با %_plural% باید ابتدا در سایت ثبت نام کرده و وارد شوید ."
2650
 
2651
- #: ../addons/gateway/carts/mycred-woocommerce.php:239
2652
  msgid "You can not use this gateway. Please try a different payment option."
2653
  msgstr ""
2654
  "شما نمی توانید از این روش برای پرداخت استفاده کنید . لطفا روش دیگری را برای "
2655
  "پرداخت انتخاب فرمایید ."
2656
 
2657
- #: ../addons/gateway/carts/mycred-woocommerce.php:396
 
 
 
 
 
 
2658
  msgid "Your account has successfully been charged."
2659
  msgstr "حساب شما با موفقیت شارژ شد ."
2660
 
2661
- #: ../addons/gateway/carts/mycred-woocommerce.php:708 ..
2662
  #: addons/gateway/carts/mycred-wpecommerce.php:131
2663
  msgid "Your current balance"
2664
  msgstr "اعتبار فعلی شما"
@@ -2802,7 +2804,7 @@ msgid "Users must be logged in to use this gateway!"
2802
  msgstr "کاربران برای استفاده از درگاه باید وارد سایت شده باشند ( لوگین کرده باشند )"
2803
 
2804
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2805
- #: modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2806
  msgid "Log"
2807
  msgstr "لیست گزارش ( لوگ )"
2808
 
@@ -2898,8 +2900,8 @@ msgid "Reject"
2898
  msgstr "رد کردن"
2899
 
2900
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2901
- #: modules/mycred-module-log.php:522 ../modules/mycred-module-settings.php:636 ..
2902
- #: modules/mycred-module-settings.php:655
2903
  msgid "Delete"
2904
  msgstr "پاک کردن"
2905
 
@@ -3031,8 +3033,8 @@ msgid "Use the included CSS Styling for notifications."
3031
  msgstr "از قالب ها و کدهای CSS موجود ، برای زیباسازی آگاه سازها استفاده کنید ."
3032
 
3033
  #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
3034
- #: addons/ranks/myCRED-addon-ranks.php:1417 ../addons/ranks/myCRED-addon-ranks.
3035
- #: php:1463 ../modules/mycred-module-buddypress.php:428
3036
  msgid "Template"
3037
  msgstr "نمونه ( الگو )"
3038
 
@@ -3067,174 +3069,174 @@ msgid ""
3067
  "to user. Use zero to disable."
3068
  msgstr ""
3069
 
3070
- #: ../addons/ranks/myCRED-addon-ranks.php:211 ../addons/ranks/myCRED-addon-ranks.
3071
- #: php:212 ../addons/ranks/myCRED-addon-ranks.php:440 ../addons/ranks/myCRED-
3072
- #: addon-ranks.php:449 ../addons/ranks/myCRED-addon-ranks.php:455 ..
3073
- #: addons/ranks/myCRED-addon-ranks.php:831 ../addons/ranks/myCRED-addon-ranks.
3074
- #: php:1299 ../addons/ranks/myCRED-addon-ranks.php:1590
3075
  msgid "Ranks"
3076
  msgstr "رنک و مدال ها"
3077
 
3078
- #: ../addons/ranks/myCRED-addon-ranks.php:422
3079
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3080
  msgstr "اخطار ! کل مدال ها پاکسازی خواهند شد ! این عمل غیرقابل بازگشت است !"
3081
 
3082
- #: ../addons/ranks/myCRED-addon-ranks.php:423
3083
  msgid "Are you sure you want to re-assign user ranks?"
3084
  msgstr "مطمئنید که می خواهید دوباره عمل تخصیص مدال های کاربری را انجام دهید ؟"
3085
 
3086
- #: ../addons/ranks/myCRED-addon-ranks.php:438
3087
  #, php-format
3088
  msgid "Ranks for %s"
3089
  msgstr ""
3090
 
3091
- #: ../addons/ranks/myCRED-addon-ranks.php:444 ../addons/ranks/myCRED-addon-ranks.
3092
- #: php:831
3093
  msgid "Rank"
3094
  msgstr "رنک و مدال"
3095
 
3096
- #: ../addons/ranks/myCRED-addon-ranks.php:446
3097
  msgid "Add New Rank"
3098
  msgstr "اضافه کردن مدال جدید"
3099
 
3100
- #: ../addons/ranks/myCRED-addon-ranks.php:447
3101
  msgid "Edit Rank"
3102
  msgstr "ویرایش مدال"
3103
 
3104
- #: ../addons/ranks/myCRED-addon-ranks.php:448
3105
  msgid "New Rank"
3106
  msgstr "مدال جدید"
3107
 
3108
- #: ../addons/ranks/myCRED-addon-ranks.php:450
3109
  msgid "View Rank"
3110
  msgstr "نمایش مدال"
3111
 
3112
- #: ../addons/ranks/myCRED-addon-ranks.php:451
3113
  msgid "Search Ranks"
3114
  msgstr "جستجو در میان مدال ها"
3115
 
3116
- #: ../addons/ranks/myCRED-addon-ranks.php:452
3117
  msgid "No ranks found"
3118
  msgstr "هیچ مدالی یافت نشد"
3119
 
3120
- #: ../addons/ranks/myCRED-addon-ranks.php:453
3121
  msgid "No ranks found in Trash"
3122
  msgstr "هیچ رنکی در زباله دان یافت نشد"
3123
 
3124
- #: ../addons/ranks/myCRED-addon-ranks.php:537
3125
  #, php-format
3126
  msgid "Completed - Total of %d users effected"
3127
  msgstr "اتمام عملیات - کل %d کاربر ترتیب اثر داده شدند"
3128
 
3129
- #: ../addons/ranks/myCRED-addon-ranks.php:975 ../addons/ranks/myCRED-addon-ranks.
3130
- #: php:976 ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-
3131
- #: addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ..
3132
- #: addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.
3133
- #: php:983 ../addons/ranks/myCRED-addon-ranks.php:984
3134
  msgid "Rank Updated."
3135
  msgstr ""
3136
 
3137
- #: ../addons/ranks/myCRED-addon-ranks.php:981
3138
  msgid "Rank Enabled"
3139
  msgstr ""
3140
 
3141
- #: ../addons/ranks/myCRED-addon-ranks.php:982
3142
  msgid "Rank Saved"
3143
  msgstr "مدال ذخیره شد"
3144
 
3145
- #: ../addons/ranks/myCRED-addon-ranks.php:1019
3146
  #, php-format
3147
  msgid "<strong>Rank:</strong> %s"
3148
  msgstr ""
3149
 
3150
- #: ../addons/ranks/myCRED-addon-ranks.php:1035 ../addons/ranks/myCRED-addon-ranks.
3151
- #: php:1116
3152
  msgid "Rank Title"
3153
  msgstr "عنوان مدال"
3154
 
3155
- #: ../addons/ranks/myCRED-addon-ranks.php:1036
3156
  msgid "Logo"
3157
  msgstr "لوگو"
3158
 
3159
- #: ../addons/ranks/myCRED-addon-ranks.php:1037
3160
  msgid "Requirement"
3161
  msgstr "پیش نیاز"
3162
 
3163
- #: ../addons/ranks/myCRED-addon-ranks.php:1062
3164
  msgid "No Logo Set"
3165
  msgstr "لوگویی ست نشده است"
3166
 
3167
- #: ../addons/ranks/myCRED-addon-ranks.php:1077 ../addons/ranks/myCRED-addon-ranks.
3168
- #: php:1082
3169
  msgid "Any Value"
3170
  msgstr "هر مقداری"
3171
 
3172
- #: ../addons/ranks/myCRED-addon-ranks.php:1084
3173
  msgid "Maximum %plural%"
3174
  msgstr "بیشترین مقدار %plural%"
3175
 
3176
- #: ../addons/ranks/myCRED-addon-ranks.php:1129
3177
  msgid "Rank Settings"
3178
  msgstr "تنظیمات مدال"
3179
 
3180
- #: ../addons/ranks/myCRED-addon-ranks.php:1182
3181
  msgid "Minimum %plural% to reach this rank"
3182
  msgstr "کمترین مقدار %plural% برای دستیابی به این مدال"
3183
 
3184
- #: ../addons/ranks/myCRED-addon-ranks.php:1186
3185
  msgid "Maximum %plural% to be included in this rank"
3186
  msgstr "بیشترین مقدار %plural% که این مدال شامل آن می شود"
3187
 
3188
- #: ../addons/ranks/myCRED-addon-ranks.php:1204
3189
  msgid "All Published Ranks"
3190
  msgstr "همه ی مدال های منتشر شده"
3191
 
3192
- #: ../addons/ranks/myCRED-addon-ranks.php:1214 ../addons/ranks/myCRED-addon-ranks.
3193
- #: php:1216
3194
  msgid "Not Set"
3195
  msgstr "تنظیم نشده"
3196
 
3197
- #: ../addons/ranks/myCRED-addon-ranks.php:1222
3198
  msgid "No Ranks found"
3199
  msgstr "مدالی پیدا نشد"
3200
 
3201
- #: ../addons/ranks/myCRED-addon-ranks.php:1304
3202
  msgid "Rank Features"
3203
  msgstr "ویژگی های مدال"
3204
 
3205
- #: ../addons/ranks/myCRED-addon-ranks.php:1308
3206
  msgid "%plural% requirement"
3207
  msgstr "پیش نیاز %plural%"
3208
 
3209
- #: ../addons/ranks/myCRED-addon-ranks.php:1309
3210
  msgid "Featured Image (Logo)"
3211
  msgstr "عکس شاخص ( لوگو )"
3212
 
3213
- #: ../addons/ranks/myCRED-addon-ranks.php:1311
3214
  msgid "Content"
3215
  msgstr "محتوا"
3216
 
3217
- #: ../addons/ranks/myCRED-addon-ranks.php:1313
3218
  msgid "Excerpt"
3219
  msgstr "توضیح کوتاه ( نقل قول )"
3220
 
3221
- #: ../addons/ranks/myCRED-addon-ranks.php:1315
3222
  msgid "Comments"
3223
  msgstr "دیدگاه ها"
3224
 
3225
- #: ../addons/ranks/myCRED-addon-ranks.php:1317
3226
  msgid "Page Attributes"
3227
  msgstr "خصوصیت های صفحه"
3228
 
3229
- #: ../addons/ranks/myCRED-addon-ranks.php:1319
3230
  msgid "Custom Fields"
3231
  msgstr "فیلدهای اضافی"
3232
 
3233
- #: ../addons/ranks/myCRED-addon-ranks.php:1323
3234
  msgid "Public"
3235
  msgstr "عمومی"
3236
 
3237
- #: ../addons/ranks/myCRED-addon-ranks.php:1327
3238
  msgid ""
3239
  "If you want to create a template archive for each rank, you must select to "
3240
  "have ranks public. Defaults to disabled."
@@ -3242,27 +3244,27 @@ msgstr ""
3242
  "اگر می خواهید آرشیو نمونه ای برای هر مدال بسازید ، باید انتخاب کنید که مدال "
3243
  "ها عمومی باشند . در حالت پیش فرض این حالت غیرفعال می باشد ."
3244
 
3245
- #: ../addons/ranks/myCRED-addon-ranks.php:1330
3246
  msgid "Archive URL"
3247
  msgstr "نشانی اینترنتی آرشیو"
3248
 
3249
- #: ../addons/ranks/myCRED-addon-ranks.php:1334
3250
  msgid "Ignored if Ranks are not public"
3251
  msgstr "اگر مدال ها منتشر نشده اند ، آن ها را نادیده بگیر"
3252
 
3253
- #: ../addons/ranks/myCRED-addon-ranks.php:1337
3254
  msgid "Display Order"
3255
  msgstr "ترتیب نمایش"
3256
 
3257
- #: ../addons/ranks/myCRED-addon-ranks.php:1345
3258
  msgid "Ascending - Lowest rank to highest"
3259
  msgstr "صعودی - از پایین ترین مدال ها ، به بالاترین مدال ها"
3260
 
3261
- #: ../addons/ranks/myCRED-addon-ranks.php:1346
3262
  msgid "Descending - Highest rank to lowest"
3263
  msgstr "نزولی - از بالاترین مدال ها ، به پایین ترین مدال ها"
3264
 
3265
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
3266
  msgid ""
3267
  "Select in what order ranks should be displayed in your admin area and/or "
3268
  "front if ranks are \"Public\""
@@ -3270,32 +3272,32 @@ msgstr ""
3270
  "انتخاب کنید که مدال ها به چه ترتیبی در ناحیه ی مدیریتی و/یا کاربری نمایش "
3271
  "داده شوند ، البته اگر مدال ها \"منتشر شده\" ( عمومی ) باشند ."
3272
 
3273
- #: ../addons/ranks/myCRED-addon-ranks.php:1363
3274
  msgid "Rank Basis"
3275
  msgstr "روش مدال دهی"
3276
 
3277
- #: ../addons/ranks/myCRED-addon-ranks.php:1366
3278
  msgid "Users are ranked according to their current balance."
3279
  msgstr "کاربران بر اساس میزان امتیاز فعلیشان مدال می گیرند ."
3280
 
3281
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
3282
  msgid ""
3283
  "Users are ranked according to the total amount of %_plural% they have "
3284
  "accumulated."
3285
  msgstr "کاربران بر اساس کل %_plural% ای که جمع کرده اند مدال می گیرند ."
3286
 
3287
- #: ../addons/ranks/myCRED-addon-ranks.php:1373 ../addons/ranks/myCRED-addon-ranks.
3288
- #: php:1378
3289
  msgid "Calculate Totals"
3290
  msgstr "محاسبه ی کل امتیازها"
3291
 
3292
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3293
  msgid ""
3294
  "Use this button to calculate or recalculate your users totals. If not used, "
3295
  "the users current balance will be used as a starting point."
3296
  msgstr ""
3297
 
3298
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3299
  msgid ""
3300
  "Once a users total has been calculated, they will be assigned to their "
3301
  "appropriate roles. For this reason, it is highly recommended that you first "
@@ -3305,7 +3307,7 @@ msgstr ""
3305
  "امتیازشان منصوب می شوند . به همین منظور ، شدیدا پیشنهاد می گردد که ابتدا "
3306
  "مدال های خودتان را پیاده سازی کنید ."
3307
 
3308
- #: ../addons/ranks/myCRED-addon-ranks.php:1377
3309
  msgid ""
3310
  "Depending on your log size and number of users this process may take a while."
3311
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
@@ -3315,61 +3317,61 @@ msgstr ""
3315
  "طول بکشد . لطفا تا پایان عملیات ، صفحه را رفرش نکنید ، آن را نبسته و یا بر "
3316
  "روی \"به روزرسانی تنظیمات\" کلیک نفرمایید ."
3317
 
3318
- #: ../addons/ranks/myCRED-addon-ranks.php:1394 ../addons/ranks/myCRED-addon-ranks.
3319
- #: php:1440 ../modules/mycred-module-buddypress.php:391
3320
  msgid "Do not show."
3321
  msgstr "عدم نمایش"
3322
 
3323
- #: ../addons/ranks/myCRED-addon-ranks.php:1395
3324
  msgid "Include in Profile Header."
3325
  msgstr "شامل ( نمایش در ) هِدر ( سربرگ ) پروفایل کاربری"
3326
 
3327
- #: ../addons/ranks/myCRED-addon-ranks.php:1397
3328
  msgid "Include under the \"Profile\" tab and Profile Header."
3329
  msgstr "نمایش در زیر تب \"Profile\" و همچنین سربرگ پروفایل کاربری ."
3330
 
3331
- #: ../addons/ranks/myCRED-addon-ranks.php:1402
3332
  msgid "Rank in BuddyPress"
3333
  msgstr "مدال در بادی پرس"
3334
 
3335
- #: ../addons/ranks/myCRED-addon-ranks.php:1419 ../addons/ranks/myCRED-addon-ranks.
3336
- #: php:1465
3337
  #, php-format
3338
  msgid ""
3339
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3340
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3341
  msgstr ""
3342
 
3343
- #: ../addons/ranks/myCRED-addon-ranks.php:1441
3344
  msgid "Include in Topic Replies"
3345
  msgstr ""
3346
 
3347
- #: ../addons/ranks/myCRED-addon-ranks.php:1443
3348
  msgid "Include in Topic Replies and Profile"
3349
  msgstr ""
3350
 
3351
- #: ../addons/ranks/myCRED-addon-ranks.php:1448
3352
  msgid "Rank in bbPress"
3353
  msgstr ""
3354
 
3355
- #: ../addons/ranks/myCRED-addon-ranks.php:1528
3356
  msgid "Script Communication Error"
3357
  msgstr "خطا در ارتباط با اسکریپت"
3358
 
3359
- #: ../addons/ranks/myCRED-addon-ranks.php:1593 ../modules/mycred-module-settings.
3360
- #: php:596
3361
  msgid "User Meta Key"
3362
  msgstr "کلید اطلاعات کاربر ( Meta key ("
3363
 
3364
- #: ../addons/ranks/myCRED-addon-ranks.php:1597
3365
  msgid "No. of ranks"
3366
  msgstr "تعداد مدال ها"
3367
 
3368
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3369
  msgid "Remove All Ranks"
3370
  msgstr "پاکسازی همه ی مدال ها"
3371
 
3372
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3373
  msgid "Assign Ranks to Users"
3374
  msgstr "تخصیص دادن مدال به کاربران"
3375
 
@@ -3572,8 +3574,8 @@ msgid "View Log"
3572
  msgstr ""
3573
 
3574
  #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3575
- #: modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ..
3576
- #: modules/mycred-module-hooks.php:27
3577
  msgid "Hooks"
3578
  msgstr "پنل تنظیمات امتیازها"
3579
 
@@ -3611,17 +3613,17 @@ msgid "Total Spent: %s"
3611
  msgstr ""
3612
 
3613
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3614
- #: includes/mycred-log.php:837 ../modules/mycred-module-buddypress.php:222
3615
  msgid "Today"
3616
  msgstr "امروز"
3617
 
3618
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3619
- #: includes/mycred-log.php:839 ../modules/mycred-module-buddypress.php:224
3620
  msgid "This Week"
3621
  msgstr "این هفته"
3622
 
3623
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3624
- #: includes/mycred-log.php:840 ../modules/mycred-module-buddypress.php:225
3625
  msgid "This Month"
3626
  msgstr "این ماه"
3627
 
@@ -3690,7 +3692,7 @@ msgstr ""
3690
  "امتیاز بیشتر را ندارید ."
3691
 
3692
  #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3693
- #: php:2446
3694
  msgid "Transfer"
3695
  msgstr "جابجایی"
3696
 
@@ -3727,7 +3729,7 @@ msgstr ""
3727
  "جابجایی امتیاز امکان پذیر نخواهد بود !"
3728
 
3729
  #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3730
- #: php:2574
3731
  msgid "Insufficient Funds. Please try a lower amount."
3732
  msgstr ""
3733
 
@@ -3881,11 +3883,11 @@ msgstr "ایمیل"
3881
  msgid "recipients %s"
3882
  msgstr "گیرندگان %s"
3883
 
3884
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:219
3885
  msgid "To:"
3886
  msgstr "به :"
3887
 
3888
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3889
  msgid "Amount:"
3890
  msgstr "مقدار امتیاز :"
3891
 
@@ -4081,394 +4083,394 @@ msgstr ""
4081
  msgid "Available Template Tags:"
4082
  msgstr ""
4083
 
4084
- #: ../includes/mycred-functions.php:1686
4085
  msgid "Entire Log"
4086
  msgstr ""
4087
 
4088
- #: ../includes/mycred-functions.php:1691 ../includes/mycred-functions.php:1692
4089
  msgid "Displayed Rows"
4090
  msgstr ""
4091
 
4092
- #: ../includes/mycred-functions.php:1699
4093
  msgid "Search Results"
4094
  msgstr ""
4095
 
4096
- #: ../includes/mycred-functions.php:1700
4097
  msgid "My Entire Log"
4098
  msgstr ""
4099
 
4100
- #: ../includes/mycred-functions.php:1867
4101
  msgid "ref empty"
4102
  msgstr "ارجاع ( استرداد ) خالی می باشد"
4103
 
4104
- #: ../includes/mycred-functions.php:1875
4105
  msgid "incorrect user id format"
4106
  msgstr "فرمت نامعتبر شناسه ی کاربر"
4107
 
4108
- #: ../includes/mycred-functions.php:1888
4109
  msgid "incorrect unix timestamp (from):"
4110
  msgstr ""
4111
 
4112
- #: ../includes/mycred-functions.php:1897
4113
  msgid "incorrect unix timestamp (to):"
4114
  msgstr ""
4115
 
4116
- #: ../includes/mycred-functions.php:2306
4117
  msgid "Website Registration"
4118
  msgstr ""
4119
 
4120
- #: ../includes/mycred-functions.php:2307
4121
  msgid "Website Visit"
4122
  msgstr ""
4123
 
4124
- #: ../includes/mycred-functions.php:2308
4125
  msgid "Viewing Content (Member)"
4126
  msgstr ""
4127
 
4128
- #: ../includes/mycred-functions.php:2309
4129
  msgid "Viewing Content (Author)"
4130
  msgstr ""
4131
 
4132
- #: ../includes/mycred-functions.php:2310
4133
  msgid "Logging in"
4134
  msgstr ""
4135
 
4136
- #: ../includes/mycred-functions.php:2311
4137
  msgid "Publishing Content"
4138
  msgstr ""
4139
 
4140
- #: ../includes/mycred-functions.php:2312 ../modules/mycred-module-hooks.php:1512
4141
  msgid "Approved Comment"
4142
  msgstr "نظرات تایید شده"
4143
 
4144
- #: ../includes/mycred-functions.php:2313
4145
  msgid "Unapproved Comment"
4146
  msgstr ""
4147
 
4148
- #: ../includes/mycred-functions.php:2314
4149
  msgid "SPAM Comment"
4150
  msgstr ""
4151
 
4152
- #: ../includes/mycred-functions.php:2315
4153
  msgid "Deleted Comment"
4154
  msgstr ""
4155
 
4156
- #: ../includes/mycred-functions.php:2316
4157
  msgid "Link Click"
4158
  msgstr ""
4159
 
4160
- #: ../includes/mycred-functions.php:2317
4161
  msgid "Watching Video"
4162
  msgstr ""
4163
 
4164
- #: ../includes/mycred-functions.php:2318
4165
  msgid "Visitor Referral"
4166
  msgstr ""
4167
 
4168
- #: ../includes/mycred-functions.php:2319
4169
  msgid "Signup Referral"
4170
  msgstr ""
4171
 
4172
- #: ../includes/mycred-functions.php:2323
4173
  msgid "New Profile Update"
4174
  msgstr ""
4175
 
4176
- #: ../includes/mycred-functions.php:2324
4177
  msgid "Profile Update Removal"
4178
  msgstr ""
4179
 
4180
- #: ../includes/mycred-functions.php:2325
4181
  msgid "Avatar Upload"
4182
  msgstr ""
4183
 
4184
- #: ../includes/mycred-functions.php:2326
4185
  msgid "New Friendship"
4186
  msgstr ""
4187
 
4188
- #: ../includes/mycred-functions.php:2327
4189
  msgid "Ended Friendship"
4190
  msgstr ""
4191
 
4192
- #: ../includes/mycred-functions.php:2328
4193
  msgid "New Profile Comment"
4194
  msgstr ""
4195
 
4196
- #: ../includes/mycred-functions.php:2329
4197
  msgid "Profile Comment Deletion"
4198
  msgstr ""
4199
 
4200
- #: ../includes/mycred-functions.php:2330
4201
  msgid "New Message"
4202
  msgstr ""
4203
 
4204
- #: ../includes/mycred-functions.php:2331
4205
  msgid "Sending Gift"
4206
  msgstr ""
4207
 
4208
- #: ../includes/mycred-functions.php:2332
4209
  msgid "New Group"
4210
  msgstr ""
4211
 
4212
- #: ../includes/mycred-functions.php:2333
4213
  msgid "Deleted Group"
4214
  msgstr ""
4215
 
4216
- #: ../includes/mycred-functions.php:2334
4217
  msgid "New Group Forum Topic"
4218
  msgstr ""
4219
 
4220
- #: ../includes/mycred-functions.php:2335
4221
  msgid "Edit Group Forum Topic"
4222
  msgstr ""
4223
 
4224
- #: ../includes/mycred-functions.php:2336
4225
  msgid "New Group Forum Post"
4226
  msgstr ""
4227
 
4228
- #: ../includes/mycred-functions.php:2337
4229
  msgid "Edit Group Forum Post"
4230
  msgstr ""
4231
 
4232
- #: ../includes/mycred-functions.php:2338
4233
  msgid "Joining Group"
4234
  msgstr ""
4235
 
4236
- #: ../includes/mycred-functions.php:2339
4237
  msgid "Leaving Group"
4238
  msgstr ""
4239
 
4240
- #: ../includes/mycred-functions.php:2340
4241
  msgid "New Group Avatar"
4242
  msgstr ""
4243
 
4244
- #: ../includes/mycred-functions.php:2341
4245
  msgid "New Group Comment"
4246
  msgstr ""
4247
 
4248
- #: ../includes/mycred-functions.php:2345 ../plugins/mycred-hook-buddypress-media.
4249
  #: php:205
4250
  msgid "Photo Upload"
4251
  msgstr ""
4252
 
4253
- #: ../includes/mycred-functions.php:2346 ../plugins/mycred-hook-buddypress-media.
4254
  #: php:219
4255
  msgid "Video Upload"
4256
  msgstr ""
4257
 
4258
- #: ../includes/mycred-functions.php:2347 ../plugins/mycred-hook-buddypress-media.
4259
  #: php:233
4260
  msgid "Music Upload"
4261
  msgstr ""
4262
 
4263
- #: ../includes/mycred-functions.php:2351
4264
  msgid "New Link"
4265
  msgstr ""
4266
 
4267
- #: ../includes/mycred-functions.php:2352
4268
  msgid "Link Voting"
4269
  msgstr ""
4270
 
4271
- #: ../includes/mycred-functions.php:2353
4272
  msgid "Link Update"
4273
  msgstr ""
4274
 
4275
- #: ../includes/mycred-functions.php:2357
4276
  msgid "New Forum (bbPress)"
4277
  msgstr ""
4278
 
4279
- #: ../includes/mycred-functions.php:2358
4280
  msgid "New Forum Topic (bbPress)"
4281
  msgstr ""
4282
 
4283
- #: ../includes/mycred-functions.php:2359
4284
  msgid "Favorited Topic (bbPress)"
4285
  msgstr ""
4286
 
4287
- #: ../includes/mycred-functions.php:2360
4288
  msgid "New Topic Reply (bbPress)"
4289
  msgstr ""
4290
 
4291
- #: ../includes/mycred-functions.php:2364
4292
  msgid "Form Submission (Contact Form 7)"
4293
  msgstr ""
4294
 
4295
- #: ../includes/mycred-functions.php:2367
4296
  msgid "Form Submission (Gravity Form)"
4297
  msgstr ""
4298
 
4299
- #: ../includes/mycred-functions.php:2370
4300
  msgid "New Forum Topic (SimplePress)"
4301
  msgstr ""
4302
 
4303
- #: ../includes/mycred-functions.php:2371
4304
  msgid "New Forum Post (SimplePress)"
4305
  msgstr ""
4306
 
4307
- #: ../includes/mycred-functions.php:2380
4308
  msgid "Affiliate Signup (AffiliateWP)"
4309
  msgstr ""
4310
 
4311
- #: ../includes/mycred-functions.php:2381
4312
  msgid "Referred Visit (AffiliateWP)"
4313
  msgstr ""
4314
 
4315
- #: ../includes/mycred-functions.php:2382
4316
  msgid "Affiliate Referral (AffiliateWP)"
4317
  msgstr ""
4318
 
4319
- #: ../includes/mycred-functions.php:2383
4320
  msgid "Referral Refund (AffiliateWP)"
4321
  msgstr ""
4322
 
4323
- #: ../includes/mycred-functions.php:2387 ../plugins/mycred-hook-wp-postratings.
4324
  #: php:150
4325
  msgid "Adding a Rating"
4326
  msgstr ""
4327
 
4328
- #: ../includes/mycred-functions.php:2388 ../plugins/mycred-hook-wp-postratings.
4329
  #: php:169
4330
  msgid "Receiving a Rating"
4331
  msgstr ""
4332
 
4333
- #: ../includes/mycred-functions.php:2392
4334
  msgid "Poll Voting"
4335
  msgstr ""
4336
 
4337
- #: ../includes/mycred-functions.php:2395
4338
  msgid "Sending an Invite"
4339
  msgstr ""
4340
 
4341
- #: ../includes/mycred-functions.php:2396
4342
  msgid "Accepting an Invite"
4343
  msgstr ""
4344
 
4345
- #: ../includes/mycred-functions.php:2402
4346
  msgid "Banking Payout"
4347
  msgstr ""
4348
 
4349
- #: ../includes/mycred-functions.php:2405
4350
  msgid "buyCRED Purchase (PayPal Standard)"
4351
  msgstr ""
4352
 
4353
- #: ../includes/mycred-functions.php:2406
4354
  msgid "buyCRED Purchase (Skrill)"
4355
  msgstr ""
4356
 
4357
- #: ../includes/mycred-functions.php:2407
4358
  msgid "buyCRED Purchase (Zombaio)"
4359
  msgstr ""
4360
 
4361
- #: ../includes/mycred-functions.php:2408
4362
  msgid "buyCRED Purchase (NETBilling)"
4363
  msgstr ""
4364
 
4365
- #: ../includes/mycred-functions.php:2409
4366
  msgid "buyCRED Purchase (BitPay)"
4367
  msgstr ""
4368
 
4369
- #: ../includes/mycred-functions.php:2414
4370
  msgid "Coupon Purchase"
4371
  msgstr ""
4372
 
4373
- #: ../includes/mycred-functions.php:2418
4374
  msgid "Store Purchase (WooCommerce)"
4375
  msgstr ""
4376
 
4377
- #: ../includes/mycred-functions.php:2419
4378
  msgid "Store Reward (WooCommerce)"
4379
  msgstr ""
4380
 
4381
- #: ../includes/mycred-functions.php:2420
4382
  msgid "Product Review (WooCommerce)"
4383
  msgstr ""
4384
 
4385
- #: ../includes/mycred-functions.php:2423
4386
  msgid "Store Purchase (MarketPress)"
4387
  msgstr ""
4388
 
4389
- #: ../includes/mycred-functions.php:2424
4390
  msgid "Store Reward (MarketPress)"
4391
  msgstr ""
4392
 
4393
- #: ../includes/mycred-functions.php:2427
4394
  msgid "Store Purchase (WP E-Commerce)"
4395
  msgstr ""
4396
 
4397
- #: ../includes/mycred-functions.php:2433
4398
  msgid "Event Payment (Event Espresso)"
4399
  msgstr ""
4400
 
4401
- #: ../includes/mycred-functions.php:2434
4402
  msgid "Event Sale (Event Espresso)"
4403
  msgstr ""
4404
 
4405
- #: ../includes/mycred-functions.php:2438
4406
  msgid "Event Payment (Events Manager)"
4407
  msgstr ""
4408
 
4409
- #: ../includes/mycred-functions.php:2439
4410
  msgid "Event Sale (Events Manager)"
4411
  msgstr ""
4412
 
4413
- #: ../includes/mycred-functions.php:2443
4414
  msgid "Content Purchase / Sale"
4415
  msgstr ""
4416
 
4417
- #: ../includes/mycred-functions.php:2450
4418
  msgid "Manual Adjustment by Admin"
4419
  msgstr ""
4420
 
4421
- #: ../includes/mycred-functions.php:2520 ../includes/mycred-shortcodes.php:924
4422
  msgid "Point types not found."
4423
  msgstr ""
4424
 
4425
- #: ../includes/mycred-functions.php:2532 ../includes/mycred-functions.php:2552 ..
4426
- #: includes/mycred-shortcodes.php:930 ../includes/mycred-shortcodes.php:938
4427
  #, php-format
4428
  msgid "You are excluded from using %s."
4429
  msgstr ""
4430
 
4431
- #: ../includes/mycred-functions.php:2542 ../includes/mycred-shortcodes.php:934
4432
  msgid "Your balance is too low to use this feature."
4433
  msgstr ""
4434
 
4435
- #: ../includes/mycred-functions.php:2565
4436
  #, php-format
4437
  msgid "You must exchange at least %s!"
4438
  msgstr ""
4439
 
4440
- #: ../includes/mycred-functions.php:2587
4441
  #, php-format
4442
  msgid "Exchange from %s"
4443
  msgstr ""
4444
 
4445
- #: ../includes/mycred-functions.php:2599
4446
  #, php-format
4447
  msgid "Exchange to %s"
4448
  msgstr ""
4449
 
4450
- #: ../includes/mycred-functions.php:2607
4451
  #, php-format
4452
  msgid "You have successfully exchanged %s into %s."
4453
  msgstr ""
4454
 
4455
- #: ../includes/mycred-functions.php:2638
4456
  msgid "per day"
4457
  msgstr ""
4458
 
4459
- #: ../includes/mycred-functions.php:2640
4460
  msgid "per week"
4461
  msgstr ""
4462
 
4463
- #: ../includes/mycred-functions.php:2642
4464
  msgid "per month"
4465
  msgstr ""
4466
 
4467
- #: ../includes/mycred-functions.php:2644
4468
  msgid "in total"
4469
  msgstr ""
4470
 
4471
- #: ../includes/mycred-functions.php:2646 ../includes/mycred-functions.php:2650
4472
  #, php-format
4473
  msgid "Maximum once"
4474
  msgid_plural "Maximum %d times"
@@ -4536,28 +4538,28 @@ msgstr ""
4536
  "پوزش می خواهیم ، اما سایت وردپرسی شما حداقل امکانات لازم برای اجرای افزونه "
4537
  "\"اعتبارمن\" را ندارد . خطاهای زیر پیش آمده :"
4538
 
4539
- #: ../includes/mycred-install.php:256
4540
  msgid "myCRED needs your attention."
4541
  msgstr "افزونه ی \"اعتبار من\" نیازمند چند دقیقه از وقت شماست ."
4542
 
4543
- #: ../includes/mycred-install.php:256
4544
  msgid "Run Setup"
4545
  msgstr "اجرای نصب"
4546
 
4547
- #: ../includes/mycred-install.php:268 ../includes/mycred-install.php:269
4548
  msgid "myCRED Setup"
4549
  msgstr "راه اندازی \"اعتبار من\""
4550
 
4551
- #: ../includes/mycred-install.php:398
4552
  #, php-format
4553
  msgid "%s Setup"
4554
  msgstr ""
4555
 
4556
- #: ../includes/mycred-install.php:400
4557
  msgid "Step"
4558
  msgstr "گام"
4559
 
4560
- #: ../includes/mycred-install.php:424
4561
  msgid ""
4562
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4563
  "points format, layout and security settings."
@@ -4565,75 +4567,75 @@ msgstr ""
4565
  "برای نصب \"اعتبار من\" بر روی \"آغاز نصب\" کلیک فرمایید . در ادامه قادر خواهید "
4566
  "بود تا طرح امتیازها ، نمایه و تنظیمات امنیتی خود را اعمال فرمایید ."
4567
 
4568
- #: ../includes/mycred-install.php:425
4569
  msgid "Begin Setup"
4570
  msgstr "آغاز نصب"
4571
 
4572
- #: ../includes/mycred-install.php:480
4573
  msgid "Select the format you want to use for your points."
4574
  msgstr "طرح ( فرمت ) مورد نظرتان برای امتیازها را انتخاب فرمایید ."
4575
 
4576
- #: ../includes/mycred-install.php:481
4577
  msgid "Format"
4578
  msgstr "طرح ( فرمت )"
4579
 
4580
- #: ../includes/mycred-install.php:484
4581
  msgid "Separators"
4582
  msgstr "جداکننده ها"
4583
 
4584
- #: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:501
4585
  msgid "Decimals"
4586
  msgstr "اعداد اعشاری"
4587
 
4588
- #: ../includes/mycred-install.php:496
4589
  msgid "Use zero for no decimals or maximum 20."
4590
  msgstr ""
4591
 
4592
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:505
4593
  msgid "Presentation"
4594
  msgstr "چگونگی نمایش امتیازها"
4595
 
4596
- #: ../includes/mycred-install.php:502 ../modules/mycred-module-settings.php:488
4597
  msgid "Name (Singular)"
4598
  msgstr "نام امتیاز مورد نظر به صورت مفرد ( مثلا امتیاز )"
4599
 
4600
- #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:493
4601
  msgid "Name (Plural)"
4602
  msgstr "نام امتیاز مورد نظر به صورت جمع ( مثلا امتیازها )"
4603
 
4604
- #: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:508
4605
  msgid "Prefix"
4606
  msgstr "پیشوند"
4607
 
4608
- #: ../includes/mycred-install.php:520 ../modules/mycred-module-settings.php:516
4609
  msgid "Suffix"
4610
  msgstr "پسوند"
4611
 
4612
- #: ../includes/mycred-install.php:524
4613
  msgid "Cancel Setup"
4614
  msgstr "لغو عملیات راه اندازی"
4615
 
4616
- #: ../includes/mycred-install.php:524 ../includes/mycred-install.php:594
4617
  msgid "Next"
4618
  msgstr "گام بعدی"
4619
 
4620
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:524
4621
  msgid "Security"
4622
  msgstr "امنیت"
4623
 
4624
- #: ../includes/mycred-install.php:559
4625
  msgid "Edit Settings Capability"
4626
  msgstr "ویرایش تنظیمات ظرفیتی"
4627
 
4628
- #: ../includes/mycred-install.php:563
4629
  msgid "Edit Users %plural% Capability"
4630
  msgstr "ویرایش ظرفیت %plural% کاربر"
4631
 
4632
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:537
4633
  msgid "Maximum %plural% payouts"
4634
  msgstr "بیشترین پرداخت %plural%"
4635
 
4636
- #: ../includes/mycred-install.php:569 ../modules/mycred-module-settings.php:539
4637
  msgid ""
4638
  "As an added security, you can set the maximum amount a user can gain or "
4639
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -4646,145 +4648,145 @@ msgstr ""
4646
  "امتیازی که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم "
4647
  "تعیین بکنید . برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
4648
 
4649
- #: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:542
4650
  msgid "Excludes"
4651
  msgstr "کاربران استثنا"
4652
 
4653
- #: ../includes/mycred-install.php:576 ../modules/mycred-module-settings.php:546
4654
  msgid "Exclude those who can \"Edit Settings\"."
4655
  msgstr ""
4656
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش تنظیمات\" را دارند . ( اگر می "
4657
  "خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی "
4658
  "آن ها را در این کادر وارد فرمایید . )"
4659
 
4660
- #: ../includes/mycred-install.php:580 ../modules/mycred-module-settings.php:550
4661
  msgid "Exclude those who can \"Edit Users %plural%\"."
4662
  msgstr ""
4663
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش %plural% کاربران\" را دارند . ( "
4664
  "اگر می خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید "
4665
  "، اسامی آن ها را در این کادر وارد فرمایید . )"
4666
 
4667
- #: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:554
4668
  msgid "Exclude the following user IDs:"
4669
  msgstr "محروم کردن کاربران با استفاده از شناسه ی آن ها :"
4670
 
4671
- #: ../includes/mycred-install.php:587 ../modules/mycred-module-settings.php:559
4672
  msgid "User Deletions"
4673
  msgstr ""
4674
 
4675
- #: ../includes/mycred-install.php:591 ../modules/mycred-module-settings.php:562
4676
  msgid "Delete log entries when user is deleted."
4677
  msgstr ""
4678
 
4679
- #: ../includes/mycred-install.php:612
4680
  msgid "Ready"
4681
  msgstr "آماده"
4682
 
4683
- #: ../includes/mycred-install.php:613
4684
  msgid "Almost done! Click the button below to finish this setup."
4685
  msgstr ""
4686
  "تقریبا کاری باقی باقی نمانده ! بر روی کلید زیر کلیک کرده تا مراحل نصب را به "
4687
  "پایان ببرید ."
4688
 
4689
- #: ../includes/mycred-install.php:614
4690
  msgid "Install & Run"
4691
  msgstr "نصب و راه اندازی"
4692
 
4693
- #: ../includes/mycred-log.php:398
4694
  #, php-format
4695
  msgid "Showing %d %s"
4696
  msgstr "نمایش %d %s"
4697
 
4698
- #: ../includes/mycred-log.php:398
4699
  msgid "entry"
4700
  msgstr "اطلاعات ورودی"
4701
 
4702
- #: ../includes/mycred-log.php:412
4703
  msgid "Go to the first page"
4704
  msgstr ""
4705
 
4706
- #: ../includes/mycred-log.php:419
4707
  msgid "Go to the previous page"
4708
  msgstr ""
4709
 
4710
- #: ../includes/mycred-log.php:428
4711
  msgid "Current page"
4712
  msgstr ""
4713
 
4714
- #: ../includes/mycred-log.php:434
4715
  #, php-format
4716
  msgctxt "mycred"
4717
  msgid "%1$s of %2$s"
4718
  msgstr ""
4719
 
4720
- #: ../includes/mycred-log.php:438
4721
  msgid "Go to the next page"
4722
  msgstr ""
4723
 
4724
- #: ../includes/mycred-log.php:445
4725
  msgid "Go to the last page"
4726
  msgstr ""
4727
 
4728
- #: ../includes/mycred-log.php:512
4729
  msgid "Show all references"
4730
  msgstr "نمایش تمام منابع"
4731
 
4732
- #: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:705
4733
- msgid "User ID"
4734
- msgstr "شناسه کاربر"
4735
 
4736
- #: ../includes/mycred-log.php:531
4737
  msgid "Show in order"
4738
  msgstr "نمایش بر اساس"
4739
 
4740
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:426
4741
  msgid "Ascending"
4742
  msgstr "صعودی"
4743
 
4744
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:427
4745
  msgid "Descending"
4746
  msgstr "نزولی"
4747
 
4748
- #: ../includes/mycred-log.php:550
4749
  msgid "Filter"
4750
  msgstr "فیــلتر"
4751
 
4752
- #: ../includes/mycred-log.php:603
4753
  msgid ""
4754
  "Log entries are exported to a CSV file and depending on the number of "
4755
  "entries selected, the process may take a few seconds."
4756
  msgstr ""
4757
 
4758
- #: ../includes/mycred-log.php:607
4759
  msgid "No export options available."
4760
  msgstr ""
4761
 
4762
- #: ../includes/mycred-log.php:636
4763
  msgid "Entry"
4764
  msgstr "ورودی"
4765
 
4766
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:484
4767
  msgid "User Missing"
4768
  msgstr "یافت نشدن کاربر"
4769
 
4770
- #: ../includes/mycred-log.php:807
4771
  msgid "No log entries found"
4772
  msgstr "گزارشی یافت نشد !"
4773
 
4774
- #: ../includes/mycred-log.php:822 ../includes/mycred-log.php:824
4775
  msgid "Search Log"
4776
  msgstr "جستجو در میان لیست گزارش"
4777
 
4778
- #: ../includes/mycred-log.php:823
4779
  msgid "search log entries"
4780
  msgstr "جستجو در بین داده ها"
4781
 
4782
- #: ../includes/mycred-log.php:836 ../modules/mycred-module-buddypress.php:221 ..
4783
- #: modules/mycred-module-buddypress.php:234
4784
  msgid "All"
4785
  msgstr "همگی"
4786
 
4787
- #: ../includes/mycred-log.php:838 ../modules/mycred-module-buddypress.php:223
4788
  msgid "Yesterday"
4789
  msgstr "دیروز"
4790
 
@@ -4958,56 +4960,56 @@ msgstr "ارسال شده"
4958
  msgid "Error - Try Again"
4959
  msgstr "خطا - لطفا مجددا تلاش کنید"
4960
 
4961
- #: ../includes/mycred-shortcodes.php:763
4962
  msgid "A video ID is required for this shortcode"
4963
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
4964
 
4965
- #: ../includes/mycred-shortcodes.php:956
4966
  #, php-format
4967
  msgid "Convert <span>%s</span> to <span>%s</span>"
4968
  msgstr ""
4969
 
4970
- #: ../includes/mycred-shortcodes.php:965
4971
  #, php-format
4972
  msgid "Your current %s balance"
4973
  msgstr ""
4974
 
4975
- #: ../includes/mycred-shortcodes.php:973
4976
  #, php-format
4977
  msgid "Minimum %s"
4978
  msgstr ""
4979
 
4980
- #: ../includes/mycred-shortcodes.php:977
4981
  #, php-format
4982
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4983
  msgstr ""
4984
 
4985
- #: ../includes/mycred-shortcodes.php:983
4986
  msgid "Exchange"
4987
  msgstr ""
4988
 
4989
- #: ../includes/mycred-shortcodes.php:1048
4990
  msgid "No instances found for this point type"
4991
  msgstr ""
4992
 
4993
- #: ../includes/mycred-shortcodes.php:1052
4994
  msgid "Invalid point type"
4995
  msgstr ""
4996
 
4997
- #: ../includes/mycred-shortcodes.php:1111
4998
  msgid "Instance"
4999
  msgstr ""
5000
 
5001
- #: ../includes/mycred-shortcodes.php:1113 ../modules/mycred-module-hooks.php:600 .
5002
- #: ./modules/mycred-module-hooks.php:607 ../modules/mycred-module-hooks.php:631 ..
5003
- #: modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:706 ..
5004
- #: modules/mycred-module-hooks.php:713 ../modules/mycred-module-hooks.php:898 ..
5005
- #: modules/mycred-module-hooks.php:1029 ../modules/mycred-module-hooks.php:1046 .
5006
- #: ./modules/mycred-module-hooks.php:1093 ../modules/mycred-module-hooks.php:2793
5007
- #: ../modules/mycred-module-hooks.php:2822 ../plugins/mycred-hook-affiliatewp.php:
5008
- #: 237 ../plugins/mycred-hook-bbPress.php:413 ../plugins/mycred-hook-bbPress.php:
5009
- #: 443 ../plugins/mycred-hook-bbPress.php:478 ../plugins/mycred-hook-bbPress.php:
5010
- #: 495 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
5011
  #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
5012
  #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
5013
  #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
@@ -5028,7 +5030,7 @@ msgstr ""
5028
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5029
  #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5030
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5031
- #: php:314 ../plugins/mycred-hook-woocommerce.php:300 ../plugins/mycred-hook-wp-
5032
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5033
  #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
5034
  #: postratings.php:175
@@ -5288,19 +5290,19 @@ msgstr ""
5288
  msgid "Import log entries from a CSV file."
5289
  msgstr ""
5290
 
5291
- #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
5292
  msgid "Add-ons"
5293
  msgstr "افزونه های جانبی"
5294
 
5295
- #: ../modules/mycred-module-addons.php:151
5296
  msgid "Give your users badges based on their interaction with your website."
5297
  msgstr ""
5298
 
5299
- #: ../modules/mycred-module-addons.php:162
5300
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
5301
  msgstr ""
5302
 
5303
- #: ../modules/mycred-module-addons.php:173
5304
  msgid ""
5305
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5306
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
@@ -5312,34 +5314,34 @@ msgstr ""
5312
  "فراهم کنید تا برای سایر اعضای سایت هم امتیاز بخرند . ( آقای ایکس برای آقای "
5313
  "ایگرگ امتیاز بخرد ! )"
5314
 
5315
- #: ../modules/mycred-module-addons.php:184
5316
  msgid ""
5317
  "The coupons add-on allows you to create coupons that users can use to add "
5318
  "points to their accounts."
5319
  msgstr ""
5320
 
5321
- #: ../modules/mycred-module-addons.php:195
5322
  msgid "Create email notices for any type of myCRED instance."
5323
  msgstr "برای هر یک از بخش های \"اعتبار من\" ، اطلاعیه ایمیلی بسازید ."
5324
 
5325
- #: ../modules/mycred-module-addons.php:206
5326
  msgid ""
5327
  "Let your users pay using their <strong>my</strong>CRED points balance. "
5328
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5329
  "Bookings: Event Espresso and Events Manager (free & pro)."
5330
  msgstr ""
5331
 
5332
- #: ../modules/mycred-module-addons.php:217
5333
  msgid "Create pop-up notifications for when users gain or loose points."
5334
  msgstr ""
5335
 
5336
- #: ../modules/mycred-module-addons.php:229
5337
  msgid ""
5338
  "Create ranks for users reaching a certain number of %_plural% with the "
5339
  "option to add logos for each rank."
5340
  msgstr ""
5341
 
5342
- #: ../modules/mycred-module-addons.php:240
5343
  msgid ""
5344
  "This add-on allows you to sell posts, pages or any public post types on your "
5345
  "website. You can either sell the entire content or using our shortcode, sell "
@@ -5351,13 +5353,13 @@ msgstr ""
5351
  "محتوای مورد نظرتان را از دسترس عموم خارج کرده و آن ها را تحت عناوین مختلف ، "
5352
  "مثل \"تیزر\" و یا \"پیش نمایش\" به فروش رسانید ."
5353
 
5354
- #: ../modules/mycred-module-addons.php:251
5355
  msgid ""
5356
  "Gives you access to your myCRED Staticstics based on your users gains and "
5357
  "loses."
5358
  msgstr ""
5359
 
5360
- #: ../modules/mycred-module-addons.php:262
5361
  msgid ""
5362
  "Allow your users to send or \"donate\" points to other members by either using "
5363
  "the mycred_transfer shortcode or the myCRED Transfer widget."
@@ -5366,177 +5368,185 @@ msgstr ""
5366
  "\"اهدا\" کنند . از دو طریق می توان این کار را انجام داد ، استفاده از کد "
5367
  "mycred_transfer و یا ابزارک جابجایی امتیاز \"اعتبار من\" ."
5368
 
5369
- #: ../modules/mycred-module-addons.php:297
5370
  #, php-format
5371
  msgid "%s Add-ons"
5372
  msgstr "افزونه های جانبی %s"
5373
 
5374
- #: ../modules/mycred-module-addons.php:302
5375
  msgid "Add-on Activated"
5376
  msgstr "افزونه جانبی فعال شد"
5377
 
5378
- #: ../modules/mycred-module-addons.php:305
5379
  msgid "Add-on Deactivated"
5380
  msgstr "افزونه جانبی غیرفعال شد"
5381
 
5382
- #: ../modules/mycred-module-addons.php:309
 
 
 
 
5383
  msgid "Add-ons can expand your current installation with further features."
5384
  msgstr ""
5385
  "افزونه های جانبی می توانند قابلیت های جدید و مفیدی را به افزونه ی فعلی شما "
5386
  "ببخشند ."
5387
 
5388
- #: ../modules/mycred-module-addons.php:330
 
 
 
 
5389
  #, php-format
5390
  msgid "You can find more add-ons in our %s."
5391
  msgstr "می توانید افزونه های بیشتر را در %s ما بیابید ."
5392
 
5393
- #: ../modules/mycred-module-addons.php:330
5394
  msgid "online store"
5395
  msgstr "فروشگاه آنلاین"
5396
 
5397
- #: ../modules/mycred-module-addons.php:351
5398
  msgid "Deactivate Add-on"
5399
  msgstr "غیرفعال کردن افزونه ی جانبی"
5400
 
5401
- #: ../modules/mycred-module-addons.php:352
5402
  msgid "Deactivate"
5403
  msgstr "غیرفعالسازی"
5404
 
5405
- #: ../modules/mycred-module-addons.php:359
5406
  msgid "Activate Add-on"
5407
  msgstr "فعال کردن افزونه جانبی"
5408
 
5409
- #: ../modules/mycred-module-addons.php:360
5410
  msgid "Activate"
5411
  msgstr "فعالسازی"
5412
 
5413
- #: ../modules/mycred-module-addons.php:376
5414
  msgid "Version"
5415
  msgstr "نسخه"
5416
 
5417
- #: ../modules/mycred-module-addons.php:380
5418
  msgid "By"
5419
  msgstr "توسط"
5420
 
5421
- #: ../modules/mycred-module-addons.php:384
5422
  msgid "About"
5423
  msgstr "درباره"
5424
 
5425
- #: ../modules/mycred-module-addons.php:388
5426
  msgid "Get Pro"
5427
  msgstr ""
5428
 
5429
- #: ../modules/mycred-module-buddypress.php:30
5430
  msgid "My History"
5431
  msgstr "لیست اعمال من"
5432
 
5433
- #: ../modules/mycred-module-buddypress.php:31
5434
  #, php-format
5435
  msgid "%s's History"
5436
  msgstr "لیست اعمال و گزارشات %s"
5437
 
5438
- #: ../modules/mycred-module-buddypress.php:121
5439
  msgid "Current balance"
5440
  msgstr ""
5441
 
5442
- #: ../modules/mycred-module-buddypress.php:336
5443
  msgid "Go"
5444
  msgstr ""
5445
 
5446
- #: ../modules/mycred-module-buddypress.php:392
5447
  msgid "Show in Profile"
5448
  msgstr "نمایش در پروفایل"
5449
 
5450
- #: ../modules/mycred-module-buddypress.php:407
5451
  #, php-format
5452
  msgid "%singular% Balance"
5453
  msgstr "میزان %singular%"
5454
 
5455
- #: ../modules/mycred-module-buddypress.php:423
5456
  #, php-format
5457
  msgid "Members and visitors can other members %_singular% balance."
5458
  msgstr ""
5459
 
5460
- #: ../modules/mycred-module-buddypress.php:433
5461
  msgid "%plural% History"
5462
  msgstr "گزارش جابجایی %plural%"
5463
 
5464
- #: ../modules/mycred-module-buddypress.php:449
5465
  msgid "Members can view each others %_plural% history."
5466
  msgstr "اعضا می توانند گزارشات لیست شده از جابجایی %_plural% دیگران را ببینند ."
5467
 
5468
- #: ../modules/mycred-module-buddypress.php:454
5469
  msgid "Menu Title"
5470
  msgstr "عنوان منو"
5471
 
5472
- #: ../modules/mycred-module-buddypress.php:456
5473
  msgid "Title shown to me"
5474
  msgstr "عنوان به من نمایش داده شد"
5475
 
5476
- #: ../modules/mycred-module-buddypress.php:461
5477
  #, php-format
5478
  msgid "Title shown to others. Use %s to show the first name."
5479
  msgstr ""
5480
  "عنوان به کاربران نمایش داده شد . برای اینکه فقط نام اول نمایش داده شود از %s "
5481
  "استفاده کنید ."
5482
 
5483
- #: ../modules/mycred-module-buddypress.php:466
5484
  msgid "Menu Position"
5485
  msgstr "جایگاه منو"
5486
 
5487
- #: ../modules/mycred-module-buddypress.php:468
5488
  msgid "Current menu positions:"
5489
  msgstr "جایگاه فعلی منو :"
5490
 
5491
- #: ../modules/mycred-module-buddypress.php:473
5492
  msgid "History URL slug"
5493
  msgstr "لیست تغییرات قسمت پایانی و معنی دار نشانی های اینترنتی"
5494
 
5495
- #: ../modules/mycred-module-buddypress.php:475
5496
  msgid "Do not use empty spaces!"
5497
  msgstr "از فضاهای خالی استفاده نکنید ( اسپیس نزنید ! )"
5498
 
5499
- #: ../modules/mycred-module-buddypress.php:480
5500
  msgid "Number of history entries to show"
5501
  msgstr "تعداد داده های ورودی (تغییرات) قابل نمایش لیست"
5502
 
5503
- #: ../modules/mycred-module-hooks.php:87
5504
  #, php-format
5505
  msgid "%plural% for registrations"
5506
  msgstr "اهدای %_plural% برای ثبت نام"
5507
 
5508
- #: ../modules/mycred-module-hooks.php:88
5509
  #, php-format
5510
  msgid "Award %_plural% for users joining your website."
5511
  msgstr "برای کاربرانی که عضوی از سایت شما می شوند %_plural% جایزه دهید"
5512
 
5513
- #: ../modules/mycred-module-hooks.php:94
5514
  #, php-format
5515
  msgid "%plural% for daily visits"
5516
  msgstr ""
5517
 
5518
- #: ../modules/mycred-module-hooks.php:95
5519
  #, php-format
5520
  msgid "Award %_plural% for users visiting your website on a daily basis."
5521
  msgstr ""
5522
 
5523
- #: ../modules/mycred-module-hooks.php:101
5524
  #, php-format
5525
  msgid "%plural% for viewing content"
5526
  msgstr ""
5527
 
5528
- #: ../modules/mycred-module-hooks.php:102
5529
  msgid ""
5530
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
5531
  "authors for members viewing their content."
5532
  msgstr ""
5533
 
5534
- #: ../modules/mycred-module-hooks.php:108
5535
  #, php-format
5536
  msgid "%plural% for logins"
5537
  msgstr "اهدای %_plural% برای وارد شدن به سایت"
5538
 
5539
- #: ../modules/mycred-module-hooks.php:109
5540
  #, php-format
5541
  msgid ""
5542
  "Award %_plural% for logging in to your website. You can also set an optional "
@@ -5545,12 +5555,12 @@ msgstr ""
5545
  "به کاربرانی که در سایت شما لوگین می کنند %_plural% جایزه دهید . البته می "
5546
  "توانید محدودیت های اختیاری هم برای این بخش تعیین کنید ."
5547
 
5548
- #: ../modules/mycred-module-hooks.php:115
5549
  #, php-format
5550
  msgid "%plural% for publishing content"
5551
  msgstr "اهدای %_plural% به کاربران ، برای انتشار مطلب در سایت شما"
5552
 
5553
- #: ../modules/mycred-module-hooks.php:116
5554
  #, php-format
5555
  msgid ""
5556
  "Award %_plural% for publishing content on your website. If your custom post "
@@ -5560,27 +5570,27 @@ msgstr ""
5560
  "کند ) ، %_plural% جایزه دهید . اگر نوع مطلبی که می خواهید در زیر نیامده است "
5561
  "، ابتدا اطمینان حاصل کنید که نوع مطلب مورد نظرتان \"عمومی\" باشد ."
5562
 
5563
- #: ../modules/mycred-module-hooks.php:122
5564
  #, php-format
5565
  msgid "%plural% for comments"
5566
  msgstr "اهدای %_plural% برای ثبت دیدگاه"
5567
 
5568
- #: ../modules/mycred-module-hooks.php:122
5569
  #, php-format
5570
  msgid "%plural% for Disqus comments"
5571
  msgstr ""
5572
 
5573
- #: ../modules/mycred-module-hooks.php:123
5574
  #, php-format
5575
  msgid "Award %_plural% for making comments."
5576
  msgstr "به کاربرانی که در بخش های مختلف سایت شما نظر می دهند ، %_plural% جایزه دهید ."
5577
 
5578
- #: ../modules/mycred-module-hooks.php:129
5579
  #, php-format
5580
  msgid "%plural% for clicking on links"
5581
  msgstr "اهدای %_plural% برای کلیک کردن بر روی لینک ها"
5582
 
5583
- #: ../modules/mycred-module-hooks.php:130
5584
  msgid ""
5585
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5586
  "shortcode."
@@ -5588,12 +5598,12 @@ msgstr ""
5588
  "به کاربرانی که روی لینک های تولید شده با کد [mycred_link] ، کلیک می کنند ، "
5589
  "%_plural% جایزه دهید ."
5590
 
5591
- #: ../modules/mycred-module-hooks.php:136
5592
  #, php-format
5593
  msgid "%plural% for viewing Videos"
5594
  msgstr "اهدای %_plural% برای تماشای ویدیوها"
5595
 
5596
- #: ../modules/mycred-module-hooks.php:137
5597
  msgid ""
5598
  "Award %_plural% to users who watches videos embedded using the "
5599
  "[mycred_video] shortcode."
@@ -5601,21 +5611,21 @@ msgstr ""
5601
  "به کاربرانی که ویدیوهای تولید شده با کد-کوتاه [mycred_video] را تماشا می "
5602
  "کنند ، %_plural% جایزه دهید ."
5603
 
5604
- #: ../modules/mycred-module-hooks.php:143
5605
  #, php-format
5606
  msgid "%plural% for referrals"
5607
  msgstr ""
5608
 
5609
- #: ../modules/mycred-module-hooks.php:144
5610
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5611
  msgstr ""
5612
 
5613
- #: ../modules/mycred-module-hooks.php:177
5614
  #, php-format
5615
  msgid "%s Hooks"
5616
  msgstr "پنل تنظیمات امتیازهای %s"
5617
 
5618
- #: ../modules/mycred-module-hooks.php:180
5619
  msgid ""
5620
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5621
  "depending on their actions around your website."
@@ -5623,18 +5633,18 @@ msgstr ""
5623
  "پنل تنظیماتی امتیازها محلی است که شما تعیین می کنید چه مقدار %_plural% بر "
5624
  "اساس انجام انواع عملیات ها ، به کاربرانتان اهدا شده و یا از آن ها کسر گردد ."
5625
 
5626
- #: ../modules/mycred-module-hooks.php:362 ../modules/mycred-module-hooks.php:459 .
5627
- #: ./modules/mycred-module-hooks.php:611 ../modules/mycred-module-hooks.php:642 ..
5628
- #: modules/mycred-module-hooks.php:717 ../modules/mycred-module-hooks.php:1033 ..
5629
- #: modules/mycred-module-hooks.php:1050 ../modules/mycred-module-hooks.php:1097 .
5630
- #: ./modules/mycred-module-hooks.php:1524 ../modules/mycred-module-hooks.php:1541
5631
- #: ../modules/mycred-module-hooks.php:1558 ../modules/mycred-module-hooks.php:
5632
- #: 2785 ../modules/mycred-module-hooks.php:2814 ../plugins/mycred-hook-
5633
  #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5634
- #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:418 ..
5635
- #: plugins/mycred-hook-bbPress.php:431 ../plugins/mycred-hook-bbPress.php:448 ..
5636
- #: plugins/mycred-hook-bbPress.php:466 ../plugins/mycred-hook-bbPress.php:483 ..
5637
- #: plugins/mycred-hook-bbPress.php:500 ../plugins/mycred-hook-bbPress.php:522 ..
5638
  #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5639
  #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5640
  #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
@@ -5666,74 +5676,74 @@ msgstr ""
5666
  msgid "Log template"
5667
  msgstr "نمونه ی لیست گزارش ( لوگ )"
5668
 
5669
- #: ../modules/mycred-module-hooks.php:594
5670
  #, php-format
5671
  msgid "%plural% for viewing Posts"
5672
  msgstr ""
5673
 
5674
- #: ../modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:614 .
5675
- #: ./modules/mycred-module-hooks.php:628 ../modules/mycred-module-hooks.php:645 ..
5676
- #: modules/mycred-module-hooks.php:703 ../modules/mycred-module-hooks.php:720
5677
  msgid "Member"
5678
  msgstr ""
5679
 
5680
- #: ../modules/mycred-module-hooks.php:604 ../modules/mycred-module-hooks.php:620 .
5681
- #: ./modules/mycred-module-hooks.php:635 ../modules/mycred-module-hooks.php:651 ..
5682
- #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:726 ..
5683
- #: modules/mycred-module-hooks.php:1519 ../modules/mycred-module-hooks.php:1536 .
5684
- #: ./modules/mycred-module-hooks.php:1553
5685
  msgid "Content Author"
5686
  msgstr "نویسنده ی مطلب"
5687
 
5688
- #: ../modules/mycred-module-hooks.php:625
5689
  #, php-format
5690
  msgid "%plural% for viewing Pages"
5691
  msgstr ""
5692
 
5693
- #: ../modules/mycred-module-hooks.php:700
5694
  #, php-format
5695
  msgid "%plural% for viewing %s"
5696
  msgstr ""
5697
 
5698
- #: ../modules/mycred-module-hooks.php:1023
5699
  #, php-format
5700
  msgid "%plural% for Posts"
5701
  msgstr "اهدای %plural% برای پست ها"
5702
 
5703
- #: ../modules/mycred-module-hooks.php:1040
5704
  #, php-format
5705
  msgid "%plural% for Pages"
5706
  msgstr "اهدای %plural% برای ایجاد صفحات"
5707
 
5708
- #: ../modules/mycred-module-hooks.php:1087
5709
  #, php-format
5710
  msgid "%plural% for %s"
5711
  msgstr "اهدای %plural% برای %s"
5712
 
5713
- #: ../modules/mycred-module-hooks.php:1510
5714
  msgid ""
5715
  "%plural% are only awarded when your website has been synced with the Disqus "
5716
  "server!"
5717
  msgstr ""
5718
 
5719
- #: ../modules/mycred-module-hooks.php:1515 ../modules/mycred-module-hooks.php:
5720
- #: 1532 ../modules/mycred-module-hooks.php:1549
5721
  msgid "Comment Author"
5722
  msgstr "نویسنده ی دیدگاه"
5723
 
5724
- #: ../modules/mycred-module-hooks.php:1529
5725
  msgid "Comment Marked SPAM"
5726
  msgstr "دیدگاه هایی که به عنوان اسپم نشانه گذاری شده اند"
5727
 
5728
- #: ../modules/mycred-module-hooks.php:1546
5729
  msgid "Trashed / Unapproved Comments"
5730
  msgstr "دیدگاه ها تایید نشده یا منتقل شده به زباله دان"
5731
 
5732
- #: ../modules/mycred-module-hooks.php:1566
5733
  msgid "Limit per post"
5734
  msgstr "محدودیت برای هر پست"
5735
 
5736
- #: ../modules/mycred-module-hooks.php:1568
5737
  msgid ""
5738
  "The number of comments per post that grants %_plural% to the comment author. "
5739
  "Use zero for unlimited."
@@ -5741,17 +5751,17 @@ msgstr ""
5741
  "تعداد دیدگاه های مجاز برای هر پست ، که باعث کسب %_plural% برای کاربر خواهد "
5742
  "شد . برای برداشتن این محدودیت عدد صفر را وارد کنید ."
5743
 
5744
- #: ../modules/mycred-module-hooks.php:1572
5745
  msgid "Limit per day"
5746
  msgstr "محدودیت هر روزه"
5747
 
5748
- #: ../modules/mycred-module-hooks.php:1574
5749
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5750
  msgstr ""
5751
  "تعداد دیدگاه های مجاز در روز ، که باعث کسب %_plural% خواهد شد . برای برداشتن "
5752
  "این محدودیت عدد صفر را وارد کنید ."
5753
 
5754
- #: ../modules/mycred-module-hooks.php:1579
5755
  msgid ""
5756
  "%plural% is to be awarded even when comment authors reply to their own "
5757
  "comment."
@@ -5759,15 +5769,15 @@ msgstr ""
5759
  "اهدای %_plural% حتی برای زمانی که کاربر به نظر قبلی خودش پاسخ بدهد ( نظرهای "
5760
  "تو در تو )"
5761
 
5762
- #: ../modules/mycred-module-hooks.php:1650
5763
  msgid "Once for each unique URL"
5764
  msgstr "یک بار برای هر لینک یکتا"
5765
 
5766
- #: ../modules/mycred-module-hooks.php:1651
5767
  msgid "Once for each unique link id"
5768
  msgstr "یک بار برای هر شناسه ( آی دی ) لینک یکتا"
5769
 
5770
- #: ../modules/mycred-module-hooks.php:1844
5771
  msgid ""
5772
  "The default amount to award for clicking on links. You can override this in "
5773
  "the shortcode."
@@ -5775,16 +5785,16 @@ msgstr ""
5775
  "مقدار پیش فرضی که برای کلیک بر روی لینک ها اهدا می گردد . می توانید این "
5776
  "مقدار را در شورت کد مربوطه ، مجددا تنظیم نمایید ."
5777
 
5778
- #: ../modules/mycred-module-hooks.php:1851
5779
  #, php-format
5780
  msgid "Custom tags: %url%, %title% or %id%."
5781
  msgstr ""
5782
 
5783
- #: ../modules/mycred-module-hooks.php:1862 ../modules/mycred-module-hooks.php:2898
5784
  msgid "Note!"
5785
  msgstr "نکته !"
5786
 
5787
- #: ../modules/mycred-module-hooks.php:1862
5788
  msgid ""
5789
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5790
  "generate one automatically based on the value set under href. If you are "
@@ -5796,44 +5806,44 @@ msgstr ""
5796
  "href ، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا "
5797
  "استفاده می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
5798
 
5799
- #: ../modules/mycred-module-hooks.php:1864 ../modules/mycred-module-hooks.php:2220
5800
  msgid "Available Shortcode"
5801
  msgstr ""
5802
 
5803
- #: ../modules/mycred-module-hooks.php:2184
5804
  msgid "Amount to award for viewing videos."
5805
  msgstr "مقداری که به ازای تماشای ویدیوها به کاربر اهدا می گردد ."
5806
 
5807
- #: ../modules/mycred-module-hooks.php:2194
5808
  msgid "Award Logic"
5809
  msgstr "منطق اهدای امتیازات"
5810
 
5811
- #: ../modules/mycred-module-hooks.php:2196
5812
  #, php-format
5813
  msgid "Select when %_plural% should be awarded or deducted."
5814
  msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
5815
 
5816
- #: ../modules/mycred-module-hooks.php:2197
5817
  msgid "Play - As soon as video starts playing."
5818
  msgstr "پخش - به محض شروع به پخش ویدیو"
5819
 
5820
- #: ../modules/mycred-module-hooks.php:2198
5821
  msgid "Full - First when the entire video has played."
5822
  msgstr "کامل - بعد از اینکه کل ویدیو به صورت کامل پخش بشود"
5823
 
5824
- #: ../modules/mycred-module-hooks.php:2199
5825
  msgid "Interval - For each x number of seconds watched."
5826
  msgstr "بازه ای - برای هر تعداد ثانیه ی مشخصی از ویدیو که تماشا می شود ."
5827
 
5828
- #: ../modules/mycred-module-hooks.php:2204
5829
  msgid "Number of seconds"
5830
  msgstr "تعداد ثانیه ها"
5831
 
5832
- #: ../modules/mycred-module-hooks.php:2211
5833
  msgid "Leniency"
5834
  msgstr "نرمی و ملایمت"
5835
 
5836
- #: ../modules/mycred-module-hooks.php:2213
5837
  msgid ""
5838
  "The maximum percentage a users view of a movie can differ from the actual "
5839
  "length."
@@ -5841,7 +5851,7 @@ msgstr ""
5841
  "بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده "
5842
  "می شه ، تفاوت پیدا کنه"
5843
 
5844
- #: ../modules/mycred-module-hooks.php:2216
5845
  msgid ""
5846
  "Do not set this value to zero! A lot of thing can happen while a user "
5847
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -5852,266 +5862,262 @@ msgstr ""
5852
  "در طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( "
5853
  "روی ثانیه شمار ویدیو تغییر ایجاد کنه )"
5854
 
5855
- #: ../modules/mycred-module-hooks.php:2284
5856
  msgid "Affiliate Program"
5857
  msgstr ""
5858
 
5859
- #: ../modules/mycred-module-hooks.php:2293
5860
  msgid "Per Day"
5861
  msgstr ""
5862
 
5863
- #: ../modules/mycred-module-hooks.php:2443
5864
  msgid "Link"
5865
  msgstr ""
5866
 
5867
- #: ../modules/mycred-module-hooks.php:2447
5868
  msgid "Visitors Referred"
5869
  msgstr ""
5870
 
5871
- #: ../modules/mycred-module-hooks.php:2451
5872
  msgid "Signups Referred"
5873
  msgstr ""
5874
 
5875
- #: ../modules/mycred-module-hooks.php:2779 ../plugins/mycred-hook-affiliatewp.php:
5876
  #: 231
5877
  msgid "Referring Visitors"
5878
  msgstr ""
5879
 
5880
- #: ../modules/mycred-module-hooks.php:2803 ../modules/mycred-module-hooks.php:2832
5881
- msgid "The number of referrals each member can make. Use zero for unlimited."
5882
- msgstr ""
5883
-
5884
- #: ../modules/mycred-module-hooks.php:2807 ../modules/mycred-module-hooks.php:2836
5885
  msgid "Referring Signups"
5886
  msgstr ""
5887
 
5888
- #: ../modules/mycred-module-hooks.php:2811
5889
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5890
  msgstr ""
5891
 
5892
- #: ../modules/mycred-module-hooks.php:2838
5893
  msgid "Registrations are disabled."
5894
  msgstr ""
5895
 
5896
- #: ../modules/mycred-module-hooks.php:2846
5897
  msgid "Referral Links"
5898
  msgstr ""
5899
 
5900
- #: ../modules/mycred-module-hooks.php:2850
5901
  msgid "Assign numeric referral IDs to each user."
5902
  msgstr ""
5903
 
5904
- #: ../modules/mycred-module-hooks.php:2851 ../modules/mycred-module-hooks.php:2857
5905
  msgid "Example"
5906
  msgstr ""
5907
 
5908
- #: ../modules/mycred-module-hooks.php:2856
5909
  msgid "Assign usernames as IDs for each user."
5910
  msgstr ""
5911
 
5912
- #: ../modules/mycred-module-hooks.php:2860
5913
  msgid "IP Limit"
5914
  msgstr ""
5915
 
5916
- #: ../modules/mycred-module-hooks.php:2864
5917
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5918
  msgstr ""
5919
 
5920
- #: ../modules/mycred-module-hooks.php:2868 ../modules/mycred-module-hooks.php:2902
5921
  msgid "BuddyPress Profile"
5922
  msgstr ""
5923
 
5924
- #: ../modules/mycred-module-hooks.php:2871
5925
  msgid "Insert Link in users Profile"
5926
  msgstr ""
5927
 
5928
- #: ../modules/mycred-module-hooks.php:2872
5929
  msgid ""
5930
  "Option to inser the referral link in users profiles. Links will only be "
5931
  "visible to users viewing their own profiles or administrators."
5932
  msgstr ""
5933
 
5934
- #: ../modules/mycred-module-hooks.php:2878
5935
  msgid "Leave empty to hide."
5936
  msgstr ""
5937
 
5938
- #: ../modules/mycred-module-hooks.php:2881
5939
  msgid "Description"
5940
  msgstr ""
5941
 
5942
- #: ../modules/mycred-module-hooks.php:2882
5943
  msgid "Optional description to insert under the link."
5944
  msgstr ""
5945
 
5946
- #: ../modules/mycred-module-hooks.php:2895
5947
  msgid "Profile Positioning"
5948
  msgstr ""
5949
 
5950
- #: ../modules/mycred-module-hooks.php:2897
5951
  msgid ""
5952
  "You can move around the referral link on your users profile by changing the "
5953
  "position. Increase to move up, decrease to move down."
5954
  msgstr ""
5955
 
5956
- #: ../modules/mycred-module-hooks.php:2898
5957
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5958
  msgstr ""
5959
 
5960
- #: ../modules/mycred-module-hooks.php:2904
5961
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5962
  msgstr ""
5963
 
5964
- #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5965
- #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5966
  msgid "Access denied for this action"
5967
  msgstr "عدم دسترسی مجاز برای انجام این عملیات"
5968
 
5969
- #: ../modules/mycred-module-log.php:196
5970
  msgid "Row Deleted"
5971
  msgstr ""
5972
 
5973
- #: ../modules/mycred-module-log.php:223
5974
  msgid "Log entry not found"
5975
  msgstr ""
5976
 
5977
- #: ../modules/mycred-module-log.php:236
5978
  msgid "Entry Updated"
5979
  msgstr ""
5980
 
5981
- #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:585
5982
  msgid "Entries"
5983
  msgstr "داده های ورودی"
5984
 
5985
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:400 ..
5986
- #: modules/mycred-module-log.php:650 ../modules/mycred-module-settings.php:722
5987
  msgid "Export"
5988
  msgstr "خروجی گرفتن"
5989
 
5990
- #: ../modules/mycred-module-log.php:311
5991
  msgid "Search results for"
5992
  msgstr "نتایج جستجو برای عبارت"
5993
 
5994
- #: ../modules/mycred-module-log.php:379
5995
  #, php-format
5996
  msgid "%s Log"
5997
  msgstr ""
5998
 
5999
- #: ../modules/mycred-module-log.php:390
6000
  msgid ""
6001
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
6002
  "Certain hooks and shortcodes will not work correctly!"
6003
  msgstr ""
6004
 
6005
- #: ../modules/mycred-module-log.php:522
6006
  msgid "Edit"
6007
  msgstr ""
6008
 
6009
- #: ../modules/mycred-module-log.php:563
6010
  msgid "Time"
6011
  msgstr ""
6012
 
6013
- #: ../modules/mycred-module-log.php:567
6014
  msgid "Current Log Entry"
6015
  msgstr ""
6016
 
6017
- #: ../modules/mycred-module-log.php:569
6018
  msgid "The current saved log entry"
6019
  msgstr ""
6020
 
6021
- #: ../modules/mycred-module-log.php:572
6022
  msgid "Adjust Log Entry"
6023
  msgstr ""
6024
 
6025
- #: ../modules/mycred-module-log.php:574
6026
  msgid "The new log entry"
6027
  msgstr ""
6028
 
6029
- #: ../modules/mycred-module-log.php:577
6030
  msgid "Update Log Entry"
6031
  msgstr ""
6032
 
6033
- #: ../modules/mycred-module-log.php:644
6034
  #, php-format
6035
  msgid "My %s History"
6036
  msgstr ""
6037
 
6038
- #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
6039
- #: 106 ../modules/mycred-module-settings.php:158
6040
  msgid "Missing point type"
6041
  msgstr ""
6042
 
6043
- #: ../modules/mycred-module-settings.php:137
6044
  msgid "Accounts successfully reset"
6045
  msgstr "اکانت ها با موفقیت تنظیم مجدد ( ریست ) شدند"
6046
 
6047
- #: ../modules/mycred-module-settings.php:184
6048
  msgid "No users found to export"
6049
  msgstr "کاربری برای خروجی گرفتن یافت نشد"
6050
 
6051
- #: ../modules/mycred-module-settings.php:234
6052
  msgid "Invalid decimal value."
6053
  msgstr ""
6054
 
6055
- #: ../modules/mycred-module-settings.php:281
6056
  msgid "Log Updated"
6057
  msgstr ""
6058
 
6059
- #: ../modules/mycred-module-settings.php:397
6060
  msgid "Update Database"
6061
  msgstr ""
6062
 
6063
- #: ../modules/mycred-module-settings.php:398
6064
  msgid "Zero for no decimals or maximum 20."
6065
  msgstr ""
6066
 
6067
- #: ../modules/mycred-module-settings.php:401 ../modules/mycred-module-settings.
6068
- #: php:498
6069
  msgid "Tip"
6070
  msgstr "نکته"
6071
 
6072
- #: ../modules/mycred-module-settings.php:401
6073
  msgid ""
6074
  "As this is your main point type, the value you select here will be the "
6075
  "largest number of decimals your installation will support."
6076
  msgstr ""
6077
 
6078
- #: ../modules/mycred-module-settings.php:414 ../modules/mycred-module-settings.
6079
- #: php:427
6080
  msgid "No decimals"
6081
  msgstr ""
6082
 
6083
- #: ../modules/mycred-module-settings.php:439
6084
  #, php-format
6085
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
6086
  msgstr ""
6087
 
6088
- #: ../modules/mycred-module-settings.php:475
6089
  #, php-format
6090
  msgid "%s Settings"
6091
  msgstr "تنظیمات %s"
6092
 
6093
- #: ../modules/mycred-module-settings.php:478
6094
  msgid "Adjust your core or add-on settings."
6095
  msgstr ""
6096
 
6097
- #: ../modules/mycred-module-settings.php:483
6098
  msgid "Core Settings"
6099
  msgstr "تنظیمات اصلی"
6100
 
6101
- #: ../modules/mycred-module-settings.php:485
6102
  msgid "Name"
6103
  msgstr "نام"
6104
 
6105
- #: ../modules/mycred-module-settings.php:490
6106
  #, php-format
6107
  msgid "Accessible though the %singular% template tag."
6108
  msgstr "از بخش نمونه تگ های %singular% نیز قابل استفاده می باشد"
6109
 
6110
- #: ../modules/mycred-module-settings.php:495
6111
  msgid "Accessible though the %plural% template tag."
6112
  msgstr "از بخش نمونه تگ های %plural% نیز قابل استفاده می باشد"
6113
 
6114
- #: ../modules/mycred-module-settings.php:498
6115
  msgid ""
6116
  "Adding an underscore at the beginning of template tag for names will return "
6117
  "them in lowercase. i.e. %_singular%"
@@ -6119,103 +6125,107 @@ msgstr ""
6119
  "اضافه کردن آندرلاین در ابتدای نمونه تگ های مورد استفاده برای اسامی ، باعث می "
6120
  "شود آن ها به صورت حروف کوچک چاپ شوند . مثال : %_singular%"
6121
 
6122
- #: ../modules/mycred-module-settings.php:520
6123
  msgid "Separator"
6124
  msgstr "جدا کننده"
6125
 
6126
- #: ../modules/mycred-module-settings.php:527
6127
  msgid "Edit Settings"
6128
  msgstr "تنظیم مجدد"
6129
 
6130
- #: ../modules/mycred-module-settings.php:529 ../modules/mycred-module-settings.
6131
- #: php:534
6132
  msgid "Capability to check for."
6133
  msgstr "توانایی بررسی"
6134
 
6135
- #: ../modules/mycred-module-settings.php:532
6136
  msgid "Edit Users %plural%"
6137
  msgstr "ویرایش %plural% کاربران"
6138
 
6139
- #: ../modules/mycred-module-settings.php:556
6140
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
6141
  msgstr ""
6142
  "برای جدا کردن شناسه ی کاربران در لیست ، به منظور محروم کردنشان ، از ویرگول "
6143
  "استفاده نمایید . استفاده از فاصله ( اسپیس ) مجاز نمی باشد !"
6144
 
6145
- #: ../modules/mycred-module-settings.php:576
6146
  msgid "Management"
6147
  msgstr "مدیریت"
6148
 
6149
- #: ../modules/mycred-module-settings.php:578
6150
  msgid "The Log"
6151
  msgstr "لیست گزارش ( لوگ )"
6152
 
6153
- #: ../modules/mycred-module-settings.php:581
6154
  msgid "Table Name"
6155
  msgstr "نام جدول"
6156
 
6157
- #: ../modules/mycred-module-settings.php:590
6158
  msgid "Empty Log"
6159
  msgstr "لیست گزارشات ( لوگ ) خالی"
6160
 
6161
- #: ../modules/mycred-module-settings.php:605
6162
  msgid "Set all to zero"
6163
  msgstr "تغییر تمام داده ها به عدد صفر"
6164
 
6165
- #: ../modules/mycred-module-settings.php:605
6166
  msgid "CSV Export"
6167
  msgstr "خروجی گرفتن به صورت فایل CVS"
6168
 
6169
- #: ../modules/mycred-module-settings.php:625
6170
  msgid "Default"
6171
  msgstr ""
6172
 
6173
- #: ../modules/mycred-module-settings.php:628 ../modules/mycred-module-settings.
6174
- #: php:647 ../modules/mycred-module-settings.php:669
6175
  msgid "Meta Key"
6176
  msgstr "کلید اطلاعات"
6177
 
6178
- #: ../modules/mycred-module-settings.php:666
6179
  msgid "Add New Type"
6180
  msgstr ""
6181
 
6182
- #: ../modules/mycred-module-settings.php:671
6183
  msgid "A unique ID for this type."
6184
  msgstr ""
6185
 
6186
- #: ../modules/mycred-module-settings.php:676
6187
  msgid "Menu and page title."
6188
  msgstr ""
6189
 
6190
- #: ../modules/mycred-module-settings.php:679
6191
  msgid ""
6192
  "The meta key must be lowercase and only contain letters or underscores. All "
6193
  "other characters will be deleted!"
6194
  msgstr ""
6195
 
6196
- #: ../modules/mycred-module-settings.php:700
6197
  msgid "Identify users by"
6198
  msgstr "تایید هویت کاربر به وسیله ی"
6199
 
6200
- #: ../modules/mycred-module-settings.php:706
 
 
 
 
6201
  msgid "User Email"
6202
  msgstr "ایمیل کاربر"
6203
 
6204
- #: ../modules/mycred-module-settings.php:707
6205
  msgid "User Login"
6206
  msgstr "ورود کاربر"
6207
 
6208
- #: ../modules/mycred-module-settings.php:714
6209
  msgid ""
6210
  "Use ID if you intend to use this export as a backup of your current site "
6211
  "while Email is recommended if you want to export to a different site."
6212
  msgstr ""
6213
 
6214
- #: ../modules/mycred-module-settings.php:717
6215
  msgid "Import Log Entry"
6216
  msgstr "وارد کردن لیست گزارشات ( لوگ ) داده های ورودی"
6217
 
6218
- #: ../modules/mycred-module-settings.php:719
6219
  #, php-format
6220
  msgid ""
6221
  "Optional log entry to use if you intend to import this file in a different "
@@ -6320,54 +6330,54 @@ msgstr "افزونه ی انجمن ساز بی بی پرس"
6320
  msgid "Awards %_plural% for bbPress actions."
6321
  msgstr "اهدای %_plural% برای فعالیت در بی بی پرس ( افزونه ی انجمن ساز برای وردپرس )"
6322
 
6323
- #: ../plugins/mycred-hook-bbPress.php:407
6324
  #, php-format
6325
  msgid "%plural% for New Forum"
6326
  msgstr "اهدای %plural% برای انجمن جدید"
6327
 
6328
- #: ../plugins/mycred-hook-bbPress.php:424
6329
  #, php-format
6330
  msgid "%plural% for Forum Deletion"
6331
  msgstr "اهدای %plural% برای حذف یا ادیت انجمن"
6332
 
6333
- #: ../plugins/mycred-hook-bbPress.php:437 ../plugins/mycred-hook-simplepress.php:
6334
  #: 278
6335
  #, php-format
6336
  msgid "%plural% for New Topic"
6337
  msgstr "اهدای %plural% برای تاپیک جدید"
6338
 
6339
- #: ../plugins/mycred-hook-bbPress.php:455
6340
  #, php-format
6341
  msgid "Forum authors can receive %_plural% for creating new topics."
6342
  msgstr "نویسندگان انجمن می توانند برای ساختن تاپیک %plural% دریافت کنند ."
6343
 
6344
- #: ../plugins/mycred-hook-bbPress.php:459 ../plugins/mycred-hook-simplepress.php:
6345
  #: 295
6346
  #, php-format
6347
  msgid "%plural% for Topic Deletion"
6348
  msgstr "اهدای %plural% برای پاکسازی و یا ادیت تاپیک"
6349
 
6350
- #: ../plugins/mycred-hook-bbPress.php:472
6351
  #, php-format
6352
  msgid "%plural% for Favorited Topic"
6353
  msgstr "اهدای %plural% برای تاپیک های مورد علاقه شده"
6354
 
6355
- #: ../plugins/mycred-hook-bbPress.php:489
6356
  #, php-format
6357
  msgid "%plural% for New Reply"
6358
  msgstr "اهدای %plural% برای پاسخ دادن به تاپیک"
6359
 
6360
- #: ../plugins/mycred-hook-bbPress.php:507
6361
  #, php-format
6362
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
6363
  msgstr "نویسندگان تاپیک می توانند برای پاسخ به تاپیک خودشان %_plural% دریافت کنند"
6364
 
6365
- #: ../plugins/mycred-hook-bbPress.php:511
6366
  #, php-format
6367
  msgid "Show users %_plural% balance in replies"
6368
  msgstr "نمایش دادن %_plural% کاربران در جواب"
6369
 
6370
- #: ../plugins/mycred-hook-bbPress.php:515
6371
  #, php-format
6372
  msgid "%plural% for Reply Deletion"
6373
  msgstr ""
@@ -6713,7 +6723,7 @@ msgid "Comment Subscriptions"
6713
  msgstr "اشتراک در دیدگاه ها"
6714
 
6715
  #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6716
- #: php:63
6717
  msgid "Reward with %plural%"
6718
  msgstr ""
6719
 
@@ -6759,11 +6769,11 @@ msgstr ""
6759
  msgid "%plural% for Topic Post Deletion"
6760
  msgstr "اهدا یا کسر %plural% برای حذف کامل یا بخشی از پست تاپیک"
6761
 
6762
- #: ../plugins/mycred-hook-woocommerce.php:193
6763
  msgid "WooCommerce Product Reviews"
6764
  msgstr ""
6765
 
6766
- #: ../plugins/mycred-hook-woocommerce.php:194
6767
  #, php-format
6768
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6769
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Apr 08 2015 17:03:53 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
+ "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
+ "me>\n"
10
  "Language: Persian\n"
11
  "Plural-Forms: nplurals=1; plural=0\n"
12
  "MIME-Version: 1.0\n"
42
  msgstr "\"اعتبار من\""
43
 
44
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
45
+ #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
46
+ #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
47
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
48
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
49
  #: php:636
50
  msgid "Processing..."
104
  msgstr ""
105
 
106
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
107
+ #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
108
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
109
  msgid "Setup"
110
  msgstr "نصب"
111
 
112
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
113
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
114
+ #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
115
+ #: module-settings.php:22 ../modules/mycred-module-settings.php:23
116
  msgid "Settings"
117
  msgstr "تنظیمات"
118
 
122
  "anything goes wrong!"
123
  msgstr ""
124
 
 
 
 
 
125
  #: ../abstracts/mycred-abstract-hook.php:83
126
  msgid "This Hook has no settings"
127
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
128
 
129
+ #: ../abstracts/mycred-abstract-hook.php:226 ../abstracts/mycred-abstract-hook.
130
+ #: php:293 ../includes/mycred-functions.php:2641 ../modules/mycred-module-hooks.
131
+ #: php:1809
132
  msgid "No limit"
133
  msgstr "بدون محدودیت"
134
 
135
+ #: ../abstracts/mycred-abstract-hook.php:227
136
  msgid "/ Day"
137
  msgstr ""
138
 
139
+ #: ../abstracts/mycred-abstract-hook.php:228
140
  msgid "/ Week"
141
  msgstr ""
142
 
143
+ #: ../abstracts/mycred-abstract-hook.php:229
144
  msgid "/ Month"
145
  msgstr ""
146
 
147
+ #: ../abstracts/mycred-abstract-hook.php:230
148
  msgid "in Total"
149
  msgstr ""
150
 
151
+ #: ../abstracts/mycred-abstract-hook.php:294
152
  msgid "Once every 24 hours"
153
  msgstr "یک بار در هر 24 ساعت"
154
 
155
+ #: ../abstracts/mycred-abstract-hook.php:295
156
  msgid "Once every 7 days"
157
  msgstr "یک بار در هر 7 روز"
158
 
159
+ #: ../abstracts/mycred-abstract-hook.php:296
160
  msgid "Once per day (reset at midnight)"
161
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
162
 
163
+ #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
164
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
165
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
166
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
167
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
168
+ #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
169
+ #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992
170
  msgid "Select"
171
  msgstr "انتخاب"
172
 
174
  msgid "myCRED_Module() Error. A Module ID is required!"
175
  msgstr "خطای myCRED_Module() . شناسه طرح لازم است !"
176
 
177
+ #: ../abstracts/mycred-abstract-module.php:350 ../abstracts/mycred-abstract-
178
+ #: module.php:358
179
  msgid "Surprise"
180
  msgstr "غافلگیری"
181
 
182
+ #: ../abstracts/mycred-abstract-module.php:445 ../includes/mycred-network.php:83
183
  msgid "click to close"
184
  msgstr "برای بستن کلیک کنید ."
185
 
186
+ #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:84
187
  msgid "click to open"
188
  msgstr "برای باز شدن کلیک کنید ."
189
 
190
+ #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
191
+ #: buy-creds.php:884
192
  msgid "Settings Updated"
193
  msgstr "تنظیمات به روز شد"
194
 
195
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
196
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
197
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
198
+ #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
199
+ #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
200
+ #: badges.php:395
201
  msgid "Badges"
202
  msgstr ""
203
 
206
  msgid "Badges (%d)"
207
  msgstr ""
208
 
209
+ #: ../addons/badges/myCRED-addon-badges.php:260
210
  #, php-format
211
  msgid "%d Users earned this badge."
212
  msgstr ""
213
 
214
+ #: ../addons/badges/myCRED-addon-badges.php:264
215
  msgid "No users has yet earned this badge."
216
  msgstr ""
217
 
218
+ #: ../addons/badges/myCRED-addon-badges.php:287
219
+ msgid "No connections where removed."
220
+ msgstr ""
221
+
222
+ #: ../addons/badges/myCRED-addon-badges.php:289
223
  #, php-format
224
  msgid "%s connections where removed."
225
  msgstr ""
226
 
227
+ #: ../addons/badges/myCRED-addon-badges.php:384
228
  msgid "Badge"
229
  msgstr ""
230
 
231
+ #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
232
+ #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
233
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
234
+ #: addons/ranks/myCRED-addon-ranks.php:448
235
  msgid "Add New"
236
  msgstr "ساختن مورد جدید"
237
 
238
+ #: ../addons/badges/myCRED-addon-badges.php:386
239
  msgid "Add New Badge"
240
  msgstr ""
241
 
242
+ #: ../addons/badges/myCRED-addon-badges.php:387
243
  msgid "Edit Badge"
244
  msgstr ""
245
 
246
+ #: ../addons/badges/myCRED-addon-badges.php:388
247
  msgid "New Badge"
248
  msgstr ""
249
 
250
+ #: ../addons/badges/myCRED-addon-badges.php:390
251
  msgid "View Badge"
252
  msgstr ""
253
 
254
+ #: ../addons/badges/myCRED-addon-badges.php:391
255
  msgid "Search Badge"
256
  msgstr ""
257
 
258
+ #: ../addons/badges/myCRED-addon-badges.php:392
259
  msgid "No badges found"
260
  msgstr ""
261
 
262
+ #: ../addons/badges/myCRED-addon-badges.php:393
263
  msgid "No badges found in Trash"
264
  msgstr ""
265
 
266
+ #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
267
+ #: badges.php:541
268
  msgid "Badge Name"
269
  msgstr ""
270
 
271
+ #: ../addons/badges/myCRED-addon-badges.php:440
272
  msgid "Badge Images"
273
  msgstr ""
274
 
275
+ #: ../addons/badges/myCRED-addon-badges.php:441
276
  msgid "Requirements"
277
  msgstr ""
278
 
279
+ #: ../addons/badges/myCRED-addon-badges.php:442 ../addons/ranks/myCRED-addon-
280
+ #: ranks.php:1042 ../modules/mycred-module-settings.php:636
281
  msgid "Users"
282
  msgstr "کاربران"
283
 
284
+ #: ../addons/badges/myCRED-addon-badges.php:481
285
  msgid "A user must have gained or lost:"
286
  msgstr ""
287
 
288
+ #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
289
+ #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
290
+ #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
291
+ #: badges.php:526
292
  msgid "Badge Updated."
293
  msgstr ""
294
 
295
+ #: ../addons/badges/myCRED-addon-badges.php:522
296
  msgid "Badge Enabled"
297
  msgstr ""
298
 
299
+ #: ../addons/badges/myCRED-addon-badges.php:523
300
  msgid "Badge Saved"
301
  msgstr ""
302
 
303
+ #: ../addons/badges/myCRED-addon-badges.php:555
304
  msgid "Badge Setup"
305
  msgstr ""
306
 
307
+ #: ../addons/badges/myCRED-addon-badges.php:582
308
  msgid "Assign Badge"
309
  msgstr ""
310
 
311
+ #: ../addons/badges/myCRED-addon-badges.php:583
312
  msgid "Remove Connections"
313
  msgstr ""
314
 
315
+ #: ../addons/badges/myCRED-addon-badges.php:638
316
  msgid "Time(s)"
317
  msgstr ""
318
 
319
+ #: ../addons/badges/myCRED-addon-badges.php:639
320
  msgid "In total"
321
  msgstr ""
322
 
323
+ #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
324
+ #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
325
+ #: addons/badges/myCRED-addon-badges.php:846
326
  msgid "Badge Image"
327
  msgstr ""
328
 
329
+ #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
330
+ #: badges.php:672
331
  msgid "Set badge image"
332
  msgstr ""
333
 
334
+ #: ../addons/badges/myCRED-addon-badges.php:682
335
  msgid "Default Image"
336
  msgstr ""
337
 
338
+ #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
339
+ #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
340
+ #: addons/badges/myCRED-addon-badges.php:831
341
  msgid "image url"
342
  msgstr ""
343
 
344
+ #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
345
+ #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
346
+ #: addons/badges/myCRED-addon-badges.php:831
347
  msgid "Add Image"
348
  msgstr ""
349
 
350
+ #: ../addons/badges/myCRED-addon-badges.php:685
351
  msgid "Optional image to show when a user has not yet earned this badge."
352
  msgstr ""
353
 
354
+ #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
355
+ #: badges.php:756
356
  #, php-format
357
  msgid "Level %d"
358
  msgstr ""
359
 
360
+ #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
361
+ #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
362
  msgid "for"
363
  msgstr ""
364
 
365
+ #: ../addons/badges/myCRED-addon-badges.php:740
366
  msgid "Main Image"
367
  msgstr ""
368
 
369
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
370
+ #: badges.php:831
371
  msgid "Leave empty if you do not want to assign a custom image for this level."
372
  msgstr ""
373
 
374
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
375
+ #: badges.php:831
376
  msgid "Remove this level"
377
  msgstr ""
378
 
379
+ #: ../addons/badges/myCRED-addon-badges.php:788
380
  msgid "Add Level"
381
  msgstr ""
382
 
383
+ #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
384
+ #: badges.php:1154
385
  msgid "Level"
386
  msgstr ""
387
 
388
+ #: ../addons/badges/myCRED-addon-badges.php:848
389
  msgid "Use as Badge"
390
  msgstr ""
391
 
392
+ #: ../addons/badges/myCRED-addon-badges.php:970 ../addons/badges/myCRED-addon-
393
+ #: badges.php:1001 ../addons/gateway/carts/mycred-woocommerce.php:152 ..
394
+ #: modules/mycred-module-buddypress.php:417
395
  msgid "Do not show"
396
  msgstr "نمایش نده !"
397
 
398
+ #: ../addons/badges/myCRED-addon-badges.php:971 ../modules/mycred-module-
399
+ #: buddypress.php:418
400
  msgid "Include in Profile Header"
401
  msgstr ""
402
 
403
+ #: ../addons/badges/myCRED-addon-badges.php:972 ../addons/ranks/myCRED-addon-
404
+ #: ranks.php:1407 ../modules/mycred-module-buddypress.php:419
405
  msgid "Include under the \"Profile\" tab"
406
  msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
407
 
408
+ #: ../addons/badges/myCRED-addon-badges.php:973 ../modules/mycred-module-
409
+ #: buddypress.php:420
410
  msgid "Include under the \"Profile\" tab and Profile Header"
411
  msgstr ""
412
 
413
+ #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
414
+ #: badges.php:1017
415
  msgid "Show all badges, including badges users have not yet earned."
416
  msgstr ""
417
 
418
+ #: ../addons/badges/myCRED-addon-badges.php:1002 ../addons/ranks/myCRED-addon-
419
+ #: ranks.php:1452
420
  msgid "Include in Profile"
421
  msgstr ""
422
 
423
+ #: ../addons/badges/myCRED-addon-badges.php:1003
424
  msgid "Include in Forum Replies"
425
  msgstr ""
426
 
427
+ #: ../addons/badges/myCRED-addon-badges.php:1004
428
  msgid "Include in Profile and Forum Replies"
429
  msgstr ""
430
 
431
+ #: ../addons/badges/myCRED-addon-badges.php:1111
432
  msgid "User Badges"
433
  msgstr ""
434
 
435
+ #: ../addons/badges/myCRED-addon-badges.php:1116
436
  msgid ""
437
  "Here you can view the badges this user has earned and if needed, manually "
438
  "give or take away a badge from a user."
439
  msgstr ""
440
 
441
+ #: ../addons/badges/myCRED-addon-badges.php:1125
442
  msgid "Not earned"
443
  msgstr ""
444
 
445
+ #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
446
+ #: badges.php:1168
447
  msgid "Earned"
448
  msgstr ""
449
 
450
+ #: ../addons/badges/myCRED-addon-badges.php:1143
451
  msgid "No image"
452
  msgstr ""
453
 
454
+ #: ../addons/badges/myCRED-addon-badges.php:1150
455
  msgid "Select a level"
456
  msgstr ""
457
 
458
+ #: ../addons/badges/myCRED-addon-badges.php:1165 ../addons/email-notices/myCRED-
459
+ #: addon-email-notices.php:810
460
  msgid "Status"
461
  msgstr "وضعیت"
462
 
463
+ #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
464
+ #: addon-email-notices.php:1293
465
  msgid "Save Changes"
466
  msgstr ""
467
 
468
+ #: ../addons/badges/includes/mycred-badge-functions.php:68
469
  #, php-format
470
  msgid "Level %s"
471
  msgstr ""
472
 
473
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
474
  #, php-format
475
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
476
  msgid "%s for %s %s - %s"
477
  msgstr ""
478
 
479
+ #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
480
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
481
  #: coupons.php:469
482
  #, php-format
485
  msgstr[0] ""
486
  msgstr[1] ""
487
 
488
+ #: ../addons/badges/includes/mycred-badge-functions.php:73
489
  #, php-format
490
  msgctxt "\"x points\" for \"reference\" in total"
491
  msgid "%s for %s in total"
527
  msgstr ""
528
 
529
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
530
+ #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
531
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
532
+ #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
533
+ #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
534
+ #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
535
  msgid "Access Denied"
536
  msgstr "دسترسی غیرمجاز می باشد"
537
 
556
  "مدیر سایت می دهد"
557
 
558
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
559
+ #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
560
  msgid "Enable"
561
  msgstr "فعالسازی"
562
 
563
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
564
+ #: php:240
565
  msgid "Update Changes"
566
  msgstr "به روزرسانی تغییرات"
567
 
678
 
679
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
680
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
681
+ #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
682
+ #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
683
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
684
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
685
+ #: addons/gateway/carts/mycred-woocommerce.php:104 ..
686
+ #: addons/gateway/carts/mycred-woocommerce.php:176 ..
687
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
688
+ #: hooks.php:1004 ../modules/mycred-module-hooks.php:2025 ../modules/mycred-
689
+ #: module-hooks.php:2395 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-
690
+ #: hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-
691
+ #: hook-events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.
692
+ #: php:209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
693
+ #: gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:321 ..
694
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
695
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
696
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
737
  msgstr ""
738
 
739
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
740
+ #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
741
  #: content.php:114
742
  msgid "Leave empty to use the default value."
743
  msgstr ""
750
  msgid "Exclude from receiving interest"
751
  msgstr ""
752
 
753
+ #: ../addons/banking/services/mycred-bank-service-interest.php:673
754
  msgid "Compound interest rate saved."
755
  msgstr ""
756
 
757
+ #: ../addons/banking/services/mycred-bank-service-interest.php:675
758
  msgid "User excluded from receiving interest."
759
  msgstr ""
760
 
761
+ #: ../addons/banking/services/mycred-bank-service-interest.php:677
762
  msgid "User included in receiving interest."
763
  msgstr ""
764
 
767
  msgstr "%_plural% روزانه"
768
 
769
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
770
+ #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
771
+ #: modules/mycred-module-log.php:277
772
  msgid "History"
773
  msgstr "لیست تغییرات"
774
 
785
  msgstr "پرداخت به کاربران :"
786
 
787
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
788
+ #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
789
+ #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
790
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
791
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
792
+ #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
793
  #: plugins/mycred-hook-affiliatewp.php:256
794
  msgid "Amount"
795
  msgstr "مقدار"
796
 
797
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
798
+ #: modules/mycred-module-hooks.php:2410
799
  msgid "Interval"
800
  msgstr "فاصله زمانی"
801
 
824
  "نوع مکث تا زمان دلخواه شما ، برای عملیات واریز خواهد بود . برای ریست کردن "
825
  "تعداد دوره ها هم می توانید عدد صفر را وارد فرمایید"
826
 
827
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
828
+ #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
829
  msgid "Payment Gateways"
830
  msgstr "درگاه های پرداخت"
831
 
832
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
833
  msgctxt "Post Type General Name"
834
  msgid "Pending Payments"
835
  msgstr ""
836
 
837
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
838
  msgctxt "Post Type Singular Name"
839
  msgid "Pending Payment"
840
  msgstr ""
841
 
842
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
843
+ #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
844
  msgid "Pending Payments"
845
  msgstr ""
846
 
847
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
848
  msgid "Edit Pending Payment"
849
  msgstr ""
850
 
851
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
852
+ #: addon-buy-creds.php:1699
853
  msgid "No pending payments found"
854
  msgstr ""
855
 
856
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
857
  msgid "Not found in Trash"
858
  msgstr ""
859
 
860
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
861
+ #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
862
  msgid "Transaction ID"
863
  msgstr ""
864
 
865
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
866
+ #: addon-buy-creds.php:1025
867
  msgid "Buyer"
868
  msgstr ""
869
 
870
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
871
+ #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
872
  #: gateway.php:594
873
  msgid "Cost"
874
  msgstr ""
875
 
876
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
877
+ #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
878
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
879
  msgid "Gateway"
880
  msgstr "درگاه"
881
 
882
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
883
  msgid "Type"
884
  msgstr ""
885
 
886
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
887
  msgid "Pay Out"
888
  msgstr ""
889
 
890
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
891
  msgid "buyCRED Purchase Log"
892
  msgstr ""
893
 
894
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
895
+ #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
896
  msgid "Purchase Log"
897
  msgstr ""
898
 
899
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
900
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
901
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
902
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
903
  msgid "Payments"
904
  msgstr "پرداخت ها"
905
 
906
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
907
  msgid "Please login to purchase %_plural%"
908
  msgstr "لطفا برای خرید امتیاز وارد سایت شوید"
909
 
910
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
911
  #, php-format
912
  msgid "Gift purchase from %display_name%."
913
  msgstr "خرید هدیه توسط %display_name% ."
914
 
915
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
916
+ #: addon-ranks.php:1084
917
  msgid "Minimum %plural%"
918
  msgstr "کمترین مفدار %plural%"
919
 
920
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
921
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
922
  msgstr ""
923
  "کمترین مقدار %plural% مجازی که کاربر می تواند خرید بکند . به صورت پیش فرض "
924
  "روی عدد یک تنظیم شده است ."
925
 
926
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
927
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
928
+ #: module-settings.php:656
929
  msgid "Point Types"
930
  msgstr ""
931
 
932
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
933
  msgid "Select the point types that users can buy. You must select at least one!"
934
  msgstr ""
935
 
936
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
937
  msgid "Login Template"
938
  msgstr "نمونه طرح ورود به سایت"
939
 
940
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
941
  msgid "Content to show when a user is not logged in."
942
  msgstr "متنی که به کاربران لوگین نکرده نمایش داده خواهد شد ."
943
 
944
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
945
  msgid "Thank You Page"
946
  msgstr "صفحه ی تشکر بابت خرید"
947
 
948
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
949
+ #: addon-buy-creds.php:668
950
  msgid "Custom URL"
951
  msgstr "نشانی اینترنتی متفاوت"
952
 
953
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
954
+ #: addon-buy-creds.php:673
955
  msgid "Page"
956
  msgstr "صفحه"
957
 
958
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
959
  msgid "Cancellation Page"
960
  msgstr "صفحه ای که در صورت کنسل کردن خرید نمایش داده می شود"
961
 
962
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
963
  msgid "Show seperate log for %_plural% purchases."
964
  msgstr ""
965
 
966
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
967
  msgid "Gifting"
968
  msgstr "هدیه دادن"
969
 
970
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
971
  #, php-format
972
  msgid "Allow users to buy %_plural% for other users."
973
  msgstr "به کاربران اجازه ی خرید %_plural% برای سایر اعضای سایت را بدهید ."
974
 
975
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
976
  #, php-format
977
  msgid "Allow users to buy %_plural% for content authors."
978
  msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
979
 
980
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
981
+ #: hooks.php:3110
982
  msgid "Available Shortcodes"
983
  msgstr ""
984
 
985
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
986
  #, php-format
987
  msgid "%s Exchange Rate"
988
  msgstr ""
989
 
990
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
991
  msgid "Save Exchange Rates"
992
  msgstr ""
993
 
994
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
995
  msgid "Exchange rate override saved"
996
  msgstr ""
997
 
998
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
999
  msgid "Payment completed"
1000
  msgstr ""
1001
 
1002
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1003
  #, php-format
1004
  msgid "%s Payment Gateways"
1005
  msgstr "درگاه های پرداخت %s"
1006
 
1007
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1008
+ #: addon-buy-creds.php:1034
1009
  msgid "buyCRED Settings"
1010
  msgstr ""
1011
 
1012
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1013
  msgid "Test Mode"
1014
  msgstr "حالت آزمایشی ( تست )"
1015
 
1016
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1017
  msgid "Enabled"
1018
  msgstr "فعال شد"
1019
 
1020
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1021
  msgid "Disabled"
1022
  msgstr "غیرفعال شد"
1023
 
1024
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1025
  msgid "Sandbox Mode"
1026
  msgstr ""
1027
  "حالت جعبه شنی ( حالت تست بانکی می باشد که در آن بابت تراکنش ها هیچ وجهی کسر "
1028
  "نمی گردد )"
1029
 
1030
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1031
  msgid "Enable for test purchases."
1032
  msgstr ""
1033
 
1034
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1035
+ #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1036
  msgid "Update Settings"
1037
  msgstr "به روزرسانی تنظیمات"
1038
 
1039
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1040
  msgid "More Gateways"
1041
  msgstr ""
1042
 
1043
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1044
+ #: 666
1045
  msgid "Date"
1046
  msgstr "تاریخ"
1047
 
1048
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1049
  msgid "Payed"
1050
  msgstr ""
1051
 
1052
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1053
  msgid "<strong>buy</strong>CRED Purchase Log"
1054
  msgstr ""
1055
 
1056
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1057
  #: booking/mycred-eventespresso3.php:367
1058
  msgid "Gateway Settings"
1059
  msgstr "تنظیمات درگاه پرداخت"
1060
 
1061
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1062
  #: content/myCRED-addon-sell-content.php:1209
1063
  msgid "No purchases found"
1064
  msgstr "خریدی یافت نشد"
1065
 
1066
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1067
+ #: addon-buy-creds.php:1411
1068
  msgid "This Add-on needs to setup before you can use this shortcode."
1069
  msgstr ""
1070
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
1071
  "جانبی را راه اندازی کنید ."
1072
 
1073
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1074
+ #: addon-buy-creds.php:1430
1075
  msgid "No gateways installed."
1076
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
1077
 
1078
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1079
+ #: addon-buy-creds.php:1431
1080
  msgid "Gateway does not exist."
1081
  msgstr "درگاه موجود نیست ."
1082
 
1083
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1084
  msgid "Yourself"
1085
  msgstr "خودتان"
1086
 
1087
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1088
  msgid "No active gateways found."
1089
  msgstr "درگاه پرداخت فعالی یافت نشد ."
1090
 
1091
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1092
  msgid "The selected gateway is not active."
1093
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
1094
 
1095
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1096
  #, php-format
1097
  msgid "Buy with %gateway%"
1098
  msgstr ""
1099
 
1100
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1101
  #: content/myCRED-addon-sell-content.php:44
1102
  msgid "Buy Now"
1103
  msgstr "همین الان بخرید"
1104
 
1105
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1106
  msgid "No users found"
1107
  msgstr "کاربری یافت نشد"
1108
 
1109
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1110
  msgid "To"
1111
  msgstr "به"
1112
 
1113
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1114
  msgid "Select Amount"
1115
  msgstr "مقدار را انتخاب کنید"
1116
 
1117
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1118
  msgid "min."
1119
  msgstr "حداقل"
1120
 
1121
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1122
  msgid "Select Gateway"
1123
  msgstr "درگاه پرداخت را انتخاب کنید"
1124
 
1125
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1126
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1127
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1128
  #: php:35
1129
  msgid "Pay Now"
1130
  msgstr "همین حالا بپردازید"
1131
 
1132
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1133
+ #: php:536
1134
  msgid "Cancel"
1135
  msgstr "لغو"
1136
 
1137
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1138
+ #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1139
+ #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1140
  msgid "Actions"
1141
  msgstr "عملیات ها"
1142
 
1268
  msgstr ""
1269
 
1270
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1271
+ #: addons/buy-creds/gateways/bitpay.php:233
1272
  msgid "Click here if you are not automatically redirected"
1273
  msgstr "اگر به صورت خودکار به آدرس مورد نظر منتقل نشدید ، اینجا را کلیک فرمایید ."
1274
 
1328
  msgid "December"
1329
  msgstr ""
1330
 
1331
+ #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
1332
+ #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
1333
+ #: php:145 ../addons/buy-creds/gateways/skrill.php:124
 
 
 
 
 
 
1334
  #, php-format
1335
  msgid "Price mismatch. Expected: %s Received: %s"
1336
  msgstr ""
1337
 
1338
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
1339
+ #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
1340
  #, php-format
1341
  msgid "Currency mismatch. Expected: %s Received: %s"
1342
  msgstr ""
1343
 
1344
+ #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
1345
+ #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
1346
+ #: php:157 ../addons/buy-creds/gateways/skrill.php:136
1347
  #, php-format
1348
  msgid "Payment not completed. Received: %s"
1349
  msgstr ""
1350
 
1351
+ #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
1352
+ #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/paypal-standard.
1353
+ #: php:168 ../addons/buy-creds/gateways/skrill.php:147 ../addons/buy-
1354
+ #: creds/gateways/zombaio.php:185
1355
  msgid "Failed to credit users account."
1356
  msgstr ""
1357
 
1358
+ #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
1359
+ #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/paypal-standard.
1360
+ #: php:208 ../addons/buy-creds/gateways/skrill.php:187 ../addons/buy-
1361
+ #: creds/gateways/zombaio.php:214
1362
  msgid "Please setup this gateway before attempting to make a purchase!"
1363
  msgstr ""
1364
  "لطفا قبل از اینکه تلاش به انجام پرداختی کنید ، این درگاه را راه اندازی "
1365
  "فرمایید ."
1366
 
1367
+ #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
1368
+ #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
1369
+ #: ./addons/buy-creds/gateways/paypal-standard.php:268 ../addons/buy-
1370
+ #: creds/gateways/skrill.php:281 ../addons/buy-creds/gateways/zombaio.php:247
1371
  msgid "Processing payment &hellip;"
1372
  msgstr "پردازش پرداخت &hellip;"
1373
 
1374
+ #: ../addons/buy-creds/gateways/bitpay.php:219
1375
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1376
  msgstr ""
1377
 
1378
+ #: ../addons/buy-creds/gateways/bitpay.php:220
1379
  msgid "Bitpay returned the following error message:"
1380
  msgstr ""
1381
 
1382
+ #: ../addons/buy-creds/gateways/bitpay.php:253 ../includes/mycred-remote.php:551
1383
  msgid "API Key"
1384
  msgstr "کلید API"
1385
 
1386
+ #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1387
+ #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
1388
+ #: 300
1389
  msgid "Currency"
1390
  msgstr "واحد پولی"
1391
 
1392
+ #: ../addons/buy-creds/gateways/bitpay.php:262
1393
  msgid "Currency Code"
1394
  msgstr ""
1395
 
1396
+ #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1397
+ #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
1398
+ #: php:298 ../addons/buy-creds/gateways/skrill.php:319
1399
  msgid "Item Name"
1400
  msgstr "نام محصول"
1401
 
1402
+ #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
1403
+ #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
1404
+ #: php:302 ../addons/buy-creds/gateways/skrill.php:323
1405
  msgid "Description of the item being purchased by the user."
1406
  msgstr "شرح محصولی که توسط کاربر خریداری می شود ."
1407
 
1408
+ #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
1409
+ #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
1410
+ #: php:305 ../addons/buy-creds/gateways/skrill.php:326
1411
  msgid "Exchange Rates"
1412
  msgstr ""
1413
 
1414
+ #: ../addons/buy-creds/gateways/bitpay.php:277
1415
  msgid "Transaction Speed"
1416
  msgstr ""
1417
 
1418
+ #: ../addons/buy-creds/gateways/bitpay.php:284
1419
  msgid "High"
1420
  msgstr ""
1421
 
1422
+ #: ../addons/buy-creds/gateways/bitpay.php:285
1423
  msgid "Medium"
1424
  msgstr ""
1425
 
1426
+ #: ../addons/buy-creds/gateways/bitpay.php:286
1427
  msgid "Low"
1428
  msgstr ""
1429
 
1430
+ #: ../addons/buy-creds/gateways/bitpay.php:299
1431
  msgid "Full Notifications"
1432
  msgstr ""
1433
 
1434
+ #: ../addons/buy-creds/gateways/bitpay.php:306 ../includes/mycred-network.php:161
1435
  #: ../includes/mycred-network.php:175
1436
  msgid "No"
1437
  msgstr "خیر"
1438
 
1439
+ #: ../addons/buy-creds/gateways/bitpay.php:307 ../includes/mycred-network.php:157
1440
  #: ../includes/mycred-network.php:171
1441
  msgid "Yes"
1442
  msgstr "بلی"
1443
 
1444
+ #: ../addons/buy-creds/gateways/netbilling.php:216
1445
  msgid "Account ID"
1446
  msgstr "شناسه اکانت"
1447
 
1448
+ #: ../addons/buy-creds/gateways/netbilling.php:222
1449
  msgid "Site Tag"
1450
  msgstr "تگ سایت"
1451
 
1452
+ #: ../addons/buy-creds/gateways/netbilling.php:228
1453
  msgid "Order Integrity Key"
1454
  msgstr ""
1455
 
1456
+ #: ../addons/buy-creds/gateways/netbilling.php:232
1457
  msgid "Found under Step 12 on the Fraud Defense page."
1458
  msgstr ""
1459
 
1460
+ #: ../addons/buy-creds/gateways/netbilling.php:246
1461
  msgid "Postback CGI URL"
1462
  msgstr ""
1463
 
1464
+ #: ../addons/buy-creds/gateways/netbilling.php:250
1465
  msgid ""
1466
  "For this gateway to work, you must login to your NETbilling account and edit "
1467
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1468
  "URL is set to the above address and \"Return method\" is set to POST."
1469
  msgstr ""
1470
 
1471
+ #: ../addons/buy-creds/gateways/netbilling.php:298
1472
  msgid "Incorrect Credit Card number"
1473
  msgstr "شماره کارت نامعتبر"
1474
 
1475
+ #: ../addons/buy-creds/gateways/netbilling.php:304
1476
  msgid "The credit card entered is past its expiration date."
1477
  msgstr "کارت بانکی وارد شده منقضی شده است ( تاریخ انقضای کارتتان را نگاه کنید )"
1478
 
1479
+ #: ../addons/buy-creds/gateways/netbilling.php:307
1480
  msgid "The CVV2 number entered is not valid."
1481
  msgstr "کد CVV2 وارد شده معتبر نمی باشد ."
1482
 
1483
+ #: ../addons/buy-creds/gateways/netbilling.php:314
1484
  msgid "The bank routing number entered is not valid."
1485
  msgstr "شماره مسیریاب بانک وارد شده معتبر نمی باشد ."
1486
 
1487
+ #: ../addons/buy-creds/gateways/netbilling.php:318
1488
  msgid "The bank account number entered is not valid."
1489
  msgstr "شماره حساب/کارت بانکی وارد شده معتبر نمی باشد."
1490
 
1491
+ #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
1492
+ #: creds/gateways/skrill.php:171
1493
  msgid "Success"
1494
  msgstr "موفق"
1495
 
1496
+ #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
1497
+ #: creds/gateways/skrill.php:172
1498
  msgid "Thank you for your purchase"
1499
  msgstr "**ممنون از خرید و حمایتتان**"
1500
 
1501
+ #: ../addons/buy-creds/gateways/paypal-standard.php:263
1502
+ #, php-format
1503
+ msgctxt "Return label. %s = Website name"
1504
+ msgid "Return to %s"
1505
+ msgstr ""
1506
 
1507
+ #: ../addons/buy-creds/gateways/paypal-standard.php:292
1508
  msgid "Account Email"
1509
  msgstr "آدرس ایمیل اکانت"
1510
 
1511
+ #: ../addons/buy-creds/gateways/skrill.php:228
1512
+ msgid "Return to "
1513
+ msgstr "بازگشت به"
1514
+
1515
+ #: ../addons/buy-creds/gateways/skrill.php:264
1516
  msgid "Product:"
1517
  msgstr "محصول :"
1518
 
1519
+ #: ../addons/buy-creds/gateways/skrill.php:273
1520
  msgid "Gift to:"
1521
  msgstr "هدیه به :"
1522
 
1523
+ #: ../addons/buy-creds/gateways/skrill.php:274
1524
  msgid "(author)"
1525
  msgstr "( نویسنده )"
1526
 
1527
+ #: ../addons/buy-creds/gateways/skrill.php:307
1528
  msgid "Merchant Account Email"
1529
  msgstr "ایمیل اکانت مرچنت"
1530
 
1531
+ #: ../addons/buy-creds/gateways/skrill.php:313
1532
  msgid "Secret Word"
1533
  msgstr "کلمه ی رمز"
1534
 
1535
+ #: ../addons/buy-creds/gateways/skrill.php:330
1536
  msgid "Confirmation Email"
1537
  msgstr "ایمیل تایید پرداخت"
1538
 
1539
+ #: ../addons/buy-creds/gateways/skrill.php:333
1540
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1541
  msgstr ""
1542
  "از Skrill (همون Moneybookers ) بخواید که برای هر تراکنش موفق براتون ایمیل "
1543
  "بزنه ."
1544
 
1545
+ #: ../addons/buy-creds/gateways/skrill.php:336
1546
  msgid "Checkout Page"
1547
  msgstr "صفحه تسویه حساب"
1548
 
1549
+ #: ../addons/buy-creds/gateways/skrill.php:339 ../addons/gateway/carts/mycred-
1550
+ #: woocommerce.php:92 ../addons/ranks/myCRED-addon-ranks.php:1318 ..
1551
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1552
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1553
+ #: php:592 ../modules/mycred-module-hooks.php:3073
1554
  msgid "Title"
1555
  msgstr "عنوان"
1556
 
1557
+ #: ../addons/buy-creds/gateways/skrill.php:341
1558
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1559
  msgstr ""
1560
  "اگر این بخش را خالی بگذارید ، از ایمیل اکانتتان برای عنوان صفحه ی پرداخت "
1561
  "Skrill استفاده خواهد شد ."
1562
 
1563
+ #: ../addons/buy-creds/gateways/skrill.php:344 ../addons/buy-
1564
+ #: creds/gateways/zombaio.php:283
1565
  msgid "Logo URL"
1566
  msgstr "آدرس لوگو"
1567
 
1568
+ #: ../addons/buy-creds/gateways/skrill.php:346
1569
  msgid ""
1570
  "The URL to the image you want to use on the top of the gateway. For best "
1571
  "integration results we recommend you use logos with dimensions up to 200px "
1575
  "نتیجه و هماهنگی بهتر عکس با درگاه ، پیشنهاد می کنیم که نهایتا عرض عکس 200 "
1576
  "پیکسل و ارتفاع آن 50 پیکسل باشد ."
1577
 
1578
+ #: ../addons/buy-creds/gateways/skrill.php:349
1579
  msgid "Confirmation Note"
1580
  msgstr "متن تایید پرداخت"
1581
 
1582
+ #: ../addons/buy-creds/gateways/skrill.php:351
1583
  msgid ""
1584
  "Optional text to show user once a transaction has been successfully "
1585
  "completed. This text is shown by Skrill."
1587
  "متنی اختیاری که به محض موفقیت آمیز بودن پرداخت ، توسط Skrill به کاربر "
1588
  "نمایش داده خواهد شد ."
1589
 
1590
+ #: ../addons/buy-creds/gateways/zombaio.php:154
1591
  #, php-format
1592
  msgid "Duplicate transaction. Received: %s"
1593
  msgstr ""
1594
 
1595
+ #: ../addons/buy-creds/gateways/zombaio.php:160
1596
  #, php-format
1597
  msgid "Live transaction while debug mode is enabled! Received: %s"
1598
  msgstr ""
1599
 
1600
+ #: ../addons/buy-creds/gateways/zombaio.php:265
1601
  msgid "Site ID"
1602
  msgstr "شناسه سایت"
1603
 
1604
+ #: ../addons/buy-creds/gateways/zombaio.php:271
1605
  msgid "GW Password"
1606
  msgstr "گذرواژه GW"
1607
 
1608
+ #: ../addons/buy-creds/gateways/zombaio.php:277
1609
  msgid "Pricing ID"
1610
  msgstr "شناسه بها"
1611
 
1612
+ #: ../addons/buy-creds/gateways/zombaio.php:289
1613
  msgid "IP Verification"
1614
  msgstr "تایید آی پی"
1615
 
1616
+ #: ../addons/buy-creds/gateways/zombaio.php:292
1617
  msgid "Do not verify that callbacks are coming from Zombaio."
1618
  msgstr "فراخوانی های برگشتی از سوی سامانه Zombaio را تایید نکنید ."
1619
 
1620
+ #: ../addons/buy-creds/gateways/zombaio.php:295
1621
  msgid "Language"
1622
  msgstr "زبان"
1623
 
1624
+ #: ../addons/buy-creds/gateways/zombaio.php:302
1625
  msgid "Postback URL (ZScript)"
1626
  msgstr "آدرس Postback ( برای اسکریپت های سامانه Zombaio )"
1627
 
1628
+ #: ../addons/buy-creds/gateways/zombaio.php:306
1629
  msgid ""
1630
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1631
  "address and click validate."
1715
  msgstr ""
1716
 
1717
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1718
+ #: transfer.php:259 ../modules/mycred-module-hooks.php:1714 ../modules/mycred-
1719
+ #: module-hooks.php:2032
1720
  msgid "Limits"
1721
  msgstr "محدودیت ها"
1722
 
1725
  msgstr ""
1726
 
1727
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1728
+ #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:814 ..
1729
+ #: addons/email-notices/myCRED-addon-email-notices.php:1031 ..
1730
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1731
+ #: addons/gateway/carts/mycred-woocommerce.php:120 ..
1732
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1733
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1734
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1735
+ #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1736
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1737
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1738
  #: includes/importers/mycred-cubepoints.php:365
1739
  msgid "Point Type"
1745
  msgstr ""
1746
 
1747
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1748
+ #: 395 ../modules/mycred-module-hooks.php:2507
1749
  msgid "Total"
1750
  msgstr ""
1751
 
1891
  msgid "Message to show when a coupon was successfully deposited to a users account."
1892
  msgstr ""
1893
 
 
 
 
 
1894
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1895
  msgid "Apply Coupon"
1896
  msgstr ""
1897
 
1898
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1899
+ #: notices/myCRED-addon-email-notices.php:1267
1900
  msgid "Email Notice"
1901
  msgstr "اطلاعیه ایمیلی"
1902
 
2102
  "نیز قابل ویرایش هستند ."
2103
 
2104
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2105
+ #: notices/myCRED-addon-email-notices.php:900
2106
  msgid "Email Settings"
2107
  msgstr "تنظیمات ایمیل"
2108
 
2109
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2110
+ #: notices/myCRED-addon-email-notices.php:1053
2111
  msgid "Senders Name:"
2112
  msgstr "نام ارسال کننده :"
2113
 
2114
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2115
+ #: notices/myCRED-addon-email-notices.php:1055
2116
  msgid "Senders Email:"
2117
  msgstr "آدرس ایمیل ارسال کننده :"
2118
 
2139
  "در صورتی که نمی خواید از HTML استفاده کنید ، توی این کادر چیزی وارد نفرمایید "
2140
  "."
2141
 
2142
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:719
2143
  #, php-format
2144
  msgctxt "Badge Title - Level 1,2,3.."
2145
  msgid "%s - Level %d"
2146
  msgstr ""
2147
 
2148
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
2149
+ #: notices/myCRED-addon-email-notices.php:949
2150
  msgid "Email Subject"
2151
  msgstr "موضوع ایمیل"
2152
 
2153
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2154
  msgid "Not Active"
2155
  msgstr "غیرفعال"
2156
 
2157
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:838
2158
  #, php-format
2159
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2160
  msgstr "برنامه ریزی شده در : <br /><strong>%1$s</strong>"
2161
 
2162
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:843
2163
  msgid "Active"
2164
  msgstr "فعال"
2165
 
2166
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:845
2167
  #, php-format
2168
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2169
  msgstr "فعال - آخرین اجرا : <br /><strong>%1$s</strong>"
2170
 
2171
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:855
2172
  msgid "Email is sent when"
2173
  msgstr "ایمیل فرستاده وقتی فرستاده شود که"
2174
 
2175
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:857
2176
  msgid "Missing instance for this notice!"
2177
  msgstr "یکی از مراحل برای این اطلاعیه جا افتاده است !"
2178
 
2179
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2180
+ #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
2181
+ #: addon-email-notices.php:870
2182
  msgid "Sent To"
2183
  msgstr "ارسال شده به"
2184
 
2185
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2186
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2187
+ #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2188
  msgid "User"
2189
  msgstr "کاربر"
2190
 
2191
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
2192
+ #: notices/myCRED-addon-email-notices.php:1020
2193
  msgid "Administrator"
2194
  msgstr "مدیر"
2195
 
2196
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2197
  msgid "Both Administrator and User"
2198
  msgstr "هم کاربر و هم مدیر"
2199
 
2200
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
2201
+ #: notices/myCRED-addon-email-notices.php:1037
2202
  msgid "All types"
2203
  msgstr ""
2204
 
2205
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2206
  msgid "Available Template Tags"
2207
  msgstr "نمونه تگ های قابل استفاده"
2208
 
2209
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:920
2210
  msgid "Email Header"
2211
  msgstr "سربرگ ایمیل"
2212
 
2213
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:986
2214
  msgid "Send this email notice when..."
2215
  msgstr "این اطلاعیه ایمیلی زمانی ارسال شود که ..."
2216
 
2217
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
2218
  msgid "Recipient:"
2219
  msgstr "گیرندگان ایمیل :"
2220
 
2221
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2222
  msgid "Both"
2223
  msgstr "هر دو"
2224
 
2225
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1025 ..
2226
+ #: addons/gateway/carts/mycred-woocommerce.php:160 ../modules/mycred-module-
2227
+ #: settings.php:674 ../modules/mycred-module-settings.php:695 ../modules/mycred-
2228
+ #: module-settings.php:720
2229
  msgid "Label"
2230
  msgstr "برچسب ( اتیکت )"
2231
 
2232
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
2233
  msgid "Reply-To Email:"
2234
  msgstr "ایمیلی که پاسخ ها به آن ارسال می شود :"
2235
 
2236
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
2237
  msgid "Save"
2238
  msgstr "ذخیره"
2239
 
2240
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
2241
  msgid "CSS Styling"
2242
  msgstr "صفحه آرایی با CSS"
2243
 
2244
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2245
  msgid "Site Related"
2246
  msgstr "مرتبط با سایت"
2247
 
2248
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2249
  msgid "Your websites title"
2250
  msgstr "عنوان وبسایت شما"
2251
 
2252
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2253
  msgid "Your websites address"
2254
  msgstr "آدرس وبسایت شما"
2255
 
2256
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
2257
  msgid "Your websites tagline (description)"
2258
  msgstr "شرح وبسایت شما"
2259
 
2260
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
2261
  msgid "Your websites admin email"
2262
  msgstr "آدرس ایمیل مدیر وبسایت شما"
2263
 
2264
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
2265
  msgid "Total number of blog members"
2266
  msgstr "تعداد کل کاربران سایت شما"
2267
 
2268
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2269
  msgid "The users new balance"
2270
  msgstr ""
2271
 
2272
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
2273
  msgid "The users old balance"
2274
  msgstr ""
2275
 
2276
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
2277
  msgid "The amount of points gained or lost in this instance"
2278
  msgstr ""
2279
 
2280
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2281
  msgid "The log entry"
2282
  msgstr ""
2283
 
2284
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
2285
+ #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
2286
+ #: addon-email-notices.php:1187
2287
  msgid "Email Notice Updated."
2288
  msgstr ""
2289
 
2290
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
2291
  msgid "Email Notice Activated"
2292
  msgstr "اطلاعیه فعال شد"
2293
 
2294
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
2295
  msgid "Email Notice Saved"
2296
  msgstr "اطلاعیه ذخیره شد"
2297
 
2298
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
2299
  msgid ""
2300
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2301
  "are not yet ready to use this email notice!"
2304
  "استفاده از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می "
2305
  "گردد ."
2306
 
2307
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
2308
  #, php-format
2309
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2310
  msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
2311
 
2312
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
2313
  msgid "This email notice is active."
2314
  msgstr "این اطلاعیه ی ایمیلی فعال شد ."
2315
 
2316
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
2317
  msgid "Settings saved."
2318
  msgstr ""
2319
 
2320
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2321
  msgid "Unsubscribe"
2322
  msgstr ""
2323
 
2324
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2325
  msgid "There are no email notifications yet."
2326
  msgstr ""
2327
 
2369
  msgstr "پرداخت شده"
2370
 
2371
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2372
+ #: addons/gateway/carts/mycred-woocommerce.php:30 ../includes/mycred-network.php:
2373
  #: 50 ../includes/mycred-network.php:51
2374
  msgid "myCRED"
2375
  msgstr "افزونه \"اعتبار من\""
2402
  "حاضر : %balance_f%"
2403
 
2404
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2405
+ #: addons/gateway/carts/mycred-woocommerce.php:263
2406
  msgid "Insufficient funds."
2407
  msgstr ""
2408
 
2442
  msgstr "آدرس اینترنتی لوگوی درگاه"
2443
 
2444
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2445
+ #: addons/gateway/carts/mycred-woocommerce.php:136
2446
  #, php-format
2447
  msgid "How much is 1 %_singular% worth in %currency%?"
2448
  msgstr ""
2450
  "%currency% )"
2451
 
2452
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2453
+ #: addons/gateway/carts/mycred-woocommerce.php:141 ..
2454
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2455
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2456
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2457
+ #: php:578 ../includes/mycred-shortcodes.php:977
2458
  msgid "Exchange Rate"
2459
  msgstr "نرخ مبادلات"
2460
 
2461
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2462
+ #: addons/gateway/carts/mycred-woocommerce.php:169 ..
2463
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2464
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2465
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
2472
  msgstr "درصد"
2473
 
2474
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2475
+ #: addons/gateway/carts/mycred-woocommerce.php:171 ..
2476
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2477
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2478
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
2551
  "پرداخت ) - TOTAL ( کل مبلغ سبد خرید را درج می کند ) - TRACKINGURL ( آدرس "
2552
  "صفحه ی پیگیری سفارش را درج می کند . ) ... استفاده از کدهای HTML مجاز نیست !"
2553
 
2554
+ #: ../addons/gateway/carts/mycred-woocommerce.php:31
2555
  msgid "Let users pay using their myCRED balance."
2556
  msgstr "به کاربرانتان امکان پرداخت از طریق امتیازات \"اعتبار من\" را بدهید ."
2557
 
2558
+ #: ../addons/gateway/carts/mycred-woocommerce.php:85
2559
  msgid "Enable/Disable"
2560
  msgstr "فعالسازی/غیرفعالسازی"
2561
 
2562
+ #: ../addons/gateway/carts/mycred-woocommerce.php:87
2563
  msgid "Enable myCRED Payment"
2564
  msgstr "فعالسازی پرداخت از طریق امتیازات \"اعتبار من\""
2565
 
2566
+ #: ../addons/gateway/carts/mycred-woocommerce.php:89
2567
  msgid ""
2568
  "Users who are not logged in or excluded from using myCRED will not have "
2569
  "access to this gateway!"
2571
  "کاربرانی که وارد سایت نشده باشند ( لوگین نکرده باشند ) و یا کاربران محروم ( "
2572
  "بن شده ) قابلیت دسترسی و استفاده از این درگاه پرداخت را ندارند !"
2573
 
2574
+ #: ../addons/gateway/carts/mycred-woocommerce.php:94
2575
  msgid "Title to show for this payment option."
2576
  msgstr "عنوانی که برای این گزینه ی پرداخت نمایش داده می شود ."
2577
 
2578
+ #: ../addons/gateway/carts/mycred-woocommerce.php:95
2579
  msgid "Pay with myCRED"
2580
  msgstr "پرداخت با \"اعتبار من\""
2581
 
2582
+ #: ../addons/gateway/carts/mycred-woocommerce.php:99
2583
  msgid "Customer Message"
2584
  msgstr "پیام مشتری"
2585
 
2586
+ #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
2587
+ #: addons/gateway/carts/mycred-woocommerce.php:182
2588
  msgid "Refund Log Template"
2589
  msgstr ""
2590
 
2591
+ #: ../addons/gateway/carts/mycred-woocommerce.php:122
2592
  msgid "Select the point type users can use to pay."
2593
  msgstr ""
2594
 
2595
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148
2596
  msgid "Show Total"
2597
  msgstr "نمایش کل هزینه"
2598
 
2599
+ #: ../addons/gateway/carts/mycred-woocommerce.php:150
2600
  msgid "Show the final price in %_plural% ."
2601
  msgstr "نمایش هزینه ی نهایی به واحد %_plural%"
2602
 
2603
+ #: ../addons/gateway/carts/mycred-woocommerce.php:153
2604
  msgid "Show in Cart"
2605
  msgstr "در سبد خرید نمایش بده"
2606
 
2607
+ #: ../addons/gateway/carts/mycred-woocommerce.php:154
2608
  msgid "Show on Checkout Page"
2609
  msgstr "نمایش در صفحه ی تسویه حساب"
2610
 
2611
+ #: ../addons/gateway/carts/mycred-woocommerce.php:155
2612
  msgid "Show in Cart and on Checkout Page"
2613
  msgstr "نمایش در هر دو صفحه ی سبد خرید و تسویه حساب"
2614
 
2615
+ #: ../addons/gateway/carts/mycred-woocommerce.php:162
2616
  msgid "Order Total in %_plural%"
2617
  msgstr "سفارش کل به واحد %_plural%"
2618
 
2619
+ #: ../addons/gateway/carts/mycred-woocommerce.php:178
2620
  msgid "Log entry template for profit sharing."
2621
  msgstr ""
2622
 
2623
+ #: ../addons/gateway/carts/mycred-woocommerce.php:184
2624
  msgid "Log entry template for refunds of profit shares."
2625
  msgstr ""
2626
 
2627
+ #: ../addons/gateway/carts/mycred-woocommerce.php:214
2628
  msgid "myCRED Payment"
2629
  msgstr "پرداختاز طریق \"اعتبار من\""
2630
 
2631
+ #: ../addons/gateway/carts/mycred-woocommerce.php:215
2632
  #, php-format
2633
  msgid ""
2634
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2640
  "موجودی کافی ندارند و یا کاربرانی که وارد سایت نشده اند ( لوگین نکرده اند ) "
2641
  "این روش پرداخت در صفحه ی تسویه حساب ، به آن ها نمایش داده نخواهد شد ."
2642
 
2643
+ #: ../addons/gateway/carts/mycred-woocommerce.php:240
2644
  msgid "You must be logged in to pay with %_plural%"
2645
  msgstr "برای پرداخت با %_plural% باید ابتدا در سایت ثبت نام کرده و وارد شوید ."
2646
 
2647
+ #: ../addons/gateway/carts/mycred-woocommerce.php:246
2648
  msgid "You can not use this gateway. Please try a different payment option."
2649
  msgstr ""
2650
  "شما نمی توانید از این روش برای پرداخت استفاده کنید . لطفا روش دیگری را برای "
2651
  "پرداخت انتخاب فرمایید ."
2652
 
2653
+ #: ../addons/gateway/carts/mycred-woocommerce.php:360
2654
+ #, php-format
2655
+ msgctxt "%s = Point amount formatted"
2656
+ msgid "Refunded %s"
2657
+ msgstr ""
2658
+
2659
+ #: ../addons/gateway/carts/mycred-woocommerce.php:408
2660
  msgid "Your account has successfully been charged."
2661
  msgstr "حساب شما با موفقیت شارژ شد ."
2662
 
2663
+ #: ../addons/gateway/carts/mycred-woocommerce.php:741 ..
2664
  #: addons/gateway/carts/mycred-wpecommerce.php:131
2665
  msgid "Your current balance"
2666
  msgstr "اعتبار فعلی شما"
2804
  msgstr "کاربران برای استفاده از درگاه باید وارد سایت شده باشند ( لوگین کرده باشند )"
2805
 
2806
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2807
+ #: modules/mycred-module-log.php:23 ../modules/mycred-module-log.php:24
2808
  msgid "Log"
2809
  msgstr "لیست گزارش ( لوگ )"
2810
 
2900
  msgstr "رد کردن"
2901
 
2902
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2903
+ #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2904
+ #: modules/mycred-module-settings.php:699
2905
  msgid "Delete"
2906
  msgstr "پاک کردن"
2907
 
3033
  msgstr "از قالب ها و کدهای CSS موجود ، برای زیباسازی آگاه سازها استفاده کنید ."
3034
 
3035
  #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
3036
+ #: addons/ranks/myCRED-addon-ranks.php:1427 ../addons/ranks/myCRED-addon-ranks.
3037
+ #: php:1472 ../modules/mycred-module-buddypress.php:464
3038
  msgid "Template"
3039
  msgstr "نمونه ( الگو )"
3040
 
3069
  "to user. Use zero to disable."
3070
  msgstr ""
3071
 
3072
+ #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
3073
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
3074
+ #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
3075
+ #: addons/ranks/myCRED-addon-ranks.php:833 ../addons/ranks/myCRED-addon-ranks.
3076
+ #: php:1310 ../addons/ranks/myCRED-addon-ranks.php:1601
3077
  msgid "Ranks"
3078
  msgstr "رنک و مدال ها"
3079
 
3080
+ #: ../addons/ranks/myCRED-addon-ranks.php:424
3081
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3082
  msgstr "اخطار ! کل مدال ها پاکسازی خواهند شد ! این عمل غیرقابل بازگشت است !"
3083
 
3084
+ #: ../addons/ranks/myCRED-addon-ranks.php:425
3085
  msgid "Are you sure you want to re-assign user ranks?"
3086
  msgstr "مطمئنید که می خواهید دوباره عمل تخصیص مدال های کاربری را انجام دهید ؟"
3087
 
3088
+ #: ../addons/ranks/myCRED-addon-ranks.php:441
3089
  #, php-format
3090
  msgid "Ranks for %s"
3091
  msgstr ""
3092
 
3093
+ #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
3094
+ #: php:833
3095
  msgid "Rank"
3096
  msgstr "رنک و مدال"
3097
 
3098
+ #: ../addons/ranks/myCRED-addon-ranks.php:449
3099
  msgid "Add New Rank"
3100
  msgstr "اضافه کردن مدال جدید"
3101
 
3102
+ #: ../addons/ranks/myCRED-addon-ranks.php:450
3103
  msgid "Edit Rank"
3104
  msgstr "ویرایش مدال"
3105
 
3106
+ #: ../addons/ranks/myCRED-addon-ranks.php:451
3107
  msgid "New Rank"
3108
  msgstr "مدال جدید"
3109
 
3110
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
3111
  msgid "View Rank"
3112
  msgstr "نمایش مدال"
3113
 
3114
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
3115
  msgid "Search Ranks"
3116
  msgstr "جستجو در میان مدال ها"
3117
 
3118
+ #: ../addons/ranks/myCRED-addon-ranks.php:455
3119
  msgid "No ranks found"
3120
  msgstr "هیچ مدالی یافت نشد"
3121
 
3122
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
3123
  msgid "No ranks found in Trash"
3124
  msgstr "هیچ رنکی در زباله دان یافت نشد"
3125
 
3126
+ #: ../addons/ranks/myCRED-addon-ranks.php:540
3127
  #, php-format
3128
  msgid "Completed - Total of %d users effected"
3129
  msgstr "اتمام عملیات - کل %d کاربر ترتیب اثر داده شدند"
3130
 
3131
+ #: ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-addon-ranks.
3132
+ #: php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ../addons/ranks/myCRED-
3133
+ #: addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.php:981 ..
3134
+ #: addons/ranks/myCRED-addon-ranks.php:982 ../addons/ranks/myCRED-addon-ranks.
3135
+ #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986
3136
  msgid "Rank Updated."
3137
  msgstr ""
3138
 
3139
+ #: ../addons/ranks/myCRED-addon-ranks.php:983
3140
  msgid "Rank Enabled"
3141
  msgstr ""
3142
 
3143
+ #: ../addons/ranks/myCRED-addon-ranks.php:984
3144
  msgid "Rank Saved"
3145
  msgstr "مدال ذخیره شد"
3146
 
3147
+ #: ../addons/ranks/myCRED-addon-ranks.php:1023
3148
  #, php-format
3149
  msgid "<strong>Rank:</strong> %s"
3150
  msgstr ""
3151
 
3152
+ #: ../addons/ranks/myCRED-addon-ranks.php:1039 ../addons/ranks/myCRED-addon-ranks.
3153
+ #: php:1122
3154
  msgid "Rank Title"
3155
  msgstr "عنوان مدال"
3156
 
3157
+ #: ../addons/ranks/myCRED-addon-ranks.php:1040
3158
  msgid "Logo"
3159
  msgstr "لوگو"
3160
 
3161
+ #: ../addons/ranks/myCRED-addon-ranks.php:1041
3162
  msgid "Requirement"
3163
  msgstr "پیش نیاز"
3164
 
3165
+ #: ../addons/ranks/myCRED-addon-ranks.php:1067
3166
  msgid "No Logo Set"
3167
  msgstr "لوگویی ست نشده است"
3168
 
3169
+ #: ../addons/ranks/myCRED-addon-ranks.php:1082 ../addons/ranks/myCRED-addon-ranks.
3170
+ #: php:1087
3171
  msgid "Any Value"
3172
  msgstr "هر مقداری"
3173
 
3174
+ #: ../addons/ranks/myCRED-addon-ranks.php:1089
3175
  msgid "Maximum %plural%"
3176
  msgstr "بیشترین مقدار %plural%"
3177
 
3178
+ #: ../addons/ranks/myCRED-addon-ranks.php:1137
3179
  msgid "Rank Settings"
3180
  msgstr "تنظیمات مدال"
3181
 
3182
+ #: ../addons/ranks/myCRED-addon-ranks.php:1191
3183
  msgid "Minimum %plural% to reach this rank"
3184
  msgstr "کمترین مقدار %plural% برای دستیابی به این مدال"
3185
 
3186
+ #: ../addons/ranks/myCRED-addon-ranks.php:1195
3187
  msgid "Maximum %plural% to be included in this rank"
3188
  msgstr "بیشترین مقدار %plural% که این مدال شامل آن می شود"
3189
 
3190
+ #: ../addons/ranks/myCRED-addon-ranks.php:1213
3191
  msgid "All Published Ranks"
3192
  msgstr "همه ی مدال های منتشر شده"
3193
 
3194
+ #: ../addons/ranks/myCRED-addon-ranks.php:1223 ../addons/ranks/myCRED-addon-ranks.
3195
+ #: php:1225
3196
  msgid "Not Set"
3197
  msgstr "تنظیم نشده"
3198
 
3199
+ #: ../addons/ranks/myCRED-addon-ranks.php:1231
3200
  msgid "No Ranks found"
3201
  msgstr "مدالی پیدا نشد"
3202
 
3203
+ #: ../addons/ranks/myCRED-addon-ranks.php:1315
3204
  msgid "Rank Features"
3205
  msgstr "ویژگی های مدال"
3206
 
3207
+ #: ../addons/ranks/myCRED-addon-ranks.php:1319
3208
  msgid "%plural% requirement"
3209
  msgstr "پیش نیاز %plural%"
3210
 
3211
+ #: ../addons/ranks/myCRED-addon-ranks.php:1320
3212
  msgid "Featured Image (Logo)"
3213
  msgstr "عکس شاخص ( لوگو )"
3214
 
3215
+ #: ../addons/ranks/myCRED-addon-ranks.php:1322
3216
  msgid "Content"
3217
  msgstr "محتوا"
3218
 
3219
+ #: ../addons/ranks/myCRED-addon-ranks.php:1324
3220
  msgid "Excerpt"
3221
  msgstr "توضیح کوتاه ( نقل قول )"
3222
 
3223
+ #: ../addons/ranks/myCRED-addon-ranks.php:1326
3224
  msgid "Comments"
3225
  msgstr "دیدگاه ها"
3226
 
3227
+ #: ../addons/ranks/myCRED-addon-ranks.php:1328
3228
  msgid "Page Attributes"
3229
  msgstr "خصوصیت های صفحه"
3230
 
3231
+ #: ../addons/ranks/myCRED-addon-ranks.php:1330
3232
  msgid "Custom Fields"
3233
  msgstr "فیلدهای اضافی"
3234
 
3235
+ #: ../addons/ranks/myCRED-addon-ranks.php:1334
3236
  msgid "Public"
3237
  msgstr "عمومی"
3238
 
3239
+ #: ../addons/ranks/myCRED-addon-ranks.php:1338
3240
  msgid ""
3241
  "If you want to create a template archive for each rank, you must select to "
3242
  "have ranks public. Defaults to disabled."
3244
  "اگر می خواهید آرشیو نمونه ای برای هر مدال بسازید ، باید انتخاب کنید که مدال "
3245
  "ها عمومی باشند . در حالت پیش فرض این حالت غیرفعال می باشد ."
3246
 
3247
+ #: ../addons/ranks/myCRED-addon-ranks.php:1341
3248
  msgid "Archive URL"
3249
  msgstr "نشانی اینترنتی آرشیو"
3250
 
3251
+ #: ../addons/ranks/myCRED-addon-ranks.php:1345
3252
  msgid "Ignored if Ranks are not public"
3253
  msgstr "اگر مدال ها منتشر نشده اند ، آن ها را نادیده بگیر"
3254
 
3255
+ #: ../addons/ranks/myCRED-addon-ranks.php:1348
3256
  msgid "Display Order"
3257
  msgstr "ترتیب نمایش"
3258
 
3259
+ #: ../addons/ranks/myCRED-addon-ranks.php:1356
3260
  msgid "Ascending - Lowest rank to highest"
3261
  msgstr "صعودی - از پایین ترین مدال ها ، به بالاترین مدال ها"
3262
 
3263
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
3264
  msgid "Descending - Highest rank to lowest"
3265
  msgstr "نزولی - از بالاترین مدال ها ، به پایین ترین مدال ها"
3266
 
3267
+ #: ../addons/ranks/myCRED-addon-ranks.php:1368
3268
  msgid ""
3269
  "Select in what order ranks should be displayed in your admin area and/or "
3270
  "front if ranks are \"Public\""
3272
  "انتخاب کنید که مدال ها به چه ترتیبی در ناحیه ی مدیریتی و/یا کاربری نمایش "
3273
  "داده شوند ، البته اگر مدال ها \"منتشر شده\" ( عمومی ) باشند ."
3274
 
3275
+ #: ../addons/ranks/myCRED-addon-ranks.php:1374
3276
  msgid "Rank Basis"
3277
  msgstr "روش مدال دهی"
3278
 
3279
+ #: ../addons/ranks/myCRED-addon-ranks.php:1377
3280
  msgid "Users are ranked according to their current balance."
3281
  msgstr "کاربران بر اساس میزان امتیاز فعلیشان مدال می گیرند ."
3282
 
3283
+ #: ../addons/ranks/myCRED-addon-ranks.php:1380
3284
  msgid ""
3285
  "Users are ranked according to the total amount of %_plural% they have "
3286
  "accumulated."
3287
  msgstr "کاربران بر اساس کل %_plural% ای که جمع کرده اند مدال می گیرند ."
3288
 
3289
+ #: ../addons/ranks/myCRED-addon-ranks.php:1384 ../addons/ranks/myCRED-addon-ranks.
3290
+ #: php:1389
3291
  msgid "Calculate Totals"
3292
  msgstr "محاسبه ی کل امتیازها"
3293
 
3294
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3295
  msgid ""
3296
  "Use this button to calculate or recalculate your users totals. If not used, "
3297
  "the users current balance will be used as a starting point."
3298
  msgstr ""
3299
 
3300
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3301
  msgid ""
3302
  "Once a users total has been calculated, they will be assigned to their "
3303
  "appropriate roles. For this reason, it is highly recommended that you first "
3307
  "امتیازشان منصوب می شوند . به همین منظور ، شدیدا پیشنهاد می گردد که ابتدا "
3308
  "مدال های خودتان را پیاده سازی کنید ."
3309
 
3310
+ #: ../addons/ranks/myCRED-addon-ranks.php:1388
3311
  msgid ""
3312
  "Depending on your log size and number of users this process may take a while."
3313
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3317
  "طول بکشد . لطفا تا پایان عملیات ، صفحه را رفرش نکنید ، آن را نبسته و یا بر "
3318
  "روی \"به روزرسانی تنظیمات\" کلیک نفرمایید ."
3319
 
3320
+ #: ../addons/ranks/myCRED-addon-ranks.php:1405 ../addons/ranks/myCRED-addon-ranks.
3321
+ #: php:1450 ../modules/mycred-module-buddypress.php:424
3322
  msgid "Do not show."
3323
  msgstr "عدم نمایش"
3324
 
3325
+ #: ../addons/ranks/myCRED-addon-ranks.php:1406
3326
  msgid "Include in Profile Header."
3327
  msgstr "شامل ( نمایش در ) هِدر ( سربرگ ) پروفایل کاربری"
3328
 
3329
+ #: ../addons/ranks/myCRED-addon-ranks.php:1408
3330
  msgid "Include under the \"Profile\" tab and Profile Header."
3331
  msgstr "نمایش در زیر تب \"Profile\" و همچنین سربرگ پروفایل کاربری ."
3332
 
3333
+ #: ../addons/ranks/myCRED-addon-ranks.php:1412
3334
  msgid "Rank in BuddyPress"
3335
  msgstr "مدال در بادی پرس"
3336
 
3337
+ #: ../addons/ranks/myCRED-addon-ranks.php:1429 ../addons/ranks/myCRED-addon-ranks.
3338
+ #: php:1474
3339
  #, php-format
3340
  msgid ""
3341
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3342
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3343
  msgstr ""
3344
 
3345
+ #: ../addons/ranks/myCRED-addon-ranks.php:1451
3346
  msgid "Include in Topic Replies"
3347
  msgstr ""
3348
 
3349
+ #: ../addons/ranks/myCRED-addon-ranks.php:1453
3350
  msgid "Include in Topic Replies and Profile"
3351
  msgstr ""
3352
 
3353
+ #: ../addons/ranks/myCRED-addon-ranks.php:1457
3354
  msgid "Rank in bbPress"
3355
  msgstr ""
3356
 
3357
+ #: ../addons/ranks/myCRED-addon-ranks.php:1536
3358
  msgid "Script Communication Error"
3359
  msgstr "خطا در ارتباط با اسکریپت"
3360
 
3361
+ #: ../addons/ranks/myCRED-addon-ranks.php:1604 ../modules/mycred-module-settings.
3362
+ #: php:632
3363
  msgid "User Meta Key"
3364
  msgstr "کلید اطلاعات کاربر ( Meta key ("
3365
 
3366
+ #: ../addons/ranks/myCRED-addon-ranks.php:1608
3367
  msgid "No. of ranks"
3368
  msgstr "تعداد مدال ها"
3369
 
3370
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3371
  msgid "Remove All Ranks"
3372
  msgstr "پاکسازی همه ی مدال ها"
3373
 
3374
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3375
  msgid "Assign Ranks to Users"
3376
  msgstr "تخصیص دادن مدال به کاربران"
3377
 
3574
  msgstr ""
3575
 
3576
  #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3577
+ #: modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27 ..
3578
+ #: modules/mycred-module-hooks.php:28
3579
  msgid "Hooks"
3580
  msgstr "پنل تنظیمات امتیازها"
3581
 
3613
  msgstr ""
3614
 
3615
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3616
+ #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3617
  msgid "Today"
3618
  msgstr "امروز"
3619
 
3620
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3621
+ #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3622
  msgid "This Week"
3623
  msgstr "این هفته"
3624
 
3625
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3626
+ #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3627
  msgid "This Month"
3628
  msgstr "این ماه"
3629
 
3692
  "امتیاز بیشتر را ندارید ."
3693
 
3694
  #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3695
+ #: php:2454
3696
  msgid "Transfer"
3697
  msgstr "جابجایی"
3698
 
3729
  "جابجایی امتیاز امکان پذیر نخواهد بود !"
3730
 
3731
  #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3732
+ #: php:2582
3733
  msgid "Insufficient Funds. Please try a lower amount."
3734
  msgstr ""
3735
 
3883
  msgid "recipients %s"
3884
  msgstr "گیرندگان %s"
3885
 
3886
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3887
  msgid "To:"
3888
  msgstr "به :"
3889
 
3890
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
3891
  msgid "Amount:"
3892
  msgstr "مقدار امتیاز :"
3893
 
4083
  msgid "Available Template Tags:"
4084
  msgstr ""
4085
 
4086
+ #: ../includes/mycred-functions.php:1694
4087
  msgid "Entire Log"
4088
  msgstr ""
4089
 
4090
+ #: ../includes/mycred-functions.php:1699 ../includes/mycred-functions.php:1700
4091
  msgid "Displayed Rows"
4092
  msgstr ""
4093
 
4094
+ #: ../includes/mycred-functions.php:1707
4095
  msgid "Search Results"
4096
  msgstr ""
4097
 
4098
+ #: ../includes/mycred-functions.php:1708
4099
  msgid "My Entire Log"
4100
  msgstr ""
4101
 
4102
+ #: ../includes/mycred-functions.php:1875
4103
  msgid "ref empty"
4104
  msgstr "ارجاع ( استرداد ) خالی می باشد"
4105
 
4106
+ #: ../includes/mycred-functions.php:1883
4107
  msgid "incorrect user id format"
4108
  msgstr "فرمت نامعتبر شناسه ی کاربر"
4109
 
4110
+ #: ../includes/mycred-functions.php:1896
4111
  msgid "incorrect unix timestamp (from):"
4112
  msgstr ""
4113
 
4114
+ #: ../includes/mycred-functions.php:1905
4115
  msgid "incorrect unix timestamp (to):"
4116
  msgstr ""
4117
 
4118
+ #: ../includes/mycred-functions.php:2314
4119
  msgid "Website Registration"
4120
  msgstr ""
4121
 
4122
+ #: ../includes/mycred-functions.php:2315
4123
  msgid "Website Visit"
4124
  msgstr ""
4125
 
4126
+ #: ../includes/mycred-functions.php:2316
4127
  msgid "Viewing Content (Member)"
4128
  msgstr ""
4129
 
4130
+ #: ../includes/mycred-functions.php:2317
4131
  msgid "Viewing Content (Author)"
4132
  msgstr ""
4133
 
4134
+ #: ../includes/mycred-functions.php:2318
4135
  msgid "Logging in"
4136
  msgstr ""
4137
 
4138
+ #: ../includes/mycred-functions.php:2319
4139
  msgid "Publishing Content"
4140
  msgstr ""
4141
 
4142
+ #: ../includes/mycred-functions.php:2320 ../modules/mycred-module-hooks.php:1663
4143
  msgid "Approved Comment"
4144
  msgstr "نظرات تایید شده"
4145
 
4146
+ #: ../includes/mycred-functions.php:2321
4147
  msgid "Unapproved Comment"
4148
  msgstr ""
4149
 
4150
+ #: ../includes/mycred-functions.php:2322
4151
  msgid "SPAM Comment"
4152
  msgstr ""
4153
 
4154
+ #: ../includes/mycred-functions.php:2323
4155
  msgid "Deleted Comment"
4156
  msgstr ""
4157
 
4158
+ #: ../includes/mycred-functions.php:2324
4159
  msgid "Link Click"
4160
  msgstr ""
4161
 
4162
+ #: ../includes/mycred-functions.php:2325
4163
  msgid "Watching Video"
4164
  msgstr ""
4165
 
4166
+ #: ../includes/mycred-functions.php:2326
4167
  msgid "Visitor Referral"
4168
  msgstr ""
4169
 
4170
+ #: ../includes/mycred-functions.php:2327
4171
  msgid "Signup Referral"
4172
  msgstr ""
4173
 
4174
+ #: ../includes/mycred-functions.php:2331
4175
  msgid "New Profile Update"
4176
  msgstr ""
4177
 
4178
+ #: ../includes/mycred-functions.php:2332
4179
  msgid "Profile Update Removal"
4180
  msgstr ""
4181
 
4182
+ #: ../includes/mycred-functions.php:2333
4183
  msgid "Avatar Upload"
4184
  msgstr ""
4185
 
4186
+ #: ../includes/mycred-functions.php:2334
4187
  msgid "New Friendship"
4188
  msgstr ""
4189
 
4190
+ #: ../includes/mycred-functions.php:2335
4191
  msgid "Ended Friendship"
4192
  msgstr ""
4193
 
4194
+ #: ../includes/mycred-functions.php:2336
4195
  msgid "New Profile Comment"
4196
  msgstr ""
4197
 
4198
+ #: ../includes/mycred-functions.php:2337
4199
  msgid "Profile Comment Deletion"
4200
  msgstr ""
4201
 
4202
+ #: ../includes/mycred-functions.php:2338
4203
  msgid "New Message"
4204
  msgstr ""
4205
 
4206
+ #: ../includes/mycred-functions.php:2339
4207
  msgid "Sending Gift"
4208
  msgstr ""
4209
 
4210
+ #: ../includes/mycred-functions.php:2340
4211
  msgid "New Group"
4212
  msgstr ""
4213
 
4214
+ #: ../includes/mycred-functions.php:2341
4215
  msgid "Deleted Group"
4216
  msgstr ""
4217
 
4218
+ #: ../includes/mycred-functions.php:2342
4219
  msgid "New Group Forum Topic"
4220
  msgstr ""
4221
 
4222
+ #: ../includes/mycred-functions.php:2343
4223
  msgid "Edit Group Forum Topic"
4224
  msgstr ""
4225
 
4226
+ #: ../includes/mycred-functions.php:2344
4227
  msgid "New Group Forum Post"
4228
  msgstr ""
4229
 
4230
+ #: ../includes/mycred-functions.php:2345
4231
  msgid "Edit Group Forum Post"
4232
  msgstr ""
4233
 
4234
+ #: ../includes/mycred-functions.php:2346
4235
  msgid "Joining Group"
4236
  msgstr ""
4237
 
4238
+ #: ../includes/mycred-functions.php:2347
4239
  msgid "Leaving Group"
4240
  msgstr ""
4241
 
4242
+ #: ../includes/mycred-functions.php:2348
4243
  msgid "New Group Avatar"
4244
  msgstr ""
4245
 
4246
+ #: ../includes/mycred-functions.php:2349
4247
  msgid "New Group Comment"
4248
  msgstr ""
4249
 
4250
+ #: ../includes/mycred-functions.php:2353 ../plugins/mycred-hook-buddypress-media.
4251
  #: php:205
4252
  msgid "Photo Upload"
4253
  msgstr ""
4254
 
4255
+ #: ../includes/mycred-functions.php:2354 ../plugins/mycred-hook-buddypress-media.
4256
  #: php:219
4257
  msgid "Video Upload"
4258
  msgstr ""
4259
 
4260
+ #: ../includes/mycred-functions.php:2355 ../plugins/mycred-hook-buddypress-media.
4261
  #: php:233
4262
  msgid "Music Upload"
4263
  msgstr ""
4264
 
4265
+ #: ../includes/mycred-functions.php:2359
4266
  msgid "New Link"
4267
  msgstr ""
4268
 
4269
+ #: ../includes/mycred-functions.php:2360
4270
  msgid "Link Voting"
4271
  msgstr ""
4272
 
4273
+ #: ../includes/mycred-functions.php:2361
4274
  msgid "Link Update"
4275
  msgstr ""
4276
 
4277
+ #: ../includes/mycred-functions.php:2365
4278
  msgid "New Forum (bbPress)"
4279
  msgstr ""
4280
 
4281
+ #: ../includes/mycred-functions.php:2366
4282
  msgid "New Forum Topic (bbPress)"
4283
  msgstr ""
4284
 
4285
+ #: ../includes/mycred-functions.php:2367
4286
  msgid "Favorited Topic (bbPress)"
4287
  msgstr ""
4288
 
4289
+ #: ../includes/mycred-functions.php:2368
4290
  msgid "New Topic Reply (bbPress)"
4291
  msgstr ""
4292
 
4293
+ #: ../includes/mycred-functions.php:2372
4294
  msgid "Form Submission (Contact Form 7)"
4295
  msgstr ""
4296
 
4297
+ #: ../includes/mycred-functions.php:2375
4298
  msgid "Form Submission (Gravity Form)"
4299
  msgstr ""
4300
 
4301
+ #: ../includes/mycred-functions.php:2378
4302
  msgid "New Forum Topic (SimplePress)"
4303
  msgstr ""
4304
 
4305
+ #: ../includes/mycred-functions.php:2379
4306
  msgid "New Forum Post (SimplePress)"
4307
  msgstr ""
4308
 
4309
+ #: ../includes/mycred-functions.php:2388
4310
  msgid "Affiliate Signup (AffiliateWP)"
4311
  msgstr ""
4312
 
4313
+ #: ../includes/mycred-functions.php:2389
4314
  msgid "Referred Visit (AffiliateWP)"
4315
  msgstr ""
4316
 
4317
+ #: ../includes/mycred-functions.php:2390
4318
  msgid "Affiliate Referral (AffiliateWP)"
4319
  msgstr ""
4320
 
4321
+ #: ../includes/mycred-functions.php:2391
4322
  msgid "Referral Refund (AffiliateWP)"
4323
  msgstr ""
4324
 
4325
+ #: ../includes/mycred-functions.php:2395 ../plugins/mycred-hook-wp-postratings.
4326
  #: php:150
4327
  msgid "Adding a Rating"
4328
  msgstr ""
4329
 
4330
+ #: ../includes/mycred-functions.php:2396 ../plugins/mycred-hook-wp-postratings.
4331
  #: php:169
4332
  msgid "Receiving a Rating"
4333
  msgstr ""
4334
 
4335
+ #: ../includes/mycred-functions.php:2400
4336
  msgid "Poll Voting"
4337
  msgstr ""
4338
 
4339
+ #: ../includes/mycred-functions.php:2403
4340
  msgid "Sending an Invite"
4341
  msgstr ""
4342
 
4343
+ #: ../includes/mycred-functions.php:2404
4344
  msgid "Accepting an Invite"
4345
  msgstr ""
4346
 
4347
+ #: ../includes/mycred-functions.php:2410
4348
  msgid "Banking Payout"
4349
  msgstr ""
4350
 
4351
+ #: ../includes/mycred-functions.php:2413
4352
  msgid "buyCRED Purchase (PayPal Standard)"
4353
  msgstr ""
4354
 
4355
+ #: ../includes/mycred-functions.php:2414
4356
  msgid "buyCRED Purchase (Skrill)"
4357
  msgstr ""
4358
 
4359
+ #: ../includes/mycred-functions.php:2415
4360
  msgid "buyCRED Purchase (Zombaio)"
4361
  msgstr ""
4362
 
4363
+ #: ../includes/mycred-functions.php:2416
4364
  msgid "buyCRED Purchase (NETBilling)"
4365
  msgstr ""
4366
 
4367
+ #: ../includes/mycred-functions.php:2417
4368
  msgid "buyCRED Purchase (BitPay)"
4369
  msgstr ""
4370
 
4371
+ #: ../includes/mycred-functions.php:2422
4372
  msgid "Coupon Purchase"
4373
  msgstr ""
4374
 
4375
+ #: ../includes/mycred-functions.php:2426
4376
  msgid "Store Purchase (WooCommerce)"
4377
  msgstr ""
4378
 
4379
+ #: ../includes/mycred-functions.php:2427
4380
  msgid "Store Reward (WooCommerce)"
4381
  msgstr ""
4382
 
4383
+ #: ../includes/mycred-functions.php:2428
4384
  msgid "Product Review (WooCommerce)"
4385
  msgstr ""
4386
 
4387
+ #: ../includes/mycred-functions.php:2431
4388
  msgid "Store Purchase (MarketPress)"
4389
  msgstr ""
4390
 
4391
+ #: ../includes/mycred-functions.php:2432
4392
  msgid "Store Reward (MarketPress)"
4393
  msgstr ""
4394
 
4395
+ #: ../includes/mycred-functions.php:2435
4396
  msgid "Store Purchase (WP E-Commerce)"
4397
  msgstr ""
4398
 
4399
+ #: ../includes/mycred-functions.php:2441
4400
  msgid "Event Payment (Event Espresso)"
4401
  msgstr ""
4402
 
4403
+ #: ../includes/mycred-functions.php:2442
4404
  msgid "Event Sale (Event Espresso)"
4405
  msgstr ""
4406
 
4407
+ #: ../includes/mycred-functions.php:2446
4408
  msgid "Event Payment (Events Manager)"
4409
  msgstr ""
4410
 
4411
+ #: ../includes/mycred-functions.php:2447
4412
  msgid "Event Sale (Events Manager)"
4413
  msgstr ""
4414
 
4415
+ #: ../includes/mycred-functions.php:2451
4416
  msgid "Content Purchase / Sale"
4417
  msgstr ""
4418
 
4419
+ #: ../includes/mycred-functions.php:2458
4420
  msgid "Manual Adjustment by Admin"
4421
  msgstr ""
4422
 
4423
+ #: ../includes/mycred-functions.php:2528 ../includes/mycred-shortcodes.php:925
4424
  msgid "Point types not found."
4425
  msgstr ""
4426
 
4427
+ #: ../includes/mycred-functions.php:2540 ../includes/mycred-functions.php:2560 ..
4428
+ #: includes/mycred-shortcodes.php:931 ../includes/mycred-shortcodes.php:939
4429
  #, php-format
4430
  msgid "You are excluded from using %s."
4431
  msgstr ""
4432
 
4433
+ #: ../includes/mycred-functions.php:2550 ../includes/mycred-shortcodes.php:935
4434
  msgid "Your balance is too low to use this feature."
4435
  msgstr ""
4436
 
4437
+ #: ../includes/mycred-functions.php:2573
4438
  #, php-format
4439
  msgid "You must exchange at least %s!"
4440
  msgstr ""
4441
 
4442
+ #: ../includes/mycred-functions.php:2595
4443
  #, php-format
4444
  msgid "Exchange from %s"
4445
  msgstr ""
4446
 
4447
+ #: ../includes/mycred-functions.php:2607
4448
  #, php-format
4449
  msgid "Exchange to %s"
4450
  msgstr ""
4451
 
4452
+ #: ../includes/mycred-functions.php:2615
4453
  #, php-format
4454
  msgid "You have successfully exchanged %s into %s."
4455
  msgstr ""
4456
 
4457
+ #: ../includes/mycred-functions.php:2647
4458
  msgid "per day"
4459
  msgstr ""
4460
 
4461
+ #: ../includes/mycred-functions.php:2649
4462
  msgid "per week"
4463
  msgstr ""
4464
 
4465
+ #: ../includes/mycred-functions.php:2651
4466
  msgid "per month"
4467
  msgstr ""
4468
 
4469
+ #: ../includes/mycred-functions.php:2653
4470
  msgid "in total"
4471
  msgstr ""
4472
 
4473
+ #: ../includes/mycred-functions.php:2655 ../includes/mycred-functions.php:2659
4474
  #, php-format
4475
  msgid "Maximum once"
4476
  msgid_plural "Maximum %d times"
4538
  "پوزش می خواهیم ، اما سایت وردپرسی شما حداقل امکانات لازم برای اجرای افزونه "
4539
  "\"اعتبارمن\" را ندارد . خطاهای زیر پیش آمده :"
4540
 
4541
+ #: ../includes/mycred-install.php:268
4542
  msgid "myCRED needs your attention."
4543
  msgstr "افزونه ی \"اعتبار من\" نیازمند چند دقیقه از وقت شماست ."
4544
 
4545
+ #: ../includes/mycred-install.php:268
4546
  msgid "Run Setup"
4547
  msgstr "اجرای نصب"
4548
 
4549
+ #: ../includes/mycred-install.php:280 ../includes/mycred-install.php:281
4550
  msgid "myCRED Setup"
4551
  msgstr "راه اندازی \"اعتبار من\""
4552
 
4553
+ #: ../includes/mycred-install.php:410
4554
  #, php-format
4555
  msgid "%s Setup"
4556
  msgstr ""
4557
 
4558
+ #: ../includes/mycred-install.php:412
4559
  msgid "Step"
4560
  msgstr "گام"
4561
 
4562
+ #: ../includes/mycred-install.php:436
4563
  msgid ""
4564
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4565
  "points format, layout and security settings."
4567
  "برای نصب \"اعتبار من\" بر روی \"آغاز نصب\" کلیک فرمایید . در ادامه قادر خواهید "
4568
  "بود تا طرح امتیازها ، نمایه و تنظیمات امنیتی خود را اعمال فرمایید ."
4569
 
4570
+ #: ../includes/mycred-install.php:437
4571
  msgid "Begin Setup"
4572
  msgstr "آغاز نصب"
4573
 
4574
+ #: ../includes/mycred-install.php:492
4575
  msgid "Select the format you want to use for your points."
4576
  msgstr "طرح ( فرمت ) مورد نظرتان برای امتیازها را انتخاب فرمایید ."
4577
 
4578
+ #: ../includes/mycred-install.php:493
4579
  msgid "Format"
4580
  msgstr "طرح ( فرمت )"
4581
 
4582
+ #: ../includes/mycred-install.php:496
4583
  msgid "Separators"
4584
  msgstr "جداکننده ها"
4585
 
4586
+ #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:531
4587
  msgid "Decimals"
4588
  msgstr "اعداد اعشاری"
4589
 
4590
+ #: ../includes/mycred-install.php:508
4591
  msgid "Use zero for no decimals or maximum 20."
4592
  msgstr ""
4593
 
4594
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:537
4595
  msgid "Presentation"
4596
  msgstr "چگونگی نمایش امتیازها"
4597
 
4598
+ #: ../includes/mycred-install.php:514 ../modules/mycred-module-settings.php:518
4599
  msgid "Name (Singular)"
4600
  msgstr "نام امتیاز مورد نظر به صورت مفرد ( مثلا امتیاز )"
4601
 
4602
+ #: ../includes/mycred-install.php:518 ../modules/mycred-module-settings.php:523
4603
  msgid "Name (Plural)"
4604
  msgstr "نام امتیاز مورد نظر به صورت جمع ( مثلا امتیازها )"
4605
 
4606
+ #: ../includes/mycred-install.php:524 ../modules/mycred-module-settings.php:540
4607
  msgid "Prefix"
4608
  msgstr "پیشوند"
4609
 
4610
+ #: ../includes/mycred-install.php:532 ../modules/mycred-module-settings.php:548
4611
  msgid "Suffix"
4612
  msgstr "پسوند"
4613
 
4614
+ #: ../includes/mycred-install.php:536
4615
  msgid "Cancel Setup"
4616
  msgstr "لغو عملیات راه اندازی"
4617
 
4618
+ #: ../includes/mycred-install.php:536 ../includes/mycred-install.php:606
4619
  msgid "Next"
4620
  msgstr "گام بعدی"
4621
 
4622
+ #: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:556
4623
  msgid "Security"
4624
  msgstr "امنیت"
4625
 
4626
+ #: ../includes/mycred-install.php:571
4627
  msgid "Edit Settings Capability"
4628
  msgstr "ویرایش تنظیمات ظرفیتی"
4629
 
4630
+ #: ../includes/mycred-install.php:575
4631
  msgid "Edit Users %plural% Capability"
4632
  msgstr "ویرایش ظرفیت %plural% کاربر"
4633
 
4634
+ #: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:569
4635
  msgid "Maximum %plural% payouts"
4636
  msgstr "بیشترین پرداخت %plural%"
4637
 
4638
+ #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:571
4639
  msgid ""
4640
  "As an added security, you can set the maximum amount a user can gain or "
4641
  "loose in a single instance. If used, make sure this is the maximum amount a "
4648
  "امتیازی که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم "
4649
  "تعیین بکنید . برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
4650
 
4651
+ #: ../includes/mycred-install.php:584 ../modules/mycred-module-settings.php:574
4652
  msgid "Excludes"
4653
  msgstr "کاربران استثنا"
4654
 
4655
+ #: ../includes/mycred-install.php:588 ../modules/mycred-module-settings.php:578
4656
  msgid "Exclude those who can \"Edit Settings\"."
4657
  msgstr ""
4658
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش تنظیمات\" را دارند . ( اگر می "
4659
  "خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی "
4660
  "آن ها را در این کادر وارد فرمایید . )"
4661
 
4662
+ #: ../includes/mycred-install.php:592 ../modules/mycred-module-settings.php:582
4663
  msgid "Exclude those who can \"Edit Users %plural%\"."
4664
  msgstr ""
4665
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش %plural% کاربران\" را دارند . ( "
4666
  "اگر می خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید "
4667
  "، اسامی آن ها را در این کادر وارد فرمایید . )"
4668
 
4669
+ #: ../includes/mycred-install.php:595 ../modules/mycred-module-settings.php:586
4670
  msgid "Exclude the following user IDs:"
4671
  msgstr "محروم کردن کاربران با استفاده از شناسه ی آن ها :"
4672
 
4673
+ #: ../includes/mycred-install.php:599 ../modules/mycred-module-settings.php:591
4674
  msgid "User Deletions"
4675
  msgstr ""
4676
 
4677
+ #: ../includes/mycred-install.php:603 ../modules/mycred-module-settings.php:594
4678
  msgid "Delete log entries when user is deleted."
4679
  msgstr ""
4680
 
4681
+ #: ../includes/mycred-install.php:624
4682
  msgid "Ready"
4683
  msgstr "آماده"
4684
 
4685
+ #: ../includes/mycred-install.php:625
4686
  msgid "Almost done! Click the button below to finish this setup."
4687
  msgstr ""
4688
  "تقریبا کاری باقی باقی نمانده ! بر روی کلید زیر کلیک کرده تا مراحل نصب را به "
4689
  "پایان ببرید ."
4690
 
4691
+ #: ../includes/mycred-install.php:626
4692
  msgid "Install & Run"
4693
  msgstr "نصب و راه اندازی"
4694
 
4695
+ #: ../includes/mycred-log.php:430
4696
  #, php-format
4697
  msgid "Showing %d %s"
4698
  msgstr "نمایش %d %s"
4699
 
4700
+ #: ../includes/mycred-log.php:430
4701
  msgid "entry"
4702
  msgstr "اطلاعات ورودی"
4703
 
4704
+ #: ../includes/mycred-log.php:444
4705
  msgid "Go to the first page"
4706
  msgstr ""
4707
 
4708
+ #: ../includes/mycred-log.php:451
4709
  msgid "Go to the previous page"
4710
  msgstr ""
4711
 
4712
+ #: ../includes/mycred-log.php:460
4713
  msgid "Current page"
4714
  msgstr ""
4715
 
4716
+ #: ../includes/mycred-log.php:466
4717
  #, php-format
4718
  msgctxt "mycred"
4719
  msgid "%1$s of %2$s"
4720
  msgstr ""
4721
 
4722
+ #: ../includes/mycred-log.php:470
4723
  msgid "Go to the next page"
4724
  msgstr ""
4725
 
4726
+ #: ../includes/mycred-log.php:477
4727
  msgid "Go to the last page"
4728
  msgstr ""
4729
 
4730
+ #: ../includes/mycred-log.php:544
4731
  msgid "Show all references"
4732
  msgstr "نمایش تمام منابع"
4733
 
4734
+ #: ../includes/mycred-log.php:557
4735
+ msgid "User ID, Username, Email or Nicename"
4736
+ msgstr ""
4737
 
4738
+ #: ../includes/mycred-log.php:563
4739
  msgid "Show in order"
4740
  msgstr "نمایش بر اساس"
4741
 
4742
+ #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4743
  msgid "Ascending"
4744
  msgstr "صعودی"
4745
 
4746
+ #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4747
  msgid "Descending"
4748
  msgstr "نزولی"
4749
 
4750
+ #: ../includes/mycred-log.php:582
4751
  msgid "Filter"
4752
  msgstr "فیــلتر"
4753
 
4754
+ #: ../includes/mycred-log.php:635
4755
  msgid ""
4756
  "Log entries are exported to a CSV file and depending on the number of "
4757
  "entries selected, the process may take a few seconds."
4758
  msgstr ""
4759
 
4760
+ #: ../includes/mycred-log.php:639
4761
  msgid "No export options available."
4762
  msgstr ""
4763
 
4764
+ #: ../includes/mycred-log.php:668
4765
  msgid "Entry"
4766
  msgstr "ورودی"
4767
 
4768
+ #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4769
  msgid "User Missing"
4770
  msgstr "یافت نشدن کاربر"
4771
 
4772
+ #: ../includes/mycred-log.php:839
4773
  msgid "No log entries found"
4774
  msgstr "گزارشی یافت نشد !"
4775
 
4776
+ #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4777
  msgid "Search Log"
4778
  msgstr "جستجو در میان لیست گزارش"
4779
 
4780
+ #: ../includes/mycred-log.php:855
4781
  msgid "search log entries"
4782
  msgstr "جستجو در بین داده ها"
4783
 
4784
+ #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4785
+ #: modules/mycred-module-buddypress.php:249
4786
  msgid "All"
4787
  msgstr "همگی"
4788
 
4789
+ #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4790
  msgid "Yesterday"
4791
  msgstr "دیروز"
4792
 
4960
  msgid "Error - Try Again"
4961
  msgstr "خطا - لطفا مجددا تلاش کنید"
4962
 
4963
+ #: ../includes/mycred-shortcodes.php:764
4964
  msgid "A video ID is required for this shortcode"
4965
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
4966
 
4967
+ #: ../includes/mycred-shortcodes.php:957
4968
  #, php-format
4969
  msgid "Convert <span>%s</span> to <span>%s</span>"
4970
  msgstr ""
4971
 
4972
+ #: ../includes/mycred-shortcodes.php:966
4973
  #, php-format
4974
  msgid "Your current %s balance"
4975
  msgstr ""
4976
 
4977
+ #: ../includes/mycred-shortcodes.php:974
4978
  #, php-format
4979
  msgid "Minimum %s"
4980
  msgstr ""
4981
 
4982
+ #: ../includes/mycred-shortcodes.php:978
4983
  #, php-format
4984
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
4985
  msgstr ""
4986
 
4987
+ #: ../includes/mycred-shortcodes.php:984
4988
  msgid "Exchange"
4989
  msgstr ""
4990
 
4991
+ #: ../includes/mycred-shortcodes.php:1049
4992
  msgid "No instances found for this point type"
4993
  msgstr ""
4994
 
4995
+ #: ../includes/mycred-shortcodes.php:1053
4996
  msgid "Invalid point type"
4997
  msgstr ""
4998
 
4999
+ #: ../includes/mycred-shortcodes.php:1114
5000
  msgid "Instance"
5001
  msgstr ""
5002
 
5003
+ #: ../includes/mycred-shortcodes.php:1116 ../modules/mycred-module-hooks.php:672 .
5004
+ #: ./modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:703 ..
5005
+ #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:780 ..
5006
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:1011 ..
5007
+ #: modules/mycred-module-hooks.php:1153 ../modules/mycred-module-hooks.php:1170 .
5008
+ #: ./modules/mycred-module-hooks.php:1219 ../modules/mycred-module-hooks.php:3008
5009
+ #: ../modules/mycred-module-hooks.php:3028 ../plugins/mycred-hook-affiliatewp.php:
5010
+ #: 237 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-bbPress.php:
5011
+ #: 440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-bbPress.php:
5012
+ #: 492 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
5013
  #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
5014
  #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
5015
  #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
5030
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5031
  #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5032
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5033
+ #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5034
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5035
  #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
5036
  #: postratings.php:175
5290
  msgid "Import log entries from a CSV file."
5291
  msgstr ""
5292
 
5293
+ #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26
5294
  msgid "Add-ons"
5295
  msgstr "افزونه های جانبی"
5296
 
5297
+ #: ../modules/mycred-module-addons.php:160
5298
  msgid "Give your users badges based on their interaction with your website."
5299
  msgstr ""
5300
 
5301
+ #: ../modules/mycred-module-addons.php:171
5302
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
5303
  msgstr ""
5304
 
5305
+ #: ../modules/mycred-module-addons.php:182
5306
  msgid ""
5307
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5308
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
5314
  "فراهم کنید تا برای سایر اعضای سایت هم امتیاز بخرند . ( آقای ایکس برای آقای "
5315
  "ایگرگ امتیاز بخرد ! )"
5316
 
5317
+ #: ../modules/mycred-module-addons.php:193
5318
  msgid ""
5319
  "The coupons add-on allows you to create coupons that users can use to add "
5320
  "points to their accounts."
5321
  msgstr ""
5322
 
5323
+ #: ../modules/mycred-module-addons.php:204
5324
  msgid "Create email notices for any type of myCRED instance."
5325
  msgstr "برای هر یک از بخش های \"اعتبار من\" ، اطلاعیه ایمیلی بسازید ."
5326
 
5327
+ #: ../modules/mycred-module-addons.php:215
5328
  msgid ""
5329
  "Let your users pay using their <strong>my</strong>CRED points balance. "
5330
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5331
  "Bookings: Event Espresso and Events Manager (free & pro)."
5332
  msgstr ""
5333
 
5334
+ #: ../modules/mycred-module-addons.php:226
5335
  msgid "Create pop-up notifications for when users gain or loose points."
5336
  msgstr ""
5337
 
5338
+ #: ../modules/mycred-module-addons.php:238
5339
  msgid ""
5340
  "Create ranks for users reaching a certain number of %_plural% with the "
5341
  "option to add logos for each rank."
5342
  msgstr ""
5343
 
5344
+ #: ../modules/mycred-module-addons.php:249
5345
  msgid ""
5346
  "This add-on allows you to sell posts, pages or any public post types on your "
5347
  "website. You can either sell the entire content or using our shortcode, sell "
5353
  "محتوای مورد نظرتان را از دسترس عموم خارج کرده و آن ها را تحت عناوین مختلف ، "
5354
  "مثل \"تیزر\" و یا \"پیش نمایش\" به فروش رسانید ."
5355
 
5356
+ #: ../modules/mycred-module-addons.php:260
5357
  msgid ""
5358
  "Gives you access to your myCRED Staticstics based on your users gains and "
5359
  "loses."
5360
  msgstr ""
5361
 
5362
+ #: ../modules/mycred-module-addons.php:271
5363
  msgid ""
5364
  "Allow your users to send or \"donate\" points to other members by either using "
5365
  "the mycred_transfer shortcode or the myCRED Transfer widget."
5368
  "\"اهدا\" کنند . از دو طریق می توان این کار را انجام داد ، استفاده از کد "
5369
  "mycred_transfer و یا ابزارک جابجایی امتیاز \"اعتبار من\" ."
5370
 
5371
+ #: ../modules/mycred-module-addons.php:313
5372
  #, php-format
5373
  msgid "%s Add-ons"
5374
  msgstr "افزونه های جانبی %s"
5375
 
5376
+ #: ../modules/mycred-module-addons.php:320
5377
  msgid "Add-on Activated"
5378
  msgstr "افزونه جانبی فعال شد"
5379
 
5380
+ #: ../modules/mycred-module-addons.php:323
5381
  msgid "Add-on Deactivated"
5382
  msgstr "افزونه جانبی غیرفعال شد"
5383
 
5384
+ #: ../modules/mycred-module-addons.php:328
5385
+ msgid "Add-ons Reloaded"
5386
+ msgstr ""
5387
+
5388
+ #: ../modules/mycred-module-addons.php:331
5389
  msgid "Add-ons can expand your current installation with further features."
5390
  msgstr ""
5391
  "افزونه های جانبی می توانند قابلیت های جدید و مفیدی را به افزونه ی فعلی شما "
5392
  "ببخشند ."
5393
 
5394
+ #: ../modules/mycred-module-addons.php:358
5395
+ msgid "Reload Add-ons"
5396
+ msgstr ""
5397
+
5398
+ #: ../modules/mycred-module-addons.php:359
5399
  #, php-format
5400
  msgid "You can find more add-ons in our %s."
5401
  msgstr "می توانید افزونه های بیشتر را در %s ما بیابید ."
5402
 
5403
+ #: ../modules/mycred-module-addons.php:359
5404
  msgid "online store"
5405
  msgstr "فروشگاه آنلاین"
5406
 
5407
+ #: ../modules/mycred-module-addons.php:382
5408
  msgid "Deactivate Add-on"
5409
  msgstr "غیرفعال کردن افزونه ی جانبی"
5410
 
5411
+ #: ../modules/mycred-module-addons.php:383
5412
  msgid "Deactivate"
5413
  msgstr "غیرفعالسازی"
5414
 
5415
+ #: ../modules/mycred-module-addons.php:390
5416
  msgid "Activate Add-on"
5417
  msgstr "فعال کردن افزونه جانبی"
5418
 
5419
+ #: ../modules/mycred-module-addons.php:391
5420
  msgid "Activate"
5421
  msgstr "فعالسازی"
5422
 
5423
+ #: ../modules/mycred-module-addons.php:409
5424
  msgid "Version"
5425
  msgstr "نسخه"
5426
 
5427
+ #: ../modules/mycred-module-addons.php:413
5428
  msgid "By"
5429
  msgstr "توسط"
5430
 
5431
+ #: ../modules/mycred-module-addons.php:417
5432
  msgid "About"
5433
  msgstr "درباره"
5434
 
5435
+ #: ../modules/mycred-module-addons.php:421
5436
  msgid "Get Pro"
5437
  msgstr ""
5438
 
5439
+ #: ../modules/mycred-module-buddypress.php:31
5440
  msgid "My History"
5441
  msgstr "لیست اعمال من"
5442
 
5443
+ #: ../modules/mycred-module-buddypress.php:32
5444
  #, php-format
5445
  msgid "%s's History"
5446
  msgstr "لیست اعمال و گزارشات %s"
5447
 
5448
+ #: ../modules/mycred-module-buddypress.php:131
5449
  msgid "Current balance"
5450
  msgstr ""
5451
 
5452
+ #: ../modules/mycred-module-buddypress.php:362
5453
  msgid "Go"
5454
  msgstr ""
5455
 
5456
+ #: ../modules/mycred-module-buddypress.php:425
5457
  msgid "Show in Profile"
5458
  msgstr "نمایش در پروفایل"
5459
 
5460
+ #: ../modules/mycred-module-buddypress.php:442
5461
  #, php-format
5462
  msgid "%singular% Balance"
5463
  msgstr "میزان %singular%"
5464
 
5465
+ #: ../modules/mycred-module-buddypress.php:459
5466
  #, php-format
5467
  msgid "Members and visitors can other members %_singular% balance."
5468
  msgstr ""
5469
 
5470
+ #: ../modules/mycred-module-buddypress.php:469
5471
  msgid "%plural% History"
5472
  msgstr "گزارش جابجایی %plural%"
5473
 
5474
+ #: ../modules/mycred-module-buddypress.php:486
5475
  msgid "Members can view each others %_plural% history."
5476
  msgstr "اعضا می توانند گزارشات لیست شده از جابجایی %_plural% دیگران را ببینند ."
5477
 
5478
+ #: ../modules/mycred-module-buddypress.php:491
5479
  msgid "Menu Title"
5480
  msgstr "عنوان منو"
5481
 
5482
+ #: ../modules/mycred-module-buddypress.php:493
5483
  msgid "Title shown to me"
5484
  msgstr "عنوان به من نمایش داده شد"
5485
 
5486
+ #: ../modules/mycred-module-buddypress.php:498
5487
  #, php-format
5488
  msgid "Title shown to others. Use %s to show the first name."
5489
  msgstr ""
5490
  "عنوان به کاربران نمایش داده شد . برای اینکه فقط نام اول نمایش داده شود از %s "
5491
  "استفاده کنید ."
5492
 
5493
+ #: ../modules/mycred-module-buddypress.php:503
5494
  msgid "Menu Position"
5495
  msgstr "جایگاه منو"
5496
 
5497
+ #: ../modules/mycred-module-buddypress.php:505
5498
  msgid "Current menu positions:"
5499
  msgstr "جایگاه فعلی منو :"
5500
 
5501
+ #: ../modules/mycred-module-buddypress.php:510
5502
  msgid "History URL slug"
5503
  msgstr "لیست تغییرات قسمت پایانی و معنی دار نشانی های اینترنتی"
5504
 
5505
+ #: ../modules/mycred-module-buddypress.php:512
5506
  msgid "Do not use empty spaces!"
5507
  msgstr "از فضاهای خالی استفاده نکنید ( اسپیس نزنید ! )"
5508
 
5509
+ #: ../modules/mycred-module-buddypress.php:517
5510
  msgid "Number of history entries to show"
5511
  msgstr "تعداد داده های ورودی (تغییرات) قابل نمایش لیست"
5512
 
5513
+ #: ../modules/mycred-module-hooks.php:107
5514
  #, php-format
5515
  msgid "%plural% for registrations"
5516
  msgstr "اهدای %_plural% برای ثبت نام"
5517
 
5518
+ #: ../modules/mycred-module-hooks.php:108
5519
  #, php-format
5520
  msgid "Award %_plural% for users joining your website."
5521
  msgstr "برای کاربرانی که عضوی از سایت شما می شوند %_plural% جایزه دهید"
5522
 
5523
+ #: ../modules/mycred-module-hooks.php:114
5524
  #, php-format
5525
  msgid "%plural% for daily visits"
5526
  msgstr ""
5527
 
5528
+ #: ../modules/mycred-module-hooks.php:115
5529
  #, php-format
5530
  msgid "Award %_plural% for users visiting your website on a daily basis."
5531
  msgstr ""
5532
 
5533
+ #: ../modules/mycred-module-hooks.php:121
5534
  #, php-format
5535
  msgid "%plural% for viewing content"
5536
  msgstr ""
5537
 
5538
+ #: ../modules/mycred-module-hooks.php:122
5539
  msgid ""
5540
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
5541
  "authors for members viewing their content."
5542
  msgstr ""
5543
 
5544
+ #: ../modules/mycred-module-hooks.php:128
5545
  #, php-format
5546
  msgid "%plural% for logins"
5547
  msgstr "اهدای %_plural% برای وارد شدن به سایت"
5548
 
5549
+ #: ../modules/mycred-module-hooks.php:129
5550
  #, php-format
5551
  msgid ""
5552
  "Award %_plural% for logging in to your website. You can also set an optional "
5555
  "به کاربرانی که در سایت شما لوگین می کنند %_plural% جایزه دهید . البته می "
5556
  "توانید محدودیت های اختیاری هم برای این بخش تعیین کنید ."
5557
 
5558
+ #: ../modules/mycred-module-hooks.php:135
5559
  #, php-format
5560
  msgid "%plural% for publishing content"
5561
  msgstr "اهدای %_plural% به کاربران ، برای انتشار مطلب در سایت شما"
5562
 
5563
+ #: ../modules/mycred-module-hooks.php:136
5564
  #, php-format
5565
  msgid ""
5566
  "Award %_plural% for publishing content on your website. If your custom post "
5570
  "کند ) ، %_plural% جایزه دهید . اگر نوع مطلبی که می خواهید در زیر نیامده است "
5571
  "، ابتدا اطمینان حاصل کنید که نوع مطلب مورد نظرتان \"عمومی\" باشد ."
5572
 
5573
+ #: ../modules/mycred-module-hooks.php:142
5574
  #, php-format
5575
  msgid "%plural% for comments"
5576
  msgstr "اهدای %_plural% برای ثبت دیدگاه"
5577
 
5578
+ #: ../modules/mycred-module-hooks.php:142
5579
  #, php-format
5580
  msgid "%plural% for Disqus comments"
5581
  msgstr ""
5582
 
5583
+ #: ../modules/mycred-module-hooks.php:143
5584
  #, php-format
5585
  msgid "Award %_plural% for making comments."
5586
  msgstr "به کاربرانی که در بخش های مختلف سایت شما نظر می دهند ، %_plural% جایزه دهید ."
5587
 
5588
+ #: ../modules/mycred-module-hooks.php:149
5589
  #, php-format
5590
  msgid "%plural% for clicking on links"
5591
  msgstr "اهدای %_plural% برای کلیک کردن بر روی لینک ها"
5592
 
5593
+ #: ../modules/mycred-module-hooks.php:150
5594
  msgid ""
5595
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5596
  "shortcode."
5598
  "به کاربرانی که روی لینک های تولید شده با کد [mycred_link] ، کلیک می کنند ، "
5599
  "%_plural% جایزه دهید ."
5600
 
5601
+ #: ../modules/mycred-module-hooks.php:156
5602
  #, php-format
5603
  msgid "%plural% for viewing Videos"
5604
  msgstr "اهدای %_plural% برای تماشای ویدیوها"
5605
 
5606
+ #: ../modules/mycred-module-hooks.php:157
5607
  msgid ""
5608
  "Award %_plural% to users who watches videos embedded using the "
5609
  "[mycred_video] shortcode."
5611
  "به کاربرانی که ویدیوهای تولید شده با کد-کوتاه [mycred_video] را تماشا می "
5612
  "کنند ، %_plural% جایزه دهید ."
5613
 
5614
+ #: ../modules/mycred-module-hooks.php:163
5615
  #, php-format
5616
  msgid "%plural% for referrals"
5617
  msgstr ""
5618
 
5619
+ #: ../modules/mycred-module-hooks.php:164
5620
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5621
  msgstr ""
5622
 
5623
+ #: ../modules/mycred-module-hooks.php:199
5624
  #, php-format
5625
  msgid "%s Hooks"
5626
  msgstr "پنل تنظیمات امتیازهای %s"
5627
 
5628
+ #: ../modules/mycred-module-hooks.php:203
5629
  msgid ""
5630
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5631
  "depending on their actions around your website."
5633
  "پنل تنظیماتی امتیازها محلی است که شما تعیین می کنید چه مقدار %_plural% بر "
5634
  "اساس انجام انواع عملیات ها ، به کاربرانتان اهدا شده و یا از آن ها کسر گردد ."
5635
 
5636
+ #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
5637
+ #: ./modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:714 ..
5638
+ #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:1157 ..
5639
+ #: modules/mycred-module-hooks.php:1174 ../modules/mycred-module-hooks.php:1223 .
5640
+ #: ./modules/mycred-module-hooks.php:1675 ../modules/mycred-module-hooks.php:1692
5641
+ #: ../modules/mycred-module-hooks.php:1709 ../modules/mycred-module-hooks.php:
5642
+ #: 3000 ../modules/mycred-module-hooks.php:3020 ../plugins/mycred-hook-
5643
  #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5644
+ #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:415 ..
5645
+ #: plugins/mycred-hook-bbPress.php:428 ../plugins/mycred-hook-bbPress.php:445 ..
5646
+ #: plugins/mycred-hook-bbPress.php:463 ../plugins/mycred-hook-bbPress.php:480 ..
5647
+ #: plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:519 ..
5648
  #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5649
  #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5650
  #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
5676
  msgid "Log template"
5677
  msgstr "نمونه ی لیست گزارش ( لوگ )"
5678
 
5679
+ #: ../modules/mycred-module-hooks.php:666
5680
  #, php-format
5681
  msgid "%plural% for viewing Posts"
5682
  msgstr ""
5683
 
5684
+ #: ../modules/mycred-module-hooks.php:669 ../modules/mycred-module-hooks.php:686 .
5685
+ #: ./modules/mycred-module-hooks.php:700 ../modules/mycred-module-hooks.php:717 ..
5686
+ #: modules/mycred-module-hooks.php:777 ../modules/mycred-module-hooks.php:794
5687
  msgid "Member"
5688
  msgstr ""
5689
 
5690
+ #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:692 .
5691
+ #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:723 ..
5692
+ #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:800 ..
5693
+ #: modules/mycred-module-hooks.php:1670 ../modules/mycred-module-hooks.php:1687 .
5694
+ #: ./modules/mycred-module-hooks.php:1704
5695
  msgid "Content Author"
5696
  msgstr "نویسنده ی مطلب"
5697
 
5698
+ #: ../modules/mycred-module-hooks.php:697
5699
  #, php-format
5700
  msgid "%plural% for viewing Pages"
5701
  msgstr ""
5702
 
5703
+ #: ../modules/mycred-module-hooks.php:774
5704
  #, php-format
5705
  msgid "%plural% for viewing %s"
5706
  msgstr ""
5707
 
5708
+ #: ../modules/mycred-module-hooks.php:1147
5709
  #, php-format
5710
  msgid "%plural% for Posts"
5711
  msgstr "اهدای %plural% برای پست ها"
5712
 
5713
+ #: ../modules/mycred-module-hooks.php:1164
5714
  #, php-format
5715
  msgid "%plural% for Pages"
5716
  msgstr "اهدای %plural% برای ایجاد صفحات"
5717
 
5718
+ #: ../modules/mycred-module-hooks.php:1213
5719
  #, php-format
5720
  msgid "%plural% for %s"
5721
  msgstr "اهدای %plural% برای %s"
5722
 
5723
+ #: ../modules/mycred-module-hooks.php:1660
5724
  msgid ""
5725
  "%plural% are only awarded when your website has been synced with the Disqus "
5726
  "server!"
5727
  msgstr ""
5728
 
5729
+ #: ../modules/mycred-module-hooks.php:1666 ../modules/mycred-module-hooks.php:
5730
+ #: 1683 ../modules/mycred-module-hooks.php:1700
5731
  msgid "Comment Author"
5732
  msgstr "نویسنده ی دیدگاه"
5733
 
5734
+ #: ../modules/mycred-module-hooks.php:1680
5735
  msgid "Comment Marked SPAM"
5736
  msgstr "دیدگاه هایی که به عنوان اسپم نشانه گذاری شده اند"
5737
 
5738
+ #: ../modules/mycred-module-hooks.php:1697
5739
  msgid "Trashed / Unapproved Comments"
5740
  msgstr "دیدگاه ها تایید نشده یا منتقل شده به زباله دان"
5741
 
5742
+ #: ../modules/mycred-module-hooks.php:1717
5743
  msgid "Limit per post"
5744
  msgstr "محدودیت برای هر پست"
5745
 
5746
+ #: ../modules/mycred-module-hooks.php:1719
5747
  msgid ""
5748
  "The number of comments per post that grants %_plural% to the comment author. "
5749
  "Use zero for unlimited."
5751
  "تعداد دیدگاه های مجاز برای هر پست ، که باعث کسب %_plural% برای کاربر خواهد "
5752
  "شد . برای برداشتن این محدودیت عدد صفر را وارد کنید ."
5753
 
5754
+ #: ../modules/mycred-module-hooks.php:1723
5755
  msgid "Limit per day"
5756
  msgstr "محدودیت هر روزه"
5757
 
5758
+ #: ../modules/mycred-module-hooks.php:1725
5759
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5760
  msgstr ""
5761
  "تعداد دیدگاه های مجاز در روز ، که باعث کسب %_plural% خواهد شد . برای برداشتن "
5762
  "این محدودیت عدد صفر را وارد کنید ."
5763
 
5764
+ #: ../modules/mycred-module-hooks.php:1730
5765
  msgid ""
5766
  "%plural% is to be awarded even when comment authors reply to their own "
5767
  "comment."
5769
  "اهدای %_plural% حتی برای زمانی که کاربر به نظر قبلی خودش پاسخ بدهد ( نظرهای "
5770
  "تو در تو )"
5771
 
5772
+ #: ../modules/mycred-module-hooks.php:1810
5773
  msgid "Once for each unique URL"
5774
  msgstr "یک بار برای هر لینک یکتا"
5775
 
5776
+ #: ../modules/mycred-module-hooks.php:1811
5777
  msgid "Once for each unique link id"
5778
  msgstr "یک بار برای هر شناسه ( آی دی ) لینک یکتا"
5779
 
5780
+ #: ../modules/mycred-module-hooks.php:2022
5781
  msgid ""
5782
  "The default amount to award for clicking on links. You can override this in "
5783
  "the shortcode."
5785
  "مقدار پیش فرضی که برای کلیک بر روی لینک ها اهدا می گردد . می توانید این "
5786
  "مقدار را در شورت کد مربوطه ، مجددا تنظیم نمایید ."
5787
 
5788
+ #: ../modules/mycred-module-hooks.php:2029
5789
  #, php-format
5790
  msgid "Custom tags: %url%, %title% or %id%."
5791
  msgstr ""
5792
 
5793
+ #: ../modules/mycred-module-hooks.php:2042 ../modules/mycred-module-hooks.php:3096
5794
  msgid "Note!"
5795
  msgstr "نکته !"
5796
 
5797
+ #: ../modules/mycred-module-hooks.php:2042
5798
  msgid ""
5799
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5800
  "generate one automatically based on the value set under href. If you are "
5806
  "href ، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا "
5807
  "استفاده می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
5808
 
5809
+ #: ../modules/mycred-module-hooks.php:2044 ../modules/mycred-module-hooks.php:2428
5810
  msgid "Available Shortcode"
5811
  msgstr ""
5812
 
5813
+ #: ../modules/mycred-module-hooks.php:2392
5814
  msgid "Amount to award for viewing videos."
5815
  msgstr "مقداری که به ازای تماشای ویدیوها به کاربر اهدا می گردد ."
5816
 
5817
+ #: ../modules/mycred-module-hooks.php:2402
5818
  msgid "Award Logic"
5819
  msgstr "منطق اهدای امتیازات"
5820
 
5821
+ #: ../modules/mycred-module-hooks.php:2404
5822
  #, php-format
5823
  msgid "Select when %_plural% should be awarded or deducted."
5824
  msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
5825
 
5826
+ #: ../modules/mycred-module-hooks.php:2405
5827
  msgid "Play - As soon as video starts playing."
5828
  msgstr "پخش - به محض شروع به پخش ویدیو"
5829
 
5830
+ #: ../modules/mycred-module-hooks.php:2406
5831
  msgid "Full - First when the entire video has played."
5832
  msgstr "کامل - بعد از اینکه کل ویدیو به صورت کامل پخش بشود"
5833
 
5834
+ #: ../modules/mycred-module-hooks.php:2407
5835
  msgid "Interval - For each x number of seconds watched."
5836
  msgstr "بازه ای - برای هر تعداد ثانیه ی مشخصی از ویدیو که تماشا می شود ."
5837
 
5838
+ #: ../modules/mycred-module-hooks.php:2412
5839
  msgid "Number of seconds"
5840
  msgstr "تعداد ثانیه ها"
5841
 
5842
+ #: ../modules/mycred-module-hooks.php:2419
5843
  msgid "Leniency"
5844
  msgstr "نرمی و ملایمت"
5845
 
5846
+ #: ../modules/mycred-module-hooks.php:2421
5847
  msgid ""
5848
  "The maximum percentage a users view of a movie can differ from the actual "
5849
  "length."
5851
  "بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده "
5852
  "می شه ، تفاوت پیدا کنه"
5853
 
5854
+ #: ../modules/mycred-module-hooks.php:2424
5855
  msgid ""
5856
  "Do not set this value to zero! A lot of thing can happen while a user "
5857
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5862
  "در طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( "
5863
  "روی ثانیه شمار ویدیو تغییر ایجاد کنه )"
5864
 
5865
+ #: ../modules/mycred-module-hooks.php:2499
5866
  msgid "Affiliate Program"
5867
  msgstr ""
5868
 
5869
+ #: ../modules/mycred-module-hooks.php:2508
5870
  msgid "Per Day"
5871
  msgstr ""
5872
 
5873
+ #: ../modules/mycred-module-hooks.php:2667
5874
  msgid "Link"
5875
  msgstr ""
5876
 
5877
+ #: ../modules/mycred-module-hooks.php:2671
5878
  msgid "Visitors Referred"
5879
  msgstr ""
5880
 
5881
+ #: ../modules/mycred-module-hooks.php:2675
5882
  msgid "Signups Referred"
5883
  msgstr ""
5884
 
5885
+ #: ../modules/mycred-module-hooks.php:2994 ../plugins/mycred-hook-affiliatewp.php:
5886
  #: 231
5887
  msgid "Referring Visitors"
5888
  msgstr ""
5889
 
5890
+ #: ../modules/mycred-module-hooks.php:3013 ../modules/mycred-module-hooks.php:3033
 
 
 
 
5891
  msgid "Referring Signups"
5892
  msgstr ""
5893
 
5894
+ #: ../modules/mycred-module-hooks.php:3017
5895
  msgid "Visitors who have Cookies disabled will not award %_plural%."
5896
  msgstr ""
5897
 
5898
+ #: ../modules/mycred-module-hooks.php:3035
5899
  msgid "Registrations are disabled."
5900
  msgstr ""
5901
 
5902
+ #: ../modules/mycred-module-hooks.php:3043
5903
  msgid "Referral Links"
5904
  msgstr ""
5905
 
5906
+ #: ../modules/mycred-module-hooks.php:3047
5907
  msgid "Assign numeric referral IDs to each user."
5908
  msgstr ""
5909
 
5910
+ #: ../modules/mycred-module-hooks.php:3048 ../modules/mycred-module-hooks.php:3054
5911
  msgid "Example"
5912
  msgstr ""
5913
 
5914
+ #: ../modules/mycred-module-hooks.php:3053
5915
  msgid "Assign usernames as IDs for each user."
5916
  msgstr ""
5917
 
5918
+ #: ../modules/mycred-module-hooks.php:3057
5919
  msgid "IP Limit"
5920
  msgstr ""
5921
 
5922
+ #: ../modules/mycred-module-hooks.php:3061
5923
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5924
  msgstr ""
5925
 
5926
+ #: ../modules/mycred-module-hooks.php:3065 ../modules/mycred-module-hooks.php:3100
5927
  msgid "BuddyPress Profile"
5928
  msgstr ""
5929
 
5930
+ #: ../modules/mycred-module-hooks.php:3068
5931
  msgid "Insert Link in users Profile"
5932
  msgstr ""
5933
 
5934
+ #: ../modules/mycred-module-hooks.php:3069
5935
  msgid ""
5936
  "Option to inser the referral link in users profiles. Links will only be "
5937
  "visible to users viewing their own profiles or administrators."
5938
  msgstr ""
5939
 
5940
+ #: ../modules/mycred-module-hooks.php:3075
5941
  msgid "Leave empty to hide."
5942
  msgstr ""
5943
 
5944
+ #: ../modules/mycred-module-hooks.php:3078
5945
  msgid "Description"
5946
  msgstr ""
5947
 
5948
+ #: ../modules/mycred-module-hooks.php:3079
5949
  msgid "Optional description to insert under the link."
5950
  msgstr ""
5951
 
5952
+ #: ../modules/mycred-module-hooks.php:3093
5953
  msgid "Profile Positioning"
5954
  msgstr ""
5955
 
5956
+ #: ../modules/mycred-module-hooks.php:3095
5957
  msgid ""
5958
  "You can move around the referral link on your users profile by changing the "
5959
  "position. Increase to move up, decrease to move down."
5960
  msgstr ""
5961
 
5962
+ #: ../modules/mycred-module-hooks.php:3096
5963
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5964
  msgstr ""
5965
 
5966
+ #: ../modules/mycred-module-hooks.php:3102
5967
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5968
  msgstr ""
5969
 
5970
+ #: ../modules/mycred-module-log.php:207 ../modules/mycred-module-log.php:230 ..
5971
+ #: modules/mycred-module-settings.php:66 ../modules/mycred-module-settings.php:109
5972
  msgid "Access denied for this action"
5973
  msgstr "عدم دسترسی مجاز برای انجام این عملیات"
5974
 
5975
+ #: ../modules/mycred-module-log.php:214
5976
  msgid "Row Deleted"
5977
  msgstr ""
5978
 
5979
+ #: ../modules/mycred-module-log.php:243
5980
  msgid "Log entry not found"
5981
  msgstr ""
5982
 
5983
+ #: ../modules/mycred-module-log.php:256
5984
  msgid "Entry Updated"
5985
  msgstr ""
5986
 
5987
+ #: ../modules/mycred-module-log.php:316 ../modules/mycred-module-settings.php:621
5988
  msgid "Entries"
5989
  msgstr "داده های ورودی"
5990
 
5991
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
5992
+ #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
5993
  msgid "Export"
5994
  msgstr "خروجی گرفتن"
5995
 
5996
+ #: ../modules/mycred-module-log.php:340
5997
  msgid "Search results for"
5998
  msgstr "نتایج جستجو برای عبارت"
5999
 
6000
+ #: ../modules/mycred-module-log.php:411
6001
  #, php-format
6002
  msgid "%s Log"
6003
  msgstr ""
6004
 
6005
+ #: ../modules/mycred-module-log.php:422
6006
  msgid ""
6007
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
6008
  "Certain hooks and shortcodes will not work correctly!"
6009
  msgstr ""
6010
 
6011
+ #: ../modules/mycred-module-log.php:565
6012
  msgid "Edit"
6013
  msgstr ""
6014
 
6015
+ #: ../modules/mycred-module-log.php:612
6016
  msgid "Time"
6017
  msgstr ""
6018
 
6019
+ #: ../modules/mycred-module-log.php:616
6020
  msgid "Current Log Entry"
6021
  msgstr ""
6022
 
6023
+ #: ../modules/mycred-module-log.php:618
6024
  msgid "The current saved log entry"
6025
  msgstr ""
6026
 
6027
+ #: ../modules/mycred-module-log.php:621
6028
  msgid "Adjust Log Entry"
6029
  msgstr ""
6030
 
6031
+ #: ../modules/mycred-module-log.php:623
6032
  msgid "The new log entry"
6033
  msgstr ""
6034
 
6035
+ #: ../modules/mycred-module-log.php:626
6036
  msgid "Update Log Entry"
6037
  msgstr ""
6038
 
6039
+ #: ../modules/mycred-module-log.php:697
6040
  #, php-format
6041
  msgid "My %s History"
6042
  msgstr ""
6043
 
6044
+ #: ../modules/mycred-module-settings.php:70 ../modules/mycred-module-settings.php:
6045
+ #: 113 ../modules/mycred-module-settings.php:166
6046
  msgid "Missing point type"
6047
  msgstr ""
6048
 
6049
+ #: ../modules/mycred-module-settings.php:144
6050
  msgid "Accounts successfully reset"
6051
  msgstr "اکانت ها با موفقیت تنظیم مجدد ( ریست ) شدند"
6052
 
6053
+ #: ../modules/mycred-module-settings.php:196
6054
  msgid "No users found to export"
6055
  msgstr "کاربری برای خروجی گرفتن یافت نشد"
6056
 
6057
+ #: ../modules/mycred-module-settings.php:246
6058
  msgid "Invalid decimal value."
6059
  msgstr ""
6060
 
6061
+ #: ../modules/mycred-module-settings.php:293
6062
  msgid "Log Updated"
6063
  msgstr ""
6064
 
6065
+ #: ../modules/mycred-module-settings.php:423
6066
  msgid "Update Database"
6067
  msgstr ""
6068
 
6069
+ #: ../modules/mycred-module-settings.php:424
6070
  msgid "Zero for no decimals or maximum 20."
6071
  msgstr ""
6072
 
6073
+ #: ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.
6074
+ #: php:528
6075
  msgid "Tip"
6076
  msgstr "نکته"
6077
 
6078
+ #: ../modules/mycred-module-settings.php:427
6079
  msgid ""
6080
  "As this is your main point type, the value you select here will be the "
6081
  "largest number of decimals your installation will support."
6082
  msgstr ""
6083
 
6084
+ #: ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.
6085
+ #: php:453
6086
  msgid "No decimals"
6087
  msgstr ""
6088
 
6089
+ #: ../modules/mycred-module-settings.php:465
6090
  #, php-format
6091
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
6092
  msgstr ""
6093
 
6094
+ #: ../modules/mycred-module-settings.php:503
6095
  #, php-format
6096
  msgid "%s Settings"
6097
  msgstr "تنظیمات %s"
6098
 
6099
+ #: ../modules/mycred-module-settings.php:507
6100
  msgid "Adjust your core or add-on settings."
6101
  msgstr ""
6102
 
6103
+ #: ../modules/mycred-module-settings.php:513
6104
  msgid "Core Settings"
6105
  msgstr "تنظیمات اصلی"
6106
 
6107
+ #: ../modules/mycred-module-settings.php:515
6108
  msgid "Name"
6109
  msgstr "نام"
6110
 
6111
+ #: ../modules/mycred-module-settings.php:520
6112
  #, php-format
6113
  msgid "Accessible though the %singular% template tag."
6114
  msgstr "از بخش نمونه تگ های %singular% نیز قابل استفاده می باشد"
6115
 
6116
+ #: ../modules/mycred-module-settings.php:525
6117
  msgid "Accessible though the %plural% template tag."
6118
  msgstr "از بخش نمونه تگ های %plural% نیز قابل استفاده می باشد"
6119
 
6120
+ #: ../modules/mycred-module-settings.php:528
6121
  msgid ""
6122
  "Adding an underscore at the beginning of template tag for names will return "
6123
  "them in lowercase. i.e. %_singular%"
6125
  "اضافه کردن آندرلاین در ابتدای نمونه تگ های مورد استفاده برای اسامی ، باعث می "
6126
  "شود آن ها به صورت حروف کوچک چاپ شوند . مثال : %_singular%"
6127
 
6128
+ #: ../modules/mycred-module-settings.php:552
6129
  msgid "Separator"
6130
  msgstr "جدا کننده"
6131
 
6132
+ #: ../modules/mycred-module-settings.php:559
6133
  msgid "Edit Settings"
6134
  msgstr "تنظیم مجدد"
6135
 
6136
+ #: ../modules/mycred-module-settings.php:561 ../modules/mycred-module-settings.
6137
+ #: php:566
6138
  msgid "Capability to check for."
6139
  msgstr "توانایی بررسی"
6140
 
6141
+ #: ../modules/mycred-module-settings.php:564
6142
  msgid "Edit Users %plural%"
6143
  msgstr "ویرایش %plural% کاربران"
6144
 
6145
+ #: ../modules/mycred-module-settings.php:588
6146
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
6147
  msgstr ""
6148
  "برای جدا کردن شناسه ی کاربران در لیست ، به منظور محروم کردنشان ، از ویرگول "
6149
  "استفاده نمایید . استفاده از فاصله ( اسپیس ) مجاز نمی باشد !"
6150
 
6151
+ #: ../modules/mycred-module-settings.php:612
6152
  msgid "Management"
6153
  msgstr "مدیریت"
6154
 
6155
+ #: ../modules/mycred-module-settings.php:614
6156
  msgid "The Log"
6157
  msgstr "لیست گزارش ( لوگ )"
6158
 
6159
+ #: ../modules/mycred-module-settings.php:617
6160
  msgid "Table Name"
6161
  msgstr "نام جدول"
6162
 
6163
+ #: ../modules/mycred-module-settings.php:626
6164
  msgid "Empty Log"
6165
  msgstr "لیست گزارشات ( لوگ ) خالی"
6166
 
6167
+ #: ../modules/mycred-module-settings.php:641
6168
  msgid "Set all to zero"
6169
  msgstr "تغییر تمام داده ها به عدد صفر"
6170
 
6171
+ #: ../modules/mycred-module-settings.php:641
6172
  msgid "CSV Export"
6173
  msgstr "خروجی گرفتن به صورت فایل CVS"
6174
 
6175
+ #: ../modules/mycred-module-settings.php:667
6176
  msgid "Default"
6177
  msgstr ""
6178
 
6179
+ #: ../modules/mycred-module-settings.php:670 ../modules/mycred-module-settings.
6180
+ #: php:691 ../modules/mycred-module-settings.php:715
6181
  msgid "Meta Key"
6182
  msgstr "کلید اطلاعات"
6183
 
6184
+ #: ../modules/mycred-module-settings.php:712
6185
  msgid "Add New Type"
6186
  msgstr ""
6187
 
6188
+ #: ../modules/mycred-module-settings.php:717
6189
  msgid "A unique ID for this type."
6190
  msgstr ""
6191
 
6192
+ #: ../modules/mycred-module-settings.php:722
6193
  msgid "Menu and page title."
6194
  msgstr ""
6195
 
6196
+ #: ../modules/mycred-module-settings.php:725
6197
  msgid ""
6198
  "The meta key must be lowercase and only contain letters or underscores. All "
6199
  "other characters will be deleted!"
6200
  msgstr ""
6201
 
6202
+ #: ../modules/mycred-module-settings.php:748
6203
  msgid "Identify users by"
6204
  msgstr "تایید هویت کاربر به وسیله ی"
6205
 
6206
+ #: ../modules/mycred-module-settings.php:754
6207
+ msgid "User ID"
6208
+ msgstr "شناسه کاربر"
6209
+
6210
+ #: ../modules/mycred-module-settings.php:755
6211
  msgid "User Email"
6212
  msgstr "ایمیل کاربر"
6213
 
6214
+ #: ../modules/mycred-module-settings.php:756
6215
  msgid "User Login"
6216
  msgstr "ورود کاربر"
6217
 
6218
+ #: ../modules/mycred-module-settings.php:764
6219
  msgid ""
6220
  "Use ID if you intend to use this export as a backup of your current site "
6221
  "while Email is recommended if you want to export to a different site."
6222
  msgstr ""
6223
 
6224
+ #: ../modules/mycred-module-settings.php:767
6225
  msgid "Import Log Entry"
6226
  msgstr "وارد کردن لیست گزارشات ( لوگ ) داده های ورودی"
6227
 
6228
+ #: ../modules/mycred-module-settings.php:769
6229
  #, php-format
6230
  msgid ""
6231
  "Optional log entry to use if you intend to import this file in a different "
6330
  msgid "Awards %_plural% for bbPress actions."
6331
  msgstr "اهدای %_plural% برای فعالیت در بی بی پرس ( افزونه ی انجمن ساز برای وردپرس )"
6332
 
6333
+ #: ../plugins/mycred-hook-bbPress.php:404
6334
  #, php-format
6335
  msgid "%plural% for New Forum"
6336
  msgstr "اهدای %plural% برای انجمن جدید"
6337
 
6338
+ #: ../plugins/mycred-hook-bbPress.php:421
6339
  #, php-format
6340
  msgid "%plural% for Forum Deletion"
6341
  msgstr "اهدای %plural% برای حذف یا ادیت انجمن"
6342
 
6343
+ #: ../plugins/mycred-hook-bbPress.php:434 ../plugins/mycred-hook-simplepress.php:
6344
  #: 278
6345
  #, php-format
6346
  msgid "%plural% for New Topic"
6347
  msgstr "اهدای %plural% برای تاپیک جدید"
6348
 
6349
+ #: ../plugins/mycred-hook-bbPress.php:452
6350
  #, php-format
6351
  msgid "Forum authors can receive %_plural% for creating new topics."
6352
  msgstr "نویسندگان انجمن می توانند برای ساختن تاپیک %plural% دریافت کنند ."
6353
 
6354
+ #: ../plugins/mycred-hook-bbPress.php:456 ../plugins/mycred-hook-simplepress.php:
6355
  #: 295
6356
  #, php-format
6357
  msgid "%plural% for Topic Deletion"
6358
  msgstr "اهدای %plural% برای پاکسازی و یا ادیت تاپیک"
6359
 
6360
+ #: ../plugins/mycred-hook-bbPress.php:469
6361
  #, php-format
6362
  msgid "%plural% for Favorited Topic"
6363
  msgstr "اهدای %plural% برای تاپیک های مورد علاقه شده"
6364
 
6365
+ #: ../plugins/mycred-hook-bbPress.php:486
6366
  #, php-format
6367
  msgid "%plural% for New Reply"
6368
  msgstr "اهدای %plural% برای پاسخ دادن به تاپیک"
6369
 
6370
+ #: ../plugins/mycred-hook-bbPress.php:504
6371
  #, php-format
6372
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
6373
  msgstr "نویسندگان تاپیک می توانند برای پاسخ به تاپیک خودشان %_plural% دریافت کنند"
6374
 
6375
+ #: ../plugins/mycred-hook-bbPress.php:508
6376
  #, php-format
6377
  msgid "Show users %_plural% balance in replies"
6378
  msgstr "نمایش دادن %_plural% کاربران در جواب"
6379
 
6380
+ #: ../plugins/mycred-hook-bbPress.php:512
6381
  #, php-format
6382
  msgid "%plural% for Reply Deletion"
6383
  msgstr ""
6723
  msgstr "اشتراک در دیدگاه ها"
6724
 
6725
  #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6726
+ #: php:80
6727
  msgid "Reward with %plural%"
6728
  msgstr ""
6729
 
6769
  msgid "%plural% for Topic Post Deletion"
6770
  msgstr "اهدا یا کسر %plural% برای حذف کامل یا بخشی از پست تاپیک"
6771
 
6772
+ #: ../plugins/mycred-hook-woocommerce.php:210
6773
  msgid "WooCommerce Product Reviews"
6774
  msgstr ""
6775
 
6776
+ #: ../plugins/mycred-hook-woocommerce.php:211
6777
  #, php-format
6778
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6779
  msgstr ""
lang/mycred-fr_FR.mo CHANGED
Binary file
lang/mycred-fr_FR.po CHANGED
@@ -3,9 +3,10 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Feb 02 2015 11:28:21 GMT+0100 (CET)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
- "Language-Team: LANGUAGE <support@mycred.me>\n"
 
9
  "Language: French (France)\n"
10
  "Plural-Forms: nplurals=2; plural=n > 1\n"
11
  "MIME-Version: 1.0\n"
@@ -39,9 +40,9 @@ msgid "Awesome People"
39
  msgstr "On les remercie"
40
 
41
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
42
- #: addon-badges.php:595 ../addons/gateway/event-booking/mycred-eventsmanager.php:
43
- #: 478 ../addons/ranks/myCRED-addon-ranks.php:421 ../addons/ranks/myCRED-addon-
44
- #: ranks.php:1514 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
45
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
46
  #: php:636
47
  msgid "Processing..."
@@ -107,15 +108,15 @@ msgid "Log entry updated"
107
  msgstr "L'entrée du journal a été mise à jour"
108
 
109
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
110
- #: notices.php:808 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
111
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
112
  msgid "Setup"
113
  msgstr "Configuration"
114
 
115
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
116
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
117
- #: network.php:151 ../modules/mycred-module-settings.php:20 ../modules/mycred-
118
- #: module-settings.php:21 ../modules/mycred-module-settings.php:22
119
  msgid "Settings"
120
  msgstr "Configuration"
121
 
@@ -127,57 +128,51 @@ msgstr ""
127
  "Agissez prudemment en sauvegardant votre base de données et vos fichiers "
128
  "avant de lancer la mise à jour."
129
 
130
- #: ../abstracts/mycred-abstract-hook.php:74
131
- msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
132
- msgstr ""
133
- "La fonction myCRED_Hook::run() doit &ecirc;tre substitu&eacute;e par une "
134
- "sous-classe."
135
-
136
  #: ../abstracts/mycred-abstract-hook.php:83
137
  msgid "This Hook has no settings"
138
  msgstr "Ce hook n'a pas de paramètre."
139
 
140
- #: ../abstracts/mycred-abstract-hook.php:223 ../abstracts/mycred-abstract-hook.
141
- #: php:290 ../includes/mycred-functions.php:2633 ../modules/mycred-module-hooks.
142
- #: php:1649
143
  msgid "No limit"
144
  msgstr "Illimité"
145
 
146
- #: ../abstracts/mycred-abstract-hook.php:224
147
  msgid "/ Day"
148
  msgstr ""
149
 
150
- #: ../abstracts/mycred-abstract-hook.php:225
151
  msgid "/ Week"
152
  msgstr ""
153
 
154
- #: ../abstracts/mycred-abstract-hook.php:226
155
  msgid "/ Month"
156
  msgstr ""
157
 
158
- #: ../abstracts/mycred-abstract-hook.php:227
159
  msgid "in Total"
160
  msgstr ""
161
 
162
- #: ../abstracts/mycred-abstract-hook.php:291
163
  msgid "Once every 24 hours"
164
  msgstr "Une fois toutes les 24h"
165
 
166
- #: ../abstracts/mycred-abstract-hook.php:292
167
  msgid "Once every 7 days"
168
  msgstr "Une fois tous les 7 jours"
169
 
170
- #: ../abstracts/mycred-abstract-hook.php:293
171
  msgid "Once per day (reset at midnight)"
172
  msgstr "Une fois par jour (remise à zéro à minuit)"
173
 
174
- #: ../abstracts/mycred-abstract-hook.php:300 ../addons/banking/abstracts/mycred-
175
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:628 ..
176
- #: addons/buy-creds/myCRED-addon-buy-creds.php:649 ../addons/buy-
177
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
178
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
179
- #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
180
- #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:989
181
  msgid "Select"
182
  msgstr "sélectionnez"
183
 
@@ -185,30 +180,30 @@ msgstr "sélectionnez"
185
  msgid "myCRED_Module() Error. A Module ID is required!"
186
  msgstr "Erreur de module myCred. Un ID est obligatoire."
187
 
188
- #: ../abstracts/mycred-abstract-module.php:351 ../abstracts/mycred-abstract-
189
- #: module.php:359
190
  msgid "Surprise"
191
  msgstr "Surprise"
192
 
193
- #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:83
194
  msgid "click to close"
195
  msgstr "cliquez pour fermer"
196
 
197
- #: ../abstracts/mycred-abstract-module.php:447 ../includes/mycred-network.php:84
198
  msgid "click to open"
199
  msgstr "cliquez pour ouvrir"
200
 
201
- #: ../abstracts/mycred-abstract-module.php:480 ../addons/buy-creds/myCRED-addon-
202
- #: buy-creds.php:846
203
  msgid "Settings Updated"
204
  msgstr "Configuration mise à jour"
205
 
206
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
207
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
208
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
209
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:373 ..
210
- #: addons/badges/myCRED-addon-badges.php:379 ../addons/badges/myCRED-addon-
211
- #: badges.php:385
212
  msgid "Badges"
213
  msgstr "Badges"
214
 
@@ -217,7 +212,7 @@ msgstr "Badges"
217
  msgid "Badges (%d)"
218
  msgstr ""
219
 
220
- #: ../addons/badges/myCRED-addon-badges.php:256
221
  #, php-format
222
  msgid "%d Users earned this badge."
223
  msgstr ""
@@ -228,7 +223,7 @@ msgstr ""
228
  "ce badge\n"
229
  "."
230
 
231
- #: ../addons/badges/myCRED-addon-badges.php:260
232
  msgid "No users has yet earned this badge."
233
  msgstr ""
234
  "Aucun utilisateur\n"
@@ -240,173 +235,177 @@ msgstr ""
240
  "ce badge\n"
241
  "."
242
 
243
- #: ../addons/badges/myCRED-addon-badges.php:282
 
 
 
 
244
  #, php-format
245
  msgid "%s connections where removed."
246
  msgstr ""
247
 
248
- #: ../addons/badges/myCRED-addon-badges.php:374
249
  msgid "Badge"
250
  msgstr "Badge"
251
 
252
- #: ../addons/badges/myCRED-addon-badges.php:375 ../addons/buy-creds/myCRED-addon-
253
- #: buy-creds.php:259 ../addons/buy-creds/myCRED-addon-buy-creds.php:260 ..
254
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
255
- #: addons/ranks/myCRED-addon-ranks.php:445
256
  msgid "Add New"
257
  msgstr "Ajouter"
258
 
259
- #: ../addons/badges/myCRED-addon-badges.php:376
260
  msgid "Add New Badge"
261
  msgstr "Ajouter un nouveau badge"
262
 
263
- #: ../addons/badges/myCRED-addon-badges.php:377
264
  msgid "Edit Badge"
265
  msgstr "Editer le badge"
266
 
267
- #: ../addons/badges/myCRED-addon-badges.php:378
268
  msgid "New Badge"
269
  msgstr "Nouveau badge"
270
 
271
- #: ../addons/badges/myCRED-addon-badges.php:380
272
  msgid "View Badge"
273
  msgstr "Voir le badge"
274
 
275
- #: ../addons/badges/myCRED-addon-badges.php:381
276
  msgid "Search Badge"
277
  msgstr "Search badge"
278
 
279
- #: ../addons/badges/myCRED-addon-badges.php:382
280
  msgid "No badges found"
281
  msgstr "Pas de badges trouvés"
282
 
283
- #: ../addons/badges/myCRED-addon-badges.php:383
284
  msgid "No badges found in Trash"
285
  msgstr "Pas de badge trouvés dans la corbeille"
286
 
287
- #: ../addons/badges/myCRED-addon-badges.php:429 ../addons/badges/myCRED-addon-
288
- #: badges.php:531
289
  msgid "Badge Name"
290
  msgstr "Nom du badge"
291
 
292
- #: ../addons/badges/myCRED-addon-badges.php:430
293
  msgid "Badge Images"
294
  msgstr "Image du badge"
295
 
296
- #: ../addons/badges/myCRED-addon-badges.php:431
297
  msgid "Requirements"
298
  msgstr "Exigences"
299
 
300
- #: ../addons/badges/myCRED-addon-badges.php:432 ../addons/ranks/myCRED-addon-
301
- #: ranks.php:1038 ../modules/mycred-module-settings.php:600
302
  msgid "Users"
303
  msgstr "Utilisateurs"
304
 
305
- #: ../addons/badges/myCRED-addon-badges.php:471
306
  msgid "A user must have gained or lost:"
307
  msgstr "Un utilisateur doit avoir gagné ou perdu:"
308
 
309
- #: ../addons/badges/myCRED-addon-badges.php:507 ../addons/badges/myCRED-addon-
310
- #: badges.php:510 ../addons/badges/myCRED-addon-badges.php:514 ..
311
- #: addons/badges/myCRED-addon-badges.php:515 ../addons/badges/myCRED-addon-
312
- #: badges.php:516
313
  msgid "Badge Updated."
314
  msgstr "Badge mis à jour."
315
 
316
- #: ../addons/badges/myCRED-addon-badges.php:512
317
  msgid "Badge Enabled"
318
  msgstr "Badge activé"
319
 
320
- #: ../addons/badges/myCRED-addon-badges.php:513
321
  msgid "Badge Saved"
322
  msgstr "Badge sauvegardé"
323
 
324
- #: ../addons/badges/myCRED-addon-badges.php:545
325
  msgid "Badge Setup"
326
  msgstr ""
327
 
328
- #: ../addons/badges/myCRED-addon-badges.php:572
329
  msgid "Assign Badge"
330
  msgstr "Assigner un badge"
331
 
332
- #: ../addons/badges/myCRED-addon-badges.php:573
333
  msgid "Remove Connections"
334
  msgstr "Supprimer les connexions."
335
 
336
- #: ../addons/badges/myCRED-addon-badges.php:628
337
  msgid "Time(s)"
338
  msgstr "Heure(s)"
339
 
340
- #: ../addons/badges/myCRED-addon-badges.php:629
341
  msgid "In total"
342
  msgstr "Au total"
343
 
344
- #: ../addons/badges/myCRED-addon-badges.php:661 ../addons/badges/myCRED-addon-
345
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:821 ..
346
- #: addons/badges/myCRED-addon-badges.php:836
347
  msgid "Badge Image"
348
  msgstr "Image du badge"
349
 
350
- #: ../addons/badges/myCRED-addon-badges.php:662 ../addons/badges/myCRED-addon-
351
- #: badges.php:662
352
  msgid "Set badge image"
353
  msgstr "Fixer une image badge"
354
 
355
- #: ../addons/badges/myCRED-addon-badges.php:672
356
  msgid "Default Image"
357
  msgstr "Image par défaut"
358
 
359
- #: ../addons/badges/myCRED-addon-badges.php:673 ../addons/badges/myCRED-addon-
360
- #: badges.php:731 ../addons/badges/myCRED-addon-badges.php:762 ..
361
- #: addons/badges/myCRED-addon-badges.php:821
362
  msgid "image url"
363
  msgstr "URL de l'image"
364
 
365
- #: ../addons/badges/myCRED-addon-badges.php:674 ../addons/badges/myCRED-addon-
366
- #: badges.php:732 ../addons/badges/myCRED-addon-badges.php:763 ..
367
- #: addons/badges/myCRED-addon-badges.php:821
368
  msgid "Add Image"
369
  msgstr ""
370
 
371
- #: ../addons/badges/myCRED-addon-badges.php:675
372
  msgid "Optional image to show when a user has not yet earned this badge."
373
  msgstr ""
374
 
375
- #: ../addons/badges/myCRED-addon-badges.php:694 ../addons/badges/myCRED-addon-
376
- #: badges.php:746
377
  #, php-format
378
  msgid "Level %d"
379
  msgstr ""
380
 
381
- #: ../addons/badges/myCRED-addon-badges.php:699 ../addons/badges/myCRED-addon-
382
- #: badges.php:751 ../addons/badges/myCRED-addon-badges.php:821
383
  msgid "for"
384
  msgstr ""
385
 
386
- #: ../addons/badges/myCRED-addon-badges.php:730
387
  msgid "Main Image"
388
  msgstr "Image principale"
389
 
390
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
391
- #: badges.php:821
392
  msgid "Leave empty if you do not want to assign a custom image for this level."
393
  msgstr ""
394
 
395
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
396
- #: badges.php:821
397
  msgid "Remove this level"
398
  msgstr ""
399
 
400
- #: ../addons/badges/myCRED-addon-badges.php:778
401
  msgid "Add Level"
402
  msgstr ""
403
 
404
- #: ../addons/badges/myCRED-addon-badges.php:821 ../addons/badges/myCRED-addon-
405
- #: badges.php:1141
406
  msgid "Level"
407
  msgstr ""
408
 
409
- #: ../addons/badges/myCRED-addon-badges.php:838
410
  msgid "Use as Badge"
411
  msgstr ""
412
  "Utilisez\n"
@@ -415,14 +414,14 @@ msgstr ""
415
  " \n"
416
  "Badge"
417
 
418
- #: ../addons/badges/myCRED-addon-badges.php:960 ../addons/badges/myCRED-addon-
419
- #: badges.php:991 ../addons/gateway/carts/mycred-woocommerce.php:153 ..
420
- #: modules/mycred-module-buddypress.php:384
421
  msgid "Do not show"
422
  msgstr "Ne pas afficher"
423
 
424
- #: ../addons/badges/myCRED-addon-badges.php:961 ../modules/mycred-module-
425
- #: buddypress.php:385
426
  msgid "Include in Profile Header"
427
  msgstr ""
428
  "Inclure dans\n"
@@ -430,13 +429,13 @@ msgstr ""
430
  "le profil\n"
431
  "-tête"
432
 
433
- #: ../addons/badges/myCRED-addon-badges.php:962 ../addons/ranks/myCRED-addon-
434
- #: ranks.php:1396 ../modules/mycred-module-buddypress.php:386
435
  msgid "Include under the \"Profile\" tab"
436
  msgstr "Inclure sous l'onglet \"Profil\""
437
 
438
- #: ../addons/badges/myCRED-addon-badges.php:963 ../modules/mycred-module-
439
- #: buddypress.php:387
440
  msgid "Include under the \"Profile\" tab and Profile Header"
441
  msgstr ""
442
  "Inclure\n"
@@ -451,73 +450,73 @@ msgstr ""
451
  "Profil\n"
452
  "\" En-tête"
453
 
454
- #: ../addons/badges/myCRED-addon-badges.php:976 ../addons/badges/myCRED-addon-
455
- #: badges.php:1007
456
  msgid "Show all badges, including badges users have not yet earned."
457
  msgstr ""
458
 
459
- #: ../addons/badges/myCRED-addon-badges.php:992 ../addons/ranks/myCRED-addon-
460
- #: ranks.php:1442
461
  msgid "Include in Profile"
462
  msgstr "Inclure dans le profil"
463
 
464
- #: ../addons/badges/myCRED-addon-badges.php:993
465
  msgid "Include in Forum Replies"
466
  msgstr "Inclure dans les réponses du forum"
467
 
468
- #: ../addons/badges/myCRED-addon-badges.php:994
469
  msgid "Include in Profile and Forum Replies"
470
  msgstr "Inclure dans les profils et les réponses du forums"
471
 
472
- #: ../addons/badges/myCRED-addon-badges.php:1098
473
  msgid "User Badges"
474
  msgstr ""
475
 
476
- #: ../addons/badges/myCRED-addon-badges.php:1103
477
  msgid ""
478
  "Here you can view the badges this user has earned and if needed, manually "
479
  "give or take away a badge from a user."
480
  msgstr ""
481
 
482
- #: ../addons/badges/myCRED-addon-badges.php:1112
483
  msgid "Not earned"
484
  msgstr ""
485
 
486
- #: ../addons/badges/myCRED-addon-badges.php:1118 ../addons/badges/myCRED-addon-
487
- #: badges.php:1155
488
  msgid "Earned"
489
  msgstr ""
490
 
491
- #: ../addons/badges/myCRED-addon-badges.php:1130
492
  msgid "No image"
493
  msgstr ""
494
 
495
- #: ../addons/badges/myCRED-addon-badges.php:1137
496
  msgid "Select a level"
497
  msgstr ""
498
 
499
- #: ../addons/badges/myCRED-addon-badges.php:1152 ../addons/email-notices/myCRED-
500
- #: addon-email-notices.php:807
501
  msgid "Status"
502
  msgstr "Statut"
503
 
504
- #: ../addons/badges/myCRED-addon-badges.php:1169 ../addons/email-notices/myCRED-
505
- #: addon-email-notices.php:1290
506
  msgid "Save Changes"
507
  msgstr "Sauvegarder les changements."
508
 
509
- #: ../addons/badges/includes/mycred-badge-functions.php:65
510
  #, php-format
511
  msgid "Level %s"
512
  msgstr ""
513
 
514
- #: ../addons/badges/includes/mycred-badge-functions.php:68
515
  #, php-format
516
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
517
  msgid "%s for %s %s - %s"
518
  msgstr ""
519
 
520
- #: ../addons/badges/includes/mycred-badge-functions.php:68 ..
521
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
522
  #: coupons.php:469
523
  #, php-format
@@ -526,7 +525,7 @@ msgid_plural "%d times"
526
  msgstr[0] ""
527
  msgstr[1] ""
528
 
529
- #: ../addons/badges/includes/mycred-badge-functions.php:70
530
  #, php-format
531
  msgctxt "\"x points\" for \"reference\" in total"
532
  msgid "%s for %s in total"
@@ -613,11 +612,11 @@ msgid "Setup mass %_singular% payouts for your users."
613
  msgstr "Installation de masse %_singular% pour les paiements de vos utilisateurs"
614
 
615
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
616
- #: addon-buy-creds.php:836 ../addons/buy-creds/myCRED-addon-buy-creds.php:932 ..
617
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
618
- #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:292 ..
619
- #: modules/mycred-module-hooks.php:171 ../modules/mycred-module-log.php:326 ..
620
- #: modules/mycred-module-log.php:597 ../modules/mycred-module-settings.php:457
621
  msgid "Access Denied"
622
  msgstr "Accès refusé"
623
 
@@ -649,12 +648,12 @@ msgid "Warning! This add-on requires WP - Cron to work."
649
  msgstr "Attention ! Pour utiliser ce module, WP-Cron est obligatoire."
650
 
651
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
652
- #: addon-buy-creds.php:870 ../modules/mycred-module-hooks.php:196
653
  msgid "Enable"
654
  msgstr "Activer"
655
 
656
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
657
- #: php:211
658
  msgid "Update Changes"
659
  msgstr "Enregistrer les modifications"
660
 
@@ -787,19 +786,19 @@ msgstr "Paiement"
787
 
788
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
789
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
790
- #: creds/myCRED-addon-buy-creds.php:606 ../addons/buy-creds/myCRED-addon-buy-
791
- #: creds.php:665 ../addons/coupons/myCRED-addon-coupons.php:502 ..
792
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
793
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
794
- #: addons/gateway/carts/mycred-woocommerce.php:105 ..
795
- #: addons/gateway/carts/mycred-woocommerce.php:177 ..
796
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
797
- #: hooks.php:891 ../modules/mycred-module-hooks.php:1847 ../modules/mycred-module-
798
- #: hooks.php:2187 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-
799
- #: badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-hook-
800
- #: events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.php:
801
- #: 209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-
802
- #: star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:304 ..
803
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
804
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
805
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
@@ -880,7 +879,7 @@ msgstr ""
880
  "."
881
 
882
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
883
- #: creds/myCRED-addon-buy-creds.php:758 ../addons/sell-content/myCRED-addon-sell-
884
  #: content.php:114
885
  msgid "Leave empty to use the default value."
886
  msgstr ""
@@ -905,7 +904,7 @@ msgstr ""
905
  " \n"
906
  "de recevoir des intérêts"
907
 
908
- #: ../addons/banking/services/mycred-bank-service-interest.php:667
909
  msgid "Compound interest rate saved."
910
  msgstr ""
911
  "Taux d'intérêt composé\n"
@@ -913,7 +912,7 @@ msgstr ""
913
  "sauvé\n"
914
  "."
915
 
916
- #: ../addons/banking/services/mycred-bank-service-interest.php:669
917
  msgid "User excluded from receiving interest."
918
  msgstr ""
919
  "Utilisateur\n"
@@ -923,7 +922,7 @@ msgstr ""
923
  "l'intérêt\n"
924
  "."
925
 
926
- #: ../addons/banking/services/mycred-bank-service-interest.php:671
927
  msgid "User included in receiving interest."
928
  msgstr "Utilisateur inclus dans la réception des intérêts"
929
 
@@ -932,8 +931,8 @@ msgid "Daily %_plural%"
932
  msgstr "%plural% quotidiens"
933
 
934
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
935
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:254 ..
936
- #: modules/mycred-module-log.php:255
937
  msgid "History"
938
  msgstr "Mes points"
939
 
@@ -950,17 +949,17 @@ msgid "Pay Users"
950
  msgstr "Payer les Utilisateurs"
951
 
952
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
953
- #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
954
- #: creds.php:1523 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
955
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
956
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
957
- #: includes/mycred-shortcodes.php:971 ../includes/mycred-shortcodes.php:1112 ..
958
  #: plugins/mycred-hook-affiliatewp.php:256
959
  msgid "Amount"
960
  msgstr "Montant"
961
 
962
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
963
- #: modules/mycred-module-hooks.php:2202
964
  msgid "Interval"
965
  msgstr "Intervalle"
966
 
@@ -987,320 +986,320 @@ msgstr ""
987
  "service reprendra à ce stade lorque vous le réactiverez. Indiquez zéro pour "
988
  "réinitialiser les cycles."
989
 
990
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
991
- #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
992
  msgid "Payment Gateways"
993
  msgstr "Services de paiement"
994
 
995
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:253
996
  msgctxt "Post Type General Name"
997
  msgid "Pending Payments"
998
  msgstr "Paiements en attente"
999
 
1000
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:254
1001
  msgctxt "Post Type Singular Name"
1002
  msgid "Pending Payment"
1003
  msgstr "En attente de paiement"
1004
 
1005
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:255 ../addons/buy-creds/myCRED-
1006
- #: addon-buy-creds.php:257 ../addons/buy-creds/myCRED-addon-buy-creds.php:268
1007
  msgid "Pending Payments"
1008
  msgstr "Paiements en attente"
1009
 
1010
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
1011
  msgid "Edit Pending Payment"
1012
  msgstr ""
1013
  "Modifier\n"
1014
  " \n"
1015
  "les attentes de paiement"
1016
 
1017
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
1018
- #: addon-buy-creds.php:1634
1019
  msgid "No pending payments found"
1020
  msgstr "Pas d'attente de paiements trouvés"
1021
 
1022
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265
1023
  msgid "Not found in Trash"
1024
  msgstr "Pas trouvé dans la corbeille"
1025
 
1026
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
1027
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1598
1028
  msgid "Transaction ID"
1029
  msgstr "ID de la transaction"
1030
 
1031
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
1032
- #: addon-buy-creds.php:984
1033
  msgid "Buyer"
1034
  msgstr "Acheteur"
1035
 
1036
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
1037
- #: addon-buy-creds.php:1601 ../addons/buy-creds/abstracts/mycred-abstract-payment-
1038
  #: gateway.php:594
1039
  msgid "Cost"
1040
  msgstr "Prix"
1041
 
1042
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
1043
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ..
1044
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
1045
  msgid "Gateway"
1046
  msgstr "Service"
1047
 
1048
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:303
1049
  msgid "Type"
1050
  msgstr "Type"
1051
 
1052
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:390
1053
  msgid "Pay Out"
1054
  msgstr "Versement"
1055
 
1056
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
1057
  msgid "buyCRED Purchase Log"
1058
  msgstr "Journal d'achat buyCRED"
1059
 
1060
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:422 ../addons/buy-creds/myCRED-
1061
- #: addon-buy-creds.php:655 ../addons/buy-creds/myCRED-addon-buy-creds.php:842
1062
  msgid "Purchase Log"
1063
  msgstr "Journal d'achat"
1064
 
1065
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:515 ../addons/gateway/event-
1066
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
1067
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
1068
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
1069
  msgid "Payments"
1070
  msgstr "Paiements"
1071
 
1072
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
1073
  msgid "Please login to purchase %_plural%"
1074
  msgstr "Veuillez vous connecter pour acquérir des %_plural%"
1075
 
1076
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
1077
  #, php-format
1078
  msgid "Gift purchase from %display_name%."
1079
  msgstr "Achat de cadeau par %display_name%."
1080
 
1081
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:576 ../addons/ranks/myCRED-
1082
- #: addon-ranks.php:1079
1083
  msgid "Minimum %plural%"
1084
  msgstr "%plural% minimum"
1085
 
1086
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:580
1087
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
1088
  msgstr "Nombre minimum de %_plural% qu&#39;un membre peut acheter. 1 par défaut !"
1089
 
1090
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:585 ../addons/transfer/myCRED-
1091
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
1092
- #: module-settings.php:617
1093
  msgid "Point Types"
1094
  msgstr "Types de Points"
1095
 
1096
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
1097
  msgid "Select the point types that users can buy. You must select at least one!"
1098
  msgstr ""
1099
  "Sélectionner les types de point que les utilisateurs peuvent acheter. Vous "
1100
  "devez en sélectionner au moins une!"
1101
 
1102
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:599
1103
  msgid "Login Template"
1104
  msgstr "Template de connexion"
1105
 
1106
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603
1107
  msgid "Content to show when a user is not logged in."
1108
  msgstr "Contenu à afficher quand un utilisateur n'est pas connecté."
1109
 
1110
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
1111
  msgid "Thank You Page"
1112
  msgstr "Page de remerciement"
1113
 
1114
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:616 ../addons/buy-creds/myCRED-
1115
- #: addon-buy-creds.php:637
1116
  msgid "Custom URL"
1117
  msgstr "URL personnalisée"
1118
 
1119
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:621 ../addons/buy-creds/myCRED-
1120
- #: addon-buy-creds.php:642
1121
  msgid "Page"
1122
  msgstr "Page"
1123
 
1124
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:634
1125
  msgid "Cancellation Page"
1126
  msgstr "Page d'annulation"
1127
 
1128
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657
1129
  msgid "Show seperate log for %_plural% purchases."
1130
  msgstr "Afficher des journaux séparés pour l'achat de %_plural%"
1131
 
1132
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
1133
  msgid "Gifting"
1134
  msgstr "Remise de cadeaux"
1135
 
1136
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:661
1137
  #, php-format
1138
  msgid "Allow users to buy %_plural% for other users."
1139
  msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
1140
 
1141
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:662
1142
  #, php-format
1143
  msgid "Allow users to buy %_plural% for content authors."
1144
  msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
1145
 
1146
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670 ../modules/mycred-module-
1147
- #: hooks.php:2912
1148
  msgid "Available Shortcodes"
1149
  msgstr "Shortcodes disponibles"
1150
 
1151
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:752
1152
  #, php-format
1153
  msgid "%s Exchange Rate"
1154
  msgstr "%s Taux de change"
1155
 
1156
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:766
1157
  msgid "Save Exchange Rates"
1158
  msgstr "Sauvegardé les taux de change"
1159
 
1160
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:821
1161
  msgid "Exchange rate override saved"
1162
  msgstr "Taux de change commandé sauvegardé"
1163
 
1164
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
1165
  msgid "Payment completed"
1166
  msgstr "Paiement complet"
1167
 
1168
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842
1169
  #, php-format
1170
  msgid "%s Payment Gateways"
1171
  msgstr "%s Services de Paiements"
1172
 
1173
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842 ../addons/buy-creds/myCRED-
1174
- #: addon-buy-creds.php:992
1175
  msgid "buyCRED Settings"
1176
  msgstr "Configuration buyCRED"
1177
 
1178
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:863
1179
  msgid "Test Mode"
1180
  msgstr "Mode Test"
1181
 
1182
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:865
1183
  msgid "Enabled"
1184
  msgstr "Activé"
1185
 
1186
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
1187
  msgid "Disabled"
1188
  msgstr "Désactivé"
1189
 
1190
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:878
1191
  msgid "Sandbox Mode"
1192
  msgstr "Mode bac à sable"
1193
 
1194
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
1195
  msgid "Enable for test purchases."
1196
  msgstr "Activez pour faire des tests d'achats factices."
1197
 
1198
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:898 ../addons/gateway/event-
1199
- #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:692
1200
  msgid "Update Settings"
1201
  msgstr "Enregistrer la configuration"
1202
 
1203
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
1204
  msgid "More Gateways"
1205
  msgstr "Plus d'entrés"
1206
 
1207
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
1208
- #: 634
1209
  msgid "Date"
1210
  msgstr "Daté"
1211
 
1212
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1213
  msgid "Payed"
1214
  msgstr "Payé"
1215
 
1216
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
1217
  msgid "<strong>buy</strong>CRED Purchase Log"
1218
  msgstr "Relevé des achats <strong>buy</strong>CRED"
1219
 
1220
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
1221
  #: booking/mycred-eventespresso3.php:367
1222
  msgid "Gateway Settings"
1223
  msgstr "Configuration du service de paiement"
1224
 
1225
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171 ../addons/sell-
1226
  #: content/myCRED-addon-sell-content.php:1209
1227
  msgid "No purchases found"
1228
  msgstr "Aucun achat trouvé"
1229
 
1230
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1241 ../addons/buy-creds/myCRED-
1231
- #: addon-buy-creds.php:1354
1232
  msgid "This Add-on needs to setup before you can use this shortcode."
1233
  msgstr ""
1234
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
1235
  "shortcode."
1236
 
1237
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1260 ../addons/buy-creds/myCRED-
1238
- #: addon-buy-creds.php:1373
1239
  msgid "No gateways installed."
1240
  msgstr "Aucun systme de paiement n'est installé."
1241
 
1242
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
1243
- #: addon-buy-creds.php:1374
1244
  msgid "Gateway does not exist."
1245
  msgstr "Le service de paiement n'existe pas."
1246
 
1247
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1309
1248
  msgid "Yourself"
1249
  msgstr "Vous-même"
1250
 
1251
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1375
1252
  msgid "No active gateways found."
1253
  msgstr "Aucun service de paiement n'a été trouvé."
1254
 
1255
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
1256
  msgid "The selected gateway is not active."
1257
  msgstr "Ce service de paiement n'est pas activé"
1258
 
1259
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1423
1260
  #, php-format
1261
  msgid "Buy with %gateway%"
1262
  msgstr "Régler avec %gateway%"
1263
 
1264
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1429 ../addons/sell-
1265
  #: content/myCRED-addon-sell-content.php:44
1266
  msgid "Buy Now"
1267
  msgstr "Acheter maintenant"
1268
 
1269
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1474
1270
  msgid "No users found"
1271
  msgstr "Aucun membre n'a été trouvé"
1272
 
1273
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1484
1274
  msgid "To"
1275
  msgstr "à"
1276
 
1277
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1501
1278
  msgid "Select Amount"
1279
  msgstr "Sélectionnez le montant"
1280
 
1281
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1525
1282
  msgid "min."
1283
  msgstr "mini."
1284
 
1285
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1286
  msgid "Select Gateway"
1287
  msgstr "Sélectionnez le service de paiement"
1288
 
1289
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1574 ../addons/gateway/event-
1290
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1291
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1292
  #: php:35
1293
  msgid "Pay Now"
1294
  msgstr "Payer maintenant"
1295
 
1296
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../includes/mycred-install.
1297
- #: php:524
1298
  msgid "Cancel"
1299
  msgstr "Annuler"
1300
 
1301
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1602 ../addons/ranks/myCRED-
1302
- #: addon-ranks.php:1601 ../modules/mycred-module-log.php:375 ../modules/mycred-
1303
- #: module-settings.php:589 ../modules/mycred-module-settings.php:604
1304
  msgid "Actions"
1305
  msgstr "Actions"
1306
 
@@ -1437,7 +1436,7 @@ msgid "Continue to %s"
1437
  msgstr "Continuer vers %s"
1438
 
1439
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1440
- #: addons/buy-creds/gateways/bitpay.php:226
1441
  msgid "Click here if you are not automatically redirected"
1442
  msgstr "Cliquez ici si vous n'êtes pas automatiquement redirigé"
1443
 
@@ -1497,148 +1496,142 @@ msgstr "Novembre"
1497
  msgid "December"
1498
  msgstr "Décembre"
1499
 
1500
- #: ../addons/buy-creds/gateways/bitpay.php:30 ../addons/buy-
1501
- #: creds/gateways/netbilling.php:35 ../addons/buy-creds/gateways/paypal-standard.
1502
- #: php:30 ../addons/buy-creds/gateways/skrill.php:35
1503
- msgid "Purchase of myCRED %plural%"
1504
- msgstr "Achat de %_plural% myCRED "
1505
-
1506
- #: ../addons/buy-creds/gateways/bitpay.php:60 ../addons/buy-
1507
- #: creds/gateways/netbilling.php:88 ../addons/buy-creds/gateways/paypal-standard.
1508
- #: php:142 ../addons/buy-creds/gateways/skrill.php:119
1509
  #, php-format
1510
  msgid "Price mismatch. Expected: %s Received: %s"
1511
  msgstr "Prix décallé. Excepté: %s reçu: %s"
1512
 
1513
- #: ../addons/buy-creds/gateways/bitpay.php:66 ../addons/buy-creds/gateways/paypal-
1514
- #: standard.php:148 ../addons/buy-creds/gateways/skrill.php:125
1515
  #, php-format
1516
  msgid "Currency mismatch. Expected: %s Received: %s"
1517
  msgstr "Mauvais alignement de monnaies. Excepté: %s Reçut: %s"
1518
 
1519
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
1520
- #: creds/gateways/netbilling.php:94 ../addons/buy-creds/gateways/paypal-standard.
1521
- #: php:154 ../addons/buy-creds/gateways/skrill.php:131
1522
  #, php-format
1523
  msgid "Payment not completed. Received: %s"
1524
  msgstr "Paiement non complet. Reçu: %s"
1525
 
1526
- #: ../addons/buy-creds/gateways/bitpay.php:83 ../addons/buy-
1527
- #: creds/gateways/netbilling.php:105 ../addons/buy-creds/gateways/paypal-standard.
1528
- #: php:165 ../addons/buy-creds/gateways/skrill.php:142 ../addons/buy-
1529
- #: creds/gateways/zombaio.php:174
1530
  msgid "Failed to credit users account."
1531
  msgstr "Echec de créditions aux comptes des utilisateurs."
1532
 
1533
- #: ../addons/buy-creds/gateways/bitpay.php:160 ../addons/buy-
1534
- #: creds/gateways/netbilling.php:140 ../addons/buy-creds/gateways/paypal-standard.
1535
- #: php:202 ../addons/buy-creds/gateways/skrill.php:180 ../addons/buy-
1536
- #: creds/gateways/zombaio.php:201
1537
  msgid "Please setup this gateway before attempting to make a purchase!"
1538
  msgstr ""
1539
  "Veuillez d'abord paramètrer ce service de paiement avant d'essayer de "
1540
  "finaliser un achat !"
1541
 
1542
- #: ../addons/buy-creds/gateways/bitpay.php:212 ../addons/buy-
1543
- #: creds/gateways/bitpay.php:221 ../addons/buy-creds/gateways/netbilling.php:193 .
1544
- #: ./addons/buy-creds/gateways/paypal-standard.php:262 ../addons/buy-
1545
- #: creds/gateways/skrill.php:274 ../addons/buy-creds/gateways/zombaio.php:234
1546
  msgid "Processing payment &hellip;"
1547
  msgstr "Procédure de paiement en cours &hellip;"
1548
 
1549
- #: ../addons/buy-creds/gateways/bitpay.php:214
1550
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1551
  msgstr ""
1552
  "Impossible de créer une facture BitPay. Veuillez contacter l'administrateur "
1553
  "du site."
1554
 
1555
- #: ../addons/buy-creds/gateways/bitpay.php:215
1556
  msgid "Bitpay returned the following error message:"
1557
  msgstr "BitPay signale l'erreur suivante:"
1558
 
1559
- #: ../addons/buy-creds/gateways/bitpay.php:246 ../includes/mycred-remote.php:551
1560
  msgid "API Key"
1561
  msgstr "Clé API"
1562
 
1563
- #: ../addons/buy-creds/gateways/bitpay.php:252 ../addons/buy-
1564
- #: creds/gateways/paypal-standard.php:279 ../addons/buy-creds/gateways/skrill.php:
1565
- #: 292
1566
  msgid "Currency"
1567
  msgstr "Devise"
1568
 
1569
- #: ../addons/buy-creds/gateways/bitpay.php:255
1570
  msgid "Currency Code"
1571
  msgstr "Code devise"
1572
 
1573
- #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1574
- #: creds/gateways/netbilling.php:229 ../addons/buy-creds/gateways/paypal-standard.
1575
- #: php:291 ../addons/buy-creds/gateways/skrill.php:311
1576
  msgid "Item Name"
1577
  msgstr "Nom de l'item"
1578
 
1579
- #: ../addons/buy-creds/gateways/bitpay.php:263 ../addons/buy-
1580
- #: creds/gateways/netbilling.php:233 ../addons/buy-creds/gateways/paypal-standard.
1581
- #: php:295 ../addons/buy-creds/gateways/skrill.php:315
1582
  msgid "Description of the item being purchased by the user."
1583
  msgstr "Description de l'item acquis par l'utilisateur"
1584
 
1585
- #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1586
- #: creds/gateways/netbilling.php:236 ../addons/buy-creds/gateways/paypal-standard.
1587
- #: php:298 ../addons/buy-creds/gateways/skrill.php:318
1588
  msgid "Exchange Rates"
1589
  msgstr "Taux de change."
1590
 
1591
- #: ../addons/buy-creds/gateways/bitpay.php:270
1592
  msgid "Transaction Speed"
1593
  msgstr "Vitesse de transaction"
1594
 
1595
- #: ../addons/buy-creds/gateways/bitpay.php:277
1596
  msgid "High"
1597
  msgstr "Haute"
1598
 
1599
- #: ../addons/buy-creds/gateways/bitpay.php:278
1600
  msgid "Medium"
1601
  msgstr "Moyenne"
1602
 
1603
- #: ../addons/buy-creds/gateways/bitpay.php:279
1604
  msgid "Low"
1605
  msgstr "Basse"
1606
 
1607
- #: ../addons/buy-creds/gateways/bitpay.php:292
1608
  msgid "Full Notifications"
1609
  msgstr "Messages complets"
1610
 
1611
- #: ../addons/buy-creds/gateways/bitpay.php:299 ../includes/mycred-network.php:161
1612
  #: ../includes/mycred-network.php:175
1613
  msgid "No"
1614
  msgstr "non"
1615
 
1616
- #: ../addons/buy-creds/gateways/bitpay.php:300 ../includes/mycred-network.php:157
1617
  #: ../includes/mycred-network.php:171
1618
  msgid "Yes"
1619
  msgstr "oui"
1620
 
1621
- #: ../addons/buy-creds/gateways/netbilling.php:210
1622
  msgid "Account ID"
1623
  msgstr "ID du compte"
1624
 
1625
- #: ../addons/buy-creds/gateways/netbilling.php:216
1626
  msgid "Site Tag"
1627
  msgstr "Mot-clé du site"
1628
 
1629
- #: ../addons/buy-creds/gateways/netbilling.php:222
1630
  msgid "Order Integrity Key"
1631
  msgstr "Commandez une clé de sécurité"
1632
 
1633
- #: ../addons/buy-creds/gateways/netbilling.php:226
1634
  msgid "Found under Step 12 on the Fraud Defense page."
1635
  msgstr "Trouvé à l'étape 12 de la page Défense contre la Fraude"
1636
 
1637
- #: ../addons/buy-creds/gateways/netbilling.php:240
1638
  msgid "Postback CGI URL"
1639
  msgstr "Adresse de retour CGI"
1640
 
1641
- #: ../addons/buy-creds/gateways/netbilling.php:244
1642
  msgid ""
1643
  "For this gateway to work, you must login to your NETbilling account and edit "
1644
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
@@ -1649,99 +1642,104 @@ msgstr ""
1649
  "payment form settings\", indiquez l'URL ci-dessous dans la case Postback CGI "
1650
  "URL et assurez-vous que la case \"Return method\" est bien sur POST."
1651
 
1652
- #: ../addons/buy-creds/gateways/netbilling.php:288
1653
  msgid "Incorrect Credit Card number"
1654
  msgstr "Le numéro de la carte de crédit est incorrect"
1655
 
1656
- #: ../addons/buy-creds/gateways/netbilling.php:294
1657
  msgid "The credit card entered is past its expiration date."
1658
  msgstr "Votre carte de crédit est expirée"
1659
 
1660
- #: ../addons/buy-creds/gateways/netbilling.php:297
1661
  msgid "The CVV2 number entered is not valid."
1662
  msgstr "Le cryptogramme que vous avez indiqué n'est pas valide."
1663
 
1664
- #: ../addons/buy-creds/gateways/netbilling.php:304
1665
  msgid "The bank routing number entered is not valid."
1666
  msgstr "Le numéro de routage de la banque n'est pas valide."
1667
 
1668
- #: ../addons/buy-creds/gateways/netbilling.php:308
1669
  msgid "The bank account number entered is not valid."
1670
  msgstr "Le numéro de compte bancaire n'est pas valide"
1671
 
1672
- #: ../addons/buy-creds/gateways/paypal-standard.php:188 ../addons/buy-
1673
- #: creds/gateways/skrill.php:166
1674
  msgid "Success"
1675
  msgstr "Succès !"
1676
 
1677
- #: ../addons/buy-creds/gateways/paypal-standard.php:189 ../addons/buy-
1678
- #: creds/gateways/skrill.php:167
1679
  msgid "Thank you for your purchase"
1680
  msgstr "Merci pour votre achat"
1681
 
1682
- #: ../addons/buy-creds/gateways/paypal-standard.php:257 ../addons/buy-
1683
- #: creds/gateways/skrill.php:221
1684
- msgid "Return to "
1685
- msgstr "Retour vers"
 
1686
 
1687
- #: ../addons/buy-creds/gateways/paypal-standard.php:285
1688
  msgid "Account Email"
1689
  msgstr "Email du compte"
1690
 
1691
- #: ../addons/buy-creds/gateways/skrill.php:257
 
 
 
 
1692
  msgid "Product:"
1693
  msgstr "Produit:"
1694
 
1695
- #: ../addons/buy-creds/gateways/skrill.php:266
1696
  msgid "Gift to:"
1697
  msgstr "Cadeau à "
1698
 
1699
- #: ../addons/buy-creds/gateways/skrill.php:267
1700
  msgid "(author)"
1701
  msgstr "(auteur)"
1702
 
1703
- #: ../addons/buy-creds/gateways/skrill.php:299
1704
  msgid "Merchant Account Email"
1705
  msgstr "Email du compte marchand"
1706
 
1707
- #: ../addons/buy-creds/gateways/skrill.php:305
1708
  msgid "Secret Word"
1709
  msgstr "Mot secret"
1710
 
1711
- #: ../addons/buy-creds/gateways/skrill.php:322
1712
  msgid "Confirmation Email"
1713
  msgstr "Email de confirmation"
1714
 
1715
- #: ../addons/buy-creds/gateways/skrill.php:325
1716
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1717
  msgstr ""
1718
  "Demander à Skrill d'envoyer un mail de confirmation après chaque acquisition "
1719
  "réussie."
1720
 
1721
- #: ../addons/buy-creds/gateways/skrill.php:328
1722
  msgid "Checkout Page"
1723
  msgstr "Page de contrôle"
1724
 
1725
- #: ../addons/buy-creds/gateways/skrill.php:331 ../addons/gateway/carts/mycred-
1726
- #: woocommerce.php:93 ../addons/ranks/myCRED-addon-ranks.php:1307 ..
1727
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1728
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1729
- #: php:592 ../modules/mycred-module-hooks.php:2876
1730
  msgid "Title"
1731
  msgstr "Titre"
1732
 
1733
- #: ../addons/buy-creds/gateways/skrill.php:333
1734
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1735
  msgstr ""
1736
  "Si vous laissez vide, c'est votre mail de compte qui sera utilisé comme "
1737
  "titre de la page de paiement de Skrill"
1738
 
1739
- #: ../addons/buy-creds/gateways/skrill.php:336 ../addons/buy-
1740
- #: creds/gateways/zombaio.php:269
1741
  msgid "Logo URL"
1742
  msgstr "URL du logo"
1743
 
1744
- #: ../addons/buy-creds/gateways/skrill.php:338
1745
  msgid ""
1746
  "The URL to the image you want to use on the top of the gateway. For best "
1747
  "integration results we recommend you use logos with dimensions up to 200px "
@@ -1751,11 +1749,11 @@ msgstr ""
1751
  "une intégration optimale, nous vous recommandons d'utiliser un logo de 200 "
1752
  "par 50 pixels."
1753
 
1754
- #: ../addons/buy-creds/gateways/skrill.php:341
1755
  msgid "Confirmation Note"
1756
  msgstr "Message de confirmation"
1757
 
1758
- #: ../addons/buy-creds/gateways/skrill.php:343
1759
  msgid ""
1760
  "Optional text to show user once a transaction has been successfully "
1761
  "completed. This text is shown by Skrill."
@@ -1763,12 +1761,12 @@ msgstr ""
1763
  "Texte additionnel en option qui s'affichera une fois une transaction "
1764
  "complétée avec succès. Ce texte est affiché par Skrill."
1765
 
1766
- #: ../addons/buy-creds/gateways/zombaio.php:143
1767
  #, php-format
1768
  msgid "Duplicate transaction. Received: %s"
1769
  msgstr "Dupliquer les transactions. Reçu: %s"
1770
 
1771
- #: ../addons/buy-creds/gateways/zombaio.php:149
1772
  #, php-format
1773
  msgid "Live transaction while debug mode is enabled! Received: %s"
1774
  msgstr ""
@@ -1788,35 +1786,35 @@ msgstr ""
1788
  ":\n"
1789
  "% s"
1790
 
1791
- #: ../addons/buy-creds/gateways/zombaio.php:251
1792
  msgid "Site ID"
1793
  msgstr "ID du site"
1794
 
1795
- #: ../addons/buy-creds/gateways/zombaio.php:257
1796
  msgid "GW Password"
1797
  msgstr "Mot de passe GW"
1798
 
1799
- #: ../addons/buy-creds/gateways/zombaio.php:263
1800
  msgid "Pricing ID"
1801
  msgstr "ID du paiement"
1802
 
1803
- #: ../addons/buy-creds/gateways/zombaio.php:275
1804
  msgid "IP Verification"
1805
  msgstr "ID de vérification"
1806
 
1807
- #: ../addons/buy-creds/gateways/zombaio.php:278
1808
  msgid "Do not verify that callbacks are coming from Zombaio."
1809
  msgstr "Ne pas vérifier que les rappels proviennent de Zombaio."
1810
 
1811
- #: ../addons/buy-creds/gateways/zombaio.php:281
1812
  msgid "Language"
1813
  msgstr "Langue"
1814
 
1815
- #: ../addons/buy-creds/gateways/zombaio.php:288
1816
  msgid "Postback URL (ZScript)"
1817
  msgstr "URL de retour (ZScript)"
1818
 
1819
- #: ../addons/buy-creds/gateways/zombaio.php:292
1820
  msgid ""
1821
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1822
  "address and click validate."
@@ -1906,8 +1904,8 @@ msgid "Used"
1906
  msgstr ""
1907
 
1908
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1909
- #: transfer.php:259 ../modules/mycred-module-hooks.php:1563 ../modules/mycred-
1910
- #: module-hooks.php:1854
1911
  msgid "Limits"
1912
  msgstr "Règles de limitation"
1913
 
@@ -1916,15 +1914,15 @@ msgid "Expires"
1916
  msgstr "Date d'expiration"
1917
 
1918
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1919
- #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:811 ..
1920
- #: addons/email-notices/myCRED-addon-email-notices.php:1028 ..
1921
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1922
- #: addons/gateway/carts/mycred-woocommerce.php:121 ..
1923
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1924
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1925
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1926
- #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1041 ../addons/ranks/myCRED-
1927
- #: addon-ranks.php:1191 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1928
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1929
  #: includes/importers/mycred-cubepoints.php:365
1930
  msgid "Point Type"
@@ -1936,7 +1934,7 @@ msgid "not yet used"
1936
  msgstr "pas encore utilisé"
1937
 
1938
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1939
- #: 395 ../modules/mycred-module-hooks.php:2292
1940
  msgid "Total"
1941
  msgstr "Total"
1942
 
@@ -2102,16 +2100,12 @@ msgstr ""
2102
  "Le message à afficher lorsqu'un bon a été correctement viré sur le compte de "
2103
  "l'utilisateur."
2104
 
2105
- #: ../addons/coupons/includes/mycred-coupon-functions.php:158
2106
- msgid "Coupon redemption"
2107
- msgstr "Rachat de bon"
2108
-
2109
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
2110
  msgid "Apply Coupon"
2111
  msgstr "Appliquer le bon"
2112
 
2113
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
2114
- #: notices/myCRED-addon-email-notices.php:1264
2115
  msgid "Email Notice"
2116
  msgstr "Message à envoyer"
2117
 
@@ -2316,17 +2310,17 @@ msgstr ""
2316
  "lors de la modification d'un mail."
2317
 
2318
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2319
- #: notices/myCRED-addon-email-notices.php:897
2320
  msgid "Email Settings"
2321
  msgstr "Configuration des mails"
2322
 
2323
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2324
- #: notices/myCRED-addon-email-notices.php:1050
2325
  msgid "Senders Name:"
2326
  msgstr "Expéditeur:"
2327
 
2328
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2329
- #: notices/myCRED-addon-email-notices.php:1052
2330
  msgid "Senders Email:"
2331
  msgstr "Email de l'expéditeur"
2332
 
@@ -2350,163 +2344,163 @@ msgstr "Style par défaut"
2350
  msgid "Ignored if HTML is not allowed in emails."
2351
  msgstr "Sera ignoré si HTML désactivé pour les mails"
2352
 
2353
- #: ../addons/email-notices/myCRED-addon-email-notices.php:716
2354
  #, php-format
2355
  msgctxt "Badge Title - Level 1,2,3.."
2356
  msgid "%s - Level %d"
2357
  msgstr ""
2358
 
2359
- #: ../addons/email-notices/myCRED-addon-email-notices.php:806 ../addons/email-
2360
- #: notices/myCRED-addon-email-notices.php:946
2361
  msgid "Email Subject"
2362
  msgstr "Sujet du mail"
2363
 
2364
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
2365
  msgid "Not Active"
2366
  msgstr "Inactif"
2367
 
2368
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2369
  #, php-format
2370
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2371
  msgstr "Pr&eacute;vu pour le:<br /><strong>%1$s</strong>"
2372
 
2373
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
2374
  msgid "Active"
2375
  msgstr "Actif"
2376
 
2377
- #: ../addons/email-notices/myCRED-addon-email-notices.php:842
2378
  #, php-format
2379
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2380
  msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
2381
 
2382
- #: ../addons/email-notices/myCRED-addon-email-notices.php:852
2383
  msgid "Email is sent when"
2384
  msgstr "Le mail sera envoyé quand"
2385
 
2386
- #: ../addons/email-notices/myCRED-addon-email-notices.php:854
2387
  msgid "Missing instance for this notice!"
2388
  msgstr "Ce message n'est pas instancié !"
2389
 
2390
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2391
- #: notices/myCRED-addon-email-notices.php:865 ../addons/email-notices/myCRED-
2392
- #: addon-email-notices.php:867
2393
  msgid "Sent To"
2394
  msgstr "Envoyer à"
2395
 
2396
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2397
- #: notices/myCRED-addon-email-notices.php:1016 ../includes/mycred-admin.php:754 ..
2398
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:562
2399
  msgid "User"
2400
  msgstr "Utilisateur"
2401
 
2402
- #: ../addons/email-notices/myCRED-addon-email-notices.php:865 ../addons/email-
2403
- #: notices/myCRED-addon-email-notices.php:1017
2404
  msgid "Administrator"
2405
  msgstr "Administrateur"
2406
 
2407
- #: ../addons/email-notices/myCRED-addon-email-notices.php:867
2408
  msgid "Both Administrator and User"
2409
  msgstr "A l'administrateur et à l'utilisateur"
2410
 
2411
- #: ../addons/email-notices/myCRED-addon-email-notices.php:877 ../addons/email-
2412
- #: notices/myCRED-addon-email-notices.php:1034
2413
  msgid "All types"
2414
  msgstr ""
2415
 
2416
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
2417
  msgid "Available Template Tags"
2418
  msgstr "Mots-clés utilisables ici"
2419
 
2420
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
2421
  msgid "Email Header"
2422
  msgstr "En-tête du mail"
2423
 
2424
- #: ../addons/email-notices/myCRED-addon-email-notices.php:983
2425
  msgid "Send this email notice when..."
2426
  msgstr "Envoyer ce mail quand...."
2427
 
2428
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1014
2429
  msgid "Recipient:"
2430
  msgstr "Destinataire:"
2431
 
2432
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1018
2433
  msgid "Both"
2434
  msgstr "Les deux"
2435
 
2436
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1022 ..
2437
- #: addons/gateway/carts/mycred-woocommerce.php:161 ../modules/mycred-module-
2438
- #: settings.php:632 ../modules/mycred-module-settings.php:651 ../modules/mycred-
2439
- #: module-settings.php:674
2440
  msgid "Label"
2441
  msgstr "Etiquette"
2442
 
2443
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1054
2444
  msgid "Reply-To Email:"
2445
  msgstr "Adresse de réponse"
2446
 
2447
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1060
2448
  msgid "Save"
2449
  msgstr "Enregistrer"
2450
 
2451
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1072
2452
  msgid "CSS Styling"
2453
  msgstr "Règles de style"
2454
 
2455
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1088
2456
  msgid "Site Related"
2457
  msgstr "A propos du site"
2458
 
2459
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2460
  msgid "Your websites title"
2461
  msgstr "Titre de votre site"
2462
 
2463
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1090
2464
  msgid "Your websites address"
2465
  msgstr "Adresse de votre site"
2466
 
2467
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2468
  msgid "Your websites tagline (description)"
2469
  msgstr "Description de votre site"
2470
 
2471
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2472
  msgid "Your websites admin email"
2473
  msgstr "Email de l'administrateur du site"
2474
 
2475
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2476
  msgid "Total number of blog members"
2477
  msgstr "Total des membres de votre blog"
2478
 
2479
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1097
2480
  msgid "The users new balance"
2481
  msgstr ""
2482
 
2483
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1098
2484
  msgid "The users old balance"
2485
  msgstr ""
2486
 
2487
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1099
2488
  msgid "The amount of points gained or lost in this instance"
2489
  msgstr ""
2490
 
2491
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2492
  msgid "The log entry"
2493
  msgstr ""
2494
 
2495
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1175 ../addons/email-
2496
- #: notices/myCRED-addon-email-notices.php:1178 ../addons/email-notices/myCRED-
2497
- #: addon-email-notices.php:1184
2498
  msgid "Email Notice Updated."
2499
  msgstr "Notice d'Email mis à jour."
2500
 
2501
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1180
2502
  msgid "Email Notice Activated"
2503
  msgstr "Message activé"
2504
 
2505
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1181
2506
  msgid "Email Notice Saved"
2507
  msgstr "Message enregistré"
2508
 
2509
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1200
2510
  msgid ""
2511
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2512
  "are not yet ready to use this email notice!"
@@ -2515,24 +2509,24 @@ msgstr ""
2515
  "actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
2516
  "l'utiliser."
2517
 
2518
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1202
2519
  #, php-format
2520
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2521
  msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
2522
 
2523
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1204
2524
  msgid "This email notice is active."
2525
  msgstr "Ce message est activé."
2526
 
2527
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1215
2528
  msgid "Settings saved."
2529
  msgstr "Paramètres sauvegardés."
2530
 
2531
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1263
2532
  msgid "Unsubscribe"
2533
  msgstr "Se désabonner"
2534
 
2535
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1284
2536
  msgid "There are no email notifications yet."
2537
  msgstr "Il n'y a pas encore de notifications d'email."
2538
 
@@ -2581,7 +2575,7 @@ msgid "Paid"
2581
  msgstr "Payé"
2582
 
2583
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2584
- #: addons/gateway/carts/mycred-woocommerce.php:34 ../includes/mycred-network.php:
2585
  #: 50 ../includes/mycred-network.php:51
2586
  msgid "myCRED"
2587
  msgstr "myCred"
@@ -2614,7 +2608,7 @@ msgstr ""
2614
  ": %balance_f%"
2615
 
2616
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2617
- #: addons/gateway/carts/mycred-woocommerce.php:259
2618
  msgid "Insufficient funds."
2619
  msgstr "Fonds insuffisant."
2620
 
@@ -2654,22 +2648,22 @@ msgid "Gateway Logo URL"
2654
  msgstr "URL du logo du service de paiement"
2655
 
2656
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2657
- #: addons/gateway/carts/mycred-woocommerce.php:137
2658
  #, php-format
2659
  msgid "How much is 1 %_singular% worth in %currency%?"
2660
  msgstr "Combien vaut 1 %_singular% en %currency% ?"
2661
 
2662
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2663
- #: addons/gateway/carts/mycred-woocommerce.php:142 ..
2664
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2665
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2666
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2667
- #: php:578 ../includes/mycred-shortcodes.php:976
2668
  msgid "Exchange Rate"
2669
  msgstr "Taux de change"
2670
 
2671
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2672
- #: addons/gateway/carts/mycred-woocommerce.php:170 ..
2673
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2674
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2675
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2682,7 +2676,7 @@ msgid "Percentage"
2682
  msgstr "Pourcentage"
2683
 
2684
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2685
- #: addons/gateway/carts/mycred-woocommerce.php:172 ..
2686
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2687
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2688
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2756,19 +2750,19 @@ msgstr ""
2756
  "par les d&eacute;tails de la commande: CUSTOMERNAME, ORDERID, ORDERINFO, "
2757
  "SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML interdit."
2758
 
2759
- #: ../addons/gateway/carts/mycred-woocommerce.php:35
2760
  msgid "Let users pay using their myCRED balance."
2761
  msgstr "Laisser les utilisateurs payer à partir de leur relevé myCRED"
2762
 
2763
- #: ../addons/gateway/carts/mycred-woocommerce.php:86
2764
  msgid "Enable/Disable"
2765
  msgstr "Activer/Désactiver"
2766
 
2767
- #: ../addons/gateway/carts/mycred-woocommerce.php:88
2768
  msgid "Enable myCRED Payment"
2769
  msgstr "Activer le paiement myCRED"
2770
 
2771
- #: ../addons/gateway/carts/mycred-woocommerce.php:90
2772
  msgid ""
2773
  "Users who are not logged in or excluded from using myCRED will not have "
2774
  "access to this gateway!"
@@ -2776,64 +2770,64 @@ msgstr ""
2776
  "Les utilisateurs qui ne sont pas connectés ou qui sont exclus de myCRED "
2777
  "n'auront pas accès à ce service de paiement !"
2778
 
2779
- #: ../addons/gateway/carts/mycred-woocommerce.php:95
2780
  msgid "Title to show for this payment option."
2781
  msgstr "Titre à afficher pour cette option de paiement"
2782
 
2783
- #: ../addons/gateway/carts/mycred-woocommerce.php:96
2784
  msgid "Pay with myCRED"
2785
  msgstr "Payer avec myCRED"
2786
 
2787
- #: ../addons/gateway/carts/mycred-woocommerce.php:100
2788
  msgid "Customer Message"
2789
  msgstr "Message au client"
2790
 
2791
- #: ../addons/gateway/carts/mycred-woocommerce.php:111 ..
2792
- #: addons/gateway/carts/mycred-woocommerce.php:183
2793
  msgid "Refund Log Template"
2794
  msgstr "Remboursement par template de connexion"
2795
 
2796
- #: ../addons/gateway/carts/mycred-woocommerce.php:123
2797
  msgid "Select the point type users can use to pay."
2798
  msgstr "Sélectionnez le type de point avec lequel les utilisateurs pourront régler"
2799
 
2800
- #: ../addons/gateway/carts/mycred-woocommerce.php:149
2801
  msgid "Show Total"
2802
  msgstr "Afficher le total"
2803
 
2804
- #: ../addons/gateway/carts/mycred-woocommerce.php:151
2805
  msgid "Show the final price in %_plural% ."
2806
  msgstr "Afficher le prix final en %_plural% ."
2807
 
2808
- #: ../addons/gateway/carts/mycred-woocommerce.php:154
2809
  msgid "Show in Cart"
2810
  msgstr "Afficher avec le panier"
2811
 
2812
- #: ../addons/gateway/carts/mycred-woocommerce.php:155
2813
  msgid "Show on Checkout Page"
2814
  msgstr "Afficher sur la page de contrôle d'achats"
2815
 
2816
- #: ../addons/gateway/carts/mycred-woocommerce.php:156
2817
  msgid "Show in Cart and on Checkout Page"
2818
  msgstr "Afficher avec le panier et sur la page de contrôle"
2819
 
2820
- #: ../addons/gateway/carts/mycred-woocommerce.php:163
2821
  msgid "Order Total in %_plural%"
2822
  msgstr "Commande totale en %_plural%"
2823
 
2824
- #: ../addons/gateway/carts/mycred-woocommerce.php:179
2825
  msgid "Log entry template for profit sharing."
2826
  msgstr "Template de connexion pour les bénéfices partagés"
2827
 
2828
- #: ../addons/gateway/carts/mycred-woocommerce.php:185
2829
  msgid "Log entry template for refunds of profit shares."
2830
  msgstr "Connecter le Template entré pour les remboursements des parts bénéficiaires."
2831
 
2832
- #: ../addons/gateway/carts/mycred-woocommerce.php:211
2833
  msgid "myCRED Payment"
2834
  msgstr "Paiement myCRED"
2835
 
2836
- #: ../addons/gateway/carts/mycred-woocommerce.php:212
2837
  #, php-format
2838
  msgid ""
2839
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
@@ -2845,21 +2839,27 @@ msgstr ""
2845
  "pas connectés ne verront pas ce service de paiement sur la page de contrôle "
2846
  "de leurs paiements."
2847
 
2848
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
2849
  msgid "You must be logged in to pay with %_plural%"
2850
  msgstr "Vous devez être connecté pour payer avec %_plural%"
2851
 
2852
- #: ../addons/gateway/carts/mycred-woocommerce.php:239
2853
  msgid "You can not use this gateway. Please try a different payment option."
2854
  msgstr ""
2855
  "Vous ne pouvez pas utiliser ce service. Veuillez essayer une autre option de "
2856
  "règlement."
2857
 
2858
- #: ../addons/gateway/carts/mycred-woocommerce.php:396
 
 
 
 
 
 
2859
  msgid "Your account has successfully been charged."
2860
  msgstr "Votre compte a été débité avec succès."
2861
 
2862
- #: ../addons/gateway/carts/mycred-woocommerce.php:708 ..
2863
  #: addons/gateway/carts/mycred-wpecommerce.php:131
2864
  msgid "Your current balance"
2865
  msgstr "Votre solde actuel"
@@ -3003,7 +3003,7 @@ msgid "Users must be logged in to use this gateway!"
3003
  msgstr "Vous devez vous connecter pour utiliser ce service !"
3004
 
3005
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
3006
- #: modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
3007
  msgid "Log"
3008
  msgstr "Vue d&#39;ensemble"
3009
 
@@ -3099,8 +3099,8 @@ msgid "Reject"
3099
  msgstr "Rejeter"
3100
 
3101
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
3102
- #: modules/mycred-module-log.php:522 ../modules/mycred-module-settings.php:636 ..
3103
- #: modules/mycred-module-settings.php:655
3104
  msgid "Delete"
3105
  msgstr "Suppirmer"
3106
 
@@ -3239,8 +3239,8 @@ msgid "Use the included CSS Styling for notifications."
3239
  msgstr "Utiliser le style CSS inclus pour les notifications."
3240
 
3241
  #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
3242
- #: addons/ranks/myCRED-addon-ranks.php:1417 ../addons/ranks/myCRED-addon-ranks.
3243
- #: php:1463 ../modules/mycred-module-buddypress.php:428
3244
  msgid "Template"
3245
  msgstr "Texte à afficher"
3246
 
@@ -3277,180 +3277,180 @@ msgid ""
3277
  "to user. Use zero to disable."
3278
  msgstr ""
3279
 
3280
- #: ../addons/ranks/myCRED-addon-ranks.php:211 ../addons/ranks/myCRED-addon-ranks.
3281
- #: php:212 ../addons/ranks/myCRED-addon-ranks.php:440 ../addons/ranks/myCRED-
3282
- #: addon-ranks.php:449 ../addons/ranks/myCRED-addon-ranks.php:455 ..
3283
- #: addons/ranks/myCRED-addon-ranks.php:831 ../addons/ranks/myCRED-addon-ranks.
3284
- #: php:1299 ../addons/ranks/myCRED-addon-ranks.php:1590
3285
  msgid "Ranks"
3286
  msgstr "Attribution de Points"
3287
 
3288
- #: ../addons/ranks/myCRED-addon-ranks.php:422
3289
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3290
  msgstr ""
3291
  "Attention ! Tous les classements vont être supprimés. Cette action ne pourra "
3292
  "pas être annulée."
3293
 
3294
- #: ../addons/ranks/myCRED-addon-ranks.php:423
3295
  msgid "Are you sure you want to re-assign user ranks?"
3296
  msgstr "Je confirme la réassignation du classement de l'utilisateur"
3297
 
3298
- #: ../addons/ranks/myCRED-addon-ranks.php:438
3299
  #, php-format
3300
  msgid "Ranks for %s"
3301
  msgstr ""
3302
 
3303
- #: ../addons/ranks/myCRED-addon-ranks.php:444 ../addons/ranks/myCRED-addon-ranks.
3304
- #: php:831
3305
  msgid "Rank"
3306
  msgstr "Classement"
3307
 
3308
- #: ../addons/ranks/myCRED-addon-ranks.php:446
3309
  msgid "Add New Rank"
3310
  msgstr "Ajouter un nouveau classement"
3311
 
3312
- #: ../addons/ranks/myCRED-addon-ranks.php:447
3313
  msgid "Edit Rank"
3314
  msgstr "Modifier ce classement"
3315
 
3316
- #: ../addons/ranks/myCRED-addon-ranks.php:448
3317
  msgid "New Rank"
3318
  msgstr "Nouveau classement"
3319
 
3320
- #: ../addons/ranks/myCRED-addon-ranks.php:450
3321
  msgid "View Rank"
3322
  msgstr "Afficher le classement"
3323
 
3324
- #: ../addons/ranks/myCRED-addon-ranks.php:451
3325
  msgid "Search Ranks"
3326
  msgstr "Rechercher un classement"
3327
 
3328
- #: ../addons/ranks/myCRED-addon-ranks.php:452
3329
  msgid "No ranks found"
3330
  msgstr "Aucun classement trouvé"
3331
 
3332
- #: ../addons/ranks/myCRED-addon-ranks.php:453
3333
  msgid "No ranks found in Trash"
3334
  msgstr "Aucun classement trouvé dans la corbeille"
3335
 
3336
- #: ../addons/ranks/myCRED-addon-ranks.php:537
3337
  #, php-format
3338
  msgid "Completed - Total of %d users effected"
3339
  msgstr "Terminé - %d utilisateurs ont été affectés"
3340
 
3341
- #: ../addons/ranks/myCRED-addon-ranks.php:975 ../addons/ranks/myCRED-addon-ranks.
3342
- #: php:976 ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-
3343
- #: addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ..
3344
- #: addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.
3345
- #: php:983 ../addons/ranks/myCRED-addon-ranks.php:984
3346
  msgid "Rank Updated."
3347
  msgstr "Rang mis à jour."
3348
 
3349
- #: ../addons/ranks/myCRED-addon-ranks.php:981
3350
  msgid "Rank Enabled"
3351
  msgstr "Rang activé"
3352
 
3353
- #: ../addons/ranks/myCRED-addon-ranks.php:982
3354
  msgid "Rank Saved"
3355
  msgstr "Classement enregistré"
3356
 
3357
- #: ../addons/ranks/myCRED-addon-ranks.php:1019
3358
  #, php-format
3359
  msgid "<strong>Rank:</strong> %s"
3360
  msgstr ""
3361
 
3362
- #: ../addons/ranks/myCRED-addon-ranks.php:1035 ../addons/ranks/myCRED-addon-ranks.
3363
- #: php:1116
3364
  msgid "Rank Title"
3365
  msgstr "Titre du classement"
3366
 
3367
- #: ../addons/ranks/myCRED-addon-ranks.php:1036
3368
  msgid "Logo"
3369
  msgstr "Logo"
3370
 
3371
- #: ../addons/ranks/myCRED-addon-ranks.php:1037
3372
  msgid "Requirement"
3373
  msgstr "Obligation"
3374
 
3375
- #: ../addons/ranks/myCRED-addon-ranks.php:1062
3376
  msgid "No Logo Set"
3377
  msgstr "Aucun logo défini"
3378
 
3379
- #: ../addons/ranks/myCRED-addon-ranks.php:1077 ../addons/ranks/myCRED-addon-ranks.
3380
- #: php:1082
3381
  msgid "Any Value"
3382
  msgstr "Valeur au choix"
3383
 
3384
- #: ../addons/ranks/myCRED-addon-ranks.php:1084
3385
  msgid "Maximum %plural%"
3386
  msgstr "Maximum de %plural%"
3387
 
3388
- #: ../addons/ranks/myCRED-addon-ranks.php:1129
3389
  msgid "Rank Settings"
3390
  msgstr "Configuration des classements"
3391
 
3392
- #: ../addons/ranks/myCRED-addon-ranks.php:1182
3393
  msgid "Minimum %plural% to reach this rank"
3394
  msgstr ""
3395
  "Minimum de %plural% &agrave; d&eacute;tenir pour acc&eacute;der &agrave; ce "
3396
  "classement"
3397
 
3398
- #: ../addons/ranks/myCRED-addon-ranks.php:1186
3399
  msgid "Maximum %plural% to be included in this rank"
3400
  msgstr ""
3401
  "Maximum de %plural% &agrave; poss&eacute;der pour &ecirc;tre inclus dans ce "
3402
  "classement"
3403
 
3404
- #: ../addons/ranks/myCRED-addon-ranks.php:1204
3405
  msgid "All Published Ranks"
3406
  msgstr "Tous les classements publiés"
3407
 
3408
- #: ../addons/ranks/myCRED-addon-ranks.php:1214 ../addons/ranks/myCRED-addon-ranks.
3409
- #: php:1216
3410
  msgid "Not Set"
3411
  msgstr "Non configuré"
3412
 
3413
- #: ../addons/ranks/myCRED-addon-ranks.php:1222
3414
  msgid "No Ranks found"
3415
  msgstr "Aucun classement trouivé"
3416
 
3417
- #: ../addons/ranks/myCRED-addon-ranks.php:1304
3418
  msgid "Rank Features"
3419
  msgstr "Caractéristiques du classement"
3420
 
3421
- #: ../addons/ranks/myCRED-addon-ranks.php:1308
3422
  msgid "%plural% requirement"
3423
  msgstr "condition requise pour l&#39;attribution de %_plural%"
3424
 
3425
- #: ../addons/ranks/myCRED-addon-ranks.php:1309
3426
  msgid "Featured Image (Logo)"
3427
  msgstr "Illustration (logo)"
3428
 
3429
- #: ../addons/ranks/myCRED-addon-ranks.php:1311
3430
  msgid "Content"
3431
  msgstr "Contenu"
3432
 
3433
- #: ../addons/ranks/myCRED-addon-ranks.php:1313
3434
  msgid "Excerpt"
3435
  msgstr "Extrait"
3436
 
3437
- #: ../addons/ranks/myCRED-addon-ranks.php:1315
3438
  msgid "Comments"
3439
  msgstr "Commentaires"
3440
 
3441
- #: ../addons/ranks/myCRED-addon-ranks.php:1317
3442
  msgid "Page Attributes"
3443
  msgstr "Attributs de la page"
3444
 
3445
- #: ../addons/ranks/myCRED-addon-ranks.php:1319
3446
  msgid "Custom Fields"
3447
  msgstr "Champs Personnalisés"
3448
 
3449
- #: ../addons/ranks/myCRED-addon-ranks.php:1323
3450
  msgid "Public"
3451
  msgstr "Public"
3452
 
3453
- #: ../addons/ranks/myCRED-addon-ranks.php:1327
3454
  msgid ""
3455
  "If you want to create a template archive for each rank, you must select to "
3456
  "have ranks public. Defaults to disabled."
@@ -3458,27 +3458,27 @@ msgstr ""
3458
  "Pour créer un template d'archivage pour chaque classement, ceux-ci doivent "
3459
  "être publics. Désactivé par défaut."
3460
 
3461
- #: ../addons/ranks/myCRED-addon-ranks.php:1330
3462
  msgid "Archive URL"
3463
  msgstr "URL des archives"
3464
 
3465
- #: ../addons/ranks/myCRED-addon-ranks.php:1334
3466
  msgid "Ignored if Ranks are not public"
3467
  msgstr "Ignoré si le classement n'est pas public"
3468
 
3469
- #: ../addons/ranks/myCRED-addon-ranks.php:1337
3470
  msgid "Display Order"
3471
  msgstr "Ordre d'affichage"
3472
 
3473
- #: ../addons/ranks/myCRED-addon-ranks.php:1345
3474
  msgid "Ascending - Lowest rank to highest"
3475
  msgstr "Ascendant - Du plus petit au plus grand"
3476
 
3477
- #: ../addons/ranks/myCRED-addon-ranks.php:1346
3478
  msgid "Descending - Highest rank to lowest"
3479
  msgstr "Descendant - Du plus grand au plus petit"
3480
 
3481
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
3482
  msgid ""
3483
  "Select in what order ranks should be displayed in your admin area and/or "
3484
  "front if ranks are \"Public\""
@@ -3486,15 +3486,15 @@ msgstr ""
3486
  "Choisissez l'ordre d'affichage des classements dans l'admin et/ou sur le "
3487
  "site quand les classements sont marqués comme \"Publics\""
3488
 
3489
- #: ../addons/ranks/myCRED-addon-ranks.php:1363
3490
  msgid "Rank Basis"
3491
  msgstr "Base de Classement"
3492
 
3493
- #: ../addons/ranks/myCRED-addon-ranks.php:1366
3494
  msgid "Users are ranked according to their current balance."
3495
  msgstr "Les utilisateurs sont classés selon leur solde courant"
3496
 
3497
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
3498
  msgid ""
3499
  "Users are ranked according to the total amount of %_plural% they have "
3500
  "accumulated."
@@ -3502,18 +3502,18 @@ msgstr ""
3502
  "Les utilisateurs sont classés selon le montant de total de %_plural% qu'ils "
3503
  "ont accumulés."
3504
 
3505
- #: ../addons/ranks/myCRED-addon-ranks.php:1373 ../addons/ranks/myCRED-addon-ranks.
3506
- #: php:1378
3507
  msgid "Calculate Totals"
3508
  msgstr "Calculer les totaux"
3509
 
3510
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3511
  msgid ""
3512
  "Use this button to calculate or recalculate your users totals. If not used, "
3513
  "the users current balance will be used as a starting point."
3514
  msgstr ""
3515
 
3516
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3517
  msgid ""
3518
  "Once a users total has been calculated, they will be assigned to their "
3519
  "appropriate roles. For this reason, it is highly recommended that you first "
@@ -3523,7 +3523,7 @@ msgstr ""
3523
  "leurs seront assignés. Pour cette raison, il est fortement recommandé que "
3524
  "vous configurez d'abord vos classements !"
3525
 
3526
- #: ../addons/ranks/myCRED-addon-ranks.php:1377
3527
  msgid ""
3528
  "Depending on your log size and number of users this process may take a while."
3529
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
@@ -3534,61 +3534,61 @@ msgstr ""
3534
  "cliquez pas sur \"Mettre à jour\" et ne rafraichissez pas la page avant la fin "
3535
  "de l'opération !"
3536
 
3537
- #: ../addons/ranks/myCRED-addon-ranks.php:1394 ../addons/ranks/myCRED-addon-ranks.
3538
- #: php:1440 ../modules/mycred-module-buddypress.php:391
3539
  msgid "Do not show."
3540
  msgstr "Ne pas afficher."
3541
 
3542
- #: ../addons/ranks/myCRED-addon-ranks.php:1395
3543
  msgid "Include in Profile Header."
3544
  msgstr "Inclure dans l'en-tête du profil."
3545
 
3546
- #: ../addons/ranks/myCRED-addon-ranks.php:1397
3547
  msgid "Include under the \"Profile\" tab and Profile Header."
3548
  msgstr "Inclure sous l'onglet \"Profil\" et dans l'en-tête du profil."
3549
 
3550
- #: ../addons/ranks/myCRED-addon-ranks.php:1402
3551
  msgid "Rank in BuddyPress"
3552
  msgstr "Classement dans BuddyPress"
3553
 
3554
- #: ../addons/ranks/myCRED-addon-ranks.php:1419 ../addons/ranks/myCRED-addon-ranks.
3555
- #: php:1465
3556
  #, php-format
3557
  msgid ""
3558
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3559
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3560
  msgstr ""
3561
 
3562
- #: ../addons/ranks/myCRED-addon-ranks.php:1441
3563
  msgid "Include in Topic Replies"
3564
  msgstr ""
3565
 
3566
- #: ../addons/ranks/myCRED-addon-ranks.php:1443
3567
  msgid "Include in Topic Replies and Profile"
3568
  msgstr ""
3569
 
3570
- #: ../addons/ranks/myCRED-addon-ranks.php:1448
3571
  msgid "Rank in bbPress"
3572
  msgstr ""
3573
 
3574
- #: ../addons/ranks/myCRED-addon-ranks.php:1528
3575
  msgid "Script Communication Error"
3576
  msgstr "Erreur de communication des scripts"
3577
 
3578
- #: ../addons/ranks/myCRED-addon-ranks.php:1593 ../modules/mycred-module-settings.
3579
- #: php:596
3580
  msgid "User Meta Key"
3581
  msgstr "Mot clé utilisateur"
3582
 
3583
- #: ../addons/ranks/myCRED-addon-ranks.php:1597
3584
  msgid "No. of ranks"
3585
  msgstr "N° de classement"
3586
 
3587
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3588
  msgid "Remove All Ranks"
3589
  msgstr "Supprimer tous les classements"
3590
 
3591
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3592
  msgid "Assign Ranks to Users"
3593
  msgstr "Attribuer un classement à l'utilisateur"
3594
 
@@ -3793,8 +3793,8 @@ msgid "View Log"
3793
  msgstr "Afficher le rapport"
3794
 
3795
  #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3796
- #: modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ..
3797
- #: modules/mycred-module-hooks.php:27
3798
  msgid "Hooks"
3799
  msgstr "Plugins"
3800
 
@@ -3832,17 +3832,17 @@ msgid "Total Spent: %s"
3832
  msgstr ""
3833
 
3834
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3835
- #: includes/mycred-log.php:837 ../modules/mycred-module-buddypress.php:222
3836
  msgid "Today"
3837
  msgstr "Aujourd'hui"
3838
 
3839
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3840
- #: includes/mycred-log.php:839 ../modules/mycred-module-buddypress.php:224
3841
  msgid "This Week"
3842
  msgstr "Cette semaine"
3843
 
3844
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3845
- #: includes/mycred-log.php:840 ../modules/mycred-module-buddypress.php:225
3846
  msgid "This Month"
3847
  msgstr "Ce mois"
3848
 
@@ -3909,7 +3909,7 @@ msgid "You have exceeded your %limit% transfer limit."
3909
  msgstr "Vous avez dépass&eacute; votre limite de transfert %limit%."
3910
 
3911
  #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3912
- #: php:2446
3913
  msgid "Transfer"
3914
  msgstr "Transférer"
3915
 
@@ -3948,7 +3948,7 @@ msgstr ""
3948
  "autorisé avant qu'il ne soit activé."
3949
 
3950
  #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3951
- #: php:2574
3952
  msgid "Insufficient Funds. Please try a lower amount."
3953
  msgstr "Insuffisance de fonds. S'il vous plait, essayez un montant inférieur."
3954
 
@@ -4104,11 +4104,11 @@ msgstr "email"
4104
  msgid "recipients %s"
4105
  msgstr "destinataires %s"
4106
 
4107
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:219
4108
  msgid "To:"
4109
  msgstr "Transf&eacute;rer à :"
4110
 
4111
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
4112
  msgid "Amount:"
4113
  msgstr "Montant :"
4114
 
@@ -4311,394 +4311,394 @@ msgstr "et"
4311
  msgid "Available Template Tags:"
4312
  msgstr "Mots clés de template disponibles"
4313
 
4314
- #: ../includes/mycred-functions.php:1686
4315
  msgid "Entire Log"
4316
  msgstr "Tout le journal"
4317
 
4318
- #: ../includes/mycred-functions.php:1691 ../includes/mycred-functions.php:1692
4319
  msgid "Displayed Rows"
4320
  msgstr "Colonnes affichées"
4321
 
4322
- #: ../includes/mycred-functions.php:1699
4323
  msgid "Search Results"
4324
  msgstr "Résultats de la recherche"
4325
 
4326
- #: ../includes/mycred-functions.php:1700
4327
  msgid "My Entire Log"
4328
  msgstr "Mon journal complet"
4329
 
4330
- #: ../includes/mycred-functions.php:1867
4331
  msgid "ref empty"
4332
  msgstr "ref est vide"
4333
 
4334
- #: ../includes/mycred-functions.php:1875
4335
  msgid "incorrect user id format"
4336
  msgstr "format du ID utilisateur incorrect"
4337
 
4338
- #: ../includes/mycred-functions.php:1888
4339
  msgid "incorrect unix timestamp (from):"
4340
  msgstr "Horodatage unix incorrect (from):"
4341
 
4342
- #: ../includes/mycred-functions.php:1897
4343
  msgid "incorrect unix timestamp (to):"
4344
  msgstr "Horodatage unix incorrect (to):"
4345
 
4346
- #: ../includes/mycred-functions.php:2306
4347
  msgid "Website Registration"
4348
  msgstr "Inscription au siteweb"
4349
 
4350
- #: ../includes/mycred-functions.php:2307
4351
  msgid "Website Visit"
4352
  msgstr "Visite du siteweb"
4353
 
4354
- #: ../includes/mycred-functions.php:2308
4355
  msgid "Viewing Content (Member)"
4356
  msgstr "Voir le contenu (Membre)"
4357
 
4358
- #: ../includes/mycred-functions.php:2309
4359
  msgid "Viewing Content (Author)"
4360
  msgstr "Voir le contenu (Auteur)"
4361
 
4362
- #: ../includes/mycred-functions.php:2310
4363
  msgid "Logging in"
4364
  msgstr "Connectez-vous"
4365
 
4366
- #: ../includes/mycred-functions.php:2311
4367
  msgid "Publishing Content"
4368
  msgstr "Publié le contenu"
4369
 
4370
- #: ../includes/mycred-functions.php:2312 ../modules/mycred-module-hooks.php:1512
4371
  msgid "Approved Comment"
4372
  msgstr "Commentaire approuvé"
4373
 
4374
- #: ../includes/mycred-functions.php:2313
4375
  msgid "Unapproved Comment"
4376
  msgstr "Commentaire non approuvé"
4377
 
4378
- #: ../includes/mycred-functions.php:2314
4379
  msgid "SPAM Comment"
4380
  msgstr "Commentaire SPAM"
4381
 
4382
- #: ../includes/mycred-functions.php:2315
4383
  msgid "Deleted Comment"
4384
  msgstr "Commentaire supprimé"
4385
 
4386
- #: ../includes/mycred-functions.php:2316
4387
  msgid "Link Click"
4388
  msgstr "Lien cliqué"
4389
 
4390
- #: ../includes/mycred-functions.php:2317
4391
  msgid "Watching Video"
4392
  msgstr "Vidéo regardé"
4393
 
4394
- #: ../includes/mycred-functions.php:2318
4395
  msgid "Visitor Referral"
4396
  msgstr "Visiter référant"
4397
 
4398
- #: ../includes/mycred-functions.php:2319
4399
  msgid "Signup Referral"
4400
  msgstr "Inscription référant"
4401
 
4402
- #: ../includes/mycred-functions.php:2323
4403
  msgid "New Profile Update"
4404
  msgstr "Nouveau profil mis à jour"
4405
 
4406
- #: ../includes/mycred-functions.php:2324
4407
  msgid "Profile Update Removal"
4408
  msgstr ""
4409
 
4410
- #: ../includes/mycred-functions.php:2325
4411
  msgid "Avatar Upload"
4412
  msgstr "Téléchargement d'avatar"
4413
 
4414
- #: ../includes/mycred-functions.php:2326
4415
  msgid "New Friendship"
4416
  msgstr "Nouvel amis"
4417
 
4418
- #: ../includes/mycred-functions.php:2327
4419
  msgid "Ended Friendship"
4420
  msgstr "Fin d'amitié"
4421
 
4422
- #: ../includes/mycred-functions.php:2328
4423
  msgid "New Profile Comment"
4424
  msgstr "Nouveau commentaire profil"
4425
 
4426
- #: ../includes/mycred-functions.php:2329
4427
  msgid "Profile Comment Deletion"
4428
  msgstr "Suppression d'un commentaire du profil"
4429
 
4430
- #: ../includes/mycred-functions.php:2330
4431
  msgid "New Message"
4432
  msgstr "Nouveau message"
4433
 
4434
- #: ../includes/mycred-functions.php:2331
4435
  msgid "Sending Gift"
4436
  msgstr "Envoie d'un cadeau"
4437
 
4438
- #: ../includes/mycred-functions.php:2332
4439
  msgid "New Group"
4440
  msgstr "Nouveau groupe"
4441
 
4442
- #: ../includes/mycred-functions.php:2333
4443
  msgid "Deleted Group"
4444
  msgstr "Groupe supprimé"
4445
 
4446
- #: ../includes/mycred-functions.php:2334
4447
  msgid "New Group Forum Topic"
4448
  msgstr "Nouveau groupe sujet dans le forum"
4449
 
4450
- #: ../includes/mycred-functions.php:2335
4451
  msgid "Edit Group Forum Topic"
4452
  msgstr "Editer un groupe sujet dans le forum"
4453
 
4454
- #: ../includes/mycred-functions.php:2336
4455
  msgid "New Group Forum Post"
4456
  msgstr "Nouveau groupe de post dans le forum"
4457
 
4458
- #: ../includes/mycred-functions.php:2337
4459
  msgid "Edit Group Forum Post"
4460
  msgstr "Editer le groupe de post dans le forum"
4461
 
4462
- #: ../includes/mycred-functions.php:2338
4463
  msgid "Joining Group"
4464
  msgstr "Joindre un groupe"
4465
 
4466
- #: ../includes/mycred-functions.php:2339
4467
  msgid "Leaving Group"
4468
  msgstr "Quitter un groupe"
4469
 
4470
- #: ../includes/mycred-functions.php:2340
4471
  msgid "New Group Avatar"
4472
  msgstr "Nouveau groupe d'avatar"
4473
 
4474
- #: ../includes/mycred-functions.php:2341
4475
  msgid "New Group Comment"
4476
  msgstr "Nouveau groupe de commentaires"
4477
 
4478
- #: ../includes/mycred-functions.php:2345 ../plugins/mycred-hook-buddypress-media.
4479
  #: php:205
4480
  msgid "Photo Upload"
4481
  msgstr "Télécharger la photo"
4482
 
4483
- #: ../includes/mycred-functions.php:2346 ../plugins/mycred-hook-buddypress-media.
4484
  #: php:219
4485
  msgid "Video Upload"
4486
  msgstr "Télécharger la vidéo"
4487
 
4488
- #: ../includes/mycred-functions.php:2347 ../plugins/mycred-hook-buddypress-media.
4489
  #: php:233
4490
  msgid "Music Upload"
4491
  msgstr "Télécharger la musique"
4492
 
4493
- #: ../includes/mycred-functions.php:2351
4494
  msgid "New Link"
4495
  msgstr "Nouveau lien"
4496
 
4497
- #: ../includes/mycred-functions.php:2352
4498
  msgid "Link Voting"
4499
  msgstr "Lien de vote"
4500
 
4501
- #: ../includes/mycred-functions.php:2353
4502
  msgid "Link Update"
4503
  msgstr "Lien mis à jour"
4504
 
4505
- #: ../includes/mycred-functions.php:2357
4506
  msgid "New Forum (bbPress)"
4507
  msgstr "Nouveau forum (bbpress)"
4508
 
4509
- #: ../includes/mycred-functions.php:2358
4510
  msgid "New Forum Topic (bbPress)"
4511
  msgstr "Nouveau sujet de forum (bbpress)"
4512
 
4513
- #: ../includes/mycred-functions.php:2359
4514
  msgid "Favorited Topic (bbPress)"
4515
  msgstr "Sujet favoris (bbPress)"
4516
 
4517
- #: ../includes/mycred-functions.php:2360
4518
  msgid "New Topic Reply (bbPress)"
4519
  msgstr "Nouvelle réponse d'un sujet (Bbpress)"
4520
 
4521
- #: ../includes/mycred-functions.php:2364
4522
  msgid "Form Submission (Contact Form 7)"
4523
  msgstr "Formulaire de soumission (Contact Form 7)"
4524
 
4525
- #: ../includes/mycred-functions.php:2367
4526
  msgid "Form Submission (Gravity Form)"
4527
  msgstr "Formulaire de soumission (Contact Form 7)"
4528
 
4529
- #: ../includes/mycred-functions.php:2370
4530
  msgid "New Forum Topic (SimplePress)"
4531
  msgstr "Nouveau sujet de Forum (SimplePress)"
4532
 
4533
- #: ../includes/mycred-functions.php:2371
4534
  msgid "New Forum Post (SimplePress)"
4535
  msgstr "Nouveau post sur le forum (SimplePress)"
4536
 
4537
- #: ../includes/mycred-functions.php:2380
4538
  msgid "Affiliate Signup (AffiliateWP)"
4539
  msgstr ""
4540
 
4541
- #: ../includes/mycred-functions.php:2381
4542
  msgid "Referred Visit (AffiliateWP)"
4543
  msgstr ""
4544
 
4545
- #: ../includes/mycred-functions.php:2382
4546
  msgid "Affiliate Referral (AffiliateWP)"
4547
  msgstr ""
4548
 
4549
- #: ../includes/mycred-functions.php:2383
4550
  msgid "Referral Refund (AffiliateWP)"
4551
  msgstr ""
4552
 
4553
- #: ../includes/mycred-functions.php:2387 ../plugins/mycred-hook-wp-postratings.
4554
  #: php:150
4555
  msgid "Adding a Rating"
4556
  msgstr ""
4557
 
4558
- #: ../includes/mycred-functions.php:2388 ../plugins/mycred-hook-wp-postratings.
4559
  #: php:169
4560
  msgid "Receiving a Rating"
4561
  msgstr ""
4562
 
4563
- #: ../includes/mycred-functions.php:2392
4564
  msgid "Poll Voting"
4565
  msgstr "Poll Voting"
4566
 
4567
- #: ../includes/mycred-functions.php:2395
4568
  msgid "Sending an Invite"
4569
  msgstr "Envoie d'une invitation"
4570
 
4571
- #: ../includes/mycred-functions.php:2396
4572
  msgid "Accepting an Invite"
4573
  msgstr "Accepter une invitation"
4574
 
4575
- #: ../includes/mycred-functions.php:2402
4576
  msgid "Banking Payout"
4577
  msgstr "Paiement bancaire"
4578
 
4579
- #: ../includes/mycred-functions.php:2405
4580
  msgid "buyCRED Purchase (PayPal Standard)"
4581
  msgstr "Achat buyCRED (PayPal Standart)"
4582
 
4583
- #: ../includes/mycred-functions.php:2406
4584
  msgid "buyCRED Purchase (Skrill)"
4585
  msgstr "Achat buyCRED (Skrill)"
4586
 
4587
- #: ../includes/mycred-functions.php:2407
4588
  msgid "buyCRED Purchase (Zombaio)"
4589
  msgstr "Achat buyCRED (Zombaio)"
4590
 
4591
- #: ../includes/mycred-functions.php:2408
4592
  msgid "buyCRED Purchase (NETBilling)"
4593
  msgstr "Achat buyCRED (Netbilling)"
4594
 
4595
- #: ../includes/mycred-functions.php:2409
4596
  msgid "buyCRED Purchase (BitPay)"
4597
  msgstr "Achat buyCRED (BitPay)"
4598
 
4599
- #: ../includes/mycred-functions.php:2414
4600
  msgid "Coupon Purchase"
4601
  msgstr "Coupon d'achat"
4602
 
4603
- #: ../includes/mycred-functions.php:2418
4604
  msgid "Store Purchase (WooCommerce)"
4605
  msgstr "Magasin achat (WooCOmmerce)"
4606
 
4607
- #: ../includes/mycred-functions.php:2419
4608
  msgid "Store Reward (WooCommerce)"
4609
  msgstr ""
4610
 
4611
- #: ../includes/mycred-functions.php:2420
4612
  msgid "Product Review (WooCommerce)"
4613
  msgstr ""
4614
 
4615
- #: ../includes/mycred-functions.php:2423
4616
  msgid "Store Purchase (MarketPress)"
4617
  msgstr "Magasin achat (MarketPress)"
4618
 
4619
- #: ../includes/mycred-functions.php:2424
4620
  msgid "Store Reward (MarketPress)"
4621
  msgstr ""
4622
 
4623
- #: ../includes/mycred-functions.php:2427
4624
  msgid "Store Purchase (WP E-Commerce)"
4625
  msgstr "Magasin achat (Wp E-commence)"
4626
 
4627
- #: ../includes/mycred-functions.php:2433
4628
  msgid "Event Payment (Event Espresso)"
4629
  msgstr "Evènement paiement (Event Espresso)"
4630
 
4631
- #: ../includes/mycred-functions.php:2434
4632
  msgid "Event Sale (Event Espresso)"
4633
  msgstr "Evènement vendu (Event Espresso)"
4634
 
4635
- #: ../includes/mycred-functions.php:2438
4636
  msgid "Event Payment (Events Manager)"
4637
  msgstr "Evènement payé (Events Manager)"
4638
 
4639
- #: ../includes/mycred-functions.php:2439
4640
  msgid "Event Sale (Events Manager)"
4641
  msgstr "Evènement vendu (Events Manager)"
4642
 
4643
- #: ../includes/mycred-functions.php:2443
4644
  msgid "Content Purchase / Sale"
4645
  msgstr "Contenu acheté/vendu"
4646
 
4647
- #: ../includes/mycred-functions.php:2450
4648
  msgid "Manual Adjustment by Admin"
4649
  msgstr "Ajustements manuel par admin"
4650
 
4651
- #: ../includes/mycred-functions.php:2520 ../includes/mycred-shortcodes.php:924
4652
  msgid "Point types not found."
4653
  msgstr "Types de point non trouvé."
4654
 
4655
- #: ../includes/mycred-functions.php:2532 ../includes/mycred-functions.php:2552 ..
4656
- #: includes/mycred-shortcodes.php:930 ../includes/mycred-shortcodes.php:938
4657
  #, php-format
4658
  msgid "You are excluded from using %s."
4659
  msgstr "Vous êtes exclu d'utiliser %s"
4660
 
4661
- #: ../includes/mycred-functions.php:2542 ../includes/mycred-shortcodes.php:934
4662
  msgid "Your balance is too low to use this feature."
4663
  msgstr "Votre solde est trop bas pour utiliser cet élément."
4664
 
4665
- #: ../includes/mycred-functions.php:2565
4666
  #, php-format
4667
  msgid "You must exchange at least %s!"
4668
  msgstr "Vous devez échanger au minimum %s!"
4669
 
4670
- #: ../includes/mycred-functions.php:2587
4671
  #, php-format
4672
  msgid "Exchange from %s"
4673
  msgstr "Echange par %s"
4674
 
4675
- #: ../includes/mycred-functions.php:2599
4676
  #, php-format
4677
  msgid "Exchange to %s"
4678
  msgstr "Echange de %s"
4679
 
4680
- #: ../includes/mycred-functions.php:2607
4681
  #, php-format
4682
  msgid "You have successfully exchanged %s into %s."
4683
  msgstr "Vous avez échangez avec succès %s en %s."
4684
 
4685
- #: ../includes/mycred-functions.php:2638
4686
  msgid "per day"
4687
  msgstr ""
4688
 
4689
- #: ../includes/mycred-functions.php:2640
4690
  msgid "per week"
4691
  msgstr ""
4692
 
4693
- #: ../includes/mycred-functions.php:2642
4694
  msgid "per month"
4695
  msgstr ""
4696
 
4697
- #: ../includes/mycred-functions.php:2644
4698
  msgid "in total"
4699
  msgstr ""
4700
 
4701
- #: ../includes/mycred-functions.php:2646 ../includes/mycred-functions.php:2650
4702
  #, php-format
4703
  msgid "Maximum once"
4704
  msgid_plural "Maximum %d times"
@@ -4768,28 +4768,28 @@ msgstr ""
4768
  "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
4769
  "apparues:"
4770
 
4771
- #: ../includes/mycred-install.php:256
4772
  msgid "myCRED needs your attention."
4773
  msgstr "myCRED requiert votre attention."
4774
 
4775
- #: ../includes/mycred-install.php:256
4776
  msgid "Run Setup"
4777
  msgstr "Démarrer l'installation"
4778
 
4779
- #: ../includes/mycred-install.php:268 ../includes/mycred-install.php:269
4780
  msgid "myCRED Setup"
4781
  msgstr "Installation de myCRED"
4782
 
4783
- #: ../includes/mycred-install.php:398
4784
  #, php-format
4785
  msgid "%s Setup"
4786
  msgstr "Configuration %s"
4787
 
4788
- #: ../includes/mycred-install.php:400
4789
  msgid "Step"
4790
  msgstr "Etape"
4791
 
4792
- #: ../includes/mycred-install.php:424
4793
  msgid ""
4794
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4795
  "points format, layout and security settings."
@@ -4798,75 +4798,75 @@ msgstr ""
4798
  "alors en mesure de choisir le format de points, l'apparence et les "
4799
  "paramètres de sécurité."
4800
 
4801
- #: ../includes/mycred-install.php:425
4802
  msgid "Begin Setup"
4803
  msgstr "Démarrer le paramétrage"
4804
 
4805
- #: ../includes/mycred-install.php:480
4806
  msgid "Select the format you want to use for your points."
4807
  msgstr "Choisissez le format que vous voulez utiliser pour vos points"
4808
 
4809
- #: ../includes/mycred-install.php:481
4810
  msgid "Format"
4811
  msgstr "Formatage"
4812
 
4813
- #: ../includes/mycred-install.php:484
4814
  msgid "Separators"
4815
  msgstr "Séparateurs"
4816
 
4817
- #: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:501
4818
  msgid "Decimals"
4819
  msgstr "Décimales"
4820
 
4821
- #: ../includes/mycred-install.php:496
4822
  msgid "Use zero for no decimals or maximum 20."
4823
  msgstr ""
4824
 
4825
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:505
4826
  msgid "Presentation"
4827
  msgstr "Présentation"
4828
 
4829
- #: ../includes/mycred-install.php:502 ../modules/mycred-module-settings.php:488
4830
  msgid "Name (Singular)"
4831
  msgstr "Nom (singulier)"
4832
 
4833
- #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:493
4834
  msgid "Name (Plural)"
4835
  msgstr "Nom (pluriel)"
4836
 
4837
- #: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:508
4838
  msgid "Prefix"
4839
  msgstr "Préfixe"
4840
 
4841
- #: ../includes/mycred-install.php:520 ../modules/mycred-module-settings.php:516
4842
  msgid "Suffix"
4843
  msgstr "Suffixe"
4844
 
4845
- #: ../includes/mycred-install.php:524
4846
  msgid "Cancel Setup"
4847
  msgstr "Annuler le paramétrage"
4848
 
4849
- #: ../includes/mycred-install.php:524 ../includes/mycred-install.php:594
4850
  msgid "Next"
4851
  msgstr "Suivant"
4852
 
4853
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:524
4854
  msgid "Security"
4855
  msgstr "Sécurité"
4856
 
4857
- #: ../includes/mycred-install.php:559
4858
  msgid "Edit Settings Capability"
4859
  msgstr "Modifier les paramètres"
4860
 
4861
- #: ../includes/mycred-install.php:563
4862
  msgid "Edit Users %plural% Capability"
4863
  msgstr "Modifier la capacit&eacute; de %plural% des utilisateurs"
4864
 
4865
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:537
4866
  msgid "Maximum %plural% payouts"
4867
  msgstr "Maximum de %plural% à régler"
4868
 
4869
- #: ../includes/mycred-install.php:569 ../modules/mycred-module-settings.php:539
4870
  msgid ""
4871
  "As an added security, you can set the maximum amount a user can gain or "
4872
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -4879,104 +4879,104 @@ msgstr ""
4879
  "maximum pouvant être dépensé, transféré ou reçu. Utilisez zéro pour "
4880
  "désactiver l'option."
4881
 
4882
- #: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:542
4883
  msgid "Excludes"
4884
  msgstr "Exclure"
4885
 
4886
- #: ../includes/mycred-install.php:576 ../modules/mycred-module-settings.php:546
4887
  msgid "Exclude those who can \"Edit Settings\"."
4888
  msgstr "Exclure ceux qui peuvent \"modifier les réglages\"."
4889
 
4890
- #: ../includes/mycred-install.php:580 ../modules/mycred-module-settings.php:550
4891
  msgid "Exclude those who can \"Edit Users %plural%\"."
4892
  msgstr "Exclure ceux qui peuvent \"modifier les %_points% de l'utilisateur\"."
4893
 
4894
- #: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:554
4895
  msgid "Exclude the following user IDs:"
4896
  msgstr "Exclure les utilisateurs (ID) suivants"
4897
 
4898
- #: ../includes/mycred-install.php:587 ../modules/mycred-module-settings.php:559
4899
  msgid "User Deletions"
4900
  msgstr "Suppression de l'utilisateur"
4901
 
4902
- #: ../includes/mycred-install.php:591 ../modules/mycred-module-settings.php:562
4903
  msgid "Delete log entries when user is deleted."
4904
  msgstr "supprimer les données attachées lors de la suppression de l'utilisateur"
4905
 
4906
- #: ../includes/mycred-install.php:612
4907
  msgid "Ready"
4908
  msgstr "Prêt !"
4909
 
4910
- #: ../includes/mycred-install.php:613
4911
  msgid "Almost done! Click the button below to finish this setup."
4912
  msgstr ""
4913
  "C'est presque fini ! Cliquez sur le bouton ci-dessous pour terminer cette "
4914
  "configuration."
4915
 
4916
- #: ../includes/mycred-install.php:614
4917
  msgid "Install & Run"
4918
  msgstr "Installer et démarrer"
4919
 
4920
- #: ../includes/mycred-log.php:398
4921
  #, php-format
4922
  msgid "Showing %d %s"
4923
  msgstr "Affichage de %d %s"
4924
 
4925
- #: ../includes/mycred-log.php:398
4926
  msgid "entry"
4927
  msgstr "entrée"
4928
 
4929
- #: ../includes/mycred-log.php:412
4930
  msgid "Go to the first page"
4931
  msgstr "Aller à la première page"
4932
 
4933
- #: ../includes/mycred-log.php:419
4934
  msgid "Go to the previous page"
4935
  msgstr "Aller à la page précédente"
4936
 
4937
- #: ../includes/mycred-log.php:428
4938
  msgid "Current page"
4939
  msgstr "Page actuelle"
4940
 
4941
- #: ../includes/mycred-log.php:434
4942
  #, php-format
4943
  msgctxt "mycred"
4944
  msgid "%1$s of %2$s"
4945
  msgstr ""
4946
 
4947
- #: ../includes/mycred-log.php:438
4948
  msgid "Go to the next page"
4949
  msgstr "Aller à la page suivante"
4950
 
4951
- #: ../includes/mycred-log.php:445
4952
  msgid "Go to the last page"
4953
  msgstr "Aller à la dernière page"
4954
 
4955
- #: ../includes/mycred-log.php:512
4956
  msgid "Show all references"
4957
  msgstr "Afficher toutes les références"
4958
 
4959
- #: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:705
4960
- msgid "User ID"
4961
- msgstr "ID utilisateur"
4962
 
4963
- #: ../includes/mycred-log.php:531
4964
  msgid "Show in order"
4965
  msgstr "Afficher sur la commande"
4966
 
4967
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:426
4968
  msgid "Ascending"
4969
  msgstr "Ascendant"
4970
 
4971
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:427
4972
  msgid "Descending"
4973
  msgstr "Descendant"
4974
 
4975
- #: ../includes/mycred-log.php:550
4976
  msgid "Filter"
4977
  msgstr "Filtre"
4978
 
4979
- #: ../includes/mycred-log.php:603
4980
  msgid ""
4981
  "Log entries are exported to a CSV file and depending on the number of "
4982
  "entries selected, the process may take a few seconds."
@@ -4984,36 +4984,36 @@ msgstr ""
4984
  "Les données sont exportées dans un fichier CSV. Selon le nombre "
4985
  "d'enregistrements sélectionnés, le processus peut durer un petit moment."
4986
 
4987
- #: ../includes/mycred-log.php:607
4988
  msgid "No export options available."
4989
  msgstr "Aucune option d'exportation disponible."
4990
 
4991
- #: ../includes/mycred-log.php:636
4992
  msgid "Entry"
4993
  msgstr "Motif"
4994
 
4995
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:484
4996
  msgid "User Missing"
4997
  msgstr "Utilisateur inexistant"
4998
 
4999
- #: ../includes/mycred-log.php:807
5000
  msgid "No log entries found"
5001
  msgstr "Aucun enregistrement à afficher."
5002
 
5003
- #: ../includes/mycred-log.php:822 ../includes/mycred-log.php:824
5004
  msgid "Search Log"
5005
  msgstr "Journal de recherche"
5006
 
5007
- #: ../includes/mycred-log.php:823
5008
  msgid "search log entries"
5009
  msgstr "Recherchez une donnée"
5010
 
5011
- #: ../includes/mycred-log.php:836 ../modules/mycred-module-buddypress.php:221 ..
5012
- #: modules/mycred-module-buddypress.php:234
5013
  msgid "All"
5014
  msgstr "Historique complet"
5015
 
5016
- #: ../includes/mycred-log.php:838 ../modules/mycred-module-buddypress.php:223
5017
  msgid "Yesterday"
5018
  msgstr "Hier"
5019
 
@@ -5191,56 +5191,56 @@ msgstr "Envoyer"
5191
  msgid "Error - Try Again"
5192
  msgstr "Erreur - essayez encore une fois"
5193
 
5194
- #: ../includes/mycred-shortcodes.php:763
5195
  msgid "A video ID is required for this shortcode"
5196
  msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
5197
 
5198
- #: ../includes/mycred-shortcodes.php:956
5199
  #, php-format
5200
  msgid "Convert <span>%s</span> to <span>%s</span>"
5201
  msgstr "Convertir <span>%s</span> par <span>%s</span>"
5202
 
5203
- #: ../includes/mycred-shortcodes.php:965
5204
  #, php-format
5205
  msgid "Your current %s balance"
5206
  msgstr "Votre solde actuel %s"
5207
 
5208
- #: ../includes/mycred-shortcodes.php:973
5209
  #, php-format
5210
  msgid "Minimum %s"
5211
  msgstr "Minimum %s"
5212
 
5213
- #: ../includes/mycred-shortcodes.php:977
5214
  #, php-format
5215
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
5216
  msgstr "1 %s = <span class=\"Taux\">%s</span> %s"
5217
 
5218
- #: ../includes/mycred-shortcodes.php:983
5219
  msgid "Exchange"
5220
  msgstr "Echange"
5221
 
5222
- #: ../includes/mycred-shortcodes.php:1048
5223
  msgid "No instances found for this point type"
5224
  msgstr ""
5225
 
5226
- #: ../includes/mycred-shortcodes.php:1052
5227
  msgid "Invalid point type"
5228
  msgstr ""
5229
 
5230
- #: ../includes/mycred-shortcodes.php:1111
5231
  msgid "Instance"
5232
  msgstr ""
5233
 
5234
- #: ../includes/mycred-shortcodes.php:1113 ../modules/mycred-module-hooks.php:600 .
5235
- #: ./modules/mycred-module-hooks.php:607 ../modules/mycred-module-hooks.php:631 ..
5236
- #: modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:706 ..
5237
- #: modules/mycred-module-hooks.php:713 ../modules/mycred-module-hooks.php:898 ..
5238
- #: modules/mycred-module-hooks.php:1029 ../modules/mycred-module-hooks.php:1046 .
5239
- #: ./modules/mycred-module-hooks.php:1093 ../modules/mycred-module-hooks.php:2793
5240
- #: ../modules/mycred-module-hooks.php:2822 ../plugins/mycred-hook-affiliatewp.php:
5241
- #: 237 ../plugins/mycred-hook-bbPress.php:413 ../plugins/mycred-hook-bbPress.php:
5242
- #: 443 ../plugins/mycred-hook-bbPress.php:478 ../plugins/mycred-hook-bbPress.php:
5243
- #: 495 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
5244
  #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
5245
  #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
5246
  #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
@@ -5261,7 +5261,7 @@ msgstr ""
5261
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5262
  #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5263
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5264
- #: php:314 ../plugins/mycred-hook-woocommerce.php:300 ../plugins/mycred-hook-wp-
5265
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5266
  #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
5267
  #: postratings.php:175
@@ -5551,23 +5551,23 @@ msgstr "Importer le rapport d'entrées"
5551
  msgid "Import log entries from a CSV file."
5552
  msgstr "Importer le rapport d'entrées depuis un fichier CSV."
5553
 
5554
- #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
5555
  msgid "Add-ons"
5556
  msgstr "Modules"
5557
 
5558
- #: ../modules/mycred-module-addons.php:151
5559
  msgid "Give your users badges based on their interaction with your website."
5560
  msgstr ""
5561
  "Donner à vos utilisateurs des badges basés sur leurs interactions avec votre "
5562
  "site."
5563
 
5564
- #: ../modules/mycred-module-addons.php:162
5565
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
5566
  msgstr ""
5567
  "Paramétrez les paiements réguliers ou offres / pénalités et intérêts "
5568
  "relatifs aux soldes de comptes de vos utilisateurs."
5569
 
5570
- #: ../modules/mycred-module-addons.php:173
5571
  msgid ""
5572
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5573
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
@@ -5578,7 +5578,7 @@ msgstr ""
5578
  "NETbilling. buyCRED permet également à un utilisateur d'acheter des points "
5579
  "pour un autre membre du site."
5580
 
5581
- #: ../modules/mycred-module-addons.php:184
5582
  msgid ""
5583
  "The coupons add-on allows you to create coupons that users can use to add "
5584
  "points to their accounts."
@@ -5586,11 +5586,11 @@ msgstr ""
5586
  "Le module de bons de réductions vous permet de créer des bons que les "
5587
  "utilisateurs pourront utiliser pour ajouter des points à leur compte."
5588
 
5589
- #: ../modules/mycred-module-addons.php:195
5590
  msgid "Create email notices for any type of myCRED instance."
5591
  msgstr "Créez des alertes par mail pour tout type d'action avec myCRED."
5592
 
5593
- #: ../modules/mycred-module-addons.php:206
5594
  msgid ""
5595
  "Let your users pay using their <strong>my</strong>CRED points balance. "
5596
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
@@ -5601,13 +5601,13 @@ msgstr ""
5601
  "MarketPress et WP E-Commerce. Egalement compatible avec les systèmes de "
5602
  "réservations Event Espresso et Events Manager (gratuit & pro)."
5603
 
5604
- #: ../modules/mycred-module-addons.php:217
5605
  msgid "Create pop-up notifications for when users gain or loose points."
5606
  msgstr ""
5607
  "Crée une pop-up de notification lorsqu'un utilisateur gagne ou perd des "
5608
  "points."
5609
 
5610
- #: ../modules/mycred-module-addons.php:229
5611
  msgid ""
5612
  "Create ranks for users reaching a certain number of %_plural% with the "
5613
  "option to add logos for each rank."
@@ -5615,7 +5615,7 @@ msgstr ""
5615
  "Créez des classements pour les utilisateurs atteignants un certain nombre de "
5616
  "%_plural%, avec en option l'ajout d'un logo signalant leur classement."
5617
 
5618
- #: ../modules/mycred-module-addons.php:240
5619
  msgid ""
5620
  "This add-on allows you to sell posts, pages or any public post types on your "
5621
  "website. You can either sell the entire content or using our shortcode, sell "
@@ -5626,13 +5626,13 @@ msgstr ""
5626
  "contenu ou proposer des extraits à titre d'échantillons à l'aide de nos "
5627
  "shortcodes."
5628
 
5629
- #: ../modules/mycred-module-addons.php:251
5630
  msgid ""
5631
  "Gives you access to your myCRED Staticstics based on your users gains and "
5632
  "loses."
5633
  msgstr ""
5634
 
5635
- #: ../modules/mycred-module-addons.php:262
5636
  msgid ""
5637
  "Allow your users to send or \"donate\" points to other members by either using "
5638
  "the mycred_transfer shortcode or the myCRED Transfer widget."
@@ -5640,170 +5640,178 @@ msgstr ""
5640
  "Autorisez vos membres à s'envoyer des points ou en faire don entre eux, en "
5641
  "utilisant le shortcode mycred_transfer ou avec le widget myCRED Transfert."
5642
 
5643
- #: ../modules/mycred-module-addons.php:297
5644
  #, php-format
5645
  msgid "%s Add-ons"
5646
  msgstr "Modules %s"
5647
 
5648
- #: ../modules/mycred-module-addons.php:302
5649
  msgid "Add-on Activated"
5650
  msgstr "Module activé"
5651
 
5652
- #: ../modules/mycred-module-addons.php:305
5653
  msgid "Add-on Deactivated"
5654
  msgstr "Module désactivé"
5655
 
5656
- #: ../modules/mycred-module-addons.php:309
 
 
 
 
5657
  msgid "Add-ons can expand your current installation with further features."
5658
  msgstr ""
5659
  "Les modules servent à étendre l'application avec des fonctionnalités "
5660
  "supplémentaires."
5661
 
5662
- #: ../modules/mycred-module-addons.php:330
 
 
 
 
5663
  #, php-format
5664
  msgid "You can find more add-ons in our %s."
5665
  msgstr "Vous trouverez d'autres modules sur notre %s"
5666
 
5667
- #: ../modules/mycred-module-addons.php:330
5668
  msgid "online store"
5669
  msgstr "boutique en ligne"
5670
 
5671
- #: ../modules/mycred-module-addons.php:351
5672
  msgid "Deactivate Add-on"
5673
  msgstr "Désactiver le module"
5674
 
5675
- #: ../modules/mycred-module-addons.php:352
5676
  msgid "Deactivate"
5677
  msgstr "Désactiver"
5678
 
5679
- #: ../modules/mycred-module-addons.php:359
5680
  msgid "Activate Add-on"
5681
  msgstr "Activer le module"
5682
 
5683
- #: ../modules/mycred-module-addons.php:360
5684
  msgid "Activate"
5685
  msgstr "Activer"
5686
 
5687
- #: ../modules/mycred-module-addons.php:376
5688
  msgid "Version"
5689
  msgstr "Version"
5690
 
5691
- #: ../modules/mycred-module-addons.php:380
5692
  msgid "By"
5693
  msgstr "Par"
5694
 
5695
- #: ../modules/mycred-module-addons.php:384
5696
  msgid "About"
5697
  msgstr "&Agrave; propos"
5698
 
5699
- #: ../modules/mycred-module-addons.php:388
5700
  msgid "Get Pro"
5701
  msgstr "Obtenir la version Pro"
5702
 
5703
- #: ../modules/mycred-module-buddypress.php:30
5704
  msgid "My History"
5705
  msgstr "Mon historique"
5706
 
5707
- #: ../modules/mycred-module-buddypress.php:31
5708
  #, php-format
5709
  msgid "%s's History"
5710
  msgstr "Historique de %s"
5711
 
5712
- #: ../modules/mycred-module-buddypress.php:121
5713
  msgid "Current balance"
5714
  msgstr "Solde courant"
5715
 
5716
- #: ../modules/mycred-module-buddypress.php:336
5717
  msgid "Go"
5718
  msgstr "Go"
5719
 
5720
- #: ../modules/mycred-module-buddypress.php:392
5721
  msgid "Show in Profile"
5722
  msgstr "Afficher sur le profil"
5723
 
5724
- #: ../modules/mycred-module-buddypress.php:407
5725
  #, php-format
5726
  msgid "%singular% Balance"
5727
  msgstr "Solde de %singular%"
5728
 
5729
- #: ../modules/mycred-module-buddypress.php:423
5730
  #, php-format
5731
  msgid "Members and visitors can other members %_singular% balance."
5732
  msgstr ""
5733
  "Les membres et les visiteurs peuvent voir le solde de %_singular% des autres "
5734
  "membres."
5735
 
5736
- #: ../modules/mycred-module-buddypress.php:433
5737
  msgid "%plural% History"
5738
  msgstr "Historique des %plural%"
5739
 
5740
- #: ../modules/mycred-module-buddypress.php:449
5741
  msgid "Members can view each others %_plural% history."
5742
  msgstr "Les membres peuvent voir leurs historiques de %_plural% respectifs."
5743
 
5744
- #: ../modules/mycred-module-buddypress.php:454
5745
  msgid "Menu Title"
5746
  msgstr "Titre du menu"
5747
 
5748
- #: ../modules/mycred-module-buddypress.php:456
5749
  msgid "Title shown to me"
5750
  msgstr "Le titre que moi je peux voir"
5751
 
5752
- #: ../modules/mycred-module-buddypress.php:461
5753
  #, php-format
5754
  msgid "Title shown to others. Use %s to show the first name."
5755
  msgstr ""
5756
  "Le titre que voient les autres utilisateurs. Utilisez %s pour afficher le "
5757
  "prénom."
5758
 
5759
- #: ../modules/mycred-module-buddypress.php:466
5760
  msgid "Menu Position"
5761
  msgstr "Position du menu"
5762
 
5763
- #: ../modules/mycred-module-buddypress.php:468
5764
  msgid "Current menu positions:"
5765
  msgstr "Positions actuelles du menu:"
5766
 
5767
- #: ../modules/mycred-module-buddypress.php:473
5768
  msgid "History URL slug"
5769
  msgstr "Chemin vers l'historique"
5770
 
5771
- #: ../modules/mycred-module-buddypress.php:475
5772
  msgid "Do not use empty spaces!"
5773
  msgstr "Sans espaces !"
5774
 
5775
- #: ../modules/mycred-module-buddypress.php:480
5776
  msgid "Number of history entries to show"
5777
  msgstr "Nombre d'historiques à afficher"
5778
 
5779
- #: ../modules/mycred-module-hooks.php:87
5780
  #, php-format
5781
  msgid "%plural% for registrations"
5782
  msgstr "%plural% pour une inscription"
5783
 
5784
- #: ../modules/mycred-module-hooks.php:88
5785
  #, php-format
5786
  msgid "Award %_plural% for users joining your website."
5787
  msgstr "Attribution de %_plural% pour les nouveaux inscrits"
5788
 
5789
- #: ../modules/mycred-module-hooks.php:94
5790
  #, php-format
5791
  msgid "%plural% for daily visits"
5792
  msgstr "%plural% pour une visite quotidienne."
5793
 
5794
- #: ../modules/mycred-module-hooks.php:95
5795
  #, php-format
5796
  msgid "Award %_plural% for users visiting your website on a daily basis."
5797
  msgstr ""
5798
  "Attribution de %_plural% pour vos utilisateurs visitant votre site une fois "
5799
  "par jour."
5800
 
5801
- #: ../modules/mycred-module-hooks.php:101
5802
  #, php-format
5803
  msgid "%plural% for viewing content"
5804
  msgstr "%plural% pour voir un contenu"
5805
 
5806
- #: ../modules/mycred-module-hooks.php:102
5807
  msgid ""
5808
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
5809
  "authors for members viewing their content."
@@ -5819,24 +5827,24 @@ msgstr ""
5819
  "affichant leur contenu\n"
5820
  "."
5821
 
5822
- #: ../modules/mycred-module-hooks.php:108
5823
  #, php-format
5824
  msgid "%plural% for logins"
5825
  msgstr "%plural% pour une connexion"
5826
 
5827
- #: ../modules/mycred-module-hooks.php:109
5828
  #, php-format
5829
  msgid ""
5830
  "Award %_plural% for logging in to your website. You can also set an optional "
5831
  "limit."
5832
  msgstr "Attribution de %_plural% pour chaque connexion d'un membre à votre site."
5833
 
5834
- #: ../modules/mycred-module-hooks.php:115
5835
  #, php-format
5836
  msgid "%plural% for publishing content"
5837
  msgstr "%plural% pour publication de contenu"
5838
 
5839
- #: ../modules/mycred-module-hooks.php:116
5840
  #, php-format
5841
  msgid ""
5842
  "Award %_plural% for publishing content on your website. If your custom post "
@@ -5846,27 +5854,27 @@ msgstr ""
5846
  "Custom Post Type sur votre site. Ils doivent être réglés sur \"public\" pour "
5847
  "apparaître ci-dessous."
5848
 
5849
- #: ../modules/mycred-module-hooks.php:122
5850
  #, php-format
5851
  msgid "%plural% for comments"
5852
  msgstr "%plural% pour commentaire"
5853
 
5854
- #: ../modules/mycred-module-hooks.php:122
5855
  #, php-format
5856
  msgid "%plural% for Disqus comments"
5857
  msgstr "%plural% pour des commentaires avec Disqus"
5858
 
5859
- #: ../modules/mycred-module-hooks.php:123
5860
  #, php-format
5861
  msgid "Award %_plural% for making comments."
5862
  msgstr "Attribution de %_plural% pour les commentaires"
5863
 
5864
- #: ../modules/mycred-module-hooks.php:129
5865
  #, php-format
5866
  msgid "%plural% for clicking on links"
5867
  msgstr "%plural% pour click sur un lien"
5868
 
5869
- #: ../modules/mycred-module-hooks.php:130
5870
  msgid ""
5871
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5872
  "shortcode."
@@ -5874,12 +5882,12 @@ msgstr ""
5874
  "Atribuer des %_plural% aux utilisateurs cliquant sur des liens générés avec "
5875
  "le shortcode [mycred_link]"
5876
 
5877
- #: ../modules/mycred-module-hooks.php:136
5878
  #, php-format
5879
  msgid "%plural% for viewing Videos"
5880
  msgstr "%plural% pour visionnage d'une vidéo"
5881
 
5882
- #: ../modules/mycred-module-hooks.php:137
5883
  msgid ""
5884
  "Award %_plural% to users who watches videos embedded using the "
5885
  "[mycred_video] shortcode."
@@ -5887,23 +5895,23 @@ msgstr ""
5887
  "Atribuer des %_plural% aux utilisateurs visionnant des vidéos avec le "
5888
  "shortcode [mycred_video] "
5889
 
5890
- #: ../modules/mycred-module-hooks.php:143
5891
  #, php-format
5892
  msgid "%plural% for referrals"
5893
  msgstr "%plural% pour référants"
5894
 
5895
- #: ../modules/mycred-module-hooks.php:144
5896
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5897
  msgstr ""
5898
  "Attribuez des %_plural% aux utilisateurs qui font référence à l'inscription "
5899
  "des visiteurs ou à celles des nouveaux membres."
5900
 
5901
- #: ../modules/mycred-module-hooks.php:177
5902
  #, php-format
5903
  msgid "%s Hooks"
5904
  msgstr "Plugins %s"
5905
 
5906
- #: ../modules/mycred-module-hooks.php:180
5907
  msgid ""
5908
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5909
  "depending on their actions around your website."
@@ -5913,18 +5921,18 @@ msgstr ""
5913
  "(en haut à droite sous la barre d'outils WP) pour une liste complète des "
5914
  "mots-clés disponibles pour l'affichage des textes."
5915
 
5916
- #: ../modules/mycred-module-hooks.php:362 ../modules/mycred-module-hooks.php:459 .
5917
- #: ./modules/mycred-module-hooks.php:611 ../modules/mycred-module-hooks.php:642 ..
5918
- #: modules/mycred-module-hooks.php:717 ../modules/mycred-module-hooks.php:1033 ..
5919
- #: modules/mycred-module-hooks.php:1050 ../modules/mycred-module-hooks.php:1097 .
5920
- #: ./modules/mycred-module-hooks.php:1524 ../modules/mycred-module-hooks.php:1541
5921
- #: ../modules/mycred-module-hooks.php:1558 ../modules/mycred-module-hooks.php:
5922
- #: 2785 ../modules/mycred-module-hooks.php:2814 ../plugins/mycred-hook-
5923
  #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5924
- #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:418 ..
5925
- #: plugins/mycred-hook-bbPress.php:431 ../plugins/mycred-hook-bbPress.php:448 ..
5926
- #: plugins/mycred-hook-bbPress.php:466 ../plugins/mycred-hook-bbPress.php:483 ..
5927
- #: plugins/mycred-hook-bbPress.php:500 ../plugins/mycred-hook-bbPress.php:522 ..
5928
  #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5929
  #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5930
  #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
@@ -5956,51 +5964,51 @@ msgstr ""
5956
  msgid "Log template"
5957
  msgstr "Texte à afficher"
5958
 
5959
- #: ../modules/mycred-module-hooks.php:594
5960
  #, php-format
5961
  msgid "%plural% for viewing Posts"
5962
  msgstr "%plural% pour visualiser les articles"
5963
 
5964
- #: ../modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:614 .
5965
- #: ./modules/mycred-module-hooks.php:628 ../modules/mycred-module-hooks.php:645 ..
5966
- #: modules/mycred-module-hooks.php:703 ../modules/mycred-module-hooks.php:720
5967
  msgid "Member"
5968
  msgstr "Membre"
5969
 
5970
- #: ../modules/mycred-module-hooks.php:604 ../modules/mycred-module-hooks.php:620 .
5971
- #: ./modules/mycred-module-hooks.php:635 ../modules/mycred-module-hooks.php:651 ..
5972
- #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:726 ..
5973
- #: modules/mycred-module-hooks.php:1519 ../modules/mycred-module-hooks.php:1536 .
5974
- #: ./modules/mycred-module-hooks.php:1553
5975
  msgid "Content Author"
5976
  msgstr "Auteur du contenu"
5977
 
5978
- #: ../modules/mycred-module-hooks.php:625
5979
  #, php-format
5980
  msgid "%plural% for viewing Pages"
5981
  msgstr "%plural% pour visualiser les Pages"
5982
 
5983
- #: ../modules/mycred-module-hooks.php:700
5984
  #, php-format
5985
  msgid "%plural% for viewing %s"
5986
  msgstr "%plural% pour visualiser %s"
5987
 
5988
- #: ../modules/mycred-module-hooks.php:1023
5989
  #, php-format
5990
  msgid "%plural% for Posts"
5991
  msgstr "%plural% pour un article"
5992
 
5993
- #: ../modules/mycred-module-hooks.php:1040
5994
  #, php-format
5995
  msgid "%plural% for Pages"
5996
  msgstr "%plural% pour une page"
5997
 
5998
- #: ../modules/mycred-module-hooks.php:1087
5999
  #, php-format
6000
  msgid "%plural% for %s"
6001
  msgstr "%plural% pour %s"
6002
 
6003
- #: ../modules/mycred-module-hooks.php:1510
6004
  msgid ""
6005
  "%plural% are only awarded when your website has been synced with the Disqus "
6006
  "server!"
@@ -6008,24 +6016,24 @@ msgstr ""
6008
  "Les %plural% seront uniquement attribués une fois que votre site sera "
6009
  "synchronisé avec les serveurs Disqus."
6010
 
6011
- #: ../modules/mycred-module-hooks.php:1515 ../modules/mycred-module-hooks.php:
6012
- #: 1532 ../modules/mycred-module-hooks.php:1549
6013
  msgid "Comment Author"
6014
  msgstr "Auteur du commentaire"
6015
 
6016
- #: ../modules/mycred-module-hooks.php:1529
6017
  msgid "Comment Marked SPAM"
6018
  msgstr "Commentaire signalé comme SPAM"
6019
 
6020
- #: ../modules/mycred-module-hooks.php:1546
6021
  msgid "Trashed / Unapproved Comments"
6022
  msgstr "Commentaire supprimé/refusé"
6023
 
6024
- #: ../modules/mycred-module-hooks.php:1566
6025
  msgid "Limit per post"
6026
  msgstr "Limite par article"
6027
 
6028
- #: ../modules/mycred-module-hooks.php:1568
6029
  msgid ""
6030
  "The number of comments per post that grants %_plural% to the comment author. "
6031
  "Use zero for unlimited."
@@ -6033,17 +6041,17 @@ msgstr ""
6033
  "Le nombre de commentaires par article qui donne droit à des %_plural% pour "
6034
  "l'auteur du commentaire. Indiquez zéro si illimité."
6035
 
6036
- #: ../modules/mycred-module-hooks.php:1572
6037
  msgid "Limit per day"
6038
  msgstr "Limite par jour"
6039
 
6040
- #: ../modules/mycred-module-hooks.php:1574
6041
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
6042
  msgstr ""
6043
  "Le nombre de commentaires par jour qui donne droit à des %_plural%. Indiquez "
6044
  "zéro si illimité."
6045
 
6046
- #: ../modules/mycred-module-hooks.php:1579
6047
  msgid ""
6048
  "%plural% is to be awarded even when comment authors reply to their own "
6049
  "comment."
@@ -6051,15 +6059,15 @@ msgstr ""
6051
  "Attribuer des %_plural% &agrave; l&#39;auteur d&#39;un commentaire r&eacute;"
6052
  "pondant &agrave; son propre commentaire."
6053
 
6054
- #: ../modules/mycred-module-hooks.php:1650
6055
  msgid "Once for each unique URL"
6056
  msgstr "Une fois pour chaque URL unique"
6057
 
6058
- #: ../modules/mycred-module-hooks.php:1651
6059
  msgid "Once for each unique link id"
6060
  msgstr "Une fois pour chaque ID unique de lien"
6061
 
6062
- #: ../modules/mycred-module-hooks.php:1844
6063
  msgid ""
6064
  "The default amount to award for clicking on links. You can override this in "
6065
  "the shortcode."
@@ -6067,16 +6075,16 @@ msgstr ""
6067
  "Le nombre par défaut à attribuer à chaque click sur un lien. Peut être "
6068
  "modifié avec le shortcode."
6069
 
6070
- #: ../modules/mycred-module-hooks.php:1851
6071
  #, php-format
6072
  msgid "Custom tags: %url%, %title% or %id%."
6073
  msgstr "Mots clés pouvant être utilisé ici: %url%, %title% ou %id%."
6074
 
6075
- #: ../modules/mycred-module-hooks.php:1862 ../modules/mycred-module-hooks.php:2898
6076
  msgid "Note!"
6077
  msgstr "Information&nbsp;!"
6078
 
6079
- #: ../modules/mycred-module-hooks.php:1862
6080
  msgid ""
6081
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
6082
  "generate one automatically based on the value set under href. If you are "
@@ -6088,44 +6096,44 @@ msgstr ""
6088
  "Si vous utilisez cette fonctionnalité pour \"partager\" du contenu, nous vous "
6089
  "recommandons fortement de limiter par ID."
6090
 
6091
- #: ../modules/mycred-module-hooks.php:1864 ../modules/mycred-module-hooks.php:2220
6092
  msgid "Available Shortcode"
6093
  msgstr "Shortcode disponible"
6094
 
6095
- #: ../modules/mycred-module-hooks.php:2184
6096
  msgid "Amount to award for viewing videos."
6097
  msgstr "Montant à attribuer pour le visionnage d'une vidéo."
6098
 
6099
- #: ../modules/mycred-module-hooks.php:2194
6100
  msgid "Award Logic"
6101
  msgstr "Attributs de classement"
6102
 
6103
- #: ../modules/mycred-module-hooks.php:2196
6104
  #, php-format
6105
  msgid "Select when %_plural% should be awarded or deducted."
6106
  msgstr "Sélectionnez à quel moment des %_plural% doivent être attribués"
6107
 
6108
- #: ../modules/mycred-module-hooks.php:2197
6109
  msgid "Play - As soon as video starts playing."
6110
  msgstr "Play - aussitôt que la vidéo démarre"
6111
 
6112
- #: ../modules/mycred-module-hooks.php:2198
6113
  msgid "Full - First when the entire video has played."
6114
  msgstr "Complet - seulement quand la vidéo a été lue jusqu'au bout"
6115
 
6116
- #: ../modules/mycred-module-hooks.php:2199
6117
  msgid "Interval - For each x number of seconds watched."
6118
  msgstr "Intervalle - par tranche de X nombre de secondes de visionnage"
6119
 
6120
- #: ../modules/mycred-module-hooks.php:2204
6121
  msgid "Number of seconds"
6122
  msgstr "Nombre de secondes"
6123
 
6124
- #: ../modules/mycred-module-hooks.php:2211
6125
  msgid "Leniency"
6126
  msgstr "Tolérance"
6127
 
6128
- #: ../modules/mycred-module-hooks.php:2213
6129
  msgid ""
6130
  "The maximum percentage a users view of a movie can differ from the actual "
6131
  "length."
@@ -6133,7 +6141,7 @@ msgstr ""
6133
  "Le pourcentage maximum qu'un utilisateur peut visionner peut différer de la "
6134
  "longueur actuelle d'une vidéo."
6135
 
6136
- #: ../modules/mycred-module-hooks.php:2216
6137
  msgid ""
6138
  "Do not set this value to zero! A lot of thing can happen while a user "
6139
  "watches a movie and sometimes a few seconds can drop of the counter due to "
@@ -6143,86 +6151,80 @@ msgstr ""
6143
  "produire pendant un visonnage. Quelques secondes peuvent parfois bloquer un "
6144
  "compteur pendant la mise en tampon ou produire des erreurs de différé."
6145
 
6146
- #: ../modules/mycred-module-hooks.php:2284
6147
  msgid "Affiliate Program"
6148
  msgstr "Programme d'affiliation"
6149
 
6150
- #: ../modules/mycred-module-hooks.php:2293
6151
  msgid "Per Day"
6152
  msgstr "Par jour"
6153
 
6154
- #: ../modules/mycred-module-hooks.php:2443
6155
  msgid "Link"
6156
  msgstr "Lien"
6157
 
6158
- #: ../modules/mycred-module-hooks.php:2447
6159
  msgid "Visitors Referred"
6160
  msgstr "Visiteurs renvoyés"
6161
 
6162
- #: ../modules/mycred-module-hooks.php:2451
6163
  msgid "Signups Referred"
6164
  msgstr "Inscriptions renvoyés"
6165
 
6166
- #: ../modules/mycred-module-hooks.php:2779 ../plugins/mycred-hook-affiliatewp.php:
6167
  #: 231
6168
  msgid "Referring Visitors"
6169
  msgstr "Visiteurs réferants"
6170
 
6171
- #: ../modules/mycred-module-hooks.php:2803 ../modules/mycred-module-hooks.php:2832
6172
- msgid "The number of referrals each member can make. Use zero for unlimited."
6173
- msgstr ""
6174
- "Le nombre de renvois que chaque membre peut faire. Utilisez zéro pour "
6175
- "illimité."
6176
-
6177
- #: ../modules/mycred-module-hooks.php:2807 ../modules/mycred-module-hooks.php:2836
6178
  msgid "Referring Signups"
6179
  msgstr "Inscriptions référentes"
6180
 
6181
- #: ../modules/mycred-module-hooks.php:2811
6182
  msgid "Visitors who have Cookies disabled will not award %_plural%."
6183
  msgstr ""
6184
  "Les visiteurs ayant désactivés les cookies ne pourront pas attribuer de "
6185
  "%_plural%."
6186
 
6187
- #: ../modules/mycred-module-hooks.php:2838
6188
  msgid "Registrations are disabled."
6189
  msgstr "Les inscriptions sont désactivées."
6190
 
6191
- #: ../modules/mycred-module-hooks.php:2846
6192
  msgid "Referral Links"
6193
  msgstr "Liens référents"
6194
 
6195
- #: ../modules/mycred-module-hooks.php:2850
6196
  msgid "Assign numeric referral IDs to each user."
6197
  msgstr "Assigner un ID de référence numérique à chaque utilisateur."
6198
 
6199
- #: ../modules/mycred-module-hooks.php:2851 ../modules/mycred-module-hooks.php:2857
6200
  msgid "Example"
6201
  msgstr "Exemple"
6202
 
6203
- #: ../modules/mycred-module-hooks.php:2856
6204
  msgid "Assign usernames as IDs for each user."
6205
  msgstr "Assigner son nom d'utilisateur comme ID à chaque utilisateur."
6206
 
6207
- #: ../modules/mycred-module-hooks.php:2860
6208
  msgid "IP Limit"
6209
  msgstr "Limite IP"
6210
 
6211
- #: ../modules/mycred-module-hooks.php:2864
6212
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
6213
  msgstr ""
6214
  "Le nombre de fois que chaque adresse IP se voit attribuer des %_plural%. "
6215
  "Indiquez 0 pour un nombre illimité."
6216
 
6217
- #: ../modules/mycred-module-hooks.php:2868 ../modules/mycred-module-hooks.php:2902
6218
  msgid "BuddyPress Profile"
6219
  msgstr "Profil BuddyPress"
6220
 
6221
- #: ../modules/mycred-module-hooks.php:2871
6222
  msgid "Insert Link in users Profile"
6223
  msgstr "Insérer un lien sur le Profil des utilisateurs"
6224
 
6225
- #: ../modules/mycred-module-hooks.php:2872
6226
  msgid ""
6227
  "Option to inser the referral link in users profiles. Links will only be "
6228
  "visible to users viewing their own profiles or administrators."
@@ -6231,23 +6233,23 @@ msgstr ""
6231
  "visible que par l'utilisateur sur son propre profil et pour les "
6232
  "administrateurs du site."
6233
 
6234
- #: ../modules/mycred-module-hooks.php:2878
6235
  msgid "Leave empty to hide."
6236
  msgstr "Laissez vide pour masquer"
6237
 
6238
- #: ../modules/mycred-module-hooks.php:2881
6239
  msgid "Description"
6240
  msgstr "Description"
6241
 
6242
- #: ../modules/mycred-module-hooks.php:2882
6243
  msgid "Optional description to insert under the link."
6244
  msgstr "Description facultative qui apparaîtra sous le lien"
6245
 
6246
- #: ../modules/mycred-module-hooks.php:2895
6247
  msgid "Profile Positioning"
6248
  msgstr "Position sur le Profil"
6249
 
6250
- #: ../modules/mycred-module-hooks.php:2897
6251
  msgid ""
6252
  "You can move around the referral link on your users profile by changing the "
6253
  "position. Increase to move up, decrease to move down."
@@ -6255,167 +6257,167 @@ msgstr ""
6255
  "Vous pouvez déplacer le lien de référence sur votre profil en modifiant sa "
6256
  "position vers le haut ou le bas."
6257
 
6258
- #: ../modules/mycred-module-hooks.php:2898
6259
  msgid "You can not move the referral link above the users \"Base\" profile details!"
6260
  msgstr ""
6261
  "Vous ne pouvez pas déplacer le lien de référence au-dessus du champ de "
6262
  "profil \"Base\" "
6263
 
6264
- #: ../modules/mycred-module-hooks.php:2904
6265
  msgid "Requires BuddyPress Extended Profiles to be enabled."
6266
  msgstr "Nécessite l'activation du composant Profils Etendus de BuddyPress"
6267
 
6268
- #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
6269
- #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
6270
  msgid "Access denied for this action"
6271
  msgstr "Accés refusé pour cette action"
6272
 
6273
- #: ../modules/mycred-module-log.php:196
6274
  msgid "Row Deleted"
6275
  msgstr "Ligne supprimée"
6276
 
6277
- #: ../modules/mycred-module-log.php:223
6278
  msgid "Log entry not found"
6279
  msgstr "Entrée introuvable"
6280
 
6281
- #: ../modules/mycred-module-log.php:236
6282
  msgid "Entry Updated"
6283
  msgstr "Entrée mise à jour"
6284
 
6285
- #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:585
6286
  msgid "Entries"
6287
  msgstr "Entrées"
6288
 
6289
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:400 ..
6290
- #: modules/mycred-module-log.php:650 ../modules/mycred-module-settings.php:722
6291
  msgid "Export"
6292
  msgstr "Exporter"
6293
 
6294
- #: ../modules/mycred-module-log.php:311
6295
  msgid "Search results for"
6296
  msgstr "Résultat de la recherche pour"
6297
 
6298
- #: ../modules/mycred-module-log.php:379
6299
  #, php-format
6300
  msgid "%s Log"
6301
  msgstr "Journal %s"
6302
 
6303
- #: ../modules/mycred-module-log.php:390
6304
  msgid ""
6305
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
6306
  "Certain hooks and shortcodes will not work correctly!"
6307
  msgstr ""
6308
 
6309
- #: ../modules/mycred-module-log.php:522
6310
  msgid "Edit"
6311
  msgstr "Modifier"
6312
 
6313
- #: ../modules/mycred-module-log.php:563
6314
  msgid "Time"
6315
  msgstr "Durée"
6316
 
6317
- #: ../modules/mycred-module-log.php:567
6318
  msgid "Current Log Entry"
6319
  msgstr "Entrée actuelle"
6320
 
6321
- #: ../modules/mycred-module-log.php:569
6322
  msgid "The current saved log entry"
6323
  msgstr "L'entrée sauvegardée actuelle"
6324
 
6325
- #: ../modules/mycred-module-log.php:572
6326
  msgid "Adjust Log Entry"
6327
  msgstr "Ajuster le journal"
6328
 
6329
- #: ../modules/mycred-module-log.php:574
6330
  msgid "The new log entry"
6331
  msgstr "La nouvelle entrée de journal"
6332
 
6333
- #: ../modules/mycred-module-log.php:577
6334
  msgid "Update Log Entry"
6335
  msgstr "Mettre à jour le journal"
6336
 
6337
- #: ../modules/mycred-module-log.php:644
6338
  #, php-format
6339
  msgid "My %s History"
6340
  msgstr "Mon historique %s"
6341
 
6342
- #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
6343
- #: 106 ../modules/mycred-module-settings.php:158
6344
  msgid "Missing point type"
6345
  msgstr "Type de point manquant"
6346
 
6347
- #: ../modules/mycred-module-settings.php:137
6348
  msgid "Accounts successfully reset"
6349
  msgstr "Remise à zéro du compte réussie"
6350
 
6351
- #: ../modules/mycred-module-settings.php:184
6352
  msgid "No users found to export"
6353
  msgstr "Aucun utilisateur à exporter"
6354
 
6355
- #: ../modules/mycred-module-settings.php:234
6356
  msgid "Invalid decimal value."
6357
  msgstr ""
6358
 
6359
- #: ../modules/mycred-module-settings.php:281
6360
  msgid "Log Updated"
6361
  msgstr ""
6362
 
6363
- #: ../modules/mycred-module-settings.php:397
6364
  msgid "Update Database"
6365
  msgstr ""
6366
 
6367
- #: ../modules/mycred-module-settings.php:398
6368
  msgid "Zero for no decimals or maximum 20."
6369
  msgstr ""
6370
 
6371
- #: ../modules/mycred-module-settings.php:401 ../modules/mycred-module-settings.
6372
- #: php:498
6373
  msgid "Tip"
6374
  msgstr "Astuce"
6375
 
6376
- #: ../modules/mycred-module-settings.php:401
6377
  msgid ""
6378
  "As this is your main point type, the value you select here will be the "
6379
  "largest number of decimals your installation will support."
6380
  msgstr ""
6381
 
6382
- #: ../modules/mycred-module-settings.php:414 ../modules/mycred-module-settings.
6383
- #: php:427
6384
  msgid "No decimals"
6385
  msgstr ""
6386
 
6387
- #: ../modules/mycred-module-settings.php:439
6388
  #, php-format
6389
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
6390
  msgstr ""
6391
 
6392
- #: ../modules/mycred-module-settings.php:475
6393
  #, php-format
6394
  msgid "%s Settings"
6395
  msgstr "Configuration de %s"
6396
 
6397
- #: ../modules/mycred-module-settings.php:478
6398
  msgid "Adjust your core or add-on settings."
6399
  msgstr "Ajustez votre base ou vos réglages add-on"
6400
 
6401
- #: ../modules/mycred-module-settings.php:483
6402
  msgid "Core Settings"
6403
  msgstr "Configuration du Core"
6404
 
6405
- #: ../modules/mycred-module-settings.php:485
6406
  msgid "Name"
6407
  msgstr "Nom"
6408
 
6409
- #: ../modules/mycred-module-settings.php:490
6410
  #, php-format
6411
  msgid "Accessible though the %singular% template tag."
6412
  msgstr "Accessible avec le mot-cl&eacute;s %singular%"
6413
 
6414
- #: ../modules/mycred-module-settings.php:495
6415
  msgid "Accessible though the %plural% template tag."
6416
  msgstr "Accessible avec le mot-cl&eacute; %plural%"
6417
 
6418
- #: ../modules/mycred-module-settings.php:498
6419
  msgid ""
6420
  "Adding an underscore at the beginning of template tag for names will return "
6421
  "them in lowercase. i.e. %_singular%"
@@ -6423,93 +6425,97 @@ msgstr ""
6423
  "En ajoutant un tiret bas au début du mot-clé du nom, celui-ci sera retourné "
6424
  "en minuscule. Par ex. %_singular%"
6425
 
6426
- #: ../modules/mycred-module-settings.php:520
6427
  msgid "Separator"
6428
  msgstr "Séparateur"
6429
 
6430
- #: ../modules/mycred-module-settings.php:527
6431
  msgid "Edit Settings"
6432
  msgstr "Modifier les réglages"
6433
 
6434
- #: ../modules/mycred-module-settings.php:529 ../modules/mycred-module-settings.
6435
- #: php:534
6436
  msgid "Capability to check for."
6437
  msgstr "Capacité à observer."
6438
 
6439
- #: ../modules/mycred-module-settings.php:532
6440
  msgid "Edit Users %plural%"
6441
  msgstr "Modifier les %plural% de l&#39;utilisateur"
6442
 
6443
- #: ../modules/mycred-module-settings.php:556
6444
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
6445
  msgstr ""
6446
  "Liste des identifiants utilisateurs à exclure. ID séparés par une virgule, "
6447
  "espaces interdits."
6448
 
6449
- #: ../modules/mycred-module-settings.php:576
6450
  msgid "Management"
6451
  msgstr "Gestion des données"
6452
 
6453
- #: ../modules/mycred-module-settings.php:578
6454
  msgid "The Log"
6455
  msgstr "Rapport d'activités"
6456
 
6457
- #: ../modules/mycred-module-settings.php:581
6458
  msgid "Table Name"
6459
  msgstr "Nom de la table"
6460
 
6461
- #: ../modules/mycred-module-settings.php:590
6462
  msgid "Empty Log"
6463
  msgstr "Journal vide"
6464
 
6465
- #: ../modules/mycred-module-settings.php:605
6466
  msgid "Set all to zero"
6467
  msgstr "Tout remettre à zéro"
6468
 
6469
- #: ../modules/mycred-module-settings.php:605
6470
  msgid "CSV Export"
6471
  msgstr "Exportation CSV"
6472
 
6473
- #: ../modules/mycred-module-settings.php:625
6474
  msgid "Default"
6475
  msgstr "Défaut"
6476
 
6477
- #: ../modules/mycred-module-settings.php:628 ../modules/mycred-module-settings.
6478
- #: php:647 ../modules/mycred-module-settings.php:669
6479
  msgid "Meta Key"
6480
  msgstr "Mot-clé"
6481
 
6482
- #: ../modules/mycred-module-settings.php:666
6483
  msgid "Add New Type"
6484
  msgstr "Ajouter un nouveau type"
6485
 
6486
- #: ../modules/mycred-module-settings.php:671
6487
  msgid "A unique ID for this type."
6488
  msgstr "Un identifiant unique pour ce type."
6489
 
6490
- #: ../modules/mycred-module-settings.php:676
6491
  msgid "Menu and page title."
6492
  msgstr "Titre de menu et de page"
6493
 
6494
- #: ../modules/mycred-module-settings.php:679
6495
  msgid ""
6496
  "The meta key must be lowercase and only contain letters or underscores. All "
6497
  "other characters will be deleted!"
6498
  msgstr ""
6499
 
6500
- #: ../modules/mycred-module-settings.php:700
6501
  msgid "Identify users by"
6502
  msgstr "Identifer les utilisateurs par"
6503
 
6504
- #: ../modules/mycred-module-settings.php:706
 
 
 
 
6505
  msgid "User Email"
6506
  msgstr "Email de l'utilisateur"
6507
 
6508
- #: ../modules/mycred-module-settings.php:707
6509
  msgid "User Login"
6510
  msgstr "ID de l'utilisateur"
6511
 
6512
- #: ../modules/mycred-module-settings.php:714
6513
  msgid ""
6514
  "Use ID if you intend to use this export as a backup of your current site "
6515
  "while Email is recommended if you want to export to a different site."
@@ -6518,11 +6524,11 @@ msgstr ""
6518
  "sauvegarde du site actuel. Nous vous recommandons d'utiliser l'adresse mail "
6519
  "si vous comptez exploiter les données sur un autre site."
6520
 
6521
- #: ../modules/mycred-module-settings.php:717
6522
  msgid "Import Log Entry"
6523
  msgstr "Import du journal d'entrées"
6524
 
6525
- #: ../modules/mycred-module-settings.php:719
6526
  #, php-format
6527
  msgid ""
6528
  "Optional log entry to use if you intend to import this file in a different "
@@ -6625,56 +6631,56 @@ msgstr "bbPress"
6625
  msgid "Awards %_plural% for bbPress actions."
6626
  msgstr "Attribution de %_plural% pour des actions relatives à bbPress"
6627
 
6628
- #: ../plugins/mycred-hook-bbPress.php:407
6629
  #, php-format
6630
  msgid "%plural% for New Forum"
6631
  msgstr "%plural% pour un nouveau forum"
6632
 
6633
- #: ../plugins/mycred-hook-bbPress.php:424
6634
  #, php-format
6635
  msgid "%plural% for Forum Deletion"
6636
  msgstr "%plural% pour suppression sur le forum"
6637
 
6638
- #: ../plugins/mycred-hook-bbPress.php:437 ../plugins/mycred-hook-simplepress.php:
6639
  #: 278
6640
  #, php-format
6641
  msgid "%plural% for New Topic"
6642
  msgstr "%plural% pour un nouveau sujet"
6643
 
6644
- #: ../plugins/mycred-hook-bbPress.php:455
6645
  #, php-format
6646
  msgid "Forum authors can receive %_plural% for creating new topics."
6647
  msgstr ""
6648
  "Les auteurs de forum percoivent des %_plural% pour la création de nouveaux "
6649
  "sujets."
6650
 
6651
- #: ../plugins/mycred-hook-bbPress.php:459 ../plugins/mycred-hook-simplepress.php:
6652
  #: 295
6653
  #, php-format
6654
  msgid "%plural% for Topic Deletion"
6655
  msgstr "%plural% pour suppression d'un message de forum"
6656
 
6657
- #: ../plugins/mycred-hook-bbPress.php:472
6658
  #, php-format
6659
  msgid "%plural% for Favorited Topic"
6660
  msgstr "%plural% pour l&#39;ajout d&#39;un sujet de forum aux Favoris"
6661
 
6662
- #: ../plugins/mycred-hook-bbPress.php:489
6663
  #, php-format
6664
  msgid "%plural% for New Reply"
6665
  msgstr "%plural% pour une nouvelle réponse"
6666
 
6667
- #: ../plugins/mycred-hook-bbPress.php:507
6668
  #, php-format
6669
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
6670
  msgstr "Attribuer des %_plural% à l'auteur d'un sujet répondant à son propre sujet."
6671
 
6672
- #: ../plugins/mycred-hook-bbPress.php:511
6673
  #, php-format
6674
  msgid "Show users %_plural% balance in replies"
6675
  msgstr "Afficher le relevé de %_plural% dans les réponses des utilisateurs"
6676
 
6677
- #: ../plugins/mycred-hook-bbPress.php:515
6678
  #, php-format
6679
  msgid "%plural% for Reply Deletion"
6680
  msgstr "%plural% pour la suppression d'un commentaire"
@@ -7030,7 +7036,7 @@ msgid "Comment Subscriptions"
7030
  msgstr "Abonnements aux commentaires"
7031
 
7032
  #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
7033
- #: php:63
7034
  msgid "Reward with %plural%"
7035
  msgstr "Récompensez-les avec %plural%"
7036
 
@@ -7080,11 +7086,11 @@ msgstr ""
7080
  msgid "%plural% for Topic Post Deletion"
7081
  msgstr "%plural% pour suppression d'un sujet"
7082
 
7083
- #: ../plugins/mycred-hook-woocommerce.php:193
7084
  msgid "WooCommerce Product Reviews"
7085
  msgstr "Produits WooCommerce revus"
7086
 
7087
- #: ../plugins/mycred-hook-woocommerce.php:194
7088
  #, php-format
7089
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
7090
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Apr 08 2015 17:04:48 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
+ "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
+ "me>\n"
10
  "Language: French (France)\n"
11
  "Plural-Forms: nplurals=2; plural=n > 1\n"
12
  "MIME-Version: 1.0\n"
40
  msgstr "On les remercie"
41
 
42
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
43
+ #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
44
+ #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
45
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
46
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
47
  #: php:636
48
  msgid "Processing..."
108
  msgstr "L'entrée du journal a été mise à jour"
109
 
110
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
111
+ #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
112
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
113
  msgid "Setup"
114
  msgstr "Configuration"
115
 
116
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
117
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
118
+ #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
119
+ #: module-settings.php:22 ../modules/mycred-module-settings.php:23
120
  msgid "Settings"
121
  msgstr "Configuration"
122
 
128
  "Agissez prudemment en sauvegardant votre base de données et vos fichiers "
129
  "avant de lancer la mise à jour."
130
 
 
 
 
 
 
 
131
  #: ../abstracts/mycred-abstract-hook.php:83
132
  msgid "This Hook has no settings"
133
  msgstr "Ce hook n'a pas de paramètre."
134
 
135
+ #: ../abstracts/mycred-abstract-hook.php:226 ../abstracts/mycred-abstract-hook.
136
+ #: php:293 ../includes/mycred-functions.php:2641 ../modules/mycred-module-hooks.
137
+ #: php:1809
138
  msgid "No limit"
139
  msgstr "Illimité"
140
 
141
+ #: ../abstracts/mycred-abstract-hook.php:227
142
  msgid "/ Day"
143
  msgstr ""
144
 
145
+ #: ../abstracts/mycred-abstract-hook.php:228
146
  msgid "/ Week"
147
  msgstr ""
148
 
149
+ #: ../abstracts/mycred-abstract-hook.php:229
150
  msgid "/ Month"
151
  msgstr ""
152
 
153
+ #: ../abstracts/mycred-abstract-hook.php:230
154
  msgid "in Total"
155
  msgstr ""
156
 
157
+ #: ../abstracts/mycred-abstract-hook.php:294
158
  msgid "Once every 24 hours"
159
  msgstr "Une fois toutes les 24h"
160
 
161
+ #: ../abstracts/mycred-abstract-hook.php:295
162
  msgid "Once every 7 days"
163
  msgstr "Une fois tous les 7 jours"
164
 
165
+ #: ../abstracts/mycred-abstract-hook.php:296
166
  msgid "Once per day (reset at midnight)"
167
  msgstr "Une fois par jour (remise à zéro à minuit)"
168
 
169
+ #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
170
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
171
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
172
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
173
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
174
+ #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
175
+ #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992
176
  msgid "Select"
177
  msgstr "sélectionnez"
178
 
180
  msgid "myCRED_Module() Error. A Module ID is required!"
181
  msgstr "Erreur de module myCred. Un ID est obligatoire."
182
 
183
+ #: ../abstracts/mycred-abstract-module.php:350 ../abstracts/mycred-abstract-
184
+ #: module.php:358
185
  msgid "Surprise"
186
  msgstr "Surprise"
187
 
188
+ #: ../abstracts/mycred-abstract-module.php:445 ../includes/mycred-network.php:83
189
  msgid "click to close"
190
  msgstr "cliquez pour fermer"
191
 
192
+ #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:84
193
  msgid "click to open"
194
  msgstr "cliquez pour ouvrir"
195
 
196
+ #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
197
+ #: buy-creds.php:884
198
  msgid "Settings Updated"
199
  msgstr "Configuration mise à jour"
200
 
201
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
202
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
203
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
204
+ #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
205
+ #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
206
+ #: badges.php:395
207
  msgid "Badges"
208
  msgstr "Badges"
209
 
212
  msgid "Badges (%d)"
213
  msgstr ""
214
 
215
+ #: ../addons/badges/myCRED-addon-badges.php:260
216
  #, php-format
217
  msgid "%d Users earned this badge."
218
  msgstr ""
223
  "ce badge\n"
224
  "."
225
 
226
+ #: ../addons/badges/myCRED-addon-badges.php:264
227
  msgid "No users has yet earned this badge."
228
  msgstr ""
229
  "Aucun utilisateur\n"
235
  "ce badge\n"
236
  "."
237
 
238
+ #: ../addons/badges/myCRED-addon-badges.php:287
239
+ msgid "No connections where removed."
240
+ msgstr ""
241
+
242
+ #: ../addons/badges/myCRED-addon-badges.php:289
243
  #, php-format
244
  msgid "%s connections where removed."
245
  msgstr ""
246
 
247
+ #: ../addons/badges/myCRED-addon-badges.php:384
248
  msgid "Badge"
249
  msgstr "Badge"
250
 
251
+ #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
252
+ #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
253
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
254
+ #: addons/ranks/myCRED-addon-ranks.php:448
255
  msgid "Add New"
256
  msgstr "Ajouter"
257
 
258
+ #: ../addons/badges/myCRED-addon-badges.php:386
259
  msgid "Add New Badge"
260
  msgstr "Ajouter un nouveau badge"
261
 
262
+ #: ../addons/badges/myCRED-addon-badges.php:387
263
  msgid "Edit Badge"
264
  msgstr "Editer le badge"
265
 
266
+ #: ../addons/badges/myCRED-addon-badges.php:388
267
  msgid "New Badge"
268
  msgstr "Nouveau badge"
269
 
270
+ #: ../addons/badges/myCRED-addon-badges.php:390
271
  msgid "View Badge"
272
  msgstr "Voir le badge"
273
 
274
+ #: ../addons/badges/myCRED-addon-badges.php:391
275
  msgid "Search Badge"
276
  msgstr "Search badge"
277
 
278
+ #: ../addons/badges/myCRED-addon-badges.php:392
279
  msgid "No badges found"
280
  msgstr "Pas de badges trouvés"
281
 
282
+ #: ../addons/badges/myCRED-addon-badges.php:393
283
  msgid "No badges found in Trash"
284
  msgstr "Pas de badge trouvés dans la corbeille"
285
 
286
+ #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
287
+ #: badges.php:541
288
  msgid "Badge Name"
289
  msgstr "Nom du badge"
290
 
291
+ #: ../addons/badges/myCRED-addon-badges.php:440
292
  msgid "Badge Images"
293
  msgstr "Image du badge"
294
 
295
+ #: ../addons/badges/myCRED-addon-badges.php:441
296
  msgid "Requirements"
297
  msgstr "Exigences"
298
 
299
+ #: ../addons/badges/myCRED-addon-badges.php:442 ../addons/ranks/myCRED-addon-
300
+ #: ranks.php:1042 ../modules/mycred-module-settings.php:636
301
  msgid "Users"
302
  msgstr "Utilisateurs"
303
 
304
+ #: ../addons/badges/myCRED-addon-badges.php:481
305
  msgid "A user must have gained or lost:"
306
  msgstr "Un utilisateur doit avoir gagné ou perdu:"
307
 
308
+ #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
309
+ #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
310
+ #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
311
+ #: badges.php:526
312
  msgid "Badge Updated."
313
  msgstr "Badge mis à jour."
314
 
315
+ #: ../addons/badges/myCRED-addon-badges.php:522
316
  msgid "Badge Enabled"
317
  msgstr "Badge activé"
318
 
319
+ #: ../addons/badges/myCRED-addon-badges.php:523
320
  msgid "Badge Saved"
321
  msgstr "Badge sauvegardé"
322
 
323
+ #: ../addons/badges/myCRED-addon-badges.php:555
324
  msgid "Badge Setup"
325
  msgstr ""
326
 
327
+ #: ../addons/badges/myCRED-addon-badges.php:582
328
  msgid "Assign Badge"
329
  msgstr "Assigner un badge"
330
 
331
+ #: ../addons/badges/myCRED-addon-badges.php:583
332
  msgid "Remove Connections"
333
  msgstr "Supprimer les connexions."
334
 
335
+ #: ../addons/badges/myCRED-addon-badges.php:638
336
  msgid "Time(s)"
337
  msgstr "Heure(s)"
338
 
339
+ #: ../addons/badges/myCRED-addon-badges.php:639
340
  msgid "In total"
341
  msgstr "Au total"
342
 
343
+ #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
344
+ #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
345
+ #: addons/badges/myCRED-addon-badges.php:846
346
  msgid "Badge Image"
347
  msgstr "Image du badge"
348
 
349
+ #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
350
+ #: badges.php:672
351
  msgid "Set badge image"
352
  msgstr "Fixer une image badge"
353
 
354
+ #: ../addons/badges/myCRED-addon-badges.php:682
355
  msgid "Default Image"
356
  msgstr "Image par défaut"
357
 
358
+ #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
359
+ #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
360
+ #: addons/badges/myCRED-addon-badges.php:831
361
  msgid "image url"
362
  msgstr "URL de l'image"
363
 
364
+ #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
365
+ #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
366
+ #: addons/badges/myCRED-addon-badges.php:831
367
  msgid "Add Image"
368
  msgstr ""
369
 
370
+ #: ../addons/badges/myCRED-addon-badges.php:685
371
  msgid "Optional image to show when a user has not yet earned this badge."
372
  msgstr ""
373
 
374
+ #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
375
+ #: badges.php:756
376
  #, php-format
377
  msgid "Level %d"
378
  msgstr ""
379
 
380
+ #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
381
+ #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
382
  msgid "for"
383
  msgstr ""
384
 
385
+ #: ../addons/badges/myCRED-addon-badges.php:740
386
  msgid "Main Image"
387
  msgstr "Image principale"
388
 
389
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
390
+ #: badges.php:831
391
  msgid "Leave empty if you do not want to assign a custom image for this level."
392
  msgstr ""
393
 
394
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
395
+ #: badges.php:831
396
  msgid "Remove this level"
397
  msgstr ""
398
 
399
+ #: ../addons/badges/myCRED-addon-badges.php:788
400
  msgid "Add Level"
401
  msgstr ""
402
 
403
+ #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
404
+ #: badges.php:1154
405
  msgid "Level"
406
  msgstr ""
407
 
408
+ #: ../addons/badges/myCRED-addon-badges.php:848
409
  msgid "Use as Badge"
410
  msgstr ""
411
  "Utilisez\n"
414
  " \n"
415
  "Badge"
416
 
417
+ #: ../addons/badges/myCRED-addon-badges.php:970 ../addons/badges/myCRED-addon-
418
+ #: badges.php:1001 ../addons/gateway/carts/mycred-woocommerce.php:152 ..
419
+ #: modules/mycred-module-buddypress.php:417
420
  msgid "Do not show"
421
  msgstr "Ne pas afficher"
422
 
423
+ #: ../addons/badges/myCRED-addon-badges.php:971 ../modules/mycred-module-
424
+ #: buddypress.php:418
425
  msgid "Include in Profile Header"
426
  msgstr ""
427
  "Inclure dans\n"
429
  "le profil\n"
430
  "-tête"
431
 
432
+ #: ../addons/badges/myCRED-addon-badges.php:972 ../addons/ranks/myCRED-addon-
433
+ #: ranks.php:1407 ../modules/mycred-module-buddypress.php:419
434
  msgid "Include under the \"Profile\" tab"
435
  msgstr "Inclure sous l'onglet \"Profil\""
436
 
437
+ #: ../addons/badges/myCRED-addon-badges.php:973 ../modules/mycred-module-
438
+ #: buddypress.php:420
439
  msgid "Include under the \"Profile\" tab and Profile Header"
440
  msgstr ""
441
  "Inclure\n"
450
  "Profil\n"
451
  "\" En-tête"
452
 
453
+ #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
454
+ #: badges.php:1017
455
  msgid "Show all badges, including badges users have not yet earned."
456
  msgstr ""
457
 
458
+ #: ../addons/badges/myCRED-addon-badges.php:1002 ../addons/ranks/myCRED-addon-
459
+ #: ranks.php:1452
460
  msgid "Include in Profile"
461
  msgstr "Inclure dans le profil"
462
 
463
+ #: ../addons/badges/myCRED-addon-badges.php:1003
464
  msgid "Include in Forum Replies"
465
  msgstr "Inclure dans les réponses du forum"
466
 
467
+ #: ../addons/badges/myCRED-addon-badges.php:1004
468
  msgid "Include in Profile and Forum Replies"
469
  msgstr "Inclure dans les profils et les réponses du forums"
470
 
471
+ #: ../addons/badges/myCRED-addon-badges.php:1111
472
  msgid "User Badges"
473
  msgstr ""
474
 
475
+ #: ../addons/badges/myCRED-addon-badges.php:1116
476
  msgid ""
477
  "Here you can view the badges this user has earned and if needed, manually "
478
  "give or take away a badge from a user."
479
  msgstr ""
480
 
481
+ #: ../addons/badges/myCRED-addon-badges.php:1125
482
  msgid "Not earned"
483
  msgstr ""
484
 
485
+ #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
486
+ #: badges.php:1168
487
  msgid "Earned"
488
  msgstr ""
489
 
490
+ #: ../addons/badges/myCRED-addon-badges.php:1143
491
  msgid "No image"
492
  msgstr ""
493
 
494
+ #: ../addons/badges/myCRED-addon-badges.php:1150
495
  msgid "Select a level"
496
  msgstr ""
497
 
498
+ #: ../addons/badges/myCRED-addon-badges.php:1165 ../addons/email-notices/myCRED-
499
+ #: addon-email-notices.php:810
500
  msgid "Status"
501
  msgstr "Statut"
502
 
503
+ #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
504
+ #: addon-email-notices.php:1293
505
  msgid "Save Changes"
506
  msgstr "Sauvegarder les changements."
507
 
508
+ #: ../addons/badges/includes/mycred-badge-functions.php:68
509
  #, php-format
510
  msgid "Level %s"
511
  msgstr ""
512
 
513
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
514
  #, php-format
515
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
516
  msgid "%s for %s %s - %s"
517
  msgstr ""
518
 
519
+ #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
520
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
521
  #: coupons.php:469
522
  #, php-format
525
  msgstr[0] ""
526
  msgstr[1] ""
527
 
528
+ #: ../addons/badges/includes/mycred-badge-functions.php:73
529
  #, php-format
530
  msgctxt "\"x points\" for \"reference\" in total"
531
  msgid "%s for %s in total"
612
  msgstr "Installation de masse %_singular% pour les paiements de vos utilisateurs"
613
 
614
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
615
+ #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
616
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
617
+ #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
618
+ #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
619
+ #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
620
  msgid "Access Denied"
621
  msgstr "Accès refusé"
622
 
648
  msgstr "Attention ! Pour utiliser ce module, WP-Cron est obligatoire."
649
 
650
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
651
+ #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
652
  msgid "Enable"
653
  msgstr "Activer"
654
 
655
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
656
+ #: php:240
657
  msgid "Update Changes"
658
  msgstr "Enregistrer les modifications"
659
 
786
 
787
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
788
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
789
+ #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
790
+ #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
791
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
792
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
793
+ #: addons/gateway/carts/mycred-woocommerce.php:104 ..
794
+ #: addons/gateway/carts/mycred-woocommerce.php:176 ..
795
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
796
+ #: hooks.php:1004 ../modules/mycred-module-hooks.php:2025 ../modules/mycred-
797
+ #: module-hooks.php:2395 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-
798
+ #: hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-
799
+ #: hook-events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.
800
+ #: php:209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
801
+ #: gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:321 ..
802
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
803
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
804
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
879
  "."
880
 
881
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
882
+ #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
883
  #: content.php:114
884
  msgid "Leave empty to use the default value."
885
  msgstr ""
904
  " \n"
905
  "de recevoir des intérêts"
906
 
907
+ #: ../addons/banking/services/mycred-bank-service-interest.php:673
908
  msgid "Compound interest rate saved."
909
  msgstr ""
910
  "Taux d'intérêt composé\n"
912
  "sauvé\n"
913
  "."
914
 
915
+ #: ../addons/banking/services/mycred-bank-service-interest.php:675
916
  msgid "User excluded from receiving interest."
917
  msgstr ""
918
  "Utilisateur\n"
922
  "l'intérêt\n"
923
  "."
924
 
925
+ #: ../addons/banking/services/mycred-bank-service-interest.php:677
926
  msgid "User included in receiving interest."
927
  msgstr "Utilisateur inclus dans la réception des intérêts"
928
 
931
  msgstr "%plural% quotidiens"
932
 
933
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
934
+ #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
935
+ #: modules/mycred-module-log.php:277
936
  msgid "History"
937
  msgstr "Mes points"
938
 
949
  msgstr "Payer les Utilisateurs"
950
 
951
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
952
+ #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
953
+ #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
954
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
955
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
956
+ #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
957
  #: plugins/mycred-hook-affiliatewp.php:256
958
  msgid "Amount"
959
  msgstr "Montant"
960
 
961
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
962
+ #: modules/mycred-module-hooks.php:2410
963
  msgid "Interval"
964
  msgstr "Intervalle"
965
 
986
  "service reprendra à ce stade lorque vous le réactiverez. Indiquez zéro pour "
987
  "réinitialiser les cycles."
988
 
989
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
990
+ #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
991
  msgid "Payment Gateways"
992
  msgstr "Services de paiement"
993
 
994
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
995
  msgctxt "Post Type General Name"
996
  msgid "Pending Payments"
997
  msgstr "Paiements en attente"
998
 
999
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
1000
  msgctxt "Post Type Singular Name"
1001
  msgid "Pending Payment"
1002
  msgstr "En attente de paiement"
1003
 
1004
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
1005
+ #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
1006
  msgid "Pending Payments"
1007
  msgstr "Paiements en attente"
1008
 
1009
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
1010
  msgid "Edit Pending Payment"
1011
  msgstr ""
1012
  "Modifier\n"
1013
  " \n"
1014
  "les attentes de paiement"
1015
 
1016
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
1017
+ #: addon-buy-creds.php:1699
1018
  msgid "No pending payments found"
1019
  msgstr "Pas d'attente de paiements trouvés"
1020
 
1021
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
1022
  msgid "Not found in Trash"
1023
  msgstr "Pas trouvé dans la corbeille"
1024
 
1025
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
1026
+ #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
1027
  msgid "Transaction ID"
1028
  msgstr "ID de la transaction"
1029
 
1030
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
1031
+ #: addon-buy-creds.php:1025
1032
  msgid "Buyer"
1033
  msgstr "Acheteur"
1034
 
1035
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
1036
+ #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
1037
  #: gateway.php:594
1038
  msgid "Cost"
1039
  msgstr "Prix"
1040
 
1041
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
1042
+ #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
1043
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
1044
  msgid "Gateway"
1045
  msgstr "Service"
1046
 
1047
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
1048
  msgid "Type"
1049
  msgstr "Type"
1050
 
1051
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
1052
  msgid "Pay Out"
1053
  msgstr "Versement"
1054
 
1055
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
1056
  msgid "buyCRED Purchase Log"
1057
  msgstr "Journal d'achat buyCRED"
1058
 
1059
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
1060
+ #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1061
  msgid "Purchase Log"
1062
  msgstr "Journal d'achat"
1063
 
1064
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
1065
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
1066
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
1067
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
1068
  msgid "Payments"
1069
  msgstr "Paiements"
1070
 
1071
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
1072
  msgid "Please login to purchase %_plural%"
1073
  msgstr "Veuillez vous connecter pour acquérir des %_plural%"
1074
 
1075
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
1076
  #, php-format
1077
  msgid "Gift purchase from %display_name%."
1078
  msgstr "Achat de cadeau par %display_name%."
1079
 
1080
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
1081
+ #: addon-ranks.php:1084
1082
  msgid "Minimum %plural%"
1083
  msgstr "%plural% minimum"
1084
 
1085
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
1086
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
1087
  msgstr "Nombre minimum de %_plural% qu&#39;un membre peut acheter. 1 par défaut !"
1088
 
1089
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
1090
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
1091
+ #: module-settings.php:656
1092
  msgid "Point Types"
1093
  msgstr "Types de Points"
1094
 
1095
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
1096
  msgid "Select the point types that users can buy. You must select at least one!"
1097
  msgstr ""
1098
  "Sélectionner les types de point que les utilisateurs peuvent acheter. Vous "
1099
  "devez en sélectionner au moins une!"
1100
 
1101
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
1102
  msgid "Login Template"
1103
  msgstr "Template de connexion"
1104
 
1105
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
1106
  msgid "Content to show when a user is not logged in."
1107
  msgstr "Contenu à afficher quand un utilisateur n'est pas connecté."
1108
 
1109
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
1110
  msgid "Thank You Page"
1111
  msgstr "Page de remerciement"
1112
 
1113
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
1114
+ #: addon-buy-creds.php:668
1115
  msgid "Custom URL"
1116
  msgstr "URL personnalisée"
1117
 
1118
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
1119
+ #: addon-buy-creds.php:673
1120
  msgid "Page"
1121
  msgstr "Page"
1122
 
1123
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
1124
  msgid "Cancellation Page"
1125
  msgstr "Page d'annulation"
1126
 
1127
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
1128
  msgid "Show seperate log for %_plural% purchases."
1129
  msgstr "Afficher des journaux séparés pour l'achat de %_plural%"
1130
 
1131
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
1132
  msgid "Gifting"
1133
  msgstr "Remise de cadeaux"
1134
 
1135
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
1136
  #, php-format
1137
  msgid "Allow users to buy %_plural% for other users."
1138
  msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
1139
 
1140
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
1141
  #, php-format
1142
  msgid "Allow users to buy %_plural% for content authors."
1143
  msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
1144
 
1145
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
1146
+ #: hooks.php:3110
1147
  msgid "Available Shortcodes"
1148
  msgstr "Shortcodes disponibles"
1149
 
1150
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
1151
  #, php-format
1152
  msgid "%s Exchange Rate"
1153
  msgstr "%s Taux de change"
1154
 
1155
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
1156
  msgid "Save Exchange Rates"
1157
  msgstr "Sauvegardé les taux de change"
1158
 
1159
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
1160
  msgid "Exchange rate override saved"
1161
  msgstr "Taux de change commandé sauvegardé"
1162
 
1163
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
1164
  msgid "Payment completed"
1165
  msgstr "Paiement complet"
1166
 
1167
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1168
  #, php-format
1169
  msgid "%s Payment Gateways"
1170
  msgstr "%s Services de Paiements"
1171
 
1172
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1173
+ #: addon-buy-creds.php:1034
1174
  msgid "buyCRED Settings"
1175
  msgstr "Configuration buyCRED"
1176
 
1177
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1178
  msgid "Test Mode"
1179
  msgstr "Mode Test"
1180
 
1181
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1182
  msgid "Enabled"
1183
  msgstr "Activé"
1184
 
1185
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1186
  msgid "Disabled"
1187
  msgstr "Désactivé"
1188
 
1189
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1190
  msgid "Sandbox Mode"
1191
  msgstr "Mode bac à sable"
1192
 
1193
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1194
  msgid "Enable for test purchases."
1195
  msgstr "Activez pour faire des tests d'achats factices."
1196
 
1197
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1198
+ #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1199
  msgid "Update Settings"
1200
  msgstr "Enregistrer la configuration"
1201
 
1202
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1203
  msgid "More Gateways"
1204
  msgstr "Plus d'entrés"
1205
 
1206
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1207
+ #: 666
1208
  msgid "Date"
1209
  msgstr "Daté"
1210
 
1211
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1212
  msgid "Payed"
1213
  msgstr "Payé"
1214
 
1215
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1216
  msgid "<strong>buy</strong>CRED Purchase Log"
1217
  msgstr "Relevé des achats <strong>buy</strong>CRED"
1218
 
1219
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1220
  #: booking/mycred-eventespresso3.php:367
1221
  msgid "Gateway Settings"
1222
  msgstr "Configuration du service de paiement"
1223
 
1224
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1225
  #: content/myCRED-addon-sell-content.php:1209
1226
  msgid "No purchases found"
1227
  msgstr "Aucun achat trouvé"
1228
 
1229
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1230
+ #: addon-buy-creds.php:1411
1231
  msgid "This Add-on needs to setup before you can use this shortcode."
1232
  msgstr ""
1233
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
1234
  "shortcode."
1235
 
1236
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1237
+ #: addon-buy-creds.php:1430
1238
  msgid "No gateways installed."
1239
  msgstr "Aucun systme de paiement n'est installé."
1240
 
1241
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1242
+ #: addon-buy-creds.php:1431
1243
  msgid "Gateway does not exist."
1244
  msgstr "Le service de paiement n'existe pas."
1245
 
1246
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1247
  msgid "Yourself"
1248
  msgstr "Vous-même"
1249
 
1250
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1251
  msgid "No active gateways found."
1252
  msgstr "Aucun service de paiement n'a été trouvé."
1253
 
1254
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1255
  msgid "The selected gateway is not active."
1256
  msgstr "Ce service de paiement n'est pas activé"
1257
 
1258
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1259
  #, php-format
1260
  msgid "Buy with %gateway%"
1261
  msgstr "Régler avec %gateway%"
1262
 
1263
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1264
  #: content/myCRED-addon-sell-content.php:44
1265
  msgid "Buy Now"
1266
  msgstr "Acheter maintenant"
1267
 
1268
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1269
  msgid "No users found"
1270
  msgstr "Aucun membre n'a été trouvé"
1271
 
1272
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1273
  msgid "To"
1274
  msgstr "à"
1275
 
1276
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1277
  msgid "Select Amount"
1278
  msgstr "Sélectionnez le montant"
1279
 
1280
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1281
  msgid "min."
1282
  msgstr "mini."
1283
 
1284
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1285
  msgid "Select Gateway"
1286
  msgstr "Sélectionnez le service de paiement"
1287
 
1288
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1289
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1290
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1291
  #: php:35
1292
  msgid "Pay Now"
1293
  msgstr "Payer maintenant"
1294
 
1295
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1296
+ #: php:536
1297
  msgid "Cancel"
1298
  msgstr "Annuler"
1299
 
1300
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1301
+ #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1302
+ #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1303
  msgid "Actions"
1304
  msgstr "Actions"
1305
 
1436
  msgstr "Continuer vers %s"
1437
 
1438
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1439
+ #: addons/buy-creds/gateways/bitpay.php:233
1440
  msgid "Click here if you are not automatically redirected"
1441
  msgstr "Cliquez ici si vous n'êtes pas automatiquement redirigé"
1442
 
1496
  msgid "December"
1497
  msgstr "Décembre"
1498
 
1499
+ #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
1500
+ #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
1501
+ #: php:145 ../addons/buy-creds/gateways/skrill.php:124
 
 
 
 
 
 
1502
  #, php-format
1503
  msgid "Price mismatch. Expected: %s Received: %s"
1504
  msgstr "Prix décallé. Excepté: %s reçu: %s"
1505
 
1506
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
1507
+ #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
1508
  #, php-format
1509
  msgid "Currency mismatch. Expected: %s Received: %s"
1510
  msgstr "Mauvais alignement de monnaies. Excepté: %s Reçut: %s"
1511
 
1512
+ #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
1513
+ #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
1514
+ #: php:157 ../addons/buy-creds/gateways/skrill.php:136
1515
  #, php-format
1516
  msgid "Payment not completed. Received: %s"
1517
  msgstr "Paiement non complet. Reçu: %s"
1518
 
1519
+ #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
1520
+ #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/paypal-standard.
1521
+ #: php:168 ../addons/buy-creds/gateways/skrill.php:147 ../addons/buy-
1522
+ #: creds/gateways/zombaio.php:185
1523
  msgid "Failed to credit users account."
1524
  msgstr "Echec de créditions aux comptes des utilisateurs."
1525
 
1526
+ #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
1527
+ #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/paypal-standard.
1528
+ #: php:208 ../addons/buy-creds/gateways/skrill.php:187 ../addons/buy-
1529
+ #: creds/gateways/zombaio.php:214
1530
  msgid "Please setup this gateway before attempting to make a purchase!"
1531
  msgstr ""
1532
  "Veuillez d'abord paramètrer ce service de paiement avant d'essayer de "
1533
  "finaliser un achat !"
1534
 
1535
+ #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
1536
+ #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
1537
+ #: ./addons/buy-creds/gateways/paypal-standard.php:268 ../addons/buy-
1538
+ #: creds/gateways/skrill.php:281 ../addons/buy-creds/gateways/zombaio.php:247
1539
  msgid "Processing payment &hellip;"
1540
  msgstr "Procédure de paiement en cours &hellip;"
1541
 
1542
+ #: ../addons/buy-creds/gateways/bitpay.php:219
1543
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1544
  msgstr ""
1545
  "Impossible de créer une facture BitPay. Veuillez contacter l'administrateur "
1546
  "du site."
1547
 
1548
+ #: ../addons/buy-creds/gateways/bitpay.php:220
1549
  msgid "Bitpay returned the following error message:"
1550
  msgstr "BitPay signale l'erreur suivante:"
1551
 
1552
+ #: ../addons/buy-creds/gateways/bitpay.php:253 ../includes/mycred-remote.php:551
1553
  msgid "API Key"
1554
  msgstr "Clé API"
1555
 
1556
+ #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1557
+ #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
1558
+ #: 300
1559
  msgid "Currency"
1560
  msgstr "Devise"
1561
 
1562
+ #: ../addons/buy-creds/gateways/bitpay.php:262
1563
  msgid "Currency Code"
1564
  msgstr "Code devise"
1565
 
1566
+ #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1567
+ #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
1568
+ #: php:298 ../addons/buy-creds/gateways/skrill.php:319
1569
  msgid "Item Name"
1570
  msgstr "Nom de l'item"
1571
 
1572
+ #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
1573
+ #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
1574
+ #: php:302 ../addons/buy-creds/gateways/skrill.php:323
1575
  msgid "Description of the item being purchased by the user."
1576
  msgstr "Description de l'item acquis par l'utilisateur"
1577
 
1578
+ #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
1579
+ #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
1580
+ #: php:305 ../addons/buy-creds/gateways/skrill.php:326
1581
  msgid "Exchange Rates"
1582
  msgstr "Taux de change."
1583
 
1584
+ #: ../addons/buy-creds/gateways/bitpay.php:277
1585
  msgid "Transaction Speed"
1586
  msgstr "Vitesse de transaction"
1587
 
1588
+ #: ../addons/buy-creds/gateways/bitpay.php:284
1589
  msgid "High"
1590
  msgstr "Haute"
1591
 
1592
+ #: ../addons/buy-creds/gateways/bitpay.php:285
1593
  msgid "Medium"
1594
  msgstr "Moyenne"
1595
 
1596
+ #: ../addons/buy-creds/gateways/bitpay.php:286
1597
  msgid "Low"
1598
  msgstr "Basse"
1599
 
1600
+ #: ../addons/buy-creds/gateways/bitpay.php:299
1601
  msgid "Full Notifications"
1602
  msgstr "Messages complets"
1603
 
1604
+ #: ../addons/buy-creds/gateways/bitpay.php:306 ../includes/mycred-network.php:161
1605
  #: ../includes/mycred-network.php:175
1606
  msgid "No"
1607
  msgstr "non"
1608
 
1609
+ #: ../addons/buy-creds/gateways/bitpay.php:307 ../includes/mycred-network.php:157
1610
  #: ../includes/mycred-network.php:171
1611
  msgid "Yes"
1612
  msgstr "oui"
1613
 
1614
+ #: ../addons/buy-creds/gateways/netbilling.php:216
1615
  msgid "Account ID"
1616
  msgstr "ID du compte"
1617
 
1618
+ #: ../addons/buy-creds/gateways/netbilling.php:222
1619
  msgid "Site Tag"
1620
  msgstr "Mot-clé du site"
1621
 
1622
+ #: ../addons/buy-creds/gateways/netbilling.php:228
1623
  msgid "Order Integrity Key"
1624
  msgstr "Commandez une clé de sécurité"
1625
 
1626
+ #: ../addons/buy-creds/gateways/netbilling.php:232
1627
  msgid "Found under Step 12 on the Fraud Defense page."
1628
  msgstr "Trouvé à l'étape 12 de la page Défense contre la Fraude"
1629
 
1630
+ #: ../addons/buy-creds/gateways/netbilling.php:246
1631
  msgid "Postback CGI URL"
1632
  msgstr "Adresse de retour CGI"
1633
 
1634
+ #: ../addons/buy-creds/gateways/netbilling.php:250
1635
  msgid ""
1636
  "For this gateway to work, you must login to your NETbilling account and edit "
1637
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1642
  "payment form settings\", indiquez l'URL ci-dessous dans la case Postback CGI "
1643
  "URL et assurez-vous que la case \"Return method\" est bien sur POST."
1644
 
1645
+ #: ../addons/buy-creds/gateways/netbilling.php:298
1646
  msgid "Incorrect Credit Card number"
1647
  msgstr "Le numéro de la carte de crédit est incorrect"
1648
 
1649
+ #: ../addons/buy-creds/gateways/netbilling.php:304
1650
  msgid "The credit card entered is past its expiration date."
1651
  msgstr "Votre carte de crédit est expirée"
1652
 
1653
+ #: ../addons/buy-creds/gateways/netbilling.php:307
1654
  msgid "The CVV2 number entered is not valid."
1655
  msgstr "Le cryptogramme que vous avez indiqué n'est pas valide."
1656
 
1657
+ #: ../addons/buy-creds/gateways/netbilling.php:314
1658
  msgid "The bank routing number entered is not valid."
1659
  msgstr "Le numéro de routage de la banque n'est pas valide."
1660
 
1661
+ #: ../addons/buy-creds/gateways/netbilling.php:318
1662
  msgid "The bank account number entered is not valid."
1663
  msgstr "Le numéro de compte bancaire n'est pas valide"
1664
 
1665
+ #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
1666
+ #: creds/gateways/skrill.php:171
1667
  msgid "Success"
1668
  msgstr "Succès !"
1669
 
1670
+ #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
1671
+ #: creds/gateways/skrill.php:172
1672
  msgid "Thank you for your purchase"
1673
  msgstr "Merci pour votre achat"
1674
 
1675
+ #: ../addons/buy-creds/gateways/paypal-standard.php:263
1676
+ #, php-format
1677
+ msgctxt "Return label. %s = Website name"
1678
+ msgid "Return to %s"
1679
+ msgstr ""
1680
 
1681
+ #: ../addons/buy-creds/gateways/paypal-standard.php:292
1682
  msgid "Account Email"
1683
  msgstr "Email du compte"
1684
 
1685
+ #: ../addons/buy-creds/gateways/skrill.php:228
1686
+ msgid "Return to "
1687
+ msgstr "Retour vers"
1688
+
1689
+ #: ../addons/buy-creds/gateways/skrill.php:264
1690
  msgid "Product:"
1691
  msgstr "Produit:"
1692
 
1693
+ #: ../addons/buy-creds/gateways/skrill.php:273
1694
  msgid "Gift to:"
1695
  msgstr "Cadeau à "
1696
 
1697
+ #: ../addons/buy-creds/gateways/skrill.php:274
1698
  msgid "(author)"
1699
  msgstr "(auteur)"
1700
 
1701
+ #: ../addons/buy-creds/gateways/skrill.php:307
1702
  msgid "Merchant Account Email"
1703
  msgstr "Email du compte marchand"
1704
 
1705
+ #: ../addons/buy-creds/gateways/skrill.php:313
1706
  msgid "Secret Word"
1707
  msgstr "Mot secret"
1708
 
1709
+ #: ../addons/buy-creds/gateways/skrill.php:330
1710
  msgid "Confirmation Email"
1711
  msgstr "Email de confirmation"
1712
 
1713
+ #: ../addons/buy-creds/gateways/skrill.php:333
1714
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1715
  msgstr ""
1716
  "Demander à Skrill d'envoyer un mail de confirmation après chaque acquisition "
1717
  "réussie."
1718
 
1719
+ #: ../addons/buy-creds/gateways/skrill.php:336
1720
  msgid "Checkout Page"
1721
  msgstr "Page de contrôle"
1722
 
1723
+ #: ../addons/buy-creds/gateways/skrill.php:339 ../addons/gateway/carts/mycred-
1724
+ #: woocommerce.php:92 ../addons/ranks/myCRED-addon-ranks.php:1318 ..
1725
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1726
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1727
+ #: php:592 ../modules/mycred-module-hooks.php:3073
1728
  msgid "Title"
1729
  msgstr "Titre"
1730
 
1731
+ #: ../addons/buy-creds/gateways/skrill.php:341
1732
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1733
  msgstr ""
1734
  "Si vous laissez vide, c'est votre mail de compte qui sera utilisé comme "
1735
  "titre de la page de paiement de Skrill"
1736
 
1737
+ #: ../addons/buy-creds/gateways/skrill.php:344 ../addons/buy-
1738
+ #: creds/gateways/zombaio.php:283
1739
  msgid "Logo URL"
1740
  msgstr "URL du logo"
1741
 
1742
+ #: ../addons/buy-creds/gateways/skrill.php:346
1743
  msgid ""
1744
  "The URL to the image you want to use on the top of the gateway. For best "
1745
  "integration results we recommend you use logos with dimensions up to 200px "
1749
  "une intégration optimale, nous vous recommandons d'utiliser un logo de 200 "
1750
  "par 50 pixels."
1751
 
1752
+ #: ../addons/buy-creds/gateways/skrill.php:349
1753
  msgid "Confirmation Note"
1754
  msgstr "Message de confirmation"
1755
 
1756
+ #: ../addons/buy-creds/gateways/skrill.php:351
1757
  msgid ""
1758
  "Optional text to show user once a transaction has been successfully "
1759
  "completed. This text is shown by Skrill."
1761
  "Texte additionnel en option qui s'affichera une fois une transaction "
1762
  "complétée avec succès. Ce texte est affiché par Skrill."
1763
 
1764
+ #: ../addons/buy-creds/gateways/zombaio.php:154
1765
  #, php-format
1766
  msgid "Duplicate transaction. Received: %s"
1767
  msgstr "Dupliquer les transactions. Reçu: %s"
1768
 
1769
+ #: ../addons/buy-creds/gateways/zombaio.php:160
1770
  #, php-format
1771
  msgid "Live transaction while debug mode is enabled! Received: %s"
1772
  msgstr ""
1786
  ":\n"
1787
  "% s"
1788
 
1789
+ #: ../addons/buy-creds/gateways/zombaio.php:265
1790
  msgid "Site ID"
1791
  msgstr "ID du site"
1792
 
1793
+ #: ../addons/buy-creds/gateways/zombaio.php:271
1794
  msgid "GW Password"
1795
  msgstr "Mot de passe GW"
1796
 
1797
+ #: ../addons/buy-creds/gateways/zombaio.php:277
1798
  msgid "Pricing ID"
1799
  msgstr "ID du paiement"
1800
 
1801
+ #: ../addons/buy-creds/gateways/zombaio.php:289
1802
  msgid "IP Verification"
1803
  msgstr "ID de vérification"
1804
 
1805
+ #: ../addons/buy-creds/gateways/zombaio.php:292
1806
  msgid "Do not verify that callbacks are coming from Zombaio."
1807
  msgstr "Ne pas vérifier que les rappels proviennent de Zombaio."
1808
 
1809
+ #: ../addons/buy-creds/gateways/zombaio.php:295
1810
  msgid "Language"
1811
  msgstr "Langue"
1812
 
1813
+ #: ../addons/buy-creds/gateways/zombaio.php:302
1814
  msgid "Postback URL (ZScript)"
1815
  msgstr "URL de retour (ZScript)"
1816
 
1817
+ #: ../addons/buy-creds/gateways/zombaio.php:306
1818
  msgid ""
1819
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1820
  "address and click validate."
1904
  msgstr ""
1905
 
1906
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1907
+ #: transfer.php:259 ../modules/mycred-module-hooks.php:1714 ../modules/mycred-
1908
+ #: module-hooks.php:2032
1909
  msgid "Limits"
1910
  msgstr "Règles de limitation"
1911
 
1914
  msgstr "Date d'expiration"
1915
 
1916
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1917
+ #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:814 ..
1918
+ #: addons/email-notices/myCRED-addon-email-notices.php:1031 ..
1919
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1920
+ #: addons/gateway/carts/mycred-woocommerce.php:120 ..
1921
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1922
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1923
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1924
+ #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1925
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1926
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1927
  #: includes/importers/mycred-cubepoints.php:365
1928
  msgid "Point Type"
1934
  msgstr "pas encore utilisé"
1935
 
1936
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1937
+ #: 395 ../modules/mycred-module-hooks.php:2507
1938
  msgid "Total"
1939
  msgstr "Total"
1940
 
2100
  "Le message à afficher lorsqu'un bon a été correctement viré sur le compte de "
2101
  "l'utilisateur."
2102
 
 
 
 
 
2103
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
2104
  msgid "Apply Coupon"
2105
  msgstr "Appliquer le bon"
2106
 
2107
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
2108
+ #: notices/myCRED-addon-email-notices.php:1267
2109
  msgid "Email Notice"
2110
  msgstr "Message à envoyer"
2111
 
2310
  "lors de la modification d'un mail."
2311
 
2312
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2313
+ #: notices/myCRED-addon-email-notices.php:900
2314
  msgid "Email Settings"
2315
  msgstr "Configuration des mails"
2316
 
2317
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2318
+ #: notices/myCRED-addon-email-notices.php:1053
2319
  msgid "Senders Name:"
2320
  msgstr "Expéditeur:"
2321
 
2322
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2323
+ #: notices/myCRED-addon-email-notices.php:1055
2324
  msgid "Senders Email:"
2325
  msgstr "Email de l'expéditeur"
2326
 
2344
  msgid "Ignored if HTML is not allowed in emails."
2345
  msgstr "Sera ignoré si HTML désactivé pour les mails"
2346
 
2347
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:719
2348
  #, php-format
2349
  msgctxt "Badge Title - Level 1,2,3.."
2350
  msgid "%s - Level %d"
2351
  msgstr ""
2352
 
2353
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
2354
+ #: notices/myCRED-addon-email-notices.php:949
2355
  msgid "Email Subject"
2356
  msgstr "Sujet du mail"
2357
 
2358
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2359
  msgid "Not Active"
2360
  msgstr "Inactif"
2361
 
2362
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:838
2363
  #, php-format
2364
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2365
  msgstr "Pr&eacute;vu pour le:<br /><strong>%1$s</strong>"
2366
 
2367
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:843
2368
  msgid "Active"
2369
  msgstr "Actif"
2370
 
2371
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:845
2372
  #, php-format
2373
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2374
  msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
2375
 
2376
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:855
2377
  msgid "Email is sent when"
2378
  msgstr "Le mail sera envoyé quand"
2379
 
2380
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:857
2381
  msgid "Missing instance for this notice!"
2382
  msgstr "Ce message n'est pas instancié !"
2383
 
2384
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2385
+ #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
2386
+ #: addon-email-notices.php:870
2387
  msgid "Sent To"
2388
  msgstr "Envoyer à"
2389
 
2390
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2391
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2392
+ #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2393
  msgid "User"
2394
  msgstr "Utilisateur"
2395
 
2396
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
2397
+ #: notices/myCRED-addon-email-notices.php:1020
2398
  msgid "Administrator"
2399
  msgstr "Administrateur"
2400
 
2401
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2402
  msgid "Both Administrator and User"
2403
  msgstr "A l'administrateur et à l'utilisateur"
2404
 
2405
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
2406
+ #: notices/myCRED-addon-email-notices.php:1037
2407
  msgid "All types"
2408
  msgstr ""
2409
 
2410
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2411
  msgid "Available Template Tags"
2412
  msgstr "Mots-clés utilisables ici"
2413
 
2414
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:920
2415
  msgid "Email Header"
2416
  msgstr "En-tête du mail"
2417
 
2418
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:986
2419
  msgid "Send this email notice when..."
2420
  msgstr "Envoyer ce mail quand...."
2421
 
2422
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
2423
  msgid "Recipient:"
2424
  msgstr "Destinataire:"
2425
 
2426
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2427
  msgid "Both"
2428
  msgstr "Les deux"
2429
 
2430
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1025 ..
2431
+ #: addons/gateway/carts/mycred-woocommerce.php:160 ../modules/mycred-module-
2432
+ #: settings.php:674 ../modules/mycred-module-settings.php:695 ../modules/mycred-
2433
+ #: module-settings.php:720
2434
  msgid "Label"
2435
  msgstr "Etiquette"
2436
 
2437
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
2438
  msgid "Reply-To Email:"
2439
  msgstr "Adresse de réponse"
2440
 
2441
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
2442
  msgid "Save"
2443
  msgstr "Enregistrer"
2444
 
2445
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
2446
  msgid "CSS Styling"
2447
  msgstr "Règles de style"
2448
 
2449
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2450
  msgid "Site Related"
2451
  msgstr "A propos du site"
2452
 
2453
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2454
  msgid "Your websites title"
2455
  msgstr "Titre de votre site"
2456
 
2457
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2458
  msgid "Your websites address"
2459
  msgstr "Adresse de votre site"
2460
 
2461
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
2462
  msgid "Your websites tagline (description)"
2463
  msgstr "Description de votre site"
2464
 
2465
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
2466
  msgid "Your websites admin email"
2467
  msgstr "Email de l'administrateur du site"
2468
 
2469
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
2470
  msgid "Total number of blog members"
2471
  msgstr "Total des membres de votre blog"
2472
 
2473
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2474
  msgid "The users new balance"
2475
  msgstr ""
2476
 
2477
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
2478
  msgid "The users old balance"
2479
  msgstr ""
2480
 
2481
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
2482
  msgid "The amount of points gained or lost in this instance"
2483
  msgstr ""
2484
 
2485
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2486
  msgid "The log entry"
2487
  msgstr ""
2488
 
2489
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
2490
+ #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
2491
+ #: addon-email-notices.php:1187
2492
  msgid "Email Notice Updated."
2493
  msgstr "Notice d'Email mis à jour."
2494
 
2495
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
2496
  msgid "Email Notice Activated"
2497
  msgstr "Message activé"
2498
 
2499
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
2500
  msgid "Email Notice Saved"
2501
  msgstr "Message enregistré"
2502
 
2503
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
2504
  msgid ""
2505
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2506
  "are not yet ready to use this email notice!"
2509
  "actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
2510
  "l'utiliser."
2511
 
2512
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
2513
  #, php-format
2514
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2515
  msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
2516
 
2517
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
2518
  msgid "This email notice is active."
2519
  msgstr "Ce message est activé."
2520
 
2521
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
2522
  msgid "Settings saved."
2523
  msgstr "Paramètres sauvegardés."
2524
 
2525
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2526
  msgid "Unsubscribe"
2527
  msgstr "Se désabonner"
2528
 
2529
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2530
  msgid "There are no email notifications yet."
2531
  msgstr "Il n'y a pas encore de notifications d'email."
2532
 
2575
  msgstr "Payé"
2576
 
2577
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2578
+ #: addons/gateway/carts/mycred-woocommerce.php:30 ../includes/mycred-network.php:
2579
  #: 50 ../includes/mycred-network.php:51
2580
  msgid "myCRED"
2581
  msgstr "myCred"
2608
  ": %balance_f%"
2609
 
2610
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2611
+ #: addons/gateway/carts/mycred-woocommerce.php:263
2612
  msgid "Insufficient funds."
2613
  msgstr "Fonds insuffisant."
2614
 
2648
  msgstr "URL du logo du service de paiement"
2649
 
2650
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2651
+ #: addons/gateway/carts/mycred-woocommerce.php:136
2652
  #, php-format
2653
  msgid "How much is 1 %_singular% worth in %currency%?"
2654
  msgstr "Combien vaut 1 %_singular% en %currency% ?"
2655
 
2656
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2657
+ #: addons/gateway/carts/mycred-woocommerce.php:141 ..
2658
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2659
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2660
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2661
+ #: php:578 ../includes/mycred-shortcodes.php:977
2662
  msgid "Exchange Rate"
2663
  msgstr "Taux de change"
2664
 
2665
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2666
+ #: addons/gateway/carts/mycred-woocommerce.php:169 ..
2667
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2668
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2669
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
2676
  msgstr "Pourcentage"
2677
 
2678
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2679
+ #: addons/gateway/carts/mycred-woocommerce.php:171 ..
2680
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2681
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2682
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
2750
  "par les d&eacute;tails de la commande: CUSTOMERNAME, ORDERID, ORDERINFO, "
2751
  "SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML interdit."
2752
 
2753
+ #: ../addons/gateway/carts/mycred-woocommerce.php:31
2754
  msgid "Let users pay using their myCRED balance."
2755
  msgstr "Laisser les utilisateurs payer à partir de leur relevé myCRED"
2756
 
2757
+ #: ../addons/gateway/carts/mycred-woocommerce.php:85
2758
  msgid "Enable/Disable"
2759
  msgstr "Activer/Désactiver"
2760
 
2761
+ #: ../addons/gateway/carts/mycred-woocommerce.php:87
2762
  msgid "Enable myCRED Payment"
2763
  msgstr "Activer le paiement myCRED"
2764
 
2765
+ #: ../addons/gateway/carts/mycred-woocommerce.php:89
2766
  msgid ""
2767
  "Users who are not logged in or excluded from using myCRED will not have "
2768
  "access to this gateway!"
2770
  "Les utilisateurs qui ne sont pas connectés ou qui sont exclus de myCRED "
2771
  "n'auront pas accès à ce service de paiement !"
2772
 
2773
+ #: ../addons/gateway/carts/mycred-woocommerce.php:94
2774
  msgid "Title to show for this payment option."
2775
  msgstr "Titre à afficher pour cette option de paiement"
2776
 
2777
+ #: ../addons/gateway/carts/mycred-woocommerce.php:95
2778
  msgid "Pay with myCRED"
2779
  msgstr "Payer avec myCRED"
2780
 
2781
+ #: ../addons/gateway/carts/mycred-woocommerce.php:99
2782
  msgid "Customer Message"
2783
  msgstr "Message au client"
2784
 
2785
+ #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
2786
+ #: addons/gateway/carts/mycred-woocommerce.php:182
2787
  msgid "Refund Log Template"
2788
  msgstr "Remboursement par template de connexion"
2789
 
2790
+ #: ../addons/gateway/carts/mycred-woocommerce.php:122
2791
  msgid "Select the point type users can use to pay."
2792
  msgstr "Sélectionnez le type de point avec lequel les utilisateurs pourront régler"
2793
 
2794
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148
2795
  msgid "Show Total"
2796
  msgstr "Afficher le total"
2797
 
2798
+ #: ../addons/gateway/carts/mycred-woocommerce.php:150
2799
  msgid "Show the final price in %_plural% ."
2800
  msgstr "Afficher le prix final en %_plural% ."
2801
 
2802
+ #: ../addons/gateway/carts/mycred-woocommerce.php:153
2803
  msgid "Show in Cart"
2804
  msgstr "Afficher avec le panier"
2805
 
2806
+ #: ../addons/gateway/carts/mycred-woocommerce.php:154
2807
  msgid "Show on Checkout Page"
2808
  msgstr "Afficher sur la page de contrôle d'achats"
2809
 
2810
+ #: ../addons/gateway/carts/mycred-woocommerce.php:155
2811
  msgid "Show in Cart and on Checkout Page"
2812
  msgstr "Afficher avec le panier et sur la page de contrôle"
2813
 
2814
+ #: ../addons/gateway/carts/mycred-woocommerce.php:162
2815
  msgid "Order Total in %_plural%"
2816
  msgstr "Commande totale en %_plural%"
2817
 
2818
+ #: ../addons/gateway/carts/mycred-woocommerce.php:178
2819
  msgid "Log entry template for profit sharing."
2820
  msgstr "Template de connexion pour les bénéfices partagés"
2821
 
2822
+ #: ../addons/gateway/carts/mycred-woocommerce.php:184
2823
  msgid "Log entry template for refunds of profit shares."
2824
  msgstr "Connecter le Template entré pour les remboursements des parts bénéficiaires."
2825
 
2826
+ #: ../addons/gateway/carts/mycred-woocommerce.php:214
2827
  msgid "myCRED Payment"
2828
  msgstr "Paiement myCRED"
2829
 
2830
+ #: ../addons/gateway/carts/mycred-woocommerce.php:215
2831
  #, php-format
2832
  msgid ""
2833
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2839
  "pas connectés ne verront pas ce service de paiement sur la page de contrôle "
2840
  "de leurs paiements."
2841
 
2842
+ #: ../addons/gateway/carts/mycred-woocommerce.php:240
2843
  msgid "You must be logged in to pay with %_plural%"
2844
  msgstr "Vous devez être connecté pour payer avec %_plural%"
2845
 
2846
+ #: ../addons/gateway/carts/mycred-woocommerce.php:246
2847
  msgid "You can not use this gateway. Please try a different payment option."
2848
  msgstr ""
2849
  "Vous ne pouvez pas utiliser ce service. Veuillez essayer une autre option de "
2850
  "règlement."
2851
 
2852
+ #: ../addons/gateway/carts/mycred-woocommerce.php:360
2853
+ #, php-format
2854
+ msgctxt "%s = Point amount formatted"
2855
+ msgid "Refunded %s"
2856
+ msgstr ""
2857
+
2858
+ #: ../addons/gateway/carts/mycred-woocommerce.php:408
2859
  msgid "Your account has successfully been charged."
2860
  msgstr "Votre compte a été débité avec succès."
2861
 
2862
+ #: ../addons/gateway/carts/mycred-woocommerce.php:741 ..
2863
  #: addons/gateway/carts/mycred-wpecommerce.php:131
2864
  msgid "Your current balance"
2865
  msgstr "Votre solde actuel"
3003
  msgstr "Vous devez vous connecter pour utiliser ce service !"
3004
 
3005
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
3006
+ #: modules/mycred-module-log.php:23 ../modules/mycred-module-log.php:24
3007
  msgid "Log"
3008
  msgstr "Vue d&#39;ensemble"
3009
 
3099
  msgstr "Rejeter"
3100
 
3101
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
3102
+ #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
3103
+ #: modules/mycred-module-settings.php:699
3104
  msgid "Delete"
3105
  msgstr "Suppirmer"
3106
 
3239
  msgstr "Utiliser le style CSS inclus pour les notifications."
3240
 
3241
  #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
3242
+ #: addons/ranks/myCRED-addon-ranks.php:1427 ../addons/ranks/myCRED-addon-ranks.
3243
+ #: php:1472 ../modules/mycred-module-buddypress.php:464
3244
  msgid "Template"
3245
  msgstr "Texte à afficher"
3246
 
3277
  "to user. Use zero to disable."
3278
  msgstr ""
3279
 
3280
+ #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
3281
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
3282
+ #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
3283
+ #: addons/ranks/myCRED-addon-ranks.php:833 ../addons/ranks/myCRED-addon-ranks.
3284
+ #: php:1310 ../addons/ranks/myCRED-addon-ranks.php:1601
3285
  msgid "Ranks"
3286
  msgstr "Attribution de Points"
3287
 
3288
+ #: ../addons/ranks/myCRED-addon-ranks.php:424
3289
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3290
  msgstr ""
3291
  "Attention ! Tous les classements vont être supprimés. Cette action ne pourra "
3292
  "pas être annulée."
3293
 
3294
+ #: ../addons/ranks/myCRED-addon-ranks.php:425
3295
  msgid "Are you sure you want to re-assign user ranks?"
3296
  msgstr "Je confirme la réassignation du classement de l'utilisateur"
3297
 
3298
+ #: ../addons/ranks/myCRED-addon-ranks.php:441
3299
  #, php-format
3300
  msgid "Ranks for %s"
3301
  msgstr ""
3302
 
3303
+ #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
3304
+ #: php:833
3305
  msgid "Rank"
3306
  msgstr "Classement"
3307
 
3308
+ #: ../addons/ranks/myCRED-addon-ranks.php:449
3309
  msgid "Add New Rank"
3310
  msgstr "Ajouter un nouveau classement"
3311
 
3312
+ #: ../addons/ranks/myCRED-addon-ranks.php:450
3313
  msgid "Edit Rank"
3314
  msgstr "Modifier ce classement"
3315
 
3316
+ #: ../addons/ranks/myCRED-addon-ranks.php:451
3317
  msgid "New Rank"
3318
  msgstr "Nouveau classement"
3319
 
3320
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
3321
  msgid "View Rank"
3322
  msgstr "Afficher le classement"
3323
 
3324
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
3325
  msgid "Search Ranks"
3326
  msgstr "Rechercher un classement"
3327
 
3328
+ #: ../addons/ranks/myCRED-addon-ranks.php:455
3329
  msgid "No ranks found"
3330
  msgstr "Aucun classement trouvé"
3331
 
3332
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
3333
  msgid "No ranks found in Trash"
3334
  msgstr "Aucun classement trouvé dans la corbeille"
3335
 
3336
+ #: ../addons/ranks/myCRED-addon-ranks.php:540
3337
  #, php-format
3338
  msgid "Completed - Total of %d users effected"
3339
  msgstr "Terminé - %d utilisateurs ont été affectés"
3340
 
3341
+ #: ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-addon-ranks.
3342
+ #: php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ../addons/ranks/myCRED-
3343
+ #: addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.php:981 ..
3344
+ #: addons/ranks/myCRED-addon-ranks.php:982 ../addons/ranks/myCRED-addon-ranks.
3345
+ #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986
3346
  msgid "Rank Updated."
3347
  msgstr "Rang mis à jour."
3348
 
3349
+ #: ../addons/ranks/myCRED-addon-ranks.php:983
3350
  msgid "Rank Enabled"
3351
  msgstr "Rang activé"
3352
 
3353
+ #: ../addons/ranks/myCRED-addon-ranks.php:984
3354
  msgid "Rank Saved"
3355
  msgstr "Classement enregistré"
3356
 
3357
+ #: ../addons/ranks/myCRED-addon-ranks.php:1023
3358
  #, php-format
3359
  msgid "<strong>Rank:</strong> %s"
3360
  msgstr ""
3361
 
3362
+ #: ../addons/ranks/myCRED-addon-ranks.php:1039 ../addons/ranks/myCRED-addon-ranks.
3363
+ #: php:1122
3364
  msgid "Rank Title"
3365
  msgstr "Titre du classement"
3366
 
3367
+ #: ../addons/ranks/myCRED-addon-ranks.php:1040
3368
  msgid "Logo"
3369
  msgstr "Logo"
3370
 
3371
+ #: ../addons/ranks/myCRED-addon-ranks.php:1041
3372
  msgid "Requirement"
3373
  msgstr "Obligation"
3374
 
3375
+ #: ../addons/ranks/myCRED-addon-ranks.php:1067
3376
  msgid "No Logo Set"
3377
  msgstr "Aucun logo défini"
3378
 
3379
+ #: ../addons/ranks/myCRED-addon-ranks.php:1082 ../addons/ranks/myCRED-addon-ranks.
3380
+ #: php:1087
3381
  msgid "Any Value"
3382
  msgstr "Valeur au choix"
3383
 
3384
+ #: ../addons/ranks/myCRED-addon-ranks.php:1089
3385
  msgid "Maximum %plural%"
3386
  msgstr "Maximum de %plural%"
3387
 
3388
+ #: ../addons/ranks/myCRED-addon-ranks.php:1137
3389
  msgid "Rank Settings"
3390
  msgstr "Configuration des classements"
3391
 
3392
+ #: ../addons/ranks/myCRED-addon-ranks.php:1191
3393
  msgid "Minimum %plural% to reach this rank"
3394
  msgstr ""
3395
  "Minimum de %plural% &agrave; d&eacute;tenir pour acc&eacute;der &agrave; ce "
3396
  "classement"
3397
 
3398
+ #: ../addons/ranks/myCRED-addon-ranks.php:1195
3399
  msgid "Maximum %plural% to be included in this rank"
3400
  msgstr ""
3401
  "Maximum de %plural% &agrave; poss&eacute;der pour &ecirc;tre inclus dans ce "
3402
  "classement"
3403
 
3404
+ #: ../addons/ranks/myCRED-addon-ranks.php:1213
3405
  msgid "All Published Ranks"
3406
  msgstr "Tous les classements publiés"
3407
 
3408
+ #: ../addons/ranks/myCRED-addon-ranks.php:1223 ../addons/ranks/myCRED-addon-ranks.
3409
+ #: php:1225
3410
  msgid "Not Set"
3411
  msgstr "Non configuré"
3412
 
3413
+ #: ../addons/ranks/myCRED-addon-ranks.php:1231
3414
  msgid "No Ranks found"
3415
  msgstr "Aucun classement trouivé"
3416
 
3417
+ #: ../addons/ranks/myCRED-addon-ranks.php:1315
3418
  msgid "Rank Features"
3419
  msgstr "Caractéristiques du classement"
3420
 
3421
+ #: ../addons/ranks/myCRED-addon-ranks.php:1319
3422
  msgid "%plural% requirement"
3423
  msgstr "condition requise pour l&#39;attribution de %_plural%"
3424
 
3425
+ #: ../addons/ranks/myCRED-addon-ranks.php:1320
3426
  msgid "Featured Image (Logo)"
3427
  msgstr "Illustration (logo)"
3428
 
3429
+ #: ../addons/ranks/myCRED-addon-ranks.php:1322
3430
  msgid "Content"
3431
  msgstr "Contenu"
3432
 
3433
+ #: ../addons/ranks/myCRED-addon-ranks.php:1324
3434
  msgid "Excerpt"
3435
  msgstr "Extrait"
3436
 
3437
+ #: ../addons/ranks/myCRED-addon-ranks.php:1326
3438
  msgid "Comments"
3439
  msgstr "Commentaires"
3440
 
3441
+ #: ../addons/ranks/myCRED-addon-ranks.php:1328
3442
  msgid "Page Attributes"
3443
  msgstr "Attributs de la page"
3444
 
3445
+ #: ../addons/ranks/myCRED-addon-ranks.php:1330
3446
  msgid "Custom Fields"
3447
  msgstr "Champs Personnalisés"
3448
 
3449
+ #: ../addons/ranks/myCRED-addon-ranks.php:1334
3450
  msgid "Public"
3451
  msgstr "Public"
3452
 
3453
+ #: ../addons/ranks/myCRED-addon-ranks.php:1338
3454
  msgid ""
3455
  "If you want to create a template archive for each rank, you must select to "
3456
  "have ranks public. Defaults to disabled."
3458
  "Pour créer un template d'archivage pour chaque classement, ceux-ci doivent "
3459
  "être publics. Désactivé par défaut."
3460
 
3461
+ #: ../addons/ranks/myCRED-addon-ranks.php:1341
3462
  msgid "Archive URL"
3463
  msgstr "URL des archives"
3464
 
3465
+ #: ../addons/ranks/myCRED-addon-ranks.php:1345
3466
  msgid "Ignored if Ranks are not public"
3467
  msgstr "Ignoré si le classement n'est pas public"
3468
 
3469
+ #: ../addons/ranks/myCRED-addon-ranks.php:1348
3470
  msgid "Display Order"
3471
  msgstr "Ordre d'affichage"
3472
 
3473
+ #: ../addons/ranks/myCRED-addon-ranks.php:1356
3474
  msgid "Ascending - Lowest rank to highest"
3475
  msgstr "Ascendant - Du plus petit au plus grand"
3476
 
3477
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
3478
  msgid "Descending - Highest rank to lowest"
3479
  msgstr "Descendant - Du plus grand au plus petit"
3480
 
3481
+ #: ../addons/ranks/myCRED-addon-ranks.php:1368
3482
  msgid ""
3483
  "Select in what order ranks should be displayed in your admin area and/or "
3484
  "front if ranks are \"Public\""
3486
  "Choisissez l'ordre d'affichage des classements dans l'admin et/ou sur le "
3487
  "site quand les classements sont marqués comme \"Publics\""
3488
 
3489
+ #: ../addons/ranks/myCRED-addon-ranks.php:1374
3490
  msgid "Rank Basis"
3491
  msgstr "Base de Classement"
3492
 
3493
+ #: ../addons/ranks/myCRED-addon-ranks.php:1377
3494
  msgid "Users are ranked according to their current balance."
3495
  msgstr "Les utilisateurs sont classés selon leur solde courant"
3496
 
3497
+ #: ../addons/ranks/myCRED-addon-ranks.php:1380
3498
  msgid ""
3499
  "Users are ranked according to the total amount of %_plural% they have "
3500
  "accumulated."
3502
  "Les utilisateurs sont classés selon le montant de total de %_plural% qu'ils "
3503
  "ont accumulés."
3504
 
3505
+ #: ../addons/ranks/myCRED-addon-ranks.php:1384 ../addons/ranks/myCRED-addon-ranks.
3506
+ #: php:1389
3507
  msgid "Calculate Totals"
3508
  msgstr "Calculer les totaux"
3509
 
3510
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3511
  msgid ""
3512
  "Use this button to calculate or recalculate your users totals. If not used, "
3513
  "the users current balance will be used as a starting point."
3514
  msgstr ""
3515
 
3516
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3517
  msgid ""
3518
  "Once a users total has been calculated, they will be assigned to their "
3519
  "appropriate roles. For this reason, it is highly recommended that you first "
3523
  "leurs seront assignés. Pour cette raison, il est fortement recommandé que "
3524
  "vous configurez d'abord vos classements !"
3525
 
3526
+ #: ../addons/ranks/myCRED-addon-ranks.php:1388
3527
  msgid ""
3528
  "Depending on your log size and number of users this process may take a while."
3529
  " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3534
  "cliquez pas sur \"Mettre à jour\" et ne rafraichissez pas la page avant la fin "
3535
  "de l'opération !"
3536
 
3537
+ #: ../addons/ranks/myCRED-addon-ranks.php:1405 ../addons/ranks/myCRED-addon-ranks.
3538
+ #: php:1450 ../modules/mycred-module-buddypress.php:424
3539
  msgid "Do not show."
3540
  msgstr "Ne pas afficher."
3541
 
3542
+ #: ../addons/ranks/myCRED-addon-ranks.php:1406
3543
  msgid "Include in Profile Header."
3544
  msgstr "Inclure dans l'en-tête du profil."
3545
 
3546
+ #: ../addons/ranks/myCRED-addon-ranks.php:1408
3547
  msgid "Include under the \"Profile\" tab and Profile Header."
3548
  msgstr "Inclure sous l'onglet \"Profil\" et dans l'en-tête du profil."
3549
 
3550
+ #: ../addons/ranks/myCRED-addon-ranks.php:1412
3551
  msgid "Rank in BuddyPress"
3552
  msgstr "Classement dans BuddyPress"
3553
 
3554
+ #: ../addons/ranks/myCRED-addon-ranks.php:1429 ../addons/ranks/myCRED-addon-ranks.
3555
+ #: php:1474
3556
  #, php-format
3557
  msgid ""
3558
  "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3559
  "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3560
  msgstr ""
3561
 
3562
+ #: ../addons/ranks/myCRED-addon-ranks.php:1451
3563
  msgid "Include in Topic Replies"
3564
  msgstr ""
3565
 
3566
+ #: ../addons/ranks/myCRED-addon-ranks.php:1453
3567
  msgid "Include in Topic Replies and Profile"
3568
  msgstr ""
3569
 
3570
+ #: ../addons/ranks/myCRED-addon-ranks.php:1457
3571
  msgid "Rank in bbPress"
3572
  msgstr ""
3573
 
3574
+ #: ../addons/ranks/myCRED-addon-ranks.php:1536
3575
  msgid "Script Communication Error"
3576
  msgstr "Erreur de communication des scripts"
3577
 
3578
+ #: ../addons/ranks/myCRED-addon-ranks.php:1604 ../modules/mycred-module-settings.
3579
+ #: php:632
3580
  msgid "User Meta Key"
3581
  msgstr "Mot clé utilisateur"
3582
 
3583
+ #: ../addons/ranks/myCRED-addon-ranks.php:1608
3584
  msgid "No. of ranks"
3585
  msgstr "N° de classement"
3586
 
3587
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3588
  msgid "Remove All Ranks"
3589
  msgstr "Supprimer tous les classements"
3590
 
3591
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3592
  msgid "Assign Ranks to Users"
3593
  msgstr "Attribuer un classement à l'utilisateur"
3594
 
3793
  msgstr "Afficher le rapport"
3794
 
3795
  #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3796
+ #: modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27 ..
3797
+ #: modules/mycred-module-hooks.php:28
3798
  msgid "Hooks"
3799
  msgstr "Plugins"
3800
 
3832
  msgstr ""
3833
 
3834
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3835
+ #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3836
  msgid "Today"
3837
  msgstr "Aujourd'hui"
3838
 
3839
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3840
+ #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3841
  msgid "This Week"
3842
  msgstr "Cette semaine"
3843
 
3844
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3845
+ #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3846
  msgid "This Month"
3847
  msgstr "Ce mois"
3848
 
3909
  msgstr "Vous avez dépass&eacute; votre limite de transfert %limit%."
3910
 
3911
  #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3912
+ #: php:2454
3913
  msgid "Transfer"
3914
  msgstr "Transférer"
3915
 
3948
  "autorisé avant qu'il ne soit activé."
3949
 
3950
  #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3951
+ #: php:2582
3952
  msgid "Insufficient Funds. Please try a lower amount."
3953
  msgstr "Insuffisance de fonds. S'il vous plait, essayez un montant inférieur."
3954
 
4104
  msgid "recipients %s"
4105
  msgstr "destinataires %s"
4106
 
4107
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
4108
  msgid "To:"
4109
  msgstr "Transf&eacute;rer à :"
4110
 
4111
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
4112
  msgid "Amount:"
4113
  msgstr "Montant :"
4114
 
4311
  msgid "Available Template Tags:"
4312
  msgstr "Mots clés de template disponibles"
4313
 
4314
+ #: ../includes/mycred-functions.php:1694
4315
  msgid "Entire Log"
4316
  msgstr "Tout le journal"
4317
 
4318
+ #: ../includes/mycred-functions.php:1699 ../includes/mycred-functions.php:1700
4319
  msgid "Displayed Rows"
4320
  msgstr "Colonnes affichées"
4321
 
4322
+ #: ../includes/mycred-functions.php:1707
4323
  msgid "Search Results"
4324
  msgstr "Résultats de la recherche"
4325
 
4326
+ #: ../includes/mycred-functions.php:1708
4327
  msgid "My Entire Log"
4328
  msgstr "Mon journal complet"
4329
 
4330
+ #: ../includes/mycred-functions.php:1875
4331
  msgid "ref empty"
4332
  msgstr "ref est vide"
4333
 
4334
+ #: ../includes/mycred-functions.php:1883
4335
  msgid "incorrect user id format"
4336
  msgstr "format du ID utilisateur incorrect"
4337
 
4338
+ #: ../includes/mycred-functions.php:1896
4339
  msgid "incorrect unix timestamp (from):"
4340
  msgstr "Horodatage unix incorrect (from):"
4341
 
4342
+ #: ../includes/mycred-functions.php:1905
4343
  msgid "incorrect unix timestamp (to):"
4344
  msgstr "Horodatage unix incorrect (to):"
4345
 
4346
+ #: ../includes/mycred-functions.php:2314
4347
  msgid "Website Registration"
4348
  msgstr "Inscription au siteweb"
4349
 
4350
+ #: ../includes/mycred-functions.php:2315
4351
  msgid "Website Visit"
4352
  msgstr "Visite du siteweb"
4353
 
4354
+ #: ../includes/mycred-functions.php:2316
4355
  msgid "Viewing Content (Member)"
4356
  msgstr "Voir le contenu (Membre)"
4357
 
4358
+ #: ../includes/mycred-functions.php:2317
4359
  msgid "Viewing Content (Author)"
4360
  msgstr "Voir le contenu (Auteur)"
4361
 
4362
+ #: ../includes/mycred-functions.php:2318
4363
  msgid "Logging in"
4364
  msgstr "Connectez-vous"
4365
 
4366
+ #: ../includes/mycred-functions.php:2319
4367
  msgid "Publishing Content"
4368
  msgstr "Publié le contenu"
4369
 
4370
+ #: ../includes/mycred-functions.php:2320 ../modules/mycred-module-hooks.php:1663
4371
  msgid "Approved Comment"
4372
  msgstr "Commentaire approuvé"
4373
 
4374
+ #: ../includes/mycred-functions.php:2321
4375
  msgid "Unapproved Comment"
4376
  msgstr "Commentaire non approuvé"
4377
 
4378
+ #: ../includes/mycred-functions.php:2322
4379
  msgid "SPAM Comment"
4380
  msgstr "Commentaire SPAM"
4381
 
4382
+ #: ../includes/mycred-functions.php:2323
4383
  msgid "Deleted Comment"
4384
  msgstr "Commentaire supprimé"
4385
 
4386
+ #: ../includes/mycred-functions.php:2324
4387
  msgid "Link Click"
4388
  msgstr "Lien cliqué"
4389
 
4390
+ #: ../includes/mycred-functions.php:2325
4391
  msgid "Watching Video"
4392
  msgstr "Vidéo regardé"
4393
 
4394
+ #: ../includes/mycred-functions.php:2326
4395
  msgid "Visitor Referral"
4396
  msgstr "Visiter référant"
4397
 
4398
+ #: ../includes/mycred-functions.php:2327
4399
  msgid "Signup Referral"
4400
  msgstr "Inscription référant"
4401
 
4402
+ #: ../includes/mycred-functions.php:2331
4403
  msgid "New Profile Update"
4404
  msgstr "Nouveau profil mis à jour"
4405
 
4406
+ #: ../includes/mycred-functions.php:2332
4407
  msgid "Profile Update Removal"
4408
  msgstr ""
4409
 
4410
+ #: ../includes/mycred-functions.php:2333
4411
  msgid "Avatar Upload"
4412
  msgstr "Téléchargement d'avatar"
4413
 
4414
+ #: ../includes/mycred-functions.php:2334
4415
  msgid "New Friendship"
4416
  msgstr "Nouvel amis"
4417
 
4418
+ #: ../includes/mycred-functions.php:2335
4419
  msgid "Ended Friendship"
4420
  msgstr "Fin d'amitié"
4421
 
4422
+ #: ../includes/mycred-functions.php:2336
4423
  msgid "New Profile Comment"
4424
  msgstr "Nouveau commentaire profil"
4425
 
4426
+ #: ../includes/mycred-functions.php:2337
4427
  msgid "Profile Comment Deletion"
4428
  msgstr "Suppression d'un commentaire du profil"
4429
 
4430
+ #: ../includes/mycred-functions.php:2338
4431
  msgid "New Message"
4432
  msgstr "Nouveau message"
4433
 
4434
+ #: ../includes/mycred-functions.php:2339
4435
  msgid "Sending Gift"
4436
  msgstr "Envoie d'un cadeau"
4437
 
4438
+ #: ../includes/mycred-functions.php:2340
4439
  msgid "New Group"
4440
  msgstr "Nouveau groupe"
4441
 
4442
+ #: ../includes/mycred-functions.php:2341
4443
  msgid "Deleted Group"
4444
  msgstr "Groupe supprimé"
4445
 
4446
+ #: ../includes/mycred-functions.php:2342
4447
  msgid "New Group Forum Topic"
4448
  msgstr "Nouveau groupe sujet dans le forum"
4449
 
4450
+ #: ../includes/mycred-functions.php:2343
4451
  msgid "Edit Group Forum Topic"
4452
  msgstr "Editer un groupe sujet dans le forum"
4453
 
4454
+ #: ../includes/mycred-functions.php:2344
4455
  msgid "New Group Forum Post"
4456
  msgstr "Nouveau groupe de post dans le forum"
4457
 
4458
+ #: ../includes/mycred-functions.php:2345
4459
  msgid "Edit Group Forum Post"
4460
  msgstr "Editer le groupe de post dans le forum"
4461
 
4462
+ #: ../includes/mycred-functions.php:2346
4463
  msgid "Joining Group"
4464
  msgstr "Joindre un groupe"
4465
 
4466
+ #: ../includes/mycred-functions.php:2347
4467
  msgid "Leaving Group"
4468
  msgstr "Quitter un groupe"
4469
 
4470
+ #: ../includes/mycred-functions.php:2348
4471
  msgid "New Group Avatar"
4472
  msgstr "Nouveau groupe d'avatar"
4473
 
4474
+ #: ../includes/mycred-functions.php:2349
4475
  msgid "New Group Comment"
4476
  msgstr "Nouveau groupe de commentaires"
4477
 
4478
+ #: ../includes/mycred-functions.php:2353 ../plugins/mycred-hook-buddypress-media.
4479
  #: php:205
4480
  msgid "Photo Upload"
4481
  msgstr "Télécharger la photo"
4482
 
4483
+ #: ../includes/mycred-functions.php:2354 ../plugins/mycred-hook-buddypress-media.
4484
  #: php:219
4485
  msgid "Video Upload"
4486
  msgstr "Télécharger la vidéo"
4487
 
4488
+ #: ../includes/mycred-functions.php:2355 ../plugins/mycred-hook-buddypress-media.
4489
  #: php:233
4490
  msgid "Music Upload"
4491
  msgstr "Télécharger la musique"
4492
 
4493
+ #: ../includes/mycred-functions.php:2359
4494
  msgid "New Link"
4495
  msgstr "Nouveau lien"
4496
 
4497
+ #: ../includes/mycred-functions.php:2360
4498
  msgid "Link Voting"
4499
  msgstr "Lien de vote"
4500
 
4501
+ #: ../includes/mycred-functions.php:2361
4502
  msgid "Link Update"
4503
  msgstr "Lien mis à jour"
4504
 
4505
+ #: ../includes/mycred-functions.php:2365
4506
  msgid "New Forum (bbPress)"
4507
  msgstr "Nouveau forum (bbpress)"
4508
 
4509
+ #: ../includes/mycred-functions.php:2366
4510
  msgid "New Forum Topic (bbPress)"
4511
  msgstr "Nouveau sujet de forum (bbpress)"
4512
 
4513
+ #: ../includes/mycred-functions.php:2367
4514
  msgid "Favorited Topic (bbPress)"
4515
  msgstr "Sujet favoris (bbPress)"
4516
 
4517
+ #: ../includes/mycred-functions.php:2368
4518
  msgid "New Topic Reply (bbPress)"
4519
  msgstr "Nouvelle réponse d'un sujet (Bbpress)"
4520
 
4521
+ #: ../includes/mycred-functions.php:2372
4522
  msgid "Form Submission (Contact Form 7)"
4523
  msgstr "Formulaire de soumission (Contact Form 7)"
4524
 
4525
+ #: ../includes/mycred-functions.php:2375
4526
  msgid "Form Submission (Gravity Form)"
4527
  msgstr "Formulaire de soumission (Contact Form 7)"
4528
 
4529
+ #: ../includes/mycred-functions.php:2378
4530
  msgid "New Forum Topic (SimplePress)"
4531
  msgstr "Nouveau sujet de Forum (SimplePress)"
4532
 
4533
+ #: ../includes/mycred-functions.php:2379
4534
  msgid "New Forum Post (SimplePress)"
4535
  msgstr "Nouveau post sur le forum (SimplePress)"
4536
 
4537
+ #: ../includes/mycred-functions.php:2388
4538
  msgid "Affiliate Signup (AffiliateWP)"
4539
  msgstr ""
4540
 
4541
+ #: ../includes/mycred-functions.php:2389
4542
  msgid "Referred Visit (AffiliateWP)"
4543
  msgstr ""
4544
 
4545
+ #: ../includes/mycred-functions.php:2390
4546
  msgid "Affiliate Referral (AffiliateWP)"
4547
  msgstr ""
4548
 
4549
+ #: ../includes/mycred-functions.php:2391
4550
  msgid "Referral Refund (AffiliateWP)"
4551
  msgstr ""
4552
 
4553
+ #: ../includes/mycred-functions.php:2395 ../plugins/mycred-hook-wp-postratings.
4554
  #: php:150
4555
  msgid "Adding a Rating"
4556
  msgstr ""
4557
 
4558
+ #: ../includes/mycred-functions.php:2396 ../plugins/mycred-hook-wp-postratings.
4559
  #: php:169
4560
  msgid "Receiving a Rating"
4561
  msgstr ""
4562
 
4563
+ #: ../includes/mycred-functions.php:2400
4564
  msgid "Poll Voting"
4565
  msgstr "Poll Voting"
4566
 
4567
+ #: ../includes/mycred-functions.php:2403
4568
  msgid "Sending an Invite"
4569
  msgstr "Envoie d'une invitation"
4570
 
4571
+ #: ../includes/mycred-functions.php:2404
4572
  msgid "Accepting an Invite"
4573
  msgstr "Accepter une invitation"
4574
 
4575
+ #: ../includes/mycred-functions.php:2410
4576
  msgid "Banking Payout"
4577
  msgstr "Paiement bancaire"
4578
 
4579
+ #: ../includes/mycred-functions.php:2413
4580
  msgid "buyCRED Purchase (PayPal Standard)"
4581
  msgstr "Achat buyCRED (PayPal Standart)"
4582
 
4583
+ #: ../includes/mycred-functions.php:2414
4584
  msgid "buyCRED Purchase (Skrill)"
4585
  msgstr "Achat buyCRED (Skrill)"
4586
 
4587
+ #: ../includes/mycred-functions.php:2415
4588
  msgid "buyCRED Purchase (Zombaio)"
4589
  msgstr "Achat buyCRED (Zombaio)"
4590
 
4591
+ #: ../includes/mycred-functions.php:2416
4592
  msgid "buyCRED Purchase (NETBilling)"
4593
  msgstr "Achat buyCRED (Netbilling)"
4594
 
4595
+ #: ../includes/mycred-functions.php:2417
4596
  msgid "buyCRED Purchase (BitPay)"
4597
  msgstr "Achat buyCRED (BitPay)"
4598
 
4599
+ #: ../includes/mycred-functions.php:2422
4600
  msgid "Coupon Purchase"
4601
  msgstr "Coupon d'achat"
4602
 
4603
+ #: ../includes/mycred-functions.php:2426
4604
  msgid "Store Purchase (WooCommerce)"
4605
  msgstr "Magasin achat (WooCOmmerce)"
4606
 
4607
+ #: ../includes/mycred-functions.php:2427
4608
  msgid "Store Reward (WooCommerce)"
4609
  msgstr ""
4610
 
4611
+ #: ../includes/mycred-functions.php:2428
4612
  msgid "Product Review (WooCommerce)"
4613
  msgstr ""
4614
 
4615
+ #: ../includes/mycred-functions.php:2431
4616
  msgid "Store Purchase (MarketPress)"
4617
  msgstr "Magasin achat (MarketPress)"
4618
 
4619
+ #: ../includes/mycred-functions.php:2432
4620
  msgid "Store Reward (MarketPress)"
4621
  msgstr ""
4622
 
4623
+ #: ../includes/mycred-functions.php:2435
4624
  msgid "Store Purchase (WP E-Commerce)"
4625
  msgstr "Magasin achat (Wp E-commence)"
4626
 
4627
+ #: ../includes/mycred-functions.php:2441
4628
  msgid "Event Payment (Event Espresso)"
4629
  msgstr "Evènement paiement (Event Espresso)"
4630
 
4631
+ #: ../includes/mycred-functions.php:2442
4632
  msgid "Event Sale (Event Espresso)"
4633
  msgstr "Evènement vendu (Event Espresso)"
4634
 
4635
+ #: ../includes/mycred-functions.php:2446
4636
  msgid "Event Payment (Events Manager)"
4637
  msgstr "Evènement payé (Events Manager)"
4638
 
4639
+ #: ../includes/mycred-functions.php:2447
4640
  msgid "Event Sale (Events Manager)"
4641
  msgstr "Evènement vendu (Events Manager)"
4642
 
4643
+ #: ../includes/mycred-functions.php:2451
4644
  msgid "Content Purchase / Sale"
4645
  msgstr "Contenu acheté/vendu"
4646
 
4647
+ #: ../includes/mycred-functions.php:2458
4648
  msgid "Manual Adjustment by Admin"
4649
  msgstr "Ajustements manuel par admin"
4650
 
4651
+ #: ../includes/mycred-functions.php:2528 ../includes/mycred-shortcodes.php:925
4652
  msgid "Point types not found."
4653
  msgstr "Types de point non trouvé."
4654
 
4655
+ #: ../includes/mycred-functions.php:2540 ../includes/mycred-functions.php:2560 ..
4656
+ #: includes/mycred-shortcodes.php:931 ../includes/mycred-shortcodes.php:939
4657
  #, php-format
4658
  msgid "You are excluded from using %s."
4659
  msgstr "Vous êtes exclu d'utiliser %s"
4660
 
4661
+ #: ../includes/mycred-functions.php:2550 ../includes/mycred-shortcodes.php:935
4662
  msgid "Your balance is too low to use this feature."
4663
  msgstr "Votre solde est trop bas pour utiliser cet élément."
4664
 
4665
+ #: ../includes/mycred-functions.php:2573
4666
  #, php-format
4667
  msgid "You must exchange at least %s!"
4668
  msgstr "Vous devez échanger au minimum %s!"
4669
 
4670
+ #: ../includes/mycred-functions.php:2595
4671
  #, php-format
4672
  msgid "Exchange from %s"
4673
  msgstr "Echange par %s"
4674
 
4675
+ #: ../includes/mycred-functions.php:2607
4676
  #, php-format
4677
  msgid "Exchange to %s"
4678
  msgstr "Echange de %s"
4679
 
4680
+ #: ../includes/mycred-functions.php:2615
4681
  #, php-format
4682
  msgid "You have successfully exchanged %s into %s."
4683
  msgstr "Vous avez échangez avec succès %s en %s."
4684
 
4685
+ #: ../includes/mycred-functions.php:2647
4686
  msgid "per day"
4687
  msgstr ""
4688
 
4689
+ #: ../includes/mycred-functions.php:2649
4690
  msgid "per week"
4691
  msgstr ""
4692
 
4693
+ #: ../includes/mycred-functions.php:2651
4694
  msgid "per month"
4695
  msgstr ""
4696
 
4697
+ #: ../includes/mycred-functions.php:2653
4698
  msgid "in total"
4699
  msgstr ""
4700
 
4701
+ #: ../includes/mycred-functions.php:2655 ../includes/mycred-functions.php:2659
4702
  #, php-format
4703
  msgid "Maximum once"
4704
  msgid_plural "Maximum %d times"
4768
  "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
4769
  "apparues:"
4770
 
4771
+ #: ../includes/mycred-install.php:268
4772
  msgid "myCRED needs your attention."
4773
  msgstr "myCRED requiert votre attention."
4774
 
4775
+ #: ../includes/mycred-install.php:268
4776
  msgid "Run Setup"
4777
  msgstr "Démarrer l'installation"
4778
 
4779
+ #: ../includes/mycred-install.php:280 ../includes/mycred-install.php:281
4780
  msgid "myCRED Setup"
4781
  msgstr "Installation de myCRED"
4782
 
4783
+ #: ../includes/mycred-install.php:410
4784
  #, php-format
4785
  msgid "%s Setup"
4786
  msgstr "Configuration %s"
4787
 
4788
+ #: ../includes/mycred-install.php:412
4789
  msgid "Step"
4790
  msgstr "Etape"
4791
 
4792
+ #: ../includes/mycred-install.php:436
4793
  msgid ""
4794
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4795
  "points format, layout and security settings."
4798
  "alors en mesure de choisir le format de points, l'apparence et les "
4799
  "paramètres de sécurité."
4800
 
4801
+ #: ../includes/mycred-install.php:437
4802
  msgid "Begin Setup"
4803
  msgstr "Démarrer le paramétrage"
4804
 
4805
+ #: ../includes/mycred-install.php:492
4806
  msgid "Select the format you want to use for your points."
4807
  msgstr "Choisissez le format que vous voulez utiliser pour vos points"
4808
 
4809
+ #: ../includes/mycred-install.php:493
4810
  msgid "Format"
4811
  msgstr "Formatage"
4812
 
4813
+ #: ../includes/mycred-install.php:496
4814
  msgid "Separators"
4815
  msgstr "Séparateurs"
4816
 
4817
+ #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:531
4818
  msgid "Decimals"
4819
  msgstr "Décimales"
4820
 
4821
+ #: ../includes/mycred-install.php:508
4822
  msgid "Use zero for no decimals or maximum 20."
4823
  msgstr ""
4824
 
4825
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:537
4826
  msgid "Presentation"
4827
  msgstr "Présentation"
4828
 
4829
+ #: ../includes/mycred-install.php:514 ../modules/mycred-module-settings.php:518
4830
  msgid "Name (Singular)"
4831
  msgstr "Nom (singulier)"
4832
 
4833
+ #: ../includes/mycred-install.php:518 ../modules/mycred-module-settings.php:523
4834
  msgid "Name (Plural)"
4835
  msgstr "Nom (pluriel)"
4836
 
4837
+ #: ../includes/mycred-install.php:524 ../modules/mycred-module-settings.php:540
4838
  msgid "Prefix"
4839
  msgstr "Préfixe"
4840
 
4841
+ #: ../includes/mycred-install.php:532 ../modules/mycred-module-settings.php:548
4842
  msgid "Suffix"
4843
  msgstr "Suffixe"
4844
 
4845
+ #: ../includes/mycred-install.php:536
4846
  msgid "Cancel Setup"
4847
  msgstr "Annuler le paramétrage"
4848
 
4849
+ #: ../includes/mycred-install.php:536 ../includes/mycred-install.php:606
4850
  msgid "Next"
4851
  msgstr "Suivant"
4852
 
4853
+ #: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:556
4854
  msgid "Security"
4855
  msgstr "Sécurité"
4856
 
4857
+ #: ../includes/mycred-install.php:571
4858
  msgid "Edit Settings Capability"
4859
  msgstr "Modifier les paramètres"
4860
 
4861
+ #: ../includes/mycred-install.php:575
4862
  msgid "Edit Users %plural% Capability"
4863
  msgstr "Modifier la capacit&eacute; de %plural% des utilisateurs"
4864
 
4865
+ #: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:569
4866
  msgid "Maximum %plural% payouts"
4867
  msgstr "Maximum de %plural% à régler"
4868
 
4869
+ #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:571
4870
  msgid ""
4871
  "As an added security, you can set the maximum amount a user can gain or "
4872
  "loose in a single instance. If used, make sure this is the maximum amount a "
4879
  "maximum pouvant être dépensé, transféré ou reçu. Utilisez zéro pour "
4880
  "désactiver l'option."
4881
 
4882
+ #: ../includes/mycred-install.php:584 ../modules/mycred-module-settings.php:574
4883
  msgid "Excludes"
4884
  msgstr "Exclure"
4885
 
4886
+ #: ../includes/mycred-install.php:588 ../modules/mycred-module-settings.php:578
4887
  msgid "Exclude those who can \"Edit Settings\"."
4888
  msgstr "Exclure ceux qui peuvent \"modifier les réglages\"."
4889
 
4890
+ #: ../includes/mycred-install.php:592 ../modules/mycred-module-settings.php:582
4891
  msgid "Exclude those who can \"Edit Users %plural%\"."
4892
  msgstr "Exclure ceux qui peuvent \"modifier les %_points% de l'utilisateur\"."
4893
 
4894
+ #: ../includes/mycred-install.php:595 ../modules/mycred-module-settings.php:586
4895
  msgid "Exclude the following user IDs:"
4896
  msgstr "Exclure les utilisateurs (ID) suivants"
4897
 
4898
+ #: ../includes/mycred-install.php:599 ../modules/mycred-module-settings.php:591
4899
  msgid "User Deletions"
4900
  msgstr "Suppression de l'utilisateur"
4901
 
4902
+ #: ../includes/mycred-install.php:603 ../modules/mycred-module-settings.php:594
4903
  msgid "Delete log entries when user is deleted."
4904
  msgstr "supprimer les données attachées lors de la suppression de l'utilisateur"
4905
 
4906
+ #: ../includes/mycred-install.php:624
4907
  msgid "Ready"
4908
  msgstr "Prêt !"
4909
 
4910
+ #: ../includes/mycred-install.php:625
4911
  msgid "Almost done! Click the button below to finish this setup."
4912
  msgstr ""
4913
  "C'est presque fini ! Cliquez sur le bouton ci-dessous pour terminer cette "
4914
  "configuration."
4915
 
4916
+ #: ../includes/mycred-install.php:626
4917
  msgid "Install & Run"
4918
  msgstr "Installer et démarrer"
4919
 
4920
+ #: ../includes/mycred-log.php:430
4921
  #, php-format
4922
  msgid "Showing %d %s"
4923
  msgstr "Affichage de %d %s"
4924
 
4925
+ #: ../includes/mycred-log.php:430
4926
  msgid "entry"
4927
  msgstr "entrée"
4928
 
4929
+ #: ../includes/mycred-log.php:444
4930
  msgid "Go to the first page"
4931
  msgstr "Aller à la première page"
4932
 
4933
+ #: ../includes/mycred-log.php:451
4934
  msgid "Go to the previous page"
4935
  msgstr "Aller à la page précédente"
4936
 
4937
+ #: ../includes/mycred-log.php:460
4938
  msgid "Current page"
4939
  msgstr "Page actuelle"
4940
 
4941
+ #: ../includes/mycred-log.php:466
4942
  #, php-format
4943
  msgctxt "mycred"
4944
  msgid "%1$s of %2$s"
4945
  msgstr ""
4946
 
4947
+ #: ../includes/mycred-log.php:470
4948
  msgid "Go to the next page"
4949
  msgstr "Aller à la page suivante"
4950
 
4951
+ #: ../includes/mycred-log.php:477
4952
  msgid "Go to the last page"
4953
  msgstr "Aller à la dernière page"
4954
 
4955
+ #: ../includes/mycred-log.php:544
4956
  msgid "Show all references"
4957
  msgstr "Afficher toutes les références"
4958
 
4959
+ #: ../includes/mycred-log.php:557
4960
+ msgid "User ID, Username, Email or Nicename"
4961
+ msgstr ""
4962
 
4963
+ #: ../includes/mycred-log.php:563
4964
  msgid "Show in order"
4965
  msgstr "Afficher sur la commande"
4966
 
4967
+ #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4968
  msgid "Ascending"
4969
  msgstr "Ascendant"
4970
 
4971
+ #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4972
  msgid "Descending"
4973
  msgstr "Descendant"
4974
 
4975
+ #: ../includes/mycred-log.php:582
4976
  msgid "Filter"
4977
  msgstr "Filtre"
4978
 
4979
+ #: ../includes/mycred-log.php:635
4980
  msgid ""
4981
  "Log entries are exported to a CSV file and depending on the number of "
4982
  "entries selected, the process may take a few seconds."
4984
  "Les données sont exportées dans un fichier CSV. Selon le nombre "
4985
  "d'enregistrements sélectionnés, le processus peut durer un petit moment."
4986
 
4987
+ #: ../includes/mycred-log.php:639
4988
  msgid "No export options available."
4989
  msgstr "Aucune option d'exportation disponible."
4990
 
4991
+ #: ../includes/mycred-log.php:668
4992
  msgid "Entry"
4993
  msgstr "Motif"
4994
 
4995
+ #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4996
  msgid "User Missing"
4997
  msgstr "Utilisateur inexistant"
4998
 
4999
+ #: ../includes/mycred-log.php:839
5000
  msgid "No log entries found"
5001
  msgstr "Aucun enregistrement à afficher."
5002
 
5003
+ #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
5004
  msgid "Search Log"
5005
  msgstr "Journal de recherche"
5006
 
5007
+ #: ../includes/mycred-log.php:855
5008
  msgid "search log entries"
5009
  msgstr "Recherchez une donnée"
5010
 
5011
+ #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
5012
+ #: modules/mycred-module-buddypress.php:249
5013
  msgid "All"
5014
  msgstr "Historique complet"
5015
 
5016
+ #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
5017
  msgid "Yesterday"
5018
  msgstr "Hier"
5019
 
5191
  msgid "Error - Try Again"
5192
  msgstr "Erreur - essayez encore une fois"
5193
 
5194
+ #: ../includes/mycred-shortcodes.php:764
5195
  msgid "A video ID is required for this shortcode"
5196
  msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
5197
 
5198
+ #: ../includes/mycred-shortcodes.php:957
5199
  #, php-format
5200
  msgid "Convert <span>%s</span> to <span>%s</span>"
5201
  msgstr "Convertir <span>%s</span> par <span>%s</span>"
5202
 
5203
+ #: ../includes/mycred-shortcodes.php:966
5204
  #, php-format
5205
  msgid "Your current %s balance"
5206
  msgstr "Votre solde actuel %s"
5207
 
5208
+ #: ../includes/mycred-shortcodes.php:974
5209
  #, php-format
5210
  msgid "Minimum %s"
5211
  msgstr "Minimum %s"
5212
 
5213
+ #: ../includes/mycred-shortcodes.php:978
5214
  #, php-format
5215
  msgid "1 %s = <span class=\"rate\">%s</span> %s"
5216
  msgstr "1 %s = <span class=\"Taux\">%s</span> %s"
5217
 
5218
+ #: ../includes/mycred-shortcodes.php:984
5219
  msgid "Exchange"
5220
  msgstr "Echange"
5221
 
5222
+ #: ../includes/mycred-shortcodes.php:1049
5223
  msgid "No instances found for this point type"
5224
  msgstr ""
5225
 
5226
+ #: ../includes/mycred-shortcodes.php:1053
5227
  msgid "Invalid point type"
5228
  msgstr ""
5229
 
5230
+ #: ../includes/mycred-shortcodes.php:1114
5231
  msgid "Instance"
5232
  msgstr ""
5233
 
5234
+ #: ../includes/mycred-shortcodes.php:1116 ../modules/mycred-module-hooks.php:672 .
5235
+ #: ./modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:703 ..
5236
+ #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:780 ..
5237
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:1011 ..
5238
+ #: modules/mycred-module-hooks.php:1153 ../modules/mycred-module-hooks.php:1170 .
5239
+ #: ./modules/mycred-module-hooks.php:1219 ../modules/mycred-module-hooks.php:3008
5240
+ #: ../modules/mycred-module-hooks.php:3028 ../plugins/mycred-hook-affiliatewp.php:
5241
+ #: 237 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-bbPress.php:
5242
+ #: 440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-bbPress.php:
5243
+ #: 492 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
5244
  #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
5245
  #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
5246
  #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
5261
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5262
  #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5263
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5264
+ #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5265
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5266
  #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
5267
  #: postratings.php:175
5551
  msgid "Import log entries from a CSV file."
5552
  msgstr "Importer le rapport d'entrées depuis un fichier CSV."
5553
 
5554
+ #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26
5555
  msgid "Add-ons"
5556
  msgstr "Modules"
5557
 
5558
+ #: ../modules/mycred-module-addons.php:160
5559
  msgid "Give your users badges based on their interaction with your website."
5560
  msgstr ""
5561
  "Donner à vos utilisateurs des badges basés sur leurs interactions avec votre "
5562
  "site."
5563
 
5564
+ #: ../modules/mycred-module-addons.php:171
5565
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
5566
  msgstr ""
5567
  "Paramétrez les paiements réguliers ou offres / pénalités et intérêts "
5568
  "relatifs aux soldes de comptes de vos utilisateurs."
5569
 
5570
+ #: ../modules/mycred-module-addons.php:182
5571
  msgid ""
5572
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5573
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
5578
  "NETbilling. buyCRED permet également à un utilisateur d'acheter des points "
5579
  "pour un autre membre du site."
5580
 
5581
+ #: ../modules/mycred-module-addons.php:193
5582
  msgid ""
5583
  "The coupons add-on allows you to create coupons that users can use to add "
5584
  "points to their accounts."
5586
  "Le module de bons de réductions vous permet de créer des bons que les "
5587
  "utilisateurs pourront utiliser pour ajouter des points à leur compte."
5588
 
5589
+ #: ../modules/mycred-module-addons.php:204
5590
  msgid "Create email notices for any type of myCRED instance."
5591
  msgstr "Créez des alertes par mail pour tout type d'action avec myCRED."
5592
 
5593
+ #: ../modules/mycred-module-addons.php:215
5594
  msgid ""
5595
  "Let your users pay using their <strong>my</strong>CRED points balance. "
5596
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5601
  "MarketPress et WP E-Commerce. Egalement compatible avec les systèmes de "
5602
  "réservations Event Espresso et Events Manager (gratuit & pro)."
5603
 
5604
+ #: ../modules/mycred-module-addons.php:226
5605
  msgid "Create pop-up notifications for when users gain or loose points."
5606
  msgstr ""
5607
  "Crée une pop-up de notification lorsqu'un utilisateur gagne ou perd des "
5608
  "points."
5609
 
5610
+ #: ../modules/mycred-module-addons.php:238
5611
  msgid ""
5612
  "Create ranks for users reaching a certain number of %_plural% with the "
5613
  "option to add logos for each rank."
5615
  "Créez des classements pour les utilisateurs atteignants un certain nombre de "
5616
  "%_plural%, avec en option l'ajout d'un logo signalant leur classement."
5617
 
5618
+ #: ../modules/mycred-module-addons.php:249
5619
  msgid ""
5620
  "This add-on allows you to sell posts, pages or any public post types on your "
5621
  "website. You can either sell the entire content or using our shortcode, sell "
5626
  "contenu ou proposer des extraits à titre d'échantillons à l'aide de nos "
5627
  "shortcodes."
5628
 
5629
+ #: ../modules/mycred-module-addons.php:260
5630
  msgid ""
5631
  "Gives you access to your myCRED Staticstics based on your users gains and "
5632
  "loses."
5633
  msgstr ""
5634
 
5635
+ #: ../modules/mycred-module-addons.php:271
5636
  msgid ""
5637
  "Allow your users to send or \"donate\" points to other members by either using "
5638
  "the mycred_transfer shortcode or the myCRED Transfer widget."
5640
  "Autorisez vos membres à s'envoyer des points ou en faire don entre eux, en "
5641
  "utilisant le shortcode mycred_transfer ou avec le widget myCRED Transfert."
5642
 
5643
+ #: ../modules/mycred-module-addons.php:313
5644
  #, php-format
5645
  msgid "%s Add-ons"
5646
  msgstr "Modules %s"
5647
 
5648
+ #: ../modules/mycred-module-addons.php:320
5649
  msgid "Add-on Activated"
5650
  msgstr "Module activé"
5651
 
5652
+ #: ../modules/mycred-module-addons.php:323
5653
  msgid "Add-on Deactivated"
5654
  msgstr "Module désactivé"
5655
 
5656
+ #: ../modules/mycred-module-addons.php:328
5657
+ msgid "Add-ons Reloaded"
5658
+ msgstr ""
5659
+
5660
+ #: ../modules/mycred-module-addons.php:331
5661
  msgid "Add-ons can expand your current installation with further features."
5662
  msgstr ""
5663
  "Les modules servent à étendre l'application avec des fonctionnalités "
5664
  "supplémentaires."
5665
 
5666
+ #: ../modules/mycred-module-addons.php:358
5667
+ msgid "Reload Add-ons"
5668
+ msgstr ""
5669
+
5670
+ #: ../modules/mycred-module-addons.php:359
5671
  #, php-format
5672
  msgid "You can find more add-ons in our %s."
5673
  msgstr "Vous trouverez d'autres modules sur notre %s"
5674
 
5675
+ #: ../modules/mycred-module-addons.php:359
5676
  msgid "online store"
5677
  msgstr "boutique en ligne"
5678
 
5679
+ #: ../modules/mycred-module-addons.php:382
5680
  msgid "Deactivate Add-on"
5681
  msgstr "Désactiver le module"
5682
 
5683
+ #: ../modules/mycred-module-addons.php:383
5684
  msgid "Deactivate"
5685
  msgstr "Désactiver"
5686
 
5687
+ #: ../modules/mycred-module-addons.php:390
5688
  msgid "Activate Add-on"
5689
  msgstr "Activer le module"
5690
 
5691
+ #: ../modules/mycred-module-addons.php:391
5692
  msgid "Activate"
5693
  msgstr "Activer"
5694
 
5695
+ #: ../modules/mycred-module-addons.php:409
5696
  msgid "Version"
5697
  msgstr "Version"
5698
 
5699
+ #: ../modules/mycred-module-addons.php:413
5700
  msgid "By"
5701
  msgstr "Par"
5702
 
5703
+ #: ../modules/mycred-module-addons.php:417
5704
  msgid "About"
5705
  msgstr "&Agrave; propos"
5706
 
5707
+ #: ../modules/mycred-module-addons.php:421
5708
  msgid "Get Pro"
5709
  msgstr "Obtenir la version Pro"
5710
 
5711
+ #: ../modules/mycred-module-buddypress.php:31
5712
  msgid "My History"
5713
  msgstr "Mon historique"
5714
 
5715
+ #: ../modules/mycred-module-buddypress.php:32
5716
  #, php-format
5717
  msgid "%s's History"
5718
  msgstr "Historique de %s"
5719
 
5720
+ #: ../modules/mycred-module-buddypress.php:131
5721
  msgid "Current balance"
5722
  msgstr "Solde courant"
5723
 
5724
+ #: ../modules/mycred-module-buddypress.php:362
5725
  msgid "Go"
5726
  msgstr "Go"
5727
 
5728
+ #: ../modules/mycred-module-buddypress.php:425
5729
  msgid "Show in Profile"
5730
  msgstr "Afficher sur le profil"
5731
 
5732
+ #: ../modules/mycred-module-buddypress.php:442
5733
  #, php-format
5734
  msgid "%singular% Balance"
5735
  msgstr "Solde de %singular%"
5736
 
5737
+ #: ../modules/mycred-module-buddypress.php:459
5738
  #, php-format
5739
  msgid "Members and visitors can other members %_singular% balance."
5740
  msgstr ""
5741
  "Les membres et les visiteurs peuvent voir le solde de %_singular% des autres "
5742
  "membres."
5743
 
5744
+ #: ../modules/mycred-module-buddypress.php:469
5745
  msgid "%plural% History"
5746
  msgstr "Historique des %plural%"
5747
 
5748
+ #: ../modules/mycred-module-buddypress.php:486
5749
  msgid "Members can view each others %_plural% history."
5750
  msgstr "Les membres peuvent voir leurs historiques de %_plural% respectifs."
5751
 
5752
+ #: ../modules/mycred-module-buddypress.php:491
5753
  msgid "Menu Title"
5754
  msgstr "Titre du menu"
5755
 
5756
+ #: ../modules/mycred-module-buddypress.php:493
5757
  msgid "Title shown to me"
5758
  msgstr "Le titre que moi je peux voir"
5759
 
5760
+ #: ../modules/mycred-module-buddypress.php:498
5761
  #, php-format
5762
  msgid "Title shown to others. Use %s to show the first name."
5763
  msgstr ""
5764
  "Le titre que voient les autres utilisateurs. Utilisez %s pour afficher le "
5765
  "prénom."
5766
 
5767
+ #: ../modules/mycred-module-buddypress.php:503
5768
  msgid "Menu Position"
5769
  msgstr "Position du menu"
5770
 
5771
+ #: ../modules/mycred-module-buddypress.php:505
5772
  msgid "Current menu positions:"
5773
  msgstr "Positions actuelles du menu:"
5774
 
5775
+ #: ../modules/mycred-module-buddypress.php:510
5776
  msgid "History URL slug"
5777
  msgstr "Chemin vers l'historique"
5778
 
5779
+ #: ../modules/mycred-module-buddypress.php:512
5780
  msgid "Do not use empty spaces!"
5781
  msgstr "Sans espaces !"
5782
 
5783
+ #: ../modules/mycred-module-buddypress.php:517
5784
  msgid "Number of history entries to show"
5785
  msgstr "Nombre d'historiques à afficher"
5786
 
5787
+ #: ../modules/mycred-module-hooks.php:107
5788
  #, php-format
5789
  msgid "%plural% for registrations"
5790
  msgstr "%plural% pour une inscription"
5791
 
5792
+ #: ../modules/mycred-module-hooks.php:108
5793
  #, php-format
5794
  msgid "Award %_plural% for users joining your website."
5795
  msgstr "Attribution de %_plural% pour les nouveaux inscrits"
5796
 
5797
+ #: ../modules/mycred-module-hooks.php:114
5798
  #, php-format
5799
  msgid "%plural% for daily visits"
5800
  msgstr "%plural% pour une visite quotidienne."
5801
 
5802
+ #: ../modules/mycred-module-hooks.php:115
5803
  #, php-format
5804
  msgid "Award %_plural% for users visiting your website on a daily basis."
5805
  msgstr ""
5806
  "Attribution de %_plural% pour vos utilisateurs visitant votre site une fois "
5807
  "par jour."
5808
 
5809
+ #: ../modules/mycred-module-hooks.php:121
5810
  #, php-format
5811
  msgid "%plural% for viewing content"
5812
  msgstr "%plural% pour voir un contenu"
5813
 
5814
+ #: ../modules/mycred-module-hooks.php:122
5815
  msgid ""
5816
  "Award %_plural% to your users for viewing posts and / or %plural% to your "
5817
  "authors for members viewing their content."
5827
  "affichant leur contenu\n"
5828
  "."
5829
 
5830
+ #: ../modules/mycred-module-hooks.php:128
5831
  #, php-format
5832
  msgid "%plural% for logins"
5833
  msgstr "%plural% pour une connexion"
5834
 
5835
+ #: ../modules/mycred-module-hooks.php:129
5836
  #, php-format
5837
  msgid ""
5838
  "Award %_plural% for logging in to your website. You can also set an optional "
5839
  "limit."
5840
  msgstr "Attribution de %_plural% pour chaque connexion d'un membre à votre site."
5841
 
5842
+ #: ../modules/mycred-module-hooks.php:135
5843
  #, php-format
5844
  msgid "%plural% for publishing content"
5845
  msgstr "%plural% pour publication de contenu"
5846
 
5847
+ #: ../modules/mycred-module-hooks.php:136
5848
  #, php-format
5849
  msgid ""
5850
  "Award %_plural% for publishing content on your website. If your custom post "
5854
  "Custom Post Type sur votre site. Ils doivent être réglés sur \"public\" pour "
5855
  "apparaître ci-dessous."
5856
 
5857
+ #: ../modules/mycred-module-hooks.php:142
5858
  #, php-format
5859
  msgid "%plural% for comments"
5860
  msgstr "%plural% pour commentaire"
5861
 
5862
+ #: ../modules/mycred-module-hooks.php:142
5863
  #, php-format
5864
  msgid "%plural% for Disqus comments"
5865
  msgstr "%plural% pour des commentaires avec Disqus"
5866
 
5867
+ #: ../modules/mycred-module-hooks.php:143
5868
  #, php-format
5869
  msgid "Award %_plural% for making comments."
5870
  msgstr "Attribution de %_plural% pour les commentaires"
5871
 
5872
+ #: ../modules/mycred-module-hooks.php:149
5873
  #, php-format
5874
  msgid "%plural% for clicking on links"
5875
  msgstr "%plural% pour click sur un lien"
5876
 
5877
+ #: ../modules/mycred-module-hooks.php:150
5878
  msgid ""
5879
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5880
  "shortcode."
5882
  "Atribuer des %_plural% aux utilisateurs cliquant sur des liens générés avec "
5883
  "le shortcode [mycred_link]"
5884
 
5885
+ #: ../modules/mycred-module-hooks.php:156
5886
  #, php-format
5887
  msgid "%plural% for viewing Videos"
5888
  msgstr "%plural% pour visionnage d'une vidéo"
5889
 
5890
+ #: ../modules/mycred-module-hooks.php:157
5891
  msgid ""
5892
  "Award %_plural% to users who watches videos embedded using the "
5893
  "[mycred_video] shortcode."
5895
  "Atribuer des %_plural% aux utilisateurs visionnant des vidéos avec le "
5896
  "shortcode [mycred_video] "
5897
 
5898
+ #: ../modules/mycred-module-hooks.php:163
5899
  #, php-format
5900
  msgid "%plural% for referrals"
5901
  msgstr "%plural% pour référants"
5902
 
5903
+ #: ../modules/mycred-module-hooks.php:164
5904
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5905
  msgstr ""
5906
  "Attribuez des %_plural% aux utilisateurs qui font référence à l'inscription "
5907
  "des visiteurs ou à celles des nouveaux membres."
5908
 
5909
+ #: ../modules/mycred-module-hooks.php:199
5910
  #, php-format
5911
  msgid "%s Hooks"
5912
  msgstr "Plugins %s"
5913
 
5914
+ #: ../modules/mycred-module-hooks.php:203
5915
  msgid ""
5916
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
5917
  "depending on their actions around your website."
5921
  "(en haut à droite sous la barre d'outils WP) pour une liste complète des "
5922
  "mots-clés disponibles pour l'affichage des textes."
5923
 
5924
+ #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
5925
+ #: ./modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:714 ..
5926
+ #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:1157 ..
5927
+ #: modules/mycred-module-hooks.php:1174 ../modules/mycred-module-hooks.php:1223 .
5928
+ #: ./modules/mycred-module-hooks.php:1675 ../modules/mycred-module-hooks.php:1692
5929
+ #: ../modules/mycred-module-hooks.php:1709 ../modules/mycred-module-hooks.php:
5930
+ #: 3000 ../modules/mycred-module-hooks.php:3020 ../plugins/mycred-hook-
5931
  #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5932
+ #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:415 ..
5933
+ #: plugins/mycred-hook-bbPress.php:428 ../plugins/mycred-hook-bbPress.php:445 ..
5934
+ #: plugins/mycred-hook-bbPress.php:463 ../plugins/mycred-hook-bbPress.php:480 ..
5935
+ #: plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:519 ..
5936
  #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5937
  #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5938
  #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
5964
  msgid "Log template"
5965
  msgstr "Texte à afficher"
5966
 
5967
+ #: ../modules/mycred-module-hooks.php:666
5968
  #, php-format
5969
  msgid "%plural% for viewing Posts"
5970
  msgstr "%plural% pour visualiser les articles"
5971
 
5972
+ #: ../modules/mycred-module-hooks.php:669 ../modules/mycred-module-hooks.php:686 .
5973
+ #: ./modules/mycred-module-hooks.php:700 ../modules/mycred-module-hooks.php:717 ..
5974
+ #: modules/mycred-module-hooks.php:777 ../modules/mycred-module-hooks.php:794
5975
  msgid "Member"
5976
  msgstr "Membre"
5977
 
5978
+ #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:692 .
5979
+ #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:723 ..
5980
+ #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:800 ..
5981
+ #: modules/mycred-module-hooks.php:1670 ../modules/mycred-module-hooks.php:1687 .
5982
+ #: ./modules/mycred-module-hooks.php:1704
5983
  msgid "Content Author"
5984
  msgstr "Auteur du contenu"
5985
 
5986
+ #: ../modules/mycred-module-hooks.php:697
5987
  #, php-format
5988
  msgid "%plural% for viewing Pages"
5989
  msgstr "%plural% pour visualiser les Pages"
5990
 
5991
+ #: ../modules/mycred-module-hooks.php:774
5992
  #, php-format
5993
  msgid "%plural% for viewing %s"
5994
  msgstr "%plural% pour visualiser %s"
5995
 
5996
+ #: ../modules/mycred-module-hooks.php:1147
5997
  #, php-format
5998
  msgid "%plural% for Posts"
5999
  msgstr "%plural% pour un article"
6000
 
6001
+ #: ../modules/mycred-module-hooks.php:1164
6002
  #, php-format
6003
  msgid "%plural% for Pages"
6004
  msgstr "%plural% pour une page"
6005
 
6006
+ #: ../modules/mycred-module-hooks.php:1213
6007
  #, php-format
6008
  msgid "%plural% for %s"
6009
  msgstr "%plural% pour %s"
6010
 
6011
+ #: ../modules/mycred-module-hooks.php:1660
6012
  msgid ""
6013
  "%plural% are only awarded when your website has been synced with the Disqus "
6014
  "server!"
6016
  "Les %plural% seront uniquement attribués une fois que votre site sera "
6017
  "synchronisé avec les serveurs Disqus."
6018
 
6019
+ #: ../modules/mycred-module-hooks.php:1666 ../modules/mycred-module-hooks.php:
6020
+ #: 1683 ../modules/mycred-module-hooks.php:1700
6021
  msgid "Comment Author"
6022
  msgstr "Auteur du commentaire"
6023
 
6024
+ #: ../modules/mycred-module-hooks.php:1680
6025
  msgid "Comment Marked SPAM"
6026
  msgstr "Commentaire signalé comme SPAM"
6027
 
6028
+ #: ../modules/mycred-module-hooks.php:1697
6029
  msgid "Trashed / Unapproved Comments"
6030
  msgstr "Commentaire supprimé/refusé"
6031
 
6032
+ #: ../modules/mycred-module-hooks.php:1717
6033
  msgid "Limit per post"
6034
  msgstr "Limite par article"
6035
 
6036
+ #: ../modules/mycred-module-hooks.php:1719
6037
  msgid ""
6038
  "The number of comments per post that grants %_plural% to the comment author. "
6039
  "Use zero for unlimited."
6041
  "Le nombre de commentaires par article qui donne droit à des %_plural% pour "
6042
  "l'auteur du commentaire. Indiquez zéro si illimité."
6043
 
6044
+ #: ../modules/mycred-module-hooks.php:1723
6045
  msgid "Limit per day"
6046
  msgstr "Limite par jour"
6047
 
6048
+ #: ../modules/mycred-module-hooks.php:1725
6049
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
6050
  msgstr ""
6051
  "Le nombre de commentaires par jour qui donne droit à des %_plural%. Indiquez "
6052
  "zéro si illimité."
6053
 
6054
+ #: ../modules/mycred-module-hooks.php:1730
6055
  msgid ""
6056
  "%plural% is to be awarded even when comment authors reply to their own "
6057
  "comment."
6059
  "Attribuer des %_plural% &agrave; l&#39;auteur d&#39;un commentaire r&eacute;"
6060
  "pondant &agrave; son propre commentaire."
6061
 
6062
+ #: ../modules/mycred-module-hooks.php:1810
6063
  msgid "Once for each unique URL"
6064
  msgstr "Une fois pour chaque URL unique"
6065
 
6066
+ #: ../modules/mycred-module-hooks.php:1811
6067
  msgid "Once for each unique link id"
6068
  msgstr "Une fois pour chaque ID unique de lien"
6069
 
6070
+ #: ../modules/mycred-module-hooks.php:2022
6071
  msgid ""
6072
  "The default amount to award for clicking on links. You can override this in "
6073
  "the shortcode."
6075
  "Le nombre par défaut à attribuer à chaque click sur un lien. Peut être "
6076
  "modifié avec le shortcode."
6077
 
6078
+ #: ../modules/mycred-module-hooks.php:2029
6079
  #, php-format
6080
  msgid "Custom tags: %url%, %title% or %id%."
6081
  msgstr "Mots clés pouvant être utilisé ici: %url%, %title% ou %id%."
6082
 
6083
+ #: ../modules/mycred-module-hooks.php:2042 ../modules/mycred-module-hooks.php:3096
6084
  msgid "Note!"
6085
  msgstr "Information&nbsp;!"
6086
 
6087
+ #: ../modules/mycred-module-hooks.php:2042
6088
  msgid ""
6089
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
6090
  "generate one automatically based on the value set under href. If you are "
6096
  "Si vous utilisez cette fonctionnalité pour \"partager\" du contenu, nous vous "
6097
  "recommandons fortement de limiter par ID."
6098
 
6099
+ #: ../modules/mycred-module-hooks.php:2044 ../modules/mycred-module-hooks.php:2428
6100
  msgid "Available Shortcode"
6101
  msgstr "Shortcode disponible"
6102
 
6103
+ #: ../modules/mycred-module-hooks.php:2392
6104
  msgid "Amount to award for viewing videos."
6105
  msgstr "Montant à attribuer pour le visionnage d'une vidéo."
6106
 
6107
+ #: ../modules/mycred-module-hooks.php:2402
6108
  msgid "Award Logic"
6109
  msgstr "Attributs de classement"
6110
 
6111
+ #: ../modules/mycred-module-hooks.php:2404
6112
  #, php-format
6113
  msgid "Select when %_plural% should be awarded or deducted."
6114
  msgstr "Sélectionnez à quel moment des %_plural% doivent être attribués"
6115
 
6116
+ #: ../modules/mycred-module-hooks.php:2405
6117
  msgid "Play - As soon as video starts playing."
6118
  msgstr "Play - aussitôt que la vidéo démarre"
6119
 
6120
+ #: ../modules/mycred-module-hooks.php:2406
6121
  msgid "Full - First when the entire video has played."
6122
  msgstr "Complet - seulement quand la vidéo a été lue jusqu'au bout"
6123
 
6124
+ #: ../modules/mycred-module-hooks.php:2407
6125
  msgid "Interval - For each x number of seconds watched."
6126
  msgstr "Intervalle - par tranche de X nombre de secondes de visionnage"
6127
 
6128
+ #: ../modules/mycred-module-hooks.php:2412
6129
  msgid "Number of seconds"
6130
  msgstr "Nombre de secondes"
6131
 
6132
+ #: ../modules/mycred-module-hooks.php:2419
6133
  msgid "Leniency"
6134
  msgstr "Tolérance"
6135
 
6136
+ #: ../modules/mycred-module-hooks.php:2421
6137
  msgid ""
6138
  "The maximum percentage a users view of a movie can differ from the actual "
6139
  "length."
6141
  "Le pourcentage maximum qu'un utilisateur peut visionner peut différer de la "
6142
  "longueur actuelle d'une vidéo."
6143
 
6144
+ #: ../modules/mycred-module-hooks.php:2424
6145
  msgid ""
6146
  "Do not set this value to zero! A lot of thing can happen while a user "
6147
  "watches a movie and sometimes a few seconds can drop of the counter due to "
6151
  "produire pendant un visonnage. Quelques secondes peuvent parfois bloquer un "
6152
  "compteur pendant la mise en tampon ou produire des erreurs de différé."
6153
 
6154
+ #: ../modules/mycred-module-hooks.php:2499
6155
  msgid "Affiliate Program"
6156
  msgstr "Programme d'affiliation"
6157
 
6158
+ #: ../modules/mycred-module-hooks.php:2508
6159
  msgid "Per Day"
6160
  msgstr "Par jour"
6161
 
6162
+ #: ../modules/mycred-module-hooks.php:2667
6163
  msgid "Link"
6164
  msgstr "Lien"
6165
 
6166
+ #: ../modules/mycred-module-hooks.php:2671
6167
  msgid "Visitors Referred"
6168
  msgstr "Visiteurs renvoyés"
6169
 
6170
+ #: ../modules/mycred-module-hooks.php:2675
6171
  msgid "Signups Referred"
6172
  msgstr "Inscriptions renvoyés"
6173
 
6174
+ #: ../modules/mycred-module-hooks.php:2994 ../plugins/mycred-hook-affiliatewp.php:
6175
  #: 231
6176
  msgid "Referring Visitors"
6177
  msgstr "Visiteurs réferants"
6178
 
6179
+ #: ../modules/mycred-module-hooks.php:3013 ../modules/mycred-module-hooks.php:3033
 
 
 
 
 
 
6180
  msgid "Referring Signups"
6181
  msgstr "Inscriptions référentes"
6182
 
6183
+ #: ../modules/mycred-module-hooks.php:3017
6184
  msgid "Visitors who have Cookies disabled will not award %_plural%."
6185
  msgstr ""
6186
  "Les visiteurs ayant désactivés les cookies ne pourront pas attribuer de "
6187
  "%_plural%."
6188
 
6189
+ #: ../modules/mycred-module-hooks.php:3035
6190
  msgid "Registrations are disabled."
6191
  msgstr "Les inscriptions sont désactivées."
6192
 
6193
+ #: ../modules/mycred-module-hooks.php:3043
6194
  msgid "Referral Links"
6195
  msgstr "Liens référents"
6196
 
6197
+ #: ../modules/mycred-module-hooks.php:3047
6198
  msgid "Assign numeric referral IDs to each user."
6199
  msgstr "Assigner un ID de référence numérique à chaque utilisateur."
6200
 
6201
+ #: ../modules/mycred-module-hooks.php:3048 ../modules/mycred-module-hooks.php:3054
6202
  msgid "Example"
6203
  msgstr "Exemple"
6204
 
6205
+ #: ../modules/mycred-module-hooks.php:3053
6206
  msgid "Assign usernames as IDs for each user."
6207
  msgstr "Assigner son nom d'utilisateur comme ID à chaque utilisateur."
6208
 
6209
+ #: ../modules/mycred-module-hooks.php:3057
6210
  msgid "IP Limit"
6211
  msgstr "Limite IP"
6212
 
6213
+ #: ../modules/mycred-module-hooks.php:3061
6214
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
6215
  msgstr ""
6216
  "Le nombre de fois que chaque adresse IP se voit attribuer des %_plural%. "
6217
  "Indiquez 0 pour un nombre illimité."
6218
 
6219
+ #: ../modules/mycred-module-hooks.php:3065 ../modules/mycred-module-hooks.php:3100
6220
  msgid "BuddyPress Profile"
6221
  msgstr "Profil BuddyPress"
6222
 
6223
+ #: ../modules/mycred-module-hooks.php:3068
6224
  msgid "Insert Link in users Profile"
6225
  msgstr "Insérer un lien sur le Profil des utilisateurs"
6226
 
6227
+ #: ../modules/mycred-module-hooks.php:3069
6228
  msgid ""
6229
  "Option to inser the referral link in users profiles. Links will only be "
6230
  "visible to users viewing their own profiles or administrators."
6233
  "visible que par l'utilisateur sur son propre profil et pour les "
6234
  "administrateurs du site."
6235
 
6236
+ #: ../modules/mycred-module-hooks.php:3075
6237
  msgid "Leave empty to hide."
6238
  msgstr "Laissez vide pour masquer"
6239
 
6240
+ #: ../modules/mycred-module-hooks.php:3078
6241
  msgid "Description"
6242
  msgstr "Description"
6243
 
6244
+ #: ../modules/mycred-module-hooks.php:3079
6245
  msgid "Optional description to insert under the link."
6246
  msgstr "Description facultative qui apparaîtra sous le lien"
6247
 
6248
+ #: ../modules/mycred-module-hooks.php:3093
6249
  msgid "Profile Positioning"
6250
  msgstr "Position sur le Profil"
6251
 
6252
+ #: ../modules/mycred-module-hooks.php:3095
6253
  msgid ""
6254
  "You can move around the referral link on your users profile by changing the "
6255
  "position. Increase to move up, decrease to move down."
6257
  "Vous pouvez déplacer le lien de référence sur votre profil en modifiant sa "
6258
  "position vers le haut ou le bas."
6259
 
6260
+ #: ../modules/mycred-module-hooks.php:3096
6261
  msgid "You can not move the referral link above the users \"Base\" profile details!"
6262
  msgstr ""
6263
  "Vous ne pouvez pas déplacer le lien de référence au-dessus du champ de "
6264
  "profil \"Base\" "
6265
 
6266
+ #: ../modules/mycred-module-hooks.php:3102
6267
  msgid "Requires BuddyPress Extended Profiles to be enabled."
6268
  msgstr "Nécessite l'activation du composant Profils Etendus de BuddyPress"
6269
 
6270
+ #: ../modules/mycred-module-log.php:207 ../modules/mycred-module-log.php:230 ..
6271
+ #: modules/mycred-module-settings.php:66 ../modules/mycred-module-settings.php:109
6272
  msgid "Access denied for this action"
6273
  msgstr "Accés refusé pour cette action"
6274
 
6275
+ #: ../modules/mycred-module-log.php:214
6276
  msgid "Row Deleted"
6277
  msgstr "Ligne supprimée"
6278
 
6279
+ #: ../modules/mycred-module-log.php:243
6280
  msgid "Log entry not found"
6281
  msgstr "Entrée introuvable"
6282
 
6283
+ #: ../modules/mycred-module-log.php:256
6284
  msgid "Entry Updated"
6285
  msgstr "Entrée mise à jour"
6286
 
6287
+ #: ../modules/mycred-module-log.php:316 ../modules/mycred-module-settings.php:621
6288
  msgid "Entries"
6289
  msgstr "Entrées"
6290
 
6291
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
6292
+ #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
6293
  msgid "Export"
6294
  msgstr "Exporter"
6295
 
6296
+ #: ../modules/mycred-module-log.php:340
6297
  msgid "Search results for"
6298
  msgstr "Résultat de la recherche pour"
6299
 
6300
+ #: ../modules/mycred-module-log.php:411
6301
  #, php-format
6302
  msgid "%s Log"
6303
  msgstr "Journal %s"
6304
 
6305
+ #: ../modules/mycred-module-log.php:422
6306
  msgid ""
6307
  "Warning. The required Mcrypt PHP Library is not installed on this server! "
6308
  "Certain hooks and shortcodes will not work correctly!"
6309
  msgstr ""
6310
 
6311
+ #: ../modules/mycred-module-log.php:565
6312
  msgid "Edit"
6313
  msgstr "Modifier"
6314
 
6315
+ #: ../modules/mycred-module-log.php:612
6316
  msgid "Time"
6317
  msgstr "Durée"
6318
 
6319
+ #: ../modules/mycred-module-log.php:616
6320
  msgid "Current Log Entry"
6321
  msgstr "Entrée actuelle"
6322
 
6323
+ #: ../modules/mycred-module-log.php:618
6324
  msgid "The current saved log entry"
6325
  msgstr "L'entrée sauvegardée actuelle"
6326
 
6327
+ #: ../modules/mycred-module-log.php:621
6328
  msgid "Adjust Log Entry"
6329
  msgstr "Ajuster le journal"
6330
 
6331
+ #: ../modules/mycred-module-log.php:623
6332
  msgid "The new log entry"
6333
  msgstr "La nouvelle entrée de journal"
6334
 
6335
+ #: ../modules/mycred-module-log.php:626
6336
  msgid "Update Log Entry"
6337
  msgstr "Mettre à jour le journal"
6338
 
6339
+ #: ../modules/mycred-module-log.php:697
6340
  #, php-format
6341
  msgid "My %s History"
6342
  msgstr "Mon historique %s"
6343
 
6344
+ #: ../modules/mycred-module-settings.php:70 ../modules/mycred-module-settings.php:
6345
+ #: 113 ../modules/mycred-module-settings.php:166
6346
  msgid "Missing point type"
6347
  msgstr "Type de point manquant"
6348
 
6349
+ #: ../modules/mycred-module-settings.php:144
6350
  msgid "Accounts successfully reset"
6351
  msgstr "Remise à zéro du compte réussie"
6352
 
6353
+ #: ../modules/mycred-module-settings.php:196
6354
  msgid "No users found to export"
6355
  msgstr "Aucun utilisateur à exporter"
6356
 
6357
+ #: ../modules/mycred-module-settings.php:246
6358
  msgid "Invalid decimal value."
6359
  msgstr ""
6360
 
6361
+ #: ../modules/mycred-module-settings.php:293
6362
  msgid "Log Updated"
6363
  msgstr ""
6364
 
6365
+ #: ../modules/mycred-module-settings.php:423
6366
  msgid "Update Database"
6367
  msgstr ""
6368
 
6369
+ #: ../modules/mycred-module-settings.php:424
6370
  msgid "Zero for no decimals or maximum 20."
6371
  msgstr ""
6372
 
6373
+ #: ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.
6374
+ #: php:528
6375
  msgid "Tip"
6376
  msgstr "Astuce"
6377
 
6378
+ #: ../modules/mycred-module-settings.php:427
6379
  msgid ""
6380
  "As this is your main point type, the value you select here will be the "
6381
  "largest number of decimals your installation will support."
6382
  msgstr ""
6383
 
6384
+ #: ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.
6385
+ #: php:453
6386
  msgid "No decimals"
6387
  msgstr ""
6388
 
6389
+ #: ../modules/mycred-module-settings.php:465
6390
  #, php-format
6391
  msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
6392
  msgstr ""
6393
 
6394
+ #: ../modules/mycred-module-settings.php:503
6395
  #, php-format
6396
  msgid "%s Settings"
6397
  msgstr "Configuration de %s"
6398
 
6399
+ #: ../modules/mycred-module-settings.php:507
6400
  msgid "Adjust your core or add-on settings."
6401
  msgstr "Ajustez votre base ou vos réglages add-on"
6402
 
6403
+ #: ../modules/mycred-module-settings.php:513
6404
  msgid "Core Settings"
6405
  msgstr "Configuration du Core"
6406
 
6407
+ #: ../modules/mycred-module-settings.php:515
6408
  msgid "Name"
6409
  msgstr "Nom"
6410
 
6411
+ #: ../modules/mycred-module-settings.php:520
6412
  #, php-format
6413
  msgid "Accessible though the %singular% template tag."
6414
  msgstr "Accessible avec le mot-cl&eacute;s %singular%"
6415
 
6416
+ #: ../modules/mycred-module-settings.php:525
6417
  msgid "Accessible though the %plural% template tag."
6418
  msgstr "Accessible avec le mot-cl&eacute; %plural%"
6419
 
6420
+ #: ../modules/mycred-module-settings.php:528
6421
  msgid ""
6422
  "Adding an underscore at the beginning of template tag for names will return "
6423
  "them in lowercase. i.e. %_singular%"
6425
  "En ajoutant un tiret bas au début du mot-clé du nom, celui-ci sera retourné "
6426
  "en minuscule. Par ex. %_singular%"
6427
 
6428
+ #: ../modules/mycred-module-settings.php:552
6429
  msgid "Separator"
6430
  msgstr "Séparateur"
6431
 
6432
+ #: ../modules/mycred-module-settings.php:559
6433
  msgid "Edit Settings"
6434
  msgstr "Modifier les réglages"
6435
 
6436
+ #: ../modules/mycred-module-settings.php:561 ../modules/mycred-module-settings.
6437
+ #: php:566
6438
  msgid "Capability to check for."
6439
  msgstr "Capacité à observer."
6440
 
6441
+ #: ../modules/mycred-module-settings.php:564
6442
  msgid "Edit Users %plural%"
6443
  msgstr "Modifier les %plural% de l&#39;utilisateur"
6444
 
6445
+ #: ../modules/mycred-module-settings.php:588
6446
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
6447
  msgstr ""
6448
  "Liste des identifiants utilisateurs à exclure. ID séparés par une virgule, "
6449
  "espaces interdits."
6450
 
6451
+ #: ../modules/mycred-module-settings.php:612
6452
  msgid "Management"
6453
  msgstr "Gestion des données"
6454
 
6455
+ #: ../modules/mycred-module-settings.php:614
6456
  msgid "The Log"
6457
  msgstr "Rapport d'activités"
6458
 
6459
+ #: ../modules/mycred-module-settings.php:617
6460
  msgid "Table Name"
6461
  msgstr "Nom de la table"
6462
 
6463
+ #: ../modules/mycred-module-settings.php:626
6464
  msgid "Empty Log"
6465
  msgstr "Journal vide"
6466
 
6467
+ #: ../modules/mycred-module-settings.php:641
6468
  msgid "Set all to zero"
6469
  msgstr "Tout remettre à zéro"
6470
 
6471
+ #: ../modules/mycred-module-settings.php:641
6472
  msgid "CSV Export"
6473
  msgstr "Exportation CSV"
6474
 
6475
+ #: ../modules/mycred-module-settings.php:667
6476
  msgid "Default"
6477
  msgstr "Défaut"
6478
 
6479
+ #: ../modules/mycred-module-settings.php:670 ../modules/mycred-module-settings.
6480
+ #: php:691 ../modules/mycred-module-settings.php:715
6481
  msgid "Meta Key"
6482
  msgstr "Mot-clé"
6483
 
6484
+ #: ../modules/mycred-module-settings.php:712
6485
  msgid "Add New Type"
6486
  msgstr "Ajouter un nouveau type"
6487
 
6488
+ #: ../modules/mycred-module-settings.php:717
6489
  msgid "A unique ID for this type."
6490
  msgstr "Un identifiant unique pour ce type."
6491
 
6492
+ #: ../modules/mycred-module-settings.php:722
6493
  msgid "Menu and page title."
6494
  msgstr "Titre de menu et de page"
6495
 
6496
+ #: ../modules/mycred-module-settings.php:725
6497
  msgid ""
6498
  "The meta key must be lowercase and only contain letters or underscores. All "
6499
  "other characters will be deleted!"
6500
  msgstr ""
6501
 
6502
+ #: ../modules/mycred-module-settings.php:748
6503
  msgid "Identify users by"
6504
  msgstr "Identifer les utilisateurs par"
6505
 
6506
+ #: ../modules/mycred-module-settings.php:754
6507
+ msgid "User ID"
6508
+ msgstr "ID utilisateur"
6509
+
6510
+ #: ../modules/mycred-module-settings.php:755
6511
  msgid "User Email"
6512
  msgstr "Email de l'utilisateur"
6513
 
6514
+ #: ../modules/mycred-module-settings.php:756
6515
  msgid "User Login"
6516
  msgstr "ID de l'utilisateur"
6517
 
6518
+ #: ../modules/mycred-module-settings.php:764
6519
  msgid ""
6520
  "Use ID if you intend to use this export as a backup of your current site "
6521
  "while Email is recommended if you want to export to a different site."
6524
  "sauvegarde du site actuel. Nous vous recommandons d'utiliser l'adresse mail "
6525
  "si vous comptez exploiter les données sur un autre site."
6526
 
6527
+ #: ../modules/mycred-module-settings.php:767
6528
  msgid "Import Log Entry"
6529
  msgstr "Import du journal d'entrées"
6530
 
6531
+ #: ../modules/mycred-module-settings.php:769
6532
  #, php-format
6533
  msgid ""
6534
  "Optional log entry to use if you intend to import this file in a different "
6631
  msgid "Awards %_plural% for bbPress actions."
6632
  msgstr "Attribution de %_plural% pour des actions relatives à bbPress"
6633
 
6634
+ #: ../plugins/mycred-hook-bbPress.php:404
6635
  #, php-format
6636
  msgid "%plural% for New Forum"
6637
  msgstr "%plural% pour un nouveau forum"
6638
 
6639
+ #: ../plugins/mycred-hook-bbPress.php:421
6640
  #, php-format
6641
  msgid "%plural% for Forum Deletion"
6642
  msgstr "%plural% pour suppression sur le forum"
6643
 
6644
+ #: ../plugins/mycred-hook-bbPress.php:434 ../plugins/mycred-hook-simplepress.php:
6645
  #: 278
6646
  #, php-format
6647
  msgid "%plural% for New Topic"
6648
  msgstr "%plural% pour un nouveau sujet"
6649
 
6650
+ #: ../plugins/mycred-hook-bbPress.php:452
6651
  #, php-format
6652
  msgid "Forum authors can receive %_plural% for creating new topics."
6653
  msgstr ""
6654
  "Les auteurs de forum percoivent des %_plural% pour la création de nouveaux "
6655
  "sujets."
6656
 
6657
+ #: ../plugins/mycred-hook-bbPress.php:456 ../plugins/mycred-hook-simplepress.php:
6658
  #: 295
6659
  #, php-format
6660
  msgid "%plural% for Topic Deletion"
6661
  msgstr "%plural% pour suppression d'un message de forum"
6662
 
6663
+ #: ../plugins/mycred-hook-bbPress.php:469
6664
  #, php-format
6665
  msgid "%plural% for Favorited Topic"
6666
  msgstr "%plural% pour l&#39;ajout d&#39;un sujet de forum aux Favoris"
6667
 
6668
+ #: ../plugins/mycred-hook-bbPress.php:486
6669
  #, php-format
6670
  msgid "%plural% for New Reply"
6671
  msgstr "%plural% pour une nouvelle réponse"
6672
 
6673
+ #: ../plugins/mycred-hook-bbPress.php:504
6674
  #, php-format
6675
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
6676
  msgstr "Attribuer des %_plural% à l'auteur d'un sujet répondant à son propre sujet."
6677
 
6678
+ #: ../plugins/mycred-hook-bbPress.php:508
6679
  #, php-format
6680
  msgid "Show users %_plural% balance in replies"
6681
  msgstr "Afficher le relevé de %_plural% dans les réponses des utilisateurs"
6682
 
6683
+ #: ../plugins/mycred-hook-bbPress.php:512
6684
  #, php-format
6685
  msgid "%plural% for Reply Deletion"
6686
  msgstr "%plural% pour la suppression d'un commentaire"
7036
  msgstr "Abonnements aux commentaires"
7037
 
7038
  #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
7039
+ #: php:80
7040
  msgid "Reward with %plural%"
7041
  msgstr "Récompensez-les avec %plural%"
7042
 
7086
  msgid "%plural% for Topic Post Deletion"
7087
  msgstr "%plural% pour suppression d'un sujet"
7088
 
7089
+ #: ../plugins/mycred-hook-woocommerce.php:210
7090
  msgid "WooCommerce Product Reviews"
7091
  msgstr "Produits WooCommerce revus"
7092
 
7093
+ #: ../plugins/mycred-hook-woocommerce.php:211
7094
  #, php-format
7095
  msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
7096
  msgstr ""
lang/mycred-pt_BR.mo CHANGED
Binary file
lang/mycred-pt_BR.po CHANGED
@@ -3,9 +3,10 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Feb 02 2015 11:28:39 GMT+0100 (CET)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
- "Language-Team: LANGUAGE <support@mycred.me>\n"
 
9
  "Language: Portuguese (Brazil)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
11
  "MIME-Version: 1.0\n"
@@ -42,9 +43,9 @@ msgid "Awesome People"
42
  msgstr "Pessoas incríveis"
43
 
44
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
45
- #: addon-badges.php:595 ../addons/gateway/event-booking/mycred-eventsmanager.php:
46
- #: 478 ../addons/ranks/myCRED-addon-ranks.php:421 ../addons/ranks/myCRED-addon-
47
- #: ranks.php:1514 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
48
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
49
  #: php:636
50
  msgid "Processing..."
@@ -110,15 +111,15 @@ msgid "Log entry updated"
110
  msgstr "Registro de entradas atualizado"
111
 
112
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
113
- #: notices.php:808 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
114
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
115
  msgid "Setup"
116
  msgstr "Instalação"
117
 
118
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
119
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
120
- #: network.php:151 ../modules/mycred-module-settings.php:20 ../modules/mycred-
121
- #: module-settings.php:21 ../modules/mycred-module-settings.php:22
122
  msgid "Settings"
123
  msgstr "Configurações"
124
 
@@ -130,55 +131,51 @@ msgstr ""
130
  "Certifique-se de fazer backup do seu banco de dados e arquivos antes de "
131
  "atualizar, no caso de algo der errado!"
132
 
133
- #: ../abstracts/mycred-abstract-hook.php:74
134
- msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
135
- msgstr "A função myCRED_Hook::run() deve ser cancelada em uma sub-classe."
136
-
137
  #: ../abstracts/mycred-abstract-hook.php:83
138
  msgid "This Hook has no settings"
139
  msgstr "Esse gancho não tem configurações"
140
 
141
- #: ../abstracts/mycred-abstract-hook.php:223 ../abstracts/mycred-abstract-hook.
142
- #: php:290 ../includes/mycred-functions.php:2633 ../modules/mycred-module-hooks.
143
- #: php:1649
144
  msgid "No limit"
145
  msgstr "Sem limite"
146
 
147
- #: ../abstracts/mycred-abstract-hook.php:224
148
  msgid "/ Day"
149
  msgstr ""
150
 
151
- #: ../abstracts/mycred-abstract-hook.php:225
152
  msgid "/ Week"
153
  msgstr ""
154
 
155
- #: ../abstracts/mycred-abstract-hook.php:226
156
  msgid "/ Month"
157
  msgstr ""
158
 
159
- #: ../abstracts/mycred-abstract-hook.php:227
160
  msgid "in Total"
161
  msgstr ""
162
 
163
- #: ../abstracts/mycred-abstract-hook.php:291
164
  msgid "Once every 24 hours"
165
  msgstr "A cada 24 horas"
166
 
167
- #: ../abstracts/mycred-abstract-hook.php:292
168
  msgid "Once every 7 days"
169
  msgstr "A cada 7 dias"
170
 
171
- #: ../abstracts/mycred-abstract-hook.php:293
172
  msgid "Once per day (reset at midnight)"
173
  msgstr "Uma vez por dia (reiniciar a meia-noite)"
174
 
175
- #: ../abstracts/mycred-abstract-hook.php:300 ../addons/banking/abstracts/mycred-
176
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:628 ..
177
- #: addons/buy-creds/myCRED-addon-buy-creds.php:649 ../addons/buy-
178
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
179
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
180
- #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
181
- #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:989
182
  msgid "Select"
183
  msgstr "Selecionar"
184
 
@@ -186,30 +183,30 @@ msgstr "Selecionar"
186
  msgid "myCRED_Module() Error. A Module ID is required!"
187
  msgstr "Erro no myCRED_Module(). O Module ID é necessário!"
188
 
189
- #: ../abstracts/mycred-abstract-module.php:351 ../abstracts/mycred-abstract-
190
- #: module.php:359
191
  msgid "Surprise"
192
  msgstr "Surpresa"
193
 
194
- #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:83
195
  msgid "click to close"
196
  msgstr "clique para fechar"
197
 
198
- #: ../abstracts/mycred-abstract-module.php:447 ../includes/mycred-network.php:84
199
  msgid "click to open"
200
  msgstr "clique para abrir"
201
 
202
- #: ../abstracts/mycred-abstract-module.php:480 ../addons/buy-creds/myCRED-addon-
203
- #: buy-creds.php:846
204
  msgid "Settings Updated"
205
  msgstr "Configurações atualizadas"
206
 
207
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
208
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
209
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
210
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:373 ..
211
- #: addons/badges/myCRED-addon-badges.php:379 ../addons/badges/myCRED-addon-
212
- #: badges.php:385
213
  msgid "Badges"
214
  msgstr ""
215
 
@@ -218,273 +215,277 @@ msgstr ""
218
  msgid "Badges (%d)"
219
  msgstr ""
220
 
221
- #: ../addons/badges/myCRED-addon-badges.php:256
222
  #, php-format
223
  msgid "%d Users earned this badge."
224
  msgstr ""
225
 
226
- #: ../addons/badges/myCRED-addon-badges.php:260
227
  msgid "No users has yet earned this badge."
228
  msgstr ""
229
 
230
- #: ../addons/badges/myCRED-addon-badges.php:282
 
 
 
 
231
  #, php-format
232
  msgid "%s connections where removed."
233
  msgstr ""
234
 
235
- #: ../addons/badges/myCRED-addon-badges.php:374
236
  msgid "Badge"
237
  msgstr ""
238
 
239
- #: ../addons/badges/myCRED-addon-badges.php:375 ../addons/buy-creds/myCRED-addon-
240
- #: buy-creds.php:259 ../addons/buy-creds/myCRED-addon-buy-creds.php:260 ..
241
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
242
- #: addons/ranks/myCRED-addon-ranks.php:445
243
  msgid "Add New"
244
  msgstr "Adicionar novo"
245
 
246
- #: ../addons/badges/myCRED-addon-badges.php:376
247
  msgid "Add New Badge"
248
  msgstr ""
249
 
250
- #: ../addons/badges/myCRED-addon-badges.php:377
251
  msgid "Edit Badge"
252
  msgstr ""
253
 
254
- #: ../addons/badges/myCRED-addon-badges.php:378
255
  msgid "New Badge"
256
  msgstr ""
257
 
258
- #: ../addons/badges/myCRED-addon-badges.php:380
259
  msgid "View Badge"
260
  msgstr ""
261
 
262
- #: ../addons/badges/myCRED-addon-badges.php:381
263
  msgid "Search Badge"
264
  msgstr ""
265
 
266
- #: ../addons/badges/myCRED-addon-badges.php:382
267
  msgid "No badges found"
268
  msgstr ""
269
 
270
- #: ../addons/badges/myCRED-addon-badges.php:383
271
  msgid "No badges found in Trash"
272
  msgstr ""
273
 
274
- #: ../addons/badges/myCRED-addon-badges.php:429 ../addons/badges/myCRED-addon-
275
- #: badges.php:531
276
  msgid "Badge Name"
277
  msgstr ""
278
 
279
- #: ../addons/badges/myCRED-addon-badges.php:430
280
  msgid "Badge Images"
281
  msgstr ""
282
 
283
- #: ../addons/badges/myCRED-addon-badges.php:431
284
  msgid "Requirements"
285
  msgstr ""
286
 
287
- #: ../addons/badges/myCRED-addon-badges.php:432 ../addons/ranks/myCRED-addon-
288
- #: ranks.php:1038 ../modules/mycred-module-settings.php:600
289
  msgid "Users"
290
  msgstr "Usuários"
291
 
292
- #: ../addons/badges/myCRED-addon-badges.php:471
293
  msgid "A user must have gained or lost:"
294
  msgstr ""
295
 
296
- #: ../addons/badges/myCRED-addon-badges.php:507 ../addons/badges/myCRED-addon-
297
- #: badges.php:510 ../addons/badges/myCRED-addon-badges.php:514 ..
298
- #: addons/badges/myCRED-addon-badges.php:515 ../addons/badges/myCRED-addon-
299
- #: badges.php:516
300
  msgid "Badge Updated."
301
  msgstr ""
302
 
303
- #: ../addons/badges/myCRED-addon-badges.php:512
304
  msgid "Badge Enabled"
305
  msgstr ""
306
 
307
- #: ../addons/badges/myCRED-addon-badges.php:513
308
  msgid "Badge Saved"
309
  msgstr ""
310
 
311
- #: ../addons/badges/myCRED-addon-badges.php:545
312
  msgid "Badge Setup"
313
  msgstr ""
314
 
315
- #: ../addons/badges/myCRED-addon-badges.php:572
316
  msgid "Assign Badge"
317
  msgstr ""
318
 
319
- #: ../addons/badges/myCRED-addon-badges.php:573
320
  msgid "Remove Connections"
321
  msgstr ""
322
 
323
- #: ../addons/badges/myCRED-addon-badges.php:628
324
  msgid "Time(s)"
325
  msgstr ""
326
 
327
- #: ../addons/badges/myCRED-addon-badges.php:629
328
  msgid "In total"
329
  msgstr ""
330
 
331
- #: ../addons/badges/myCRED-addon-badges.php:661 ../addons/badges/myCRED-addon-
332
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:821 ..
333
- #: addons/badges/myCRED-addon-badges.php:836
334
  msgid "Badge Image"
335
  msgstr ""
336
 
337
- #: ../addons/badges/myCRED-addon-badges.php:662 ../addons/badges/myCRED-addon-
338
- #: badges.php:662
339
  msgid "Set badge image"
340
  msgstr ""
341
 
342
- #: ../addons/badges/myCRED-addon-badges.php:672
343
  msgid "Default Image"
344
  msgstr ""
345
 
346
- #: ../addons/badges/myCRED-addon-badges.php:673 ../addons/badges/myCRED-addon-
347
- #: badges.php:731 ../addons/badges/myCRED-addon-badges.php:762 ..
348
- #: addons/badges/myCRED-addon-badges.php:821
349
  msgid "image url"
350
  msgstr ""
351
 
352
- #: ../addons/badges/myCRED-addon-badges.php:674 ../addons/badges/myCRED-addon-
353
- #: badges.php:732 ../addons/badges/myCRED-addon-badges.php:763 ..
354
- #: addons/badges/myCRED-addon-badges.php:821
355
  msgid "Add Image"
356
  msgstr ""
357
 
358
- #: ../addons/badges/myCRED-addon-badges.php:675
359
  msgid "Optional image to show when a user has not yet earned this badge."
360
  msgstr ""
361
 
362
- #: ../addons/badges/myCRED-addon-badges.php:694 ../addons/badges/myCRED-addon-
363
- #: badges.php:746
364
  #, php-format
365
  msgid "Level %d"
366
  msgstr ""
367
 
368
- #: ../addons/badges/myCRED-addon-badges.php:699 ../addons/badges/myCRED-addon-
369
- #: badges.php:751 ../addons/badges/myCRED-addon-badges.php:821
370
  msgid "for"
371
  msgstr ""
372
 
373
- #: ../addons/badges/myCRED-addon-badges.php:730
374
  msgid "Main Image"
375
  msgstr ""
376
 
377
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
378
- #: badges.php:821
379
  msgid "Leave empty if you do not want to assign a custom image for this level."
380
  msgstr ""
381
 
382
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
383
- #: badges.php:821
384
  msgid "Remove this level"
385
  msgstr ""
386
 
387
- #: ../addons/badges/myCRED-addon-badges.php:778
388
  msgid "Add Level"
389
  msgstr ""
390
 
391
- #: ../addons/badges/myCRED-addon-badges.php:821 ../addons/badges/myCRED-addon-
392
- #: badges.php:1141
393
  msgid "Level"
394
  msgstr ""
395
 
396
- #: ../addons/badges/myCRED-addon-badges.php:838
397
  msgid "Use as Badge"
398
  msgstr ""
399
 
400
- #: ../addons/badges/myCRED-addon-badges.php:960 ../addons/badges/myCRED-addon-
401
- #: badges.php:991 ../addons/gateway/carts/mycred-woocommerce.php:153 ..
402
- #: modules/mycred-module-buddypress.php:384
403
  msgid "Do not show"
404
  msgstr "Não exibir"
405
 
406
- #: ../addons/badges/myCRED-addon-badges.php:961 ../modules/mycred-module-
407
- #: buddypress.php:385
408
  msgid "Include in Profile Header"
409
  msgstr ""
410
 
411
- #: ../addons/badges/myCRED-addon-badges.php:962 ../addons/ranks/myCRED-addon-
412
- #: ranks.php:1396 ../modules/mycred-module-buddypress.php:386
413
  msgid "Include under the \"Profile\" tab"
414
  msgstr "Incluir abaixo da aba \"Profile\""
415
 
416
- #: ../addons/badges/myCRED-addon-badges.php:963 ../modules/mycred-module-
417
- #: buddypress.php:387
418
  msgid "Include under the \"Profile\" tab and Profile Header"
419
  msgstr ""
420
 
421
- #: ../addons/badges/myCRED-addon-badges.php:976 ../addons/badges/myCRED-addon-
422
- #: badges.php:1007
423
  msgid "Show all badges, including badges users have not yet earned."
424
  msgstr ""
425
 
426
- #: ../addons/badges/myCRED-addon-badges.php:992 ../addons/ranks/myCRED-addon-
427
- #: ranks.php:1442
428
  msgid "Include in Profile"
429
  msgstr ""
430
 
431
- #: ../addons/badges/myCRED-addon-badges.php:993
432
  msgid "Include in Forum Replies"
433
  msgstr ""
434
 
435
- #: ../addons/badges/myCRED-addon-badges.php:994
436
  msgid "Include in Profile and Forum Replies"
437
  msgstr ""
438
 
439
- #: ../addons/badges/myCRED-addon-badges.php:1098
440
  msgid "User Badges"
441
  msgstr ""
442
 
443
- #: ../addons/badges/myCRED-addon-badges.php:1103
444
  msgid ""
445
  "Here you can view the badges this user has earned and if needed, manually "
446
  "give or take away a badge from a user."
447
  msgstr ""
448
 
449
- #: ../addons/badges/myCRED-addon-badges.php:1112
450
  msgid "Not earned"
451
  msgstr ""
452
 
453
- #: ../addons/badges/myCRED-addon-badges.php:1118 ../addons/badges/myCRED-addon-
454
- #: badges.php:1155
455
  msgid "Earned"
456
  msgstr ""
457
 
458
- #: ../addons/badges/myCRED-addon-badges.php:1130
459
  msgid "No image"
460
  msgstr ""
461
 
462
- #: ../addons/badges/myCRED-addon-badges.php:1137
463
  msgid "Select a level"
464
  msgstr ""
465
 
466
- #: ../addons/badges/myCRED-addon-badges.php:1152 ../addons/email-notices/myCRED-
467
- #: addon-email-notices.php:807
468
  msgid "Status"
469
  msgstr "Status"
470
 
471
- #: ../addons/badges/myCRED-addon-badges.php:1169 ../addons/email-notices/myCRED-
472
- #: addon-email-notices.php:1290
473
  msgid "Save Changes"
474
  msgstr "Salvar alterações"
475
 
476
- #: ../addons/badges/includes/mycred-badge-functions.php:65
477
  #, php-format
478
  msgid "Level %s"
479
  msgstr ""
480
 
481
- #: ../addons/badges/includes/mycred-badge-functions.php:68
482
  #, php-format
483
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
484
  msgid "%s for %s %s - %s"
485
  msgstr ""
486
 
487
- #: ../addons/badges/includes/mycred-badge-functions.php:68 ..
488
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
489
  #: coupons.php:469
490
  #, php-format
@@ -493,7 +494,7 @@ msgid_plural "%d times"
493
  msgstr[0] ""
494
  msgstr[1] ""
495
 
496
- #: ../addons/badges/includes/mycred-badge-functions.php:70
497
  #, php-format
498
  msgctxt "\"x points\" for \"reference\" in total"
499
  msgid "%s for %s in total"
@@ -535,11 +536,11 @@ msgid "Setup mass %_singular% payouts for your users."
535
  msgstr ""
536
 
537
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
538
- #: addon-buy-creds.php:836 ../addons/buy-creds/myCRED-addon-buy-creds.php:932 ..
539
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
540
- #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:292 ..
541
- #: modules/mycred-module-hooks.php:171 ../modules/mycred-module-log.php:326 ..
542
- #: modules/mycred-module-log.php:597 ../modules/mycred-module-settings.php:457
543
  msgid "Access Denied"
544
  msgstr "Acesso negado"
545
 
@@ -561,12 +562,12 @@ msgid "Warning! This add-on requires WP - Cron to work."
561
  msgstr "Aviso! Este add-on requer o WP - Cron para funcionar."
562
 
563
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
564
- #: addon-buy-creds.php:870 ../modules/mycred-module-hooks.php:196
565
  msgid "Enable"
566
  msgstr "Habilitar"
567
 
568
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
569
- #: php:211
570
  msgid "Update Changes"
571
  msgstr "Alterações atualizadas"
572
 
@@ -683,19 +684,19 @@ msgstr "Pagamento"
683
 
684
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
685
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
686
- #: creds/myCRED-addon-buy-creds.php:606 ../addons/buy-creds/myCRED-addon-buy-
687
- #: creds.php:665 ../addons/coupons/myCRED-addon-coupons.php:502 ..
688
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
689
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
690
- #: addons/gateway/carts/mycred-woocommerce.php:105 ..
691
- #: addons/gateway/carts/mycred-woocommerce.php:177 ..
692
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
693
- #: hooks.php:891 ../modules/mycred-module-hooks.php:1847 ../modules/mycred-module-
694
- #: hooks.php:2187 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-
695
- #: badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-hook-
696
- #: events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.php:
697
- #: 209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-
698
- #: star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:304 ..
699
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
700
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
701
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
@@ -742,7 +743,7 @@ msgid "This user role is excluded from receiving interest on this balance."
742
  msgstr ""
743
 
744
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
745
- #: creds/myCRED-addon-buy-creds.php:758 ../addons/sell-content/myCRED-addon-sell-
746
  #: content.php:114
747
  msgid "Leave empty to use the default value."
748
  msgstr ""
@@ -755,15 +756,15 @@ msgstr ""
755
  msgid "Exclude from receiving interest"
756
  msgstr ""
757
 
758
- #: ../addons/banking/services/mycred-bank-service-interest.php:667
759
  msgid "Compound interest rate saved."
760
  msgstr ""
761
 
762
- #: ../addons/banking/services/mycred-bank-service-interest.php:669
763
  msgid "User excluded from receiving interest."
764
  msgstr ""
765
 
766
- #: ../addons/banking/services/mycred-bank-service-interest.php:671
767
  msgid "User included in receiving interest."
768
  msgstr ""
769
 
@@ -772,8 +773,8 @@ msgid "Daily %_plural%"
772
  msgstr "%_plural% diários"
773
 
774
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
775
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:254 ..
776
- #: modules/mycred-module-log.php:255
777
  msgid "History"
778
  msgstr "Histórico"
779
 
@@ -790,17 +791,17 @@ msgid "Pay Users"
790
  msgstr "Usuários pagantes"
791
 
792
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
793
- #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
794
- #: creds.php:1523 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
795
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
796
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
797
- #: includes/mycred-shortcodes.php:971 ../includes/mycred-shortcodes.php:1112 ..
798
  #: plugins/mycred-hook-affiliatewp.php:256
799
  msgid "Amount"
800
  msgstr "Quantia"
801
 
802
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
803
- #: modules/mycred-module-hooks.php:2202
804
  msgid "Interval"
805
  msgstr "Intervalo"
806
 
@@ -826,313 +827,313 @@ msgstr ""
826
  "que caso você desative durante um ciclo, este serviço continuará quando for "
827
  "reativado. Defina os ciclos como zero para reiniciar."
828
 
829
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
830
- #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
831
  msgid "Payment Gateways"
832
  msgstr "Métodos de pagamento"
833
 
834
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:253
835
  msgctxt "Post Type General Name"
836
  msgid "Pending Payments"
837
  msgstr ""
838
 
839
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:254
840
  msgctxt "Post Type Singular Name"
841
  msgid "Pending Payment"
842
  msgstr ""
843
 
844
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:255 ../addons/buy-creds/myCRED-
845
- #: addon-buy-creds.php:257 ../addons/buy-creds/myCRED-addon-buy-creds.php:268
846
  msgid "Pending Payments"
847
  msgstr ""
848
 
849
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
850
  msgid "Edit Pending Payment"
851
  msgstr ""
852
 
853
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
854
- #: addon-buy-creds.php:1634
855
  msgid "No pending payments found"
856
  msgstr ""
857
 
858
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265
859
  msgid "Not found in Trash"
860
  msgstr ""
861
 
862
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
863
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1598
864
  msgid "Transaction ID"
865
  msgstr "ID da transação"
866
 
867
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
868
- #: addon-buy-creds.php:984
869
  msgid "Buyer"
870
  msgstr ""
871
 
872
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
873
- #: addon-buy-creds.php:1601 ../addons/buy-creds/abstracts/mycred-abstract-payment-
874
  #: gateway.php:594
875
  msgid "Cost"
876
  msgstr "Preço"
877
 
878
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
879
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ..
880
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
881
  msgid "Gateway"
882
  msgstr "Métodos de pagamento"
883
 
884
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:303
885
  msgid "Type"
886
  msgstr ""
887
 
888
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:390
889
  msgid "Pay Out"
890
  msgstr ""
891
 
892
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
893
  msgid "buyCRED Purchase Log"
894
  msgstr "Registro de compra do buyCRED"
895
 
896
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:422 ../addons/buy-creds/myCRED-
897
- #: addon-buy-creds.php:655 ../addons/buy-creds/myCRED-addon-buy-creds.php:842
898
  msgid "Purchase Log"
899
  msgstr "Registro de compra"
900
 
901
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:515 ../addons/gateway/event-
902
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
903
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
904
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
905
  msgid "Payments"
906
  msgstr "Pagamentos"
907
 
908
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
909
  msgid "Please login to purchase %_plural%"
910
  msgstr "Por favor, faça login para comprar %_plural%"
911
 
912
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
913
  #, php-format
914
  msgid "Gift purchase from %display_name%."
915
  msgstr "Presente comprado por %display_name%."
916
 
917
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:576 ../addons/ranks/myCRED-
918
- #: addon-ranks.php:1079
919
  msgid "Minimum %plural%"
920
  msgstr "%plural% mínimos"
921
 
922
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:580
923
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
924
  msgstr "Quantidade mínima de %plural% que um usuário deve comprar. O padrão será 1."
925
 
926
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:585 ../addons/transfer/myCRED-
927
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
928
- #: module-settings.php:617
929
  msgid "Point Types"
930
  msgstr "Tipos de pontos"
931
 
932
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
933
  msgid "Select the point types that users can buy. You must select at least one!"
934
  msgstr ""
935
 
936
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:599
937
  msgid "Login Template"
938
  msgstr "Modelo de login"
939
 
940
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603
941
  msgid "Content to show when a user is not logged in."
942
  msgstr "Conteúdo exibido quanta um usuário não está logado."
943
 
944
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
945
  msgid "Thank You Page"
946
  msgstr "Página de agradecimento"
947
 
948
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:616 ../addons/buy-creds/myCRED-
949
- #: addon-buy-creds.php:637
950
  msgid "Custom URL"
951
  msgstr "URL personalizada"
952
 
953
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:621 ../addons/buy-creds/myCRED-
954
- #: addon-buy-creds.php:642
955
  msgid "Page"
956
  msgstr "Página"
957
 
958
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:634
959
  msgid "Cancellation Page"
960
  msgstr "Página de cancelamento"
961
 
962
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657
963
  msgid "Show seperate log for %_plural% purchases."
964
  msgstr "Mostrar separadamente o registro de pontos comprados."
965
 
966
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
967
  msgid "Gifting"
968
  msgstr "Presentear"
969
 
970
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:661
971
  #, php-format
972
  msgid "Allow users to buy %_plural% for other users."
973
  msgstr "Permitir que usuários comprem %_plural% para outros usuários."
974
 
975
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:662
976
  #, php-format
977
  msgid "Allow users to buy %_plural% for content authors."
978
  msgstr "Permitir que usuários comprem %_plural% para os autores."
979
 
980
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670 ../modules/mycred-module-
981
- #: hooks.php:2912
982
  msgid "Available Shortcodes"
983
  msgstr "Shortcodes disponíveis"
984
 
985
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:752
986
  #, php-format
987
  msgid "%s Exchange Rate"
988
  msgstr ""
989
 
990
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:766
991
  msgid "Save Exchange Rates"
992
  msgstr ""
993
 
994
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:821
995
  msgid "Exchange rate override saved"
996
  msgstr ""
997
 
998
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
999
  msgid "Payment completed"
1000
  msgstr ""
1001
 
1002
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842
1003
  #, php-format
1004
  msgid "%s Payment Gateways"
1005
  msgstr "%s Métodos de pagamento"
1006
 
1007
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842 ../addons/buy-creds/myCRED-
1008
- #: addon-buy-creds.php:992
1009
  msgid "buyCRED Settings"
1010
  msgstr "Configurações do buyCRED"
1011
 
1012
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:863
1013
  msgid "Test Mode"
1014
  msgstr "Modo de teste"
1015
 
1016
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:865
1017
  msgid "Enabled"
1018
  msgstr "Habilitado"
1019
 
1020
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
1021
  msgid "Disabled"
1022
  msgstr "Desabilitado"
1023
 
1024
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:878
1025
  msgid "Sandbox Mode"
1026
  msgstr "Modo Sandbox"
1027
 
1028
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
1029
  msgid "Enable for test purchases."
1030
  msgstr "Habilitar para compras de teste."
1031
 
1032
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:898 ../addons/gateway/event-
1033
- #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:692
1034
  msgid "Update Settings"
1035
  msgstr "Atualizar configurações"
1036
 
1037
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
1038
  msgid "More Gateways"
1039
  msgstr ""
1040
 
1041
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
1042
- #: 634
1043
  msgid "Date"
1044
  msgstr "Data"
1045
 
1046
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1047
  msgid "Payed"
1048
  msgstr "Pago"
1049
 
1050
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
1051
  msgid "<strong>buy</strong>CRED Purchase Log"
1052
  msgstr "Registro de compra do <strong>buy</strong>CRED"
1053
 
1054
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
1055
  #: booking/mycred-eventespresso3.php:367
1056
  msgid "Gateway Settings"
1057
  msgstr "Configurações do método"
1058
 
1059
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171 ../addons/sell-
1060
  #: content/myCRED-addon-sell-content.php:1209
1061
  msgid "No purchases found"
1062
  msgstr "Nenhuma compra encontrada"
1063
 
1064
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1241 ../addons/buy-creds/myCRED-
1065
- #: addon-buy-creds.php:1354
1066
  msgid "This Add-on needs to setup before you can use this shortcode."
1067
  msgstr "Este add-on precisa ser configurado antes de usar o shortcode."
1068
 
1069
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1260 ../addons/buy-creds/myCRED-
1070
- #: addon-buy-creds.php:1373
1071
  msgid "No gateways installed."
1072
  msgstr "Nenhum método instalado."
1073
 
1074
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
1075
- #: addon-buy-creds.php:1374
1076
  msgid "Gateway does not exist."
1077
  msgstr "Método não existe."
1078
 
1079
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1309
1080
  msgid "Yourself"
1081
  msgstr "Você mesmo"
1082
 
1083
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1375
1084
  msgid "No active gateways found."
1085
  msgstr "Nenhum método ativo foi encontrado."
1086
 
1087
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
1088
  msgid "The selected gateway is not active."
1089
  msgstr "O método selecionado não está ativo."
1090
 
1091
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1423
1092
  #, php-format
1093
  msgid "Buy with %gateway%"
1094
  msgstr "Compre com %gateway%"
1095
 
1096
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1429 ../addons/sell-
1097
  #: content/myCRED-addon-sell-content.php:44
1098
  msgid "Buy Now"
1099
  msgstr "Comprar agora"
1100
 
1101
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1474
1102
  msgid "No users found"
1103
  msgstr "Nenhum usuário encontrado"
1104
 
1105
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1484
1106
  msgid "To"
1107
  msgstr "Para"
1108
 
1109
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1501
1110
  msgid "Select Amount"
1111
  msgstr "Selecionar a quantia"
1112
 
1113
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1525
1114
  msgid "min."
1115
  msgstr "min."
1116
 
1117
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1118
  msgid "Select Gateway"
1119
  msgstr "Selecione o método"
1120
 
1121
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1574 ../addons/gateway/event-
1122
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1123
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1124
  #: php:35
1125
  msgid "Pay Now"
1126
  msgstr "Pagar agora"
1127
 
1128
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../includes/mycred-install.
1129
- #: php:524
1130
  msgid "Cancel"
1131
  msgstr "Cancelar"
1132
 
1133
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1602 ../addons/ranks/myCRED-
1134
- #: addon-ranks.php:1601 ../modules/mycred-module-log.php:375 ../modules/mycred-
1135
- #: module-settings.php:589 ../modules/mycred-module-settings.php:604
1136
  msgid "Actions"
1137
  msgstr "Ações"
1138
 
@@ -1268,7 +1269,7 @@ msgid "Continue to %s"
1268
  msgstr "Continue para %s"
1269
 
1270
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1271
- #: addons/buy-creds/gateways/bitpay.php:226
1272
  msgid "Click here if you are not automatically redirected"
1273
  msgstr "Clique aqui se você não for redirecionado automaticamente"
1274
 
@@ -1328,146 +1329,140 @@ msgstr ""
1328
  msgid "December"
1329
  msgstr ""
1330
 
1331
- #: ../addons/buy-creds/gateways/bitpay.php:30 ../addons/buy-
1332
- #: creds/gateways/netbilling.php:35 ../addons/buy-creds/gateways/paypal-standard.
1333
- #: php:30 ../addons/buy-creds/gateways/skrill.php:35
1334
- msgid "Purchase of myCRED %plural%"
1335
- msgstr "Compra do myCRED de %plural% "
1336
-
1337
- #: ../addons/buy-creds/gateways/bitpay.php:60 ../addons/buy-
1338
- #: creds/gateways/netbilling.php:88 ../addons/buy-creds/gateways/paypal-standard.
1339
- #: php:142 ../addons/buy-creds/gateways/skrill.php:119
1340
  #, php-format
1341
  msgid "Price mismatch. Expected: %s Received: %s"
1342
  msgstr ""
1343
 
1344
- #: ../addons/buy-creds/gateways/bitpay.php:66 ../addons/buy-creds/gateways/paypal-
1345
- #: standard.php:148 ../addons/buy-creds/gateways/skrill.php:125
1346
  #, php-format
1347
  msgid "Currency mismatch. Expected: %s Received: %s"
1348
  msgstr ""
1349
 
1350
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
1351
- #: creds/gateways/netbilling.php:94 ../addons/buy-creds/gateways/paypal-standard.
1352
- #: php:154 ../addons/buy-creds/gateways/skrill.php:131
1353
  #, php-format
1354
  msgid "Payment not completed. Received: %s"
1355
  msgstr ""
1356
 
1357
- #: ../addons/buy-creds/gateways/bitpay.php:83 ../addons/buy-
1358
- #: creds/gateways/netbilling.php:105 ../addons/buy-creds/gateways/paypal-standard.
1359
- #: php:165 ../addons/buy-creds/gateways/skrill.php:142 ../addons/buy-
1360
- #: creds/gateways/zombaio.php:174
1361
  msgid "Failed to credit users account."
1362
  msgstr ""
1363
 
1364
- #: ../addons/buy-creds/gateways/bitpay.php:160 ../addons/buy-
1365
- #: creds/gateways/netbilling.php:140 ../addons/buy-creds/gateways/paypal-standard.
1366
- #: php:202 ../addons/buy-creds/gateways/skrill.php:180 ../addons/buy-
1367
- #: creds/gateways/zombaio.php:201
1368
  msgid "Please setup this gateway before attempting to make a purchase!"
1369
  msgstr "Por favor, configure este método antes de tentar fazer uma compra!"
1370
 
1371
- #: ../addons/buy-creds/gateways/bitpay.php:212 ../addons/buy-
1372
- #: creds/gateways/bitpay.php:221 ../addons/buy-creds/gateways/netbilling.php:193 .
1373
- #: ./addons/buy-creds/gateways/paypal-standard.php:262 ../addons/buy-
1374
- #: creds/gateways/skrill.php:274 ../addons/buy-creds/gateways/zombaio.php:234
1375
  msgid "Processing payment &hellip;"
1376
  msgstr "Processando pagamento &hellip;"
1377
 
1378
- #: ../addons/buy-creds/gateways/bitpay.php:214
1379
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1380
  msgstr ""
1381
  "Não foi possível criar uma fatura do BitPay. Por favor, contate o "
1382
  "administrador do site!"
1383
 
1384
- #: ../addons/buy-creds/gateways/bitpay.php:215
1385
  msgid "Bitpay returned the following error message:"
1386
  msgstr "O Bitpay retornou a seguinte mensagem de erro:"
1387
 
1388
- #: ../addons/buy-creds/gateways/bitpay.php:246 ../includes/mycred-remote.php:551
1389
  msgid "API Key"
1390
  msgstr "Chave de API"
1391
 
1392
- #: ../addons/buy-creds/gateways/bitpay.php:252 ../addons/buy-
1393
- #: creds/gateways/paypal-standard.php:279 ../addons/buy-creds/gateways/skrill.php:
1394
- #: 292
1395
  msgid "Currency"
1396
  msgstr "Moeda"
1397
 
1398
- #: ../addons/buy-creds/gateways/bitpay.php:255
1399
  msgid "Currency Code"
1400
  msgstr "Código da moeda"
1401
 
1402
- #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1403
- #: creds/gateways/netbilling.php:229 ../addons/buy-creds/gateways/paypal-standard.
1404
- #: php:291 ../addons/buy-creds/gateways/skrill.php:311
1405
  msgid "Item Name"
1406
  msgstr "Nome do item"
1407
 
1408
- #: ../addons/buy-creds/gateways/bitpay.php:263 ../addons/buy-
1409
- #: creds/gateways/netbilling.php:233 ../addons/buy-creds/gateways/paypal-standard.
1410
- #: php:295 ../addons/buy-creds/gateways/skrill.php:315
1411
  msgid "Description of the item being purchased by the user."
1412
  msgstr "Descrição do item a ser adquirido pelo usuário."
1413
 
1414
- #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1415
- #: creds/gateways/netbilling.php:236 ../addons/buy-creds/gateways/paypal-standard.
1416
- #: php:298 ../addons/buy-creds/gateways/skrill.php:318
1417
  msgid "Exchange Rates"
1418
  msgstr ""
1419
 
1420
- #: ../addons/buy-creds/gateways/bitpay.php:270
1421
  msgid "Transaction Speed"
1422
  msgstr "Velocidade da transação"
1423
 
1424
- #: ../addons/buy-creds/gateways/bitpay.php:277
1425
  msgid "High"
1426
  msgstr "Alta"
1427
 
1428
- #: ../addons/buy-creds/gateways/bitpay.php:278
1429
  msgid "Medium"
1430
  msgstr "Média"
1431
 
1432
- #: ../addons/buy-creds/gateways/bitpay.php:279
1433
  msgid "Low"
1434
  msgstr "Baixa"
1435
 
1436
- #: ../addons/buy-creds/gateways/bitpay.php:292
1437
  msgid "Full Notifications"
1438
  msgstr "Notificações completas"
1439
 
1440
- #: ../addons/buy-creds/gateways/bitpay.php:299 ../includes/mycred-network.php:161
1441
  #: ../includes/mycred-network.php:175
1442
  msgid "No"
1443
  msgstr "Não"
1444
 
1445
- #: ../addons/buy-creds/gateways/bitpay.php:300 ../includes/mycred-network.php:157
1446
  #: ../includes/mycred-network.php:171
1447
  msgid "Yes"
1448
  msgstr "Sim"
1449
 
1450
- #: ../addons/buy-creds/gateways/netbilling.php:210
1451
  msgid "Account ID"
1452
  msgstr "ID da conta"
1453
 
1454
- #: ../addons/buy-creds/gateways/netbilling.php:216
1455
  msgid "Site Tag"
1456
  msgstr "Etiqueta do site"
1457
 
1458
- #: ../addons/buy-creds/gateways/netbilling.php:222
1459
  msgid "Order Integrity Key"
1460
  msgstr "Encomendar chave de integração"
1461
 
1462
- #: ../addons/buy-creds/gateways/netbilling.php:226
1463
  msgid "Found under Step 12 on the Fraud Defense page."
1464
  msgstr "Encontrado na etapa 12 da página Defesa de fraude."
1465
 
1466
- #: ../addons/buy-creds/gateways/netbilling.php:240
1467
  msgid "Postback CGI URL"
1468
  msgstr "URL CGI de retorno"
1469
 
1470
- #: ../addons/buy-creds/gateways/netbilling.php:244
1471
  msgid ""
1472
  "For this gateway to work, you must login to your NETbilling account and edit "
1473
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
@@ -1478,99 +1473,104 @@ msgstr ""
1478
  "resposta de CGI esteja definida para o endereço acima e \"Return method\" "
1479
  "esteja definido como POST."
1480
 
1481
- #: ../addons/buy-creds/gateways/netbilling.php:288
1482
  msgid "Incorrect Credit Card number"
1483
  msgstr "Número incorreto do cartão de crédito"
1484
 
1485
- #: ../addons/buy-creds/gateways/netbilling.php:294
1486
  msgid "The credit card entered is past its expiration date."
1487
  msgstr "Data de validade do cartão de crédito está expirada."
1488
 
1489
- #: ../addons/buy-creds/gateways/netbilling.php:297
1490
  msgid "The CVV2 number entered is not valid."
1491
  msgstr "O código de verificação informado é inválido."
1492
 
1493
- #: ../addons/buy-creds/gateways/netbilling.php:304
1494
  msgid "The bank routing number entered is not valid."
1495
  msgstr "O número de identificação do banco informado é inválido."
1496
 
1497
- #: ../addons/buy-creds/gateways/netbilling.php:308
1498
  msgid "The bank account number entered is not valid."
1499
  msgstr "O número da conta bancária informada é inválido."
1500
 
1501
- #: ../addons/buy-creds/gateways/paypal-standard.php:188 ../addons/buy-
1502
- #: creds/gateways/skrill.php:166
1503
  msgid "Success"
1504
  msgstr "Sucesso"
1505
 
1506
- #: ../addons/buy-creds/gateways/paypal-standard.php:189 ../addons/buy-
1507
- #: creds/gateways/skrill.php:167
1508
  msgid "Thank you for your purchase"
1509
  msgstr "Obrigado por sua compra"
1510
 
1511
- #: ../addons/buy-creds/gateways/paypal-standard.php:257 ../addons/buy-
1512
- #: creds/gateways/skrill.php:221
1513
- msgid "Return to "
1514
- msgstr "Voltar para"
 
1515
 
1516
- #: ../addons/buy-creds/gateways/paypal-standard.php:285
1517
  msgid "Account Email"
1518
  msgstr "E-mail da conta"
1519
 
1520
- #: ../addons/buy-creds/gateways/skrill.php:257
 
 
 
 
1521
  msgid "Product:"
1522
  msgstr "Produto:"
1523
 
1524
- #: ../addons/buy-creds/gateways/skrill.php:266
1525
  msgid "Gift to:"
1526
  msgstr "Presente para:"
1527
 
1528
- #: ../addons/buy-creds/gateways/skrill.php:267
1529
  msgid "(author)"
1530
  msgstr "(autor)"
1531
 
1532
- #: ../addons/buy-creds/gateways/skrill.php:299
1533
  msgid "Merchant Account Email"
1534
  msgstr "E-mail da conta comercial"
1535
 
1536
- #: ../addons/buy-creds/gateways/skrill.php:305
1537
  msgid "Secret Word"
1538
  msgstr "Palavra secreta"
1539
 
1540
- #: ../addons/buy-creds/gateways/skrill.php:322
1541
  msgid "Confirmation Email"
1542
  msgstr "E-mail de confirmação"
1543
 
1544
- #: ../addons/buy-creds/gateways/skrill.php:325
1545
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1546
  msgstr ""
1547
  "Pergunte ao Skrill para me enviar um e-mail de confirmação para cada compra "
1548
  "bem sucedida."
1549
 
1550
- #: ../addons/buy-creds/gateways/skrill.php:328
1551
  msgid "Checkout Page"
1552
  msgstr "Página de checkout"
1553
 
1554
- #: ../addons/buy-creds/gateways/skrill.php:331 ../addons/gateway/carts/mycred-
1555
- #: woocommerce.php:93 ../addons/ranks/myCRED-addon-ranks.php:1307 ..
1556
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1557
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1558
- #: php:592 ../modules/mycred-module-hooks.php:2876
1559
  msgid "Title"
1560
  msgstr "Título"
1561
 
1562
- #: ../addons/buy-creds/gateways/skrill.php:333
1563
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1564
  msgstr ""
1565
  "Se for deixado vazio, o e-mail da sua conta será usada como título na página "
1566
  "de pagamento do Skrill."
1567
 
1568
- #: ../addons/buy-creds/gateways/skrill.php:336 ../addons/buy-
1569
- #: creds/gateways/zombaio.php:269
1570
  msgid "Logo URL"
1571
  msgstr "URL do logotipo"
1572
 
1573
- #: ../addons/buy-creds/gateways/skrill.php:338
1574
  msgid ""
1575
  "The URL to the image you want to use on the top of the gateway. For best "
1576
  "integration results we recommend you use logos with dimensions up to 200px "
@@ -1580,11 +1580,11 @@ msgstr ""
1580
  "obter um melhor resultado de integração recomendamos que você use o logotipo "
1581
  "com dimensões de até 200px de largura por 50px de altura."
1582
 
1583
- #: ../addons/buy-creds/gateways/skrill.php:341
1584
  msgid "Confirmation Note"
1585
  msgstr "Nota de confirmação"
1586
 
1587
- #: ../addons/buy-creds/gateways/skrill.php:343
1588
  msgid ""
1589
  "Optional text to show user once a transaction has been successfully "
1590
  "completed. This text is shown by Skrill."
@@ -1592,45 +1592,45 @@ msgstr ""
1592
  "Texto opcional para mostrar ao usuário uma vez que a operação tenha sido "
1593
  "concluída com êxito. Este texto é mostrado pelo Skrill."
1594
 
1595
- #: ../addons/buy-creds/gateways/zombaio.php:143
1596
  #, php-format
1597
  msgid "Duplicate transaction. Received: %s"
1598
  msgstr ""
1599
 
1600
- #: ../addons/buy-creds/gateways/zombaio.php:149
1601
  #, php-format
1602
  msgid "Live transaction while debug mode is enabled! Received: %s"
1603
  msgstr ""
1604
 
1605
- #: ../addons/buy-creds/gateways/zombaio.php:251
1606
  msgid "Site ID"
1607
  msgstr "ID do site"
1608
 
1609
- #: ../addons/buy-creds/gateways/zombaio.php:257
1610
  msgid "GW Password"
1611
  msgstr "Senha do GW"
1612
 
1613
- #: ../addons/buy-creds/gateways/zombaio.php:263
1614
  msgid "Pricing ID"
1615
  msgstr "ID de preço"
1616
 
1617
- #: ../addons/buy-creds/gateways/zombaio.php:275
1618
  msgid "IP Verification"
1619
  msgstr "Verificação de IP"
1620
 
1621
- #: ../addons/buy-creds/gateways/zombaio.php:278
1622
  msgid "Do not verify that callbacks are coming from Zombaio."
1623
  msgstr "Não verificar se as chamadas de retorno são provenientes do Zombaio."
1624
 
1625
- #: ../addons/buy-creds/gateways/zombaio.php:281
1626
  msgid "Language"
1627
  msgstr "Idioma"
1628
 
1629
- #: ../addons/buy-creds/gateways/zombaio.php:288
1630
  msgid "Postback URL (ZScript)"
1631
  msgstr "URL de retorno (ZScript)"
1632
 
1633
- #: ../addons/buy-creds/gateways/zombaio.php:292
1634
  msgid ""
1635
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1636
  "address and click validate."
@@ -1720,8 +1720,8 @@ msgid "Used"
1720
  msgstr ""
1721
 
1722
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1723
- #: transfer.php:259 ../modules/mycred-module-hooks.php:1563 ../modules/mycred-
1724
- #: module-hooks.php:1854
1725
  msgid "Limits"
1726
  msgstr "Limites"
1727
 
@@ -1730,15 +1730,15 @@ msgid "Expires"
1730
  msgstr "Expira em"
1731
 
1732
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1733
- #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:811 ..
1734
- #: addons/email-notices/myCRED-addon-email-notices.php:1028 ..
1735
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1736
- #: addons/gateway/carts/mycred-woocommerce.php:121 ..
1737
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1738
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1739
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1740
- #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1041 ../addons/ranks/myCRED-
1741
- #: addon-ranks.php:1191 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1742
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1743
  #: includes/importers/mycred-cubepoints.php:365
1744
  msgid "Point Type"
@@ -1750,7 +1750,7 @@ msgid "not yet used"
1750
  msgstr "ainda não utilizado"
1751
 
1752
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1753
- #: 395 ../modules/mycred-module-hooks.php:2292
1754
  msgid "Total"
1755
  msgstr "Total"
1756
 
@@ -1914,16 +1914,12 @@ msgstr ""
1914
  "Mensagem a ser exibida quando um cupom for depositado com sucesso a uma "
1915
  "conta de usuário."
1916
 
1917
- #: ../addons/coupons/includes/mycred-coupon-functions.php:158
1918
- msgid "Coupon redemption"
1919
- msgstr "Rresgatar cupom"
1920
-
1921
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1922
  msgid "Apply Coupon"
1923
  msgstr "Aplicar cupom"
1924
 
1925
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1926
- #: notices/myCRED-addon-email-notices.php:1264
1927
  msgid "Email Notice"
1928
  msgstr "E-mail de aviso"
1929
 
@@ -2128,17 +2124,17 @@ msgstr ""
2128
  "individualmente ao editar os e-mails."
2129
 
2130
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2131
- #: notices/myCRED-addon-email-notices.php:897
2132
  msgid "Email Settings"
2133
  msgstr "Configurações de e-mail"
2134
 
2135
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2136
- #: notices/myCRED-addon-email-notices.php:1050
2137
  msgid "Senders Name:"
2138
  msgstr "Nome do remetente:"
2139
 
2140
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2141
- #: notices/myCRED-addon-email-notices.php:1052
2142
  msgid "Senders Email:"
2143
  msgstr "E-mail do remetente:"
2144
 
@@ -2162,163 +2158,163 @@ msgstr "Estilo padrão do e-mail"
2162
  msgid "Ignored if HTML is not allowed in emails."
2163
  msgstr "Ignorar se HTML não é permitido nos e-mails."
2164
 
2165
- #: ../addons/email-notices/myCRED-addon-email-notices.php:716
2166
  #, php-format
2167
  msgctxt "Badge Title - Level 1,2,3.."
2168
  msgid "%s - Level %d"
2169
  msgstr ""
2170
 
2171
- #: ../addons/email-notices/myCRED-addon-email-notices.php:806 ../addons/email-
2172
- #: notices/myCRED-addon-email-notices.php:946
2173
  msgid "Email Subject"
2174
  msgstr "Assunto do e-mail"
2175
 
2176
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
2177
  msgid "Not Active"
2178
  msgstr "Desativado"
2179
 
2180
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2181
  #, php-format
2182
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2183
  msgstr "Agendado:<br /><strong>%1$s</strong>"
2184
 
2185
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
2186
  msgid "Active"
2187
  msgstr "Ativado"
2188
 
2189
- #: ../addons/email-notices/myCRED-addon-email-notices.php:842
2190
  #, php-format
2191
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2192
  msgstr "Ativado: Última execução:<br /><strong>%1$s</strong>"
2193
 
2194
- #: ../addons/email-notices/myCRED-addon-email-notices.php:852
2195
  msgid "Email is sent when"
2196
  msgstr "O e-mail é enviado quando"
2197
 
2198
- #: ../addons/email-notices/myCRED-addon-email-notices.php:854
2199
  msgid "Missing instance for this notice!"
2200
  msgstr "Falta instância para este aviso!"
2201
 
2202
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2203
- #: notices/myCRED-addon-email-notices.php:865 ../addons/email-notices/myCRED-
2204
- #: addon-email-notices.php:867
2205
  msgid "Sent To"
2206
  msgstr "Enviar para"
2207
 
2208
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2209
- #: notices/myCRED-addon-email-notices.php:1016 ../includes/mycred-admin.php:754 ..
2210
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:562
2211
  msgid "User"
2212
  msgstr "Usuário"
2213
 
2214
- #: ../addons/email-notices/myCRED-addon-email-notices.php:865 ../addons/email-
2215
- #: notices/myCRED-addon-email-notices.php:1017
2216
  msgid "Administrator"
2217
  msgstr "Administrador"
2218
 
2219
- #: ../addons/email-notices/myCRED-addon-email-notices.php:867
2220
  msgid "Both Administrator and User"
2221
  msgstr "Ambos, administrador e usuário"
2222
 
2223
- #: ../addons/email-notices/myCRED-addon-email-notices.php:877 ../addons/email-
2224
- #: notices/myCRED-addon-email-notices.php:1034
2225
  msgid "All types"
2226
  msgstr ""
2227
 
2228
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
2229
  msgid "Available Template Tags"
2230
  msgstr "Modelos de etiquetas disponíveis"
2231
 
2232
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
2233
  msgid "Email Header"
2234
  msgstr "Cabeçalho do e-mail"
2235
 
2236
- #: ../addons/email-notices/myCRED-addon-email-notices.php:983
2237
  msgid "Send this email notice when..."
2238
  msgstr "Enviar este e-mail de aviso quando..."
2239
 
2240
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1014
2241
  msgid "Recipient:"
2242
  msgstr "Destinatário:"
2243
 
2244
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1018
2245
  msgid "Both"
2246
  msgstr "Ambos"
2247
 
2248
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1022 ..
2249
- #: addons/gateway/carts/mycred-woocommerce.php:161 ../modules/mycred-module-
2250
- #: settings.php:632 ../modules/mycred-module-settings.php:651 ../modules/mycred-
2251
- #: module-settings.php:674
2252
  msgid "Label"
2253
  msgstr "Rótulo"
2254
 
2255
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1054
2256
  msgid "Reply-To Email:"
2257
  msgstr "E-mail do Responder para:"
2258
 
2259
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1060
2260
  msgid "Save"
2261
  msgstr "Salvar"
2262
 
2263
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1072
2264
  msgid "CSS Styling"
2265
  msgstr "Estilo CSS"
2266
 
2267
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1088
2268
  msgid "Site Related"
2269
  msgstr "Site relacionado"
2270
 
2271
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2272
  msgid "Your websites title"
2273
  msgstr "Título do seu site"
2274
 
2275
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1090
2276
  msgid "Your websites address"
2277
  msgstr "Endereço do seu site"
2278
 
2279
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2280
  msgid "Your websites tagline (description)"
2281
  msgstr "Slogan do seu site (descrição)"
2282
 
2283
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2284
  msgid "Your websites admin email"
2285
  msgstr "E-mail de administração do seu site"
2286
 
2287
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2288
  msgid "Total number of blog members"
2289
  msgstr "Número total de usuários do blog"
2290
 
2291
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1097
2292
  msgid "The users new balance"
2293
  msgstr ""
2294
 
2295
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1098
2296
  msgid "The users old balance"
2297
  msgstr ""
2298
 
2299
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1099
2300
  msgid "The amount of points gained or lost in this instance"
2301
  msgstr ""
2302
 
2303
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2304
  msgid "The log entry"
2305
  msgstr ""
2306
 
2307
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1175 ../addons/email-
2308
- #: notices/myCRED-addon-email-notices.php:1178 ../addons/email-notices/myCRED-
2309
- #: addon-email-notices.php:1184
2310
  msgid "Email Notice Updated."
2311
  msgstr ""
2312
 
2313
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1180
2314
  msgid "Email Notice Activated"
2315
  msgstr "E-mail de aviso ativado"
2316
 
2317
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1181
2318
  msgid "Email Notice Saved"
2319
  msgstr "E-mail de aviso salvo"
2320
 
2321
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1200
2322
  msgid ""
2323
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2324
  "are not yet ready to use this email notice!"
@@ -2326,24 +2322,24 @@ msgstr ""
2326
  "Uma vez que um aviso é \"published\" ele torna-se ativo! Selecione \"Save "
2327
  "Draft\" se você ainda não está pronto para usar este aviso de e-mail!"
2328
 
2329
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1202
2330
  #, php-format
2331
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2332
  msgstr "Este aviso ficará ativo em:<br /><strong>%1$s</strong>"
2333
 
2334
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1204
2335
  msgid "This email notice is active."
2336
  msgstr "Este e-mail de aviso está ativo."
2337
 
2338
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1215
2339
  msgid "Settings saved."
2340
  msgstr "Configurações salvas"
2341
 
2342
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1263
2343
  msgid "Unsubscribe"
2344
  msgstr "Cancelar assinatura"
2345
 
2346
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1284
2347
  msgid "There are no email notifications yet."
2348
  msgstr "Não há notificações de e-mail ainda."
2349
 
@@ -2392,7 +2388,7 @@ msgid "Paid"
2392
  msgstr "Pago"
2393
 
2394
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2395
- #: addons/gateway/carts/mycred-woocommerce.php:34 ../includes/mycred-network.php:
2396
  #: 50 ../includes/mycred-network.php:51
2397
  msgid "myCRED"
2398
  msgstr "Tipo de ponto"
@@ -2423,7 +2419,7 @@ msgid ""
2423
  msgstr "Montante total debitado da sua conta. Seu saldo atual é: %balance_f%"
2424
 
2425
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2426
- #: addons/gateway/carts/mycred-woocommerce.php:259
2427
  msgid "Insufficient funds."
2428
  msgstr ""
2429
 
@@ -2463,22 +2459,22 @@ msgid "Gateway Logo URL"
2463
  msgstr "URL do logotipo do método"
2464
 
2465
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2466
- #: addons/gateway/carts/mycred-woocommerce.php:137
2467
  #, php-format
2468
  msgid "How much is 1 %_singular% worth in %currency%?"
2469
  msgstr "Quanto é 1 %_singular% no valor em %currency%?"
2470
 
2471
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2472
- #: addons/gateway/carts/mycred-woocommerce.php:142 ..
2473
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2474
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2475
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2476
- #: php:578 ../includes/mycred-shortcodes.php:976
2477
  msgid "Exchange Rate"
2478
  msgstr "Taxa de câmbio"
2479
 
2480
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2481
- #: addons/gateway/carts/mycred-woocommerce.php:170 ..
2482
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2483
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2484
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2491,7 +2487,7 @@ msgid "Percentage"
2491
  msgstr "Porcentagem"
2492
 
2493
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2494
- #: addons/gateway/carts/mycred-woocommerce.php:172 ..
2495
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2496
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2497
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
@@ -2562,19 +2558,19 @@ msgstr ""
2562
  "substituídos por detalhes de ordem: CUSTOMERNAME, ORDERID, ORDERINFO, "
2563
  "SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML não é permitido."
2564
 
2565
- #: ../addons/gateway/carts/mycred-woocommerce.php:35
2566
  msgid "Let users pay using their myCRED balance."
2567
  msgstr "Permitir usuário de pagar utilizando o saldo do myCRED."
2568
 
2569
- #: ../addons/gateway/carts/mycred-woocommerce.php:86
2570
  msgid "Enable/Disable"
2571
  msgstr "Habilitar/Desabilitar"
2572
 
2573
- #: ../addons/gateway/carts/mycred-woocommerce.php:88
2574
  msgid "Enable myCRED Payment"
2575
  msgstr "Habilitar pagamento pelo myCRED"
2576
 
2577
- #: ../addons/gateway/carts/mycred-woocommerce.php:90
2578
  msgid ""
2579
  "Users who are not logged in or excluded from using myCRED will not have "
2580
  "access to this gateway!"
@@ -2582,64 +2578,64 @@ msgstr ""
2582
  "Usuários que não estiverem logados ou foram excluídos de usar o myCRED não "
2583
  "terão acesso a este método!"
2584
 
2585
- #: ../addons/gateway/carts/mycred-woocommerce.php:95
2586
  msgid "Title to show for this payment option."
2587
  msgstr "Título para exibier para essa opção de pagamento."
2588
 
2589
- #: ../addons/gateway/carts/mycred-woocommerce.php:96
2590
  msgid "Pay with myCRED"
2591
  msgstr "Pagar com myCRED"
2592
 
2593
- #: ../addons/gateway/carts/mycred-woocommerce.php:100
2594
  msgid "Customer Message"
2595
  msgstr "Mensagem ao cliente"
2596
 
2597
- #: ../addons/gateway/carts/mycred-woocommerce.php:111 ..
2598
- #: addons/gateway/carts/mycred-woocommerce.php:183
2599
  msgid "Refund Log Template"
2600
  msgstr ""
2601
 
2602
- #: ../addons/gateway/carts/mycred-woocommerce.php:123
2603
  msgid "Select the point type users can use to pay."
2604
  msgstr "Selecione o tipo de ponto que os usuários poderão usar para pagar."
2605
 
2606
- #: ../addons/gateway/carts/mycred-woocommerce.php:149
2607
  msgid "Show Total"
2608
  msgstr "Exibir total"
2609
 
2610
- #: ../addons/gateway/carts/mycred-woocommerce.php:151
2611
  msgid "Show the final price in %_plural% ."
2612
  msgstr "Exibir o preço final em %_plural% ."
2613
 
2614
- #: ../addons/gateway/carts/mycred-woocommerce.php:154
2615
  msgid "Show in Cart"
2616
  msgstr "Exibir no Carrinho"
2617
 
2618
- #: ../addons/gateway/carts/mycred-woocommerce.php:155
2619
  msgid "Show on Checkout Page"
2620
  msgstr "Exibir na página de Checkout"
2621
 
2622
- #: ../addons/gateway/carts/mycred-woocommerce.php:156
2623
  msgid "Show in Cart and on Checkout Page"
2624
  msgstr "Exibir no Carrinho e na página de Checkout"
2625
 
2626
- #: ../addons/gateway/carts/mycred-woocommerce.php:163
2627
  msgid "Order Total in %_plural%"
2628
  msgstr "Total do pedido em %_plural%"
2629
 
2630
- #: ../addons/gateway/carts/mycred-woocommerce.php:179
2631
  msgid "Log entry template for profit sharing."
2632
  msgstr "Modelo do registro de entrada para participação nos lucros."
2633
 
2634
- #: ../addons/gateway/carts/mycred-woocommerce.php:185
2635
  msgid "Log entry template for refunds of profit shares."
2636
  msgstr ""
2637
 
2638
- #: ../addons/gateway/carts/mycred-woocommerce.php:211
2639
  msgid "myCRED Payment"
2640
  msgstr "Pagamento do myCRED"
2641
 
2642
- #: ../addons/gateway/carts/mycred-woocommerce.php:212
2643
  #, php-format
2644
  msgid ""
2645
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
@@ -2650,21 +2646,27 @@ msgstr ""
2650
  "favor, note que os usuários com fundos insuficientes e os usuários que não "
2651
  "estão conectados não verão este método de pagamento na página de Checkout."
2652
 
2653
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
2654
  msgid "You must be logged in to pay with %_plural%"
2655
  msgstr "Você precisa estar logado
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Apr 08 2015 17:05:09 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
+ "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
+ "me>\n"
10
  "Language: Portuguese (Brazil)\n"
11
  "Plural-Forms: nplurals=2; plural=n != 1\n"
12
  "MIME-Version: 1.0\n"
43
  msgstr "Pessoas incríveis"
44
 
45
  #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
46
+ #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
+ #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
111
  msgstr "Registro de entradas atualizado"
112
 
113
  #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
114
+ #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
  msgid "Setup"
117
  msgstr "Instalação"
118
 
119
  #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
120
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
121
+ #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
122
+ #: module-settings.php:22 ../modules/mycred-module-settings.php:23
123
  msgid "Settings"
124
  msgstr "Configurações"
125
 
131
  "Certifique-se de fazer backup do seu banco de dados e arquivos antes de "
132
  "atualizar, no caso de algo der errado!"
133
 
 
 
 
 
134
  #: ../abstracts/mycred-abstract-hook.php:83
135
  msgid "This Hook has no settings"
136
  msgstr "Esse gancho não tem configurações"
137
 
138
+ #: ../abstracts/mycred-abstract-hook.php:226 ../abstracts/mycred-abstract-hook.
139
+ #: php:293 ../includes/mycred-functions.php:2641 ../modules/mycred-module-hooks.
140
+ #: php:1809
141
  msgid "No limit"
142
  msgstr "Sem limite"
143
 
144
+ #: ../abstracts/mycred-abstract-hook.php:227
145
  msgid "/ Day"
146
  msgstr ""
147
 
148
+ #: ../abstracts/mycred-abstract-hook.php:228
149
  msgid "/ Week"
150
  msgstr ""
151
 
152
+ #: ../abstracts/mycred-abstract-hook.php:229
153
  msgid "/ Month"
154
  msgstr ""
155
 
156
+ #: ../abstracts/mycred-abstract-hook.php:230
157
  msgid "in Total"
158
  msgstr ""
159
 
160
+ #: ../abstracts/mycred-abstract-hook.php:294
161
  msgid "Once every 24 hours"
162
  msgstr "A cada 24 horas"
163
 
164
+ #: ../abstracts/mycred-abstract-hook.php:295
165
  msgid "Once every 7 days"
166
  msgstr "A cada 7 dias"
167
 
168
+ #: ../abstracts/mycred-abstract-hook.php:296
169
  msgid "Once per day (reset at midnight)"
170
  msgstr "Uma vez por dia (reiniciar a meia-noite)"
171
 
172
+ #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
173
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
174
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
175
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
176
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
177
+ #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
178
+ #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992
179
  msgid "Select"
180
  msgstr "Selecionar"
181
 
183
  msgid "myCRED_Module() Error. A Module ID is required!"
184
  msgstr "Erro no myCRED_Module(). O Module ID é necessário!"
185
 
186
+ #: ../abstracts/mycred-abstract-module.php:350 ../abstracts/mycred-abstract-
187
+ #: module.php:358
188
  msgid "Surprise"
189
  msgstr "Surpresa"
190
 
191
+ #: ../abstracts/mycred-abstract-module.php:445 ../includes/mycred-network.php:83
192
  msgid "click to close"
193
  msgstr "clique para fechar"
194
 
195
+ #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:84
196
  msgid "click to open"
197
  msgstr "clique para abrir"
198
 
199
+ #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
200
+ #: buy-creds.php:884
201
  msgid "Settings Updated"
202
  msgstr "Configurações atualizadas"
203
 
204
  #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
205
  #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
206
  #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
207
+ #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
208
+ #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
209
+ #: badges.php:395
210
  msgid "Badges"
211
  msgstr ""
212
 
215
  msgid "Badges (%d)"
216
  msgstr ""
217
 
218
+ #: ../addons/badges/myCRED-addon-badges.php:260
219
  #, php-format
220
  msgid "%d Users earned this badge."
221
  msgstr ""
222
 
223
+ #: ../addons/badges/myCRED-addon-badges.php:264
224
  msgid "No users has yet earned this badge."
225
  msgstr ""
226
 
227
+ #: ../addons/badges/myCRED-addon-badges.php:287
228
+ msgid "No connections where removed."
229
+ msgstr ""
230
+
231
+ #: ../addons/badges/myCRED-addon-badges.php:289
232
  #, php-format
233
  msgid "%s connections where removed."
234
  msgstr ""
235
 
236
+ #: ../addons/badges/myCRED-addon-badges.php:384
237
  msgid "Badge"
238
  msgstr ""
239
 
240
+ #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
241
+ #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
242
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
243
+ #: addons/ranks/myCRED-addon-ranks.php:448
244
  msgid "Add New"
245
  msgstr "Adicionar novo"
246
 
247
+ #: ../addons/badges/myCRED-addon-badges.php:386
248
  msgid "Add New Badge"
249
  msgstr ""
250
 
251
+ #: ../addons/badges/myCRED-addon-badges.php:387
252
  msgid "Edit Badge"
253
  msgstr ""
254
 
255
+ #: ../addons/badges/myCRED-addon-badges.php:388
256
  msgid "New Badge"
257
  msgstr ""
258
 
259
+ #: ../addons/badges/myCRED-addon-badges.php:390
260
  msgid "View Badge"
261
  msgstr ""
262
 
263
+ #: ../addons/badges/myCRED-addon-badges.php:391
264
  msgid "Search Badge"
265
  msgstr ""
266
 
267
+ #: ../addons/badges/myCRED-addon-badges.php:392
268
  msgid "No badges found"
269
  msgstr ""
270
 
271
+ #: ../addons/badges/myCRED-addon-badges.php:393
272
  msgid "No badges found in Trash"
273
  msgstr ""
274
 
275
+ #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
276
+ #: badges.php:541
277
  msgid "Badge Name"
278
  msgstr ""
279
 
280
+ #: ../addons/badges/myCRED-addon-badges.php:440
281
  msgid "Badge Images"
282
  msgstr ""
283
 
284
+ #: ../addons/badges/myCRED-addon-badges.php:441
285
  msgid "Requirements"
286
  msgstr ""
287
 
288
+ #: ../addons/badges/myCRED-addon-badges.php:442 ../addons/ranks/myCRED-addon-
289
+ #: ranks.php:1042 ../modules/mycred-module-settings.php:636
290
  msgid "Users"
291
  msgstr "Usuários"
292
 
293
+ #: ../addons/badges/myCRED-addon-badges.php:481
294
  msgid "A user must have gained or lost:"
295
  msgstr ""
296
 
297
+ #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
298
+ #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
299
+ #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
300
+ #: badges.php:526
301
  msgid "Badge Updated."
302
  msgstr ""
303
 
304
+ #: ../addons/badges/myCRED-addon-badges.php:522
305
  msgid "Badge Enabled"
306
  msgstr ""
307
 
308
+ #: ../addons/badges/myCRED-addon-badges.php:523
309
  msgid "Badge Saved"
310
  msgstr ""
311
 
312
+ #: ../addons/badges/myCRED-addon-badges.php:555
313
  msgid "Badge Setup"
314
  msgstr ""
315
 
316
+ #: ../addons/badges/myCRED-addon-badges.php:582
317
  msgid "Assign Badge"
318
  msgstr ""
319
 
320
+ #: ../addons/badges/myCRED-addon-badges.php:583
321
  msgid "Remove Connections"
322
  msgstr ""
323
 
324
+ #: ../addons/badges/myCRED-addon-badges.php:638
325
  msgid "Time(s)"
326
  msgstr ""
327
 
328
+ #: ../addons/badges/myCRED-addon-badges.php:639
329
  msgid "In total"
330
  msgstr ""
331
 
332
+ #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
333
+ #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
334
+ #: addons/badges/myCRED-addon-badges.php:846
335
  msgid "Badge Image"
336
  msgstr ""
337
 
338
+ #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
339
+ #: badges.php:672
340
  msgid "Set badge image"
341
  msgstr ""
342
 
343
+ #: ../addons/badges/myCRED-addon-badges.php:682
344
  msgid "Default Image"
345
  msgstr ""
346
 
347
+ #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
348
+ #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
349
+ #: addons/badges/myCRED-addon-badges.php:831
350
  msgid "image url"
351
  msgstr ""
352
 
353
+ #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
354
+ #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
355
+ #: addons/badges/myCRED-addon-badges.php:831
356
  msgid "Add Image"
357
  msgstr ""
358
 
359
+ #: ../addons/badges/myCRED-addon-badges.php:685
360
  msgid "Optional image to show when a user has not yet earned this badge."
361
  msgstr ""
362
 
363
+ #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
364
+ #: badges.php:756
365
  #, php-format
366
  msgid "Level %d"
367
  msgstr ""
368
 
369
+ #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
370
+ #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
371
  msgid "for"
372
  msgstr ""
373
 
374
+ #: ../addons/badges/myCRED-addon-badges.php:740
375
  msgid "Main Image"
376
  msgstr ""
377
 
378
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
379
+ #: badges.php:831
380
  msgid "Leave empty if you do not want to assign a custom image for this level."
381
  msgstr ""
382
 
383
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
384
+ #: badges.php:831
385
  msgid "Remove this level"
386
  msgstr ""
387
 
388
+ #: ../addons/badges/myCRED-addon-badges.php:788
389
  msgid "Add Level"
390
  msgstr ""
391
 
392
+ #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
393
+ #: badges.php:1154
394
  msgid "Level"
395
  msgstr ""
396
 
397
+ #: ../addons/badges/myCRED-addon-badges.php:848
398
  msgid "Use as Badge"
399
  msgstr ""
400
 
401
+ #: ../addons/badges/myCRED-addon-badges.php:970 ../addons/badges/myCRED-addon-
402
+ #: badges.php:1001 ../addons/gateway/carts/mycred-woocommerce.php:152 ..
403
+ #: modules/mycred-module-buddypress.php:417
404
  msgid "Do not show"
405
  msgstr "Não exibir"
406
 
407
+ #: ../addons/badges/myCRED-addon-badges.php:971 ../modules/mycred-module-
408
+ #: buddypress.php:418
409
  msgid "Include in Profile Header"
410
  msgstr ""
411
 
412
+ #: ../addons/badges/myCRED-addon-badges.php:972 ../addons/ranks/myCRED-addon-
413
+ #: ranks.php:1407 ../modules/mycred-module-buddypress.php:419
414
  msgid "Include under the \"Profile\" tab"
415
  msgstr "Incluir abaixo da aba \"Profile\""
416
 
417
+ #: ../addons/badges/myCRED-addon-badges.php:973 ../modules/mycred-module-
418
+ #: buddypress.php:420
419
  msgid "Include under the \"Profile\" tab and Profile Header"
420
  msgstr ""
421
 
422
+ #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
423
+ #: badges.php:1017
424
  msgid "Show all badges, including badges users have not yet earned."
425
  msgstr ""
426
 
427
+ #: ../addons/badges/myCRED-addon-badges.php:1002 ../addons/ranks/myCRED-addon-
428
+ #: ranks.php:1452
429
  msgid "Include in Profile"
430
  msgstr ""
431
 
432
+ #: ../addons/badges/myCRED-addon-badges.php:1003
433
  msgid "Include in Forum Replies"
434
  msgstr ""
435
 
436
+ #: ../addons/badges/myCRED-addon-badges.php:1004
437
  msgid "Include in Profile and Forum Replies"
438
  msgstr ""
439
 
440
+ #: ../addons/badges/myCRED-addon-badges.php:1111
441
  msgid "User Badges"
442
  msgstr ""
443
 
444
+ #: ../addons/badges/myCRED-addon-badges.php:1116
445
  msgid ""
446
  "Here you can view the badges this user has earned and if needed, manually "
447
  "give or take away a badge from a user."
448
  msgstr ""
449
 
450
+ #: ../addons/badges/myCRED-addon-badges.php:1125
451
  msgid "Not earned"
452
  msgstr ""
453
 
454
+ #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
455
+ #: badges.php:1168
456
  msgid "Earned"
457
  msgstr ""
458
 
459
+ #: ../addons/badges/myCRED-addon-badges.php:1143
460
  msgid "No image"
461
  msgstr ""
462
 
463
+ #: ../addons/badges/myCRED-addon-badges.php:1150
464
  msgid "Select a level"
465
  msgstr ""
466
 
467
+ #: ../addons/badges/myCRED-addon-badges.php:1165 ../addons/email-notices/myCRED-
468
+ #: addon-email-notices.php:810
469
  msgid "Status"
470
  msgstr "Status"
471
 
472
+ #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
473
+ #: addon-email-notices.php:1293
474
  msgid "Save Changes"
475
  msgstr "Salvar alterações"
476
 
477
+ #: ../addons/badges/includes/mycred-badge-functions.php:68
478
  #, php-format
479
  msgid "Level %s"
480
  msgstr ""
481
 
482
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
483
  #, php-format
484
  msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
485
  msgid "%s for %s %s - %s"
486
  msgstr ""
487
 
488
+ #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
489
  #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
490
  #: coupons.php:469
491
  #, php-format
494
  msgstr[0] ""
495
  msgstr[1] ""
496
 
497
+ #: ../addons/badges/includes/mycred-badge-functions.php:73
498
  #, php-format
499
  msgctxt "\"x points\" for \"reference\" in total"
500
  msgid "%s for %s in total"
536
  msgstr ""
537
 
538
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
539
+ #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
540
  #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
541
+ #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
542
+ #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
543
+ #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
544
  msgid "Access Denied"
545
  msgstr "Acesso negado"
546
 
562
  msgstr "Aviso! Este add-on requer o WP - Cron para funcionar."
563
 
564
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
565
+ #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
566
  msgid "Enable"
567
  msgstr "Habilitar"
568
 
569
  #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
570
+ #: php:240
571
  msgid "Update Changes"
572
  msgstr "Alterações atualizadas"
573
 
684
 
685
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
686
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
687
+ #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
688
+ #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
689
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
690
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
691
+ #: addons/gateway/carts/mycred-woocommerce.php:104 ..
692
+ #: addons/gateway/carts/mycred-woocommerce.php:176 ..
693
  #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
694
+ #: hooks.php:1004 ../modules/mycred-module-hooks.php:2025 ../modules/mycred-
695
+ #: module-hooks.php:2395 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-
696
+ #: hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-
697
+ #: hook-events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.
698
+ #: php:209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
699
+ #: gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:321 ..
700
  #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
701
  #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
702
  #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
743
  msgstr ""
744
 
745
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
746
+ #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
747
  #: content.php:114
748
  msgid "Leave empty to use the default value."
749
  msgstr ""
756
  msgid "Exclude from receiving interest"
757
  msgstr ""
758
 
759
+ #: ../addons/banking/services/mycred-bank-service-interest.php:673
760
  msgid "Compound interest rate saved."
761
  msgstr ""
762
 
763
+ #: ../addons/banking/services/mycred-bank-service-interest.php:675
764
  msgid "User excluded from receiving interest."
765
  msgstr ""
766
 
767
+ #: ../addons/banking/services/mycred-bank-service-interest.php:677
768
  msgid "User included in receiving interest."
769
  msgstr ""
770
 
773
  msgstr "%_plural% diários"
774
 
775
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
776
+ #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
777
+ #: modules/mycred-module-log.php:277
778
  msgid "History"
779
  msgstr "Histórico"
780
 
791
  msgstr "Usuários pagantes"
792
 
793
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
794
+ #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
795
+ #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
796
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
797
  #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
798
+ #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
799
  #: plugins/mycred-hook-affiliatewp.php:256
800
  msgid "Amount"
801
  msgstr "Quantia"
802
 
803
  #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
804
+ #: modules/mycred-module-hooks.php:2410
805
  msgid "Interval"
806
  msgstr "Intervalo"
807
 
827
  "que caso você desative durante um ciclo, este serviço continuará quando for "
828
  "reativado. Defina os ciclos como zero para reiniciar."
829
 
830
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
831
+ #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
832
  msgid "Payment Gateways"
833
  msgstr "Métodos de pagamento"
834
 
835
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
836
  msgctxt "Post Type General Name"
837
  msgid "Pending Payments"
838
  msgstr ""
839
 
840
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
841
  msgctxt "Post Type Singular Name"
842
  msgid "Pending Payment"
843
  msgstr ""
844
 
845
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
846
+ #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
847
  msgid "Pending Payments"
848
  msgstr ""
849
 
850
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
851
  msgid "Edit Pending Payment"
852
  msgstr ""
853
 
854
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
855
+ #: addon-buy-creds.php:1699
856
  msgid "No pending payments found"
857
  msgstr ""
858
 
859
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
860
  msgid "Not found in Trash"
861
  msgstr ""
862
 
863
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
864
+ #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
865
  msgid "Transaction ID"
866
  msgstr "ID da transação"
867
 
868
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
869
+ #: addon-buy-creds.php:1025
870
  msgid "Buyer"
871
  msgstr ""
872
 
873
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
874
+ #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
875
  #: gateway.php:594
876
  msgid "Cost"
877
  msgstr "Preço"
878
 
879
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
880
+ #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
881
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
882
  msgid "Gateway"
883
  msgstr "Métodos de pagamento"
884
 
885
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
886
  msgid "Type"
887
  msgstr ""
888
 
889
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
890
  msgid "Pay Out"
891
  msgstr ""
892
 
893
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
894
  msgid "buyCRED Purchase Log"
895
  msgstr "Registro de compra do buyCRED"
896
 
897
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
898
+ #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
899
  msgid "Purchase Log"
900
  msgstr "Registro de compra"
901
 
902
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
903
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
904
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
905
  #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
906
  msgid "Payments"
907
  msgstr "Pagamentos"
908
 
909
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
910
  msgid "Please login to purchase %_plural%"
911
  msgstr "Por favor, faça login para comprar %_plural%"
912
 
913
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
914
  #, php-format
915
  msgid "Gift purchase from %display_name%."
916
  msgstr "Presente comprado por %display_name%."
917
 
918
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
919
+ #: addon-ranks.php:1084
920
  msgid "Minimum %plural%"
921
  msgstr "%plural% mínimos"
922
 
923
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
924
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
925
  msgstr "Quantidade mínima de %plural% que um usuário deve comprar. O padrão será 1."
926
 
927
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
928
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
929
+ #: module-settings.php:656
930
  msgid "Point Types"
931
  msgstr "Tipos de pontos"
932
 
933
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
934
  msgid "Select the point types that users can buy. You must select at least one!"
935
  msgstr ""
936
 
937
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
938
  msgid "Login Template"
939
  msgstr "Modelo de login"
940
 
941
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
942
  msgid "Content to show when a user is not logged in."
943
  msgstr "Conteúdo exibido quanta um usuário não está logado."
944
 
945
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
946
  msgid "Thank You Page"
947
  msgstr "Página de agradecimento"
948
 
949
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
950
+ #: addon-buy-creds.php:668
951
  msgid "Custom URL"
952
  msgstr "URL personalizada"
953
 
954
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
955
+ #: addon-buy-creds.php:673
956
  msgid "Page"
957
  msgstr "Página"
958
 
959
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
960
  msgid "Cancellation Page"
961
  msgstr "Página de cancelamento"
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
964
  msgid "Show seperate log for %_plural% purchases."
965
  msgstr "Mostrar separadamente o registro de pontos comprados."
966
 
967
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
968
  msgid "Gifting"
969
  msgstr "Presentear"
970
 
971
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
972
  #, php-format
973
  msgid "Allow users to buy %_plural% for other users."
974
  msgstr "Permitir que usuários comprem %_plural% para outros usuários."
975
 
976
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
977
  #, php-format
978
  msgid "Allow users to buy %_plural% for content authors."
979
  msgstr "Permitir que usuários comprem %_plural% para os autores."
980
 
981
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
982
+ #: hooks.php:3110
983
  msgid "Available Shortcodes"
984
  msgstr "Shortcodes disponíveis"
985
 
986
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
987
  #, php-format
988
  msgid "%s Exchange Rate"
989
  msgstr ""
990
 
991
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
992
  msgid "Save Exchange Rates"
993
  msgstr ""
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
996
  msgid "Exchange rate override saved"
997
  msgstr ""
998
 
999
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
1000
  msgid "Payment completed"
1001
  msgstr ""
1002
 
1003
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1004
  #, php-format
1005
  msgid "%s Payment Gateways"
1006
  msgstr "%s Métodos de pagamento"
1007
 
1008
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1009
+ #: addon-buy-creds.php:1034
1010
  msgid "buyCRED Settings"
1011
  msgstr "Configurações do buyCRED"
1012
 
1013
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1014
  msgid "Test Mode"
1015
  msgstr "Modo de teste"
1016
 
1017
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1018
  msgid "Enabled"
1019
  msgstr "Habilitado"
1020
 
1021
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1022
  msgid "Disabled"
1023
  msgstr "Desabilitado"
1024
 
1025
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1026
  msgid "Sandbox Mode"
1027
  msgstr "Modo Sandbox"
1028
 
1029
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1030
  msgid "Enable for test purchases."
1031
  msgstr "Habilitar para compras de teste."
1032
 
1033
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1034
+ #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1035
  msgid "Update Settings"
1036
  msgstr "Atualizar configurações"
1037
 
1038
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1039
  msgid "More Gateways"
1040
  msgstr ""
1041
 
1042
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1043
+ #: 666
1044
  msgid "Date"
1045
  msgstr "Data"
1046
 
1047
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1048
  msgid "Payed"
1049
  msgstr "Pago"
1050
 
1051
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1052
  msgid "<strong>buy</strong>CRED Purchase Log"
1053
  msgstr "Registro de compra do <strong>buy</strong>CRED"
1054
 
1055
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1056
  #: booking/mycred-eventespresso3.php:367
1057
  msgid "Gateway Settings"
1058
  msgstr "Configurações do método"
1059
 
1060
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1061
  #: content/myCRED-addon-sell-content.php:1209
1062
  msgid "No purchases found"
1063
  msgstr "Nenhuma compra encontrada"
1064
 
1065
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1066
+ #: addon-buy-creds.php:1411
1067
  msgid "This Add-on needs to setup before you can use this shortcode."
1068
  msgstr "Este add-on precisa ser configurado antes de usar o shortcode."
1069
 
1070
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1071
+ #: addon-buy-creds.php:1430
1072
  msgid "No gateways installed."
1073
  msgstr "Nenhum método instalado."
1074
 
1075
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1076
+ #: addon-buy-creds.php:1431
1077
  msgid "Gateway does not exist."
1078
  msgstr "Método não existe."
1079
 
1080
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1081
  msgid "Yourself"
1082
  msgstr "Você mesmo"
1083
 
1084
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1085
  msgid "No active gateways found."
1086
  msgstr "Nenhum método ativo foi encontrado."
1087
 
1088
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1089
  msgid "The selected gateway is not active."
1090
  msgstr "O método selecionado não está ativo."
1091
 
1092
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1093
  #, php-format
1094
  msgid "Buy with %gateway%"
1095
  msgstr "Compre com %gateway%"
1096
 
1097
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1098
  #: content/myCRED-addon-sell-content.php:44
1099
  msgid "Buy Now"
1100
  msgstr "Comprar agora"
1101
 
1102
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1103
  msgid "No users found"
1104
  msgstr "Nenhum usuário encontrado"
1105
 
1106
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1107
  msgid "To"
1108
  msgstr "Para"
1109
 
1110
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1111
  msgid "Select Amount"
1112
  msgstr "Selecionar a quantia"
1113
 
1114
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1115
  msgid "min."
1116
  msgstr "min."
1117
 
1118
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1119
  msgid "Select Gateway"
1120
  msgstr "Selecione o método"
1121
 
1122
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1123
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1124
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1125
  #: php:35
1126
  msgid "Pay Now"
1127
  msgstr "Pagar agora"
1128
 
1129
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1130
+ #: php:536
1131
  msgid "Cancel"
1132
  msgstr "Cancelar"
1133
 
1134
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1135
+ #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1136
+ #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1137
  msgid "Actions"
1138
  msgstr "Ações"
1139
 
1269
  msgstr "Continue para %s"
1270
 
1271
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1272
+ #: addons/buy-creds/gateways/bitpay.php:233
1273
  msgid "Click here if you are not automatically redirected"
1274
  msgstr "Clique aqui se você não for redirecionado automaticamente"
1275
 
1329
  msgid "December"
1330
  msgstr ""
1331
 
1332
+ #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
1333
+ #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
1334
+ #: php:145 ../addons/buy-creds/gateways/skrill.php:124
 
 
 
 
 
 
1335
  #, php-format
1336
  msgid "Price mismatch. Expected: %s Received: %s"
1337
  msgstr ""
1338
 
1339
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
1340
+ #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
1341
  #, php-format
1342
  msgid "Currency mismatch. Expected: %s Received: %s"
1343
  msgstr ""
1344
 
1345
+ #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
1346
+ #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
1347
+ #: php:157 ../addons/buy-creds/gateways/skrill.php:136
1348
  #, php-format
1349
  msgid "Payment not completed. Received: %s"
1350
  msgstr ""
1351
 
1352
+ #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
1353
+ #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/paypal-standard.
1354
+ #: php:168 ../addons/buy-creds/gateways/skrill.php:147 ../addons/buy-
1355
+ #: creds/gateways/zombaio.php:185
1356
  msgid "Failed to credit users account."
1357
  msgstr ""
1358
 
1359
+ #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
1360
+ #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/paypal-standard.
1361
+ #: php:208 ../addons/buy-creds/gateways/skrill.php:187 ../addons/buy-
1362
+ #: creds/gateways/zombaio.php:214
1363
  msgid "Please setup this gateway before attempting to make a purchase!"
1364
  msgstr "Por favor, configure este método antes de tentar fazer uma compra!"
1365
 
1366
+ #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
1367
+ #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
1368
+ #: ./addons/buy-creds/gateways/paypal-standard.php:268 ../addons/buy-
1369
+ #: creds/gateways/skrill.php:281 ../addons/buy-creds/gateways/zombaio.php:247
1370
  msgid "Processing payment &hellip;"
1371
  msgstr "Processando pagamento &hellip;"
1372
 
1373
+ #: ../addons/buy-creds/gateways/bitpay.php:219
1374
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1375
  msgstr ""
1376
  "Não foi possível criar uma fatura do BitPay. Por favor, contate o "
1377
  "administrador do site!"
1378
 
1379
+ #: ../addons/buy-creds/gateways/bitpay.php:220
1380
  msgid "Bitpay returned the following error message:"
1381
  msgstr "O Bitpay retornou a seguinte mensagem de erro:"
1382
 
1383
+ #: ../addons/buy-creds/gateways/bitpay.php:253 ../includes/mycred-remote.php:551
1384
  msgid "API Key"
1385
  msgstr "Chave de API"
1386
 
1387
+ #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1388
+ #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
1389
+ #: 300
1390
  msgid "Currency"
1391
  msgstr "Moeda"
1392
 
1393
+ #: ../addons/buy-creds/gateways/bitpay.php:262
1394
  msgid "Currency Code"
1395
  msgstr "Código da moeda"
1396
 
1397
+ #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1398
+ #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
1399
+ #: php:298 ../addons/buy-creds/gateways/skrill.php:319
1400
  msgid "Item Name"
1401
  msgstr "Nome do item"
1402
 
1403
+ #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
1404
+ #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
1405
+ #: php:302 ../addons/buy-creds/gateways/skrill.php:323
1406
  msgid "Description of the item being purchased by the user."
1407
  msgstr "Descrição do item a ser adquirido pelo usuário."
1408
 
1409
+ #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
1410
+ #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
1411
+ #: php:305 ../addons/buy-creds/gateways/skrill.php:326
1412
  msgid "Exchange Rates"
1413
  msgstr ""
1414
 
1415
+ #: ../addons/buy-creds/gateways/bitpay.php:277
1416
  msgid "Transaction Speed"
1417
  msgstr "Velocidade da transação"
1418
 
1419
+ #: ../addons/buy-creds/gateways/bitpay.php:284
1420
  msgid "High"
1421
  msgstr "Alta"
1422
 
1423
+ #: ../addons/buy-creds/gateways/bitpay.php:285
1424
  msgid "Medium"
1425
  msgstr "Média"
1426
 
1427
+ #: ../addons/buy-creds/gateways/bitpay.php:286
1428
  msgid "Low"
1429
  msgstr "Baixa"
1430
 
1431
+ #: ../addons/buy-creds/gateways/bitpay.php:299
1432
  msgid "Full Notifications"
1433
  msgstr "Notificações completas"
1434
 
1435
+ #: ../addons/buy-creds/gateways/bitpay.php:306 ../includes/mycred-network.php:161
1436
  #: ../includes/mycred-network.php:175
1437
  msgid "No"
1438
  msgstr "Não"
1439
 
1440
+ #: ../addons/buy-creds/gateways/bitpay.php:307 ../includes/mycred-network.php:157
1441
  #: ../includes/mycred-network.php:171
1442
  msgid "Yes"
1443
  msgstr "Sim"
1444
 
1445
+ #: ../addons/buy-creds/gateways/netbilling.php:216
1446
  msgid "Account ID"
1447
  msgstr "ID da conta"
1448
 
1449
+ #: ../addons/buy-creds/gateways/netbilling.php:222
1450
  msgid "Site Tag"
1451
  msgstr "Etiqueta do site"
1452
 
1453
+ #: ../addons/buy-creds/gateways/netbilling.php:228
1454
  msgid "Order Integrity Key"
1455
  msgstr "Encomendar chave de integração"
1456
 
1457
+ #: ../addons/buy-creds/gateways/netbilling.php:232
1458
  msgid "Found under Step 12 on the Fraud Defense page."
1459
  msgstr "Encontrado na etapa 12 da página Defesa de fraude."
1460
 
1461
+ #: ../addons/buy-creds/gateways/netbilling.php:246
1462
  msgid "Postback CGI URL"
1463
  msgstr "URL CGI de retorno"
1464
 
1465
+ #: ../addons/buy-creds/gateways/netbilling.php:250
1466
  msgid ""
1467
  "For this gateway to work, you must login to your NETbilling account and edit "
1468
  "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1473
  "resposta de CGI esteja definida para o endereço acima e \"Return method\" "
1474
  "esteja definido como POST."
1475
 
1476
+ #: ../addons/buy-creds/gateways/netbilling.php:298
1477
  msgid "Incorrect Credit Card number"
1478
  msgstr "Número incorreto do cartão de crédito"
1479
 
1480
+ #: ../addons/buy-creds/gateways/netbilling.php:304
1481
  msgid "The credit card entered is past its expiration date."
1482
  msgstr "Data de validade do cartão de crédito está expirada."
1483
 
1484
+ #: ../addons/buy-creds/gateways/netbilling.php:307
1485
  msgid "The CVV2 number entered is not valid."
1486
  msgstr "O código de verificação informado é inválido."
1487
 
1488
+ #: ../addons/buy-creds/gateways/netbilling.php:314
1489
  msgid "The bank routing number entered is not valid."
1490
  msgstr "O número de identificação do banco informado é inválido."
1491
 
1492
+ #: ../addons/buy-creds/gateways/netbilling.php:318
1493
  msgid "The bank account number entered is not valid."
1494
  msgstr "O número da conta bancária informada é inválido."
1495
 
1496
+ #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
1497
+ #: creds/gateways/skrill.php:171
1498
  msgid "Success"
1499
  msgstr "Sucesso"
1500
 
1501
+ #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
1502
+ #: creds/gateways/skrill.php:172
1503
  msgid "Thank you for your purchase"
1504
  msgstr "Obrigado por sua compra"
1505
 
1506
+ #: ../addons/buy-creds/gateways/paypal-standard.php:263
1507
+ #, php-format
1508
+ msgctxt "Return label. %s = Website name"
1509
+ msgid "Return to %s"
1510
+ msgstr ""
1511
 
1512
+ #: ../addons/buy-creds/gateways/paypal-standard.php:292
1513
  msgid "Account Email"
1514
  msgstr "E-mail da conta"
1515
 
1516
+ #: ../addons/buy-creds/gateways/skrill.php:228
1517
+ msgid "Return to "
1518
+ msgstr "Voltar para"
1519
+
1520
+ #: ../addons/buy-creds/gateways/skrill.php:264
1521
  msgid "Product:"
1522
  msgstr "Produto:"
1523
 
1524
+ #: ../addons/buy-creds/gateways/skrill.php:273
1525
  msgid "Gift to:"
1526
  msgstr "Presente para:"
1527
 
1528
+ #: ../addons/buy-creds/gateways/skrill.php:274
1529
  msgid "(author)"
1530
  msgstr "(autor)"
1531
 
1532
+ #: ../addons/buy-creds/gateways/skrill.php:307
1533
  msgid "Merchant Account Email"
1534
  msgstr "E-mail da conta comercial"
1535
 
1536
+ #: ../addons/buy-creds/gateways/skrill.php:313
1537
  msgid "Secret Word"
1538
  msgstr "Palavra secreta"
1539
 
1540
+ #: ../addons/buy-creds/gateways/skrill.php:330
1541
  msgid "Confirmation Email"
1542
  msgstr "E-mail de confirmação"
1543
 
1544
+ #: ../addons/buy-creds/gateways/skrill.php:333
1545
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1546
  msgstr ""
1547
  "Pergunte ao Skrill para me enviar um e-mail de confirmação para cada compra "
1548
  "bem sucedida."
1549
 
1550
+ #: ../addons/buy-creds/gateways/skrill.php:336
1551
  msgid "Checkout Page"
1552
  msgstr "Página de checkout"
1553
 
1554
+ #: ../addons/buy-creds/gateways/skrill.php:339 ../addons/gateway/carts/mycred-
1555
+ #: woocommerce.php:92 ../addons/ranks/myCRED-addon-ranks.php:1318 ..
1556
  #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1557
  #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1558
+ #: php:592 ../modules/mycred-module-hooks.php:3073
1559
  msgid "Title"
1560
  msgstr "Título"
1561
 
1562
+ #: ../addons/buy-creds/gateways/skrill.php:341
1563
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1564
  msgstr ""
1565
  "Se for deixado vazio, o e-mail da sua conta será usada como título na página "
1566
  "de pagamento do Skrill."
1567
 
1568
+ #: ../addons/buy-creds/gateways/skrill.php:344 ../addons/buy-
1569
+ #: creds/gateways/zombaio.php:283
1570
  msgid "Logo URL"
1571
  msgstr "URL do logotipo"
1572
 
1573
+ #: ../addons/buy-creds/gateways/skrill.php:346
1574
  msgid ""
1575
  "The URL to the image you want to use on the top of the gateway. For best "
1576
  "integration results we recommend you use logos with dimensions up to 200px "
1580
  "obter um melhor resultado de integração recomendamos que você use o logotipo "
1581
  "com dimensões de até 200px de largura por 50px de altura."
1582
 
1583
+ #: ../addons/buy-creds/gateways/skrill.php:349
1584
  msgid "Confirmation Note"
1585
  msgstr "Nota de confirmação"
1586
 
1587
+ #: ../addons/buy-creds/gateways/skrill.php:351
1588
  msgid ""
1589
  "Optional text to show user once a transaction has been successfully "
1590
  "completed. This text is shown by Skrill."
1592
  "Texto opcional para mostrar ao usuário uma vez que a operação tenha sido "
1593
  "concluída com êxito. Este texto é mostrado pelo Skrill."
1594
 
1595
+ #: ../addons/buy-creds/gateways/zombaio.php:154
1596
  #, php-format
1597
  msgid "Duplicate transaction. Received: %s"
1598
  msgstr ""
1599
 
1600
+ #: ../addons/buy-creds/gateways/zombaio.php:160
1601
  #, php-format
1602
  msgid "Live transaction while debug mode is enabled! Received: %s"
1603
  msgstr ""
1604
 
1605
+ #: ../addons/buy-creds/gateways/zombaio.php:265
1606
  msgid "Site ID"
1607
  msgstr "ID do site"
1608
 
1609
+ #: ../addons/buy-creds/gateways/zombaio.php:271
1610
  msgid "GW Password"
1611
  msgstr "Senha do GW"
1612
 
1613
+ #: ../addons/buy-creds/gateways/zombaio.php:277
1614
  msgid "Pricing ID"
1615
  msgstr "ID de preço"
1616
 
1617
+ #: ../addons/buy-creds/gateways/zombaio.php:289
1618
  msgid "IP Verification"
1619
  msgstr "Verificação de IP"
1620
 
1621
+ #: ../addons/buy-creds/gateways/zombaio.php:292
1622
  msgid "Do not verify that callbacks are coming from Zombaio."
1623
  msgstr "Não verificar se as chamadas de retorno são provenientes do Zombaio."
1624
 
1625
+ #: ../addons/buy-creds/gateways/zombaio.php:295
1626
  msgid "Language"
1627
  msgstr "Idioma"
1628
 
1629
+ #: ../addons/buy-creds/gateways/zombaio.php:302
1630
  msgid "Postback URL (ZScript)"
1631
  msgstr "URL de retorno (ZScript)"
1632
 
1633
+ #: ../addons/buy-creds/gateways/zombaio.php:306
1634
  msgid ""
1635
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1636
  "address and click validate."
1720
  msgstr ""
1721
 
1722
  #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1723
+ #: transfer.php:259 ../modules/mycred-module-hooks.php:1714 ../modules/mycred-
1724
+ #: module-hooks.php:2032
1725
  msgid "Limits"
1726
  msgstr "Limites"
1727
 
1730
  msgstr "Expira em"
1731
 
1732
  #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1733
+ #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:814 ..
1734
+ #: addons/email-notices/myCRED-addon-email-notices.php:1031 ..
1735
  #: addons/gateway/carts/mycred-marketpress.php:389 ..
1736
+ #: addons/gateway/carts/mycred-woocommerce.php:120 ..
1737
  #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1738
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1739
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1740
+ #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1741
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1742
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1743
  #: includes/importers/mycred-cubepoints.php:365
1744
  msgid "Point Type"
1750
  msgstr "ainda não utilizado"
1751
 
1752
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1753
+ #: 395 ../modules/mycred-module-hooks.php:2507
1754
  msgid "Total"
1755
  msgstr "Total"
1756
 
1914
  "Mensagem a ser exibida quando um cupom for depositado com sucesso a uma "
1915
  "conta de usuário."
1916
 
 
 
 
 
1917
  #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1918
  msgid "Apply Coupon"
1919
  msgstr "Aplicar cupom"
1920
 
1921
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1922
+ #: notices/myCRED-addon-email-notices.php:1267
1923
  msgid "Email Notice"
1924
  msgstr "E-mail de aviso"
1925
 
2124
  "individualmente ao editar os e-mails."
2125
 
2126
  #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2127
+ #: notices/myCRED-addon-email-notices.php:900
2128
  msgid "Email Settings"
2129
  msgstr "Configurações de e-mail"
2130
 
2131
  #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2132
+ #: notices/myCRED-addon-email-notices.php:1053
2133
  msgid "Senders Name:"
2134
  msgstr "Nome do remetente:"
2135
 
2136
  #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2137
+ #: notices/myCRED-addon-email-notices.php:1055
2138
  msgid "Senders Email:"
2139
  msgstr "E-mail do remetente:"
2140
 
2158
  msgid "Ignored if HTML is not allowed in emails."
2159
  msgstr "Ignorar se HTML não é permitido nos e-mails."
2160
 
2161
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:719
2162
  #, php-format
2163
  msgctxt "Badge Title - Level 1,2,3.."
2164
  msgid "%s - Level %d"
2165
  msgstr ""
2166
 
2167
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
2168
+ #: notices/myCRED-addon-email-notices.php:949
2169
  msgid "Email Subject"
2170
  msgstr "Assunto do e-mail"
2171
 
2172
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2173
  msgid "Not Active"
2174
  msgstr "Desativado"
2175
 
2176
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:838
2177
  #, php-format
2178
  msgid "Scheduled:<br /><strong>%1$s</strong>"
2179
  msgstr "Agendado:<br /><strong>%1$s</strong>"
2180
 
2181
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:843
2182
  msgid "Active"
2183
  msgstr "Ativado"
2184
 
2185
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:845
2186
  #, php-format
2187
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
2188
  msgstr "Ativado: Última execução:<br /><strong>%1$s</strong>"
2189
 
2190
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:855
2191
  msgid "Email is sent when"
2192
  msgstr "O e-mail é enviado quando"
2193
 
2194
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:857
2195
  msgid "Missing instance for this notice!"
2196
  msgstr "Falta instância para este aviso!"
2197
 
2198
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2199
+ #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
2200
+ #: addon-email-notices.php:870
2201
  msgid "Sent To"
2202
  msgstr "Enviar para"
2203
 
2204
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2205
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2206
+ #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2207
  msgid "User"
2208
  msgstr "Usuário"
2209
 
2210
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
2211
+ #: notices/myCRED-addon-email-notices.php:1020
2212
  msgid "Administrator"
2213
  msgstr "Administrador"
2214
 
2215
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2216
  msgid "Both Administrator and User"
2217
  msgstr "Ambos, administrador e usuário"
2218
 
2219
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
2220
+ #: notices/myCRED-addon-email-notices.php:1037
2221
  msgid "All types"
2222
  msgstr ""
2223
 
2224
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2225
  msgid "Available Template Tags"
2226
  msgstr "Modelos de etiquetas disponíveis"
2227
 
2228
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:920
2229
  msgid "Email Header"
2230
  msgstr "Cabeçalho do e-mail"
2231
 
2232
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:986
2233
  msgid "Send this email notice when..."
2234
  msgstr "Enviar este e-mail de aviso quando..."
2235
 
2236
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
2237
  msgid "Recipient:"
2238
  msgstr "Destinatário:"
2239
 
2240
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2241
  msgid "Both"
2242
  msgstr "Ambos"
2243
 
2244
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1025 ..
2245
+ #: addons/gateway/carts/mycred-woocommerce.php:160 ../modules/mycred-module-
2246
+ #: settings.php:674 ../modules/mycred-module-settings.php:695 ../modules/mycred-
2247
+ #: module-settings.php:720
2248
  msgid "Label"
2249
  msgstr "Rótulo"
2250
 
2251
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
2252
  msgid "Reply-To Email:"
2253
  msgstr "E-mail do Responder para:"
2254
 
2255
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
2256
  msgid "Save"
2257
  msgstr "Salvar"
2258
 
2259
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
2260
  msgid "CSS Styling"
2261
  msgstr "Estilo CSS"
2262
 
2263
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2264
  msgid "Site Related"
2265
  msgstr "Site relacionado"
2266
 
2267
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2268
  msgid "Your websites title"
2269
  msgstr "Título do seu site"
2270
 
2271
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2272
  msgid "Your websites address"
2273
  msgstr "Endereço do seu site"
2274
 
2275
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
2276
  msgid "Your websites tagline (description)"
2277
  msgstr "Slogan do seu site (descrição)"
2278
 
2279
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
2280
  msgid "Your websites admin email"
2281
  msgstr "E-mail de administração do seu site"
2282
 
2283
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
2284
  msgid "Total number of blog members"
2285
  msgstr "Número total de usuários do blog"
2286
 
2287
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2288
  msgid "The users new balance"
2289
  msgstr ""
2290
 
2291
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
2292
  msgid "The users old balance"
2293
  msgstr ""
2294
 
2295
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
2296
  msgid "The amount of points gained or lost in this instance"
2297
  msgstr ""
2298
 
2299
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2300
  msgid "The log entry"
2301
  msgstr ""
2302
 
2303
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
2304
+ #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
2305
+ #: addon-email-notices.php:1187
2306
  msgid "Email Notice Updated."
2307
  msgstr ""
2308
 
2309
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
2310
  msgid "Email Notice Activated"
2311
  msgstr "E-mail de aviso ativado"
2312
 
2313
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
2314
  msgid "Email Notice Saved"
2315
  msgstr "E-mail de aviso salvo"
2316
 
2317
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
2318
  msgid ""
2319
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2320
  "are not yet ready to use this email notice!"
2322
  "Uma vez que um aviso é \"published\" ele torna-se ativo! Selecione \"Save "
2323
  "Draft\" se você ainda não está pronto para usar este aviso de e-mail!"
2324
 
2325
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
2326
  #, php-format
2327
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2328
  msgstr "Este aviso ficará ativo em:<br /><strong>%1$s</strong>"
2329
 
2330
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
2331
  msgid "This email notice is active."
2332
  msgstr "Este e-mail de aviso está ativo."
2333
 
2334
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
2335
  msgid "Settings saved."
2336
  msgstr "Configurações salvas"
2337
 
2338
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2339
  msgid "Unsubscribe"
2340
  msgstr "Cancelar assinatura"
2341
 
2342
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2343
  msgid "There are no email notifications yet."
2344
  msgstr "Não há notificações de e-mail ainda."
2345
 
2388
  msgstr "Pago"
2389
 
2390
  #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2391
+ #: addons/gateway/carts/mycred-woocommerce.php:30 ../includes/mycred-network.php:
2392
  #: 50 ../includes/mycred-network.php:51
2393
  msgid "myCRED"
2394
  msgstr "Tipo de ponto"
2419
  msgstr "Montante total debitado da sua conta. Seu saldo atual é: %balance_f%"
2420
 
2421
  #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2422
+ #: addons/gateway/carts/mycred-woocommerce.php:263
2423
  msgid "Insufficient funds."
2424
  msgstr ""
2425
 
2459
  msgstr "URL do logotipo do método"
2460
 
2461
  #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2462
+ #: addons/gateway/carts/mycred-woocommerce.php:136
2463
  #, php-format
2464
  msgid "How much is 1 %_singular% worth in %currency%?"
2465
  msgstr "Quanto é 1 %_singular% no valor em %currency%?"
2466
 
2467
  #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2468
+ #: addons/gateway/carts/mycred-woocommerce.php:141 ..
2469
  #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2470
  #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2471
  #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2472
+ #: php:578 ../includes/mycred-shortcodes.php:977
2473
  msgid "Exchange Rate"
2474
  msgstr "Taxa de câmbio"
2475
 
2476
  #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2477
+ #: addons/gateway/carts/mycred-woocommerce.php:169 ..
2478
  #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2479
  #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2480
  #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
2487
  msgstr "Porcentagem"
2488
 
2489
  #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2490
+ #: addons/gateway/carts/mycred-woocommerce.php:171 ..
2491
  #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2492
  #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2493
  #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
2558
  "substituídos por detalhes de ordem: CUSTOMERNAME, ORDERID, ORDERINFO, "
2559
  "SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML não é permitido."
2560
 
2561
+ #: ../addons/gateway/carts/mycred-woocommerce.php:31
2562
  msgid "Let users pay using their myCRED balance."
2563
  msgstr "Permitir usuário de pagar utilizando o saldo do myCRED."
2564
 
2565
+ #: ../addons/gateway/carts/mycred-woocommerce.php:85
2566
  msgid "Enable/Disable"
2567
  msgstr "Habilitar/Desabilitar"
2568
 
2569
+ #: ../addons/gateway/carts/mycred-woocommerce.php:87
2570
  msgid "Enable myCRED Payment"
2571
  msgstr "Habilitar pagamento pelo myCRED"
2572
 
2573
+ #: ../addons/gateway/carts/mycred-woocommerce.php:89
2574
  msgid ""
2575
  "Users who are not logged in or excluded from using myCRED will not have "
2576
  "access to this gateway!"
2578
  "Usuários que não estiverem logados ou foram excluídos de usar o myCRED não "
2579
  "terão acesso a este método!"
2580
 
2581
+ #: ../addons/gateway/carts/mycred-woocommerce.php:94
2582
  msgid "Title to show for this payment option."
2583
  msgstr "Título para exibier para essa opção de pagamento."
2584
 
2585
+ #: ../addons/gateway/carts/mycred-woocommerce.php:95
2586
  msgid "Pay with myCRED"
2587
  msgstr "Pagar com myCRED"
2588
 
2589
+ #: ../addons/gateway/carts/mycred-woocommerce.php:99
2590
  msgid "Customer Message"
2591
  msgstr "Mensagem ao cliente"
2592
 
2593
+ #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
2594
+ #: addons/gateway/carts/mycred-woocommerce.php:182
2595
  msgid "Refund Log Template"
2596
  msgstr ""
2597
 
2598
+ #: ../addons/gateway/carts/mycred-woocommerce.php:122
2599
  msgid "Select the point type users can use to pay."
2600
  msgstr "Selecione o tipo de ponto que os usuários poderão usar para pagar."
2601
 
2602
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148
2603
  msgid "Show Total"
2604
  msgstr "Exibir total"
2605
 
2606
+ #: ../addons/gateway/carts/mycred-woocommerce.php:150
2607
  msgid "Show the final price in %_plural% ."
2608
  msgstr "Exibir o preço final em %_plural% ."
2609
 
2610
+ #: ../addons/gateway/carts/mycred-woocommerce.php:153
2611
  msgid "Show in Cart"
2612
  msgstr "Exibir no Carrinho"
2613
 
2614
+ #: ../addons/gateway/carts/mycred-woocommerce.php:154
2615
  msgid "Show on Checkout Page"
2616
  msgstr "Exibir na página de Checkout"
2617
 
2618
+ #: ../addons/gateway/carts/mycred-woocommerce.php:155
2619
  msgid "Show in Cart and on Checkout Page"
2620
  msgstr "Exibir no Carrinho e na página de Checkout"
2621
 
2622
+ #: ../addons/gateway/carts/mycred-woocommerce.php:162
2623
  msgid "Order Total in %_plural%"
2624
  msgstr "Total do pedido em %_plural%"
2625
 
2626
+ #: ../addons/gateway/carts/mycred-woocommerce.php:178
2627
  msgid "Log entry template for profit sharing."
2628
  msgstr "Modelo do registro de entrada para participação nos lucros."
2629
 
2630
+ #: ../addons/gateway/carts/mycred-woocommerce.php:184
2631
  msgid "Log entry template for refunds of profit shares."
2632
  msgstr ""
2633
 
2634
+ #: ../addons/gateway/carts/mycred-woocommerce.php:214
2635
  msgid "myCRED Payment"
2636
  msgstr "Pagamento do myCRED"
2637
 
2638
+ #: ../addons/gateway/carts/mycred-woocommerce.php:215
2639
  #, php-format
2640
  msgid ""
2641
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2646
  "favor, note que os usuários com fundos insuficientes e os usuários que não "
2647
  "estão conectados não verão este método de pagamento na página de Checkout."
2648
 
2649
+ #: ../addons/gateway/carts/mycred-woocommerce.php:240
2650
  msgid "You must be logged in to pay with %_plural%"
2651
  msgstr "Você precisa estar logado